From bad50ef5023860c992b75cb72722cba9bb428ceb Mon Sep 17 00:00:00 2001 From: Dusan Jovic <48258889+DusanJovic-NOAA@users.noreply.github.com> Date: Tue, 1 Oct 2024 14:24:06 -0400 Subject: [PATCH 01/24] Support IntelLLVM compiler (#2224) * UFSWM - Add support for Intel LLVM compiler * CICE - Add support for Intel LLVM compiler * FV3 - Add support for Intel LLVM compiler * ccpp-physics - Add support for Intel LLVM compiler * atmos_cubed_sphere - Add support for Intel LLVM compiler * upp - Add support for Intel LLVM compiler * WW3 - Add support for Intel LLVM compiler --- .gitignore | 1 + CICE-interface/CICE | 2 +- CICE-interface/CMakeLists.txt | 225 ++--- FV3 | 2 +- HYCOM-interface/CMakeLists.txt | 14 +- MOM6-interface/CMakeLists.txt | 9 +- WW3 | 2 +- cmake/IntelLLVM.cmake | 60 ++ cmake/configure_gaea.intelllvm.cmake | 2 + driver/UFS.F90 | 7 +- modulefiles/ufs_gaea.intelllvm.lua | 40 + modulefiles/ufs_hera.intelllvm.lua | 33 + modulefiles/ufs_hercules.intelllvm.lua | 30 + modulefiles/ufs_orion.intelllvm.lua | 30 + tests/ci/repo_check.sh | 2 +- tests/compile.sh | 12 +- tests/fv3_conf/compile_slurm.IN_orion | 1 + tests/logs/RegressionTests_acorn.log | 592 ++++++------ tests/logs/RegressionTests_derecho.log | 567 ++++++------ tests/logs/RegressionTests_gaea.log | 565 ++++++----- tests/logs/RegressionTests_hera.log | 726 +++++++-------- tests/logs/RegressionTests_hercules.log | 1134 ++++++++--------------- tests/logs/RegressionTests_jet.log | 507 +++++----- tests/logs/RegressionTests_orion.log | 633 +++++++------ tests/logs/RegressionTests_wcoss2.log | 468 +++++----- tests/rt.sh | 4 +- tests/rt_intelllvm.conf | 324 +++++++ tests/rt_utils.sh | 3 +- tests/run_test.sh | 6 +- tests/tests/cpld_debug_gfsv17 | 3 + tests/tests/cpld_debug_pdlib_p8 | 9 + tests/tests/regional_debug | 4 + 32 files changed, 3113 insertions(+), 2904 deletions(-) create mode 100644 cmake/IntelLLVM.cmake create mode 100644 cmake/configure_gaea.intelllvm.cmake create mode 100644 modulefiles/ufs_gaea.intelllvm.lua create mode 100644 modulefiles/ufs_hera.intelllvm.lua create mode 100644 modulefiles/ufs_hercules.intelllvm.lua create mode 100644 modulefiles/ufs_orion.intelllvm.lua create mode 100644 tests/rt_intelllvm.conf 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/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/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/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/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_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/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/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.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.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_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/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/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/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 0f75f73fa5..5aff31b620 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,31 +1,31 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -6f4efcb43af3177bb4d8aaccc1a75a61f45d9f80 +68d3b0fab6b1da5c139a03ba5190abdf5d3b2adf 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,334 +37,268 @@ 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_961999 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2713788 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [24:38, 22:48] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [59:30, 03:17](3349 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:28, 12:40] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [09:39, 04:10](2159 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [48:31, 03:38](2187 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [47:20, 03:38](1301 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [09:40, 03:04](2257 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:36, 21:23] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [01:32, 01:39](2147 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [22:36, 21:18] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [01:33, 03:54](2226 MB) - -PASS -- COMPILE 's2swa_intel' [17:32, 15:48] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [06:35, 02:20](3358 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:35, 02:35](3374 MB) -PASS -- TEST 'cpld_restart_p8_intel' [54:52, 03:11](3292 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [06:35, 02:03](3372 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [54:52, 03:11](3309 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [06:35, 02:02](3655 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [06:35, 02:24](3363 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:36, 03:08](3501 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:35, 02:45](3374 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [06:35, 02:55](3298 MB) - -PASS -- COMPILE 's2sw_intel' [21:36, 19:56] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [02:31, 01:57](2065 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [02:31, 03:09](2070 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:26, 10:34] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:41, 03:13](2074 MB) - -PASS -- COMPILE 's2s_intel' [11:25, 09:55] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [12:41, 01:57](2879 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [12:41, 02:35](2893 MB) -PASS -- TEST 'cpld_restart_c48_intel' [07:11, 02:19](2305 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:33, 15:33] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [06:35, 02:53](3372 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [23:39, 21:35] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [00:29, 02:36](2162 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [37:47, 02:36](1337 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [37:41, 02:31](2262 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [24:40, 22:29] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [46:32, 02:07](2286 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [21:35, 19:26] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [50:05, 02:04](684 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [50:05, 01:37](1583 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [50:05, 01:33](1590 MB) -PASS -- TEST 'control_latlon_intel' [49:27, 01:22](1588 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [48:52, 02:10](1592 MB) -PASS -- TEST 'control_c48_intel' [46:17, 02:35](1584 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [45:32, 02:21](708 MB) -PASS -- TEST 'control_c192_intel' [45:33, 02:24](1840 MB) -PASS -- TEST 'control_c384_intel' [44:15, 03:14](3261 MB) -PASS -- TEST 'control_c384gdas_intel' [43:53, 04:21](2437 MB) -PASS -- TEST 'control_stochy_intel' [43:11, 02:03](643 MB) -PASS -- TEST 'control_stochy_restart_intel' [30:32, 01:19](444 MB) -PASS -- TEST 'control_lndp_intel' [39:26, 01:57](640 MB) -PASS -- TEST 'control_iovr4_intel' [39:16, 02:09](653 MB) -PASS -- TEST 'control_iovr5_intel' [39:01, 01:48](652 MB) -PASS -- TEST 'control_p8_intel' [38:25, 03:07](1875 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [37:37, 03:15](1891 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [37:36, 03:02](1873 MB) -PASS -- TEST 'control_restart_p8_intel' [24:57, 03:15](1025 MB) -PASS -- TEST 'control_noqr_p8_intel' [37:33, 02:27](1869 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [24:48, 03:09](1056 MB) -PASS -- TEST 'control_decomp_p8_intel' [36:07, 02:25](1890 MB) -PASS -- TEST 'control_2threads_p8_intel' [35:01, 03:24](1975 MB) -PASS -- TEST 'control_p8_lndp_intel' [34:54, 01:45](1892 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [34:24, 03:45](1926 MB) -PASS -- TEST 'control_p8_mynn_intel' [33:55, 03:29](1905 MB) -PASS -- TEST 'merra2_thompson_intel' [33:32, 03:52](1880 MB) -PASS -- TEST 'regional_control_intel' [33:29, 01:25](858 MB) -PASS -- TEST 'regional_restart_intel' [18:29, 01:22](857 MB) -PASS -- TEST 'regional_decomp_intel' [33:25, 01:25](853 MB) -PASS -- TEST 'regional_2threads_intel' [32:23, 02:01](1235 MB) -PASS -- TEST 'regional_noquilt_intel' [31:38, 01:52](1187 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [29:50, 02:08](859 MB) -PASS -- TEST 'regional_wofs_intel' [28:11, 01:23](1585 MB) - -PASS -- COMPILE 'rrfs_intel' [17:30, 15:21] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [52:08, 03:23](1042 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [52:09, 01:42](1731 MB) -PASS -- TEST 'rap_decomp_intel' [52:08, 02:57](1026 MB) -PASS -- TEST 'rap_2threads_intel' [52:08, 03:30](1126 MB) -PASS -- TEST 'rap_restart_intel' [27:29, 03:29](857 MB) -PASS -- TEST 'rap_sfcdiff_intel' [52:08, 03:32](1025 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [52:08, 03:56](1042 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [27:19, 03:04](856 MB) -PASS -- TEST 'hrrr_control_intel' [52:08, 03:20](1022 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [52:08, 04:08](1018 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [52:09, 03:19](1263 MB) -PASS -- TEST 'hrrr_control_restart_intel' [27:13, 01:27](809 MB) -PASS -- TEST 'rrfs_v1beta_intel' [52:08, 03:30](1035 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [52:08, 01:50](1998 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [52:08, 02:20](1990 MB) - -PASS -- COMPILE 'csawmg_intel' [13:28, 12:06] -PASS -- TEST 'control_csawmg_intel' [53:06, 02:08](954 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_ras_intel' [, ]( MB) - -PASS -- COMPILE 'wam_intel' [12:27, 10:39] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [54:08, 02:14](1689 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:25, 08:24] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [52:06, 03:46](1889 MB) -PASS -- TEST 'regional_control_faster_intel' [52:05, 01:14](845 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:30, 12:22] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [24:14, 02:11](1619 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [24:08, 02:04](1648 MB) -PASS -- TEST 'control_stochy_debug_intel' [23:58, 02:13](850 MB) -PASS -- TEST 'control_lndp_debug_intel' [23:41, 01:54](826 MB) -PASS -- TEST 'control_csawmg_debug_intel' [23:05, 02:03](1130 MB) -PASS -- TEST 'control_ras_debug_intel' [21:57, 01:39](851 MB) -PASS -- TEST 'control_diag_debug_intel' [21:36, 01:57](1688 MB) -PASS -- TEST 'control_debug_p8_intel' [21:33, 02:11](1914 MB) -PASS -- TEST 'regional_debug_intel' [21:07, 01:59](943 MB) -PASS -- TEST 'rap_control_debug_intel' [20:38, 01:28](1204 MB) -PASS -- TEST 'hrrr_control_debug_intel' [19:55, 01:30](1218 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [19:52, 02:15](1228 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [19:51, 01:47](1209 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [19:34, 01:44](1222 MB) -PASS -- TEST 'rap_diag_debug_intel' [19:03, 02:32](1290 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [18:35, 01:40](1229 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [18:16, 01:47](1212 MB) -PASS -- TEST 'rap_lndp_debug_intel' [18:11, 01:38](1209 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [18:03, 01:57](1205 MB) -PASS -- TEST 'rap_noah_debug_intel' [17:57, 02:03](1225 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [17:57, 01:35](1207 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [17:52, 01:26](1224 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [17:25, 01:52](1200 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [17:08, 01:49](1226 MB) -PASS -- TEST 'rap_flake_debug_intel' [16:36, 01:59](1204 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [16:27, 03:37](1211 MB) - -PASS -- COMPILE 'wam_debug_intel' [13:27, 07:17] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:59, 01:22](1714 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:31, 11:36] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [15:44, 02:30](1604 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [15:35, 02:53](897 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [15:12, 05:11](913 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [14:49, 03:07](980 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:23, 04:43](1114 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [13:55, 04:51](894 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [02:28, 03:34](785 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:37, 02:07](773 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [20:33, 15:42] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [13:38, 02:07](1101 MB) -PASS -- TEST 'conus13km_2threads_intel' [06:27, 01:26](1462 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [05:48, 01:53](941 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:27, 11:40] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [13:06, 01:55](944 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:23, 07:33] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [13:04, 01:27](1084 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [12:19, 01:21](1082 MB) -PASS -- TEST 'conus13km_debug_intel' [11:16, 02:20](1195 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [11:15, 02:16](870 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:03, 01:20](1533 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [10:41, 01:43](1263 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:21, 06:41] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:01, 01:26](1133 MB) - -PASS -- COMPILE 'hafsw_intel' [41:58, 09:19] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:46, 03:10](1803 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:39, 01:37](2145 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:29, 02:50](1266 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [09:24, 02:25](1303 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [09:18, 03:07](1451 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:23, 02:11](996 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:28, 03:07](1323 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:31, 02:53](1190 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [05:03, 04:09](2151 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:30, 02:33](1034 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:13, 02:24](1036 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [03:15, 02:09](1659 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:39, 02:15](1217 MB) -PASS -- TEST 'gnv1_nested_intel' [02:29, 04:37](1955 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [36:52, 05:23] ( 1447 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [02:31, 02:37](1731 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [38:55, 09:14] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [00:01, 02:33](1708 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [59:03, 01:55](1885 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [38:55, 09:15] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [59:02, 02:51](1887 MB) - -PASS -- COMPILE 'hafs_all_intel' [51:09, 08:55] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [53:52, 03:03](1270 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [53:52, 02:46](1251 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [53:50, 01:21](906 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [51:10, 09:07] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [52:36, 01:57](764 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [45:08, 01:37](756 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [48:11, 01:24](645 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [48:11, 01:28](643 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [46:49, 01:48](644 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [46:00, 01:16](765 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [45:35, 01:34](766 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [45:17, 01:53](644 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [45:06, 01:54](863 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [43:46, 02:37](854 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [42:46, 01:59](765 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [42:05, 01:37](2031 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [41:28, 01:17](2030 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [52:11, 09:12] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [41:15, 01:19](765 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [44:00, 01:01] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [58:45, 02:12](677 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [58:03, 01:46](815 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [41:10, 01:58](816 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [52:11, 09:27] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [40:51, 02:10](2006 MB) - -PASS -- COMPILE 'atml_intel' [50:06, 09:09] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [40:26, 03:37](2254 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [39:53, 03:14](2254 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [28:26, 02:02](1397 MB) - -PASS -- COMPILE 'atml_debug_intel' [24:40, 05:30] ( 866 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [39:51, 03:00](2298 MB) - -PASS -- COMPILE 'atmw_intel' [30:47, 08:39] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [38:27, 03:05](1976 MB) - -PASS -- COMPILE 'atmaero_intel' [30:47, 08:33] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [38:04, 02:40](3250 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [37:42, 02:29](3041 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [37:36, 02:37](3053 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [26:42, 04:45] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [39:36, 02:35](4805 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:24, 09:38] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [33:36, 02:39](3343 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:26, 11:26] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [31:34, 03:42](2145 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [11:07, 03:27](2174 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:17, 03:50](1311 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [31:35, 02:58](2256 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:26, 11:27] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [31:34, 01:59](2144 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [24:38, 22:29] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [19:37, 04:05](2227 MB) + +PASS -- COMPILE 's2swa_intel' [21:35, 20:12] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [23:25, 02:29](3375 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [23:25, 02:40](3375 MB) +PASS -- TEST 'cpld_restart_p8_intel' [00:53, 03:08](3287 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [23:25, 02:28](3391 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [00:53, 02:47](3314 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [23:25, 03:01](3657 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [23:25, 03:08](3363 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [23:26, 01:59](3499 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [23:25, 03:25](3353 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [23:25, 03:04](3298 MB) + +PASS -- COMPILE 's2sw_intel' [37:52, 36:00] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [05:24, 01:57](2076 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:17, 03:01](2071 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:25, 11:08] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [32:35, 03:10](2071 MB) + +PASS -- COMPILE 's2s_intel' [11:25, 09:45] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [33:35, 01:52](2877 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [33:35, 02:33](2891 MB) +PASS -- TEST 'cpld_restart_c48_intel' [28:03, 02:04](2304 MB) + +PASS -- COMPILE 's2swa_faster_intel' [25:41, 24:15] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [18:33, 02:43](3358 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:38, 21:57] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:36, 03:00](2144 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [45:30, 02:27](1322 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [44:38, 02:07](2261 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:21, 05:24] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:15, 01:49](2292 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:25, 08:25] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [23:11, 01:23](703 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [23:11, 01:49](1599 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [23:11, 01:47](1607 MB) +PASS -- TEST 'control_latlon_intel' [23:11, 02:07](1591 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [23:11, 01:54](1587 MB) +PASS -- TEST 'control_c48_intel' [23:10, 02:07](1582 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [23:10, 01:41](705 MB) +PASS -- TEST 'control_c192_intel' [23:11, 02:20](1855 MB) +PASS -- TEST 'control_c384_intel' [23:15, 02:40](3248 MB) +PASS -- TEST 'control_c384gdas_intel' [23:15, 03:51](2442 MB) +PASS -- TEST 'control_stochy_intel' [23:11, 01:21](656 MB) +PASS -- TEST 'control_stochy_restart_intel' [18:33, 01:29](462 MB) +PASS -- TEST 'control_lndp_intel' [23:11, 01:29](637 MB) +PASS -- TEST 'control_iovr4_intel' [23:11, 01:35](633 MB) +PASS -- TEST 'control_iovr5_intel' [23:11, 01:36](638 MB) +PASS -- TEST 'control_p8_intel' [23:11, 02:05](1890 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [23:11, 03:00](1877 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [23:11, 02:55](1891 MB) +PASS -- TEST 'control_restart_p8_intel' [59:53, 02:43](1005 MB) +PASS -- TEST 'control_noqr_p8_intel' [23:11, 03:15](1877 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [00:10, 02:49](1053 MB) +PASS -- TEST 'control_decomp_p8_intel' [17:31, 03:14](1869 MB) +PASS -- TEST 'control_2threads_p8_intel' [15:13, 02:15](1976 MB) +PASS -- TEST 'control_p8_lndp_intel' [13:20, 01:30](1872 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [13:05, 03:26](1948 MB) +PASS -- TEST 'control_p8_mynn_intel' [09:07, 03:03](1884 MB) +PASS -- TEST 'merra2_thompson_intel' [09:07, 03:26](1877 MB) +PASS -- TEST 'regional_control_intel' [08:51, 01:36](864 MB) +PASS -- TEST 'regional_restart_intel' [52:51, 02:01](855 MB) +PASS -- TEST 'regional_decomp_intel' [03:32, 01:14](859 MB) +PASS -- TEST 'regional_2threads_intel' [03:21, 01:32](1228 MB) +PASS -- TEST 'regional_noquilt_intel' [02:37, 01:46](1182 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [02:09, 01:50](855 MB) +PASS -- TEST 'regional_wofs_intel' [02:08, 02:03](1580 MB) + +PASS -- COMPILE 'rrfs_intel' [20:35, 19:25] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [01:49, 03:34](1040 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [00:45, 02:26](1731 MB) +PASS -- TEST 'rap_decomp_intel' [00:32, 02:50](1045 MB) +PASS -- TEST 'rap_2threads_intel' [00:24, 02:28](1121 MB) +PASS -- TEST 'rap_restart_intel' [47:46, 03:45](858 MB) +PASS -- TEST 'rap_sfcdiff_intel' [59:06, 03:39](1038 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [57:25, 03:28](1024 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [43:32, 03:59](857 MB) +PASS -- TEST 'hrrr_control_intel' [57:25, 03:40](1017 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [56:47, 03:11](1015 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [55:37, 03:51](1261 MB) +PASS -- TEST 'hrrr_control_restart_intel' [45:57, 01:30](825 MB) +PASS -- TEST 'rrfs_v1beta_intel' [55:29, 03:46](1017 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [55:27, 01:53](1999 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [55:12, 02:16](1970 MB) + +PASS -- COMPILE 'csawmg_intel' [18:33, 16:23] +PASS -- TEST 'control_csawmg_intel' [55:08, 02:19](974 MB) +PASS -- TEST 'control_ras_intel' [53:51, 01:24](674 MB) + +PASS -- COMPILE 'wam_intel' [18:33, 16:53] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [53:15, 01:58](1672 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:24, 09:44] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [52:25, 03:06](1879 MB) +PASS -- TEST 'regional_control_faster_intel' [51:08, 01:31](854 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [14:27, 12:30] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [50:40, 01:24](1620 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [50:40, 02:05](1623 MB) +PASS -- TEST 'control_stochy_debug_intel' [50:16, 01:33](846 MB) +PASS -- TEST 'control_lndp_debug_intel' [49:58, 01:29](849 MB) +PASS -- TEST 'control_csawmg_debug_intel' [48:37, 01:25](1130 MB) +PASS -- TEST 'control_ras_debug_intel' [48:37, 02:08](834 MB) +PASS -- TEST 'control_diag_debug_intel' [47:46, 01:46](1711 MB) +PASS -- TEST 'control_debug_p8_intel' [47:46, 01:54](1924 MB) +PASS -- TEST 'regional_debug_intel' [46:18, 01:11](922 MB) +PASS -- TEST 'rap_control_debug_intel' [45:57, 01:30](1231 MB) +PASS -- TEST 'hrrr_control_debug_intel' [45:45, 01:58](1200 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [44:05, 01:22](1229 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [43:45, 01:24](1210 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [43:32, 02:05](1205 MB) +PASS -- TEST 'rap_diag_debug_intel' [43:27, 01:59](1290 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [42:35, 01:56](1212 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [42:12, 02:08](1213 MB) +PASS -- TEST 'rap_lndp_debug_intel' [42:08, 01:18](1228 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [42:06, 01:37](1205 MB) +PASS -- TEST 'rap_noah_debug_intel' [42:03, 01:43](1203 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [41:55, 01:45](1207 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [41:47, 01:32](1206 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [41:46, 01:27](1200 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [41:32, 01:22](1226 MB) +PASS -- TEST 'rap_flake_debug_intel' [41:22, 01:18](1205 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [40:49, 03:44](1230 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:20, 05:24] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [40:39, 02:10](1711 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [47:04, 07:46] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [34:18, 01:36](1605 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [34:17, 03:00](896 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [34:17, 03:20](897 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [34:17, 03:51](975 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [34:18, 04:08](1120 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [34:17, 04:06](890 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [21:44, 03:22](805 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [26:06, 02:14](777 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [47:02, 07:50] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [33:20, 01:32](1102 MB) +PASS -- TEST 'conus13km_2threads_intel' [26:08, 01:54](1461 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [26:07, 01:35](941 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [46:03, 07:48] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [33:16, 01:42](944 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [52:08, 10:55] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [23:03, 01:44](1084 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [22:52, 01:20](1081 MB) +PASS -- TEST 'conus13km_debug_intel' [22:10, 01:44](1172 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [22:08, 01:41](844 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [22:01, 01:56](1536 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:54, 01:30](1263 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [51:08, 10:19] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [21:32, 01:40](1112 MB) + +PASS -- COMPILE 'hafsw_intel' [48:05, 08:53] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [24:56, 02:30](1799 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [24:56, 01:43](2142 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [24:54, 02:35](1265 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [24:54, 02:58](1301 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:55, 03:01](1455 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [24:54, 02:02](1000 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [24:55, 03:01](1308 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [24:55, 02:50](1189 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [24:58, 04:12](2159 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [24:54, 02:06](1032 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [24:54, 02:23](1034 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [24:56, 02:17](1661 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [24:55, 01:37](1219 MB) +PASS -- TEST 'gnv1_nested_intel' [24:53, 04:03](1955 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [44:00, 05:18] ( 1447 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [29:02, 02:31](1771 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [51:07, 12:41] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [19:30, 02:07](1711 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:29, 02:37](1889 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [45:00, 08:52] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [23:59, 02:40](1890 MB) + +PASS -- COMPILE 'hafs_all_intel' [48:03, 14:02] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [18:36, 02:41](1263 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:25, 02:55](1246 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:40, 01:24](905 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:25, 08:58] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [23:50, 01:21](766 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [16:23, 01:57](742 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [23:50, 02:08](646 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [23:50, 01:28](646 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [23:50, 01:27](645 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [23:50, 01:48](752 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [21:12, 01:50](764 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [14:20, 01:53](648 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [14:07, 01:42](863 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:59, 01:48](846 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [12:17, 02:03](752 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [11:43, 01:38](2031 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [11:28, 01:22](2030 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [18:31, 12:50] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [11:05, 01:33](753 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [10:24, 03:50] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [10:34, 01:43](668 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [09:56, 01:14](813 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:21, 02:03](812 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:29, 13:24] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:57, 02:30](2015 MB) + +PASS -- COMPILE 'atml_intel' [10:23, 08:28] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:07, 03:23](2258 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:39, 03:53](2256 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [56:12, 02:10](1387 MB) + +PASS -- COMPILE 'atml_debug_intel' [30:43, 05:03] ( 866 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [53:13, 03:08](2281 MB) + +PASS -- COMPILE 'atmw_intel' [34:48, 08:22] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [49:02, 03:30](1981 MB) + +PASS -- COMPILE 'atmaero_intel' [33:47, 08:11] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [49:53, 02:55](3247 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [49:53, 03:09](3022 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [49:53, 03:07](3035 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [30:43, 04:28] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [52:58, 02:48](4785 MB) SYNOPSIS: -Starting Date/Time: 20240921 13:35:34 -Ending Date/Time: 20240921 15:50:26 -Total Time: 02h:15m:19s +Starting Date/Time: 20240927 14:14:41 +Ending Date/Time: 20240927 16:34:56 +Total Time: 02h:20m:42s Compiles Completed: 37/37 -Tests Completed: 175/176 -Failed Tests: -* TEST control_ras_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/BrianCurtis-NOAA/ufs-weather-model/wcoss2_lib_bump/tests/logs/log_acorn/run_control_ras_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 ACORN REGRESSION TESTING LOG==== -====START OF ACORN REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -ac821add06a576dcd9f87b18c2d72d34913a84a1 - -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) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a9364591091c836984a40107729720705847c195 FV3 (heads/develop) - ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - b6c433354394bd8ed5e46692a81149441ff4ae38 FV3/ccpp/physics (EP4-873-gb6c43335) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) - 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: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240909 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_606589 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: GFS-DEV -* (-n) - RUN SINGLE TEST: control_ras - -PASS -- COMPILE 'csawmg_intel' [09:22, 08:07] -PASS -- TEST 'control_ras_intel' [11:00, 01:48](674 MB) - -SYNOPSIS: -Starting Date/Time: 20240923 12:39:40 -Ending Date/Time: 20240923 12:54:27 -Total Time: 00h:14m:56s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 176/176 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 97923cf0b8..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: -ce118b02fad212ff25d1995f8d323e41b841d615 +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_83096 +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' [26:21, 24:44] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:40, 06:42](3203 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:22, 26:41] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [21:09, 14:46](1909 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:22, 15:57](1941 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:21, 08:07](1064 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:26, 16:48](1885 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [28:22, 26:40] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:35, 14:37](1910 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:17, 15:15] ( 1528 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:03, 23:41](1936 MB) - -PASS -- COMPILE 's2swa_intel' [26:20, 24:30] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:47, 08:18](3226 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:06, 08:20](3224 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:49, 05:06](3148 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:47, 08:14](3252 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:02, 05:05](3178 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [12:32, 07:42](3746 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:32, 08:08](3220 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:18, 06:48](3535 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:03, 08:20](3231 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:34, 09:52](3819 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [31:58, 07:03](3613 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [31:03, 09:51](4513 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [32:22, 06:50](4671 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:10, 06:19](3211 MB) - -PASS -- COMPILE 's2sw_intel' [24:20, 22:35] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:38, 05:56](1921 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:49, 08:04](1984 MB) - -PASS -- COMPILE 's2swa_debug_intel' [17:17, 14:57] ( 1418 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [17:07, 12:54](3300 MB) - -PASS -- COMPILE 's2sw_debug_intel' [16:17, 14:11] ( 1418 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:56, 08:46](1966 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [21:20, 19:02] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:52, 04:59](1987 MB) - -PASS -- COMPILE 's2s_intel' [21:24, 19:37] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:13, 06:00](2881 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [06:14, 02:44](2888 MB) -PASS -- TEST 'cpld_restart_c48_intel' [05:21, 01:50](2306 MB) - -PASS -- COMPILE 's2swa_faster_intel' [28:27, 26:50] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:30, 08:03](3248 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [25:25, 23:45] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:47, 14:56](1931 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:17, 08:10](1105 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:02, 16:56](1898 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:18, 12:51] ( 1528 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:42, 24:17](1948 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [17:26, 15:14] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:47, 03:32](665 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:18, 02:48](1567 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:36, 02:46](1571 MB) -PASS -- TEST 'control_latlon_intel' [06:15, 02:43](1568 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:07, 02:49](1566 MB) -PASS -- TEST 'control_c48_intel' [12:07, 09:21](1586 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:42, 05:20](712 MB) -PASS -- TEST 'control_c192_intel' [13:49, 10:01](1697 MB) -PASS -- TEST 'control_c384_intel' [20:09, 11:22](1979 MB) -PASS -- TEST 'control_c384gdas_intel' [17:15, 07:15](1176 MB) -PASS -- TEST 'control_stochy_intel' [03:38, 01:33](624 MB) -PASS -- TEST 'control_stochy_restart_intel' [05:39, 00:56](436 MB) -PASS -- TEST 'control_lndp_intel' [03:35, 01:24](623 MB) -PASS -- TEST 'control_iovr4_intel' [04:38, 02:10](622 MB) -PASS -- TEST 'control_iovr5_intel' [04:37, 02:14](617 MB) -PASS -- TEST 'control_p8_intel' [07:19, 03:37](1859 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:58, 03:02](1864 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:47, 03:42](1853 MB) -PASS -- TEST 'control_restart_p8_intel' [05:28, 02:23](1007 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:46, 03:36](1848 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:19, 02:16](1015 MB) -PASS -- TEST 'control_decomp_p8_intel' [08:35, 03:40](1842 MB) -PASS -- TEST 'control_2threads_p8_intel' [08:35, 03:30](1941 MB) -PASS -- TEST 'control_p8_lndp_intel' [10:47, 05:58](1860 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:47, 04:04](1909 MB) -PASS -- TEST 'control_p8_mynn_intel' [08:55, 03:08](1864 MB) -PASS -- TEST 'merra2_thompson_intel' [09:30, 03:22](1864 MB) -PASS -- TEST 'regional_control_intel' [08:03, 04:58](858 MB) -PASS -- TEST 'regional_restart_intel' [07:51, 03:07](860 MB) -PASS -- TEST 'regional_decomp_intel' [08:04, 05:08](864 MB) -PASS -- TEST 'regional_noquilt_intel' [07:57, 04:47](1189 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:59, 04:52](863 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:53, 04:54](862 MB) -PASS -- TEST 'regional_wofs_intel' [07:56, 05:40](1592 MB) - -PASS -- COMPILE 'rrfs_intel' [16:18, 14:21] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:32, 06:12](1006 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:23, 03:49](1159 MB) -PASS -- TEST 'rap_decomp_intel' [10:48, 06:29](1003 MB) -PASS -- TEST 'rap_2threads_intel' [09:32, 05:47](1090 MB) -PASS -- TEST 'rap_restart_intel' [07:22, 03:13](879 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:36, 06:16](1001 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:36, 06:27](1004 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:16, 04:41](878 MB) -PASS -- TEST 'hrrr_control_intel' [07:20, 03:18](999 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:24, 03:23](1001 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:13, 02:51](1079 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:40, 01:45](827 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:34, 06:07](1002 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:07, 07:31](1961 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:06, 07:13](1954 MB) - -PASS -- COMPILE 'csawmg_intel' [15:24, 13:14] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [10:02, 06:28](962 MB) -PASS -- TEST 'control_ras_intel' [05:31, 02:57](657 MB) - -PASS -- COMPILE 'wam_intel' [15:20, 12:53] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:09, 10:17](1657 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:19, 12:58] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:35, 03:11](1856 MB) -PASS -- TEST 'regional_control_faster_intel' [07:54, 04:45](862 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [18:25, 16:24] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:03, 02:20](1612 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:16, 02:08](1605 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:36, 02:52](810 MB) -PASS -- TEST 'control_lndp_debug_intel' [07:32, 02:40](809 MB) -PASS -- TEST 'control_csawmg_debug_intel' [09:57, 04:44](1115 MB) -PASS -- TEST 'control_ras_debug_intel' [07:36, 02:39](816 MB) -PASS -- TEST 'control_diag_debug_intel' [08:36, 02:46](1661 MB) -PASS -- TEST 'control_debug_p8_intel' [10:00, 03:13](1896 MB) -PASS -- TEST 'regional_debug_intel' [19:58, 16:32](920 MB) -PASS -- TEST 'rap_control_debug_intel' [10:39, 04:43](1186 MB) -PASS -- TEST 'hrrr_control_debug_intel' [10:39, 04:38](1184 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [10:34, 04:40](1191 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [11:30, 04:44](1191 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [11:34, 04:43](1190 MB) -PASS -- TEST 'rap_diag_debug_intel' [12:30, 04:54](1273 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [11:32, 04:55](1190 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:41, 04:56](1193 MB) -PASS -- TEST 'rap_lndp_debug_intel' [11:39, 04:44](1199 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [11:31, 04:45](1194 MB) -PASS -- TEST 'rap_noah_debug_intel' [11:31, 04:35](1185 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [11:30, 04:44](1191 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:37, 07:32](1188 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [10:28, 04:39](1187 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [12:33, 05:51](1195 MB) -PASS -- TEST 'rap_flake_debug_intel' [14:37, 04:44](1190 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [19:04, 07:59](1190 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:21, 08:45] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:43, 12:10](1698 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:18, 12:02] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [19:15, 03:41](1015 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [16:04, 05:11](879 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [14:21, 02:49](876 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [15:53, 04:50](937 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [56:07, 02:33](931 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [16:02, 02:55](876 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [32:14, 03:56](788 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [27:22, 01:39](772 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:16, 12:21] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [22:26, 01:55](1075 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:17, 01:00](1072 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [18:52, 01:19](961 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:17, 12:32] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [16:53, 03:50](901 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:16, 08:53] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [19:29, 04:32](1066 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [31:30, 04:36](1067 MB) -PASS -- TEST 'conus13km_debug_intel' [41:34, 13:57](1147 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [42:24, 14:04](831 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [19:22, 08:01](1146 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [44:13, 14:19](1214 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:15, 08:34] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [31:21, 04:43](1091 MB) - -PASS -- COMPILE 'hafsw_intel' [21:16, 18:49] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:28, 04:45](702 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [25:45, 05:20](1056 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [16:37, 06:34](752 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [21:23, 11:08](775 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:47, 12:14](801 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [16:23, 04:39](465 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [19:25, 05:52](487 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [16:00, 02:21](388 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [28:55, 06:21](454 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [13:06, 03:19](501 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [16:12, 03:05](501 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [20:27, 04:00](576 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [09:32, 01:16](419 MB) -PASS -- TEST 'gnv1_nested_intel' [31:00, 04:14](1707 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [12:14, 10:13] ( 1470 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [28:30, 12:24](623 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [20:17, 18:27] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:35, 07:17](627 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [22:44, 07:26](686 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [22:17, 19:52] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [20:31, 05:30](675 MB) - -PASS -- COMPILE 'hafs_all_intel' [19:17, 17:31] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:13, 05:46](735 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:16, 05:55](725 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:24, 16:12](895 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [11:14, 09:22] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [17:36, 02:33](768 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:36, 01:38](746 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [08:27, 02:24](644 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [18:30, 02:29](646 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [09:22, 02:27](653 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [18:33, 02:34](756 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [18:29, 02:32](767 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [18:28, 02:24](651 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [21:45, 05:45](697 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [22:37, 05:40](680 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [16:25, 02:30](768 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [18:38, 04:06](2032 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [19:43, 03:58](2035 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:13, 06:47] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [19:36, 05:20](752 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [33:45, 09:52] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:31, 02:30](769 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [24:48, 03:12] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [18:24, 01:25](310 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [18:16, 01:27](452 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [17:43, 00:50](457 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [34:48, 14:46] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [41:08, 04:02](1916 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [33:55, 14:02] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [37:43, 04:01](1899 MB) - -PASS -- COMPILE 'atml_intel' [30:50, 15:45] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [23:42, 07:22](1887 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [23:43, 07:25](1890 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [15:03, 04:32](1034 MB) - -PASS -- COMPILE 'atml_debug_intel' [26:35, 12:19] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [18:50, 06:12](1928 MB) - -PASS -- COMPILE 'atmw_intel' [25:54, 15:17] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [39:37, 02:18](1880 MB) - -PASS -- COMPILE 'atmaero_intel' [24:52, 13:57] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [29:03, 04:24](3130 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:54, 04:27](3004 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:31, 04:29](3022 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [17:38, 09:29] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [35:59, 22:20](4546 MB) - -PASS -- COMPILE 'atm_fbh_intel' [18:48, 12:26] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [23:51, 08:11](814 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: 20240920 08:26:12 -Ending Date/Time: 20240920 14:44:43 -Total Time: 06h:20m:53s +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 1c8f6a1453..325f22a95e 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,31 +1,31 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -34893eceee4525f5276fb3408f7432d3dc195032 +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,287 +37,286 @@ 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_79027 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_93375 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [22:13, 20:22] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:10, 08:17](3188 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:15, 24:38] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [16:54, 13:44](1910 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:40, 14:48](1925 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [19:52, 06:50](1070 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:23, 15:04](1880 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:16, 22:28] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [15:59, 13:20](1906 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:11, 14:21] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:43, 25:33](1938 MB) - -PASS -- COMPILE 's2swa_intel' [21:12, 19:25] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:03, 11:09](3212 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:50, 10:28](3210 MB) -PASS -- TEST 'cpld_restart_p8_intel' [23:55, 06:13](3136 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [14:40, 10:54](3234 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [24:13, 06:33](3159 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [14:28, 08:28](3453 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [16:40, 10:01](3208 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [15:44, 08:55](3154 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:01, 10:12](3211 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [18:02, 09:56](3441 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [25:29, 06:38](3595 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:27, 09:19](4191 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [25:19, 06:01](4348 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:54, 08:31](3196 MB) - -PASS -- COMPILE 's2sw_intel' [20:11, 18:47] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:36, 05:58](1925 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:43, 08:44](1978 MB) - -PASS -- COMPILE 's2swa_debug_intel' [16:11, 14:24] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [18:25, 14:09](3271 MB) - -PASS -- COMPILE 's2sw_debug_intel' [16:11, 14:15] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:35, 09:06](1950 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [19:12, 17:03] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:41, 05:20](1988 MB) - -PASS -- COMPILE 's2s_intel' [18:11, 16:56] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:14, 05:32](2865 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:28, 01:55](2875 MB) -PASS -- TEST 'cpld_restart_c48_intel' [05:09, 01:09](2287 MB) - -PASS -- COMPILE 's2swa_faster_intel' [24:13, 22:09] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [26:03, 10:00](3211 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [25:15, 23:47] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:10, 15:24](1922 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:31, 07:13](1095 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:33, 17:10](1902 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:12, 14:35] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:27, 27:53](1951 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [18:13, 16:09] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [18:31, 03:56](663 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [22:19, 03:22](1561 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [21:15, 03:53](1564 MB) -PASS -- TEST 'control_latlon_intel' [22:06, 03:38](1571 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [20:18, 03:36](1571 MB) -PASS -- TEST 'control_c48_intel' [28:48, 09:57](1576 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [24:06, 05:42](697 MB) -PASS -- TEST 'control_c192_intel' [28:01, 11:11](1690 MB) -PASS -- TEST 'control_c384_intel' [40:22, 23:39](1957 MB) -PASS -- TEST 'control_c384gdas_intel' [30:21, 14:29](1150 MB) -PASS -- TEST 'control_stochy_intel' [11:42, 02:01](618 MB) -PASS -- TEST 'control_stochy_restart_intel' [04:37, 01:13](423 MB) -PASS -- TEST 'control_lndp_intel' [10:45, 01:52](617 MB) -PASS -- TEST 'control_iovr4_intel' [13:48, 02:57](616 MB) -PASS -- TEST 'control_iovr5_intel' [13:36, 02:51](616 MB) -PASS -- TEST 'control_p8_intel' [14:27, 03:45](1857 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [13:32, 03:21](1857 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [09:20, 03:48](1856 MB) -PASS -- TEST 'control_restart_p8_intel' [05:17, 02:03](1005 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:15, 04:00](1856 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:12, 02:36](1016 MB) -PASS -- TEST 'control_decomp_p8_intel' [08:25, 04:03](1848 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:12, 03:29](1930 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:54, 06:33](1860 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:29, 04:34](1907 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:41, 03:32](1864 MB) -PASS -- TEST 'merra2_thompson_intel' [08:13, 03:57](1858 MB) -PASS -- TEST 'regional_control_intel' [07:40, 05:03](849 MB) -PASS -- TEST 'regional_restart_intel' [05:46, 02:49](846 MB) -PASS -- TEST 'regional_decomp_intel' [07:40, 04:59](848 MB) -PASS -- TEST 'regional_2threads_intel' [06:03, 03:02](987 MB) -PASS -- TEST 'regional_noquilt_intel' [06:40, 04:45](1170 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:51, 04:35](856 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:36, 04:45](849 MB) -PASS -- TEST 'regional_wofs_intel' [08:47, 06:16](1573 MB) - -PASS -- COMPILE 'rrfs_intel' [16:14, 14:49] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:17, 06:55](998 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [21:21, 03:47](1128 MB) -PASS -- TEST 'rap_decomp_intel' [22:24, 07:11](995 MB) -PASS -- TEST 'rap_2threads_intel' [10:17, 06:08](1080 MB) -PASS -- TEST 'rap_restart_intel' [06:04, 03:25](865 MB) -PASS -- TEST 'rap_sfcdiff_intel' [22:22, 06:58](997 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [21:24, 07:16](998 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:15, 04:52](864 MB) -PASS -- TEST 'hrrr_control_intel' [10:17, 04:09](994 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [12:32, 04:58](1000 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [17:20, 03:09](1070 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:39, 01:59](820 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:05, 07:49](991 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:04, 08:49](1950 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:04, 08:49](1942 MB) - -PASS -- COMPILE 'csawmg_intel' [16:12, 14:30] -PASS -- TEST 'control_csawmg_intel' [10:04, 06:57](955 MB) -PASS -- TEST 'control_ras_intel' [06:53, 03:43](652 MB) - -PASS -- COMPILE 'wam_intel' [16:11, 14:02] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:17, 11:51](1641 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [17:11, 15:26] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:17, 03:17](1856 MB) -PASS -- TEST 'regional_control_faster_intel' [06:42, 04:30](845 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:12, 14:55] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:11, 02:52](1587 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:04, 03:02](1590 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:31, 03:09](791 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:36, 02:53](791 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:43, 04:15](1091 MB) -PASS -- TEST 'control_ras_debug_intel' [05:29, 02:50](800 MB) -PASS -- TEST 'control_diag_debug_intel' [05:49, 03:13](1650 MB) -PASS -- TEST 'control_debug_p8_intel' [05:45, 03:01](1875 MB) -PASS -- TEST 'regional_debug_intel' [19:48, 16:13](884 MB) -PASS -- TEST 'rap_control_debug_intel' [08:35, 05:01](1171 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:35, 05:04](1166 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:32, 05:09](1168 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:33, 05:07](1168 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:27, 05:11](1171 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:39, 05:34](1259 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:35, 05:20](1169 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:31, 05:26](1171 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:33, 05:07](1171 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:39, 05:20](1171 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:39, 04:52](1167 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:39, 05:08](1171 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:33, 07:56](1171 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:32, 05:01](1165 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:31, 06:05](1170 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:36, 04:59](1171 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:17, 08:32](1176 MB) - -PASS -- COMPILE 'wam_debug_intel' [13:12, 11:24] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [17:11, 13:20](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' [08:13, 03:31](1007 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:08, 05:50](876 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:13, 03:37](871 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:14, 05:18](931 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:12, 02:53](918 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:03, 03:43](872 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:59, 04:12](773 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:39, 01:43](754 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:11, 15:05] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [07:23, 02:12](1076 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:56, 01:00](1053 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:02, 01:26](953 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:13, 15:23] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:07, 04:28](902 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [14:12, 12:30] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:31, 04:59](1049 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:25, 05:16](1045 MB) -PASS -- TEST 'conus13km_debug_intel' [17:09, 14:09](1130 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [19:06, 14:37](803 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:01, 08:26](1112 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:58, 14:38](1199 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [13:12, 11:26] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:33, 05:00](1070 MB) - -PASS -- COMPILE 'hafsw_intel' [20:12, 18:39] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:25, 04:50](682 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:44, 04:02](1029 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:48, 07:21](727 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:27, 11:48](762 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:08, 12:33](777 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:20, 05:12](464 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:36, 06:16](477 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:34, 02:29](364 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:05, 07:05](436 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:09, 03:45](493 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:16, 03:31](497 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:15, 04:07](553 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:46, 01:15](395 MB) -PASS -- TEST 'gnv1_nested_intel' [12:29, 05:07](1696 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [15:11, 13:43] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:18, 12:36](581 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [19:14, 17:07] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:17, 07:16](597 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:32, 07:08](777 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [22:11, 20:50] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [23:53, 05:30](778 MB) - -PASS -- COMPILE 'hafs_all_intel' [19:15, 17:37] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [15:29, 05:58](721 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [21:19, 05:57](704 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [31:20, 20:28](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [15:12, 12:50] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:33, 02:36](752 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [13:36, 01:35](741 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [10:26, 02:27](644 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:32, 02:27](650 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [18:29, 02:31](642 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [18:34, 02:35](752 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [17:30, 02:37](752 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [17:29, 02:30](642 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [21:26, 06:07](694 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [20:09, 05:53](680 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [16:26, 02:34](765 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:25, 04:38](2030 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [18:30, 04:39](2030 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [10:12, 08:25] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [18:31, 05:30](748 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [16:14, 14:05] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [15:29, 02:33](764 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:10, 03:43] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [14:05, 01:49](308 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [11:53, 01:13](454 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:57, 01:07](454 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:11, 15:32] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [14:33, 04:12](1909 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:11, 14:14] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [14:32, 04:02](1895 MB) - -PASS -- COMPILE 'atml_intel' [17:12, 15:26] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [16:05, 07:36](1889 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [16:04, 07:18](1890 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:03, 04:12](1031 MB) - -PASS -- COMPILE 'atml_debug_intel' [14:11, 12:50] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [14:49, 06:25](1918 MB) - -PASS -- COMPILE 'atmw_intel' [17:13, 15:47] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [10:06, 02:28](1879 MB) - -PASS -- COMPILE 'atmaero_intel' [17:15, 14:57] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [13:39, 06:19](3108 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [13:37, 06:44](2993 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:25, 06:58](3007 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [14:11, 12:39] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:36, 18:21](4361 MB) - -PASS -- COMPILE 'atm_fbh_intel' [16:14, 14:21] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:51, 08:57](797 MB) +PASS -- COMPILE 's2swa_32bit_intel' [22:17, 20:14] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:35, 08:22](3188 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:13, 22:47] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:11, 14:01](1910 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:27, 15:51](1938 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [17:54, 08:28](1070 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:52, 15:12](1879 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [27:13, 25:22] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [16:13, 13:56](1908 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [18:13, 16:08] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:09, 26:05](1934 MB) + +PASS -- COMPILE 's2swa_intel' [24:13, 22:50] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:24, 10:12](3211 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:24, 10:07](3208 MB) +PASS -- TEST 'cpld_restart_p8_intel' [18:53, 07:35](3135 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:24, 10:25](3234 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [18:53, 07:19](3157 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [13:01, 08:34](3452 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [13:46, 09:55](3208 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:01, 08:44](3156 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:23, 09:59](3210 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:57, 10:07](3433 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [20:55, 08:04](3592 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:26, 09:34](4191 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:52, 06:14](4348 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:48, 08:00](3193 MB) + +PASS -- COMPILE 's2sw_intel' [24:13, 22:40] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:03, 06:16](1921 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:01, 08:48](1971 MB) + +PASS -- COMPILE 's2swa_debug_intel' [20:16, 18:13] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [19:47, 14:24](3271 MB) + +PASS -- COMPILE 's2sw_debug_intel' [15:15, 13:32] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:15, 09:06](1946 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [22:17, 20:12] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:32, 05:25](1987 MB) + +PASS -- COMPILE 's2s_intel' [23:13, 21:10] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:39, 05:33](2864 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:39, 01:58](2874 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:50, 01:10](2287 MB) + +PASS -- COMPILE 's2swa_faster_intel' [24:13, 22:11] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [22:01, 10:39](3212 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [28:13, 26:21] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:06, 15:17](1926 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:10, 07:19](1098 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:15, 17:46](1906 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [17:12, 15:42] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:14, 27:51](1952 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [19:15, 17:06] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [12:46, 03:51](664 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [15:34, 04:53](1565 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [14:33, 04:41](1564 MB) +PASS -- TEST 'control_latlon_intel' [15:19, 04:39](1572 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [14:32, 04:22](1571 MB) +PASS -- TEST 'control_c48_intel' [18:52, 10:04](1576 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [15:26, 06:40](698 MB) +PASS -- TEST 'control_c192_intel' [17:23, 11:24](1690 MB) +PASS -- TEST 'control_c384_intel' [32:36, 24:06](1958 MB) +PASS -- TEST 'control_c384gdas_intel' [25:27, 14:43](1150 MB) +PASS -- TEST 'control_stochy_intel' [10:31, 02:02](619 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:00, 01:01](425 MB) +PASS -- TEST 'control_lndp_intel' [10:26, 01:53](617 MB) +PASS -- TEST 'control_iovr4_intel' [10:36, 02:38](616 MB) +PASS -- TEST 'control_iovr5_intel' [10:03, 02:41](618 MB) +PASS -- TEST 'control_p8_intel' [10:10, 03:54](1857 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [10:30, 03:33](1858 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [10:09, 04:05](1858 MB) +PASS -- TEST 'control_restart_p8_intel' [06:18, 02:05](1005 MB) +PASS -- TEST 'control_noqr_p8_intel' [10:07, 03:53](1856 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:33, 01:58](1016 MB) +PASS -- TEST 'control_decomp_p8_intel' [10:57, 03:56](1847 MB) +PASS -- TEST 'control_2threads_p8_intel' [09:59, 03:38](1931 MB) +PASS -- TEST 'control_p8_lndp_intel' [11:25, 06:55](1860 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [10:07, 04:19](1906 MB) +PASS -- TEST 'control_p8_mynn_intel' [09:09, 03:27](1864 MB) +PASS -- TEST 'merra2_thompson_intel' [09:06, 03:48](1857 MB) +PASS -- TEST 'regional_control_intel' [09:15, 05:02](856 MB) +PASS -- TEST 'regional_restart_intel' [05:39, 02:35](848 MB) +PASS -- TEST 'regional_decomp_intel' [06:56, 04:51](847 MB) +PASS -- TEST 'regional_2threads_intel' [04:53, 02:54](989 MB) +PASS -- TEST 'regional_noquilt_intel' [08:13, 04:46](1172 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:26, 05:09](856 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:23, 04:46](849 MB) +PASS -- TEST 'regional_wofs_intel' [09:29, 06:24](1572 MB) + +PASS -- COMPILE 'rrfs_intel' [16:12, 14:06] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:55, 06:59](995 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [16:07, 04:06](1130 MB) +PASS -- TEST 'rap_decomp_intel' [14:44, 07:34](996 MB) +PASS -- TEST 'rap_2threads_intel' [12:03, 06:23](1080 MB) +PASS -- TEST 'rap_restart_intel' [06:57, 03:29](866 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:07, 07:04](998 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:07, 07:38](999 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:48, 05:06](865 MB) +PASS -- TEST 'hrrr_control_intel' [14:42, 03:56](994 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [14:45, 03:53](1001 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [14:55, 03:14](1071 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:17, 02:00](822 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:28, 06:53](993 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:09, 08:57](1951 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:09, 08:30](1941 MB) + +PASS -- COMPILE 'csawmg_intel' [15:13, 13:22] +PASS -- TEST 'control_csawmg_intel' [18:30, 07:04](954 MB) +PASS -- TEST 'control_ras_intel' [05:59, 03:26](652 MB) + +PASS -- COMPILE 'wam_intel' [17:15, 15:30] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:38, 12:20](1641 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [17:15, 15:32] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [09:24, 03:49](1855 MB) +PASS -- TEST 'regional_control_faster_intel' [08:18, 04:38](846 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [17:16, 15:07] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [08:03, 03:05](1590 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:46, 03:00](1592 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:53, 03:14](790 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:52, 02:52](788 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:02, 04:41](1094 MB) +PASS -- TEST 'control_ras_debug_intel' [06:22, 02:55](799 MB) +PASS -- TEST 'control_diag_debug_intel' [05:50, 03:04](1653 MB) +PASS -- TEST 'control_debug_p8_intel' [06:18, 03:12](1877 MB) +PASS -- TEST 'regional_debug_intel' [19:16, 16:31](886 MB) +PASS -- TEST 'rap_control_debug_intel' [07:39, 05:03](1173 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:52, 05:09](1169 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:32, 05:11](1170 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:48, 05:29](1170 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:40, 05:24](1173 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:55, 05:49](1263 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:44, 05:44](1172 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:44, 05:41](1174 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:43, 05:50](1174 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:31, 05:45](1174 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:46, 05:22](1170 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:39, 05:29](1174 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:40, 08:42](1172 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [09:04, 05:05](1168 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [10:15, 05:59](1173 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:46, 05:12](1173 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:30, 08:45](1179 MB) + +PASS -- COMPILE 'wam_debug_intel' [13:11, 11:19] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [23:51, 13:20](1678 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:12, 15:14] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:49, 03:40](999 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:37, 05:59](876 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:31, 03:51](871 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:40, 05:24](931 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:29, 02:46](921 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:29, 03:40](872 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [16:11, 04:30](775 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [12:15, 02:04](754 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:14, 14:31] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:51, 02:26](1076 MB) +PASS -- TEST 'conus13km_2threads_intel' [10:46, 00:59](1055 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [12:14, 01:45](953 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:12, 15:35] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:37, 04:26](902 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [13:13, 11:46] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:37, 05:22](1048 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:38, 05:00](1043 MB) +PASS -- TEST 'conus13km_debug_intel' [18:02, 14:48](1128 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:43, 14:45](801 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [16:27, 08:17](1109 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [22:54, 14:49](1197 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:16, 12:43] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:38, 05:07](1072 MB) + +PASS -- COMPILE 'hafsw_intel' [22:15, 20:59] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [15:56, 04:40](685 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [14:20, 03:51](1035 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [18:07, 07:24](730 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [22:50, 11:30](764 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:03, 12:44](774 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [15:49, 05:03](465 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [17:02, 06:23](478 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [14:04, 02:34](367 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [21:09, 07:19](428 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [14:39, 03:51](495 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [13:57, 03:49](492 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [14:51, 04:11](551 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [10:39, 01:18](396 MB) +PASS -- TEST 'gnv1_nested_intel' [20:23, 07:00](1697 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [18:15, 16:26] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [21:51, 12:24](581 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:12, 18:22] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:40, 07:36](595 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:39, 07:59](776 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [21:12, 19:22] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:51, 05:50](779 MB) + +PASS -- COMPILE 'hafs_all_intel' [21:12, 19:39] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [15:49, 06:40](720 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:52, 06:09](701 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [24:35, 20:07](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [15:13, 13:27] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:33, 02:43](766 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:44, 01:38](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:11, 02:31](641 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:56, 02:30](642 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:47, 02:29](642 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:50, 02:39](752 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:52, 02:36](766 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:46, 02:34](641 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:57, 05:57](695 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:49, 05:53](680 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:44, 02:40](767 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:02, 04:40](2031 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:37, 04:41](2030 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [11:13, 09:39] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:40, 05:30](746 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [17:15, 15:43] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:33, 02:36](766 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:11, 03:47] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:15, 01:52](316 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [06:14, 01:32](454 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [06:12, 00:44](454 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [19:14, 17:13] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:02, 04:27](1911 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [20:13, 18:30] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:16, 04:17](1895 MB) + +PASS -- COMPILE 'atml_intel' [18:13, 16:40] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [15:46, 08:24](1887 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [15:44, 08:27](1889 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [11:24, 04:03](1028 MB) + +PASS -- COMPILE 'atml_debug_intel' [17:12, 15:13] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [13:22, 06:55](1918 MB) + +PASS -- COMPILE 'atmw_intel' [21:12, 19:39] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:29, 03:24](1880 MB) + +PASS -- COMPILE 'atmaero_intel' [18:15, 16:32] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [12:33, 07:08](3107 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [14:25, 07:17](2993 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:00, 07:21](3007 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [15:12, 13:07] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [39:05, 18:05](4419 MB) + +PASS -- COMPILE 'atm_fbh_intel' [17:12, 15:19] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [14:07, 08:58](796 MB) SYNOPSIS: -Starting Date/Time: 20240920 15:26:28 -Ending Date/Time: 20240920 17:29:12 -Total Time: 02h:04m:00s +Starting Date/Time: 20240926 19:58:08 +Ending Date/Time: 20240926 22:19:21 +Total Time: 02h:24m:06s Compiles Completed: 42/42 Tests Completed: 186/186 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 2a303310d1..561bffd671 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,20 +1,20 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -b95e609779120a4b25ff8dfad685996d7be80821 +7d136e0c38b9444ecb96b52e558bd6ee43f3ca09 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) + bf66bf7abdd3c057f4ee85f2655a33b7f4459676 CICE-interface/CICE (remotes/origin/sync_cice) dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a9364591091c836984a40107729720705847c195 FV3 (heads/develop) + f188fe2afb3dd04f460a36ddda5e18e17c68f422 FV3 (remotes/origin/support_intelllvm) 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) 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) @@ -26,376 +26,376 @@ 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_3789171 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_927600 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:11, 12:59] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:09, 06:35](3310 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:12, 16:27] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:10, 17:37](1974 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:14, 18:13](2158 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:13, 08:26](1260 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:09, 19:42](1857 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:12, 17:03] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:53, 17:19](1935 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 06:09] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:04, 23:51](1925 MB) - -PASS -- COMPILE 's2swa_intel' [15:11, 13:21] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:20, 07:40](3339 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:32, 07:36](3361 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:23, 04:18](3261 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:20, 07:49](3350 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:23, 04:22](3276 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:21, 07:17](3643 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:19, 07:54](3307 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:21, 06:16](3222 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:32, 07:41](3330 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:19, 10:25](3528 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:49, 06:39](3623 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:12, 09:10](4278 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:17, 05:46](4374 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:18, 05:32](3311 MB) - -PASS -- COMPILE 's2sw_intel' [13:12, 12:07] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:08, 05:50](1992 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:12, 07:24](2011 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:12] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [16:07, 13:41](3401 MB) +PASS -- COMPILE 's2swa_32bit_intel' [15:12, 13:54] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:19, 06:25](3306 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:13, 16:43] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:07, 17:26](1952 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:25, 18:17](2159 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:12, 08:31](1268 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:01, 19:37](1855 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:13, 16:51] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:51, 17:17](1937 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 06:01] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:11, 25:09](1889 MB) + +PASS -- COMPILE 's2swa_intel' [15:12, 13:53] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:15, 07:38](3329 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:24, 07:44](3344 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:22, 04:25](3247 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:16, 07:45](3344 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:12, 04:25](3267 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:12, 07:28](3640 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:13, 07:52](3324 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:15, 06:26](3190 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:23, 07:45](3316 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:11, 10:29](3520 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:05, 06:26](3621 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:25, 09:00](4325 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:34, 06:00](4382 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:13, 05:34](3300 MB) + +PASS -- COMPILE 's2sw_intel' [13:12, 11:59] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:12, 05:45](1981 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:20, 07:23](2016 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:08] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [17:03, 14:17](3402 MB) PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:50] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:01, 09:17](2007 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:11, 11:30] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:16, 04:32](2038 MB) - -PASS -- COMPILE 's2s_intel' [13:11, 11:20] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:54, 07:54](3038 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:53, 02:43](3027 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:58, 01:35](2490 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:11, 16:56] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:28, 07:20](3355 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 15:54] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:19, 17:33](2007 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:23, 08:28](1271 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:04, 20:08](1918 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:11, 06:16] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:21, 26:17](1946 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:11, 11:18] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:25, 03:23](704 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:47, 03:15](1581 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:53, 03:19](1596 MB) -PASS -- TEST 'control_latlon_intel' [05:41, 03:14](1575 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:47, 03:15](1585 MB) -PASS -- TEST 'control_c48_intel' [13:42, 11:29](1719 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:27, 06:30](849 MB) -PASS -- TEST 'control_c192_intel' [14:17, 12:03](1761 MB) -PASS -- TEST 'control_c384_intel' [17:23, 13:56](1985 MB) -PASS -- TEST 'control_c384gdas_intel' [13:13, 08:11](1373 MB) -PASS -- TEST 'control_stochy_intel' [03:28, 01:38](654 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:31, 01:02](509 MB) -PASS -- TEST 'control_lndp_intel' [03:25, 01:34](658 MB) -PASS -- TEST 'control_iovr4_intel' [04:26, 02:30](649 MB) -PASS -- TEST 'control_iovr5_intel' [04:25, 02:32](656 MB) -PASS -- TEST 'control_p8_intel' [05:56, 03:46](1857 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:56, 03:09](1854 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:51, 03:42](1866 MB) -PASS -- TEST 'control_restart_p8_intel' [04:51, 02:05](1119 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:51, 03:44](1872 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:53, 02:00](1164 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:47, 03:47](1874 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:46, 03:34](1963 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:42, 06:31](1890 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:51, 04:09](1925 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:53, 03:11](1905 MB) -PASS -- TEST 'merra2_thompson_intel' [05:52, 03:28](1903 MB) -PASS -- TEST 'regional_control_intel' [07:38, 05:22](1088 MB) -PASS -- TEST 'regional_restart_intel' [05:36, 03:02](1080 MB) -PASS -- TEST 'regional_decomp_intel' [07:33, 05:42](1082 MB) -PASS -- TEST 'regional_2threads_intel' [05:38, 03:26](1087 MB) -PASS -- TEST 'regional_noquilt_intel' [07:43, 05:17](1385 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:39, 05:23](1087 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:36, 05:19](1084 MB) -PASS -- TEST 'regional_wofs_intel' [08:36, 07:01](1897 MB) - -PASS -- COMPILE 'rrfs_intel' [12:12, 10:53] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:45, 07:54](1101 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:21, 04:13](1245 MB) -PASS -- TEST 'rap_decomp_intel' [10:44, 08:12](1029 MB) -PASS -- TEST 'rap_2threads_intel' [09:45, 07:22](1166 MB) -PASS -- TEST 'rap_restart_intel' [06:49, 04:07](1104 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:47, 07:47](1108 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:44, 08:14](1033 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:48, 05:51](1136 MB) -PASS -- TEST 'hrrr_control_intel' [06:45, 04:01](1041 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:45, 04:06](1022 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:48, 03:41](1099 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:32, 02:13](990 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:55, 07:42](1099 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:32, 09:25](1963 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:28, 09:04](2056 MB) - -PASS -- COMPILE 'csawmg_intel' [11:11, 09:51] -PASS -- TEST 'control_csawmg_intel' [08:47, 06:13](1028 MB) -PASS -- TEST 'control_ras_intel' [05:24, 03:18](743 MB) - -PASS -- COMPILE 'csawmg_gnu' [06:10, 04:15] -PASS -- TEST 'control_csawmg_gnu' [10:49, 08:26](739 MB) - -PASS -- COMPILE 'wam_intel' [12:11, 10:26] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:46, 11:26](1662 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:48] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:58, 02:52](1884 MB) -PASS -- TEST 'regional_control_faster_intel' [07:37, 04:56](1076 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 07:43] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:43, 02:13](1608 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:44, 02:10](1615 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:20, 03:10](825 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:20, 02:49](832 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:34, 04:22](1135 MB) -PASS -- TEST 'control_ras_debug_intel' [04:23, 02:55](833 MB) -PASS -- TEST 'control_diag_debug_intel' [05:47, 02:50](1687 MB) -PASS -- TEST 'control_debug_p8_intel' [05:40, 02:45](1892 MB) -PASS -- TEST 'regional_debug_intel' [19:38, 17:48](1133 MB) -PASS -- TEST 'rap_control_debug_intel' [06:24, 05:02](1213 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:24, 04:54](1215 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:22, 05:02](1215 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:22, 05:08](1207 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 05:07](1210 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:41, 05:29](1296 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:24, 05:12](1212 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:22, 05:17](1209 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:24, 05:01](1217 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 05:05](1212 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:24, 04:53](1209 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:26, 05:05](1209 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:27, 08:24](1213 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:59](1210 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:24, 06:27](1192 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:23, 05:03](1215 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:40, 08:39](1216 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:11, 04:18] -PASS -- TEST 'control_csawmg_debug_gnu' [04:46, 02:22](714 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:12, 05:45] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:45, 13:44](1687 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 09:45] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:03, 03:57](1119 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:40, 06:30](1044 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:36, 03:27](976 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:34, 06:11](1082 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:32, 03:11](954 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:35, 03:37](931 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:40, 04:54](1021 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:24, 01:52](920 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 09:55] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:57, 02:09](1191 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:50, 00:57](1106 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:41, 01:16](1098 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:12, 10:03] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:42, 04:17](978 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:05] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:22, 05:02](1089 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:24, 04:56](1091 MB) -PASS -- TEST 'conus13km_debug_intel' [17:49, 15:23](1234 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:45, 15:28](931 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:43, 08:29](1149 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:46, 15:13](1297 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:35] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:23, 05:12](1106 MB) - -PASS -- COMPILE 'hafsw_intel' [13:12, 11:32] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:18, 05:06](731 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:30, 06:08](1095 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:27, 07:01](817 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:14, 13:34](847 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:31, 15:22](864 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:16, 05:29](490 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:25, 06:59](506 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:45, 02:41](379 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:02, 07:22](464 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:52, 03:44](518 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:56, 03:29](523 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:55, 04:18](574 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:28, 01:10](400 MB) -PASS -- TEST 'gnv1_nested_intel' [07:29, 04:12](1729 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:11, 05:37] ( 1465 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:49, 13:19](588 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:19] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:55, 08:45](640 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:04, 08:53](733 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 11:43] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:25, 06:28](720 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:11, 10:56] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:12, 06:33](822 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:09, 06:35](793 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:53, 16:04](1213 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:35] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:41](1161 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:37](1101 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:39](1037 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:37](1025 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:37](1032 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:35](1154 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 02:42](1153 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:31](1033 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:18, 06:18](1068 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:14, 06:13](1048 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:40](1163 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:18, 03:52](2464 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 03:52](2463 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:27] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:19, 06:27](1084 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:12, 06:40] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:41](1151 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:20] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:45](260 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:52](327 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:23, 00:32](326 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 11:01] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:03, 03:42](1984 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 10:26] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:53, 03:35](1958 MB) - -PASS -- COMPILE 'atml_intel' [12:12, 11:01] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:58, 04:23](1846 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:55, 04:19](1855 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:39, 02:25](1077 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:10, 05:50] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:50, 05:52](1893 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 10:27] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:43, 01:52](1915 MB) - -PASS -- COMPILE 'atmaero_intel' [12:10, 10:28] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:52, 04:05](3198 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:53, 04:53](3094 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:41, 05:12](3112 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:10, 04:41] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_gnu' [06:11, 04:42] -PASS -- TEST 'control_c48_gnu' [11:36, 09:11](1508 MB) -PASS -- TEST 'control_stochy_gnu' [05:21, 03:22](493 MB) -PASS -- TEST 'control_ras_gnu' [06:21, 04:48](497 MB) -PASS -- TEST 'control_p8_gnu' [07:58, 05:11](1455 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [07:54, 05:06](1456 MB) -PASS -- TEST 'control_flake_gnu' [12:21, 10:31](531 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:10, 04:29] -PASS -- TEST 'rap_control_gnu' [12:29, 10:50](811 MB) -PASS -- TEST 'rap_decomp_gnu' [12:31, 11:06](811 MB) -PASS -- TEST 'rap_2threads_gnu' [11:35, 09:43](919 MB) -PASS -- TEST 'rap_restart_gnu' [07:40, 05:37](577 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [12:39, 10:53](846 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:39, 11:04](840 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:43, 08:04](577 MB) -PASS -- TEST 'hrrr_control_gnu' [07:34, 05:43](805 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:34, 05:35](827 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [06:38, 05:03](911 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:29, 05:38](804 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:25, 02:56](563 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:24, 02:49](650 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [12:58, 10:28](841 MB) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:01, 09:50](2000 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:15, 11:14] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:15, 04:28](2023 MB) + +PASS -- COMPILE 's2s_intel' [13:15, 11:27] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:57, 07:45](3037 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:53, 02:45](3038 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:45, 01:36](2473 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:11, 17:02] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:28, 07:37](3349 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:12, 16:08] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:11, 17:25](1993 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:34, 08:25](1271 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:16, 20:08](1936 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:11, 07:05] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:18, 25:59](1954 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:12, 10:44] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:27, 03:29](704 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:42, 03:13](1572 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:47, 03:19](1590 MB) +PASS -- TEST 'control_latlon_intel' [05:43, 03:14](1582 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:52, 03:16](1584 MB) +PASS -- TEST 'control_c48_intel' [13:47, 11:34](1726 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:29, 06:31](854 MB) +PASS -- TEST 'control_c192_intel' [14:16, 12:03](1753 MB) +PASS -- TEST 'control_c384_intel' [17:05, 13:42](1997 MB) +PASS -- TEST 'control_c384gdas_intel' [12:44, 08:22](1381 MB) +PASS -- TEST 'control_stochy_intel' [03:25, 01:41](658 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:33, 01:08](496 MB) +PASS -- TEST 'control_lndp_intel' [03:25, 01:34](656 MB) +PASS -- TEST 'control_iovr4_intel' [04:29, 02:40](653 MB) +PASS -- TEST 'control_iovr5_intel' [04:27, 02:30](651 MB) +PASS -- TEST 'control_p8_intel' [06:02, 03:43](1875 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:04, 03:10](1890 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:00, 03:39](1881 MB) +PASS -- TEST 'control_restart_p8_intel' [04:53, 02:03](1131 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:56, 03:40](1859 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:59, 02:03](1158 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:52, 03:47](1860 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:52, 03:32](1966 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:46, 06:37](1864 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:56, 04:11](1945 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:00, 03:08](1898 MB) +PASS -- TEST 'merra2_thompson_intel' [05:55, 03:27](1899 MB) +PASS -- TEST 'regional_control_intel' [07:41, 05:25](1084 MB) +PASS -- TEST 'regional_restart_intel' [04:38, 02:53](1088 MB) +PASS -- TEST 'regional_decomp_intel' [07:38, 05:41](1079 MB) +PASS -- TEST 'regional_2threads_intel' [05:40, 03:25](1083 MB) +PASS -- TEST 'regional_noquilt_intel' [07:41, 05:20](1395 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:42, 05:18](1089 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:35, 05:23](1094 MB) +PASS -- TEST 'regional_wofs_intel' [08:39, 06:57](1897 MB) + +PASS -- COMPILE 'rrfs_intel' [12:11, 10:18] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:47, 07:48](1103 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:11, 04:09](1247 MB) +PASS -- TEST 'rap_decomp_intel' [10:47, 08:11](1026 MB) +PASS -- TEST 'rap_2threads_intel' [09:53, 07:22](1175 MB) +PASS -- TEST 'rap_restart_intel' [06:45, 04:03](1097 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:52, 07:44](1098 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:52, 08:12](1030 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:48, 05:54](1125 MB) +PASS -- TEST 'hrrr_control_intel' [06:46, 04:02](1037 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:46, 04:09](1025 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:46, 03:40](1098 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:35, 02:13](997 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:58, 07:43](1091 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:37, 09:42](1980 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:40, 09:19](2046 MB) + +PASS -- COMPILE 'csawmg_intel' [12:11, 10:14] +PASS -- TEST 'control_csawmg_intel' [09:45, 06:08](1019 MB) +PASS -- TEST 'control_ras_intel' [06:25, 03:19](747 MB) + +PASS -- COMPILE 'csawmg_gnu' [06:11, 04:26] +PASS -- TEST 'control_csawmg_gnu' [10:39, 08:30](735 MB) + +PASS -- COMPILE 'wam_intel' [11:12, 09:57] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:52, 11:26](1641 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:12, 10:14] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:56, 02:51](1879 MB) +PASS -- TEST 'regional_control_faster_intel' [06:38, 04:55](1093 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:12, 08:10] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:46, 02:22](1616 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:45, 02:17](1610 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:25, 03:07](826 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:48](833 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:37, 04:23](1130 MB) +PASS -- TEST 'control_ras_debug_intel' [04:22, 03:02](834 MB) +PASS -- TEST 'control_diag_debug_intel' [04:47, 02:51](1701 MB) +PASS -- TEST 'control_debug_p8_intel' [05:45, 02:42](1905 MB) +PASS -- TEST 'regional_debug_intel' [19:41, 17:22](1099 MB) +PASS -- TEST 'rap_control_debug_intel' [07:25, 05:05](1220 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:28, 05:11](1205 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:25, 05:11](1206 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:27, 05:08](1204 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:26, 05:11](1207 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:53, 05:20](1301 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:26, 05:12](1214 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:27, 05:20](1208 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:35, 05:20](1213 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:33, 05:18](1203 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:33, 05:13](1214 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:32, 05:16](1201 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:27, 08:19](1213 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:29, 05:04](1211 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:27, 06:21](1214 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:24, 05:05](1209 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:43, 08:50](1218 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:11, 04:20] +PASS -- TEST 'control_csawmg_debug_gnu' [04:38, 02:26](713 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:10, 04:43] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:57, 13:46](1673 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 09:44] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:06, 03:56](1125 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:39, 06:30](1061 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:43, 03:25](975 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:40, 06:12](1085 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:33, 03:26](951 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:34, 03:40](927 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:41, 04:51](1012 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:27, 01:52](929 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:12, 09:56] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:56, 02:09](1184 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:47, 00:55](1105 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:43, 01:13](1084 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:12, 10:09] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:44, 04:13](968 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:00] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 05:01](1091 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:24, 05:00](1085 MB) +PASS -- TEST 'conus13km_debug_intel' [18:03, 15:19](1231 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [18:03, 15:19](960 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:56, 08:15](1159 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:59, 14:51](1304 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:56] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:29, 05:03](1141 MB) + +PASS -- COMPILE 'hafsw_intel' [13:13, 11:45] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:23, 05:01](726 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:40, 05:52](1096 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:29, 06:55](817 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:24, 13:25](845 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:39, 15:28](873 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:55, 05:29](489 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:25, 06:46](507 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:44, 02:42](366 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:10, 07:14](467 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:46, 03:38](513 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:49, 03:28](516 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:54, 04:03](572 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:28, 01:11](397 MB) +PASS -- TEST 'gnv1_nested_intel' [07:42, 04:01](1745 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:11, 05:27] ( 1465 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:00, 12:59](589 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:13, 11:21] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:05, 08:47](646 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:06, 08:50](734 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 11:30] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:28, 06:23](717 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:13, 10:50] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:18, 06:32](817 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:15, 06:35](792 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:58, 16:16](1220 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:12, 06:44] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 02:46](1159 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:42](1089 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:38](1043 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:37](1028 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:38](1022 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:44](1154 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:39](1155 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:35](1039 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:34, 06:18](1068 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:23, 06:14](1047 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:39](1163 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:21, 03:57](2453 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:20, 03:57](2505 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:30] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:20, 06:29](1082 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:13, 07:02] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:20, 02:46](1152 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:03] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:32, 00:54](263 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:27, 00:56](326 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:39](321 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:13, 11:19] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:13, 03:49](1974 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 10:24] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:02, 03:45](1935 MB) + +PASS -- COMPILE 'atml_intel' [12:14, 11:01] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:11, 04:25](1832 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:05, 04:26](1827 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:51, 02:28](1099 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:11, 06:23] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:00, 05:55](1859 MB) + +PASS -- COMPILE 'atmw_intel' [12:12, 10:56] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:54, 02:00](1906 MB) + +PASS -- COMPILE 'atmaero_intel' [12:12, 10:30] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:02, 04:18](3168 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:00, 04:58](3091 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:47, 05:16](3097 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:10, 04:43] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_gnu' [06:10, 04:37] +PASS -- TEST 'control_c48_gnu' [11:48, 09:26](1505 MB) +PASS -- TEST 'control_stochy_gnu' [05:26, 03:32](489 MB) +PASS -- TEST 'control_ras_gnu' [06:24, 04:55](502 MB) +PASS -- TEST 'control_p8_gnu' [08:08, 05:21](1451 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [08:01, 05:16](1426 MB) +PASS -- TEST 'control_flake_gnu' [12:29, 10:25](532 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:12, 04:18] +PASS -- TEST 'rap_control_gnu' [12:38, 10:54](806 MB) +PASS -- TEST 'rap_decomp_gnu' [12:37, 11:06](805 MB) +PASS -- TEST 'rap_2threads_gnu' [11:43, 09:58](917 MB) +PASS -- TEST 'rap_restart_gnu' [07:46, 05:39](570 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [12:40, 10:57](838 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:40, 11:22](810 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:47, 08:07](593 MB) +PASS -- TEST 'hrrr_control_gnu' [07:43, 05:45](837 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:38, 05:42](793 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [07:37, 05:12](903 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:36, 05:46](840 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [06:31, 02:55](555 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:30, 02:53](645 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [12:49, 10:50](834 MB) PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:10, 06:43] -PASS -- TEST 'control_diag_debug_gnu' [03:43, 01:37](1269 MB) -PASS -- TEST 'regional_debug_gnu' [13:34, 11:53](752 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:22, 02:39](818 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:20, 02:35](816 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:20, 02:38](819 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:19, 02:39](822 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:36, 02:47](904 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:20, 04:08](820 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:20, 02:38](825 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:20, 02:37](818 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:18, 01:34](454 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:19, 01:44](449 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:37, 01:40](1429 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:21, 02:43](818 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:19, 02:54](819 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:45, 04:24](820 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:36] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 04:08] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:35, 09:28](699 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:39, 04:56](693 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:39, 08:31](742 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:32, 04:30](746 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:34, 05:05](697 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:40, 06:56](548 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:33, 02:35](529 MB) -PASS -- TEST 'conus13km_control_gnu' [05:58, 03:14](866 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:42, 05:42](871 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:44, 01:55](558 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:34] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:41, 05:46](725 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [09:11, 06:44] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:21, 02:36](708 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:21, 02:29](709 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:48, 07:04](884 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [09:47, 07:16](575 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [09:40, 07:47](886 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:42, 07:05](949 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:10, 06:42] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:24, 02:37](737 MB) - -PASS -- COMPILE 's2swa_gnu' [18:11, 16:30] - -PASS -- COMPILE 's2s_gnu' [18:12, 16:11] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [13:00, 11:00](1499 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:08] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:12, 15:53] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [24:58, 23:00](1455 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 02:56] - -PASS -- COMPILE 'datm_cdeps_gnu' [17:12, 15:35] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:25, 02:57](697 MB) - -PASS -- COMPILE 'atm_fbh_intel' [11:11, 09:52] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:28, 11:40](1082 MB) +PASS -- TEST 'control_diag_debug_gnu' [03:58, 01:44](1261 MB) +PASS -- TEST 'regional_debug_gnu' [12:49, 10:51](735 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:29, 02:46](816 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:31, 02:39](811 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:26, 02:41](816 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:24, 02:37](819 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:40, 02:55](895 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:26, 04:13](810 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:25, 02:50](818 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:24, 02:51](804 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:23, 01:46](447 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:22, 01:56](441 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:41, 01:43](1430 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:25, 02:44](810 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [05:23, 02:58](811 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:42, 04:26](817 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:10, 02:27] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 04:29] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:32, 09:25](694 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:39, 05:01](688 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:42, 08:35](740 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:35, 04:31](737 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:34, 05:01](690 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:38, 07:11](548 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:31, 02:33](531 MB) +PASS -- TEST 'conus13km_control_gnu' [05:59, 03:10](866 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:48, 05:55](863 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:46, 01:49](554 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:12, 10:00] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:40, 05:46](717 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:13, 06:41] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:24, 02:38](709 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:26, 02:34](700 MB) +PASS -- TEST 'conus13km_debug_gnu' [10:52, 06:54](877 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [10:49, 07:16](568 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [10:45, 08:10](877 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [10:43, 07:01](945 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:13, 06:48] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [06:25, 02:39](724 MB) + +PASS -- COMPILE 's2swa_gnu' [18:14, 16:33] + +PASS -- COMPILE 's2s_gnu' [17:14, 16:04] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [14:09, 11:16](1496 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [05:11, 03:13] + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:13, 16:08] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [23:02, 20:12](1454 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:04] + +PASS -- COMPILE 'datm_cdeps_gnu' [17:13, 15:34] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:18, 02:59](695 MB) + +PASS -- COMPILE 'atm_fbh_intel' [11:12, 09:49] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:30, 11:20](1081 MB) SYNOPSIS: -Starting Date/Time: 20240920 14:14:41 -Ending Date/Time: 20240920 16:00:24 -Total Time: 01h:46m:04s +Starting Date/Time: 20240926 15:12:04 +Ending Date/Time: 20240926 16:56:59 +Total Time: 01h:45m:12s Compiles Completed: 58/58 Tests Completed: 244/244 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 266a62f75d..0ecc92b7ae 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,69 +1,33 @@ -====START OF HERCULES REGRESSION TESTING LOG==== +====START OF hercules REGRESSION TESTING LOG==== UFSWM hash used in testing: -c1728190d100b0c3924807bf950e747998706f4f +7d136e0c38b9444ecb96b52e558bd6ee43f3ca09 Submodule hashes used in testing: -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:05, 05:03](1736 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:52, 09:08](2548 MB) 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQPASS -- TEST 'cpld_decomp_p8_intel' [09:06, 08:16](2181 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:30, 06:56](2092 MB) - (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 635d9a100a736bd8d14ad091e879d5da6e4eb2bd CICE-interface/CICEPASS -- TEST 'cpld_control_ciceC_p8_intel' [08:33, 07:51](2193 MB) - (CICE6.0.0-373-g635d9a1) - 4c87095256c1c599c3ccaa857a95744158751a60 CICE-interface/CICE/icepackPASS -- TEST 'cpld_control_c192_p8_intel' [17:19, 15:51](2960 MB) - (Icepack1.1.0-191-g4c87095) - dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPSPASS -- TEST 'cpld_restart_c192_p8_intel' [07:39, 05:52](2904 MB) - (cmeps_v0.4.1-2310-gdc977bc) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModulesPASS -- TEST 'cpld_bmark_p8_intel' [14:15, 09:50](3805 MB) - (v1.0.0-28-gcabd775) - a9364591091c836984a40107729720705847c195 FV3PASS -- TEST 'cpld_restart_bmark_p8_intel' [11:18, 05:21](3633 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [05:38, 05:07](2143 MB) - (heads/develop) - ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework -PASS -- COMPILE 's2sw_intel' [12:10, 12:10] - (2024-07-11-dev) - b6c433354394bd8ed5e46692a81149441ff4ae38 FV3/ccpp/physicsPASS -- TEST 'cpld_control_noaero_p8_intel' [08:02, 07:19](2008 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:33, 06:59](2062 MB) - (EP4-873-gb6c43335) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp -PASS -- COMPILE 's2swa_debug_intel' [07:50, 07:50] - (v1.6) - 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/uppPASS -- TEST 'cpld_debug_p8_intel' [12:48, 12:03](2231 MB) - (upp_v10.2.0-218-g81b38a88) + 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) + f188fe2afb3dd04f460a36ddda5e18e17c68f422 FV3 (remotes/origin/support_intelllvm) + b947391ed4d23ffa15f5c854e7d5c4849abefc40 FV3/atmos_cubed_sphere (201912_public_release-414-gb947391) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 77d28126e3dbb19ad9714d3703764202ebce82ec FV3/ccpp/physics (remotes/origin/support_intelllvm) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 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 - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART -PASS -- COMPILE 's2sw_debug_intel' [06:50, 06:50] - (sdr_v2.1.2.6-119-g0414229) +-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) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:02, 08:21](2044 MB) - 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 -PASS -- COMPILE 's2s_aoflux_intel' [11:02, 11:02] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:13, 04:26](2065 MB) - -PASS -- COMPILE 's2s_intel' [11:01, 11:01] -PASS -- TEST 'cpld_control_c48_intel' [06:26, 05:57](3026 MB) - (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-srcPASS -- TEST 'cpld_warmstart_c48_intel' [02:35, 02:05](3031 MB) - (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-FortranPASS -- TEST 'cpld_restart_c48_intel' [01:32, 01:15](2482 MB) - (29e64d6) - -PASS -- COMPILE 's2swa_faster_intel' [12:52, 12:51] + 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 WW3PASS -- TEST 'cpld_control_p8_faster_intel' [08:49, 08:07](2199 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:23, 16:22] - (6.07.1-346-g7f548c79) - 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behaviorPASS -- TEST 'cpld_control_pdlib_p8_intel' [14:55, 14:14](2061 MB) - (v0.2.0-1-g05cad17) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physicsPASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:41, 06:55](1400 MB) - (ufs-v2.0.0-219-gfad2fe9) - + 6810b2d8dbceea2b5e47b3f1b59b5461aded3827 WW3 (remotes/origin/support_intelllvm) + 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). @@ -72,704 +36,384 @@ 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_3463251 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/jongkim/FV3_RT/rt_3825702 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-r) - USE ROCOTO -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:12, 15:30](1986 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:09, 05:09] - -PASS -- COMPILE 's2swa_32bit_intel' [12:44, 12:44] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:34, 23:52](2002 MB) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:40, 07:47](2137 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:00, 09:00] - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:08, 22:08] -PASS -- TEST 'control_flake_intel' [03:07, 02:52](712 MB) -PASS -- TEST 'cpld_control_gfsv17_intel' [14:23, 13:29](1995 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:02, 02:43](1572 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:10, 14:14](2276 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:07, 02:46](1590 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [07:46, 06:33](1349 MB) -PASS -- TEST 'control_latlon_intel' [02:58, 02:40](1595 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:03, 15:11](1902 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:19, 02:53](1598 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:22, 17:21] -PASS -- TEST 'control_c48_intel' [11:00, 10:38](1706 MB) -PASS -- TEST 'cpld_control_sfs_intel' [13:44, 13:16](1980 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:29, 06:16](836 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:52, 07:51] -PASS -- TEST 'control_c192_intel' [11:04, 10:30](1770 MB) -PASS -- TEST 'cpld_debug_gfsv17_intel' [22:48, 21:57](1968 MB) -PASS -- TEST 'control_c384_intel' [13:20, 12:13](2024 MB) - -PASS -- COMPILE 's2swa_intel' [12:58, 12:58] -PASS -- TEST 'control_c384gdas_intel' [08:44, 07:15](1506 MB) -PASS -- TEST 'cpld_control_p8_intel' [09:16, 08:25](2205 MB) -PASS -- TEST 'control_stochy_intel' [01:43, 01:26](671 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:34, 08:53](2204 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:11, 00:54](530 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:12, 05:13](1950 MB) -PASS -- TEST 'control_lndp_intel' [01:38, 01:22](663 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:55, 08:10](2213 MB) -PASS -- TEST 'control_iovr4_intel' [02:21, 02:11](656 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:05, 05:03](1736 MB) -PASS -- TEST 'control_iovr5_intel' [02:18, 02:07](662 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:52, 09:08](2548 MB) -PASS -- TEST 'control_p8_intel' [03:44, 03:12](1877 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:06, 08:16](2181 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:24, 02:45](1896 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:30, 06:56](2092 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:44, 03:05](1890 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:33, 07:51](2193 MB) -PASS -- TEST 'control_restart_p8_intel' [02:35, 01:53](1152 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:19, 15:51](2960 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:36, 03:05](1871 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [07:39, 05:52](2904 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:34, 01:52](1202 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [14:15, 09:50](3805 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:59, 03:19](1880 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [11:18, 05:21](3633 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:27, 02:58](1955 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [05:38, 05:07](2143 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:03, 05:38](1886 MB) - -PASS -- COMPILE 's2sw_intel' [12:10, 12:10] -PASS -- TEST 'control_p8_rrtmgp_intel' [05:00, 04:16](1971 MB) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:02, 07:19](2008 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:28, 02:44](1903 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:33, 06:59](2062 MB) -PASS -- TEST 'merra2_thompson_intel' [03:57, 03:14](1897 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:50, 07:50] -PASS -- TEST 'regional_control_intel' [05:25, 05:09](1181 MB) -PASS -- TEST 'cpld_debug_p8_intel' [12:48, 12:03](2231 MB) -PASS -- TEST 'regional_restart_intel' [02:57, 02:39](1154 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:50, 06:50] -PASS -- TEST 'regional_decomp_intel' [05:14, 04:57](1169 MB) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:02, 08:21](2044 MB) -PASS -- TEST 'regional_2threads_intel' [03:15, 03:00](1143 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:02, 11:02] -PASS -- TEST 'regional_noquilt_intel' [04:46, 04:30](1514 MB) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:13, 04:26](2065 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:11, 04:44](1199 MB) - -PASS -- COMPILE 's2s_intel' [11:01, 11:01] -PASS -- TEST 'regional_2dwrtdecomp_intel' [04:50, 04:35](1193 MB) -PASS -- TEST 'cpld_control_c48_intel' [06:26, 05:57](3026 MB) -PASS -- TEST 'regional_wofs_intel' [06:16, 05:58](2083 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [02:35, 02:05](3031 MB) - -PASS -- COMPILE 'rrfs_intel' [08:57, 08:57] -PASS -- TEST 'cpld_restart_c48_intel' [01:32, 01:15](2482 MB) -PASS -- TEST 'rap_control_intel' [07:16, 06:42](1210 MB) - -PASS -- COMPILE 's2swa_faster_intel' [12:52, 12:51] -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:30, 03:55](1365 MB) -PASS -- TEST 'cpld_control_p8_faster_intel' [08:49, 08:07](2199 MB) -PASS -- TEST 'rap_decomp_intel' [07:52, 07:08](1130 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:23, 16:22] -PASS -- TEST 'rap_2threads_intel' [06:50, 06:17](1370 MB) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:55, 14:14](2061 MB) -PASS -- TEST 'rap_restart_intel' [04:13, 03:41](1127 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:41, 06:55](1400 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:09, 06:32](1201 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:12, 15:30](1986 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:32, 06:58](1144 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:09, 05:09] -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:56, 05:10](1203 MB) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:34, 23:52](2002 MB) -PASS -- TEST 'hrrr_control_intel' [04:03, 03:27](1072 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:09, 03:33](1036 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:00, 09:00] -PASS -- TEST 'hrrr_control_2threads_intel' [04:46, 04:05](1107 MB) -PASS -- TEST 'control_flake_intel' [03:07, 02:52](712 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:14, 01:54](1025 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:02, 02:43](1572 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:10, 06:28](1200 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:07, 02:46](1590 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:00, 07:48](2002 MB) -PASS -- TEST 'control_latlon_intel' [02:58, 02:40](1595 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:49, 07:31](2175 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:19, 02:53](1598 MB) - -PASS -- TEST 'control_c48_intel' [11:00, 10:38](1706 MB) -PASS -- COMPILE 'csawmg_intel' [09:13, 09:12] -PASS -- TEST 'control_c48.v2.sfc_intel' [06:29, 06:16](836 MB) -PASS -- TEST 'control_csawmg_intel' [05:53, 05:38](1038 MB) -PASS -- TEST 'control_c192_intel' [11:04, 10:30](1770 MB) -PASS -- TEST 'control_ras_intel' [03:06, 02:56](844 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:15, 04:14] -PASS -- TEST 'control_c384_intel' [13:20, 12:13](2024 MB) -PASS -- TEST 'control_csawmg_gnu' [09:52, 09:38](1055 MB) -PASS -- TEST 'control_c384gdas_intel' [08:44, 07:15](1506 MB) - -PASS -- COMPILE 'wam_intel' [08:24, 08:24] -PASS -- TEST 'control_stochy_intel' [01:43, 01:26](671 MB) -PASS -- TEST 'control_wam_intel' [10:22, 10:00](1657 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:11, 00:54](530 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [08:28, 08:27] -PASS -- TEST 'control_lndp_intel' [01:38, 01:22](663 MB) -PASS -- TEST 'control_p8_faster_intel' [03:27, 02:40](1892 MB) -PASS -- TEST 'control_iovr4_intel' [02:21, 02:11](656 MB) -PASS -- TEST 'regional_control_faster_intel' [04:43, 04:27](1186 MB) -PASS -- TEST 'control_iovr5_intel' [02:18, 02:07](662 MB) -PASS -- TEST 'control_p8_intel' [03:44, 03:12](1877 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:07, 07:07] -PASS -- TEST 'control_p8.v2.sfc_intel' [03:24, 02:45](1896 MB) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:32, 02:08](1616 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:44, 03:05](1890 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:30, 02:00](1629 MB) -PASS -- TEST 'control_restart_p8_intel' [02:35, 01:53](1152 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:24, 03:13](843 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:36, 03:05](1871 MB) -PASS -- TEST 'control_lndp_debug_intel' [02:39, 02:29](841 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:34, 01:52](1202 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:26, 04:07](1155 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:59, 03:19](1880 MB) -PASS -- TEST 'control_ras_debug_intel' [02:42, 02:30](841 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:27, 02:58](1955 MB) -PASS -- TEST 'control_diag_debug_intel' [02:50, 02:24](1698 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:03, 05:38](1886 MB) -PASS -- TEST 'control_debug_p8_intel' [03:52, 03:26](1908 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:00, 04:16](1971 MB) -PASS -- TEST 'regional_debug_intel' [16:43, 16:23](1144 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:28, 02:44](1903 MB) -PASS -- TEST 'rap_control_debug_intel' [04:39, 04:20](1220 MB) -PASS -- TEST 'merra2_thompson_intel' [03:57, 03:14](1897 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:32, 04:15](1211 MB) -PASS -- TEST 'regional_control_intel' [05:25, 05:09](1181 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:45, 04:28](1223 MB) -PASS -- TEST 'regional_restart_intel' [02:57, 02:39](1154 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:32, 04:25](1233 MB) -PASS -- TEST 'regional_decomp_intel' [05:14, 04:57](1169 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:40, 04:26](1218 MB) -PASS -- TEST 'regional_2threads_intel' [03:15, 03:00](1143 MB) -PASS -- TEST 'rap_diag_debug_intel' [04:41, 04:28](1313 MB) -PASS -- TEST 'regional_noquilt_intel' [04:46, 04:30](1514 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:38, 04:25](1217 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:11, 04:44](1199 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:42, 04:33](1218 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [04:50, 04:35](1193 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:27, 04:20](1210 MB) -PASS -- TEST 'regional_wofs_intel' [06:16, 05:58](2083 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:28, 04:20](1220 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:23, 04:15](1224 MB) - -PASS -- COMPILE 'rrfs_intel' [08:57, 08:57] -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:20, 04:12](1235 MB) -PASS -- TEST 'rap_control_intel' [07:16, 06:42](1210 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:43, 07:26](1218 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:30, 03:55](1365 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:45, 04:31](1227 MB) -PASS -- TEST 'rap_decomp_intel' [07:52, 07:08](1130 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:25, 05:14](1229 MB) -PASS -- TEST 'rap_2threads_intel' [06:50, 06:17](1370 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:28, 04:19](1226 MB) -PASS -- TEST 'rap_restart_intel' [04:13, 03:41](1127 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:58, 07:18](1220 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:09, 06:32](1201 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:22, 04:22] -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:32, 06:58](1144 MB) -PASS -- TEST 'control_csawmg_debug_gnu' [03:39, 03:14](1039 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:56, 05:10](1203 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:18, 04:18] -PASS -- TEST 'hrrr_control_intel' [04:03, 03:27](1072 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:09, 03:33](1036 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:11, 09:10] -PASS -- TEST 'hrrr_control_2threads_intel' [04:46, 04:05](1107 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [03:53, 03:17](1222 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:14, 01:54](1025 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:25, 05:44](1142 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:10, 06:28](1200 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:06, 03:13](1015 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:00, 07:48](2002 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:56, 05:18](1277 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:49, 07:31](2175 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:36, 02:41](1034 MB) - -PASS -- COMPILE 'csawmg_intel' [09:13, 09:12] -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:57, 03:14](983 MB) -PASS -- TEST 'control_csawmg_intel' [05:53, 05:38](1038 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:03, 04:21](1096 MB) -PASS -- TEST 'control_ras_intel' [03:06, 02:56](844 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [01:54, 01:42](951 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:15, 04:14] - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:18, 09:17] -PASS -- TEST 'control_csawmg_gnu' [09:52, 09:38](1055 MB) -PASS -- TEST 'conus13km_control_intel' [02:43, 02:03](1276 MB) - -PASS -- COMPILE 'wam_intel' [08:24, 08:24] -PASS -- TEST 'conus13km_2threads_intel' [01:26, 00:56](1191 MB) -PASS -- TEST 'control_wam_intel' [10:22, 10:00](1657 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:50, 01:24](1139 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [08:28, 08:27] - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:42, 08:41] -PASS -- TEST 'control_p8_faster_intel' [03:27, 02:40](1892 MB) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:40, 04:10](1072 MB) -PASS -- TEST 'regional_control_faster_intel' [04:43, 04:27](1186 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:58, 03:57] - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:07, 07:07] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:09, 04:43](1110 MB) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:32, 02:08](1616 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:44, 04:36](1103 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:30, 02:00](1629 MB) -PASS -- TEST 'conus13km_debug_intel' [14:50, 14:22](1344 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:24, 03:13](843 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:35, 15:03](1003 MB) -PASS -- TEST 'control_lndp_debug_intel' [02:39, 02:29](841 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:42, 11:12](1246 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:26, 04:07](1155 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:55, 14:22](1420 MB) -PASS -- TEST 'control_ras_debug_intel' [02:42, 02:30](841 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:15, 04:14] -PASS -- TEST 'control_diag_debug_intel' [02:50, 02:24](1698 MB) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:35, 04:19](1167 MB) -PASS -- TEST 'control_debug_p8_intel' [03:52, 03:26](1908 MB) - -PASS -- COMPILE 'hafsw_intel' [10:01, 10:01] -PASS -- TEST 'regional_debug_intel' [16:43, 16:23](1144 MB) -PASS -- TEST 'hafs_regional_atm_intel' [06:36, 05:33](864 MB) -PASS -- TEST 'rap_control_debug_intel' [04:39, 04:20](1220 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:29, 05:13](1259 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:32, 04:15](1211 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:11, 06:59](930 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:45, 04:28](1223 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:05, 14:04](967 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:32, 04:25](1233 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:47, 15:38](985 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:40, 04:26](1218 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:18, 05:39](593 MB) -PASS -- TEST 'rap_diag_debug_intel' [04:41, 04:28](1313 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:07, 07:02](599 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:38, 04:25](1217 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:02, 02:33](429 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:42, 04:33](1218 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:24, 07:41](558 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:27, 04:20](1210 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:56, 04:19](607 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:28, 04:20](1220 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:38, 04:01](593 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:23, 04:15](1224 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:41, 05:02](655 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:20, 04:12](1235 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:32, 01:14](445 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:43, 07:26](1218 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:42, 04:41] -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:45, 04:31](1227 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:17, 12:34](636 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:25, 05:14](1229 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:28, 04:19](1226 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [10:14, 10:13] -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:58, 07:18](1220 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:51, 15:11](752 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:22, 04:22] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:24, 16:30](836 MB) -PASS -- TEST 'control_csawmg_debug_gnu' [03:39, 03:14](1039 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:33, 10:32] - -PASS -- COMPILE 'wam_debug_intel' [04:18, 04:18] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:01, 09:44](814 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:17, 11:16] - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:11, 09:10] -PASS -- TEST 'hafs_regional_docn_intel' [06:27, 05:37](929 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [03:53, 03:17](1222 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:52, 05:55](905 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:25, 05:44](1142 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:07, 16:32](1350 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:06, 03:13](1015 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:40, 06:40] -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:56, 05:18](1277 MB) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:18, 02:12](1141 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:36, 02:41](1034 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:21, 01:16](1106 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:57, 03:14](983 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:04, 02:58](1022 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:03, 04:21](1096 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:09, 03:01](1024 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [01:54, 01:42](951 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:01, 02:56](1014 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:18, 09:17] -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:12, 02:07](1160 MB) -PASS -- TEST 'conus13km_control_intel' [02:43, 02:03](1276 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:06, 03:01](1139 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:26, 00:56](1191 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:11, 02:06](1016 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:50, 01:24](1139 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:34, 04:57](1167 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:42, 08:41] -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:27, 04:52](1167 MB) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:40, 04:10](1072 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:05, 03:00](1153 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:58, 03:57] -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:06, 03:00](2397 MB) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:09, 04:43](1110 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:23, 03:17](2458 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:44, 04:36](1103 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:08, 03:07] -PASS -- TEST 'conus13km_debug_intel' [14:50, 14:22](1344 MB) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:38, 09:31](1065 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:35, 15:03](1003 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [05:30, 05:29] -PASS -- TEST 'conus13km_debug_2threads_intel' [11:42, 11:12](1246 MB) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:14, 02:10](1165 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:55, 14:22](1420 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:15, 04:14] - -PASS -- COMPILE 'datm_cdeps_land_intel' [00:48, 00:48] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:35, 04:19](1167 MB) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:34, 01:13](339 MB) - -PASS -- COMPILE 'hafsw_intel' [10:01, 10:01] -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:29, 01:13](573 MB) -PASS -- TEST 'hafs_regional_atm_intel' [06:36, 05:33](864 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:48, 00:36](572 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:29, 05:13](1259 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:27, 09:26] -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:11, 06:59](930 MB) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:06, 04:19](2019 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:05, 14:04](967 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:37, 08:36] -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:47, 15:38](985 MB) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:07, 03:23](1994 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:18, 05:39](593 MB) - -PASS -- COMPILE 'atml_intel' [09:26, 09:25] -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:07, 07:02](599 MB) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:48, 06:51](1897 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:02, 02:33](429 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:03, 07:11](1887 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:24, 07:41](558 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:30, 04:06](1149 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:56, 04:19](607 MB) - -PASS -- COMPILE 'atml_debug_intel' [04:41, 04:40] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:38, 04:01](593 MB) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:04, 06:14](1910 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:41, 05:02](655 MB) - -PASS -- COMPILE 'atmw_intel' [09:29, 09:29] -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:32, 01:14](445 MB) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:06, 02:20](1937 MB) - -PASS -- COMPILE 'atmaero_intel' [08:38, 08:38] - -PASS -- COMPILE 'hafsw_debug_intel' [04:42, 04:41] -PASS -- TEST 'atmaero_control_p8_intel' [05:15, 04:26](2001 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:17, 12:34](636 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:24, 04:34](1779 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [10:14, 10:13] -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:12, 04:33](1787 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:51, 15:11](752 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:06, 04:05] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:24, 16:30](836 MB) -PASS -- TEST 'regional_atmaq_debug_intel' [17:55, 16:38](4513 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:33, 10:32] - -PASS -- COMPILE 'atm_gnu' [04:19, 04:19] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:01, 09:44](814 MB) -PASS -- TEST 'control_c48_gnu' [08:30, 08:06](1522 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:17, 11:16] -PASS -- TEST 'control_stochy_gnu' [02:41, 02:30](722 MB) -PASS -- TEST 'hafs_regional_docn_intel' [06:27, 05:37](929 MB) -PASS -- TEST 'control_ras_gnu' [04:08, 03:58](720 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:52, 05:55](905 MB) -PASS -- TEST 'control_p8_gnu' [05:59, 05:19](1701 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:07, 16:32](1350 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:47, 05:10](1720 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:40, 06:40] -PASS -- TEST 'control_flake_gnu' [04:46, 04:37](805 MB) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:18, 02:12](1141 MB) - -PASS -- COMPILE 'rrfs_gnu' [03:56, 03:56] -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:21, 01:16](1106 MB) -PASS -- TEST 'rap_control_gnu' [08:40, 08:03](1076 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:04, 02:58](1022 MB) -PASS -- TEST 'rap_decomp_gnu' [08:49, 08:14](1074 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:09, 03:01](1024 MB) -PASS -- TEST 'rap_2threads_gnu' [07:56, 07:19](1129 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:01, 02:56](1014 MB) -PASS -- TEST 'rap_restart_gnu' [04:53, 04:08](878 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:12, 02:07](1160 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [08:52, 08:12](1074 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:06, 03:01](1139 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:14, 08:36](1072 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:11, 02:06](1016 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:58, 06:16](876 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:34, 04:57](1167 MB) -PASS -- TEST 'hrrr_control_gnu' [04:52, 04:08](1061 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:27, 04:52](1167 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [04:47, 04:16](1127 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:05, 03:00](1153 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:23, 03:44](1015 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:06, 03:00](2397 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:01, 04:22](1058 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:23, 03:17](2458 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [02:36, 02:16](877 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:08, 03:07] -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:36, 02:09](923 MB) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:38, 09:31](1065 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:55, 08:11](1069 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [05:30, 05:29] - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:12, 06:12] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:14, 02:10](1165 MB) -PASS -- TEST 'control_diag_debug_gnu' [01:38, 01:15](1617 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [00:48, 00:48] -PASS -- TEST 'regional_debug_gnu' [06:55, 06:37](1107 MB) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:34, 01:13](339 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:18, 02:04](1087 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:29, 01:13](573 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:06, 01:56](1082 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:48, 00:36](572 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:10, 01:59](1092 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:27, 09:26] -PASS -- TEST 'hrrr_c3_debug_gnu' [02:07, 01:59](1096 MB) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:06, 04:19](2019 MB) -PASS -- TEST 'rap_diag_debug_gnu' [02:28, 02:14](1261 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:37, 08:36] -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:21, 03:15](1086 MB) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:07, 03:23](1994 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:10, 02:04](1090 MB) - -PASS -- COMPILE 'atml_intel' [09:26, 09:25] -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:07, 01:59](1083 MB) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:48, 06:51](1897 MB) -PASS -- TEST 'control_ras_debug_gnu' [01:26, 01:16](718 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:03, 07:11](1887 MB) -PASS -- TEST 'control_stochy_debug_gnu' [01:33, 01:23](716 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:30, 04:06](1149 MB) -PASS -- TEST 'control_debug_p8_gnu' [01:43, 01:20](1717 MB) - -PASS -- COMPILE 'atml_debug_intel' [04:41, 04:40] -PASS -- TEST 'rap_flake_debug_gnu' [02:13, 02:01](1092 MB) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:04, 06:14](1910 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [02:18, 02:09](1093 MB) - -PASS -- COMPILE 'atmw_intel' [09:29, 09:29] -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [03:58, 03:24](1092 MB) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:06, 02:20](1937 MB) - -PASS -- COMPILE 'wam_debug_gnu' [02:53, 02:53] -PASS -- TEST 'control_wam_debug_gnu' [06:15, 05:53](1555 MB) - -PASS -- COMPILE 'atmaero_intel' [08:38, 08:38] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 04:10] -PASS -- TEST 'atmaero_control_p8_intel' [05:15, 04:26](2001 MB) -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:14, 07:40](953 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:24, 04:34](1779 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:55, 04:09](940 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:12, 04:33](1787 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:34, 06:57](957 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:06, 04:05] -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:13, 03:28](872 MB) -PASS -- TEST 'regional_atmaq_debug_intel' [17:55, 16:38](4513 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:08, 04:10](941 MB) - -PASS -- COMPILE 'atm_gnu' [04:19, 04:19] -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:48, 06:15](855 MB) -PASS -- TEST 'control_c48_gnu' [08:30, 08:06](1522 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:35, 02:14](851 MB) -PASS -- TEST 'control_stochy_gnu' [02:41, 02:30](722 MB) -PASS -- TEST 'conus13km_control_gnu' [03:13, 02:40](1255 MB) -PASS -- TEST 'control_ras_gnu' [04:08, 03:58](720 MB) -PASS -- TEST 'conus13km_2threads_gnu' [01:25, 01:05](1163 MB) -PASS -- TEST 'control_p8_gnu' [05:59, 05:19](1701 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [01:53, 01:32](924 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:47, 05:10](1720 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:25, 09:25] -PASS -- TEST 'control_flake_gnu' [04:46, 04:37](805 MB) -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [04:50, 04:31](980 MB) - -PASS -- COMPILE 'rrfs_gnu' [03:56, 03:56] - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:18, 06:17] -PASS -- TEST 'rap_control_gnu' [08:40, 08:03](1076 MB) -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:16, 02:03](969 MB) -PASS -- TEST 'rap_decomp_gnu' [08:49, 08:14](1074 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:20, 02:10](959 MB) -PASS -- TEST 'rap_2threads_gnu' [07:56, 07:19](1129 MB) -PASS -- TEST 'conus13km_debug_gnu' [06:09, 05:49](1276 MB) -PASS -- TEST 'rap_restart_gnu' [04:53, 04:08](878 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:28, 06:05](946 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [08:52, 08:12](1074 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [04:22, 03:57](1182 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:14, 08:36](1072 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:33, 05:46](1344 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:58, 06:16](876 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:06, 07:06] -PASS -- TEST 'hrrr_control_gnu' [04:52, 04:08](1061 MB) -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:11, 01:59](995 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [04:47, 04:16](1127 MB) - -PASS -- COMPILE 's2swa_gnu' [16:58, 16:58] -PASS -- TEST 'hrrr_control_2threads_gnu' [04:23, 03:44](1015 MB) - -PASS -- COMPILE 's2s_gnu' [16:03, 16:03] -PASS -- TEST 'hrrr_control_decomp_gnu' [05:01, 04:22](1058 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:34, 08:52](2711 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [02:36, 02:16](877 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [03:41, 03:41] -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:36, 02:09](923 MB) - -PASS -- COMPILE 's2sw_pdlib_gnu' [16:03, 16:02] -PASS -- TEST 'rrfs_v1beta_gnu' [08:55, 08:11](1069 MB) -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:54, 26:07](2905 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:12, 06:12] - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:08, 03:08] -PASS -- TEST 'control_diag_debug_gnu' [01:38, 01:15](1617 MB) -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:05, 12:23](3023 MB) -PASS -- TEST 'regional_debug_gnu' [06:55, 06:37](1107 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [16:19, 16:19] -PASS -- TEST 'rap_control_debug_gnu' [02:18, 02:04](1087 MB) -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [06:24, 06:19](754 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:06, 01:56](1082 MB) - -PASS -- COMPILE 'atm_fbh_intel' [08:26, 08:26] -PASS -- TEST 'hrrr_gf_debug_gnu' [02:10, 01:59](1092 MB) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:15, 10:00](1084 MB) +* (-e) - USE ECFLOW + +PASS -- COMPILE s2swa_32bit_intel [14:13, 13:04](1 warnings,10 remarks) +PASS -- TEST cpld_control_p8_mixedmode_intel [12:07, 08:44] (2129476 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_intel [22:14, 20:51](1 warnings,10 remarks) +PASS -- TEST cpld_control_gfsv17_intel [17:17, 13:50] (1996444 MB) +PASS -- TEST cpld_control_gfsv17_iau_intel [17:44, 14:44] (2314092 MB) +PASS -- TEST cpld_restart_gfsv17_intel [09:47, 06:37] (1347624 MB) +PASS -- TEST cpld_mpi_gfsv17_intel [18:14, 15:10] (1903184 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [22:14, 21:10](1 warnings,10 remarks) +PASS -- TEST cpld_control_sfs_intel [15:11, 13:07] (1975060 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [10:13, 08:37](1523 warnings,2000 remarks) +PASS -- TEST cpld_debug_gfsv17_intel [25:51, 22:43] (1971436 MB) + +PASS -- COMPILE s2swa_intel [16:13, 14:22](1 warnings,10 remarks) +PASS -- TEST cpld_control_p8_intel [12:15, 08:35] (2201332 MB) +PASS -- TEST cpld_control_p8.v2.sfc_intel [12:30, 08:42] (2208824 MB) +PASS -- TEST cpld_restart_p8_intel [09:39, 05:29] (1968488 MB) +PASS -- TEST cpld_control_qr_p8_intel [12:13, 08:58] (2217140 MB) +PASS -- TEST cpld_restart_qr_p8_intel [08:40, 05:17] (1736548 MB) +PASS -- TEST cpld_2threads_p8_intel [14:32, 10:12] (2542268 MB) +PASS -- TEST cpld_decomp_p8_intel [13:32, 09:09] (2187760 MB) +PASS -- TEST cpld_mpi_p8_intel [11:34, 07:30] (2100684 MB) +PASS -- TEST cpld_control_ciceC_p8_intel [12:29, 08:36] (2199960 MB) +PASS -- TEST cpld_control_c192_p8_intel [20:22, 16:15] (2973616 MB) +PASS -- TEST cpld_restart_c192_p8_intel [10:54, 05:59] (2908160 MB) +PASS -- TEST cpld_bmark_p8_intel [19:56, 10:16] (3825132 MB) +PASS -- TEST cpld_restart_bmark_p8_intel [17:28, 06:18] (3632344 MB) +PASS -- TEST cpld_s2sa_p8_intel [10:52, 06:23] (2140084 MB) + +PASS -- COMPILE s2sw_intel [15:14, 13:41](1 warnings,10 remarks) +PASS -- TEST cpld_control_noaero_p8_intel [10:55, 07:26] (2013068 MB) +PASS -- TEST cpld_control_nowave_noaero_p8_intel [11:11, 07:48] (2067552 MB) + +PASS -- COMPILE s2swa_debug_intel [09:13, 08:00](1413 warnings,1230 remarks) +PASS -- TEST cpld_debug_p8_intel [16:27, 12:25] (2230568 MB) + +PASS -- COMPILE s2sw_debug_intel [09:12, 07:37](1413 warnings,1230 remarks) +PASS -- TEST cpld_debug_noaero_p8_intel [12:16, 08:57] (2038220 MB) + +PASS -- COMPILE s2s_aoflux_intel [13:13, 11:59],3 remarks) +PASS -- TEST cpld_control_noaero_p8_agrid_intel [08:15, 04:46] (2063776 MB) + +PASS -- COMPILE s2s_intel [11:12, 09:32](1 warnings,3 remarks) +PASS -- TEST cpld_control_c48_intel [09:17, 06:37] (3041640 MB) +PASS -- TEST cpld_warmstart_c48_intel [05:10, 02:19] (3024484 MB) +PASS -- TEST cpld_restart_c48_intel [05:11, 02:07] (2484276 MB) + +PASS -- COMPILE s2swa_faster_intel [14:11, 12:19](1 warnings,10 remarks) +PASS -- TEST cpld_control_p8_faster_intel [11:42, 08:14] (2206048 MB) + +PASS -- COMPILE s2sw_pdlib_intel [17:11, 15:21](1 warnings,10 remarks) +PASS -- TEST cpld_control_pdlib_p8_intel [16:25, 14:08] (2061288 MB) +PASS -- TEST cpld_restart_pdlib_p8_intel [10:19, 07:18] (1413124 MB) +PASS -- TEST cpld_mpi_pdlib_p8_intel [18:17, 15:48] (1995160 MB) + +PASS -- COMPILE s2sw_pdlib_debug_intel [06:11, 04:53](1523 warnings,2000 remarks) +PASS -- TEST cpld_debug_pdlib_p8_intel [27:21, 23:47] (2003608 MB) + +PASS -- COMPILE atm_dyn32_intel [10:13, 09:07](1 warnings,1 remarks) +PASS -- TEST control_flake_intel [05:41, 03:30] (713316 MB) +PASS -- TEST control_CubedSphereGrid_intel [05:04, 02:51] (1599668 MB) +PASS -- TEST control_CubedSphereGrid_parallel_intel [05:06, 02:50] (1591260 MB) +PASS -- TEST control_latlon_intel [04:57, 02:46] (1591628 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_intel [05:05, 02:46] (1588488 MB) +PASS -- TEST control_c48_intel [13:02, 10:18] (1709600 MB) +PASS -- TEST control_c48.v2.sfc_intel [07:40, 06:08] (842352 MB) +PASS -- TEST control_c192_intel [13:20, 10:16] (1774788 MB) +PASS -- TEST control_c384_intel [16:05, 12:11] (2016644 MB) +PASS -- TEST control_c384gdas_intel [14:35, 10:28] (1507904 MB) +PASS -- TEST control_stochy_intel [03:32, 02:01] (671736 MB) +PASS -- TEST control_stochy_restart_intel [02:38, 01:09] (544124 MB) +PASS -- TEST control_lndp_intel [03:31, 01:59] (659224 MB) +PASS -- TEST control_iovr4_intel [04:33, 02:57] (656220 MB) +PASS -- TEST control_iovr5_intel [04:30, 02:41] (658744 MB) +PASS -- TEST control_p8_intel [06:29, 03:54] (1877156 MB) +PASS -- TEST control_p8.v2.sfc_intel [07:33, 04:21] (1909492 MB) +PASS -- TEST control_p8_ugwpv1_intel [06:23, 03:27] (1896460 MB) +PASS -- TEST control_restart_p8_intel [04:03, 01:53] (1151408 MB) +PASS -- TEST control_noqr_p8_intel [06:17, 03:16] (1878172 MB) +PASS -- TEST control_restart_noqr_p8_intel [04:10, 01:54] (1208024 MB) +PASS -- TEST control_decomp_p8_intel [07:15, 03:59] (1877208 MB) +PASS -- TEST control_2threads_p8_intel [07:14, 03:42] (1965372 MB) +PASS -- TEST control_p8_lndp_intel [09:45, 06:37] (1884624 MB) +PASS -- TEST control_p8_rrtmgp_intel [08:04, 05:22] (1958276 MB) +PASS -- TEST control_p8_mynn_intel [05:08, 02:49] (1909964 MB) +PASS -- TEST merra2_thompson_intel [07:21, 04:53] (1904708 MB) +PASS -- TEST regional_control_intel [06:42, 04:43] (1191344 MB) +PASS -- TEST regional_restart_intel [04:36, 02:40] (1171860 MB) +PASS -- TEST regional_decomp_intel [07:40, 05:11] (1181564 MB) +PASS -- TEST regional_2threads_intel [06:36, 04:05] (1149168 MB) +PASS -- TEST regional_noquilt_intel [06:43, 04:31] (1520988 MB) +PASS -- TEST regional_netcdf_parallel_intel [06:46, 04:36] (1194224 MB) +PASS -- TEST regional_2dwrtdecomp_intel [06:38, 04:44] (1196004 MB) +PASS -- TEST regional_wofs_intel [09:37, 08:04] (2072220 MB) + +PASS -- COMPILE rrfs_intel [10:11, 08:52](3 warnings,9 remarks) +PASS -- TEST rap_control_intel [09:58, 07:19] (1232848 MB) +PASS -- TEST regional_spp_sppt_shum_skeb_intel [05:58, 03:29] (1351800 MB) +PASS -- TEST rap_decomp_intel [09:52, 07:38] (1153952 MB) +PASS -- TEST rap_2threads_intel [10:02, 07:11] (1363244 MB) +PASS -- TEST rap_restart_intel [06:21, 03:53] (1140820 MB) +PASS -- TEST rap_sfcdiff_intel [10:03, 07:17] (1220476 MB) +PASS -- TEST rap_sfcdiff_decomp_intel [10:16, 07:32] (1145440 MB) +PASS -- TEST rap_sfcdiff_restart_intel [08:15, 05:19] (1211988 MB) +PASS -- TEST hrrr_control_intel [06:02, 03:30] (1049924 MB) +PASS -- TEST hrrr_control_decomp_intel [05:46, 03:42] (1050588 MB) +PASS -- TEST hrrr_control_2threads_intel [05:45, 03:15] (1106432 MB) +PASS -- TEST hrrr_control_restart_intel [03:27, 02:04] (1017336 MB) +PASS -- TEST rrfs_v1beta_intel [09:09, 06:48] (1206312 MB) +PASS -- TEST rrfs_v1nssl_intel [12:36, 10:30] (1989120 MB) +PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [11:29, 09:48] (2189692 MB) + +PASS -- COMPILE csawmg_intel [09:11, 07:47] +PASS -- TEST control_csawmg_intel [08:38, 06:16] (1046312 MB) +PASS -- TEST control_ras_intel [05:27, 03:30] (843472 MB) + +PASS -- COMPILE csawmg_gnu [06:11, 04:13] +PASS -- TEST control_csawmg_gnu [10:47, 08:04] (1074316 MB) + +PASS -- COMPILE wam_intel [10:10, 08:34],1 remarks) +PASS -- TEST control_wam_intel [11:52, 09:55] (1657144 MB) + +PASS -- COMPILE atm_faster_dyn32_intel [10:11, 08:55],1 remarks) +PASS -- TEST control_p8_faster_intel [05:12, 02:30] (1905120 MB) +PASS -- TEST regional_control_faster_intel [07:36, 05:03] (1182052 MB) + +PASS -- COMPILE atm_debug_dyn32_intel [08:10, 06:51](882 warnings,9 remarks) +PASS -- TEST control_CubedSphereGrid_debug_intel [03:39, 01:52] (1626508 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [03:45, 01:49] (1630816 MB) +PASS -- TEST control_stochy_debug_intel [04:28, 02:37] (841496 MB) +PASS -- TEST control_lndp_debug_intel [04:20, 02:20] (834536 MB) +PASS -- TEST control_csawmg_debug_intel [05:36, 03:58] (1144800 MB) +PASS -- TEST control_ras_debug_intel [04:21, 02:19] (843980 MB) +PASS -- TEST control_diag_debug_intel [04:41, 02:14] (1692432 MB) +PASS -- TEST control_debug_p8_intel [04:45, 02:12] (1913116 MB) +PASS -- TEST regional_debug_intel [16:36, 14:48] (1144984 MB) +PASS -- TEST rap_control_debug_intel [05:21, 04:08] (1218776 MB) +PASS -- TEST hrrr_control_debug_intel [05:30, 04:06] (1222376 MB) +PASS -- TEST hrrr_gf_debug_intel [05:30, 04:03] (1218284 MB) +PASS -- TEST hrrr_c3_debug_intel [06:25, 04:11] (1229240 MB) +PASS -- TEST rap_unified_drag_suite_debug_intel [06:25, 04:10] (1220288 MB) +PASS -- TEST rap_diag_debug_intel [06:38, 04:25] (1310584 MB) +PASS -- TEST rap_cires_ugwp_debug_intel [06:23, 04:13] (1225392 MB) +PASS -- TEST rap_unified_ugwp_debug_intel [06:28, 04:10] (1231676 MB) +PASS -- TEST rap_lndp_debug_intel [06:28, 04:11] (1225528 MB) +PASS -- TEST rap_progcld_thompson_debug_intel [06:27, 04:10] (1226548 MB) +PASS -- TEST rap_noah_debug_intel [06:27, 04:03] (1221748 MB) +PASS -- TEST rap_sfcdiff_debug_intel [06:25, 04:05] (1236060 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [08:30, 06:44] (1233080 MB) +PASS -- TEST rrfs_v1beta_debug_intel [06:24, 04:11] (1213276 MB) +PASS -- TEST rap_clm_lake_debug_intel [06:27, 04:57] (1231052 MB) +PASS -- TEST rap_flake_debug_intel [05:30, 04:08] (1218576 MB) +PASS -- TEST gnv1_c96_no_nest_debug_intel [09:09, 07:08] (1227812 MB) + +PASS -- COMPILE atm_debug_dyn32_gnu [06:10, 04:22] +PASS -- TEST control_csawmg_debug_gnu [03:49, 02:08] (1038092 MB) + +PASS -- COMPILE wam_debug_intel [06:11, 04:12](837 warnings,1 remarks) + +PASS -- COMPILE rrfs_dyn32_phy32_intel [11:11, 08:57](3 warnings,8 remarks) +PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [06:01, 03:19] (1231840 MB) +PASS -- TEST rap_control_dyn32_phy32_intel [08:00, 05:21] (1142036 MB) +PASS -- TEST hrrr_control_dyn32_phy32_intel [05:22, 02:54] (1041952 MB) +PASS -- TEST rap_2threads_dyn32_phy32_intel [07:11, 05:09] (1277536 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [05:18, 02:43] (1027240 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [05:40, 03:03] (982340 MB) +PASS -- TEST rap_restart_dyn32_phy32_intel [05:58, 04:09] (1079168 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [03:26, 01:34] (949800 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [10:11, 08:31](3 warnings,8 remarks) +PASS -- TEST conus13km_control_intel [05:00, 02:23] (1272840 MB) +PASS -- TEST conus13km_2threads_intel [03:43, 01:06] (1177660 MB) +PASS -- TEST conus13km_restart_mismatch_intel [03:46, 01:24] (1128120 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_intel [10:11, 08:33](3 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_intel [05:43, 03:45] (1084280 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [05:11, 03:26](785 warnings,8 remarks) +PASS -- TEST rap_control_debug_dyn32_phy32_intel [06:23, 04:29] (1109280 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [06:22, 04:23] (1100176 MB) +PASS -- TEST conus13km_debug_intel [15:50, 13:55] (1353512 MB) +PASS -- TEST conus13km_debug_qr_intel [15:45, 13:58] (985708 MB) +PASS -- TEST conus13km_debug_2threads_intel [12:44, 10:34] (1238848 MB) +PASS -- TEST conus13km_radar_tten_debug_intel [15:39, 13:58] (1419888 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [06:11, 04:11](785 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_debug_intel [06:28, 04:14] (1161500 MB) + +PASS -- COMPILE hafsw_intel [12:11, 10:29](1 warnings,9 remarks) +PASS -- TEST hafs_regional_atm_intel [08:08, 05:21] (852052 MB) +PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [07:28, 05:13] (1252624 MB) +PASS -- TEST hafs_regional_atm_ocn_intel [09:29, 06:28] (922224 MB) +PASS -- TEST hafs_regional_atm_wav_intel [17:13, 13:59] (960152 MB) +PASS -- TEST hafs_regional_atm_ocn_wav_intel [18:37, 15:04] (968556 MB) +PASS -- TEST hafs_regional_1nest_atm_intel [08:10, 05:34] (592592 MB) +PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [10:26, 07:04] (603584 MB) +PASS -- TEST hafs_global_1nest_atm_intel [05:58, 03:04] (437160 MB) +PASS -- TEST hafs_global_multiple_4nests_atm_intel [11:43, 07:36] (549964 MB) +PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [07:55, 03:58] (601388 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [07:06, 03:46] (599688 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [08:02, 04:51] (655268 MB) +PASS -- TEST hafs_global_storm_following_1nest_atm_intel [04:34, 01:21] (449236 MB) + +PASS -- COMPILE hafsw_debug_intel [06:11, 04:27](1465 warnings,1502 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [14:06, 11:40] (686488 MB) + +PASS -- COMPILE hafsw_faster_intel [12:11, 10:27],8 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [18:56, 16:50] (753200 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [18:05, 15:39] (833392 MB) + +PASS -- COMPILE hafs_mom6w_intel [11:11, 10:09],7 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [13:55, 10:29] (809172 MB) + +PASS -- COMPILE hafs_all_intel [12:11, 10:12],8 remarks) +PASS -- TEST hafs_regional_docn_intel [09:12, 07:03] (908020 MB) +PASS -- TEST hafs_regional_docn_oisst_intel [10:09, 06:59] (909956 MB) +PASS -- TEST hafs_regional_datm_cdeps_intel [18:53, 16:25] (1343824 MB) + +PASS -- COMPILE datm_cdeps_intel [07:11, 04:58],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_intel [04:19, 02:11] (1136908 MB) +PASS -- TEST datm_cdeps_restart_cfsr_intel [05:19, 01:22] (1100828 MB) +PASS -- TEST datm_cdeps_control_gefs_intel [04:21, 02:11] (1017896 MB) +PASS -- TEST datm_cdeps_iau_gefs_intel [04:21, 02:11] (1023084 MB) +PASS -- TEST datm_cdeps_stochy_gefs_intel [04:22, 02:10] (1026040 MB) +PASS -- TEST datm_cdeps_ciceC_cfsr_intel [04:17, 02:11] (1141744 MB) +PASS -- TEST datm_cdeps_bulk_cfsr_intel [04:21, 02:11] (1157844 MB) +PASS -- TEST datm_cdeps_bulk_gefs_intel [03:18, 02:06] (1020380 MB) +PASS -- TEST datm_cdeps_mx025_cfsr_intel [07:07, 04:57] (1162876 MB) +PASS -- TEST datm_cdeps_mx025_gefs_intel [07:01, 04:53] (1153000 MB) +PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [04:17, 02:09] (1155612 MB) +PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [04:16, 03:07] (2456512 MB) +PASS -- TEST datm_cdeps_gfs_intel [04:18, 03:05] (2400364 MB) + +PASS -- COMPILE datm_cdeps_debug_intel [05:11, 04:02](2 warnings,2 remarks) +PASS -- TEST datm_cdeps_debug_cfsr_intel [07:17, 05:13] (1071332 MB) + +PASS -- COMPILE datm_cdeps_faster_intel [08:11, 07:09],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_faster_intel [04:16, 02:13] (1144632 MB) + +PASS -- COMPILE datm_cdeps_land_intel [02:11, 00:56],1 remarks) +PASS -- TEST datm_cdeps_lnd_gswp3_intel [04:34, 00:53] (337912 MB) +PASS -- TEST datm_cdeps_lnd_era5_intel [03:24, 00:50] (573320 MB) +PASS -- TEST datm_cdeps_lnd_era5_rst_intel [02:26, 00:33] (576716 MB) + +PASS -- COMPILE atm_ds2s_docn_pcice_intel [11:11, 09:35],3 remarks) +PASS -- TEST atm_ds2s_docn_pcice_intel [08:08, 04:21] (2013732 MB) + +PASS -- COMPILE atm_ds2s_docn_dice_intel [10:11, 08:11],1 remarks) +PASS -- TEST atm_ds2s_docn_dice_intel [08:03, 04:18] (1989296 MB) + +PASS -- COMPILE atml_intel [11:11, 09:37](8 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_sbs_intel [11:24, 07:11] (1900568 MB) +PASS -- TEST control_p8_atmlnd_intel [10:28, 06:40] (1890740 MB) +PASS -- TEST control_restart_p8_atmlnd_intel [05:53, 03:04] (1142388 MB) + +PASS -- COMPILE atml_debug_intel [06:11, 04:46](880 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_debug_intel [10:24, 06:45] (1941568 MB) + +PASS -- COMPILE atmw_intel [12:10, 10:36],8 remarks) +PASS -- TEST atmwav_control_noaero_p8_intel [06:09, 02:42] (1938372 MB) + +PASS -- COMPILE atmaero_intel [11:11, 10:00],1 remarks) +PASS -- TEST atmaero_control_p8_intel [09:11, 05:24] (2013556 MB) +PASS -- TEST atmaero_control_p8_rad_intel [08:09, 05:16] (1787296 MB) +PASS -- TEST atmaero_control_p8_rad_micro_intel [07:56, 05:35] (1799000 MB) + +PASS -- COMPILE atmaq_debug_intel [06:11, 05:01](882 warnings,6 remarks) +PASS -- TEST regional_atmaq_debug_intel [20:41, 17:11] (4525040 MB) + +PASS -- COMPILE atm_gnu [06:10, 04:50] +PASS -- TEST control_c48_gnu [09:49, 07:50] (1522888 MB) +PASS -- TEST control_stochy_gnu [04:29, 02:30] (721624 MB) +PASS -- TEST control_ras_gnu [05:22, 03:55] (722068 MB) +PASS -- TEST control_p8_gnu [07:09, 04:14] (1699760 MB) +PASS -- TEST control_p8_ugwpv1_gnu [06:56, 04:27] (1701268 MB) +PASS -- TEST control_flake_gnu [06:27, 04:55] (803616 MB) + +PASS -- COMPILE rrfs_gnu [06:11, 04:34] +PASS -- TEST rap_control_gnu [11:00, 08:22] (1073276 MB) +PASS -- TEST rap_decomp_gnu [10:45, 08:24] (1073804 MB) +PASS -- TEST rap_2threads_gnu [09:57, 07:20] (1103808 MB) +PASS -- TEST rap_restart_gnu [08:00, 04:14] (879248 MB) +PASS -- TEST rap_sfcdiff_gnu [10:59, 08:18] (1074564 MB) +PASS -- TEST rap_sfcdiff_decomp_gnu [10:44, 08:18] (1075536 MB) +PASS -- TEST rap_sfcdiff_restart_gnu [10:08, 06:09] (877868 MB) +PASS -- TEST hrrr_control_gnu [06:43, 04:27] (1059972 MB) +PASS -- TEST hrrr_control_noqr_gnu [06:42, 04:21] (1127380 MB) +PASS -- TEST hrrr_control_2threads_gnu [05:58, 04:00] (1021864 MB) +PASS -- TEST hrrr_control_decomp_gnu [06:52, 04:32] (1062372 MB) +PASS -- TEST hrrr_control_restart_gnu [04:27, 02:16] (887016 MB) +PASS -- TEST hrrr_control_restart_noqr_gnu [04:24, 02:15] (924548 MB) +PASS -- TEST rrfs_v1beta_gnu [11:11, 08:16] (1067216 MB) + +PASS -- COMPILE atm_dyn32_debug_gnu [07:11, 05:50] +PASS -- TEST control_diag_debug_gnu [03:39, 01:19] (1617840 MB) +PASS -- TEST regional_debug_gnu [08:35, 07:03] (1128708 MB) +PASS -- TEST rap_control_debug_gnu [04:23, 02:10] (1087132 MB) +PASS -- TEST hrrr_control_debug_gnu [03:24, 02:05] (1082420 MB) +PASS -- TEST hrrr_gf_debug_gnu [04:20, 02:02] (1089780 MB) +PASS -- TEST hrrr_c3_debug_gnu [04:21, 02:15] (1085300 MB) +PASS -- TEST rap_diag_debug_gnu [04:34, 02:08] (1263152 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [05:20, 03:09] (1086680 MB) +PASS -- TEST rap_progcld_thompson_debug_gnu [03:20, 02:04] (1092640 MB) +PASS -- TEST rrfs_v1beta_debug_gnu [03:21, 02:01] (1083248 MB) +PASS -- TEST control_ras_debug_gnu [03:20, 01:24] (719648 MB) +PASS -- TEST control_stochy_debug_gnu [03:20, 01:20] (718404 MB) +PASS -- TEST control_debug_p8_gnu [04:42, 02:05] (1718344 MB) +PASS -- TEST rap_flake_debug_gnu [04:24, 02:05] (1092252 MB) +PASS -- TEST rap_clm_lake_debug_gnu [04:22, 02:17] (1092704 MB) +PASS -- TEST gnv1_c96_no_nest_debug_gnu [06:58, 03:47] (1094340 MB) + +PASS -- COMPILE wam_debug_gnu [04:11, 02:28] +PASS -- TEST control_wam_debug_gnu [07:41, 05:19] (1557740 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_gnu [07:11, 05:22] +PASS -- TEST rap_control_dyn32_phy32_gnu [09:42, 07:32] (953008 MB) +PASS -- TEST hrrr_control_dyn32_phy32_gnu [06:56, 04:11] (943804 MB) +PASS -- TEST rap_2threads_dyn32_phy32_gnu [08:58, 06:54] (981732 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_gnu [06:01, 03:33] (881444 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [05:41, 04:03] (943772 MB) +PASS -- TEST rap_restart_dyn32_phy32_gnu [08:00, 05:47] (855452 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [04:32, 02:10] (853256 MB) +PASS -- TEST conus13km_control_gnu [04:50, 02:37] (1257416 MB) +PASS -- TEST conus13km_2threads_gnu [03:38, 01:07] (1161316 MB) +PASS -- TEST conus13km_restart_mismatch_gnu [03:37, 01:34] (926080 MB) + +PASS -- COMPILE atm_dyn64_phy32_gnu [12:11, 10:15] +PASS -- TEST rap_control_dyn64_phy32_gnu [06:44, 04:31] (981344 MB) + +PASS -- COMPILE atm_dyn32_phy32_debug_gnu [10:11, 08:34] +PASS -- TEST rap_control_debug_dyn32_phy32_gnu [04:23, 02:09] (968880 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [04:25, 02:12] (963788 MB) +PASS -- TEST conus13km_debug_gnu [07:42, 06:04] (1275052 MB) +PASS -- TEST conus13km_debug_qr_gnu [07:42, 06:05] (949728 MB) +PASS -- TEST conus13km_debug_2threads_gnu [06:37, 03:44] (1188768 MB) +PASS -- TEST conus13km_radar_tten_debug_gnu [09:40, 06:07] (1343568 MB) + +PASS -- COMPILE atm_dyn64_phy32_debug_gnu [10:11, 08:47] +PASS -- TEST rap_control_dyn64_phy32_debug_gnu [05:25, 02:10] (999580 MB) + +PASS -- COMPILE s2swa_gnu [20:11, 18:58] +PASS -- COMPILE s2s_gnu [17:11, 15:14] +PASS -- TEST cpld_control_nowave_noaero_p8_gnu [11:20, 09:08] (2708040 MB) + +PASS -- COMPILE s2swa_debug_gnu [05:10, 03:38] +PASS -- COMPILE s2sw_pdlib_gnu [17:11, 15:27] +PASS -- TEST cpld_control_pdlib_p8_gnu [30:15, 27:09] (3050756 MB) + +PASS -- COMPILE s2sw_pdlib_debug_gnu [07:10, 05:54] +PASS -- TEST cpld_debug_pdlib_p8_gnu [16:02, 13:16] (2905188 MB) + +PASS -- COMPILE datm_cdeps_gnu [18:11, 16:19] +PASS -- TEST datm_cdeps_control_cfsr_gnu [05:17, 02:21] (770484 MB) + +PASS -- COMPILE atm_fbh_intel [11:11, 09:35](3 warnings,8 remarks) +PASS -- TEST cpld_regional_atm_fbh_intel [12:32, 09:47] (1077296 MB) -SYNOPSIS: -Starting Date/Time: 20240920 08:25:25 -Ending Date/Time: 20240920 14:17:45 -Total Time: 05h:52m:28s -Compiles Completed: 58/58 -Tests Completed: 245/245 - -NOTES: -A file 'test_changes.list' was generated but is empty. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: SUCCESS - -====END OF HERCULES REGRESSION TESTING LOG==== -PASS -- TEST 'hrrr_c3_debug_gnu' [02:07, 01:59](1096 MB) -PASS -- TEST 'rap_diag_debug_gnu' [02:28, 02:14](1261 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:21, 03:15](1086 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:10, 02:04](1090 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:07, 01:59](1083 MB) -PASS -- TEST 'control_ras_debug_gnu' [01:26, 01:16](718 MB) -PASS -- TEST 'control_stochy_debug_gnu' [01:33, 01:23](716 MB) -PASS -- TEST 'control_debug_p8_gnu' [01:43, 01:20](1717 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:13, 02:01](1092 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [02:18, 02:09](1093 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [03:58, 03:24](1092 MB) - -PASS -- COMPILE 'wam_debug_gnu' [02:53, 02:53] -PASS -- TEST 'control_wam_debug_gnu' [06:15, 05:53](1555 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 04:10] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:14, 07:40](953 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:55, 04:09](940 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:34, 06:57](957 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:13, 03:28](872 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:08, 04:10](941 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:48, 06:15](855 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:35, 02:14](851 MB) -PASS -- TEST 'conus13km_control_gnu' [03:13, 02:40](1255 MB) -PASS -- TEST 'conus13km_2threads_gnu' [01:25, 01:05](1163 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [01:53, 01:32](924 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:25, 09:25] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [04:50, 04:31](980 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:18, 06:17] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:16, 02:03](969 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:20, 02:10](959 MB) -PASS -- TEST 'conus13km_debug_gnu' [06:09, 05:49](1276 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:28, 06:05](946 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [04:22, 03:57](1182 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:33, 05:46](1344 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:06, 07:06] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:11, 01:59](995 MB) - -PASS -- COMPILE 's2swa_gnu' [16:58, 16:58] - -PASS -- COMPILE 's2s_gnu' [16:03, 16:03] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:34, 08:52](2711 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [03:41, 03:41] - -PASS -- COMPILE 's2sw_pdlib_gnu' [16:03, 16:02] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:54, 26:07](2905 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:08, 03:08] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:05, 12:23](3023 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [16:19, 16:19] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [06:24, 06:19](754 MB) - -PASS -- COMPILE 'atm_fbh_intel' [08:26, 08:26] -PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:15, 10:00](1084 MB) SYNOPSIS: -Starting Date/Time: 20240920 09:14:54 -Ending Date/Time: 20240920 14:17:46 -Total Time: 05h:02m:59s +Starting Date/Time: 2024-09-26 18:31:55 +Ending Date/Time: 2024-09-26 20:11:21 +Total Time: 01h:39m:26s Compiles Completed: 58/58 Tests Completed: 245/245 + NOTES: -A file 'test_changes.list' was generated but is empty. -If you are using this log as a pull request verification, please commit 'test_changes.list'. +A file test_changes.list was generated but is empty. +If you are using this log as a pull request verification, please commit test_changes.list. Result: SUCCESS -====END OF HERCULES REGRESSION TESTING LOG==== +====END OF hercules REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index a97a0ea0c6..1572ea8305 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,31 +1,31 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -34893eceee4525f5276fb3408f7432d3dc195032 +0f7fd4cc7a42417c56a5784e3b3891deeae01201 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) + 5c7ba6472e1c1b73899f19710e38de4be1a88223 CICE-interface/CICE (remotes/origin/support_intelllvm) 4c87095256c1c599c3ccaa857a95744158751a60 CICE-interface/CICE/icepack (Icepack1.1.0-191-g4c87095) 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) + 3fd205a8ce07944d38cb7ca6e882dffb2af03d1e 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) + 4e6e96c5b6cd28d1e677539792cf5e21a8a67379 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,256 +37,255 @@ 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_1641237 +COMPARISON DIRECTORY: /lfs5/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_773938 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: h-nems -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [56:32, 42:24] ( 1 warnings 1380 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:36, 08:20](2017 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [02:34, 48:11] ( 1 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [24:26, 20:46](1893 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [57:33, 22:21](2012 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [45:26, 09:54](1138 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:16, 23:47](1842 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [07:35, 53:08] ( 1 warnings 1424 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:04, 20:20](1881 MB) - -PASS -- COMPILE 's2swa_intel' [57:32, 43:02] ( 1 warnings 1399 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [13:24, 10:03](2073 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:38, 09:54](2061 MB) -PASS -- TEST 'cpld_restart_p8_intel' [36:20, 05:27](1715 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:24, 10:06](2078 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [36:20, 05:31](1739 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [13:19, 09:30](2318 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:17, 10:09](2056 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [12:35, 08:28](2011 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:40, 10:04](2066 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:36, 07:14](2038 MB) - -PASS -- COMPILE 's2sw_intel' [55:32, 40:33] ( 1 warnings 1284 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [13:36, 07:43](1906 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:39, 09:48](1959 MB) - -PASS -- COMPILE 's2swa_debug_intel' [11:21, 06:17] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [51:42, 16:28](2081 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:21, 06:16] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [46:28, 11:21](1931 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [44:24, 36:12] ( 1010 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [26:47, 05:33](1960 MB) - -PASS -- COMPILE 's2s_intel' [40:24, 37:20] ( 1 warnings 1033 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [30:14, 10:18](3015 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [23:12, 03:25](3017 MB) -PASS -- TEST 'cpld_restart_c48_intel' [13:19, 01:55](2460 MB) - -PASS -- COMPILE 's2swa_faster_intel' [30:34, 32:32] ( 1 warnings 1615 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [34:35, 09:28](2071 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:24, 46:56] ( 1 warnings 1344 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [55:39, 20:52](1921 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [46:26, 10:18](1128 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [59:23, 24:09](1903 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [40:17, 05:55] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [49:34, 33:22](1927 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [58:31, 37:36] ( 1 warnings 1126 remarks ) -PASS -- TEST 'control_flake_intel' [39:19, 04:34](648 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [50:54, 04:19](1534 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [38:58, 04:31](1531 MB) -PASS -- TEST 'control_latlon_intel' [50:45, 04:18](1531 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [50:45, 04:33](1545 MB) -PASS -- TEST 'control_c48_intel' [04:53, 18:08](1698 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [56:36, 10:12](828 MB) -PASS -- TEST 'control_c192_intel' [51:16, 16:08](1693 MB) -PASS -- TEST 'control_c384_intel' [55:00, 24:08](1820 MB) -PASS -- TEST 'control_c384gdas_intel' [46:32, 13:38](1005 MB) -PASS -- TEST 'control_stochy_intel' [10:13, 02:10](603 MB) -PASS -- TEST 'control_stochy_restart_intel' [49:30, 01:33](438 MB) -PASS -- TEST 'control_lndp_intel' [37:01, 02:02](602 MB) -PASS -- TEST 'control_iovr4_intel' [34:47, 03:20](598 MB) -PASS -- TEST 'control_iovr5_intel' [32:42, 03:19](593 MB) -PASS -- TEST 'control_p8_intel' [34:39, 04:49](1823 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [33:22, 04:04](1841 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [33:50, 04:47](1831 MB) -PASS -- TEST 'control_restart_p8_intel' [59:26, 03:06](1044 MB) -PASS -- TEST 'control_noqr_p8_intel' [33:42, 04:43](1825 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [59:26, 03:28](1069 MB) -PASS -- TEST 'control_decomp_p8_intel' [33:15, 05:19](1823 MB) -PASS -- TEST 'control_2threads_p8_intel' [32:39, 04:35](1910 MB) -PASS -- TEST 'control_p8_lndp_intel' [36:20, 08:40](1824 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [37:29, 05:21](1902 MB) -PASS -- TEST 'control_p8_mynn_intel' [36:47, 04:08](1845 MB) -PASS -- TEST 'merra2_thompson_intel' [36:37, 04:24](1841 MB) -PASS -- TEST 'regional_control_intel' [37:54, 07:14](1012 MB) -PASS -- TEST 'regional_restart_intel' [35:58, 04:30](1005 MB) -PASS -- TEST 'regional_decomp_intel' [35:46, 07:43](1006 MB) -PASS -- TEST 'regional_2threads_intel' [28:58, 04:33](995 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [30:54, 07:12](1004 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [30:46, 07:18](1013 MB) - -PASS -- COMPILE 'rrfs_intel' [56:30, 37:06] ( 3 warnings 1102 remarks ) -PASS -- TEST 'rap_control_intel' [30:00, 10:06](991 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [41:29, 05:55](1163 MB) -PASS -- TEST 'rap_decomp_intel' [30:02, 10:41](985 MB) -PASS -- TEST 'rap_2threads_intel' [29:04, 09:44](1072 MB) -PASS -- TEST 'rap_restart_intel' [04:45, 05:47](982 MB) -PASS -- TEST 'rap_sfcdiff_intel' [29:07, 10:13](991 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [30:00, 10:53](988 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:33, 07:56](993 MB) -PASS -- TEST 'hrrr_control_intel' [31:32, 05:13](987 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [31:32, 05:20](974 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [31:32, 04:46](1044 MB) -PASS -- TEST 'hrrr_control_restart_intel' [54:04, 03:07](915 MB) -PASS -- TEST 'rrfs_v1beta_intel' [36:12, 09:58](979 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [31:38, 12:37](1938 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [31:00, 12:14](1934 MB) - -PASS -- COMPILE 'csawmg_intel' [49:24, 34:13] ( 1091 remarks ) -PASS -- TEST 'control_csawmg_intel' [29:46, 08:19](970 MB) -PASS -- TEST 'control_ras_intel' [26:19, 04:28](669 MB) - -PASS -- COMPILE 'wam_intel' [09:20, 34:58] ( 994 remarks ) -PASS -- TEST 'control_wam_intel' [34:46, 14:33](1610 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [01:21, 36:28] ( 1294 remarks ) -PASS -- TEST 'control_p8_faster_intel' [39:10, 03:45](1832 MB) -PASS -- TEST 'regional_control_faster_intel' [53:41, 06:35](1009 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [29:45, 08:41] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [52:40, 03:22](1565 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [48:55, 03:15](1564 MB) -PASS -- TEST 'control_stochy_debug_intel' [50:31, 04:07](781 MB) -PASS -- TEST 'control_lndp_debug_intel' [50:31, 03:47](781 MB) -PASS -- TEST 'control_csawmg_debug_intel' [51:05, 06:01](1093 MB) -PASS -- TEST 'control_ras_debug_intel' [45:54, 04:01](785 MB) -PASS -- TEST 'control_diag_debug_intel' [45:35, 03:54](1640 MB) -PASS -- TEST 'control_debug_p8_intel' [42:55, 04:06](1855 MB) -PASS -- TEST 'regional_debug_intel' [58:58, 22:41](1031 MB) -PASS -- TEST 'rap_control_debug_intel' [42:59, 06:31](1159 MB) -PASS -- TEST 'hrrr_control_debug_intel' [03:38, 06:26](1157 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [03:31, 06:42](1170 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [03:42, 06:50](1164 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [02:33, 06:37](1171 MB) -PASS -- TEST 'rap_diag_debug_intel' [02:40, 06:45](1244 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [58:26, 06:35](1164 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [58:22, 06:34](1161 MB) -PASS -- TEST 'rap_lndp_debug_intel' [59:07, 06:33](1171 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [58:32, 06:43](1168 MB) -PASS -- TEST 'rap_noah_debug_intel' [41:57, 06:41](1156 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [40:06, 06:48](1166 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [43:14, 10:33](1159 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [38:37, 06:45](1163 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [11:13, 07:46](1171 MB) -PASS -- TEST 'rap_flake_debug_intel' [09:40, 06:38](1161 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [16:54, 11:18](1170 MB) - -PASS -- COMPILE 'wam_debug_intel' [25:42, 05:25] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:03, 17:38](1650 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [55:38, 30:27] ( 3 warnings 1026 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [13:20, 07:10](1040 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [12:09, 08:43](900 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:09, 04:46](870 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:58, 08:14](948 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:01, 04:24](902 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:51, 04:59](847 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [46:55, 06:19](899 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [47:58, 02:29](842 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [57:38, 32:00] ( 3 warnings 1199 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:40, 04:36](1099 MB) -PASS -- TEST 'conus13km_2threads_intel' [48:23, 01:17](1034 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [47:10, 01:39](1006 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:45, 31:11] ( 3 warnings 1046 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:18, 05:50](906 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [39:15, 05:22] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [25:19, 06:25](1034 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [14:00, 06:19](1035 MB) -PASS -- TEST 'conus13km_debug_intel' [24:14, 19:16](1152 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [24:14, 19:18](852 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:19, 11:22](1092 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:12, 19:12](1210 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [36:15, 05:13] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:57, 06:35](1089 MB) - -PASS -- COMPILE 'hafsw_intel' [21:43, 39:45] ( 1 warnings 1418 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [58:51, 07:06](716 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [57:01, 06:34](1060 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [01:38, 10:19](750 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [07:55, 16:28](787 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [40:29, 18:10](805 MB) -PASS -- TEST 'gnv1_nested_intel' [52:40, 06:22](1672 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:41, 36:11] ( 1265 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [04:53, 08:55](747 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [05:01, 09:02](739 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [42:43, 08:31] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [21:30, 04:00](1076 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [25:31, 02:22](1037 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [48:35, 03:37](934 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [48:33, 03:39](930 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [48:34, 03:40](936 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [48:28, 03:44](1054 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [45:21, 03:45](1075 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [44:41, 03:15](930 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [48:31, 07:50](888 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [47:44, 07:44](848 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [41:02, 03:43](1076 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [40:43, 05:09](2371 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [26:29, 05:12](2421 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [37:42, 03:32] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [29:26, 08:16](1026 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [58:02, 08:39] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [44:29, 03:34](1068 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [57:28, 02:14] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [22:39, 01:26](244 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [43:38, 01:06](261 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [16:33, 00:46](262 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [26:33, 36:09] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [36:29, 04:49](1917 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [03:30, 35:45] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [35:09, 04:39](1886 MB) - -PASS -- COMPILE 'atml_intel' [00:30, 38:12] ( 8 warnings 1167 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [35:12, 05:52](1855 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [35:11, 05:49](1855 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [53:09, 03:16](1062 MB) - -PASS -- COMPILE 'atml_debug_intel' [31:15, 06:13] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [23:25, 07:17](1889 MB) - -PASS -- COMPILE 'atmw_intel' [17:25, 36:27] ( 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [40:04, 02:23](1868 MB) - -PASS -- COMPILE 'atmaero_intel' [08:21, 35:30] ( 1098 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [25:59, 05:15](1927 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [28:00, 06:19](1707 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [27:58, 06:26](1719 MB) - -PASS -- COMPILE 'atm_fbh_intel' [02:21, 31:21] ( 3 warnings 996 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [40:33, 15:16](1023 MB) +* (-a) - HPC PROJECT ACCOUNT: epic +* (-r) - USE ROCOTO + +PASS -- COMPILE 's2swa_32bit_intel' [42:57, 42:57] ( 1 warnings 1380 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:16, 08:20](2001 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [48:05, 48:05] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:04, 21:16](1887 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:51, 22:00](1989 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:31, 10:38](1136 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:03, 24:19](1849 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [47:37, 47:36] ( 1 warnings 1424 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [20:52, 20:15](1855 MB) + +PASS -- COMPILE 's2swa_intel' [43:27, 43:27] ( 1 warnings 1399 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:01, 09:57](2040 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:59, 09:55](2062 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:17, 05:22](1713 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:47, 09:39](2068 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:34, 05:28](1723 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:05, 09:16](2312 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:38, 09:48](2018 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:00, 08:12](1978 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:31, 09:37](2068 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:53, 06:55](1997 MB) + +PASS -- COMPILE 's2sw_intel' [39:46, 39:46] ( 1 warnings 1284 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:23, 07:33](1901 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:27, 09:28](1956 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:16, 06:16] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [17:25, 16:24](2072 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:59, 05:59] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:08, 11:19](1924 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [36:39, 36:39] ( 1010 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:49, 05:48](1953 MB) + +PASS -- COMPILE 's2s_intel' [37:30, 37:30] ( 1 warnings 1033 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:53, 10:18](3018 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:10, 03:28](3011 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:30, 01:52](2463 MB) + +PASS -- COMPILE 's2swa_faster_intel' [32:43, 32:43] ( 1 warnings 1615 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:26, 09:21](2060 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [46:54, 46:54] ( 1 warnings 1344 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:19, 20:28](1908 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:24, 10:32](1129 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:40, 23:53](1892 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:08, 06:08] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:02, 33:14](1928 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [36:54, 36:54] ( 1 warnings 1116 remarks ) +PASS -- TEST 'control_flake_intel' [04:37, 04:21](650 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:42, 04:10](1545 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:54, 04:19](1546 MB) +PASS -- TEST 'control_latlon_intel' [04:32, 04:10](1531 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:00, 04:23](1537 MB) +PASS -- TEST 'control_c48_intel' [18:34, 18:03](1705 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:31, 10:13](832 MB) +PASS -- TEST 'control_c192_intel' [16:32, 15:51](1678 MB) +PASS -- TEST 'control_c384_intel' [24:22, 22:56](1815 MB) +PASS -- TEST 'control_c384gdas_intel' [15:28, 13:13](1007 MB) +PASS -- TEST 'control_stochy_intel' [02:25, 02:10](603 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:26, 01:14](438 MB) +PASS -- TEST 'control_lndp_intel' [02:19, 02:04](604 MB) +PASS -- TEST 'control_iovr4_intel' [03:34, 03:17](601 MB) +PASS -- TEST 'control_iovr5_intel' [03:32, 03:15](606 MB) +PASS -- TEST 'control_p8_intel' [05:29, 04:47](1809 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:40, 03:57](1806 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:12, 04:37](1823 MB) +PASS -- TEST 'control_restart_p8_intel' [03:09, 02:37](1051 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:15, 04:40](1828 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:13, 02:36](1079 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:27, 04:56](1802 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:03, 04:32](1910 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:06, 08:37](1803 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:47, 05:12](1896 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:41, 04:03](1839 MB) +PASS -- TEST 'merra2_thompson_intel' [04:58, 04:25](1850 MB) +PASS -- TEST 'regional_control_intel' [07:36, 07:09](1010 MB) +PASS -- TEST 'regional_restart_intel' [04:13, 03:45](1002 MB) +PASS -- TEST 'regional_decomp_intel' [07:57, 07:31](997 MB) +PASS -- TEST 'regional_2threads_intel' [04:52, 04:25](996 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:46, 07:13](1008 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:40, 07:14](1005 MB) + +PASS -- COMPILE 'rrfs_intel' [34:17, 34:17] ( 3 warnings 1092 remarks ) +PASS -- TEST 'rap_control_intel' [10:31, 10:03](990 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:21, 05:30](1166 MB) +PASS -- TEST 'rap_decomp_intel' [11:03, 10:35](987 MB) +PASS -- TEST 'rap_2threads_intel' [10:03, 09:32](1073 MB) +PASS -- TEST 'rap_restart_intel' [05:34, 05:13](980 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:32, 10:03](986 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:07, 10:40](981 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:55, 07:29](994 MB) +PASS -- TEST 'hrrr_control_intel' [05:34, 05:09](984 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:42, 05:18](976 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:17, 04:49](1049 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:58, 02:44](908 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:34, 10:01](984 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:42, 13:28](1904 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:12, 13:00](1927 MB) + +PASS -- COMPILE 'csawmg_intel' [34:12, 34:12] ( 1091 remarks ) +PASS -- TEST 'control_csawmg_intel' [08:27, 08:04](966 MB) +PASS -- TEST 'control_ras_intel' [04:28, 04:17](667 MB) + +PASS -- COMPILE 'wam_intel' [34:49, 34:49] ( 994 remarks ) +PASS -- TEST 'control_wam_intel' [14:59, 14:27](1585 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [36:48, 36:48] ( 1294 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:16, 03:39](1797 MB) +PASS -- TEST 'regional_control_faster_intel' [06:57, 06:37](1004 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:23, 08:23] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:13, 02:43](1546 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:14, 02:39](1538 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:54, 03:42](789 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:30, 03:20](781 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:49, 05:25](1089 MB) +PASS -- TEST 'control_ras_debug_intel' [03:34, 03:22](796 MB) +PASS -- TEST 'control_diag_debug_intel' [03:49, 03:19](1635 MB) +PASS -- TEST 'control_debug_p8_intel' [03:38, 03:10](1859 MB) +PASS -- TEST 'regional_debug_intel' [22:30, 22:05](1037 MB) +PASS -- TEST 'rap_control_debug_intel' [06:19, 06:07](1161 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:11, 05:56](1157 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:16, 06:05](1156 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:18, 06:05](1161 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:15, 06:03](1158 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:43, 06:20](1247 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:24, 06:10](1165 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:22, 06:11](1161 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:21, 06:08](1158 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:18, 06:04](1163 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:09, 05:55](1160 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:19, 06:06](1167 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:11, 09:57](1164 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:19, 06:05](1154 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:43, 07:29](1161 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:27, 06:12](1159 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:07, 10:39](1170 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:17, 05:16] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [17:03, 16:30](1622 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [30:41, 30:40] ( 3 warnings 1026 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:57, 05:07](1045 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:46, 08:20](893 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:52, 04:26](865 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:13, 07:52](952 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:25, 04:00](903 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:59, 04:36](856 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:37, 06:14](892 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:33, 02:20](839 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [31:51, 31:51] ( 3 warnings 1199 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:22, 02:43](1095 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:44, 01:12](1035 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:03, 01:30](1009 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:10, 31:10] ( 3 warnings 1046 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:55, 05:23](907 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:19, 05:19] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:15, 06:00](1043 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:08, 05:53](1042 MB) +PASS -- TEST 'conus13km_debug_intel' [19:19, 18:41](1142 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [19:36, 18:59](861 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:18, 10:46](1094 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:16, 18:43](1210 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:13, 05:13] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:27, 06:10](1080 MB) + +PASS -- COMPILE 'hafsw_intel' [39:09, 39:08] ( 1 warnings 1418 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:51, 06:39](708 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:21, 06:00](1058 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:12, 08:50](748 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:07, 15:53](780 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:47, 17:37](798 MB) +PASS -- TEST 'gnv1_nested_intel' [07:45, 06:23](1636 MB) + +PASS -- COMPILE 'hafs_all_intel' [35:41, 35:41] ( 1265 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:25, 08:17](754 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:30, 08:18](739 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:24, 08:24] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:46, 03:37](1068 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 02:09](1031 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:52, 03:43](919 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:39, 03:31](928 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:40, 03:33](929 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:43, 03:34](1055 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:43, 03:35](1070 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:36, 03:28](932 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:43, 07:43](890 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:35, 07:34](846 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:40, 03:33](1067 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:11, 05:01](2317 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:14, 05:05](2419 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:26, 03:26] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 08:07](1027 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:25, 08:25] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:45, 03:36](1085 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:46, 01:46] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:28, 01:05](239 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:13, 00:56](266 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:53, 00:36](257 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [36:02, 36:02] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:37, 04:49](1886 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [35:07, 35:07] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:16, 04:34](1855 MB) + +PASS -- COMPILE 'atml_intel' [30:07, 30:07] ( 8 warnings 1157 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:21, 05:29](1841 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:15, 05:33](1823 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:36, 03:06](1057 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:18, 06:18] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:59, 07:12](1885 MB) + +PASS -- COMPILE 'atmw_intel' [37:19, 37:18] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:57, 02:20](1832 MB) + +PASS -- COMPILE 'atmaero_intel' [35:28, 35:28] ( 1098 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:59, 05:13](1930 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:01, 06:13](1713 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:54, 06:17](1719 MB) + +PASS -- COMPILE 'atm_fbh_intel' [31:17, 31:17] ( 3 warnings 996 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:46, 15:29](1019 MB) SYNOPSIS: -Starting Date/Time: 20240920 21:26:38 -Ending Date/Time: 20240921 18:44:18 -Total Time: 21h:18m:25s +Starting Date/Time: 20240925 15:04:22 +Ending Date/Time: 20240926 22:40:41 +Total Time: 07h:36m:46s Compiles Completed: 37/37 Tests Completed: 165/165 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 4183a07a11..d624f0297a 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,31 +1,362 @@ -====START OF ORION REGRESSION TESTING LOG==== +====START OF orion REGRESSION TESTING LOG==== UFSWM hash used in testing: -ce118b02fad212ff25d1995f8d323e41b841d615 +0f7fd4cc7a42417c56a5784e3b3891deeae01201 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) + 5c7ba6472e1c1b73899f19710e38de4be1a88223 CICE-interface/CICE (remotes/origin/support_intelllvm) 4c87095256c1c599c3ccaa857a95744158751a60 CICE-interface/CICE/icepack (Icepack1.1.0-191-g4c87095) 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) + 3fd205a8ce07944d38cb7ca6e882dffb2af03d1e FV3 (remotes/origin/support_intelllvm) + b947391ed4d23ffa15f5c854e7d5c4849abefc40 FV3/atmos_cubed_sphere (201912_public_release-414-gb947391) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 4e6e96c5b6cd28d1e677539792cf5e21a8a67379 FV3/ccpp/physics (remotes/origin/support_intelllvm) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 55ec82b08ca7d914ace595d4eecd54ae640ade31 FV3/upp (upp_gfsv16_release.v1.0.8-385-g55ec82b) +-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) + 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) + 6810b2d8dbceea2b5e47b3f1b59b5461aded3827 WW3 (remotes/origin/support_intelllvm) + 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-20240909 +COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_3145618 + +UFS_TEST.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-r) - USE ROCOTO + +PASS -- COMPILE s2swa_32bit_intel [17:34, 17:33](1 warnings,10 remarks) +PASS -- TEST cpld_control_p8_mixedmode_intel [15:47, 14:28] (2083844 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_intel [21:37, 21:37](1 warnings,10 remarks) +PASS -- TEST cpld_control_gfsv17_intel [19:31, 18:04] (1942328 MB) +PASS -- TEST cpld_control_gfsv17_iau_intel [21:19, 19:22] (2123500 MB) +PASS -- TEST cpld_restart_gfsv17_intel [11:13, 09:15] (1222260 MB) +PASS -- TEST cpld_mpi_gfsv17_intel [21:38, 20:23] (1868720 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [20:45, 20:45](1 warnings,10 remarks) +PASS -- TEST cpld_control_sfs_intel [18:29, 17:50] (1939580 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [09:52, 09:52](1523 warnings,2000 remarks) +PASS -- TEST cpld_debug_gfsv17_intel [29:34, 28:13] (1928880 MB) + +PASS -- COMPILE s2swa_intel [17:33, 17:33](1 warnings,10 remarks) +PASS -- TEST cpld_control_p8_intel [15:20, 14:08] (2137480 MB) +PASS -- TEST cpld_control_p8.v2.sfc_intel [15:43, 14:28] (2133644 MB) +PASS -- TEST cpld_restart_p8_intel [09:32, 08:08] (1789208 MB) +PASS -- TEST cpld_control_qr_p8_intel [15:31, 14:26] (2165128 MB) +PASS -- TEST cpld_restart_qr_p8_intel [09:24, 07:57] (1693984 MB) +PASS -- TEST cpld_2threads_p8_intel [14:40, 13:32] (2422804 MB) +PASS -- TEST cpld_decomp_p8_intel [15:46, 14:37] (2137268 MB) +PASS -- TEST cpld_mpi_p8_intel [14:09, 12:58] (2036456 MB) +PASS -- TEST cpld_control_ciceC_p8_intel [15:51, 14:48] (2144180 MB) +PASS -- TEST cpld_control_c192_p8_intel [18:16, 16:20] (2700860 MB) +PASS -- TEST cpld_restart_c192_p8_intel [11:21, 08:43] (2708868 MB) +PASS -- TEST cpld_bmark_p8_intel [16:33, 11:02] (3677612 MB) +PASS -- TEST cpld_restart_bmark_p8_intel [14:51, 07:23] (3474120 MB) +PASS -- TEST cpld_s2sa_p8_intel [07:13, 06:05] (2102708 MB) + +PASS -- COMPILE s2sw_intel [15:53, 15:53](1 warnings,10 remarks) +PASS -- TEST cpld_control_noaero_p8_intel [14:35, 13:38] (1966848 MB) +PASS -- TEST cpld_control_nowave_noaero_p8_intel [09:06, 07:58] (2035148 MB) + +PASS -- COMPILE s2swa_debug_intel [09:13, 09:13](1413 warnings,1230 remarks) +PASS -- TEST cpld_debug_p8_intel [14:39, 13:22] (2172624 MB) + +PASS -- COMPILE s2sw_debug_intel [08:50, 08:50](1413 warnings,1230 remarks) +PASS -- TEST cpld_debug_noaero_p8_intel [10:39, 09:32] (2002024 MB) + +PASS -- COMPILE s2s_aoflux_intel [15:12, 15:12],3 remarks) +PASS -- TEST cpld_control_noaero_p8_agrid_intel [05:57, 04:51] (2037628 MB) + +PASS -- COMPILE s2s_intel [15:18, 15:17](1 warnings,3 remarks) +PASS -- TEST cpld_control_c48_intel [11:12, 10:27] (3032584 MB) +PASS -- TEST cpld_warmstart_c48_intel [04:27, 03:43] (3025332 MB) +PASS -- TEST cpld_restart_c48_intel [02:49, 02:05] (2489020 MB) + +PASS -- COMPILE s2swa_faster_intel [16:59, 16:59](1 warnings,10 remarks) +PASS -- TEST cpld_control_p8_faster_intel [16:14, 15:00] (2134552 MB) + +PASS -- COMPILE s2sw_pdlib_intel [21:25, 21:25](1 warnings,10 remarks) +PASS -- TEST cpld_control_pdlib_p8_intel [19:08, 18:10] (2007696 MB) +PASS -- TEST cpld_restart_pdlib_p8_intel [10:06, 09:00] (1245956 MB) +PASS -- TEST cpld_mpi_pdlib_p8_intel [21:31, 20:34] (1930400 MB) + +PASS -- COMPILE s2sw_pdlib_debug_intel [07:50, 07:50](1523 warnings,2000 remarks) +FAIL -- TEST cpld_debug_pdlib_p8_intel + +PASS -- COMPILE atm_dyn32_intel [13:28, 13:28](1 warnings,1 remarks) +PASS -- TEST control_flake_intel [04:06, 03:51] (691548 MB) +PASS -- TEST control_CubedSphereGrid_intel [03:58, 03:32] (1574200 MB) +PASS -- TEST control_CubedSphereGrid_parallel_intel [04:16, 03:42] (1578768 MB) +PASS -- TEST control_latlon_intel [03:51, 03:33] (1576212 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_intel [04:10, 03:34] (1583804 MB) +PASS -- TEST control_c48_intel [15:34, 15:03] (1702592 MB) +PASS -- TEST control_c48.v2.sfc_intel [08:36, 08:17] (841944 MB) +PASS -- TEST control_c192_intel [13:51, 13:16] (1731880 MB) +PASS -- TEST control_c384_intel [18:12, 16:44] (1999136 MB) +PASS -- TEST control_c384gdas_intel [14:00, 11:54] (1325192 MB) +PASS -- TEST control_stochy_intel [02:06, 01:50] (642124 MB) +PASS -- TEST control_stochy_restart_intel [01:33, 01:05] (474300 MB) +PASS -- TEST control_lndp_intel [01:58, 01:43] (643928 MB) +PASS -- TEST control_iovr4_intel [03:00, 02:44] (631052 MB) +PASS -- TEST control_iovr5_intel [02:54, 02:43] (635260 MB) +PASS -- TEST control_p8_intel [05:11, 04:12] (1862988 MB) +PASS -- TEST control_p8.v2.sfc_intel [04:34, 03:35] (1870468 MB) +PASS -- TEST control_p8_ugwpv1_intel [05:12, 04:05] (1871824 MB) +PASS -- TEST control_restart_p8_intel [03:17, 02:20] (1086532 MB) +PASS -- TEST control_noqr_p8_intel [05:06, 04:07] (1857320 MB) +PASS -- TEST control_restart_noqr_p8_intel [03:30, 02:24] (1130900 MB) +PASS -- TEST control_decomp_p8_intel [05:18, 04:12] (1852340 MB) +PASS -- TEST control_2threads_p8_intel [05:32, 04:29] (1939364 MB) +PASS -- TEST control_p8_lndp_intel [07:52, 07:20] (1858120 MB) +PASS -- TEST control_p8_rrtmgp_intel [06:05, 04:52] (1943464 MB) +PASS -- TEST control_p8_mynn_intel [04:47, 03:37] (1886452 MB) +PASS -- TEST merra2_thompson_intel [05:11, 03:49] (1884888 MB) +PASS -- TEST regional_control_intel [07:03, 06:36] (1078892 MB) +PASS -- TEST regional_restart_intel [06:23, 05:43] (1073532 MB) +PASS -- TEST regional_decomp_intel [07:30, 07:03] (1069120 MB) +PASS -- TEST regional_2threads_intel [05:21, 04:53] (1072600 MB) +PASS -- TEST regional_noquilt_intel [06:58, 06:32] (1385612 MB) +PASS -- TEST regional_netcdf_parallel_intel [07:02, 06:31] (1075292 MB) +PASS -- TEST regional_2dwrtdecomp_intel [07:03, 06:36] (1071116 MB) +PASS -- TEST regional_wofs_intel [08:23, 07:59] (1893064 MB) + +PASS -- COMPILE rrfs_intel [12:37, 12:37](3 warnings,9 remarks) +PASS -- TEST rap_control_intel [09:37, 08:30] (1042800 MB) +PASS -- TEST regional_spp_sppt_shum_skeb_intel [06:05, 05:19] (1247324 MB) +PASS -- TEST rap_decomp_intel [09:52, 08:43] (1013392 MB) +PASS -- TEST rap_2threads_intel [09:47, 08:39] (1152324 MB) +PASS -- TEST rap_restart_intel [08:16, 06:56] (1030480 MB) +PASS -- TEST rap_sfcdiff_intel [09:39, 08:29] (1058856 MB) +PASS -- TEST rap_sfcdiff_decomp_intel [09:52, 08:44] (1008276 MB) +PASS -- TEST rap_sfcdiff_restart_intel [07:37, 06:21] (1060656 MB) +PASS -- TEST hrrr_control_intel [05:31, 04:24] (1024884 MB) +PASS -- TEST hrrr_control_decomp_intel [05:36, 04:28] (1006792 MB) +PASS -- TEST hrrr_control_2threads_intel [10:53, 09:43] (1085040 MB) +PASS -- TEST hrrr_control_restart_intel [02:51, 02:22] (941836 MB) +PASS -- TEST rrfs_v1beta_intel [09:42, 08:25] (1035232 MB) +PASS -- TEST rrfs_v1nssl_intel [10:05, 09:53] (1978476 MB) +PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [09:58, 09:39] (2022300 MB) + +PASS -- COMPILE csawmg_intel [13:04, 13:04] +PASS -- TEST control_csawmg_intel [07:07, 06:41] (1009820 MB) +PASS -- TEST control_ras_intel [03:44, 03:29] (716348 MB) + +PASS -- COMPILE wam_intel [12:57, 12:57],1 remarks) +PASS -- TEST control_wam_intel [13:15, 12:48] (1643840 MB) + +PASS -- COMPILE atm_faster_dyn32_intel [12:47, 12:47],1 remarks) +PASS -- TEST control_p8_faster_intel [04:41, 03:19] (1878564 MB) +PASS -- TEST regional_control_faster_intel [06:50, 06:21] (1072340 MB) + +PASS -- COMPILE atm_debug_dyn32_intel [10:02, 10:02](882 warnings,9 remarks) +PASS -- TEST control_CubedSphereGrid_debug_intel [02:53, 02:27] (1601664 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [02:54, 02:18] (1603380 MB) +PASS -- TEST control_stochy_debug_intel [03:20, 03:06] (813588 MB) +PASS -- TEST control_lndp_debug_intel [03:04, 02:50] (817480 MB) +PASS -- TEST control_csawmg_debug_intel [04:48, 04:29] (1121380 MB) +PASS -- TEST control_ras_debug_intel [03:08, 02:58] (823068 MB) +PASS -- TEST control_diag_debug_intel [03:24, 02:56] (1673196 MB) +PASS -- TEST control_debug_p8_intel [03:23, 02:48] (1887904 MB) +PASS -- TEST regional_debug_intel [17:43, 17:23] (1085436 MB) +PASS -- TEST rap_control_debug_intel [05:16, 05:05] (1196804 MB) +PASS -- TEST hrrr_control_debug_intel [05:11, 04:54] (1191016 MB) +PASS -- TEST hrrr_gf_debug_intel [05:26, 05:09] (1204336 MB) +PASS -- TEST hrrr_c3_debug_intel [05:17, 04:59] (1201704 MB) +PASS -- TEST rap_unified_drag_suite_debug_intel [05:12, 05:04] (1204356 MB) +PASS -- TEST rap_diag_debug_intel [05:30, 05:12] (1289944 MB) +PASS -- TEST rap_cires_ugwp_debug_intel [05:21, 05:11] (1200880 MB) +PASS -- TEST rap_unified_ugwp_debug_intel [05:29, 05:12] (1198800 MB) +PASS -- TEST rap_lndp_debug_intel [05:29, 05:09] (1207756 MB) +PASS -- TEST rap_progcld_thompson_debug_intel [05:10, 04:59] (1205908 MB) +PASS -- TEST rap_noah_debug_intel [05:07, 04:56] (1199676 MB) +PASS -- TEST rap_sfcdiff_debug_intel [05:12, 04:59] (1205464 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [08:17, 08:08] (1197160 MB) +PASS -- TEST rrfs_v1beta_debug_intel [05:06, 04:57] (1197872 MB) +PASS -- TEST rap_clm_lake_debug_intel [06:15, 05:59] (1203664 MB) +PASS -- TEST rap_flake_debug_intel [05:10, 04:54] (1199036 MB) +PASS -- TEST gnv1_c96_no_nest_debug_intel [09:47, 08:41] (1205212 MB) + +PASS -- COMPILE wam_debug_intel [07:11, 07:11](837 warnings,1 remarks) +PASS -- TEST control_wam_debug_intel [13:56, 13:22] (1679012 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_intel [13:27, 13:27](3 warnings,8 remarks) +PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [05:40, 05:00] (1123712 MB) +PASS -- TEST rap_control_dyn32_phy32_intel [08:17, 07:15] (994504 MB) +PASS -- TEST hrrr_control_dyn32_phy32_intel [05:20, 03:52] (918144 MB) +PASS -- TEST rap_2threads_dyn32_phy32_intel [08:31, 07:27] (1064664 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [10:13, 08:44] (941068 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [05:24, 03:57] (887984 MB) +PASS -- TEST rap_restart_dyn32_phy32_intel [06:36, 05:27] (964820 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [02:14, 02:05] (865528 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [12:12, 12:11](3 warnings,8 remarks) +PASS -- TEST conus13km_control_intel [03:28, 02:45] (1156072 MB) +PASS -- TEST conus13km_2threads_intel [01:43, 01:15] (1106524 MB) +PASS -- TEST conus13km_restart_mismatch_intel [02:04, 01:33] (1059384 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_intel [12:25, 12:25](3 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_intel [05:01, 04:34] (963012 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [06:13, 06:13](785 warnings,8 remarks) +PASS -- TEST rap_control_debug_dyn32_phy32_intel [04:57, 04:45] (1078756 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [05:03, 04:47] (1071468 MB) +PASS -- TEST conus13km_debug_intel [15:26, 14:53] (1226144 MB) +PASS -- TEST conus13km_debug_qr_intel [15:14, 14:40] (930560 MB) +PASS -- TEST conus13km_debug_2threads_intel [09:05, 08:40] (1162456 MB) +PASS -- TEST conus13km_radar_tten_debug_intel [15:13, 14:44] (1297932 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [06:45, 06:45](785 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_debug_intel [05:17, 05:08] (1128872 MB) + +PASS -- COMPILE hafsw_intel [14:52, 14:50](1 warnings,9 remarks) +PASS -- TEST hafs_regional_atm_intel [07:06, 06:02] (736528 MB) +PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [06:57, 06:33] (1114272 MB) +PASS -- TEST hafs_regional_atm_ocn_intel [09:13, 07:53] (811356 MB) +PASS -- TEST hafs_regional_atm_wav_intel [25:46, 24:40] (845860 MB) +PASS -- TEST hafs_regional_atm_ocn_wav_intel [29:29, 28:24] (869948 MB) +PASS -- TEST hafs_regional_1nest_atm_intel [08:15, 07:12] (493588 MB) +PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [09:52, 08:35] (502244 MB) +PASS -- TEST hafs_global_1nest_atm_intel [04:34, 03:35] (372040 MB) +PASS -- TEST hafs_global_multiple_4nests_atm_intel [11:50, 09:39] (474196 MB) +PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [05:29, 04:47] (521200 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [05:25, 04:33] (524644 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [06:40, 05:42] (572448 MB) +PASS -- TEST hafs_global_storm_following_1nest_atm_intel [01:58, 01:35] (399316 MB) +PASS -- TEST gnv1_nested_intel [06:21, 04:23] (1732988 MB) + +PASS -- COMPILE hafsw_debug_intel [07:25, 07:25](1465 warnings,1502 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [14:19, 13:22] (627152 MB) + +PASS -- COMPILE hafsw_faster_intel [14:11, 14:11],8 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [14:04, 12:57] (637388 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [14:10, 13:01] (721076 MB) + +PASS -- COMPILE hafs_mom6w_intel [15:27, 15:27],7 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [10:09, 08:40] (706508 MB) + +PASS -- COMPILE hafs_all_intel [13:58, 13:58],8 remarks) +PASS -- TEST hafs_regional_docn_intel [08:39, 07:35] (811244 MB) +PASS -- TEST hafs_regional_docn_oisst_intel [08:46, 07:39] (797016 MB) +PASS -- TEST hafs_regional_datm_cdeps_intel [17:11, 16:30] (1202652 MB) + +PASS -- COMPILE datm_cdeps_intel [09:58, 09:58],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_intel [03:07, 02:58] (1154320 MB) +PASS -- TEST datm_cdeps_restart_cfsr_intel [01:58, 01:52] (1107248 MB) +PASS -- TEST datm_cdeps_control_gefs_intel [03:00, 02:51] (1022068 MB) +PASS -- TEST datm_cdeps_iau_gefs_intel [03:00, 02:54] (1022524 MB) +PASS -- TEST datm_cdeps_stochy_gefs_intel [03:15, 03:04] (1020360 MB) +PASS -- TEST datm_cdeps_ciceC_cfsr_intel [03:07, 02:59] (1158716 MB) +PASS -- TEST datm_cdeps_bulk_cfsr_intel [03:09, 03:01] (1152664 MB) +PASS -- TEST datm_cdeps_bulk_gefs_intel [02:59, 02:51] (1016904 MB) +PASS -- TEST datm_cdeps_mx025_cfsr_intel [07:28, 06:35] (1016276 MB) +PASS -- TEST datm_cdeps_mx025_gefs_intel [07:23, 06:31] (1007912 MB) +PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [03:00, 02:56] (1158116 MB) +PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [04:27, 04:21] (2401844 MB) +PASS -- TEST datm_cdeps_gfs_intel [04:33, 04:24] (2453712 MB) + +PASS -- COMPILE datm_cdeps_debug_intel [05:54, 05:54](2 warnings,2 remarks) +PASS -- TEST datm_cdeps_debug_cfsr_intel [06:36, 06:27] (1063168 MB) + +PASS -- COMPILE datm_cdeps_faster_intel [08:24, 08:24],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_faster_intel [03:06, 02:58] (1150300 MB) + +PASS -- COMPILE datm_cdeps_land_intel [01:27, 01:27],1 remarks) +PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:24, 01:01] (255508 MB) +PASS -- TEST datm_cdeps_lnd_era5_intel [01:11, 00:54] (323192 MB) +PASS -- TEST datm_cdeps_lnd_era5_rst_intel [00:50, 00:34] (323484 MB) + +PASS -- COMPILE atm_ds2s_docn_pcice_intel [13:53, 13:53],3 remarks) +PASS -- TEST atm_ds2s_docn_pcice_intel [05:11, 04:14] (1967044 MB) + +PASS -- COMPILE atm_ds2s_docn_dice_intel [13:34, 13:34],1 remarks) +PASS -- TEST atm_ds2s_docn_dice_intel [05:02, 04:05] (1949344 MB) + +PASS -- COMPILE atml_intel [13:43, 13:43](8 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_sbs_intel [06:29, 05:02] (1860772 MB) +PASS -- TEST control_p8_atmlnd_intel [06:19, 04:57] (1855004 MB) +PASS -- TEST control_restart_p8_atmlnd_intel [03:24, 02:50] (1072564 MB) + +PASS -- COMPILE atml_debug_intel [08:21, 08:21](880 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_debug_intel [07:43, 06:24] (1907168 MB) + +PASS -- COMPILE atmw_intel [14:42, 14:42],8 remarks) +PASS -- TEST atmwav_control_noaero_p8_intel [03:20, 02:11] (1896084 MB) + +PASS -- COMPILE atmaero_intel [13:42, 13:42],1 remarks) +PASS -- TEST atmaero_control_p8_intel [05:38, 04:38] (1971408 MB) +PASS -- TEST atmaero_control_p8_rad_intel [06:30, 05:26] (1750220 MB) +PASS -- TEST atmaero_control_p8_rad_micro_intel [06:26, 05:32] (1758784 MB) + +PASS -- COMPILE atmaq_debug_intel [06:35, 06:35](882 warnings,6 remarks) +PASS -- TEST regional_atmaq_debug_intel [23:06, 21:01] (4480408 MB) + +PASS -- COMPILE atm_fbh_intel [12:02, 12:02](3 warnings,8 remarks) +PASS -- TEST cpld_regional_atm_fbh_intel [14:28, 14:11] (1080188 MB) + + +SYNOPSIS: +Starting Date/Time: 2024-09-25 20:00:32 +Ending Date/Time: 2024-09-26 00:20:52 +Total Time: 04h:20m:20s +Compiles Completed: 42/42 +Tests Completed: 185/186 + + +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: +a7cef6704d3c373d2e3b020039bf59f971ab0bee + +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) + 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) + 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,289 +368,21 @@ 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_3636759 +COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_1801953 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [19:12, 17:50] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:32, 14:03](2085 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:11, 22:13] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [23:41, 18:10](1948 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:16, 19:06](2136 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [15:00, 08:59](1208 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:40, 20:45](1863 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:11, 22:39] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [22:44, 17:48](1939 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:11, 09:04] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [33:51, 28:04](1932 MB) - -PASS -- COMPILE 's2swa_intel' [20:12, 18:50] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [17:32, 14:30](2137 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:40, 14:49](2137 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:43, 08:00](1791 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [17:31, 14:51](2155 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:43, 07:58](1692 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [16:37, 13:32](2424 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:31, 14:21](2122 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [15:33, 12:19](2045 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:45, 15:00](2142 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:37, 16:21](2701 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [17:06, 12:27](2716 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [20:14, 11:27](3680 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:34, 06:47](3487 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:36, 06:04](2099 MB) - -PASS -- COMPILE 's2sw_intel' [19:11, 17:30] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [16:13, 13:47](1968 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:25, 08:03](2036 MB) - -PASS -- COMPILE 's2swa_debug_intel' [11:11, 09:10] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [17:14, 13:41](2170 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:11, 08:48] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [14:11, 09:21](1998 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [18:11, 16:12] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:30, 05:00](2035 MB) - -PASS -- COMPILE 's2s_intel' [18:11, 16:20] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [11:00, 08:43](3023 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [07:03, 04:16](3032 MB) -PASS -- TEST 'cpld_restart_c48_intel' [06:12, 02:15](2485 MB) - -PASS -- COMPILE 's2swa_faster_intel' [21:11, 17:23] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [18:30, 15:30](2134 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [23:11, 20:21] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:13, 18:15](2009 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:32, 09:08](1247 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:13, 20:54](1928 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:11, 08:13] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:13, 29:51](1966 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:11, 13:20] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:32, 03:44](685 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:48, 03:33](1569 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:49, 03:39](1577 MB) -PASS -- TEST 'control_latlon_intel' [05:43, 03:29](1576 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:47, 03:34](1572 MB) -PASS -- TEST 'control_c48_intel' [16:54, 14:40](1689 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:33, 08:11](830 MB) -PASS -- TEST 'control_c192_intel' [15:02, 13:03](1742 MB) -PASS -- TEST 'control_c384_intel' [19:49, 16:40](1977 MB) -PASS -- TEST 'control_c384gdas_intel' [13:37, 09:57](1331 MB) -PASS -- TEST 'control_stochy_intel' [03:26, 01:48](637 MB) -PASS -- TEST 'control_stochy_restart_intel' [06:39, 01:06](478 MB) -PASS -- TEST 'control_lndp_intel' [03:27, 01:43](646 MB) -PASS -- TEST 'control_iovr4_intel' [04:30, 02:41](636 MB) -PASS -- TEST 'control_iovr5_intel' [04:29, 02:44](630 MB) -PASS -- TEST 'control_p8_intel' [09:13, 04:06](1861 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [08:10, 03:36](1880 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [09:33, 04:04](1866 MB) -PASS -- TEST 'control_restart_p8_intel' [05:14, 02:23](1081 MB) -PASS -- TEST 'control_noqr_p8_intel' [09:16, 04:09](1856 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:29, 02:22](1133 MB) -PASS -- TEST 'control_decomp_p8_intel' [10:23, 04:10](1854 MB) -PASS -- TEST 'control_2threads_p8_intel' [09:11, 04:24](1950 MB) -PASS -- TEST 'control_p8_lndp_intel' [12:52, 07:15](1862 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [11:37, 04:56](1930 MB) -PASS -- TEST 'control_p8_mynn_intel' [09:32, 03:30](1880 MB) -PASS -- TEST 'merra2_thompson_intel' [09:44, 03:51](1876 MB) -PASS -- TEST 'regional_control_intel' [11:37, 06:31](1072 MB) -PASS -- TEST 'regional_restart_intel' [05:36, 03:37](1065 MB) -PASS -- TEST 'regional_decomp_intel' [12:33, 06:49](1071 MB) -PASS -- TEST 'regional_2threads_intel' [08:38, 04:44](1065 MB) -PASS -- TEST 'regional_noquilt_intel' [09:37, 06:26](1369 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:41, 06:31](1069 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:36, 06:31](1071 MB) -PASS -- TEST 'regional_wofs_intel' [12:38, 08:01](1896 MB) - -PASS -- COMPILE 'rrfs_intel' [14:10, 13:00] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [12:15, 08:32](1046 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:09, 05:13](1253 MB) -PASS -- TEST 'rap_decomp_intel' [12:15, 08:44](1013 MB) -PASS -- TEST 'rap_2threads_intel' [11:29, 08:44](1158 MB) -PASS -- TEST 'rap_restart_intel' [08:29, 04:27](1033 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:27, 08:32](1050 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:30, 09:16](1016 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:29, 06:20](1066 MB) -PASS -- TEST 'hrrr_control_intel' [07:26, 04:20](1021 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:09, 04:29](1009 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [08:09, 04:13](1087 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:37, 02:22](943 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:28, 08:20](1041 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [12:34, 10:12](1979 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:33, 09:53](2012 MB) - -PASS -- COMPILE 'csawmg_intel' [14:11, 12:34] -PASS -- TEST 'control_csawmg_intel' [09:38, 06:35](1019 MB) -PASS -- TEST 'control_ras_intel' [05:23, 03:29](716 MB) - -PASS -- COMPILE 'wam_intel' [14:11, 12:25] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:35, 12:47](1642 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:12, 12:54] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:31, 03:22](1878 MB) -PASS -- TEST 'regional_control_faster_intel' [08:36, 06:19](1063 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:11, 09:59] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:47, 02:21](1600 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:43, 02:20](1602 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:22, 03:12](819 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:54](814 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:41, 04:16](1124 MB) -PASS -- TEST 'control_ras_debug_intel' [04:25, 02:50](824 MB) -PASS -- TEST 'control_diag_debug_intel' [04:41, 02:43](1675 MB) -PASS -- TEST 'control_debug_p8_intel' [04:47, 02:46](1893 MB) -PASS -- TEST 'regional_debug_intel' [19:41, 17:12](1087 MB) -PASS -- TEST 'rap_control_debug_intel' [06:22, 04:58](1201 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:29, 04:53](1189 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:23, 04:59](1207 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:27, 04:59](1205 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:23, 04:56](1200 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:31, 05:13](1285 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 05:09](1197 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:21, 05:20](1198 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:22, 05:06](1201 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 04:57](1204 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:21, 04:58](1199 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:20, 04:55](1200 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:26, 08:08](1196 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:30, 05:04](1195 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:25, 05:57](1203 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:20, 05:03](1201 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:25, 08:33](1207 MB) - -PASS -- COMPILE 'wam_debug_intel' [11:11, 06:33] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:45, 13:12](1674 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:11, 12:32] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:55, 05:03](1123 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:16, 07:14](993 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:42, 03:45](923 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:52, 07:26](1063 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:24, 03:45](936 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:05, 03:59](892 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [13:25, 05:24](961 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:43, 02:02](872 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 12:39] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:51, 02:42](1164 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:43, 01:15](1107 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:32](1060 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:48] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:47, 04:40](966 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 06:36] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 05:04](1072 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:23, 04:50](1076 MB) -PASS -- TEST 'conus13km_debug_intel' [16:49, 14:41](1224 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:45, 15:30](924 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:45, 08:42](1166 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:43, 14:47](1288 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:11, 07:37] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:26, 05:01](1132 MB) - -PASS -- COMPILE 'hafsw_intel' [18:11, 15:29] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:18, 06:11](737 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:27, 06:32](1112 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:23, 07:36](817 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [27:14, 24:32](845 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:33, 28:12](870 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:06, 07:15](495 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:29, 08:34](498 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:58, 03:30](377 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:32, 09:46](477 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:54, 04:48](521 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:02, 04:29](517 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:57, 05:48](574 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:31, 01:35](399 MB) -PASS -- TEST 'gnv1_nested_intel' [14:19, 04:22](1728 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [11:11, 08:09] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:05, 13:07](578 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:11, 14:09] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [16:14, 12:58](653 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [20:07, 13:01](721 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 15:23] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:17, 09:03](702 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:11, 14:31] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [15:15, 07:38](816 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:12, 09:59](767 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:59, 16:24](1204 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:29] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:19, 03:01](1154 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:21, 01:57](1112 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:19, 02:52](1017 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:18, 02:54](1022 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:17, 02:57](1021 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:19, 03:01](1153 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:19, 03:01](1153 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:18, 02:52](1015 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:15, 06:33](1013 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:07, 06:32](998 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:21, 03:01](1149 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:18, 04:20](2385 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 04:27](2454 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 04:54] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:19, 06:40](1082 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [14:11, 09:42] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 03:00](1156 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:10, 01:23] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:33, 01:02](252 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 01:00](321 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:38](324 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:11, 13:55] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:11, 04:08](1961 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:11, 12:59] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:04, 03:58](1948 MB) - -PASS -- COMPILE 'atml_intel' [17:11, 14:17] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:31, 05:09](1858 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:27, 05:10](1860 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:55, 02:49](1057 MB) - -PASS -- COMPILE 'atml_debug_intel' [12:11, 07:45] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:26, 06:06](1888 MB) - -PASS -- COMPILE 'atmw_intel' [17:11, 13:56] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:16, 02:13](1896 MB) - -PASS -- COMPILE 'atmaero_intel' [16:11, 13:25] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:15, 04:45](1972 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:12, 05:20](1750 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:07, 05:29](1772 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:11, 06:43] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:57, 20:26](4494 MB) - -PASS -- COMPILE 'atm_fbh_intel' [14:11, 12:08] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:30, 13:54](1076 MB) +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 07:12] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:16, 29:55](1967 MB) SYNOPSIS: -Starting Date/Time: 20240920 09:01:01 -Ending Date/Time: 20240920 10:49:03 -Total Time: 01h:49m:18s -Compiles Completed: 42/42 -Tests Completed: 186/186 +Starting Date/Time: 20240926 18:51:52 +Ending Date/Time: 20240926 19:36:38 +Total Time: 00h:44m:49s +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 d36c5c7ea2..3bfd473d2f 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,31 +1,31 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -ce118b02fad212ff25d1995f8d323e41b841d615 +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,238 +37,238 @@ 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_97123 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165025 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:28, 11:33] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [33:03, 02:30](3084 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:28, 12:08] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [33:00, 02:51](1814 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [13:37, 03:12](1834 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:14, 02:35](972 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [33:01, 03:23](1780 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:28, 11:38] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [33:00, 02:06](1814 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:18] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [39:10, 02:54](1835 MB) - -PASS -- COMPILE 's2swa_intel' [13:26, 11:36] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [33:04, 02:34](3121 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [33:04, 02:57](3117 MB) -PASS -- TEST 'cpld_restart_p8_intel' [21:33, 02:09](3040 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [33:04, 02:33](3137 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [21:32, 02:07](3062 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [33:03, 02:25](3358 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [33:03, 02:37](3113 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [33:05, 02:05](3058 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [33:04, 02:55](3115 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [33:12, 06:42](4109 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [12:44, 06:08](4257 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [33:04, 02:49](3096 MB) - -PASS -- COMPILE 's2sw_intel' [12:27, 11:03] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [34:04, 02:44](1828 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [34:04, 02:47](1884 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:25, 10:17] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [34:05, 03:01](1889 MB) - -PASS -- COMPILE 's2s_intel' [12:26, 10:12] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [34:03, 01:48](2859 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [34:03, 02:31](2869 MB) -PASS -- TEST 'cpld_restart_c48_intel' [28:46, 02:17](2288 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:33, 16:00] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [28:57, 02:55](3118 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:28, 11:34] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [33:00, 02:05](1824 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:15, 02:06](996 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [13:46, 02:43](1803 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:07] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [59:20, 02:04](1852 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:26, 08:58] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [23:38, 02:29](570 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [23:38, 02:11](1465 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [23:38, 02:04](1469 MB) -PASS -- TEST 'control_latlon_intel' [23:38, 02:05](1474 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [23:38, 02:13](1470 MB) -PASS -- TEST 'control_c48_intel' [23:37, 01:39](1570 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [23:37, 01:44](690 MB) -PASS -- TEST 'control_c192_intel' [23:38, 02:10](1595 MB) -PASS -- TEST 'control_c384_intel' [23:42, 03:17](1890 MB) -PASS -- TEST 'control_c384gdas_intel' [23:32, 03:56](1065 MB) -PASS -- TEST 'control_stochy_intel' [23:24, 01:32](523 MB) -PASS -- TEST 'control_stochy_restart_intel' [19:45, 01:59](332 MB) -PASS -- TEST 'control_lndp_intel' [23:17, 01:36](526 MB) -PASS -- TEST 'control_iovr4_intel' [22:20, 01:49](518 MB) -PASS -- TEST 'control_iovr5_intel' [22:18, 01:48](521 MB) -PASS -- TEST 'control_p8_intel' [21:36, 02:20](1760 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [21:12, 02:55](1756 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [21:11, 02:27](1759 MB) -PASS -- TEST 'control_restart_p8_intel' [15:09, 02:49](911 MB) -PASS -- TEST 'control_noqr_p8_intel' [19:45, 02:20](1757 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [12:57, 02:54](919 MB) -PASS -- TEST 'control_decomp_p8_intel' [19:08, 02:04](1753 MB) -PASS -- TEST 'control_2threads_p8_intel' [17:57, 02:30](1839 MB) -PASS -- TEST 'control_p8_lndp_intel' [17:51, 02:04](1762 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [17:50, 02:38](1812 MB) -PASS -- TEST 'control_p8_mynn_intel' [17:45, 02:46](1766 MB) -PASS -- TEST 'merra2_thompson_intel' [17:41, 02:40](1761 MB) -PASS -- TEST 'regional_control_intel' [17:38, 02:04](842 MB) -PASS -- TEST 'regional_restart_intel' [09:50, 01:15](835 MB) -PASS -- TEST 'regional_decomp_intel' [17:22, 01:46](836 MB) -PASS -- TEST 'regional_2threads_intel' [16:56, 01:54](891 MB) -PASS -- TEST 'regional_noquilt_intel' [16:13, 01:21](1170 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [15:52, 02:20](841 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [15:33, 02:05](841 MB) -PASS -- TEST 'regional_wofs_intel' [14:44, 01:20](1566 MB) - -PASS -- COMPILE 'rrfs_intel' [10:25, 08:26] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [14:37, 03:08](906 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [14:34, 02:07](1048 MB) -PASS -- TEST 'rap_decomp_intel' [13:45, 02:18](901 MB) -PASS -- TEST 'rap_2threads_intel' [11:33, 02:09](988 MB) -PASS -- TEST 'rap_restart_intel' [03:48, 02:16](774 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:15, 02:58](899 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:13, 02:45](898 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [00:46, 02:44](770 MB) -PASS -- TEST 'hrrr_control_intel' [10:59, 02:22](899 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [10:59, 03:11](900 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [10:41, 02:27](976 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:22, 02:02](728 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:30, 03:09](892 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:45, 01:47](1855 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:35, 01:58](1848 MB) - -PASS -- COMPILE 'csawmg_intel' [09:23, 07:52] -PASS -- TEST 'control_csawmg_intel' [24:40, 01:41](857 MB) -PASS -- TEST 'control_ras_intel' [24:40, 01:52](555 MB) - -PASS -- COMPILE 'wam_intel' [09:26, 07:55] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [09:29, 01:23](1552 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:26, 08:14] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [09:29, 02:52](1752 MB) -PASS -- TEST 'regional_control_faster_intel' [09:25, 02:00](839 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:26, 07:38] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:18, 01:40](1497 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:17, 01:45](1489 MB) -PASS -- TEST 'control_stochy_debug_intel' [08:53, 01:40](697 MB) -PASS -- TEST 'control_lndp_debug_intel' [07:44, 02:02](695 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:42, 02:17](996 MB) -PASS -- TEST 'control_ras_debug_intel' [07:15, 01:59](703 MB) -PASS -- TEST 'control_diag_debug_intel' [07:13, 02:10](1557 MB) -PASS -- TEST 'control_debug_p8_intel' [05:46, 02:14](1783 MB) -PASS -- TEST 'regional_debug_intel' [05:20, 01:16](874 MB) -PASS -- TEST 'rap_control_debug_intel' [04:58, 01:41](1076 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:22, 01:47](1074 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:14, 01:36](1077 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:11, 01:37](1074 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [03:29, 01:42](1074 MB) -PASS -- TEST 'rap_diag_debug_intel' [03:29, 01:31](1161 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [03:23, 01:38](1075 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [02:56, 01:33](1076 MB) -PASS -- TEST 'rap_lndp_debug_intel' [02:37, 01:36](1080 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [02:22, 01:40](1078 MB) -PASS -- TEST 'rap_noah_debug_intel' [02:15, 01:43](1073 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [01:42, 01:42](1071 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [01:39, 01:32](1071 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [01:25, 01:43](1068 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [01:02, 01:57](1077 MB) -PASS -- TEST 'rap_flake_debug_intel' [00:46, 01:39](1081 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [00:03, 02:54](1079 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:20, 04:23] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [26:39, 02:18](1580 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:26, 07:41] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [59:53, 02:17](911 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [59:50, 03:16](777 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [59:46, 03:09](780 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [58:52, 02:45](837 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [58:52, 03:05](828 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [57:21, 03:18](777 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [50:20, 02:31](675 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [53:00, 01:20](660 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:22, 07:52] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [57:19, 02:05](988 MB) -PASS -- TEST 'conus13km_2threads_intel' [52:13, 01:54](989 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [52:09, 01:41](860 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:23, 07:55] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [56:43, 02:23](805 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 04:33] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [56:42, 01:52](956 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [56:40, 01:54](953 MB) -PASS -- TEST 'conus13km_debug_intel' [55:53, 01:39](1040 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [55:48, 01:27](711 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [55:48, 02:02](1042 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [55:25, 01:39](1108 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:21, 04:21] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [55:23, 01:56](978 MB) - -PASS -- COMPILE 'hafsw_intel' [11:27, 09:30] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [55:11, 02:44](598 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [54:50, 01:26](941 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [54:47, 02:24](644 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [54:11, 03:17](672 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [53:58, 03:07](696 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [53:38, 01:59](374 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [53:11, 03:18](386 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [52:45, 02:30](327 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [52:33, 03:15](366 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [52:24, 02:26](407 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [52:08, 01:51](399 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [51:51, 01:46](469 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [51:04, 01:25](329 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:20, 04:53] ( 1447 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [50:23, 02:05](498 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [10:25, 09:07] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [50:21, 02:44](515 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [49:55, 02:25](701 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:26, 09:16] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [49:28, 03:06](702 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:25, 08:39] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [49:10, 02:57](638 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [49:05, 02:53](616 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [48:16, 01:32](880 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:31, 10:12] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [48:16, 02:41](1814 MB) - -PASS -- COMPILE 'atml_intel' [10:31, 08:53] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [07:25, 05:26] ( 866 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [10:30, 08:17] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [47:39, 02:19](3012 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [47:24, 02:44](2900 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [47:22, 02:43](2906 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:25, 04:27] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [46:37, 02:41](4377 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:27, 11:09] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [35:24, 02:23](3088 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:29, 11:57] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [34:22, 03:04](1809 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [14:51, 02:35](1842 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:57, 03:15](971 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [34:23, 02:20](1791 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:28, 11:32] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [34:23, 02:13](1803 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:22, 05:12] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [40:30, 03:08](1830 MB) + +PASS -- COMPILE 's2swa_intel' [13:28, 11:17] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [34:23, 02:42](3118 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [34:23, 03:00](3113 MB) +PASS -- TEST 'cpld_restart_p8_intel' [22:56, 02:12](3045 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [34:23, 02:40](3139 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [22:56, 02:10](3060 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [34:23, 02:28](3354 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [34:23, 01:58](3107 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [34:24, 02:21](3060 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [34:23, 02:59](3120 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [34:32, 05:26](4109 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:33, 04:52](4253 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [34:23, 02:56](3096 MB) + +PASS -- COMPILE 's2sw_intel' [12:28, 10:53] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [35:24, 01:43](1824 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [35:24, 02:48](1881 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:27, 10:18] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [35:24, 01:58](1871 MB) + +PASS -- COMPILE 's2s_intel' [11:28, 10:10] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [36:22, 01:51](2862 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [36:22, 02:27](2866 MB) +PASS -- TEST 'cpld_restart_c48_intel' [31:25, 02:18](2281 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:32, 16:05] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [30:20, 02:59](3124 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:28, 11:44] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [34:23, 02:03](1823 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:55, 02:31](1002 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [15:08, 02:39](1799 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:21, 05:11] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:10, 01:46](1853 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:24, 08:44] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [25:58, 01:23](566 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [25:58, 02:15](1462 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [25:58, 02:09](1467 MB) +PASS -- TEST 'control_latlon_intel' [25:58, 02:09](1468 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [25:58, 02:19](1468 MB) +PASS -- TEST 'control_c48_intel' [25:57, 02:31](1562 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [25:57, 01:45](693 MB) +PASS -- TEST 'control_c192_intel' [25:58, 02:04](1588 MB) +PASS -- TEST 'control_c384_intel' [26:02, 02:19](1873 MB) +PASS -- TEST 'control_c384gdas_intel' [24:57, 02:53](1065 MB) +PASS -- TEST 'control_stochy_intel' [24:42, 01:28](522 MB) +PASS -- TEST 'control_stochy_restart_intel' [21:11, 02:03](328 MB) +PASS -- TEST 'control_lndp_intel' [23:57, 01:31](521 MB) +PASS -- TEST 'control_iovr4_intel' [23:47, 01:44](517 MB) +PASS -- TEST 'control_iovr5_intel' [23:47, 01:43](517 MB) +PASS -- TEST 'control_p8_intel' [22:39, 02:25](1756 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [22:39, 02:57](1751 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [20:29, 02:24](1756 MB) +PASS -- TEST 'control_restart_p8_intel' [16:05, 02:58](908 MB) +PASS -- TEST 'control_noqr_p8_intel' [20:29, 02:23](1752 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [13:57, 02:02](918 MB) +PASS -- TEST 'control_decomp_p8_intel' [20:29, 02:20](1753 MB) +PASS -- TEST 'control_2threads_p8_intel' [20:11, 02:40](1844 MB) +PASS -- TEST 'control_p8_lndp_intel' [20:07, 02:11](1760 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [20:06, 02:05](1809 MB) +PASS -- TEST 'control_p8_mynn_intel' [19:59, 02:47](1764 MB) +PASS -- TEST 'merra2_thompson_intel' [19:19, 03:11](1765 MB) +PASS -- TEST 'regional_control_intel' [19:16, 02:11](835 MB) +PASS -- TEST 'regional_restart_intel' [11:24, 01:20](836 MB) +PASS -- TEST 'regional_decomp_intel' [18:48, 01:56](821 MB) +PASS -- TEST 'regional_2threads_intel' [18:14, 02:10](893 MB) +PASS -- TEST 'regional_noquilt_intel' [17:42, 01:19](1168 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [17:06, 01:31](838 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [16:14, 01:13](843 MB) +PASS -- TEST 'regional_wofs_intel' [16:03, 02:21](1568 MB) + +PASS -- COMPILE 'rrfs_intel' [10:23, 08:17] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [15:07, 02:57](905 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:58, 02:09](1051 MB) +PASS -- TEST 'rap_decomp_intel' [13:40, 02:36](906 MB) +PASS -- TEST 'rap_2threads_intel' [13:35, 02:16](986 MB) +PASS -- TEST 'rap_restart_intel' [04:41, 03:17](772 MB) +PASS -- TEST 'rap_sfcdiff_intel' [13:31, 02:53](900 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:10, 02:13](901 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [02:24, 02:43](772 MB) +PASS -- TEST 'hrrr_control_intel' [12:42, 02:33](900 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [12:20, 02:17](901 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [12:18, 02:47](973 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:39, 02:03](728 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:08, 03:04](896 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:02, 01:53](1858 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:55, 02:22](1841 MB) + +PASS -- COMPILE 'csawmg_intel' [09:22, 07:53] +PASS -- TEST 'control_csawmg_intel' [26:01, 01:32](856 MB) +PASS -- TEST 'control_ras_intel' [26:01, 01:55](554 MB) + +PASS -- COMPILE 'wam_intel' [09:22, 07:53] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [26:01, 01:36](1553 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:24, 08:08] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [11:12, 03:01](1759 MB) +PASS -- TEST 'regional_control_faster_intel' [11:10, 01:22](836 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:24, 07:44] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [11:03, 01:47](1494 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [11:01, 01:53](1502 MB) +PASS -- TEST 'control_stochy_debug_intel' [10:58, 01:45](695 MB) +PASS -- TEST 'control_lndp_debug_intel' [10:33, 02:01](697 MB) +PASS -- TEST 'control_csawmg_debug_intel' [10:08, 02:26](997 MB) +PASS -- TEST 'control_ras_debug_intel' [09:29, 01:32](704 MB) +PASS -- TEST 'control_diag_debug_intel' [09:05, 02:24](1554 MB) +PASS -- TEST 'control_debug_p8_intel' [08:24, 02:13](1789 MB) +PASS -- TEST 'regional_debug_intel' [06:42, 01:59](885 MB) +PASS -- TEST 'rap_control_debug_intel' [06:19, 01:30](1076 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:15, 01:42](1068 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:08, 01:37](1072 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:48, 01:39](1071 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:48, 01:39](1077 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:47, 01:40](1161 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:29, 01:33](1077 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:06, 01:30](1078 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:46, 01:38](1080 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:28, 02:17](1082 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:24, 01:23](1069 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [03:42, 02:12](1073 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [03:37, 01:59](1072 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [02:57, 01:19](1071 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [02:39, 01:44](1077 MB) +PASS -- TEST 'rap_flake_debug_intel' [02:26, 01:40](1076 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [02:22, 02:45](1082 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:20, 04:24] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [28:02, 02:12](1582 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:24, 07:45] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [02:10, 02:18](908 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [01:47, 02:10](780 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [01:34, 03:26](778 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [01:11, 02:20](837 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [00:58, 03:03](826 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [00:25, 03:07](775 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [53:29, 02:57](676 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [54:42, 01:55](656 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:24, 07:51] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [00:09, 01:55](989 MB) +PASS -- TEST 'conus13km_2threads_intel' [54:13, 01:57](989 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [53:58, 01:58](862 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:23, 07:52] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [58:51, 02:09](803 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:30] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [58:43, 01:43](954 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [58:39, 02:07](951 MB) +PASS -- TEST 'conus13km_debug_intel' [58:17, 02:22](1041 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [58:16, 02:09](709 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [58:04, 01:53](1042 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [58:00, 01:34](1105 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:24] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [57:37, 01:25](979 MB) + +PASS -- COMPILE 'hafsw_intel' [10:32, 09:11] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [57:35, 02:43](599 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [57:09, 02:16](943 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [57:06, 02:38](644 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [56:56, 03:11](671 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [56:01, 03:09](691 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [55:29, 02:35](373 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [55:11, 02:41](390 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [55:05, 02:06](521 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [54:54, 03:50](364 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [54:43, 02:02](402 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [53:56, 01:50](398 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [53:38, 02:15](473 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [53:36, 01:47](306 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:20, 04:50] ( 1447 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [53:26, 02:36](496 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [10:36, 09:07] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [53:14, 02:05](514 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [51:58, 02:45](697 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:38, 09:26] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [50:15, 02:13](702 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:35, 08:45] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [49:59, 02:59](639 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [49:47, 02:27](616 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [49:11, 02:01](878 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:37, 10:00] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [48:56, 01:50](1814 MB) + +PASS -- COMPILE 'atml_intel' [10:23, 08:46] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [07:20, 05:18] ( 866 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [09:37, 08:10] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [48:56, 02:38](3013 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [48:55, 02:56](2894 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [48:27, 02:53](2878 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:20, 04:25] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [48:18, 02:24](4377 MB) SYNOPSIS: -Starting Date/Time: 20240920 13:13:13 -Ending Date/Time: 20240920 14:42:02 -Total Time: 01h:29m:26s +Starting Date/Time: 20240926 17:11:54 +Ending Date/Time: 20240926 18:40:15 +Total Time: 01h:28m:50s Compiles Completed: 33/33 Tests Completed: 156/156 diff --git a/tests/rt.sh b/tests/rt.sh index fd8976c10c..1b3b9fa5b2 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) 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..e56321cb3d 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -213,7 +213,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 +599,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..75808abad7 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 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/regional_debug b/tests/tests/regional_debug index 46ff346b68..f4f6326b90 100644 --- a/tests/tests/regional_debug +++ b/tests/tests/regional_debug @@ -40,3 +40,7 @@ NTILES=1 if [[ " hera orion hercules jet " =~ " ${MACHINE_ID} " ]] ; then ZSTANDARD_LEVEL=5 fi + +if [[ $MACHINE_ID = gaea && $RT_COMPILER = intelllvm ]]; then + WLCLK=50 +fi From e3750c28119deec4b133cacca81d49ba62b2670c Mon Sep 17 00:00:00 2001 From: Nicholas Szapiro <149816583+NickSzapiro-NOAA@users.noreply.github.com> Date: Sat, 5 Oct 2024 13:45:14 -0400 Subject: [PATCH 02/24] Add forecast day output for CICE via timestep stream (#2437) * UFSWM - Add forecast day output for CICE via timestep stream --- tests/bl_date.conf | 2 +- tests/default_vars.sh | 2 +- tests/logs/OpnReqTests_control_p8_hera.log | 62 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 96 ++- .../OpnReqTests_regional_control_hera.log | 38 +- tests/logs/RegressionTests_acorn.log | 522 ++++++------ tests/logs/RegressionTests_gaea.log | 561 ++++++------- tests/logs/RegressionTests_hera.log | 735 ++++++++--------- tests/logs/RegressionTests_hercules.log | 754 +++++++++--------- tests/logs/RegressionTests_jet.log | 509 ++++++------ tests/logs/RegressionTests_orion.log | 631 +++++++-------- tests/logs/RegressionTests_wcoss2.log | 458 +++++------ tests/parm/ice_in.IN | 130 +-- tests/test_changes.list | 4 + tests/tests/cpld_control_gfsv17 | 4 + tests/tests/cpld_control_gfsv17_iau | 4 + tests/tests/cpld_mpi_gfsv17 | 5 +- 17 files changed, 2271 insertions(+), 2246 deletions(-) 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/default_vars.sh b/tests/default_vars.sh index 9a8eb118ed..5b8b2ef8d5 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/ diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 54e7e1fe2c..8157a7fbe4 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Tue Sep 24 13:52:59 UTC 2024 +Wed Oct 2 22:41:48 UTC 2024 Start Operation Requirement Test -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_1669225/bit_base_bit_base +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_2964678/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 = 300.133244 - 0: The maximum resident set size (KB) = 1442744 + 0: The total amount of wall time = 299.526615 + 0: The maximum resident set size (KB) = 1441552 Test bit_base PASS -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_1669225/dbg_base_dbg_base +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_2964678/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 = 1004.154973 - 0: The maximum resident set size (KB) = 1435480 + 0: The total amount of wall time = 913.091192 + 0: The maximum resident set size (KB) = 1434836 Test dbg_base PASS -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_1669225/dcp_dcp +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_2964678/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.107180 - 0: The maximum resident set size (KB) = 1418248 + 0: The total amount of wall time = 271.228237 + 0: The maximum resident set size (KB) = 1420208 Test dcp PASS -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_1669225/mpi_mpi +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_2964678/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.874828 - 0: The maximum resident set size (KB) = 1418740 + 0: The total amount of wall time = 270.711616 + 0: The maximum resident set size (KB) = 1432888 Test mpi PASS -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_1669225/rst_rst +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_2964678/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 = 282.223804 - 0: The maximum resident set size (KB) = 1416640 + 0: The total amount of wall time = 271.801810 + 0: The maximum resident set size (KB) = 1408036 Test rst PASS -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_1669225/std_base_std_base +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_2964678/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 = 278.992660 - 0: The maximum resident set size (KB) = 1428428 + 0: The total amount of wall time = 278.448169 + 0: The maximum resident set size (KB) = 1417104 Test std_base PASS -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_1669225/thr_thr +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_2964678/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.863691 - 0: The maximum resident set size (KB) = 1420068 + 0: The total amount of wall time = 274.922346 + 0: The maximum resident set size (KB) = 1427988 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Tue Sep 24 15:08:30 UTC 2024 -Elapsed time: 01h:15m:58s. Have a nice day! +Wed Oct 2 23:56:16 UTC 2024 +Elapsed time: 01h:14m:28s. 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 603c36d977..bbc2c6f136 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,79 @@ -Tue Sep 24 19:26:13 UTC 2024 +Wed Oct 2 21:11:44 UTC 2024 Start Operation Requirement Test -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_2646490/rst_rst +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_1326267/dbg_base_dbg_base +Checking test dbg_base results .... +Moving baseline dbg_base files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + 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 = 2302.748756 + 0: The maximum resident set size (KB) = 1502800 + +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_1326267/rst_rst Checking test rst results .... Comparing sfcf021.tile1.nc .....USING NCCMP......OK Comparing sfcf021.tile2.nc .....USING NCCMP......OK @@ -65,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 = 731.776523 - 0: The maximum resident set size (KB) = 1505896 + 0: The total amount of wall time = 715.673783 + 0: The maximum resident set size (KB) = 1506992 Test rst PASS -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_2646490/std_base_std_base +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_1326267/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf021.tile1.nc .........OK @@ -135,13 +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.589581 - 0: The maximum resident set size (KB) = 1510092 + 0: The total amount of wall time = 750.553345 + 0: The maximum resident set size (KB) = 1504388 Test std_base PASS -FAILED TESTS: -Test dbg_base failed in run_test failed -OPERATION REQUIREMENT TEST FAILED -Tue Sep 24 22:20:42 UTC 2024 -Elapsed time: 02h:54m:29s. Have a nice day! +OPERATION REQUIREMENT TEST WAS SUCCESSFUL +Wed Oct 2 22:41:48 UTC 2024 +Elapsed time: 01h:30m:06s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 4126d5fd68..2f0bb6fb97 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Tue Sep 24 16:39:41 UTC 2024 +Wed Oct 2 18:39:04 UTC 2024 Start Operation Requirement Test -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_3755633/bit_base_bit_base +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_4004824/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 = 1445.966550 - 0: The maximum resident set size (KB) = 766148 + 0: The total amount of wall time = 1391.385220 + 0: The maximum resident set size (KB) = 770368 Test bit_base PASS -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_3755633/dcp_dcp +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_4004824/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 = 2197.045041 - 0: The maximum resident set size (KB) = 741516 + 0: The total amount of wall time = 2197.813777 + 0: The maximum resident set size (KB) = 714084 Test dcp PASS -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_3755633/std_base_std_base +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_4004824/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 = 2255.241997 - 0: The maximum resident set size (KB) = 732228 + 0: The total amount of wall time = 2180.905806 + 0: The maximum resident set size (KB) = 747696 Test std_base PASS -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_3755633/thr_thr +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_4004824/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 = 2506.849856 - 0: The maximum resident set size (KB) = 700540 + 0: The total amount of wall time = 2272.924862 + 0: The maximum resident set size (KB) = 711932 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Tue Sep 24 19:21:01 UTC 2024 -Elapsed time: 02h:41m:20s. Have a nice day! +Wed Oct 2 21:11:42 UTC 2024 +Elapsed time: 02h:32m:39s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 5aff31b620..4490cb6414 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,22 +1,22 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -68d3b0fab6b1da5c139a03ba5190abdf5d3b2adf +12373b99074bcffc16efda0d1491bdc6a10e9914 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) - bf66bf7abdd3c057f4ee85f2655a33b7f4459676 CICE-interface/CICE (remotes/origin/sync_cice) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) 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) - f188fe2afb3dd04f460a36ddda5e18e17c68f422 FV3 (remotes/origin/support_intelllvm) - b947391ed4d23ffa15f5c854e7d5c4849abefc40 FV3/atmos_cubed_sphere (201912_public_release-414-gb947391) + 1aba87cb308fb52912e7fe6dd6b53d0ce7077554 FV3 (heads/develop) + 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 77d28126e3dbb19ad9714d3703764202ebce82ec FV3/ccpp/physics (remotes/origin/support_intelllvm) + 5a363134a77535f35594e56b58ba1e6141a23d2b FV3/ccpp/physics (EP4-884-g5a363134) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 55ec82b08ca7d914ace595d4eecd54ae640ade31 FV3/upp (upp_gfsv16_release.v1.0.8-385-g55ec82b) + 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) @@ -25,7 +25,7 @@ Submodule hashes used in testing: 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) - 6810b2d8dbceea2b5e47b3f1b59b5461aded3827 WW3 (remotes/origin/support_intelllvm) + 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 +36,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_2713788 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241001 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2089821 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:24, 09:38] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [33:36, 02:39](3343 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:26, 11:26] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [31:34, 03:42](2145 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [11:07, 03:27](2174 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:17, 03:50](1311 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [31:35, 02:58](2256 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:26, 11:27] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [31:34, 01:59](2144 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [24:38, 22:29] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [19:37, 04:05](2227 MB) - -PASS -- COMPILE 's2swa_intel' [21:35, 20:12] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [23:25, 02:29](3375 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [23:25, 02:40](3375 MB) -PASS -- TEST 'cpld_restart_p8_intel' [00:53, 03:08](3287 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [23:25, 02:28](3391 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [00:53, 02:47](3314 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [23:25, 03:01](3657 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [23:25, 03:08](3363 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [23:26, 01:59](3499 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [23:25, 03:25](3353 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [23:25, 03:04](3298 MB) - -PASS -- COMPILE 's2sw_intel' [37:52, 36:00] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [05:24, 01:57](2076 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:17, 03:01](2071 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:25, 11:08] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [32:35, 03:10](2071 MB) - -PASS -- COMPILE 's2s_intel' [11:25, 09:45] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [33:35, 01:52](2877 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [33:35, 02:33](2891 MB) -PASS -- TEST 'cpld_restart_c48_intel' [28:03, 02:04](2304 MB) - -PASS -- COMPILE 's2swa_faster_intel' [25:41, 24:15] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [18:33, 02:43](3358 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [23:38, 21:57] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:36, 03:00](2144 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [45:30, 02:27](1322 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [44:38, 02:07](2261 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:21, 05:24] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:15, 01:49](2292 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:25, 08:25] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [23:11, 01:23](703 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [23:11, 01:49](1599 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [23:11, 01:47](1607 MB) -PASS -- TEST 'control_latlon_intel' [23:11, 02:07](1591 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [23:11, 01:54](1587 MB) -PASS -- TEST 'control_c48_intel' [23:10, 02:07](1582 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [23:10, 01:41](705 MB) -PASS -- TEST 'control_c192_intel' [23:11, 02:20](1855 MB) -PASS -- TEST 'control_c384_intel' [23:15, 02:40](3248 MB) -PASS -- TEST 'control_c384gdas_intel' [23:15, 03:51](2442 MB) -PASS -- TEST 'control_stochy_intel' [23:11, 01:21](656 MB) -PASS -- TEST 'control_stochy_restart_intel' [18:33, 01:29](462 MB) -PASS -- TEST 'control_lndp_intel' [23:11, 01:29](637 MB) -PASS -- TEST 'control_iovr4_intel' [23:11, 01:35](633 MB) -PASS -- TEST 'control_iovr5_intel' [23:11, 01:36](638 MB) -PASS -- TEST 'control_p8_intel' [23:11, 02:05](1890 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [23:11, 03:00](1877 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [23:11, 02:55](1891 MB) -PASS -- TEST 'control_restart_p8_intel' [59:53, 02:43](1005 MB) -PASS -- TEST 'control_noqr_p8_intel' [23:11, 03:15](1877 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [00:10, 02:49](1053 MB) -PASS -- TEST 'control_decomp_p8_intel' [17:31, 03:14](1869 MB) -PASS -- TEST 'control_2threads_p8_intel' [15:13, 02:15](1976 MB) -PASS -- TEST 'control_p8_lndp_intel' [13:20, 01:30](1872 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [13:05, 03:26](1948 MB) -PASS -- TEST 'control_p8_mynn_intel' [09:07, 03:03](1884 MB) -PASS -- TEST 'merra2_thompson_intel' [09:07, 03:26](1877 MB) -PASS -- TEST 'regional_control_intel' [08:51, 01:36](864 MB) -PASS -- TEST 'regional_restart_intel' [52:51, 02:01](855 MB) -PASS -- TEST 'regional_decomp_intel' [03:32, 01:14](859 MB) -PASS -- TEST 'regional_2threads_intel' [03:21, 01:32](1228 MB) -PASS -- TEST 'regional_noquilt_intel' [02:37, 01:46](1182 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [02:09, 01:50](855 MB) -PASS -- TEST 'regional_wofs_intel' [02:08, 02:03](1580 MB) - -PASS -- COMPILE 'rrfs_intel' [20:35, 19:25] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [01:49, 03:34](1040 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [00:45, 02:26](1731 MB) -PASS -- TEST 'rap_decomp_intel' [00:32, 02:50](1045 MB) -PASS -- TEST 'rap_2threads_intel' [00:24, 02:28](1121 MB) -PASS -- TEST 'rap_restart_intel' [47:46, 03:45](858 MB) -PASS -- TEST 'rap_sfcdiff_intel' [59:06, 03:39](1038 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [57:25, 03:28](1024 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [43:32, 03:59](857 MB) -PASS -- TEST 'hrrr_control_intel' [57:25, 03:40](1017 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [56:47, 03:11](1015 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [55:37, 03:51](1261 MB) -PASS -- TEST 'hrrr_control_restart_intel' [45:57, 01:30](825 MB) -PASS -- TEST 'rrfs_v1beta_intel' [55:29, 03:46](1017 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [55:27, 01:53](1999 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [55:12, 02:16](1970 MB) - -PASS -- COMPILE 'csawmg_intel' [18:33, 16:23] -PASS -- TEST 'control_csawmg_intel' [55:08, 02:19](974 MB) -PASS -- TEST 'control_ras_intel' [53:51, 01:24](674 MB) - -PASS -- COMPILE 'wam_intel' [18:33, 16:53] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [53:15, 01:58](1672 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [11:24, 09:44] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [52:25, 03:06](1879 MB) -PASS -- TEST 'regional_control_faster_intel' [51:08, 01:31](854 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [14:27, 12:30] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [50:40, 01:24](1620 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [50:40, 02:05](1623 MB) -PASS -- TEST 'control_stochy_debug_intel' [50:16, 01:33](846 MB) -PASS -- TEST 'control_lndp_debug_intel' [49:58, 01:29](849 MB) -PASS -- TEST 'control_csawmg_debug_intel' [48:37, 01:25](1130 MB) -PASS -- TEST 'control_ras_debug_intel' [48:37, 02:08](834 MB) -PASS -- TEST 'control_diag_debug_intel' [47:46, 01:46](1711 MB) -PASS -- TEST 'control_debug_p8_intel' [47:46, 01:54](1924 MB) -PASS -- TEST 'regional_debug_intel' [46:18, 01:11](922 MB) -PASS -- TEST 'rap_control_debug_intel' [45:57, 01:30](1231 MB) -PASS -- TEST 'hrrr_control_debug_intel' [45:45, 01:58](1200 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [44:05, 01:22](1229 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [43:45, 01:24](1210 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [43:32, 02:05](1205 MB) -PASS -- TEST 'rap_diag_debug_intel' [43:27, 01:59](1290 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [42:35, 01:56](1212 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [42:12, 02:08](1213 MB) -PASS -- TEST 'rap_lndp_debug_intel' [42:08, 01:18](1228 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [42:06, 01:37](1205 MB) -PASS -- TEST 'rap_noah_debug_intel' [42:03, 01:43](1203 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [41:55, 01:45](1207 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [41:47, 01:32](1206 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [41:46, 01:27](1200 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [41:32, 01:22](1226 MB) -PASS -- TEST 'rap_flake_debug_intel' [41:22, 01:18](1205 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [40:49, 03:44](1230 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:20, 05:24] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [40:39, 02:10](1711 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [47:04, 07:46] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [34:18, 01:36](1605 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [34:17, 03:00](896 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [34:17, 03:20](897 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [34:17, 03:51](975 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [34:18, 04:08](1120 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [34:17, 04:06](890 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [21:44, 03:22](805 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [26:06, 02:14](777 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [47:02, 07:50] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [33:20, 01:32](1102 MB) -PASS -- TEST 'conus13km_2threads_intel' [26:08, 01:54](1461 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [26:07, 01:35](941 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [46:03, 07:48] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [33:16, 01:42](944 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [52:08, 10:55] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [23:03, 01:44](1084 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [22:52, 01:20](1081 MB) -PASS -- TEST 'conus13km_debug_intel' [22:10, 01:44](1172 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [22:08, 01:41](844 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [22:01, 01:56](1536 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:54, 01:30](1263 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [51:08, 10:19] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [21:32, 01:40](1112 MB) - -PASS -- COMPILE 'hafsw_intel' [48:05, 08:53] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [24:56, 02:30](1799 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [24:56, 01:43](2142 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [24:54, 02:35](1265 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [24:54, 02:58](1301 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:55, 03:01](1455 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [24:54, 02:02](1000 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [24:55, 03:01](1308 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [24:55, 02:50](1189 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [24:58, 04:12](2159 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [24:54, 02:06](1032 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [24:54, 02:23](1034 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [24:56, 02:17](1661 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [24:55, 01:37](1219 MB) -PASS -- TEST 'gnv1_nested_intel' [24:53, 04:03](1955 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [44:00, 05:18] ( 1447 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [29:02, 02:31](1771 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [51:07, 12:41] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [19:30, 02:07](1711 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:29, 02:37](1889 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [45:00, 08:52] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [23:59, 02:40](1890 MB) - -PASS -- COMPILE 'hafs_all_intel' [48:03, 14:02] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [18:36, 02:41](1263 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:25, 02:55](1246 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:40, 01:24](905 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:25, 08:58] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [23:50, 01:21](766 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [16:23, 01:57](742 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [23:50, 02:08](646 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [23:50, 01:28](646 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [23:50, 01:27](645 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [23:50, 01:48](752 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [21:12, 01:50](764 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [14:20, 01:53](648 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [14:07, 01:42](863 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:59, 01:48](846 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [12:17, 02:03](752 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [11:43, 01:38](2031 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [11:28, 01:22](2030 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [18:31, 12:50] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [11:05, 01:33](753 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [10:24, 03:50] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [10:34, 01:43](668 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [09:56, 01:14](813 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:21, 02:03](812 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:29, 13:24] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:57, 02:30](2015 MB) - -PASS -- COMPILE 'atml_intel' [10:23, 08:28] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:07, 03:23](2258 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:39, 03:53](2256 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [56:12, 02:10](1387 MB) - -PASS -- COMPILE 'atml_debug_intel' [30:43, 05:03] ( 866 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [53:13, 03:08](2281 MB) - -PASS -- COMPILE 'atmw_intel' [34:48, 08:22] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [49:02, 03:30](1981 MB) - -PASS -- COMPILE 'atmaero_intel' [33:47, 08:11] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [49:53, 02:55](3247 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [49:53, 03:09](3022 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [49:53, 03:07](3035 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [30:43, 04:28] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [52:58, 02:48](4785 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:24, 10:02] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [23:38, 02:39](3190 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:25, 11:07] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:36, 03:38](1903 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [02:20, 03:08](1953 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [00:20, 03:34](1079 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:37, 03:26](1885 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:37, 22:30] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [10:24, 02:00](1905 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:29, 14:44] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [18:33, 04:00](1948 MB) + +PASS -- COMPILE 's2swa_intel' [24:38, 22:45] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [10:23, 02:51](3227 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:23, 03:07](3225 MB) +PASS -- TEST 'cpld_restart_p8_intel' [58:20, 02:55](3154 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:23, 02:46](3243 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [51:55, 03:02](3170 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:23, 03:31](3459 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:23, 02:52](3217 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:24, 03:06](3167 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:23, 02:48](3227 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:23, 03:03](3203 MB) + +PASS -- COMPILE 's2sw_intel' [19:33, 18:22] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:28, 02:56](1917 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:28, 03:07](1979 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:32, 15:41] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [17:29, 03:17](1979 MB) + +PASS -- COMPILE 's2s_intel' [14:29, 12:42] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [20:31, 01:56](2880 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [20:31, 02:37](2889 MB) +PASS -- TEST 'cpld_restart_c48_intel' [15:05, 02:06](2298 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:32, 15:36] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [17:29, 03:04](3225 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [27:42, 25:37] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [07:19, 02:38](1923 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [44:32, 02:35](1100 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [44:27, 02:37](1906 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:26, 11:58] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [10:11, 02:15](1966 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [19:34, 18:17] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [00:05, 01:37](662 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [58:20, 01:47](1561 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [58:20, 02:14](1563 MB) +PASS -- TEST 'control_latlon_intel' [56:24, 02:14](1565 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [56:24, 01:52](1565 MB) +PASS -- TEST 'control_c48_intel' [55:22, 02:18](1580 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [54:54, 01:54](702 MB) +PASS -- TEST 'control_c192_intel' [54:01, 01:57](1688 MB) +PASS -- TEST 'control_c384_intel' [53:23, 03:06](1970 MB) +PASS -- TEST 'control_c384gdas_intel' [53:23, 03:55](1175 MB) +PASS -- TEST 'control_stochy_intel' [52:52, 02:01](616 MB) +PASS -- TEST 'control_stochy_restart_intel' [44:15, 02:04](422 MB) +PASS -- TEST 'control_lndp_intel' [52:45, 01:55](615 MB) +PASS -- TEST 'control_iovr4_intel' [52:03, 01:40](610 MB) +PASS -- TEST 'control_iovr5_intel' [51:40, 01:52](610 MB) +PASS -- TEST 'control_p8_intel' [50:52, 02:53](1850 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [50:14, 02:46](1848 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [50:13, 03:50](1851 MB) +PASS -- TEST 'control_restart_p8_intel' [39:31, 03:05](1004 MB) +PASS -- TEST 'control_noqr_p8_intel' [50:12, 02:47](1847 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [37:20, 02:50](1011 MB) +PASS -- TEST 'control_decomp_p8_intel' [49:51, 03:04](1844 MB) +PASS -- TEST 'control_2threads_p8_intel' [49:43, 03:18](1930 MB) +PASS -- TEST 'control_p8_lndp_intel' [48:53, 02:05](1850 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [48:26, 02:43](1903 MB) +PASS -- TEST 'control_p8_mynn_intel' [48:19, 02:59](1866 MB) +PASS -- TEST 'merra2_thompson_intel' [48:14, 03:27](1860 MB) +PASS -- TEST 'regional_control_intel' [47:13, 01:33](864 MB) +PASS -- TEST 'regional_restart_intel' [30:09, 01:41](856 MB) +PASS -- TEST 'regional_decomp_intel' [46:20, 02:04](863 MB) +PASS -- TEST 'regional_2threads_intel' [46:13, 01:37](982 MB) +PASS -- TEST 'regional_noquilt_intel' [44:09, 01:34](1183 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [43:50, 01:55](851 MB) +PASS -- TEST 'regional_wofs_intel' [42:24, 01:15](1583 MB) + +PASS -- COMPILE 'rrfs_intel' [19:33, 17:27] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [42:02, 03:45](1002 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [41:56, 01:53](1136 MB) +PASS -- TEST 'rap_decomp_intel' [39:48, 03:19](998 MB) +PASS -- TEST 'rap_2threads_intel' [38:59, 03:13](1083 MB) +PASS -- TEST 'rap_restart_intel' [27:25, 03:48](881 MB) +PASS -- TEST 'rap_sfcdiff_intel' [38:20, 03:28](1000 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [37:43, 03:17](998 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [26:26, 03:55](885 MB) +PASS -- TEST 'hrrr_control_intel' [36:52, 03:48](998 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [36:38, 02:53](995 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [35:39, 04:05](1068 MB) +PASS -- TEST 'hrrr_control_restart_intel' [28:26, 01:48](829 MB) +PASS -- TEST 'rrfs_v1beta_intel' [35:26, 03:03](996 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [35:26, 01:21](1955 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [35:22, 02:11](1945 MB) + +PASS -- COMPILE 'csawmg_intel' [23:37, 21:47] +PASS -- TEST 'control_csawmg_intel' [34:36, 02:06](951 MB) +PASS -- TEST 'control_ras_intel' [34:34, 01:37](653 MB) + +PASS -- COMPILE 'wam_intel' [10:24, 08:49] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [07:05, 02:10](1644 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:28, 13:02] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [34:10, 02:54](1855 MB) +PASS -- TEST 'regional_control_faster_intel' [34:07, 01:32](854 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:26, 09:37] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:02, 01:24](1597 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:02, 02:06](1602 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:02, 01:56](804 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:02, 01:27](805 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:02, 02:16](1110 MB) +PASS -- TEST 'control_ras_debug_intel' [04:02, 01:16](812 MB) +PASS -- TEST 'control_diag_debug_intel' [04:02, 02:03](1664 MB) +PASS -- TEST 'control_debug_p8_intel' [04:02, 02:12](1904 MB) +PASS -- TEST 'regional_debug_intel' [04:01, 02:10](911 MB) +PASS -- TEST 'rap_control_debug_intel' [04:02, 01:20](1194 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:02, 01:40](1181 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:02, 01:48](1188 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:02, 01:31](1188 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:02, 01:53](1186 MB) +PASS -- TEST 'rap_diag_debug_intel' [03:19, 02:01](1272 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [34:03, 01:52](1187 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [33:26, 01:53](1193 MB) +PASS -- TEST 'rap_lndp_debug_intel' [32:50, 01:39](1186 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [32:08, 02:06](1186 MB) +PASS -- TEST 'rap_noah_debug_intel' [31:42, 02:02](1183 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [30:10, 01:21](1189 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [29:51, 02:08](1186 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [29:21, 01:59](1178 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [28:31, 01:59](1187 MB) +PASS -- TEST 'rap_flake_debug_intel' [28:07, 01:50](1187 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [27:36, 03:19](1192 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:23, 08:57] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [27:25, 02:02](1691 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:25, 09:50] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [27:26, 01:38](1010 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [26:58, 03:05](873 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [26:26, 04:52](875 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [24:50, 03:22](939 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [24:03, 03:42](923 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [23:46, 03:25](869 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [15:20, 02:25](781 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [16:07, 02:09](759 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:27, 11:17] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [23:27, 02:07](1076 MB) +PASS -- TEST 'conus13km_2threads_intel' [16:13, 01:19](1059 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [16:12, 01:14](954 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [39:55, 07:54] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [23:14, 01:57](902 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [36:54, 04:23] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [23:12, 01:33](1063 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [22:52, 01:53](1063 MB) +PASS -- TEST 'conus13km_debug_intel' [22:51, 01:52](1153 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [22:35, 01:38](854 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [22:35, 02:03](1144 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [22:32, 01:52](1240 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [51:07, 04:19] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [12:55, 01:51](1088 MB) + +PASS -- COMPILE 'hafsw_intel' [55:15, 08:59] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:49, 02:56](688 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:49, 01:45](1034 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:47, 02:41](736 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [07:47, 02:26](766 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [07:48, 03:22](785 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:47, 02:03](461 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:48, 02:42](482 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [07:48, 02:50](375 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:51, 04:01](470 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:47, 02:05](496 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:47, 01:56](494 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:49, 01:41](558 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:48, 01:23](405 MB) +PASS -- TEST 'gnv1_nested_intel' [07:46, 04:34](1704 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [58:18, 12:18] ( 1447 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [04:45, 01:41](673 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [54:14, 10:18] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [06:46, 02:02](601 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [06:46, 01:47](780 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [54:10, 10:38] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:52, 02:50](785 MB) + +PASS -- COMPILE 'hafs_all_intel' [50:07, 08:20] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:52, 03:10](732 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:52, 03:04](707 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [08:50, 01:27](907 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [57:12, 17:27] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [59:30, 01:51](764 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [52:00, 01:49](754 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [59:30, 01:37](642 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [59:30, 01:40](642 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [59:30, 01:39](652 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [59:30, 01:52](767 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [59:30, 02:07](764 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [59:30, 01:50](646 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [58:10, 02:19](687 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [58:06, 01:55](668 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [57:17, 01:26](765 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [55:55, 01:35](1971 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [54:52, 02:11](2032 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [51:08, 12:45] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:44, 01:23](753 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [22:36, 09:17] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [07:34, 01:14](312 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [07:34, 01:40](450 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [45:40, 01:57](448 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [28:42, 18:05] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [54:16, 02:18](1917 MB) + +PASS -- COMPILE 'atml_intel' [14:28, 12:26] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [54:07, 03:15](1885 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [52:48, 03:00](1883 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [38:18, 02:12](1031 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:21, 07:06] ( 866 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [00:30, 03:36](1929 MB) + +PASS -- COMPILE 'atmw_intel' [16:29, 14:28] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [51:01, 03:01](1879 MB) + +PASS -- COMPILE 'atmaero_intel' [12:25, 10:39] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [52:01, 03:21](3114 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [50:15, 03:02](2997 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [49:29, 03:08](3006 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [11:24, 09:52] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [49:19, 02:12](4477 MB) SYNOPSIS: -Starting Date/Time: 20240927 14:14:41 -Ending Date/Time: 20240927 16:34:56 -Total Time: 02h:20m:42s +Starting Date/Time: 20241004 12:24:39 +Ending Date/Time: 20241004 14:39:40 +Total Time: 02h:15m:27s Compiles Completed: 37/37 Tests Completed: 176/176 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 325f22a95e..5e5b1dabfa 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,22 +1,22 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -7d136e0c38b9444ecb96b52e558bd6ee43f3ca09 +27fcef4059964b9e0da304984293d4bea802d1df 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) - bf66bf7abdd3c057f4ee85f2655a33b7f4459676 CICE-interface/CICE (remotes/origin/sync_cice) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) 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) - f188fe2afb3dd04f460a36ddda5e18e17c68f422 FV3 (remotes/origin/support_intelllvm) - b947391ed4d23ffa15f5c854e7d5c4849abefc40 FV3/atmos_cubed_sphere (201912_public_release-414-gb947391) + 1aba87cb308fb52912e7fe6dd6b53d0ce7077554 FV3 (heads/develop) + 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 77d28126e3dbb19ad9714d3703764202ebce82ec FV3/ccpp/physics (remotes/origin/support_intelllvm) + 5a363134a77535f35594e56b58ba1e6141a23d2b FV3/ccpp/physics (EP4-884-g5a363134) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 55ec82b08ca7d914ace595d4eecd54ae640ade31 FV3/upp (upp_gfsv16_release.v1.0.8-385-g55ec82b) + 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) @@ -25,7 +25,7 @@ Submodule hashes used in testing: 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) - 6810b2d8dbceea2b5e47b3f1b59b5461aded3827 WW3 (remotes/origin/support_intelllvm) + c7004b658b9dae9fc473d4e6511dfc1cf8e6a7bd WW3 (6.07.1-347-gc7004b65) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -37,286 +37,287 @@ 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/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_93375 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_224093 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [22:17, 20:14] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:35, 08:22](3188 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:13, 22:47] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:11, 14:01](1910 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:27, 15:51](1938 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [17:54, 08:28](1070 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:52, 15:12](1879 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [27:13, 25:22] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [16:13, 13:56](1908 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [18:13, 16:08] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:09, 26:05](1934 MB) - -PASS -- COMPILE 's2swa_intel' [24:13, 22:50] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [15:24, 10:12](3211 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:24, 10:07](3208 MB) -PASS -- TEST 'cpld_restart_p8_intel' [18:53, 07:35](3135 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [15:24, 10:25](3234 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [18:53, 07:19](3157 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [13:01, 08:34](3452 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [13:46, 09:55](3208 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:01, 08:44](3156 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:23, 09:59](3210 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [15:57, 10:07](3433 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [20:55, 08:04](3592 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:26, 09:34](4191 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:52, 06:14](4348 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:48, 08:00](3193 MB) - -PASS -- COMPILE 's2sw_intel' [24:13, 22:40] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [11:03, 06:16](1921 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:01, 08:48](1971 MB) - -PASS -- COMPILE 's2swa_debug_intel' [20:16, 18:13] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [19:47, 14:24](3271 MB) - -PASS -- COMPILE 's2sw_debug_intel' [15:15, 13:32] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:15, 09:06](1946 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [22:17, 20:12] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:32, 05:25](1987 MB) - -PASS -- COMPILE 's2s_intel' [23:13, 21:10] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:39, 05:33](2864 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:39, 01:58](2874 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:50, 01:10](2287 MB) - -PASS -- COMPILE 's2swa_faster_intel' [24:13, 22:11] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [22:01, 10:39](3212 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [28:13, 26:21] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:06, 15:17](1926 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:10, 07:19](1098 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:15, 17:46](1906 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [17:12, 15:42] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:14, 27:51](1952 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [19:15, 17:06] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [12:46, 03:51](664 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [15:34, 04:53](1565 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [14:33, 04:41](1564 MB) -PASS -- TEST 'control_latlon_intel' [15:19, 04:39](1572 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [14:32, 04:22](1571 MB) -PASS -- TEST 'control_c48_intel' [18:52, 10:04](1576 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [15:26, 06:40](698 MB) -PASS -- TEST 'control_c192_intel' [17:23, 11:24](1690 MB) -PASS -- TEST 'control_c384_intel' [32:36, 24:06](1958 MB) -PASS -- TEST 'control_c384gdas_intel' [25:27, 14:43](1150 MB) -PASS -- TEST 'control_stochy_intel' [10:31, 02:02](619 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:00, 01:01](425 MB) -PASS -- TEST 'control_lndp_intel' [10:26, 01:53](617 MB) -PASS -- TEST 'control_iovr4_intel' [10:36, 02:38](616 MB) -PASS -- TEST 'control_iovr5_intel' [10:03, 02:41](618 MB) -PASS -- TEST 'control_p8_intel' [10:10, 03:54](1857 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [10:30, 03:33](1858 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [10:09, 04:05](1858 MB) -PASS -- TEST 'control_restart_p8_intel' [06:18, 02:05](1005 MB) -PASS -- TEST 'control_noqr_p8_intel' [10:07, 03:53](1856 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:33, 01:58](1016 MB) -PASS -- TEST 'control_decomp_p8_intel' [10:57, 03:56](1847 MB) -PASS -- TEST 'control_2threads_p8_intel' [09:59, 03:38](1931 MB) -PASS -- TEST 'control_p8_lndp_intel' [11:25, 06:55](1860 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [10:07, 04:19](1906 MB) -PASS -- TEST 'control_p8_mynn_intel' [09:09, 03:27](1864 MB) -PASS -- TEST 'merra2_thompson_intel' [09:06, 03:48](1857 MB) -PASS -- TEST 'regional_control_intel' [09:15, 05:02](856 MB) -PASS -- TEST 'regional_restart_intel' [05:39, 02:35](848 MB) -PASS -- TEST 'regional_decomp_intel' [06:56, 04:51](847 MB) -PASS -- TEST 'regional_2threads_intel' [04:53, 02:54](989 MB) -PASS -- TEST 'regional_noquilt_intel' [08:13, 04:46](1172 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:26, 05:09](856 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:23, 04:46](849 MB) -PASS -- TEST 'regional_wofs_intel' [09:29, 06:24](1572 MB) - -PASS -- COMPILE 'rrfs_intel' [16:12, 14:06] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:55, 06:59](995 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [16:07, 04:06](1130 MB) -PASS -- TEST 'rap_decomp_intel' [14:44, 07:34](996 MB) -PASS -- TEST 'rap_2threads_intel' [12:03, 06:23](1080 MB) -PASS -- TEST 'rap_restart_intel' [06:57, 03:29](866 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:07, 07:04](998 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:07, 07:38](999 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:48, 05:06](865 MB) -PASS -- TEST 'hrrr_control_intel' [14:42, 03:56](994 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [14:45, 03:53](1001 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [14:55, 03:14](1071 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:17, 02:00](822 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:28, 06:53](993 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:09, 08:57](1951 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:09, 08:30](1941 MB) - -PASS -- COMPILE 'csawmg_intel' [15:13, 13:22] -PASS -- TEST 'control_csawmg_intel' [18:30, 07:04](954 MB) -PASS -- TEST 'control_ras_intel' [05:59, 03:26](652 MB) - -PASS -- COMPILE 'wam_intel' [17:15, 15:30] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:38, 12:20](1641 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [17:15, 15:32] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [09:24, 03:49](1855 MB) -PASS -- TEST 'regional_control_faster_intel' [08:18, 04:38](846 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [17:16, 15:07] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [08:03, 03:05](1590 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:46, 03:00](1592 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:53, 03:14](790 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:52, 02:52](788 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:02, 04:41](1094 MB) -PASS -- TEST 'control_ras_debug_intel' [06:22, 02:55](799 MB) -PASS -- TEST 'control_diag_debug_intel' [05:50, 03:04](1653 MB) -PASS -- TEST 'control_debug_p8_intel' [06:18, 03:12](1877 MB) -PASS -- TEST 'regional_debug_intel' [19:16, 16:31](886 MB) -PASS -- TEST 'rap_control_debug_intel' [07:39, 05:03](1173 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:52, 05:09](1169 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:32, 05:11](1170 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:48, 05:29](1170 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:40, 05:24](1173 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:55, 05:49](1263 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:44, 05:44](1172 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:44, 05:41](1174 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:43, 05:50](1174 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:31, 05:45](1174 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:46, 05:22](1170 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:39, 05:29](1174 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:40, 08:42](1172 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [09:04, 05:05](1168 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [10:15, 05:59](1173 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:46, 05:12](1173 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:30, 08:45](1179 MB) - -PASS -- COMPILE 'wam_debug_intel' [13:11, 11:19] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [23:51, 13:20](1678 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:12, 15:14] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:49, 03:40](999 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:37, 05:59](876 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:31, 03:51](871 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:40, 05:24](931 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:29, 02:46](921 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:29, 03:40](872 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [16:11, 04:30](775 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [12:15, 02:04](754 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:14, 14:31] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:51, 02:26](1076 MB) -PASS -- TEST 'conus13km_2threads_intel' [10:46, 00:59](1055 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [12:14, 01:45](953 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:12, 15:35] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:37, 04:26](902 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [13:13, 11:46] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:37, 05:22](1048 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:38, 05:00](1043 MB) -PASS -- TEST 'conus13km_debug_intel' [18:02, 14:48](1128 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:43, 14:45](801 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [16:27, 08:17](1109 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [22:54, 14:49](1197 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:16, 12:43] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:38, 05:07](1072 MB) - -PASS -- COMPILE 'hafsw_intel' [22:15, 20:59] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [15:56, 04:40](685 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [14:20, 03:51](1035 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [18:07, 07:24](730 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [22:50, 11:30](764 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:03, 12:44](774 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [15:49, 05:03](465 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [17:02, 06:23](478 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [14:04, 02:34](367 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [21:09, 07:19](428 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [14:39, 03:51](495 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [13:57, 03:49](492 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [14:51, 04:11](551 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [10:39, 01:18](396 MB) -PASS -- TEST 'gnv1_nested_intel' [20:23, 07:00](1697 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [18:15, 16:26] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [21:51, 12:24](581 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [20:12, 18:22] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:40, 07:36](595 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:39, 07:59](776 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [21:12, 19:22] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:51, 05:50](779 MB) - -PASS -- COMPILE 'hafs_all_intel' [21:12, 19:39] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [15:49, 06:40](720 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:52, 06:09](701 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [24:35, 20:07](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [15:13, 13:27] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:33, 02:43](766 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:44, 01:38](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:11, 02:31](641 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:56, 02:30](642 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:47, 02:29](642 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:50, 02:39](752 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:52, 02:36](766 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:46, 02:34](641 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:57, 05:57](695 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:49, 05:53](680 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:44, 02:40](767 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:02, 04:40](2031 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:37, 04:41](2030 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [11:13, 09:39] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:40, 05:30](746 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [17:15, 15:43] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:33, 02:36](766 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:11, 03:47] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:15, 01:52](316 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [06:14, 01:32](454 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [06:12, 00:44](454 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [19:14, 17:13] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:02, 04:27](1911 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [20:13, 18:30] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:16, 04:17](1895 MB) - -PASS -- COMPILE 'atml_intel' [18:13, 16:40] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [15:46, 08:24](1887 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [15:44, 08:27](1889 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [11:24, 04:03](1028 MB) - -PASS -- COMPILE 'atml_debug_intel' [17:12, 15:13] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [13:22, 06:55](1918 MB) - -PASS -- COMPILE 'atmw_intel' [21:12, 19:39] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:29, 03:24](1880 MB) - -PASS -- COMPILE 'atmaero_intel' [18:15, 16:32] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [12:33, 07:08](3107 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [14:25, 07:17](2993 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:00, 07:21](3007 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [15:12, 13:07] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [39:05, 18:05](4419 MB) - -PASS -- COMPILE 'atm_fbh_intel' [17:12, 15:19] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [14:07, 08:58](796 MB) +PASS -- COMPILE 's2swa_32bit_intel' [28:12, 27:05] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [20:01, 08:42](3188 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:12, 24:30] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [27:47, 14:21](1908 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:48, 14:25](1936 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:27, 06:48](1063 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:47, 15:02](1879 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:12, 24:24] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [26:03, 14:06](1908 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:13, 15:08] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [45:05, 26:15](1934 MB) + +PASS -- COMPILE 's2swa_intel' [22:14, 20:15] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [23:21, 10:05](3212 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [25:39, 10:18](3211 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:45, 06:03](3137 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [24:29, 10:34](3235 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:55, 06:22](3160 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [22:27, 08:25](3454 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [22:27, 09:50](3209 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [22:27, 08:39](3152 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [23:29, 10:08](3211 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [27:09, 10:35](3440 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [14:23, 07:30](3593 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [29:46, 09:43](4189 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:04, 05:57](4348 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [21:53, 07:50](3193 MB) + +PASS -- COMPILE 's2sw_intel' [21:11, 20:04] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [22:14, 06:17](1920 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [23:30, 08:47](1976 MB) + +PASS -- COMPILE 's2swa_debug_intel' [15:14, 13:48] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [33:07, 14:11](3273 MB) + +PASS -- COMPILE 's2sw_debug_intel' [16:13, 14:17] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [28:12, 09:07](1950 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [19:14, 17:43] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [23:32, 05:30](1985 MB) + +PASS -- COMPILE 's2s_intel' [20:11, 18:22] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [20:56, 05:35](2865 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [15:08, 02:04](2875 MB) +PASS -- TEST 'cpld_restart_c48_intel' [08:27, 01:13](2287 MB) + +PASS -- COMPILE 's2swa_faster_intel' [21:15, 19:32] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [14:17, 09:54](3211 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:16, 22:20] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:08, 15:35](1928 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:30, 07:21](1086 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:38, 17:02](1907 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:12, 11:49] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [37:26, 27:44](1952 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:13, 14:12] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:42, 03:50](664 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [08:37, 04:07](1565 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:37, 03:52](1564 MB) +PASS -- TEST 'control_latlon_intel' [07:01, 03:19](1572 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:24, 03:28](1567 MB) +PASS -- TEST 'control_c48_intel' [12:52, 10:00](1576 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:40, 05:50](695 MB) +PASS -- TEST 'control_c192_intel' [14:37, 11:10](1690 MB) +PASS -- TEST 'control_c384_intel' [28:35, 23:23](1957 MB) +PASS -- TEST 'control_c384gdas_intel' [20:43, 14:45](1152 MB) +PASS -- TEST 'control_stochy_intel' [04:52, 02:11](619 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:34, 01:14](425 MB) +PASS -- TEST 'control_lndp_intel' [04:33, 01:57](617 MB) +PASS -- TEST 'control_iovr4_intel' [05:35, 02:44](616 MB) +PASS -- TEST 'control_iovr5_intel' [07:41, 02:45](616 MB) +PASS -- TEST 'control_p8_intel' [08:18, 04:09](1858 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [08:09, 03:24](1856 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:01, 03:45](1858 MB) +PASS -- TEST 'control_restart_p8_intel' [05:13, 02:29](1005 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:46, 03:48](1857 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:13, 02:28](1017 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:46, 04:03](1847 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:18, 03:23](1930 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:32, 06:16](1859 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:03, 04:10](1907 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:13, 03:41](1865 MB) +PASS -- TEST 'merra2_thompson_intel' [08:07, 04:11](1857 MB) +PASS -- TEST 'regional_control_intel' [07:42, 04:56](849 MB) +PASS -- TEST 'regional_restart_intel' [05:09, 02:37](848 MB) +PASS -- TEST 'regional_decomp_intel' [07:35, 05:10](848 MB) +PASS -- TEST 'regional_2threads_intel' [04:49, 03:04](989 MB) +PASS -- TEST 'regional_noquilt_intel' [06:53, 04:42](1171 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:51, 04:37](849 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:44, 04:40](856 MB) +PASS -- TEST 'regional_wofs_intel' [09:35, 06:31](1571 MB) + +PASS -- COMPILE 'rrfs_intel' [15:15, 13:13] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:12, 06:51](998 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:37, 03:45](1129 MB) +PASS -- TEST 'rap_decomp_intel' [10:12, 07:11](1004 MB) +PASS -- TEST 'rap_2threads_intel' [09:02, 06:18](1079 MB) +PASS -- TEST 'rap_restart_intel' [05:58, 03:32](866 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:03, 07:13](998 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:54, 07:17](993 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:01, 05:11](865 MB) +PASS -- TEST 'hrrr_control_intel' [07:38, 03:49](995 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:23, 04:06](1000 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:34, 03:09](1071 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:33, 01:55](822 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:58, 06:45](991 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:29, 08:55](1947 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:28, 08:22](1943 MB) + +PASS -- COMPILE 'csawmg_intel' [13:14, 11:56] +PASS -- TEST 'control_csawmg_intel' [11:04, 06:56](954 MB) +PASS -- TEST 'control_ras_intel' [07:54, 03:37](650 MB) + +PASS -- COMPILE 'wam_intel' [14:15, 13:02] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:08, 12:06](1651 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:15, 13:07] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:07, 04:24](1850 MB) +PASS -- TEST 'regional_control_faster_intel' [06:35, 04:27](852 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:16, 14:23] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:48, 03:56](1585 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:11, 03:59](1592 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:38, 03:55](793 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:29, 03:15](793 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:01, 04:16](1093 MB) +PASS -- TEST 'control_ras_debug_intel' [05:04, 02:57](802 MB) +PASS -- TEST 'control_diag_debug_intel' [06:15, 02:58](1652 MB) +PASS -- TEST 'control_debug_p8_intel' [05:42, 03:04](1878 MB) +PASS -- TEST 'regional_debug_intel' [18:45, 16:24](887 MB) +PASS -- TEST 'rap_control_debug_intel' [07:34, 05:08](1173 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:33, 04:57](1168 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:23, 05:05](1170 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:08, 05:22](1169 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:01, 05:04](1172 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:44, 05:50](1262 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:42, 05:09](1171 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:36, 05:14](1173 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:28, 05:11](1174 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:25, 05:03](1173 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:26, 05:04](1169 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:23, 05:06](1173 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:30, 07:56](1171 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:28, 04:54](1167 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:26, 05:44](1172 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:25, 05:29](1172 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:58, 08:28](1178 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:12, 09:07] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:03, 13:35](1679 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:15, 12:58] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:05, 03:42](999 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:53, 05:48](876 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:45, 03:43](874 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:51, 05:19](927 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:56, 02:40](918 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:48, 03:52](872 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [21:57, 04:10](773 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [15:32, 01:44](754 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:14, 13:32] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:50, 02:40](1076 MB) +PASS -- TEST 'conus13km_2threads_intel' [18:56, 00:55](1052 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [18:52, 01:24](953 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:15, 13:54] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:24, 04:24](902 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:11, 10:48] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:35, 05:08](1049 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:28, 05:12](1045 MB) +PASS -- TEST 'conus13km_debug_intel' [17:15, 14:27](1130 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [25:22, 14:56](803 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [15:12, 08:15](1112 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:12, 14:54](1199 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [21:13, 19:25] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:33, 05:00](1069 MB) + +PASS -- COMPILE 'hafsw_intel' [20:11, 18:57] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:18, 04:41](682 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:31, 04:02](1029 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:32, 07:25](729 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:12, 11:32](759 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [29:40, 12:38](773 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:14, 05:02](464 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [17:35, 06:17](476 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [19:13, 02:35](367 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [25:42, 06:51](425 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [19:49, 03:29](495 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [19:06, 03:19](496 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [22:09, 04:05](556 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [19:37, 01:16](395 MB) +PASS -- TEST 'gnv1_nested_intel' [22:51, 05:09](1697 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [15:23, 13:55] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [28:00, 12:26](575 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:22, 18:00] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:36, 07:13](595 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:18, 07:20](776 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [21:22, 19:51] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [24:00, 05:24](777 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:15, 15:44] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [23:16, 06:05](718 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [23:16, 06:02](702 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [36:22, 19:59](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [14:18, 12:45] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [17:29, 02:38](752 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:23, 02:08](756 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [16:28, 02:30](644 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [15:28, 02:32](642 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [15:26, 02:32](644 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [15:28, 02:34](766 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [12:22, 02:35](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [11:20, 02:25](644 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [15:03, 06:08](695 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [14:01, 05:53](678 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [09:25, 02:36](766 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:22, 04:41](2029 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [09:23, 04:43](2031 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [10:11, 08:44] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:26, 05:34](748 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [16:11, 15:00] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [06:23, 02:36](766 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:16, 03:53] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:53, 01:59](316 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:48, 01:10](454 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:46, 02:03](454 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:16, 16:55] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:55, 04:10](1909 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [18:12, 17:06] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:11, 04:13](1895 MB) + +PASS -- COMPILE 'atml_intel' [18:13, 16:49] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:30, 08:05](1890 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [11:30, 08:11](1888 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [12:35, 03:33](1028 MB) + +PASS -- COMPILE 'atml_debug_intel' [16:11, 14:48] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:21, 06:56](1917 MB) + +PASS -- COMPILE 'atmw_intel' [19:12, 18:00] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:58, 02:55](1879 MB) + +PASS -- COMPILE 'atmaero_intel' [17:11, 15:29] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [11:09, 06:38](3106 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [11:11, 07:08](2993 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:04, 07:17](3007 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [14:17, 12:57] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:22, 18:38](4413 MB) + +PASS -- COMPILE 'atm_fbh_intel' [17:17, 15:11] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [12:25, 08:57](796 MB) SYNOPSIS: -Starting Date/Time: 20240926 19:58:08 -Ending Date/Time: 20240926 22:19:21 -Total Time: 02h:24m:06s +Starting Date/Time: 20241003 10:58:55 +Ending Date/Time: 20241003 13:03:17 +Total Time: 02h:05m:18s Compiles Completed: 42/42 Tests Completed: 186/186 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 561bffd671..41eb20e38e 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,20 +1,20 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -7d136e0c38b9444ecb96b52e558bd6ee43f3ca09 +27fcef4059964b9e0da304984293d4bea802d1df Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - bf66bf7abdd3c057f4ee85f2655a33b7f4459676 CICE-interface/CICE (remotes/origin/sync_cice) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - f188fe2afb3dd04f460a36ddda5e18e17c68f422 FV3 (remotes/origin/support_intelllvm) + 1aba87cb308fb52912e7fe6dd6b53d0ce7077554 FV3 (heads/develop) 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) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 6810b2d8dbceea2b5e47b3f1b59b5461aded3827 WW3 (remotes/origin/support_intelllvm) + c7004b658b9dae9fc473d4e6511dfc1cf8e6a7bd WW3 (6.07.1-347-gc7004b65) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -26,376 +26,377 @@ 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_927600 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1043523 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, 13:54] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:19, 06:25](3306 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:13, 16:43] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [21:07, 17:26](1952 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:25, 18:17](2159 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:12, 08:31](1268 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:01, 19:37](1855 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:13, 16:51] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:51, 17:17](1937 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 06:01] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:11, 25:09](1889 MB) - -PASS -- COMPILE 's2swa_intel' [15:12, 13:53] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:15, 07:38](3329 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:24, 07:44](3344 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:22, 04:25](3247 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:16, 07:45](3344 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:12, 04:25](3267 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:12, 07:28](3640 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:13, 07:52](3324 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:15, 06:26](3190 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:23, 07:45](3316 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:11, 10:29](3520 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:05, 06:26](3621 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:25, 09:00](4325 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:34, 06:00](4382 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:13, 05:34](3300 MB) - -PASS -- COMPILE 's2sw_intel' [13:12, 11:59] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:12, 05:45](1981 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:20, 07:23](2016 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:08] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [17:03, 14:17](3402 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:50] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:01, 09:50](2000 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:15, 11:14] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:15, 04:28](2023 MB) - -PASS -- COMPILE 's2s_intel' [13:15, 11:27] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:57, 07:45](3037 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:53, 02:45](3038 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:45, 01:36](2473 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:11, 17:02] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:28, 07:37](3349 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:12, 16:08] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:11, 17:25](1993 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:34, 08:25](1271 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:16, 20:08](1936 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:11, 07:05] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:18, 25:59](1954 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:12, 10:44] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:27, 03:29](704 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:42, 03:13](1572 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:47, 03:19](1590 MB) -PASS -- TEST 'control_latlon_intel' [05:43, 03:14](1582 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:52, 03:16](1584 MB) -PASS -- TEST 'control_c48_intel' [13:47, 11:34](1726 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:29, 06:31](854 MB) -PASS -- TEST 'control_c192_intel' [14:16, 12:03](1753 MB) -PASS -- TEST 'control_c384_intel' [17:05, 13:42](1997 MB) -PASS -- TEST 'control_c384gdas_intel' [12:44, 08:22](1381 MB) -PASS -- TEST 'control_stochy_intel' [03:25, 01:41](658 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:33, 01:08](496 MB) -PASS -- TEST 'control_lndp_intel' [03:25, 01:34](656 MB) -PASS -- TEST 'control_iovr4_intel' [04:29, 02:40](653 MB) -PASS -- TEST 'control_iovr5_intel' [04:27, 02:30](651 MB) -PASS -- TEST 'control_p8_intel' [06:02, 03:43](1875 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:04, 03:10](1890 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:00, 03:39](1881 MB) -PASS -- TEST 'control_restart_p8_intel' [04:53, 02:03](1131 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:56, 03:40](1859 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:59, 02:03](1158 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:52, 03:47](1860 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:52, 03:32](1966 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:46, 06:37](1864 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:56, 04:11](1945 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:00, 03:08](1898 MB) -PASS -- TEST 'merra2_thompson_intel' [05:55, 03:27](1899 MB) -PASS -- TEST 'regional_control_intel' [07:41, 05:25](1084 MB) -PASS -- TEST 'regional_restart_intel' [04:38, 02:53](1088 MB) -PASS -- TEST 'regional_decomp_intel' [07:38, 05:41](1079 MB) -PASS -- TEST 'regional_2threads_intel' [05:40, 03:25](1083 MB) -PASS -- TEST 'regional_noquilt_intel' [07:41, 05:20](1395 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:42, 05:18](1089 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:35, 05:23](1094 MB) -PASS -- TEST 'regional_wofs_intel' [08:39, 06:57](1897 MB) - -PASS -- COMPILE 'rrfs_intel' [12:11, 10:18] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:47, 07:48](1103 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:11, 04:09](1247 MB) -PASS -- TEST 'rap_decomp_intel' [10:47, 08:11](1026 MB) -PASS -- TEST 'rap_2threads_intel' [09:53, 07:22](1175 MB) -PASS -- TEST 'rap_restart_intel' [06:45, 04:03](1097 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:52, 07:44](1098 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:52, 08:12](1030 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:48, 05:54](1125 MB) -PASS -- TEST 'hrrr_control_intel' [06:46, 04:02](1037 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:46, 04:09](1025 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:46, 03:40](1098 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:35, 02:13](997 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:58, 07:43](1091 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:37, 09:42](1980 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:40, 09:19](2046 MB) - -PASS -- COMPILE 'csawmg_intel' [12:11, 10:14] -PASS -- TEST 'control_csawmg_intel' [09:45, 06:08](1019 MB) -PASS -- TEST 'control_ras_intel' [06:25, 03:19](747 MB) - -PASS -- COMPILE 'csawmg_gnu' [06:11, 04:26] -PASS -- TEST 'control_csawmg_gnu' [10:39, 08:30](735 MB) - -PASS -- COMPILE 'wam_intel' [11:12, 09:57] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:52, 11:26](1641 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:12, 10:14] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:56, 02:51](1879 MB) -PASS -- TEST 'regional_control_faster_intel' [06:38, 04:55](1093 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:12, 08:10] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:46, 02:22](1616 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:45, 02:17](1610 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:25, 03:07](826 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:48](833 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:37, 04:23](1130 MB) -PASS -- TEST 'control_ras_debug_intel' [04:22, 03:02](834 MB) -PASS -- TEST 'control_diag_debug_intel' [04:47, 02:51](1701 MB) -PASS -- TEST 'control_debug_p8_intel' [05:45, 02:42](1905 MB) -PASS -- TEST 'regional_debug_intel' [19:41, 17:22](1099 MB) -PASS -- TEST 'rap_control_debug_intel' [07:25, 05:05](1220 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:28, 05:11](1205 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:25, 05:11](1206 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:27, 05:08](1204 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:26, 05:11](1207 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:53, 05:20](1301 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:26, 05:12](1214 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:27, 05:20](1208 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:35, 05:20](1213 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:33, 05:18](1203 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:33, 05:13](1214 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:32, 05:16](1201 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:27, 08:19](1213 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:29, 05:04](1211 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:27, 06:21](1214 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:24, 05:05](1209 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:43, 08:50](1218 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:11, 04:20] -PASS -- TEST 'control_csawmg_debug_gnu' [04:38, 02:26](713 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:10, 04:43] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:57, 13:46](1673 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 09:44] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:06, 03:56](1125 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:39, 06:30](1061 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:43, 03:25](975 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:40, 06:12](1085 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:33, 03:26](951 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:34, 03:40](927 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:41, 04:51](1012 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:27, 01:52](929 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:12, 09:56] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:56, 02:09](1184 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:47, 00:55](1105 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:43, 01:13](1084 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:12, 10:09] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:44, 04:13](968 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:00] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 05:01](1091 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:24, 05:00](1085 MB) -PASS -- TEST 'conus13km_debug_intel' [18:03, 15:19](1231 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [18:03, 15:19](960 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:56, 08:15](1159 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:59, 14:51](1304 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:56] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:29, 05:03](1141 MB) - -PASS -- COMPILE 'hafsw_intel' [13:13, 11:45] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:23, 05:01](726 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:40, 05:52](1096 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:29, 06:55](817 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:24, 13:25](845 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:39, 15:28](873 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:55, 05:29](489 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:25, 06:46](507 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:44, 02:42](366 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:10, 07:14](467 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:46, 03:38](513 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:49, 03:28](516 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:54, 04:03](572 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:28, 01:11](397 MB) -PASS -- TEST 'gnv1_nested_intel' [07:42, 04:01](1745 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:11, 05:27] ( 1465 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:00, 12:59](589 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:13, 11:21] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:05, 08:47](646 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:06, 08:50](734 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 11:30] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:28, 06:23](717 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:13, 10:50] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:18, 06:32](817 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:15, 06:35](792 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:58, 16:16](1220 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:12, 06:44] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 02:46](1159 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:42](1089 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:38](1043 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:37](1028 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:38](1022 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:44](1154 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:39](1155 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:35](1039 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:34, 06:18](1068 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:23, 06:14](1047 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:39](1163 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:21, 03:57](2453 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:20, 03:57](2505 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:30] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:20, 06:29](1082 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:13, 07:02] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:20, 02:46](1152 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:03] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:32, 00:54](263 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:27, 00:56](326 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:39](321 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:13, 11:19] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:13, 03:49](1974 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 10:24] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:02, 03:45](1935 MB) - -PASS -- COMPILE 'atml_intel' [12:14, 11:01] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:11, 04:25](1832 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:05, 04:26](1827 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:51, 02:28](1099 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:11, 06:23] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:00, 05:55](1859 MB) - -PASS -- COMPILE 'atmw_intel' [12:12, 10:56] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:54, 02:00](1906 MB) - -PASS -- COMPILE 'atmaero_intel' [12:12, 10:30] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:02, 04:18](3168 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:00, 04:58](3091 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:47, 05:16](3097 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:10, 04:43] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_gnu' [06:10, 04:37] -PASS -- TEST 'control_c48_gnu' [11:48, 09:26](1505 MB) -PASS -- TEST 'control_stochy_gnu' [05:26, 03:32](489 MB) -PASS -- TEST 'control_ras_gnu' [06:24, 04:55](502 MB) -PASS -- TEST 'control_p8_gnu' [08:08, 05:21](1451 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [08:01, 05:16](1426 MB) -PASS -- TEST 'control_flake_gnu' [12:29, 10:25](532 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:12, 04:18] -PASS -- TEST 'rap_control_gnu' [12:38, 10:54](806 MB) -PASS -- TEST 'rap_decomp_gnu' [12:37, 11:06](805 MB) -PASS -- TEST 'rap_2threads_gnu' [11:43, 09:58](917 MB) -PASS -- TEST 'rap_restart_gnu' [07:46, 05:39](570 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [12:40, 10:57](838 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:40, 11:22](810 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:47, 08:07](593 MB) -PASS -- TEST 'hrrr_control_gnu' [07:43, 05:45](837 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:38, 05:42](793 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [07:37, 05:12](903 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:36, 05:46](840 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [06:31, 02:55](555 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:30, 02:53](645 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [12:49, 10:50](834 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:10, 06:43] -PASS -- TEST 'control_diag_debug_gnu' [03:58, 01:44](1261 MB) -PASS -- TEST 'regional_debug_gnu' [12:49, 10:51](735 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:29, 02:46](816 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:31, 02:39](811 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:26, 02:41](816 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:24, 02:37](819 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:40, 02:55](895 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:26, 04:13](810 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:25, 02:50](818 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:24, 02:51](804 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:23, 01:46](447 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:22, 01:56](441 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:41, 01:43](1430 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:25, 02:44](810 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [05:23, 02:58](811 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:42, 04:26](817 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:10, 02:27] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 04:29] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:32, 09:25](694 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:39, 05:01](688 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:42, 08:35](740 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:35, 04:31](737 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:34, 05:01](690 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:38, 07:11](548 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:31, 02:33](531 MB) -PASS -- TEST 'conus13km_control_gnu' [05:59, 03:10](866 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:48, 05:55](863 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:46, 01:49](554 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:12, 10:00] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:40, 05:46](717 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:13, 06:41] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:24, 02:38](709 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:26, 02:34](700 MB) -PASS -- TEST 'conus13km_debug_gnu' [10:52, 06:54](877 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [10:49, 07:16](568 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [10:45, 08:10](877 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [10:43, 07:01](945 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:13, 06:48] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [06:25, 02:39](724 MB) - -PASS -- COMPILE 's2swa_gnu' [18:14, 16:33] - -PASS -- COMPILE 's2s_gnu' [17:14, 16:04] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [14:09, 11:16](1496 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [05:11, 03:13] - -PASS -- COMPILE 's2sw_pdlib_gnu' [18:13, 16:08] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [23:02, 20:12](1454 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:04] - -PASS -- COMPILE 'datm_cdeps_gnu' [17:13, 15:34] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:18, 02:59](695 MB) - -PASS -- COMPILE 'atm_fbh_intel' [11:12, 09:49] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:30, 11:20](1081 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:14, 11:57] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:15, 06:12](3294 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:14, 15:36] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:06, 16:37](1977 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:21, 17:25](2171 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:12, 07:58](1269 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:59, 18:32](1859 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:14, 16:08] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:49, 16:13](1959 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:13, 06:02] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:10, 23:31](1881 MB) + +PASS -- COMPILE 's2swa_intel' [13:14, 11:51] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [10:13, 07:28](3353 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:27, 07:25](3315 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:48, 04:15](3251 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:13, 07:30](3345 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:48, 04:15](3274 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:05, 07:09](3641 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:09, 07:32](3317 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:10, 06:05](3219 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:23, 07:30](3350 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:22, 09:45](3517 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:52, 06:11](3617 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:55, 08:39](4295 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:07, 05:39](4386 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:10, 05:29](3298 MB) + +PASS -- COMPILE 's2sw_intel' [14:14, 11:38] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:15, 05:38](1947 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:22, 07:20](2046 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:13, 06:00] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [15:08, 12:50](3401 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:13, 05:26] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:08, 08:52](2013 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:13, 10:35] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:01, 04:19](2046 MB) + +PASS -- COMPILE 's2s_intel' [12:13, 10:47] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:44, 07:39](3031 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:43, 02:38](3024 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:39, 01:32](2482 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:16, 16:13] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [11:16, 07:36](3349 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:16, 15:42] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:12, 17:18](2030 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:33, 08:00](1269 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:14, 19:05](1934 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:14, 05:40] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:59, 26:10](1944 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:13, 10:13] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:28, 03:19](702 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:49, 03:17](1579 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:54, 03:21](1594 MB) +PASS -- TEST 'control_latlon_intel' [05:45, 03:22](1591 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:49, 03:17](1591 MB) +PASS -- TEST 'control_c48_intel' [13:43, 11:20](1717 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:30, 06:24](853 MB) +PASS -- TEST 'control_c192_intel' [15:03, 12:12](1752 MB) +PASS -- TEST 'control_c384_intel' [17:04, 13:53](1978 MB) +PASS -- TEST 'control_c384gdas_intel' [13:02, 08:11](1378 MB) +PASS -- TEST 'control_stochy_intel' [04:30, 02:20](654 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:30, 00:58](510 MB) +PASS -- TEST 'control_lndp_intel' [04:27, 02:03](661 MB) +PASS -- TEST 'control_iovr4_intel' [05:32, 02:39](645 MB) +PASS -- TEST 'control_iovr5_intel' [04:52, 02:40](650 MB) +PASS -- TEST 'control_p8_intel' [06:17, 03:46](1886 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:00, 03:02](1889 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:57, 03:34](1877 MB) +PASS -- TEST 'control_restart_p8_intel' [04:49, 01:59](1129 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:49, 03:34](1834 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:53, 02:00](1160 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:51, 03:45](1861 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:51, 03:33](1962 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:50, 06:34](1878 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:57, 03:59](1947 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:58, 03:08](1884 MB) +PASS -- TEST 'merra2_thompson_intel' [06:54, 03:18](1898 MB) +PASS -- TEST 'regional_control_intel' [07:39, 05:12](1095 MB) +PASS -- TEST 'regional_restart_intel' [05:40, 02:57](1085 MB) +PASS -- TEST 'regional_decomp_intel' [08:36, 05:33](1078 MB) +PASS -- TEST 'regional_2threads_intel' [05:35, 03:23](1077 MB) +PASS -- TEST 'regional_noquilt_intel' [07:40, 05:12](1390 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:41, 05:12](1083 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:35, 05:17](1087 MB) +PASS -- TEST 'regional_wofs_intel' [08:37, 06:48](1889 MB) + +PASS -- COMPILE 'rrfs_intel' [11:13, 09:33] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:50, 07:45](1102 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:16, 04:03](1248 MB) +PASS -- TEST 'rap_decomp_intel' [09:50, 08:07](1031 MB) +PASS -- TEST 'rap_2threads_intel' [09:51, 07:19](1166 MB) +PASS -- TEST 'rap_restart_intel' [06:51, 04:03](1098 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:52, 07:43](1106 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:52, 08:11](1028 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:49, 05:48](1121 MB) +PASS -- TEST 'hrrr_control_intel' [05:47, 04:03](1038 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:47, 04:03](1023 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:47, 03:42](1102 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:35, 02:10](993 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:55, 07:39](1088 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:36, 09:36](1977 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:35, 08:59](2061 MB) + +PASS -- COMPILE 'csawmg_intel' [10:14, 09:07] +PASS -- TEST 'control_csawmg_intel' [08:46, 06:14](1014 MB) +PASS -- TEST 'control_ras_intel' [05:28, 03:17](750 MB) + +PASS -- COMPILE 'csawmg_gnu' [06:13, 04:09] +PASS -- TEST 'control_csawmg_gnu' [10:42, 08:20](738 MB) + +PASS -- COMPILE 'wam_intel' [11:13, 09:29] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:45, 11:03](1663 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:13, 09:33] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:56, 02:44](1892 MB) +PASS -- TEST 'regional_control_faster_intel' [06:37, 04:46](1082 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:13, 07:23] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:43, 02:12](1617 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:44, 02:08](1610 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:25, 02:59](827 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:25, 02:43](831 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:41, 04:11](1132 MB) +PASS -- TEST 'control_ras_debug_intel' [04:23, 02:45](843 MB) +PASS -- TEST 'control_diag_debug_intel' [04:48, 02:44](1685 MB) +PASS -- TEST 'control_debug_p8_intel' [04:44, 02:30](1891 MB) +PASS -- TEST 'regional_debug_intel' [18:39, 16:38](1086 MB) +PASS -- TEST 'rap_control_debug_intel' [06:25, 04:47](1173 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:26, 04:45](1211 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:24, 04:48](1215 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:25, 04:51](1206 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 04:47](1211 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:45, 04:58](1292 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:24, 04:56](1214 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:21, 04:54](1215 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:26, 04:49](1220 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:25, 04:51](1212 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:26, 04:44](1212 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:26, 04:44](1214 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:25, 07:56](1214 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:24, 04:49](1211 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:22, 06:01](1213 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:24, 04:59](1207 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:41, 08:31](1222 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:12, 04:10] +PASS -- TEST 'control_csawmg_debug_gnu' [04:39, 02:12](717 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:14, 04:27] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:54, 12:49](1684 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:15, 10:37] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:07, 03:50](1124 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:39, 06:22](1048 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:36, 03:28](977 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:39, 06:04](1081 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:36, 03:10](955 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:33, 03:34](930 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:42, 04:48](1024 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:28, 01:53](921 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:15, 09:34] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:07, 02:03](1188 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:50, 00:51](1100 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:43, 01:12](1100 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:13, 09:29] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:41, 04:13](977 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:12, 04:43] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:24, 04:41](1087 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:25, 04:34](1089 MB) +PASS -- TEST 'conus13km_debug_intel' [16:52, 14:19](1239 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:44, 14:35](976 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:49, 08:03](1154 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:52, 14:19](1306 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:13, 04:30] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:31, 04:48](1137 MB) + +PASS -- COMPILE 'hafsw_intel' [12:14, 11:00] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:22, 04:56](721 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [11:36, 06:29](1094 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:30, 06:54](817 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:25, 13:05](848 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:34, 14:48](864 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:55, 05:29](487 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:29, 06:40](507 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:44, 02:38](374 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:38, 07:20](478 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:47, 03:38](520 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:48, 03:34](522 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:55, 04:13](578 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:29, 01:08](402 MB) +PASS -- TEST 'gnv1_nested_intel' [06:39, 03:58](1741 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:13, 05:29] ( 1465 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:55, 12:30](583 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:16, 10:41] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:06, 08:37](622 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:09, 08:46](737 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:14, 10:54] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:34, 06:27](703 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:15, 10:34] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:25, 06:22](813 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:33, 06:24](797 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:59, 16:15](1215 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:15, 07:16] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 02:46](1156 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:22, 01:45](1108 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:42](1025 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:44](1025 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:20, 02:40](1025 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 02:44](1159 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:19, 02:45](1158 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:38](1031 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:27, 06:18](1071 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:22, 06:31](1044 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:46](1156 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 03:47](2519 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:20, 03:54](2512 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:12, 03:15] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:22, 06:10](1081 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:14, 06:21] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:31, 02:48](1168 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:12, 01:12] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:32, 00:44](265 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:52](329 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:24, 00:29](321 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:16, 10:03] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:08, 03:39](1949 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:15, 09:38] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:02, 03:32](1967 MB) + +PASS -- COMPILE 'atml_intel' [12:12, 10:01] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:01, 04:11](1834 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:57, 04:10](1863 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:47, 02:21](1087 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:11, 05:44] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:55, 05:28](1898 MB) + +PASS -- COMPILE 'atmw_intel' [12:12, 10:09] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:50, 01:52](1914 MB) + +PASS -- COMPILE 'atmaero_intel' [12:13, 09:43] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:54, 03:59](3186 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:56, 04:44](3090 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:43, 04:49](3114 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:41] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_gnu' [06:11, 04:30] +PASS -- TEST 'control_c48_gnu' [11:47, 09:19](1508 MB) +PASS -- TEST 'control_stochy_gnu' [05:21, 03:22](495 MB) +PASS -- TEST 'control_ras_gnu' [06:19, 04:51](504 MB) +PASS -- TEST 'control_p8_gnu' [08:01, 05:10](1443 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [07:08, 05:01](1455 MB) +PASS -- TEST 'control_flake_gnu' [12:25, 10:27](505 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:11, 04:25] +PASS -- TEST 'rap_control_gnu' [13:38, 11:14](809 MB) +PASS -- TEST 'rap_decomp_gnu' [13:37, 11:19](805 MB) +PASS -- TEST 'rap_2threads_gnu' [12:41, 10:10](914 MB) +PASS -- TEST 'rap_restart_gnu' [07:50, 05:44](573 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:42, 11:09](804 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:37, 11:24](835 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:51, 08:22](574 MB) +PASS -- TEST 'hrrr_control_gnu' [07:39, 05:47](836 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:36, 05:44](786 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [07:34, 05:14](902 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:41, 05:52](802 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [05:32, 03:01](560 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:31, 02:57](646 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [12:47, 11:03](803 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:12, 06:21] +PASS -- TEST 'control_diag_debug_gnu' [03:45, 01:30](1266 MB) +PASS -- TEST 'regional_debug_gnu' [13:39, 11:13](742 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:23, 02:35](817 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:22, 02:23](814 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:23, 02:25](821 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:22, 02:28](813 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:42, 02:39](899 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:22, 03:47](816 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:23, 02:28](818 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:23, 02:23](810 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:23, 01:28](456 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:21, 01:37](448 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:39, 01:34](1425 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:24, 02:27](820 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:24, 02:40](825 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:39, 03:58](828 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:39] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:01] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:33, 09:33](696 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:35, 05:02](693 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:39, 08:53](743 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:36, 04:39](738 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:37, 05:13](692 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:41, 07:08](547 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:32, 02:38](528 MB) +PASS -- TEST 'conus13km_control_gnu' [06:05, 03:21](863 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:50, 06:01](889 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:47, 01:55](549 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:22] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:50, 05:47](721 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:24] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:25, 02:26](703 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:24, 02:23](704 MB) +PASS -- TEST 'conus13km_debug_gnu' [09:58, 06:35](877 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [09:51, 06:32](569 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [10:45, 07:36](882 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:46, 06:24](946 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:21] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [05:30, 02:34](733 MB) + +PASS -- COMPILE 's2swa_gnu' [17:11, 15:33] + +PASS -- COMPILE 's2s_gnu' [16:13, 15:07] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [15:20, 12:16](1505 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:11, 02:54] + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:12, 15:14] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [24:10, 21:19](1441 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:51] + +PASS -- COMPILE 'datm_cdeps_gnu' [16:15, 14:32] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:22, 03:01](689 MB) + +PASS -- COMPILE 'atm_fbh_intel' [11:12, 09:14] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:29, 11:37](1081 MB) SYNOPSIS: -Starting Date/Time: 20240926 15:12:04 -Ending Date/Time: 20240926 16:56:59 -Total Time: 01h:45m:12s +Starting Date/Time: 20241002 18:34:02 +Ending Date/Time: 20241002 20:39:20 +Total Time: 02h:06m:49s Compiles Completed: 58/58 Tests Completed: 244/244 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 0ecc92b7ae..ada6d70f6d 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,22 +1,22 @@ -====START OF hercules REGRESSION TESTING LOG==== +====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -7d136e0c38b9444ecb96b52e558bd6ee43f3ca09 +72afacdfb7986f4a761f188cdf6eb4c740c51224 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) - bf66bf7abdd3c057f4ee85f2655a33b7f4459676 CICE-interface/CICE (remotes/origin/sync_cice) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) 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) - f188fe2afb3dd04f460a36ddda5e18e17c68f422 FV3 (remotes/origin/support_intelllvm) - b947391ed4d23ffa15f5c854e7d5c4849abefc40 FV3/atmos_cubed_sphere (201912_public_release-414-gb947391) + 1aba87cb308fb52912e7fe6dd6b53d0ce7077554 FV3 (heads/develop) + 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 77d28126e3dbb19ad9714d3703764202ebce82ec FV3/ccpp/physics (remotes/origin/support_intelllvm) + 5a363134a77535f35594e56b58ba1e6141a23d2b FV3/ccpp/physics (EP4-884-g5a363134) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 55ec82b08ca7d914ace595d4eecd54ae640ade31 FV3/upp (upp_gfsv16_release.v1.0.8-385-g55ec82b) + 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) @@ -25,395 +25,397 @@ Submodule hashes used in testing: 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) - 6810b2d8dbceea2b5e47b3f1b59b5461aded3827 WW3 (remotes/origin/support_intelllvm) + c7004b658b9dae9fc473d4e6511dfc1cf8e6a7bd WW3 (6.07.1-347-gc7004b65) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + NOTES: [Times](Memory) are at the end of each compile/test in format [MM:SS](Size). The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240909 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/jongkim/FV3_RT/rt_3825702 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20241001 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1451143 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE s2swa_32bit_intel [14:13, 13:04](1 warnings,10 remarks) -PASS -- TEST cpld_control_p8_mixedmode_intel [12:07, 08:44] (2129476 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_intel [22:14, 20:51](1 warnings,10 remarks) -PASS -- TEST cpld_control_gfsv17_intel [17:17, 13:50] (1996444 MB) -PASS -- TEST cpld_control_gfsv17_iau_intel [17:44, 14:44] (2314092 MB) -PASS -- TEST cpld_restart_gfsv17_intel [09:47, 06:37] (1347624 MB) -PASS -- TEST cpld_mpi_gfsv17_intel [18:14, 15:10] (1903184 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [22:14, 21:10](1 warnings,10 remarks) -PASS -- TEST cpld_control_sfs_intel [15:11, 13:07] (1975060 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [10:13, 08:37](1523 warnings,2000 remarks) -PASS -- TEST cpld_debug_gfsv17_intel [25:51, 22:43] (1971436 MB) - -PASS -- COMPILE s2swa_intel [16:13, 14:22](1 warnings,10 remarks) -PASS -- TEST cpld_control_p8_intel [12:15, 08:35] (2201332 MB) -PASS -- TEST cpld_control_p8.v2.sfc_intel [12:30, 08:42] (2208824 MB) -PASS -- TEST cpld_restart_p8_intel [09:39, 05:29] (1968488 MB) -PASS -- TEST cpld_control_qr_p8_intel [12:13, 08:58] (2217140 MB) -PASS -- TEST cpld_restart_qr_p8_intel [08:40, 05:17] (1736548 MB) -PASS -- TEST cpld_2threads_p8_intel [14:32, 10:12] (2542268 MB) -PASS -- TEST cpld_decomp_p8_intel [13:32, 09:09] (2187760 MB) -PASS -- TEST cpld_mpi_p8_intel [11:34, 07:30] (2100684 MB) -PASS -- TEST cpld_control_ciceC_p8_intel [12:29, 08:36] (2199960 MB) -PASS -- TEST cpld_control_c192_p8_intel [20:22, 16:15] (2973616 MB) -PASS -- TEST cpld_restart_c192_p8_intel [10:54, 05:59] (2908160 MB) -PASS -- TEST cpld_bmark_p8_intel [19:56, 10:16] (3825132 MB) -PASS -- TEST cpld_restart_bmark_p8_intel [17:28, 06:18] (3632344 MB) -PASS -- TEST cpld_s2sa_p8_intel [10:52, 06:23] (2140084 MB) - -PASS -- COMPILE s2sw_intel [15:14, 13:41](1 warnings,10 remarks) -PASS -- TEST cpld_control_noaero_p8_intel [10:55, 07:26] (2013068 MB) -PASS -- TEST cpld_control_nowave_noaero_p8_intel [11:11, 07:48] (2067552 MB) - -PASS -- COMPILE s2swa_debug_intel [09:13, 08:00](1413 warnings,1230 remarks) -PASS -- TEST cpld_debug_p8_intel [16:27, 12:25] (2230568 MB) - -PASS -- COMPILE s2sw_debug_intel [09:12, 07:37](1413 warnings,1230 remarks) -PASS -- TEST cpld_debug_noaero_p8_intel [12:16, 08:57] (2038220 MB) - -PASS -- COMPILE s2s_aoflux_intel [13:13, 11:59],3 remarks) -PASS -- TEST cpld_control_noaero_p8_agrid_intel [08:15, 04:46] (2063776 MB) - -PASS -- COMPILE s2s_intel [11:12, 09:32](1 warnings,3 remarks) -PASS -- TEST cpld_control_c48_intel [09:17, 06:37] (3041640 MB) -PASS -- TEST cpld_warmstart_c48_intel [05:10, 02:19] (3024484 MB) -PASS -- TEST cpld_restart_c48_intel [05:11, 02:07] (2484276 MB) - -PASS -- COMPILE s2swa_faster_intel [14:11, 12:19](1 warnings,10 remarks) -PASS -- TEST cpld_control_p8_faster_intel [11:42, 08:14] (2206048 MB) - -PASS -- COMPILE s2sw_pdlib_intel [17:11, 15:21](1 warnings,10 remarks) -PASS -- TEST cpld_control_pdlib_p8_intel [16:25, 14:08] (2061288 MB) -PASS -- TEST cpld_restart_pdlib_p8_intel [10:19, 07:18] (1413124 MB) -PASS -- TEST cpld_mpi_pdlib_p8_intel [18:17, 15:48] (1995160 MB) - -PASS -- COMPILE s2sw_pdlib_debug_intel [06:11, 04:53](1523 warnings,2000 remarks) -PASS -- TEST cpld_debug_pdlib_p8_intel [27:21, 23:47] (2003608 MB) - -PASS -- COMPILE atm_dyn32_intel [10:13, 09:07](1 warnings,1 remarks) -PASS -- TEST control_flake_intel [05:41, 03:30] (713316 MB) -PASS -- TEST control_CubedSphereGrid_intel [05:04, 02:51] (1599668 MB) -PASS -- TEST control_CubedSphereGrid_parallel_intel [05:06, 02:50] (1591260 MB) -PASS -- TEST control_latlon_intel [04:57, 02:46] (1591628 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_intel [05:05, 02:46] (1588488 MB) -PASS -- TEST control_c48_intel [13:02, 10:18] (1709600 MB) -PASS -- TEST control_c48.v2.sfc_intel [07:40, 06:08] (842352 MB) -PASS -- TEST control_c192_intel [13:20, 10:16] (1774788 MB) -PASS -- TEST control_c384_intel [16:05, 12:11] (2016644 MB) -PASS -- TEST control_c384gdas_intel [14:35, 10:28] (1507904 MB) -PASS -- TEST control_stochy_intel [03:32, 02:01] (671736 MB) -PASS -- TEST control_stochy_restart_intel [02:38, 01:09] (544124 MB) -PASS -- TEST control_lndp_intel [03:31, 01:59] (659224 MB) -PASS -- TEST control_iovr4_intel [04:33, 02:57] (656220 MB) -PASS -- TEST control_iovr5_intel [04:30, 02:41] (658744 MB) -PASS -- TEST control_p8_intel [06:29, 03:54] (1877156 MB) -PASS -- TEST control_p8.v2.sfc_intel [07:33, 04:21] (1909492 MB) -PASS -- TEST control_p8_ugwpv1_intel [06:23, 03:27] (1896460 MB) -PASS -- TEST control_restart_p8_intel [04:03, 01:53] (1151408 MB) -PASS -- TEST control_noqr_p8_intel [06:17, 03:16] (1878172 MB) -PASS -- TEST control_restart_noqr_p8_intel [04:10, 01:54] (1208024 MB) -PASS -- TEST control_decomp_p8_intel [07:15, 03:59] (1877208 MB) -PASS -- TEST control_2threads_p8_intel [07:14, 03:42] (1965372 MB) -PASS -- TEST control_p8_lndp_intel [09:45, 06:37] (1884624 MB) -PASS -- TEST control_p8_rrtmgp_intel [08:04, 05:22] (1958276 MB) -PASS -- TEST control_p8_mynn_intel [05:08, 02:49] (1909964 MB) -PASS -- TEST merra2_thompson_intel [07:21, 04:53] (1904708 MB) -PASS -- TEST regional_control_intel [06:42, 04:43] (1191344 MB) -PASS -- TEST regional_restart_intel [04:36, 02:40] (1171860 MB) -PASS -- TEST regional_decomp_intel [07:40, 05:11] (1181564 MB) -PASS -- TEST regional_2threads_intel [06:36, 04:05] (1149168 MB) -PASS -- TEST regional_noquilt_intel [06:43, 04:31] (1520988 MB) -PASS -- TEST regional_netcdf_parallel_intel [06:46, 04:36] (1194224 MB) -PASS -- TEST regional_2dwrtdecomp_intel [06:38, 04:44] (1196004 MB) -PASS -- TEST regional_wofs_intel [09:37, 08:04] (2072220 MB) - -PASS -- COMPILE rrfs_intel [10:11, 08:52](3 warnings,9 remarks) -PASS -- TEST rap_control_intel [09:58, 07:19] (1232848 MB) -PASS -- TEST regional_spp_sppt_shum_skeb_intel [05:58, 03:29] (1351800 MB) -PASS -- TEST rap_decomp_intel [09:52, 07:38] (1153952 MB) -PASS -- TEST rap_2threads_intel [10:02, 07:11] (1363244 MB) -PASS -- TEST rap_restart_intel [06:21, 03:53] (1140820 MB) -PASS -- TEST rap_sfcdiff_intel [10:03, 07:17] (1220476 MB) -PASS -- TEST rap_sfcdiff_decomp_intel [10:16, 07:32] (1145440 MB) -PASS -- TEST rap_sfcdiff_restart_intel [08:15, 05:19] (1211988 MB) -PASS -- TEST hrrr_control_intel [06:02, 03:30] (1049924 MB) -PASS -- TEST hrrr_control_decomp_intel [05:46, 03:42] (1050588 MB) -PASS -- TEST hrrr_control_2threads_intel [05:45, 03:15] (1106432 MB) -PASS -- TEST hrrr_control_restart_intel [03:27, 02:04] (1017336 MB) -PASS -- TEST rrfs_v1beta_intel [09:09, 06:48] (1206312 MB) -PASS -- TEST rrfs_v1nssl_intel [12:36, 10:30] (1989120 MB) -PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [11:29, 09:48] (2189692 MB) - -PASS -- COMPILE csawmg_intel [09:11, 07:47] -PASS -- TEST control_csawmg_intel [08:38, 06:16] (1046312 MB) -PASS -- TEST control_ras_intel [05:27, 03:30] (843472 MB) - -PASS -- COMPILE csawmg_gnu [06:11, 04:13] -PASS -- TEST control_csawmg_gnu [10:47, 08:04] (1074316 MB) - -PASS -- COMPILE wam_intel [10:10, 08:34],1 remarks) -PASS -- TEST control_wam_intel [11:52, 09:55] (1657144 MB) - -PASS -- COMPILE atm_faster_dyn32_intel [10:11, 08:55],1 remarks) -PASS -- TEST control_p8_faster_intel [05:12, 02:30] (1905120 MB) -PASS -- TEST regional_control_faster_intel [07:36, 05:03] (1182052 MB) - -PASS -- COMPILE atm_debug_dyn32_intel [08:10, 06:51](882 warnings,9 remarks) -PASS -- TEST control_CubedSphereGrid_debug_intel [03:39, 01:52] (1626508 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [03:45, 01:49] (1630816 MB) -PASS -- TEST control_stochy_debug_intel [04:28, 02:37] (841496 MB) -PASS -- TEST control_lndp_debug_intel [04:20, 02:20] (834536 MB) -PASS -- TEST control_csawmg_debug_intel [05:36, 03:58] (1144800 MB) -PASS -- TEST control_ras_debug_intel [04:21, 02:19] (843980 MB) -PASS -- TEST control_diag_debug_intel [04:41, 02:14] (1692432 MB) -PASS -- TEST control_debug_p8_intel [04:45, 02:12] (1913116 MB) -PASS -- TEST regional_debug_intel [16:36, 14:48] (1144984 MB) -PASS -- TEST rap_control_debug_intel [05:21, 04:08] (1218776 MB) -PASS -- TEST hrrr_control_debug_intel [05:30, 04:06] (1222376 MB) -PASS -- TEST hrrr_gf_debug_intel [05:30, 04:03] (1218284 MB) -PASS -- TEST hrrr_c3_debug_intel [06:25, 04:11] (1229240 MB) -PASS -- TEST rap_unified_drag_suite_debug_intel [06:25, 04:10] (1220288 MB) -PASS -- TEST rap_diag_debug_intel [06:38, 04:25] (1310584 MB) -PASS -- TEST rap_cires_ugwp_debug_intel [06:23, 04:13] (1225392 MB) -PASS -- TEST rap_unified_ugwp_debug_intel [06:28, 04:10] (1231676 MB) -PASS -- TEST rap_lndp_debug_intel [06:28, 04:11] (1225528 MB) -PASS -- TEST rap_progcld_thompson_debug_intel [06:27, 04:10] (1226548 MB) -PASS -- TEST rap_noah_debug_intel [06:27, 04:03] (1221748 MB) -PASS -- TEST rap_sfcdiff_debug_intel [06:25, 04:05] (1236060 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [08:30, 06:44] (1233080 MB) -PASS -- TEST rrfs_v1beta_debug_intel [06:24, 04:11] (1213276 MB) -PASS -- TEST rap_clm_lake_debug_intel [06:27, 04:57] (1231052 MB) -PASS -- TEST rap_flake_debug_intel [05:30, 04:08] (1218576 MB) -PASS -- TEST gnv1_c96_no_nest_debug_intel [09:09, 07:08] (1227812 MB) - -PASS -- COMPILE atm_debug_dyn32_gnu [06:10, 04:22] -PASS -- TEST control_csawmg_debug_gnu [03:49, 02:08] (1038092 MB) - -PASS -- COMPILE wam_debug_intel [06:11, 04:12](837 warnings,1 remarks) - -PASS -- COMPILE rrfs_dyn32_phy32_intel [11:11, 08:57](3 warnings,8 remarks) -PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [06:01, 03:19] (1231840 MB) -PASS -- TEST rap_control_dyn32_phy32_intel [08:00, 05:21] (1142036 MB) -PASS -- TEST hrrr_control_dyn32_phy32_intel [05:22, 02:54] (1041952 MB) -PASS -- TEST rap_2threads_dyn32_phy32_intel [07:11, 05:09] (1277536 MB) -PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [05:18, 02:43] (1027240 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [05:40, 03:03] (982340 MB) -PASS -- TEST rap_restart_dyn32_phy32_intel [05:58, 04:09] (1079168 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [03:26, 01:34] (949800 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [10:11, 08:31](3 warnings,8 remarks) -PASS -- TEST conus13km_control_intel [05:00, 02:23] (1272840 MB) -PASS -- TEST conus13km_2threads_intel [03:43, 01:06] (1177660 MB) -PASS -- TEST conus13km_restart_mismatch_intel [03:46, 01:24] (1128120 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_intel [10:11, 08:33](3 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_intel [05:43, 03:45] (1084280 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [05:11, 03:26](785 warnings,8 remarks) -PASS -- TEST rap_control_debug_dyn32_phy32_intel [06:23, 04:29] (1109280 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [06:22, 04:23] (1100176 MB) -PASS -- TEST conus13km_debug_intel [15:50, 13:55] (1353512 MB) -PASS -- TEST conus13km_debug_qr_intel [15:45, 13:58] (985708 MB) -PASS -- TEST conus13km_debug_2threads_intel [12:44, 10:34] (1238848 MB) -PASS -- TEST conus13km_radar_tten_debug_intel [15:39, 13:58] (1419888 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [06:11, 04:11](785 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_debug_intel [06:28, 04:14] (1161500 MB) - -PASS -- COMPILE hafsw_intel [12:11, 10:29](1 warnings,9 remarks) -PASS -- TEST hafs_regional_atm_intel [08:08, 05:21] (852052 MB) -PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [07:28, 05:13] (1252624 MB) -PASS -- TEST hafs_regional_atm_ocn_intel [09:29, 06:28] (922224 MB) -PASS -- TEST hafs_regional_atm_wav_intel [17:13, 13:59] (960152 MB) -PASS -- TEST hafs_regional_atm_ocn_wav_intel [18:37, 15:04] (968556 MB) -PASS -- TEST hafs_regional_1nest_atm_intel [08:10, 05:34] (592592 MB) -PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [10:26, 07:04] (603584 MB) -PASS -- TEST hafs_global_1nest_atm_intel [05:58, 03:04] (437160 MB) -PASS -- TEST hafs_global_multiple_4nests_atm_intel [11:43, 07:36] (549964 MB) -PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [07:55, 03:58] (601388 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [07:06, 03:46] (599688 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [08:02, 04:51] (655268 MB) -PASS -- TEST hafs_global_storm_following_1nest_atm_intel [04:34, 01:21] (449236 MB) - -PASS -- COMPILE hafsw_debug_intel [06:11, 04:27](1465 warnings,1502 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [14:06, 11:40] (686488 MB) - -PASS -- COMPILE hafsw_faster_intel [12:11, 10:27],8 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [18:56, 16:50] (753200 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [18:05, 15:39] (833392 MB) - -PASS -- COMPILE hafs_mom6w_intel [11:11, 10:09],7 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [13:55, 10:29] (809172 MB) - -PASS -- COMPILE hafs_all_intel [12:11, 10:12],8 remarks) -PASS -- TEST hafs_regional_docn_intel [09:12, 07:03] (908020 MB) -PASS -- TEST hafs_regional_docn_oisst_intel [10:09, 06:59] (909956 MB) -PASS -- TEST hafs_regional_datm_cdeps_intel [18:53, 16:25] (1343824 MB) - -PASS -- COMPILE datm_cdeps_intel [07:11, 04:58],2 remarks) -PASS -- TEST datm_cdeps_control_cfsr_intel [04:19, 02:11] (1136908 MB) -PASS -- TEST datm_cdeps_restart_cfsr_intel [05:19, 01:22] (1100828 MB) -PASS -- TEST datm_cdeps_control_gefs_intel [04:21, 02:11] (1017896 MB) -PASS -- TEST datm_cdeps_iau_gefs_intel [04:21, 02:11] (1023084 MB) -PASS -- TEST datm_cdeps_stochy_gefs_intel [04:22, 02:10] (1026040 MB) -PASS -- TEST datm_cdeps_ciceC_cfsr_intel [04:17, 02:11] (1141744 MB) -PASS -- TEST datm_cdeps_bulk_cfsr_intel [04:21, 02:11] (1157844 MB) -PASS -- TEST datm_cdeps_bulk_gefs_intel [03:18, 02:06] (1020380 MB) -PASS -- TEST datm_cdeps_mx025_cfsr_intel [07:07, 04:57] (1162876 MB) -PASS -- TEST datm_cdeps_mx025_gefs_intel [07:01, 04:53] (1153000 MB) -PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [04:17, 02:09] (1155612 MB) -PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [04:16, 03:07] (2456512 MB) -PASS -- TEST datm_cdeps_gfs_intel [04:18, 03:05] (2400364 MB) - -PASS -- COMPILE datm_cdeps_debug_intel [05:11, 04:02](2 warnings,2 remarks) -PASS -- TEST datm_cdeps_debug_cfsr_intel [07:17, 05:13] (1071332 MB) - -PASS -- COMPILE datm_cdeps_faster_intel [08:11, 07:09],2 remarks) -PASS -- TEST datm_cdeps_control_cfsr_faster_intel [04:16, 02:13] (1144632 MB) - -PASS -- COMPILE datm_cdeps_land_intel [02:11, 00:56],1 remarks) -PASS -- TEST datm_cdeps_lnd_gswp3_intel [04:34, 00:53] (337912 MB) -PASS -- TEST datm_cdeps_lnd_era5_intel [03:24, 00:50] (573320 MB) -PASS -- TEST datm_cdeps_lnd_era5_rst_intel [02:26, 00:33] (576716 MB) - -PASS -- COMPILE atm_ds2s_docn_pcice_intel [11:11, 09:35],3 remarks) -PASS -- TEST atm_ds2s_docn_pcice_intel [08:08, 04:21] (2013732 MB) - -PASS -- COMPILE atm_ds2s_docn_dice_intel [10:11, 08:11],1 remarks) -PASS -- TEST atm_ds2s_docn_dice_intel [08:03, 04:18] (1989296 MB) - -PASS -- COMPILE atml_intel [11:11, 09:37](8 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_sbs_intel [11:24, 07:11] (1900568 MB) -PASS -- TEST control_p8_atmlnd_intel [10:28, 06:40] (1890740 MB) -PASS -- TEST control_restart_p8_atmlnd_intel [05:53, 03:04] (1142388 MB) - -PASS -- COMPILE atml_debug_intel [06:11, 04:46](880 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_debug_intel [10:24, 06:45] (1941568 MB) - -PASS -- COMPILE atmw_intel [12:10, 10:36],8 remarks) -PASS -- TEST atmwav_control_noaero_p8_intel [06:09, 02:42] (1938372 MB) - -PASS -- COMPILE atmaero_intel [11:11, 10:00],1 remarks) -PASS -- TEST atmaero_control_p8_intel [09:11, 05:24] (2013556 MB) -PASS -- TEST atmaero_control_p8_rad_intel [08:09, 05:16] (1787296 MB) -PASS -- TEST atmaero_control_p8_rad_micro_intel [07:56, 05:35] (1799000 MB) - -PASS -- COMPILE atmaq_debug_intel [06:11, 05:01](882 warnings,6 remarks) -PASS -- TEST regional_atmaq_debug_intel [20:41, 17:11] (4525040 MB) - -PASS -- COMPILE atm_gnu [06:10, 04:50] -PASS -- TEST control_c48_gnu [09:49, 07:50] (1522888 MB) -PASS -- TEST control_stochy_gnu [04:29, 02:30] (721624 MB) -PASS -- TEST control_ras_gnu [05:22, 03:55] (722068 MB) -PASS -- TEST control_p8_gnu [07:09, 04:14] (1699760 MB) -PASS -- TEST control_p8_ugwpv1_gnu [06:56, 04:27] (1701268 MB) -PASS -- TEST control_flake_gnu [06:27, 04:55] (803616 MB) - -PASS -- COMPILE rrfs_gnu [06:11, 04:34] -PASS -- TEST rap_control_gnu [11:00, 08:22] (1073276 MB) -PASS -- TEST rap_decomp_gnu [10:45, 08:24] (1073804 MB) -PASS -- TEST rap_2threads_gnu [09:57, 07:20] (1103808 MB) -PASS -- TEST rap_restart_gnu [08:00, 04:14] (879248 MB) -PASS -- TEST rap_sfcdiff_gnu [10:59, 08:18] (1074564 MB) -PASS -- TEST rap_sfcdiff_decomp_gnu [10:44, 08:18] (1075536 MB) -PASS -- TEST rap_sfcdiff_restart_gnu [10:08, 06:09] (877868 MB) -PASS -- TEST hrrr_control_gnu [06:43, 04:27] (1059972 MB) -PASS -- TEST hrrr_control_noqr_gnu [06:42, 04:21] (1127380 MB) -PASS -- TEST hrrr_control_2threads_gnu [05:58, 04:00] (1021864 MB) -PASS -- TEST hrrr_control_decomp_gnu [06:52, 04:32] (1062372 MB) -PASS -- TEST hrrr_control_restart_gnu [04:27, 02:16] (887016 MB) -PASS -- TEST hrrr_control_restart_noqr_gnu [04:24, 02:15] (924548 MB) -PASS -- TEST rrfs_v1beta_gnu [11:11, 08:16] (1067216 MB) - -PASS -- COMPILE atm_dyn32_debug_gnu [07:11, 05:50] -PASS -- TEST control_diag_debug_gnu [03:39, 01:19] (1617840 MB) -PASS -- TEST regional_debug_gnu [08:35, 07:03] (1128708 MB) -PASS -- TEST rap_control_debug_gnu [04:23, 02:10] (1087132 MB) -PASS -- TEST hrrr_control_debug_gnu [03:24, 02:05] (1082420 MB) -PASS -- TEST hrrr_gf_debug_gnu [04:20, 02:02] (1089780 MB) -PASS -- TEST hrrr_c3_debug_gnu [04:21, 02:15] (1085300 MB) -PASS -- TEST rap_diag_debug_gnu [04:34, 02:08] (1263152 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [05:20, 03:09] (1086680 MB) -PASS -- TEST rap_progcld_thompson_debug_gnu [03:20, 02:04] (1092640 MB) -PASS -- TEST rrfs_v1beta_debug_gnu [03:21, 02:01] (1083248 MB) -PASS -- TEST control_ras_debug_gnu [03:20, 01:24] (719648 MB) -PASS -- TEST control_stochy_debug_gnu [03:20, 01:20] (718404 MB) -PASS -- TEST control_debug_p8_gnu [04:42, 02:05] (1718344 MB) -PASS -- TEST rap_flake_debug_gnu [04:24, 02:05] (1092252 MB) -PASS -- TEST rap_clm_lake_debug_gnu [04:22, 02:17] (1092704 MB) -PASS -- TEST gnv1_c96_no_nest_debug_gnu [06:58, 03:47] (1094340 MB) - -PASS -- COMPILE wam_debug_gnu [04:11, 02:28] -PASS -- TEST control_wam_debug_gnu [07:41, 05:19] (1557740 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_gnu [07:11, 05:22] -PASS -- TEST rap_control_dyn32_phy32_gnu [09:42, 07:32] (953008 MB) -PASS -- TEST hrrr_control_dyn32_phy32_gnu [06:56, 04:11] (943804 MB) -PASS -- TEST rap_2threads_dyn32_phy32_gnu [08:58, 06:54] (981732 MB) -PASS -- TEST hrrr_control_2threads_dyn32_phy32_gnu [06:01, 03:33] (881444 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [05:41, 04:03] (943772 MB) -PASS -- TEST rap_restart_dyn32_phy32_gnu [08:00, 05:47] (855452 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [04:32, 02:10] (853256 MB) -PASS -- TEST conus13km_control_gnu [04:50, 02:37] (1257416 MB) -PASS -- TEST conus13km_2threads_gnu [03:38, 01:07] (1161316 MB) -PASS -- TEST conus13km_restart_mismatch_gnu [03:37, 01:34] (926080 MB) - -PASS -- COMPILE atm_dyn64_phy32_gnu [12:11, 10:15] -PASS -- TEST rap_control_dyn64_phy32_gnu [06:44, 04:31] (981344 MB) - -PASS -- COMPILE atm_dyn32_phy32_debug_gnu [10:11, 08:34] -PASS -- TEST rap_control_debug_dyn32_phy32_gnu [04:23, 02:09] (968880 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [04:25, 02:12] (963788 MB) -PASS -- TEST conus13km_debug_gnu [07:42, 06:04] (1275052 MB) -PASS -- TEST conus13km_debug_qr_gnu [07:42, 06:05] (949728 MB) -PASS -- TEST conus13km_debug_2threads_gnu [06:37, 03:44] (1188768 MB) -PASS -- TEST conus13km_radar_tten_debug_gnu [09:40, 06:07] (1343568 MB) - -PASS -- COMPILE atm_dyn64_phy32_debug_gnu [10:11, 08:47] -PASS -- TEST rap_control_dyn64_phy32_debug_gnu [05:25, 02:10] (999580 MB) - -PASS -- COMPILE s2swa_gnu [20:11, 18:58] -PASS -- COMPILE s2s_gnu [17:11, 15:14] -PASS -- TEST cpld_control_nowave_noaero_p8_gnu [11:20, 09:08] (2708040 MB) - -PASS -- COMPILE s2swa_debug_gnu [05:10, 03:38] -PASS -- COMPILE s2sw_pdlib_gnu [17:11, 15:27] -PASS -- TEST cpld_control_pdlib_p8_gnu [30:15, 27:09] (3050756 MB) - -PASS -- COMPILE s2sw_pdlib_debug_gnu [07:10, 05:54] -PASS -- TEST cpld_debug_pdlib_p8_gnu [16:02, 13:16] (2905188 MB) - -PASS -- COMPILE datm_cdeps_gnu [18:11, 16:19] -PASS -- TEST datm_cdeps_control_cfsr_gnu [05:17, 02:21] (770484 MB) - -PASS -- COMPILE atm_fbh_intel [11:11, 09:35](3 warnings,8 remarks) -PASS -- TEST cpld_regional_atm_fbh_intel [12:32, 09:47] (1077296 MB) - +PASS -- COMPILE 's2swa_32bit_intel' [14:11, 12:53] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:32, 08:45](2126 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:11, 17:15] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [16:29, 13:26](1992 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:45, 15:18](2281 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [21:48, 07:57](1352 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:10, 15:18](1915 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:11, 17:59] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [15:49, 13:17](1988 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:10, 05:32] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:31, 23:06](1968 MB) + +PASS -- COMPILE 's2swa_intel' [12:11, 11:04] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:16, 08:10](2193 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:30, 08:55](2199 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:41, 05:23](1954 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:14, 08:11](2214 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:43, 05:35](1726 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [12:11, 09:47](2544 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:13, 08:12](2189 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:12, 06:51](2105 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:27, 08:04](2199 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:26, 16:20](2974 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [20:55, 06:52](2907 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:25, 10:43](3820 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:30, 07:07](3634 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:17, 05:11](2134 MB) + +PASS -- COMPILE 's2sw_intel' [11:11, 10:07] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:08, 07:23](2004 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:17, 07:05](2072 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:10, 05:31] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [15:26, 12:23](2241 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:01] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:19, 08:40](2044 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:11, 09:56] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:22, 04:11](2072 MB) + +PASS -- COMPILE 's2s_intel' [13:11, 11:26] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:53, 06:01](3022 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:53, 02:12](3032 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:04, 01:15](2471 MB) + +PASS -- COMPILE 's2swa_faster_intel' [13:11, 11:43] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [13:26, 10:23](2216 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 15:50] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:09, 14:44](2065 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:25, 07:38](1387 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:25, 16:20](1998 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:10, 04:46] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:06, 23:52](2005 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:11, 08:41] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:27, 03:23](714 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [07:46, 02:51](1596 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:51, 02:56](1601 MB) +PASS -- TEST 'control_latlon_intel' [08:49, 02:50](1587 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:50, 02:56](1589 MB) +PASS -- TEST 'control_c48_intel' [16:50, 10:20](1704 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:31, 05:54](836 MB) +PASS -- TEST 'control_c192_intel' [17:04, 10:32](1781 MB) +PASS -- TEST 'control_c384_intel' [16:57, 12:26](2040 MB) +PASS -- TEST 'control_c384gdas_intel' [17:36, 10:46](1505 MB) +PASS -- TEST 'control_stochy_intel' [03:24, 01:49](669 MB) +PASS -- TEST 'control_stochy_restart_intel' [08:29, 01:18](531 MB) +PASS -- TEST 'control_lndp_intel' [07:27, 01:46](664 MB) +PASS -- TEST 'control_iovr4_intel' [08:26, 02:50](669 MB) +PASS -- TEST 'control_iovr5_intel' [07:27, 02:53](667 MB) +PASS -- TEST 'control_p8_intel' [09:07, 03:57](1880 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [12:13, 04:38](1900 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [11:13, 04:14](1879 MB) +PASS -- TEST 'control_restart_p8_intel' [13:02, 02:18](1161 MB) +PASS -- TEST 'control_noqr_p8_intel' [14:10, 04:36](1882 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [15:06, 02:47](1211 MB) +PASS -- TEST 'control_decomp_p8_intel' [16:51, 03:58](1885 MB) +PASS -- TEST 'control_2threads_p8_intel' [14:59, 03:58](1961 MB) +PASS -- TEST 'control_p8_lndp_intel' [17:41, 06:45](1870 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [18:08, 05:07](1975 MB) +PASS -- TEST 'control_p8_mynn_intel' [17:00, 03:23](1906 MB) +PASS -- TEST 'merra2_thompson_intel' [18:20, 04:29](1896 MB) +PASS -- TEST 'regional_control_intel' [17:44, 05:38](1190 MB) +PASS -- TEST 'regional_restart_intel' [10:39, 03:14](1163 MB) +PASS -- TEST 'regional_decomp_intel' [17:38, 05:45](1180 MB) +PASS -- TEST 'regional_2threads_intel' [15:35, 03:58](1156 MB) +PASS -- TEST 'regional_noquilt_intel' [17:36, 05:35](1521 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [19:46, 05:53](1187 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [18:33, 05:49](1201 MB) +PASS -- TEST 'regional_wofs_intel' [21:35, 07:49](2071 MB) + +PASS -- COMPILE 'rrfs_intel' [10:11, 08:26] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [21:02, 07:08](1220 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [17:07, 04:02](1357 MB) +PASS -- TEST 'rap_decomp_intel' [19:42, 07:38](1146 MB) +PASS -- TEST 'rap_2threads_intel' [19:39, 07:14](1361 MB) +PASS -- TEST 'rap_restart_intel' [07:02, 03:53](1135 MB) +PASS -- TEST 'rap_sfcdiff_intel' [19:55, 07:08](1194 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [19:42, 07:33](1155 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:56, 05:26](1213 MB) +PASS -- TEST 'hrrr_control_intel' [16:50, 03:33](1063 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [16:42, 03:36](1034 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [16:45, 03:18](1127 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:35, 01:57](1012 MB) +PASS -- TEST 'rrfs_v1beta_intel' [20:07, 06:49](1219 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [19:25, 10:19](2004 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [19:23, 10:19](2191 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 10:04] +PASS -- TEST 'control_csawmg_intel' [15:33, 07:25](1038 MB) +PASS -- TEST 'control_ras_intel' [11:20, 03:27](845 MB) + +PASS -- COMPILE 'csawmg_gnu' [07:11, 04:50] +PASS -- TEST 'control_csawmg_gnu' [09:53, 07:10](1068 MB) + +PASS -- COMPILE 'wam_intel' [11:11, 09:07] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [17:46, 09:47](1660 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:11, 09:04] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [11:14, 03:21](1903 MB) +PASS -- TEST 'regional_control_faster_intel' [12:36, 05:42](1191 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:10, 07:31] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:40, 02:02](1608 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:42, 02:00](1622 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:24, 02:32](841 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:24, 02:23](847 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:39, 04:40](1144 MB) +PASS -- TEST 'control_ras_debug_intel' [05:26, 02:25](851 MB) +PASS -- TEST 'control_diag_debug_intel' [05:42, 02:31](1691 MB) +PASS -- TEST 'control_debug_p8_intel' [05:41, 02:42](1921 MB) +PASS -- TEST 'regional_debug_intel' [18:40, 15:40](1141 MB) +PASS -- TEST 'rap_control_debug_intel' [06:21, 04:14](1228 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:25, 04:04](1220 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:22, 04:20](1217 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:20](1226 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:19, 04:16](1229 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:29, 04:42](1312 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:21, 04:19](1224 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:19, 04:17](1218 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:22, 04:07](1228 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:21, 04:09](1226 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:20, 04:09](1220 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:23, 04:08](1232 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:23, 06:39](1215 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:11](1222 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:22, 04:55](1226 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:22, 04:13](1218 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:03, 07:11](1232 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 04:06] +PASS -- TEST 'control_csawmg_debug_gnu' [05:45, 03:06](1038 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:10, 03:45] ( 837 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 08:16] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:01, 03:36](1232 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:52, 05:26](1145 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:51, 03:01](1039 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:46, 05:25](1260 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:41, 02:46](1023 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:42, 03:10](998 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [19:00, 04:03](1097 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:35, 01:39](950 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:10, 08:57] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [09:50, 02:32](1288 MB) +PASS -- TEST 'conus13km_2threads_intel' [15:51, 01:05](1189 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [15:41, 01:27](1131 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:11, 08:51] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:37, 03:51](1076 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:10, 03:44] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [12:22, 04:50](1103 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [11:22, 04:44](1096 MB) +PASS -- TEST 'conus13km_debug_intel' [22:53, 14:05](1341 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [22:51, 14:01](1000 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [18:49, 11:01](1237 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [22:48, 14:06](1427 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:11, 04:44] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [12:29, 04:26](1166 MB) + +PASS -- COMPILE 'hafsw_intel' [15:11, 11:21] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:15, 05:49](844 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:30, 05:36](1246 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [17:26, 06:56](918 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [23:18, 14:55](946 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:22, 15:39](967 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [16:02, 05:33](595 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:23, 07:44](605 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [12:51, 03:01](439 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:15, 08:22](546 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [12:50, 04:08](600 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:52, 03:45](599 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [14:01, 04:59](664 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [10:29, 01:18](457 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:11, 04:58] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [20:49, 12:04](631 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [14:11, 10:19] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [28:59, 15:57](735 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [29:06, 15:44](833 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 11:07] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [25:53, 11:00](807 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:11, 09:46] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [25:15, 07:32](912 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [24:11, 07:19](905 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [30:03, 16:31](1341 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:10, 06:20] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [15:21, 02:14](1130 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:21, 01:26](1111 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [15:18, 02:08](1017 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [14:18, 02:15](1018 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [14:18, 02:11](1022 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [13:18, 02:14](1163 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [14:18, 02:19](1142 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [13:19, 02:12](1020 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [15:16, 05:24](1171 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [15:10, 05:19](1152 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [11:15, 02:17](1144 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [12:17, 03:09](2400 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [11:17, 03:13](2396 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:58] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [12:18, 05:13](1075 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 05:19] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [08:17, 02:16](1148 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:48] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:31, 01:00](339 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:22, 01:00](572 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:26, 00:39](573 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:11, 09:19] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:09, 03:24](2019 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:11, 08:34] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:01, 03:20](1987 MB) + +PASS -- COMPILE 'atml_intel' [13:10, 09:17] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:18, 05:55](1892 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:14, 05:56](1892 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:54, 03:18](1140 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:10, 04:48] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:08, 06:39](1928 MB) + +PASS -- COMPILE 'atmw_intel' [14:11, 10:09] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:08, 02:47](1942 MB) + +PASS -- COMPILE 'atmaero_intel' [14:11, 09:34] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [10:07, 05:42](1999 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [11:20, 05:27](1791 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:59, 05:31](1793 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:11, 04:11] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [21:09, 17:32](4521 MB) + +PASS -- COMPILE 'atm_gnu' [09:11, 05:10] +PASS -- TEST 'control_c48_gnu' [13:53, 07:59](1525 MB) +PASS -- TEST 'control_stochy_gnu' [06:24, 02:41](722 MB) +PASS -- TEST 'control_ras_gnu' [08:21, 04:13](725 MB) +PASS -- TEST 'control_p8_gnu' [09:16, 05:16](1702 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [08:55, 05:16](1718 MB) +PASS -- TEST 'control_flake_gnu' [07:25, 04:52](800 MB) + +PASS -- COMPILE 'rrfs_gnu' [08:10, 05:18] +PASS -- TEST 'rap_control_gnu' [11:52, 08:33](1070 MB) +PASS -- TEST 'rap_decomp_gnu' [11:55, 08:30](1072 MB) +PASS -- TEST 'rap_2threads_gnu' [11:06, 07:35](1132 MB) +PASS -- TEST 'rap_restart_gnu' [06:59, 04:12](880 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [12:00, 08:18](1090 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:00, 08:25](1074 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:16, 06:19](877 MB) +PASS -- TEST 'hrrr_control_gnu' [07:46, 04:37](1062 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:48, 04:30](1127 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:01, 03:57](1021 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:53, 04:44](1060 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:30, 02:18](876 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:34, 02:13](924 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:11, 08:13](1067 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [11:11, 06:03] +PASS -- TEST 'control_diag_debug_gnu' [03:48, 01:33](1618 MB) +PASS -- TEST 'regional_debug_gnu' [09:41, 07:45](1127 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:24, 02:11](1090 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:22, 02:01](1080 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:24, 02:19](1085 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:22, 02:07](1087 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:35, 02:29](1263 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:23, 03:20](1090 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:24, 02:24](1091 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:26, 02:18](1082 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:21, 01:26](719 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:22, 01:30](721 MB) +PASS -- TEST 'control_debug_p8_gnu' [04:46, 02:25](1698 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:26, 02:12](1090 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:23, 02:19](1091 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:03, 03:48](1091 MB) + +PASS -- COMPILE 'wam_debug_gnu' [08:11, 02:50] +PASS -- TEST 'control_wam_debug_gnu' [07:54, 05:14](1557 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [11:11, 04:32] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:59, 07:54](953 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:10, 04:32](941 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:42, 07:01](966 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:53, 03:43](880 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:54, 04:04](941 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:54, 05:47](854 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:28, 02:15](864 MB) +PASS -- TEST 'conus13km_control_gnu' [05:01, 02:41](1254 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:51, 01:06](1167 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:51, 01:30](936 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [17:11, 10:57] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:42, 04:38](985 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [15:11, 09:09] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:26, 02:05](968 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:27, 02:08](964 MB) +PASS -- TEST 'conus13km_debug_gnu' [09:01, 06:19](1276 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:55, 06:11](967 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [05:52, 03:47](1187 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:54, 06:04](1343 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [14:11, 09:13] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:28, 02:23](996 MB) + +PASS -- COMPILE 's2swa_gnu' [22:11, 17:14] + +PASS -- COMPILE 's2s_gnu' [21:11, 16:27] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [12:27, 09:42](2721 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [06:10, 03:45] + +PASS -- COMPILE 's2sw_pdlib_gnu' [23:12, 18:24] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [29:29, 26:52](3026 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [11:11, 06:19] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:20, 12:57](2896 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [20:11, 15:59] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:17, 02:20](770 MB) + +PASS -- COMPILE 'atm_fbh_intel' [12:11, 09:31] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:37, 09:58](1079 MB) SYNOPSIS: -Starting Date/Time: 2024-09-26 18:31:55 -Ending Date/Time: 2024-09-26 20:11:21 -Total Time: 01h:39m:26s +Starting Date/Time: 20241004 08:01:09 +Ending Date/Time: 20241004 10:15:55 +Total Time: 02h:15m:53s Compiles Completed: 58/58 Tests Completed: 245/245 - NOTES: -A file test_changes.list was generated but is empty. -If you are using this log as a pull request verification, please commit test_changes.list. +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. Result: SUCCESS -====END OF hercules REGRESSION TESTING LOG==== +====END OF HERCULES REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 1572ea8305..9040279613 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,22 +1,22 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -0f7fd4cc7a42417c56a5784e3b3891deeae01201 +12373b99074bcffc16efda0d1491bdc6a10e9914 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) - 5c7ba6472e1c1b73899f19710e38de4be1a88223 CICE-interface/CICE (remotes/origin/support_intelllvm) - 4c87095256c1c599c3ccaa857a95744158751a60 CICE-interface/CICE/icepack (Icepack1.1.0-191-g4c87095) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) + 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) - 3fd205a8ce07944d38cb7ca6e882dffb2af03d1e FV3 (remotes/origin/support_intelllvm) - b947391ed4d23ffa15f5c854e7d5c4849abefc40 FV3/atmos_cubed_sphere (201912_public_release-414-gb947391) + 1aba87cb308fb52912e7fe6dd6b53d0ce7077554 FV3 (heads/develop) + 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 4e6e96c5b6cd28d1e677539792cf5e21a8a67379 FV3/ccpp/physics (remotes/origin/support_intelllvm) + 5a363134a77535f35594e56b58ba1e6141a23d2b FV3/ccpp/physics (EP4-884-g5a363134) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 55ec82b08ca7d914ace595d4eecd54ae640ade31 FV3/upp (upp_gfsv16_release.v1.0.8-385-g55ec82b) + 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) @@ -25,7 +25,7 @@ Submodule hashes used in testing: 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) - 6810b2d8dbceea2b5e47b3f1b59b5461aded3827 WW3 (remotes/origin/support_intelllvm) + 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,256 +36,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/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_773938 +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_2224851 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-r) - USE ROCOTO - -PASS -- COMPILE 's2swa_32bit_intel' [42:57, 42:57] ( 1 warnings 1380 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:16, 08:20](2001 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [48:05, 48:05] ( 1 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:04, 21:16](1887 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:51, 22:00](1989 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:31, 10:38](1136 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:03, 24:19](1849 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [47:37, 47:36] ( 1 warnings 1424 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [20:52, 20:15](1855 MB) - -PASS -- COMPILE 's2swa_intel' [43:27, 43:27] ( 1 warnings 1399 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:01, 09:57](2040 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:59, 09:55](2062 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:17, 05:22](1713 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:47, 09:39](2068 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:34, 05:28](1723 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:05, 09:16](2312 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:38, 09:48](2018 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:00, 08:12](1978 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:31, 09:37](2068 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:53, 06:55](1997 MB) - -PASS -- COMPILE 's2sw_intel' [39:46, 39:46] ( 1 warnings 1284 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:23, 07:33](1901 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:27, 09:28](1956 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:16, 06:16] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [17:25, 16:24](2072 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:59, 05:59] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:08, 11:19](1924 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [36:39, 36:39] ( 1010 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:49, 05:48](1953 MB) - -PASS -- COMPILE 's2s_intel' [37:30, 37:30] ( 1 warnings 1033 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:53, 10:18](3018 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:10, 03:28](3011 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:30, 01:52](2463 MB) - -PASS -- COMPILE 's2swa_faster_intel' [32:43, 32:43] ( 1 warnings 1615 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:26, 09:21](2060 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [46:54, 46:54] ( 1 warnings 1344 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:19, 20:28](1908 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:24, 10:32](1129 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:40, 23:53](1892 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:08, 06:08] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:02, 33:14](1928 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [36:54, 36:54] ( 1 warnings 1116 remarks ) -PASS -- TEST 'control_flake_intel' [04:37, 04:21](650 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:42, 04:10](1545 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:54, 04:19](1546 MB) -PASS -- TEST 'control_latlon_intel' [04:32, 04:10](1531 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:00, 04:23](1537 MB) -PASS -- TEST 'control_c48_intel' [18:34, 18:03](1705 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:31, 10:13](832 MB) -PASS -- TEST 'control_c192_intel' [16:32, 15:51](1678 MB) -PASS -- TEST 'control_c384_intel' [24:22, 22:56](1815 MB) -PASS -- TEST 'control_c384gdas_intel' [15:28, 13:13](1007 MB) -PASS -- TEST 'control_stochy_intel' [02:25, 02:10](603 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:26, 01:14](438 MB) -PASS -- TEST 'control_lndp_intel' [02:19, 02:04](604 MB) -PASS -- TEST 'control_iovr4_intel' [03:34, 03:17](601 MB) -PASS -- TEST 'control_iovr5_intel' [03:32, 03:15](606 MB) -PASS -- TEST 'control_p8_intel' [05:29, 04:47](1809 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:40, 03:57](1806 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:12, 04:37](1823 MB) -PASS -- TEST 'control_restart_p8_intel' [03:09, 02:37](1051 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:15, 04:40](1828 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:13, 02:36](1079 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:27, 04:56](1802 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:03, 04:32](1910 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:06, 08:37](1803 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:47, 05:12](1896 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:41, 04:03](1839 MB) -PASS -- TEST 'merra2_thompson_intel' [04:58, 04:25](1850 MB) -PASS -- TEST 'regional_control_intel' [07:36, 07:09](1010 MB) -PASS -- TEST 'regional_restart_intel' [04:13, 03:45](1002 MB) -PASS -- TEST 'regional_decomp_intel' [07:57, 07:31](997 MB) -PASS -- TEST 'regional_2threads_intel' [04:52, 04:25](996 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:46, 07:13](1008 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:40, 07:14](1005 MB) - -PASS -- COMPILE 'rrfs_intel' [34:17, 34:17] ( 3 warnings 1092 remarks ) -PASS -- TEST 'rap_control_intel' [10:31, 10:03](990 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:21, 05:30](1166 MB) -PASS -- TEST 'rap_decomp_intel' [11:03, 10:35](987 MB) -PASS -- TEST 'rap_2threads_intel' [10:03, 09:32](1073 MB) -PASS -- TEST 'rap_restart_intel' [05:34, 05:13](980 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:32, 10:03](986 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:07, 10:40](981 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:55, 07:29](994 MB) -PASS -- TEST 'hrrr_control_intel' [05:34, 05:09](984 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:42, 05:18](976 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:17, 04:49](1049 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:58, 02:44](908 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:34, 10:01](984 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:42, 13:28](1904 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:12, 13:00](1927 MB) - -PASS -- COMPILE 'csawmg_intel' [34:12, 34:12] ( 1091 remarks ) -PASS -- TEST 'control_csawmg_intel' [08:27, 08:04](966 MB) -PASS -- TEST 'control_ras_intel' [04:28, 04:17](667 MB) - -PASS -- COMPILE 'wam_intel' [34:49, 34:49] ( 994 remarks ) -PASS -- TEST 'control_wam_intel' [14:59, 14:27](1585 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [36:48, 36:48] ( 1294 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:16, 03:39](1797 MB) -PASS -- TEST 'regional_control_faster_intel' [06:57, 06:37](1004 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:23, 08:23] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:13, 02:43](1546 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:14, 02:39](1538 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:54, 03:42](789 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:30, 03:20](781 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:49, 05:25](1089 MB) -PASS -- TEST 'control_ras_debug_intel' [03:34, 03:22](796 MB) -PASS -- TEST 'control_diag_debug_intel' [03:49, 03:19](1635 MB) -PASS -- TEST 'control_debug_p8_intel' [03:38, 03:10](1859 MB) -PASS -- TEST 'regional_debug_intel' [22:30, 22:05](1037 MB) -PASS -- TEST 'rap_control_debug_intel' [06:19, 06:07](1161 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:11, 05:56](1157 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:16, 06:05](1156 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:18, 06:05](1161 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:15, 06:03](1158 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:43, 06:20](1247 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:24, 06:10](1165 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:22, 06:11](1161 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:21, 06:08](1158 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:18, 06:04](1163 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:09, 05:55](1160 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:19, 06:06](1167 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:11, 09:57](1164 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:19, 06:05](1154 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:43, 07:29](1161 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:27, 06:12](1159 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:07, 10:39](1170 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:17, 05:16] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [17:03, 16:30](1622 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [30:41, 30:40] ( 3 warnings 1026 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:57, 05:07](1045 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:46, 08:20](893 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:52, 04:26](865 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:13, 07:52](952 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:25, 04:00](903 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:59, 04:36](856 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:37, 06:14](892 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:33, 02:20](839 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [31:51, 31:51] ( 3 warnings 1199 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:22, 02:43](1095 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:44, 01:12](1035 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:03, 01:30](1009 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:10, 31:10] ( 3 warnings 1046 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:55, 05:23](907 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:19, 05:19] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:15, 06:00](1043 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:08, 05:53](1042 MB) -PASS -- TEST 'conus13km_debug_intel' [19:19, 18:41](1142 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [19:36, 18:59](861 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:18, 10:46](1094 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:16, 18:43](1210 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:13, 05:13] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:27, 06:10](1080 MB) - -PASS -- COMPILE 'hafsw_intel' [39:09, 39:08] ( 1 warnings 1418 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:51, 06:39](708 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:21, 06:00](1058 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:12, 08:50](748 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:07, 15:53](780 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:47, 17:37](798 MB) -PASS -- TEST 'gnv1_nested_intel' [07:45, 06:23](1636 MB) - -PASS -- COMPILE 'hafs_all_intel' [35:41, 35:41] ( 1265 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:25, 08:17](754 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:30, 08:18](739 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:24, 08:24] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:46, 03:37](1068 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 02:09](1031 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:52, 03:43](919 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:39, 03:31](928 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:40, 03:33](929 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:43, 03:34](1055 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:43, 03:35](1070 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:36, 03:28](932 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:43, 07:43](890 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:35, 07:34](846 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:40, 03:33](1067 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:11, 05:01](2317 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:14, 05:05](2419 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:26, 03:26] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 08:07](1027 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:25, 08:25] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:45, 03:36](1085 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:46, 01:46] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:28, 01:05](239 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:13, 00:56](266 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:53, 00:36](257 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [36:02, 36:02] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:37, 04:49](1886 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [35:07, 35:07] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:16, 04:34](1855 MB) - -PASS -- COMPILE 'atml_intel' [30:07, 30:07] ( 8 warnings 1157 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:21, 05:29](1841 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:15, 05:33](1823 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:36, 03:06](1057 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:18, 06:18] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:59, 07:12](1885 MB) - -PASS -- COMPILE 'atmw_intel' [37:19, 37:18] ( 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:57, 02:20](1832 MB) - -PASS -- COMPILE 'atmaero_intel' [35:28, 35:28] ( 1098 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:59, 05:13](1930 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:01, 06:13](1713 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:54, 06:17](1719 MB) - -PASS -- COMPILE 'atm_fbh_intel' [31:17, 31:17] ( 3 warnings 996 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:46, 15:29](1019 MB) +* (-a) - HPC PROJECT ACCOUNT: h-nems +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [20:24, 42:18] ( 1 warnings 1380 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [25:29, 08:22](2025 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [27:22, 48:38] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [31:11, 20:59](1895 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [53:25, 21:47](2017 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [41:19, 10:04](1128 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [34:07, 24:11](1846 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [29:24, 50:47] ( 1 warnings 1424 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [27:57, 20:37](1877 MB) + +PASS -- COMPILE 's2swa_intel' [21:24, 43:25] ( 1 warnings 1399 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [26:14, 09:56](2058 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [26:35, 10:04](2072 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:19, 05:32](1718 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [26:15, 10:04](2082 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:18, 05:39](1715 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [25:10, 09:26](2315 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [26:09, 10:00](2060 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [24:27, 08:25](2014 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [26:30, 09:55](2065 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [23:24, 07:08](2031 MB) + +PASS -- COMPILE 's2sw_intel' [19:22, 40:38] ( 1 warnings 1284 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [25:28, 07:34](1905 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [27:44, 09:45](1951 MB) + +PASS -- COMPILE 's2swa_debug_intel' [23:14, 06:26] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [25:28, 16:27](2089 MB) + +PASS -- COMPILE 's2sw_debug_intel' [22:13, 06:20] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [20:14, 11:24](1926 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [52:18, 36:55] ( 1010 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [22:32, 05:32](1974 MB) + +PASS -- COMPILE 's2s_intel' [46:15, 37:24] ( 1 warnings 1033 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [26:57, 10:23](3021 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [19:58, 03:30](3019 MB) +PASS -- TEST 'cpld_restart_c48_intel' [09:01, 01:58](2454 MB) + +PASS -- COMPILE 's2swa_faster_intel' [40:24, 32:33] ( 1 warnings 1615 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [42:57, 09:22](2068 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [54:20, 46:22] ( 1 warnings 1344 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:16, 20:55](1915 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [57:50, 10:13](1127 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [11:36, 24:11](1904 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:12, 06:04] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [06:23, 33:19](1932 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:20, 36:48] ( 1 warnings 1116 remarks ) +PASS -- TEST 'control_flake_intel' [20:03, 04:19](648 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [20:24, 04:19](1544 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [23:30, 04:23](1542 MB) +PASS -- TEST 'control_latlon_intel' [20:20, 04:12](1541 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [20:29, 04:20](1534 MB) +PASS -- TEST 'control_c48_intel' [37:35, 18:09](1698 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [30:15, 10:15](829 MB) +PASS -- TEST 'control_c192_intel' [18:36, 15:51](1690 MB) +PASS -- TEST 'control_c384_intel' [26:33, 23:13](1813 MB) +PASS -- TEST 'control_c384gdas_intel' [17:23, 13:22](1001 MB) +PASS -- TEST 'control_stochy_intel' [04:58, 02:10](611 MB) +PASS -- TEST 'control_stochy_restart_intel' [18:29, 01:13](432 MB) +PASS -- TEST 'control_lndp_intel' [18:03, 02:00](600 MB) +PASS -- TEST 'control_iovr4_intel' [19:06, 03:11](599 MB) +PASS -- TEST 'control_iovr5_intel' [19:06, 03:19](597 MB) +PASS -- TEST 'control_p8_intel' [37:18, 04:48](1818 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [36:14, 04:02](1837 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [36:01, 04:42](1816 MB) +PASS -- TEST 'control_restart_p8_intel' [14:52, 02:54](1060 MB) +PASS -- TEST 'control_noqr_p8_intel' [32:54, 04:40](1817 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [14:03, 02:54](1072 MB) +PASS -- TEST 'control_decomp_p8_intel' [32:53, 04:45](1824 MB) +PASS -- TEST 'control_2threads_p8_intel' [32:50, 04:30](1914 MB) +PASS -- TEST 'control_p8_lndp_intel' [36:50, 08:38](1828 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [33:04, 05:10](1903 MB) +PASS -- TEST 'control_p8_mynn_intel' [32:00, 04:00](1852 MB) +PASS -- TEST 'merra2_thompson_intel' [31:56, 04:18](1837 MB) +PASS -- TEST 'regional_control_intel' [37:45, 07:12](1013 MB) +PASS -- TEST 'regional_restart_intel' [14:46, 04:03](1002 MB) +PASS -- TEST 'regional_decomp_intel' [35:45, 07:31](1003 MB) +PASS -- TEST 'regional_2threads_intel' [28:42, 04:21](991 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [24:50, 07:14](1003 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [20:40, 07:09](1013 MB) + +PASS -- COMPILE 'rrfs_intel' [50:17, 34:18] ( 3 warnings 1092 remarks ) +PASS -- TEST 'rap_control_intel' [54:21, 10:12](988 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [49:40, 05:41](1167 MB) +PASS -- TEST 'rap_decomp_intel' [55:12, 10:49](982 MB) +PASS -- TEST 'rap_2threads_intel' [54:21, 09:48](1067 MB) +PASS -- TEST 'rap_restart_intel' [11:54, 05:08](979 MB) +PASS -- TEST 'rap_sfcdiff_intel' [54:21, 10:12](979 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [55:12, 10:49](988 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [25:55, 07:47](996 MB) +PASS -- TEST 'hrrr_control_intel' [50:19, 05:11](986 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [50:19, 05:13](968 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [55:11, 04:40](1051 MB) +PASS -- TEST 'hrrr_control_restart_intel' [20:38, 03:03](909 MB) +PASS -- TEST 'rrfs_v1beta_intel' [54:30, 10:13](985 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [58:00, 13:37](1919 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [57:00, 13:04](1936 MB) + +PASS -- COMPILE 'csawmg_intel' [50:17, 34:22] ( 1091 remarks ) +PASS -- TEST 'control_csawmg_intel' [13:11, 08:06](969 MB) +PASS -- TEST 'control_ras_intel' [48:53, 04:23](667 MB) + +PASS -- COMPILE 'wam_intel' [37:16, 34:50] ( 994 remarks ) +PASS -- TEST 'control_wam_intel' [32:03, 14:44](1604 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [41:32, 36:49] ( 1294 remarks ) +PASS -- TEST 'control_p8_faster_intel' [31:01, 03:54](1834 MB) +PASS -- TEST 'regional_control_faster_intel' [33:41, 06:51](997 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:30, 08:12] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [19:48, 03:02](1562 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [19:50, 03:01](1570 MB) +PASS -- TEST 'control_stochy_debug_intel' [19:29, 04:02](779 MB) +PASS -- TEST 'control_lndp_debug_intel' [19:27, 03:42](780 MB) +PASS -- TEST 'control_csawmg_debug_intel' [21:44, 05:46](1087 MB) +PASS -- TEST 'control_ras_debug_intel' [16:24, 03:48](784 MB) +PASS -- TEST 'control_diag_debug_intel' [16:47, 03:40](1639 MB) +PASS -- TEST 'control_debug_p8_intel' [15:46, 03:37](1852 MB) +PASS -- TEST 'regional_debug_intel' [33:44, 22:21](1033 MB) +PASS -- TEST 'rap_control_debug_intel' [18:26, 06:24](1161 MB) +PASS -- TEST 'hrrr_control_debug_intel' [11:34, 06:05](1165 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [17:27, 06:20](1165 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [17:28, 06:27](1167 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [17:31, 06:24](1160 MB) +PASS -- TEST 'rap_diag_debug_intel' [16:39, 06:43](1248 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [16:30, 06:32](1164 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [13:25, 06:21](1178 MB) +PASS -- TEST 'rap_lndp_debug_intel' [13:29, 06:04](1169 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [17:29, 06:11](1163 MB) +PASS -- TEST 'rap_noah_debug_intel' [17:28, 06:08](1165 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [16:27, 06:12](1165 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [19:28, 10:06](1167 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [15:30, 06:10](1160 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [11:28, 07:26](1170 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:25, 06:15](1168 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:53, 10:44](1164 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:30, 05:17] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [44:02, 16:48](1644 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [46:38, 30:35] ( 3 warnings 1026 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [22:17, 05:30](1041 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [24:51, 08:29](899 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [20:52, 04:20](868 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [24:51, 08:07](938 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [23:41, 03:59](907 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [21:45, 04:37](860 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [15:50, 06:20](891 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [15:30, 02:26](839 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:33, 31:57] ( 3 warnings 1199 remarks ) +PASS -- TEST 'conus13km_control_intel' [21:54, 02:46](1098 MB) +PASS -- TEST 'conus13km_2threads_intel' [11:54, 01:19](1036 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [11:52, 01:38](1017 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [00:18, 31:33] ( 3 warnings 1046 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:52, 05:26](908 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [30:14, 05:33] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [31:28, 06:17](1036 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [30:27, 06:07](1053 MB) +PASS -- TEST 'conus13km_debug_intel' [44:03, 19:01](1150 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [44:03, 19:09](889 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [35:53, 11:10](1091 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [42:50, 19:08](1208 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:11, 05:16] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [26:28, 06:25](1087 MB) + +PASS -- COMPILE 'hafsw_intel' [04:20, 39:39] ( 1 warnings 1418 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:19, 06:46](699 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:30, 06:06](1070 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [45:15, 09:15](754 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:22, 16:05](776 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [59:25, 17:50](797 MB) +PASS -- TEST 'gnv1_nested_intel' [43:39, 06:40](1669 MB) + +PASS -- COMPILE 'hafs_all_intel' [55:16, 35:44] ( 1265 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [13:29, 08:25](752 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:34, 08:24](738 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [28:14, 08:11] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:24, 03:44](1075 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [07:25, 02:10](1049 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [09:24, 03:37](937 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [09:24, 03:40](934 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [09:24, 03:42](932 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [09:24, 03:44](1078 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [09:24, 03:45](1067 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [08:23, 03:13](938 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [13:16, 07:41](897 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:18, 07:36](851 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [09:21, 03:43](1077 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [10:24, 05:10](2373 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [10:24, 05:13](2432 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [22:13, 03:20] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [18:27, 08:17](1007 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [11:12, 08:10] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [09:19, 03:44](1073 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [12:14, 01:55] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [08:36, 01:05](240 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [08:31, 00:57](267 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [11:27, 00:41](260 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [41:20, 36:07] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [26:43, 05:01](1902 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [40:16, 35:18] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [27:59, 04:53](1889 MB) + +PASS -- COMPILE 'atml_intel' [38:14, 36:43] ( 8 warnings 1157 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [23:52, 05:51](1858 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [23:52, 05:47](1859 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [15:48, 03:17](1066 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:11, 06:19] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [36:55, 07:26](1906 MB) + +PASS -- COMPILE 'atmw_intel' [39:18, 37:21] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [58:43, 02:34](1864 MB) + +PASS -- COMPILE 'atmaero_intel' [05:19, 35:37] ( 1098 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [11:16, 05:19](1943 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [12:16, 06:24](1714 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:59, 06:29](1721 MB) + +PASS -- COMPILE 'atm_fbh_intel' [53:17, 31:35] ( 3 warnings 996 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [25:42, 15:19](1022 MB) SYNOPSIS: -Starting Date/Time: 20240925 15:04:22 -Ending Date/Time: 20240926 22:40:41 -Total Time: 07h:36m:46s +Starting Date/Time: 20241003 21:13:31 +Ending Date/Time: 20241004 10:39:52 +Total Time: 13h:27m:08s Compiles Completed: 37/37 Tests Completed: 165/165 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index d624f0297a..03864bbf5c 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,353 +1,22 @@ -====START OF orion REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -0f7fd4cc7a42417c56a5784e3b3891deeae01201 - -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) - 5c7ba6472e1c1b73899f19710e38de4be1a88223 CICE-interface/CICE (remotes/origin/support_intelllvm) - 4c87095256c1c599c3ccaa857a95744158751a60 CICE-interface/CICE/icepack (Icepack1.1.0-191-g4c87095) - dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3fd205a8ce07944d38cb7ca6e882dffb2af03d1e FV3 (remotes/origin/support_intelllvm) - b947391ed4d23ffa15f5c854e7d5c4849abefc40 FV3/atmos_cubed_sphere (201912_public_release-414-gb947391) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 4e6e96c5b6cd28d1e677539792cf5e21a8a67379 FV3/ccpp/physics (remotes/origin/support_intelllvm) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 55ec82b08ca7d914ace595d4eecd54ae640ade31 FV3/upp (upp_gfsv16_release.v1.0.8-385-g55ec82b) --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) - 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) - 6810b2d8dbceea2b5e47b3f1b59b5461aded3827 WW3 (remotes/origin/support_intelllvm) - 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-20240909 -COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_3145618 - -UFS_TEST.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-r) - USE ROCOTO - -PASS -- COMPILE s2swa_32bit_intel [17:34, 17:33](1 warnings,10 remarks) -PASS -- TEST cpld_control_p8_mixedmode_intel [15:47, 14:28] (2083844 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_intel [21:37, 21:37](1 warnings,10 remarks) -PASS -- TEST cpld_control_gfsv17_intel [19:31, 18:04] (1942328 MB) -PASS -- TEST cpld_control_gfsv17_iau_intel [21:19, 19:22] (2123500 MB) -PASS -- TEST cpld_restart_gfsv17_intel [11:13, 09:15] (1222260 MB) -PASS -- TEST cpld_mpi_gfsv17_intel [21:38, 20:23] (1868720 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [20:45, 20:45](1 warnings,10 remarks) -PASS -- TEST cpld_control_sfs_intel [18:29, 17:50] (1939580 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [09:52, 09:52](1523 warnings,2000 remarks) -PASS -- TEST cpld_debug_gfsv17_intel [29:34, 28:13] (1928880 MB) - -PASS -- COMPILE s2swa_intel [17:33, 17:33](1 warnings,10 remarks) -PASS -- TEST cpld_control_p8_intel [15:20, 14:08] (2137480 MB) -PASS -- TEST cpld_control_p8.v2.sfc_intel [15:43, 14:28] (2133644 MB) -PASS -- TEST cpld_restart_p8_intel [09:32, 08:08] (1789208 MB) -PASS -- TEST cpld_control_qr_p8_intel [15:31, 14:26] (2165128 MB) -PASS -- TEST cpld_restart_qr_p8_intel [09:24, 07:57] (1693984 MB) -PASS -- TEST cpld_2threads_p8_intel [14:40, 13:32] (2422804 MB) -PASS -- TEST cpld_decomp_p8_intel [15:46, 14:37] (2137268 MB) -PASS -- TEST cpld_mpi_p8_intel [14:09, 12:58] (2036456 MB) -PASS -- TEST cpld_control_ciceC_p8_intel [15:51, 14:48] (2144180 MB) -PASS -- TEST cpld_control_c192_p8_intel [18:16, 16:20] (2700860 MB) -PASS -- TEST cpld_restart_c192_p8_intel [11:21, 08:43] (2708868 MB) -PASS -- TEST cpld_bmark_p8_intel [16:33, 11:02] (3677612 MB) -PASS -- TEST cpld_restart_bmark_p8_intel [14:51, 07:23] (3474120 MB) -PASS -- TEST cpld_s2sa_p8_intel [07:13, 06:05] (2102708 MB) - -PASS -- COMPILE s2sw_intel [15:53, 15:53](1 warnings,10 remarks) -PASS -- TEST cpld_control_noaero_p8_intel [14:35, 13:38] (1966848 MB) -PASS -- TEST cpld_control_nowave_noaero_p8_intel [09:06, 07:58] (2035148 MB) - -PASS -- COMPILE s2swa_debug_intel [09:13, 09:13](1413 warnings,1230 remarks) -PASS -- TEST cpld_debug_p8_intel [14:39, 13:22] (2172624 MB) - -PASS -- COMPILE s2sw_debug_intel [08:50, 08:50](1413 warnings,1230 remarks) -PASS -- TEST cpld_debug_noaero_p8_intel [10:39, 09:32] (2002024 MB) - -PASS -- COMPILE s2s_aoflux_intel [15:12, 15:12],3 remarks) -PASS -- TEST cpld_control_noaero_p8_agrid_intel [05:57, 04:51] (2037628 MB) - -PASS -- COMPILE s2s_intel [15:18, 15:17](1 warnings,3 remarks) -PASS -- TEST cpld_control_c48_intel [11:12, 10:27] (3032584 MB) -PASS -- TEST cpld_warmstart_c48_intel [04:27, 03:43] (3025332 MB) -PASS -- TEST cpld_restart_c48_intel [02:49, 02:05] (2489020 MB) - -PASS -- COMPILE s2swa_faster_intel [16:59, 16:59](1 warnings,10 remarks) -PASS -- TEST cpld_control_p8_faster_intel [16:14, 15:00] (2134552 MB) - -PASS -- COMPILE s2sw_pdlib_intel [21:25, 21:25](1 warnings,10 remarks) -PASS -- TEST cpld_control_pdlib_p8_intel [19:08, 18:10] (2007696 MB) -PASS -- TEST cpld_restart_pdlib_p8_intel [10:06, 09:00] (1245956 MB) -PASS -- TEST cpld_mpi_pdlib_p8_intel [21:31, 20:34] (1930400 MB) - -PASS -- COMPILE s2sw_pdlib_debug_intel [07:50, 07:50](1523 warnings,2000 remarks) -FAIL -- TEST cpld_debug_pdlib_p8_intel - -PASS -- COMPILE atm_dyn32_intel [13:28, 13:28](1 warnings,1 remarks) -PASS -- TEST control_flake_intel [04:06, 03:51] (691548 MB) -PASS -- TEST control_CubedSphereGrid_intel [03:58, 03:32] (1574200 MB) -PASS -- TEST control_CubedSphereGrid_parallel_intel [04:16, 03:42] (1578768 MB) -PASS -- TEST control_latlon_intel [03:51, 03:33] (1576212 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_intel [04:10, 03:34] (1583804 MB) -PASS -- TEST control_c48_intel [15:34, 15:03] (1702592 MB) -PASS -- TEST control_c48.v2.sfc_intel [08:36, 08:17] (841944 MB) -PASS -- TEST control_c192_intel [13:51, 13:16] (1731880 MB) -PASS -- TEST control_c384_intel [18:12, 16:44] (1999136 MB) -PASS -- TEST control_c384gdas_intel [14:00, 11:54] (1325192 MB) -PASS -- TEST control_stochy_intel [02:06, 01:50] (642124 MB) -PASS -- TEST control_stochy_restart_intel [01:33, 01:05] (474300 MB) -PASS -- TEST control_lndp_intel [01:58, 01:43] (643928 MB) -PASS -- TEST control_iovr4_intel [03:00, 02:44] (631052 MB) -PASS -- TEST control_iovr5_intel [02:54, 02:43] (635260 MB) -PASS -- TEST control_p8_intel [05:11, 04:12] (1862988 MB) -PASS -- TEST control_p8.v2.sfc_intel [04:34, 03:35] (1870468 MB) -PASS -- TEST control_p8_ugwpv1_intel [05:12, 04:05] (1871824 MB) -PASS -- TEST control_restart_p8_intel [03:17, 02:20] (1086532 MB) -PASS -- TEST control_noqr_p8_intel [05:06, 04:07] (1857320 MB) -PASS -- TEST control_restart_noqr_p8_intel [03:30, 02:24] (1130900 MB) -PASS -- TEST control_decomp_p8_intel [05:18, 04:12] (1852340 MB) -PASS -- TEST control_2threads_p8_intel [05:32, 04:29] (1939364 MB) -PASS -- TEST control_p8_lndp_intel [07:52, 07:20] (1858120 MB) -PASS -- TEST control_p8_rrtmgp_intel [06:05, 04:52] (1943464 MB) -PASS -- TEST control_p8_mynn_intel [04:47, 03:37] (1886452 MB) -PASS -- TEST merra2_thompson_intel [05:11, 03:49] (1884888 MB) -PASS -- TEST regional_control_intel [07:03, 06:36] (1078892 MB) -PASS -- TEST regional_restart_intel [06:23, 05:43] (1073532 MB) -PASS -- TEST regional_decomp_intel [07:30, 07:03] (1069120 MB) -PASS -- TEST regional_2threads_intel [05:21, 04:53] (1072600 MB) -PASS -- TEST regional_noquilt_intel [06:58, 06:32] (1385612 MB) -PASS -- TEST regional_netcdf_parallel_intel [07:02, 06:31] (1075292 MB) -PASS -- TEST regional_2dwrtdecomp_intel [07:03, 06:36] (1071116 MB) -PASS -- TEST regional_wofs_intel [08:23, 07:59] (1893064 MB) - -PASS -- COMPILE rrfs_intel [12:37, 12:37](3 warnings,9 remarks) -PASS -- TEST rap_control_intel [09:37, 08:30] (1042800 MB) -PASS -- TEST regional_spp_sppt_shum_skeb_intel [06:05, 05:19] (1247324 MB) -PASS -- TEST rap_decomp_intel [09:52, 08:43] (1013392 MB) -PASS -- TEST rap_2threads_intel [09:47, 08:39] (1152324 MB) -PASS -- TEST rap_restart_intel [08:16, 06:56] (1030480 MB) -PASS -- TEST rap_sfcdiff_intel [09:39, 08:29] (1058856 MB) -PASS -- TEST rap_sfcdiff_decomp_intel [09:52, 08:44] (1008276 MB) -PASS -- TEST rap_sfcdiff_restart_intel [07:37, 06:21] (1060656 MB) -PASS -- TEST hrrr_control_intel [05:31, 04:24] (1024884 MB) -PASS -- TEST hrrr_control_decomp_intel [05:36, 04:28] (1006792 MB) -PASS -- TEST hrrr_control_2threads_intel [10:53, 09:43] (1085040 MB) -PASS -- TEST hrrr_control_restart_intel [02:51, 02:22] (941836 MB) -PASS -- TEST rrfs_v1beta_intel [09:42, 08:25] (1035232 MB) -PASS -- TEST rrfs_v1nssl_intel [10:05, 09:53] (1978476 MB) -PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [09:58, 09:39] (2022300 MB) - -PASS -- COMPILE csawmg_intel [13:04, 13:04] -PASS -- TEST control_csawmg_intel [07:07, 06:41] (1009820 MB) -PASS -- TEST control_ras_intel [03:44, 03:29] (716348 MB) - -PASS -- COMPILE wam_intel [12:57, 12:57],1 remarks) -PASS -- TEST control_wam_intel [13:15, 12:48] (1643840 MB) - -PASS -- COMPILE atm_faster_dyn32_intel [12:47, 12:47],1 remarks) -PASS -- TEST control_p8_faster_intel [04:41, 03:19] (1878564 MB) -PASS -- TEST regional_control_faster_intel [06:50, 06:21] (1072340 MB) - -PASS -- COMPILE atm_debug_dyn32_intel [10:02, 10:02](882 warnings,9 remarks) -PASS -- TEST control_CubedSphereGrid_debug_intel [02:53, 02:27] (1601664 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [02:54, 02:18] (1603380 MB) -PASS -- TEST control_stochy_debug_intel [03:20, 03:06] (813588 MB) -PASS -- TEST control_lndp_debug_intel [03:04, 02:50] (817480 MB) -PASS -- TEST control_csawmg_debug_intel [04:48, 04:29] (1121380 MB) -PASS -- TEST control_ras_debug_intel [03:08, 02:58] (823068 MB) -PASS -- TEST control_diag_debug_intel [03:24, 02:56] (1673196 MB) -PASS -- TEST control_debug_p8_intel [03:23, 02:48] (1887904 MB) -PASS -- TEST regional_debug_intel [17:43, 17:23] (1085436 MB) -PASS -- TEST rap_control_debug_intel [05:16, 05:05] (1196804 MB) -PASS -- TEST hrrr_control_debug_intel [05:11, 04:54] (1191016 MB) -PASS -- TEST hrrr_gf_debug_intel [05:26, 05:09] (1204336 MB) -PASS -- TEST hrrr_c3_debug_intel [05:17, 04:59] (1201704 MB) -PASS -- TEST rap_unified_drag_suite_debug_intel [05:12, 05:04] (1204356 MB) -PASS -- TEST rap_diag_debug_intel [05:30, 05:12] (1289944 MB) -PASS -- TEST rap_cires_ugwp_debug_intel [05:21, 05:11] (1200880 MB) -PASS -- TEST rap_unified_ugwp_debug_intel [05:29, 05:12] (1198800 MB) -PASS -- TEST rap_lndp_debug_intel [05:29, 05:09] (1207756 MB) -PASS -- TEST rap_progcld_thompson_debug_intel [05:10, 04:59] (1205908 MB) -PASS -- TEST rap_noah_debug_intel [05:07, 04:56] (1199676 MB) -PASS -- TEST rap_sfcdiff_debug_intel [05:12, 04:59] (1205464 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [08:17, 08:08] (1197160 MB) -PASS -- TEST rrfs_v1beta_debug_intel [05:06, 04:57] (1197872 MB) -PASS -- TEST rap_clm_lake_debug_intel [06:15, 05:59] (1203664 MB) -PASS -- TEST rap_flake_debug_intel [05:10, 04:54] (1199036 MB) -PASS -- TEST gnv1_c96_no_nest_debug_intel [09:47, 08:41] (1205212 MB) - -PASS -- COMPILE wam_debug_intel [07:11, 07:11](837 warnings,1 remarks) -PASS -- TEST control_wam_debug_intel [13:56, 13:22] (1679012 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_intel [13:27, 13:27](3 warnings,8 remarks) -PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [05:40, 05:00] (1123712 MB) -PASS -- TEST rap_control_dyn32_phy32_intel [08:17, 07:15] (994504 MB) -PASS -- TEST hrrr_control_dyn32_phy32_intel [05:20, 03:52] (918144 MB) -PASS -- TEST rap_2threads_dyn32_phy32_intel [08:31, 07:27] (1064664 MB) -PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [10:13, 08:44] (941068 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [05:24, 03:57] (887984 MB) -PASS -- TEST rap_restart_dyn32_phy32_intel [06:36, 05:27] (964820 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [02:14, 02:05] (865528 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [12:12, 12:11](3 warnings,8 remarks) -PASS -- TEST conus13km_control_intel [03:28, 02:45] (1156072 MB) -PASS -- TEST conus13km_2threads_intel [01:43, 01:15] (1106524 MB) -PASS -- TEST conus13km_restart_mismatch_intel [02:04, 01:33] (1059384 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_intel [12:25, 12:25](3 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_intel [05:01, 04:34] (963012 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [06:13, 06:13](785 warnings,8 remarks) -PASS -- TEST rap_control_debug_dyn32_phy32_intel [04:57, 04:45] (1078756 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [05:03, 04:47] (1071468 MB) -PASS -- TEST conus13km_debug_intel [15:26, 14:53] (1226144 MB) -PASS -- TEST conus13km_debug_qr_intel [15:14, 14:40] (930560 MB) -PASS -- TEST conus13km_debug_2threads_intel [09:05, 08:40] (1162456 MB) -PASS -- TEST conus13km_radar_tten_debug_intel [15:13, 14:44] (1297932 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [06:45, 06:45](785 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_debug_intel [05:17, 05:08] (1128872 MB) - -PASS -- COMPILE hafsw_intel [14:52, 14:50](1 warnings,9 remarks) -PASS -- TEST hafs_regional_atm_intel [07:06, 06:02] (736528 MB) -PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [06:57, 06:33] (1114272 MB) -PASS -- TEST hafs_regional_atm_ocn_intel [09:13, 07:53] (811356 MB) -PASS -- TEST hafs_regional_atm_wav_intel [25:46, 24:40] (845860 MB) -PASS -- TEST hafs_regional_atm_ocn_wav_intel [29:29, 28:24] (869948 MB) -PASS -- TEST hafs_regional_1nest_atm_intel [08:15, 07:12] (493588 MB) -PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [09:52, 08:35] (502244 MB) -PASS -- TEST hafs_global_1nest_atm_intel [04:34, 03:35] (372040 MB) -PASS -- TEST hafs_global_multiple_4nests_atm_intel [11:50, 09:39] (474196 MB) -PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [05:29, 04:47] (521200 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [05:25, 04:33] (524644 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [06:40, 05:42] (572448 MB) -PASS -- TEST hafs_global_storm_following_1nest_atm_intel [01:58, 01:35] (399316 MB) -PASS -- TEST gnv1_nested_intel [06:21, 04:23] (1732988 MB) - -PASS -- COMPILE hafsw_debug_intel [07:25, 07:25](1465 warnings,1502 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [14:19, 13:22] (627152 MB) - -PASS -- COMPILE hafsw_faster_intel [14:11, 14:11],8 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [14:04, 12:57] (637388 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [14:10, 13:01] (721076 MB) - -PASS -- COMPILE hafs_mom6w_intel [15:27, 15:27],7 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [10:09, 08:40] (706508 MB) - -PASS -- COMPILE hafs_all_intel [13:58, 13:58],8 remarks) -PASS -- TEST hafs_regional_docn_intel [08:39, 07:35] (811244 MB) -PASS -- TEST hafs_regional_docn_oisst_intel [08:46, 07:39] (797016 MB) -PASS -- TEST hafs_regional_datm_cdeps_intel [17:11, 16:30] (1202652 MB) - -PASS -- COMPILE datm_cdeps_intel [09:58, 09:58],2 remarks) -PASS -- TEST datm_cdeps_control_cfsr_intel [03:07, 02:58] (1154320 MB) -PASS -- TEST datm_cdeps_restart_cfsr_intel [01:58, 01:52] (1107248 MB) -PASS -- TEST datm_cdeps_control_gefs_intel [03:00, 02:51] (1022068 MB) -PASS -- TEST datm_cdeps_iau_gefs_intel [03:00, 02:54] (1022524 MB) -PASS -- TEST datm_cdeps_stochy_gefs_intel [03:15, 03:04] (1020360 MB) -PASS -- TEST datm_cdeps_ciceC_cfsr_intel [03:07, 02:59] (1158716 MB) -PASS -- TEST datm_cdeps_bulk_cfsr_intel [03:09, 03:01] (1152664 MB) -PASS -- TEST datm_cdeps_bulk_gefs_intel [02:59, 02:51] (1016904 MB) -PASS -- TEST datm_cdeps_mx025_cfsr_intel [07:28, 06:35] (1016276 MB) -PASS -- TEST datm_cdeps_mx025_gefs_intel [07:23, 06:31] (1007912 MB) -PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [03:00, 02:56] (1158116 MB) -PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [04:27, 04:21] (2401844 MB) -PASS -- TEST datm_cdeps_gfs_intel [04:33, 04:24] (2453712 MB) - -PASS -- COMPILE datm_cdeps_debug_intel [05:54, 05:54](2 warnings,2 remarks) -PASS -- TEST datm_cdeps_debug_cfsr_intel [06:36, 06:27] (1063168 MB) - -PASS -- COMPILE datm_cdeps_faster_intel [08:24, 08:24],2 remarks) -PASS -- TEST datm_cdeps_control_cfsr_faster_intel [03:06, 02:58] (1150300 MB) - -PASS -- COMPILE datm_cdeps_land_intel [01:27, 01:27],1 remarks) -PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:24, 01:01] (255508 MB) -PASS -- TEST datm_cdeps_lnd_era5_intel [01:11, 00:54] (323192 MB) -PASS -- TEST datm_cdeps_lnd_era5_rst_intel [00:50, 00:34] (323484 MB) - -PASS -- COMPILE atm_ds2s_docn_pcice_intel [13:53, 13:53],3 remarks) -PASS -- TEST atm_ds2s_docn_pcice_intel [05:11, 04:14] (1967044 MB) - -PASS -- COMPILE atm_ds2s_docn_dice_intel [13:34, 13:34],1 remarks) -PASS -- TEST atm_ds2s_docn_dice_intel [05:02, 04:05] (1949344 MB) - -PASS -- COMPILE atml_intel [13:43, 13:43](8 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_sbs_intel [06:29, 05:02] (1860772 MB) -PASS -- TEST control_p8_atmlnd_intel [06:19, 04:57] (1855004 MB) -PASS -- TEST control_restart_p8_atmlnd_intel [03:24, 02:50] (1072564 MB) - -PASS -- COMPILE atml_debug_intel [08:21, 08:21](880 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_debug_intel [07:43, 06:24] (1907168 MB) - -PASS -- COMPILE atmw_intel [14:42, 14:42],8 remarks) -PASS -- TEST atmwav_control_noaero_p8_intel [03:20, 02:11] (1896084 MB) - -PASS -- COMPILE atmaero_intel [13:42, 13:42],1 remarks) -PASS -- TEST atmaero_control_p8_intel [05:38, 04:38] (1971408 MB) -PASS -- TEST atmaero_control_p8_rad_intel [06:30, 05:26] (1750220 MB) -PASS -- TEST atmaero_control_p8_rad_micro_intel [06:26, 05:32] (1758784 MB) - -PASS -- COMPILE atmaq_debug_intel [06:35, 06:35](882 warnings,6 remarks) -PASS -- TEST regional_atmaq_debug_intel [23:06, 21:01] (4480408 MB) - -PASS -- COMPILE atm_fbh_intel [12:02, 12:02](3 warnings,8 remarks) -PASS -- TEST cpld_regional_atm_fbh_intel [14:28, 14:11] (1080188 MB) - - -SYNOPSIS: -Starting Date/Time: 2024-09-25 20:00:32 -Ending Date/Time: 2024-09-26 00:20:52 -Total Time: 04h:20m:20s -Compiles Completed: 42/42 -Tests Completed: 185/186 - - -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: -a7cef6704d3c373d2e3b020039bf59f971ab0bee +72afacdfb7986f4a761f188cdf6eb4c740c51224 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) - bf66bf7abdd3c057f4ee85f2655a33b7f4459676 CICE-interface/CICE (remotes/origin/sync_cice) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) 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) - f188fe2afb3dd04f460a36ddda5e18e17c68f422 FV3 (remotes/origin/support_intelllvm) - b947391ed4d23ffa15f5c854e7d5c4849abefc40 FV3/atmos_cubed_sphere (201912_public_release-414-gb947391) + 1aba87cb308fb52912e7fe6dd6b53d0ce7077554 FV3 (heads/develop) + 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 77d28126e3dbb19ad9714d3703764202ebce82ec FV3/ccpp/physics (remotes/origin/support_intelllvm) + 5a363134a77535f35594e56b58ba1e6141a23d2b FV3/ccpp/physics (EP4-884-g5a363134) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 55ec82b08ca7d914ace595d4eecd54ae640ade31 FV3/upp (upp_gfsv16_release.v1.0.8-385-g55ec82b) + 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) @@ -356,7 +25,7 @@ Submodule hashes used in testing: 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) - 6810b2d8dbceea2b5e47b3f1b59b5461aded3827 WW3 (remotes/origin/support_intelllvm) + c7004b658b9dae9fc473d4e6511dfc1cf8e6a7bd WW3 (6.07.1-347-gc7004b65) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -367,22 +36,290 @@ 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/jongkim/stmp/jongkim/FV3_RT/rt_1801953 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241001 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_334122 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 07:12] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:16, 29:55](1967 MB) +PASS -- COMPILE 's2swa_32bit_intel' [18:11, 16:37] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:47, 14:25](2081 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 19:35] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:36, 18:08](1944 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:23, 19:03](2116 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:17, 09:02](1228 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:43, 20:25](1875 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:11, 23:07] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:42, 17:48](1938 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:11, 08:23] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [31:44, 28:16](1934 MB) + +PASS -- COMPILE 's2swa_intel' [18:11, 17:09] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [17:34, 14:34](2135 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:46, 14:11](2133 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:56, 07:56](1792 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [17:34, 14:21](2169 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:56, 08:04](1700 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [16:30, 13:28](2415 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:34, 14:27](2121 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:34, 12:16](2040 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:45, 14:27](2137 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:45, 16:29](2707 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:09, 08:58](2702 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:29, 11:00](3676 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:08, 06:55](3497 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:27, 06:04](2087 MB) + +PASS -- COMPILE 's2sw_intel' [18:11, 16:52] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [16:19, 13:42](1966 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:28, 08:02](2025 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:11, 08:35] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:23, 13:27](2164 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:11, 08:18] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:05, 09:16](1995 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:11, 15:24] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:08, 04:52](2030 MB) + +PASS -- COMPILE 's2s_intel' [16:11, 14:47] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:54, 08:43](3023 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:54, 03:32](3026 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:51, 02:18](2482 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:12, 17:51] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [17:33, 15:01](2136 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:11, 23:02] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:14, 18:20](2009 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:28, 09:00](1242 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:10, 20:29](1926 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:11, 08:31] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:11, 29:48](1969 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:10, 13:50] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:25, 03:43](684 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:47, 03:32](1569 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:52, 03:36](1580 MB) +PASS -- TEST 'control_latlon_intel' [05:43, 03:31](1569 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:52, 03:35](1568 MB) +PASS -- TEST 'control_c48_intel' [16:54, 14:45](1711 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:34, 08:13](840 MB) +PASS -- TEST 'control_c192_intel' [16:04, 13:11](1746 MB) +PASS -- TEST 'control_c384_intel' [19:59, 16:42](1991 MB) +PASS -- TEST 'control_c384gdas_intel' [13:47, 09:59](1332 MB) +PASS -- TEST 'control_stochy_intel' [03:23, 01:52](642 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:39, 01:09](474 MB) +PASS -- TEST 'control_lndp_intel' [03:23, 01:45](642 MB) +PASS -- TEST 'control_iovr4_intel' [04:27, 02:43](642 MB) +PASS -- TEST 'control_iovr5_intel' [04:26, 02:42](632 MB) +PASS -- TEST 'control_p8_intel' [07:04, 04:16](1867 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:18, 03:35](1879 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:25, 04:07](1861 MB) +PASS -- TEST 'control_restart_p8_intel' [05:16, 02:24](1094 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:03, 04:09](1850 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:35, 02:20](1131 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:19, 04:16](1860 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:08, 04:29](1945 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:46, 07:12](1863 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:28, 04:50](1944 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:28, 03:31](1877 MB) +PASS -- TEST 'merra2_thompson_intel' [06:42, 03:53](1882 MB) +PASS -- TEST 'regional_control_intel' [08:37, 06:43](1073 MB) +PASS -- TEST 'regional_restart_intel' [05:39, 03:37](1077 MB) +PASS -- TEST 'regional_decomp_intel' [08:30, 07:06](1066 MB) +PASS -- TEST 'regional_2threads_intel' [06:36, 04:44](1072 MB) +PASS -- TEST 'regional_noquilt_intel' [08:43, 06:32](1377 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:43, 06:37](1074 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:39, 06:33](1062 MB) +PASS -- TEST 'regional_wofs_intel' [09:36, 07:59](1900 MB) + +PASS -- COMPILE 'rrfs_intel' [14:10, 12:50] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:07, 08:28](1053 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:01, 05:15](1244 MB) +PASS -- TEST 'rap_decomp_intel' [10:54, 08:45](1016 MB) +PASS -- TEST 'rap_2threads_intel' [10:53, 08:37](1153 MB) +PASS -- TEST 'rap_restart_intel' [07:33, 04:23](1027 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:12, 08:25](1049 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:56, 08:42](1019 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:31, 06:18](1062 MB) +PASS -- TEST 'hrrr_control_intel' [07:08, 04:22](1017 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:07, 04:26](1020 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:23, 04:15](1082 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:40, 02:21](944 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:17, 08:22](1037 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:25, 09:52](1977 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:22, 09:36](2018 MB) + +PASS -- COMPILE 'csawmg_intel' [14:10, 12:53] +PASS -- TEST 'control_csawmg_intel' [08:35, 06:40](1014 MB) +PASS -- TEST 'control_ras_intel' [05:21, 03:31](711 MB) + +PASS -- COMPILE 'wam_intel' [14:10, 12:22] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:47, 12:51](1651 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:10, 13:08] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:21, 03:20](1872 MB) +PASS -- TEST 'regional_control_faster_intel' [08:39, 06:18](1074 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:10, 10:06] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:42, 02:21](1595 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:51, 02:14](1600 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:20, 03:04](812 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:25, 02:51](815 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:40, 04:31](1128 MB) +PASS -- TEST 'control_ras_debug_intel' [04:27, 02:47](824 MB) +PASS -- TEST 'control_diag_debug_intel' [04:47, 02:51](1673 MB) +PASS -- TEST 'control_debug_p8_intel' [04:41, 02:54](1899 MB) +PASS -- TEST 'regional_debug_intel' [19:45, 17:28](1073 MB) +PASS -- TEST 'rap_control_debug_intel' [06:28, 04:58](1200 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:25, 04:55](1196 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:36, 04:59](1203 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:28, 05:02](1204 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:31, 05:01](1205 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:33, 05:17](1289 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:20, 05:02](1195 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:20, 05:05](1196 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:23, 05:04](1202 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 04:58](1195 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:23, 04:50](1192 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:21, 05:05](1204 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:22, 08:03](1198 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:21, 04:50](1198 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:30, 05:55](1204 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:25, 05:03](1204 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:25, 08:37](1206 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:11, 06:19] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:44, 13:13](1673 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 12:38] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:52, 04:58](1128 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:15, 07:13](993 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:12, 03:49](918 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:03, 07:26](1071 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:05, 03:44](937 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:02, 03:58](889 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:24, 05:25](965 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:43, 02:03](871 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 12:36] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:00, 02:45](1161 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:46, 01:14](1101 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:33](1064 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:10, 13:02] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:40, 04:41](968 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 06:21] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:26, 04:49](1080 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:25, 04:53](1082 MB) +PASS -- TEST 'conus13km_debug_intel' [16:47, 14:48](1258 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:46, 15:10](932 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:41, 08:41](1168 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:41, 14:44](1299 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:11, 06:36] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:23, 05:01](1133 MB) + +PASS -- COMPILE 'hafsw_intel' [16:11, 15:07] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:14, 05:57](737 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:24, 06:35](1110 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:25, 07:34](811 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [27:12, 24:32](845 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [31:21, 28:44](866 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:03, 07:21](513 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:30, 08:33](501 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:56, 03:29](370 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:23, 09:44](478 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:56, 04:46](523 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:00, 04:30](523 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:50, 05:40](569 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:33](400 MB) +PASS -- TEST 'gnv1_nested_intel' [08:09, 04:18](1723 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:11, 06:10] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:55, 13:14](581 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:27] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:04, 13:08](633 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:22, 12:56](716 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 14:09] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:19, 08:40](705 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:11, 14:16] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:18, 07:34](808 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:12, 07:35](790 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:55, 16:22](1208 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [11:10, 09:32] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 03:01](1159 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:55](1103 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:53](1013 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:55](1011 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:55](1015 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 03:02](1153 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:18, 04:36](1152 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:16, 02:50](1020 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:13, 06:31](1024 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:10, 06:26](1000 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:57](1154 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:17, 04:21](2390 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:17, 04:23](2393 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:10, 05:33] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 06:28](1070 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:10, 08:17] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:16, 03:01](1164 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:17] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:32, 01:01](249 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:56](324 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:36](321 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:10, 13:46] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:06, 04:12](1963 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:10, 13:44] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:56, 03:58](1948 MB) + +PASS -- COMPILE 'atml_intel' [15:10, 13:48] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:28, 04:55](1856 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:19, 04:55](1865 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:52, 02:48](1051 MB) + +PASS -- COMPILE 'atml_debug_intel' [12:10, 10:35] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:21, 06:02](1892 MB) + +PASS -- COMPILE 'atmw_intel' [12:10, 10:49] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:15, 02:12](1897 MB) + +PASS -- COMPILE 'atmaero_intel' [17:10, 15:15] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:09, 04:37](1973 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:14, 05:22](1750 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:58, 05:28](1771 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:10, 07:32] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:53, 20:55](4485 MB) + +PASS -- COMPILE 'atm_fbh_intel' [14:11, 12:34] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:27, 14:03](1078 MB) SYNOPSIS: -Starting Date/Time: 20240926 18:51:52 -Ending Date/Time: 20240926 19:36:38 -Total Time: 00h:44m:49s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Starting Date/Time: 20241004 07:58:40 +Ending Date/Time: 20241004 09:40:37 +Total Time: 01h:42m:35s +Compiles Completed: 42/42 +Tests Completed: 186/186 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 3bfd473d2f..310edabefe 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,22 +1,22 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -7d136e0c38b9444ecb96b52e558bd6ee43f3ca09 +12373b99074bcffc16efda0d1491bdc6a10e9914 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) - bf66bf7abdd3c057f4ee85f2655a33b7f4459676 CICE-interface/CICE (remotes/origin/sync_cice) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) 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) - f188fe2afb3dd04f460a36ddda5e18e17c68f422 FV3 (remotes/origin/support_intelllvm) - b947391ed4d23ffa15f5c854e7d5c4849abefc40 FV3/atmos_cubed_sphere (201912_public_release-414-gb947391) + 1aba87cb308fb52912e7fe6dd6b53d0ce7077554 FV3 (heads/develop) + 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 77d28126e3dbb19ad9714d3703764202ebce82ec FV3/ccpp/physics (remotes/origin/support_intelllvm) + 5a363134a77535f35594e56b58ba1e6141a23d2b FV3/ccpp/physics (EP4-884-g5a363134) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 55ec82b08ca7d914ace595d4eecd54ae640ade31 FV3/upp (upp_gfsv16_release.v1.0.8-385-g55ec82b) + 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) @@ -25,7 +25,7 @@ Submodule hashes used in testing: 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) - 6810b2d8dbceea2b5e47b3f1b59b5461aded3827 WW3 (remotes/origin/support_intelllvm) + 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 +36,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_165025 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241001 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_73695 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:27, 11:09] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [35:24, 02:23](3088 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:29, 11:57] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [34:22, 03:04](1809 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [14:51, 02:35](1842 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:57, 03:15](971 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [34:23, 02:20](1791 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:28, 11:32] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [34:23, 02:13](1803 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:22, 05:12] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [40:30, 03:08](1830 MB) - -PASS -- COMPILE 's2swa_intel' [13:28, 11:17] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [34:23, 02:42](3118 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [34:23, 03:00](3113 MB) -PASS -- TEST 'cpld_restart_p8_intel' [22:56, 02:12](3045 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [34:23, 02:40](3139 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [22:56, 02:10](3060 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [34:23, 02:28](3354 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [34:23, 01:58](3107 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [34:24, 02:21](3060 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [34:23, 02:59](3120 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [34:32, 05:26](4109 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:33, 04:52](4253 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [34:23, 02:56](3096 MB) - -PASS -- COMPILE 's2sw_intel' [12:28, 10:53] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [35:24, 01:43](1824 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [35:24, 02:48](1881 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:27, 10:18] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [35:24, 01:58](1871 MB) - -PASS -- COMPILE 's2s_intel' [11:28, 10:10] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [36:22, 01:51](2862 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [36:22, 02:27](2866 MB) -PASS -- TEST 'cpld_restart_c48_intel' [31:25, 02:18](2281 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:32, 16:05] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [30:20, 02:59](3124 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:28, 11:44] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [34:23, 02:03](1823 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:55, 02:31](1002 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [15:08, 02:39](1799 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:21, 05:11] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:10, 01:46](1853 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:24, 08:44] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [25:58, 01:23](566 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [25:58, 02:15](1462 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [25:58, 02:09](1467 MB) -PASS -- TEST 'control_latlon_intel' [25:58, 02:09](1468 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [25:58, 02:19](1468 MB) -PASS -- TEST 'control_c48_intel' [25:57, 02:31](1562 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [25:57, 01:45](693 MB) -PASS -- TEST 'control_c192_intel' [25:58, 02:04](1588 MB) -PASS -- TEST 'control_c384_intel' [26:02, 02:19](1873 MB) -PASS -- TEST 'control_c384gdas_intel' [24:57, 02:53](1065 MB) -PASS -- TEST 'control_stochy_intel' [24:42, 01:28](522 MB) -PASS -- TEST 'control_stochy_restart_intel' [21:11, 02:03](328 MB) -PASS -- TEST 'control_lndp_intel' [23:57, 01:31](521 MB) -PASS -- TEST 'control_iovr4_intel' [23:47, 01:44](517 MB) -PASS -- TEST 'control_iovr5_intel' [23:47, 01:43](517 MB) -PASS -- TEST 'control_p8_intel' [22:39, 02:25](1756 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [22:39, 02:57](1751 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [20:29, 02:24](1756 MB) -PASS -- TEST 'control_restart_p8_intel' [16:05, 02:58](908 MB) -PASS -- TEST 'control_noqr_p8_intel' [20:29, 02:23](1752 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [13:57, 02:02](918 MB) -PASS -- TEST 'control_decomp_p8_intel' [20:29, 02:20](1753 MB) -PASS -- TEST 'control_2threads_p8_intel' [20:11, 02:40](1844 MB) -PASS -- TEST 'control_p8_lndp_intel' [20:07, 02:11](1760 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [20:06, 02:05](1809 MB) -PASS -- TEST 'control_p8_mynn_intel' [19:59, 02:47](1764 MB) -PASS -- TEST 'merra2_thompson_intel' [19:19, 03:11](1765 MB) -PASS -- TEST 'regional_control_intel' [19:16, 02:11](835 MB) -PASS -- TEST 'regional_restart_intel' [11:24, 01:20](836 MB) -PASS -- TEST 'regional_decomp_intel' [18:48, 01:56](821 MB) -PASS -- TEST 'regional_2threads_intel' [18:14, 02:10](893 MB) -PASS -- TEST 'regional_noquilt_intel' [17:42, 01:19](1168 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [17:06, 01:31](838 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [16:14, 01:13](843 MB) -PASS -- TEST 'regional_wofs_intel' [16:03, 02:21](1568 MB) - -PASS -- COMPILE 'rrfs_intel' [10:23, 08:17] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [15:07, 02:57](905 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:58, 02:09](1051 MB) -PASS -- TEST 'rap_decomp_intel' [13:40, 02:36](906 MB) -PASS -- TEST 'rap_2threads_intel' [13:35, 02:16](986 MB) -PASS -- TEST 'rap_restart_intel' [04:41, 03:17](772 MB) -PASS -- TEST 'rap_sfcdiff_intel' [13:31, 02:53](900 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:10, 02:13](901 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [02:24, 02:43](772 MB) -PASS -- TEST 'hrrr_control_intel' [12:42, 02:33](900 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [12:20, 02:17](901 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [12:18, 02:47](973 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:39, 02:03](728 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:08, 03:04](896 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [12:02, 01:53](1858 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:55, 02:22](1841 MB) - -PASS -- COMPILE 'csawmg_intel' [09:22, 07:53] -PASS -- TEST 'control_csawmg_intel' [26:01, 01:32](856 MB) -PASS -- TEST 'control_ras_intel' [26:01, 01:55](554 MB) - -PASS -- COMPILE 'wam_intel' [09:22, 07:53] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [26:01, 01:36](1553 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:24, 08:08] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [11:12, 03:01](1759 MB) -PASS -- TEST 'regional_control_faster_intel' [11:10, 01:22](836 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:24, 07:44] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [11:03, 01:47](1494 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [11:01, 01:53](1502 MB) -PASS -- TEST 'control_stochy_debug_intel' [10:58, 01:45](695 MB) -PASS -- TEST 'control_lndp_debug_intel' [10:33, 02:01](697 MB) -PASS -- TEST 'control_csawmg_debug_intel' [10:08, 02:26](997 MB) -PASS -- TEST 'control_ras_debug_intel' [09:29, 01:32](704 MB) -PASS -- TEST 'control_diag_debug_intel' [09:05, 02:24](1554 MB) -PASS -- TEST 'control_debug_p8_intel' [08:24, 02:13](1789 MB) -PASS -- TEST 'regional_debug_intel' [06:42, 01:59](885 MB) -PASS -- TEST 'rap_control_debug_intel' [06:19, 01:30](1076 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:15, 01:42](1068 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:08, 01:37](1072 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:48, 01:39](1071 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:48, 01:39](1077 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:47, 01:40](1161 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:29, 01:33](1077 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:06, 01:30](1078 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:46, 01:38](1080 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:28, 02:17](1082 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:24, 01:23](1069 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [03:42, 02:12](1073 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [03:37, 01:59](1072 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [02:57, 01:19](1071 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [02:39, 01:44](1077 MB) -PASS -- TEST 'rap_flake_debug_intel' [02:26, 01:40](1076 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [02:22, 02:45](1082 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:28, 11:17] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [21:45, 02:30](3088 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:29, 11:50] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:45, 02:36](1809 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [02:37, 03:25](1838 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [02:27, 02:53](960 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:45, 03:45](1787 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:29, 11:55] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:45, 01:59](1805 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:25] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:53, 03:03](1837 MB) + +PASS -- COMPILE 's2swa_intel' [13:28, 11:14] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [21:45, 02:34](3116 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [21:45, 02:53](3116 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:23, 02:05](3046 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [21:44, 02:31](3135 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:22, 02:02](3065 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [21:44, 02:03](3355 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [21:44, 02:35](3110 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [21:45, 02:07](3056 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [21:44, 02:50](3115 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [21:53, 06:27](4107 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [01:59, 07:35](4252 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [21:45, 02:49](3095 MB) + +PASS -- COMPILE 's2sw_intel' [12:28, 11:04] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [22:46, 02:44](1827 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [22:46, 02:41](1882 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:26, 10:21] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [22:47, 03:02](1889 MB) + +PASS -- COMPILE 's2s_intel' [11:25, 10:03] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [23:47, 01:42](2859 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [23:47, 02:21](2866 MB) +PASS -- TEST 'cpld_restart_c48_intel' [18:43, 02:16](2282 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:31, 16:10] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [17:42, 02:54](3125 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:27, 11:49] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:46, 01:58](1834 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [03:08, 02:18](989 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [02:44, 02:47](1795 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:23, 05:08] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [20:29, 02:06](1851 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:25, 09:05] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [13:22, 01:26](568 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [13:22, 02:11](1461 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [13:22, 02:05](1469 MB) +PASS -- TEST 'control_latlon_intel' [13:22, 02:06](1465 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [13:22, 02:14](1469 MB) +PASS -- TEST 'control_c48_intel' [13:21, 02:33](1563 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [13:21, 01:54](688 MB) +PASS -- TEST 'control_c192_intel' [13:22, 02:32](1587 MB) +PASS -- TEST 'control_c384_intel' [13:26, 02:18](1895 MB) +PASS -- TEST 'control_c384gdas_intel' [13:26, 05:46](1063 MB) +PASS -- TEST 'control_stochy_intel' [13:22, 01:29](522 MB) +PASS -- TEST 'control_stochy_restart_intel' [09:50, 02:03](328 MB) +PASS -- TEST 'control_lndp_intel' [12:16, 01:31](524 MB) +PASS -- TEST 'control_iovr4_intel' [12:12, 01:41](517 MB) +PASS -- TEST 'control_iovr5_intel' [12:06, 01:43](517 MB) +PASS -- TEST 'control_p8_intel' [11:29, 02:27](1759 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [11:23, 02:57](1752 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [10:26, 02:34](1758 MB) +PASS -- TEST 'control_restart_p8_intel' [05:00, 03:09](906 MB) +PASS -- TEST 'control_noqr_p8_intel' [10:03, 02:26](1754 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:20, 02:52](918 MB) +PASS -- TEST 'control_decomp_p8_intel' [10:03, 02:24](1750 MB) +PASS -- TEST 'control_2threads_p8_intel' [08:46, 02:31](1841 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:46, 02:32](1758 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:42, 03:21](1809 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:38, 03:00](1773 MB) +PASS -- TEST 'merra2_thompson_intel' [07:37, 02:52](1760 MB) +PASS -- TEST 'regional_control_intel' [07:31, 02:09](837 MB) +PASS -- TEST 'regional_restart_intel' [59:40, 01:19](842 MB) +PASS -- TEST 'regional_decomp_intel' [07:30, 01:52](838 MB) +PASS -- TEST 'regional_2threads_intel' [07:26, 01:48](891 MB) +PASS -- TEST 'regional_noquilt_intel' [06:21, 01:16](1165 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:12, 02:23](841 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:25, 01:35](834 MB) +PASS -- TEST 'regional_wofs_intel' [04:54, 01:26](1569 MB) + +PASS -- COMPILE 'rrfs_intel' [10:26, 08:11] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [03:50, 03:12](904 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [03:37, 02:07](1054 MB) +PASS -- TEST 'rap_decomp_intel' [03:20, 02:30](900 MB) +PASS -- TEST 'rap_2threads_intel' [02:43, 02:35](983 MB) +PASS -- TEST 'rap_restart_intel' [53:07, 03:17](773 MB) +PASS -- TEST 'rap_sfcdiff_intel' [01:41, 03:04](900 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [00:57, 02:33](904 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [50:56, 02:44](774 MB) +PASS -- TEST 'hrrr_control_intel' [00:49, 02:21](901 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [59:58, 02:46](900 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [59:49, 02:13](973 MB) +PASS -- TEST 'hrrr_control_restart_intel' [54:05, 02:01](732 MB) +PASS -- TEST 'rrfs_v1beta_intel' [59:41, 02:57](897 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [59:38, 01:46](1853 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [59:08, 02:11](1846 MB) + +PASS -- COMPILE 'csawmg_intel' [09:24, 07:54] +PASS -- TEST 'control_csawmg_intel' [59:00, 01:30](858 MB) +PASS -- TEST 'control_ras_intel' [58:57, 01:53](554 MB) + +PASS -- COMPILE 'wam_intel' [09:25, 07:56] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [58:46, 01:32](1553 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:25, 08:11] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [58:27, 03:12](1759 MB) +PASS -- TEST 'regional_control_faster_intel' [58:26, 01:17](834 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:24, 07:38] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [58:10, 01:47](1492 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [58:00, 01:47](1491 MB) +PASS -- TEST 'control_stochy_debug_intel' [57:46, 01:47](697 MB) +PASS -- TEST 'control_lndp_debug_intel' [57:46, 02:04](697 MB) +PASS -- TEST 'control_csawmg_debug_intel' [56:21, 01:30](999 MB) +PASS -- TEST 'control_ras_debug_intel' [56:20, 02:00](706 MB) +PASS -- TEST 'control_diag_debug_intel' [55:52, 02:10](1555 MB) +PASS -- TEST 'control_debug_p8_intel' [54:18, 02:21](1782 MB) +PASS -- TEST 'regional_debug_intel' [53:24, 01:14](888 MB) +PASS -- TEST 'rap_control_debug_intel' [53:11, 01:41](1078 MB) +PASS -- TEST 'hrrr_control_debug_intel' [53:06, 01:48](1071 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [53:05, 01:57](1074 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [53:02, 01:38](1072 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [52:56, 01:46](1076 MB) +PASS -- TEST 'rap_diag_debug_intel' [52:36, 02:09](1163 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [52:12, 01:38](1075 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [52:11, 01:40](1077 MB) +PASS -- TEST 'rap_lndp_debug_intel' [51:39, 01:52](1079 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [51:39, 01:51](1076 MB) +PASS -- TEST 'rap_noah_debug_intel' [51:19, 01:54](1074 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [51:11, 01:46](1074 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [50:48, 01:33](1073 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [50:15, 01:45](1067 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [50:09, 01:55](1075 MB) +PASS -- TEST 'rap_flake_debug_intel' [50:08, 01:45](1082 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [49:32, 02:39](1081 MB) PASS -- COMPILE 'wam_debug_intel' [06:20, 04:24] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [28:02, 02:12](1582 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:24, 07:45] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [02:10, 02:18](908 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [01:47, 02:10](780 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [01:34, 03:26](778 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [01:11, 02:20](837 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [00:58, 03:03](826 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [00:25, 03:07](775 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [53:29, 02:57](676 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [54:42, 01:55](656 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:24, 07:51] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [00:09, 01:55](989 MB) -PASS -- TEST 'conus13km_2threads_intel' [54:13, 01:57](989 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [53:58, 01:58](862 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:23, 07:52] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [58:51, 02:09](803 MB) +PASS -- TEST 'control_wam_debug_intel' [15:24, 01:25](1575 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:24, 07:50] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [49:28, 02:47](910 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [49:26, 03:03](778 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [49:06, 03:32](784 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [48:20, 02:31](840 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [47:53, 03:56](826 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [47:02, 02:48](775 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [40:04, 02:39](675 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [41:59, 01:21](660 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:23, 07:50] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [45:38, 01:55](986 MB) +PASS -- TEST 'conus13km_2threads_intel' [40:10, 01:57](991 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [40:04, 01:43](861 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:22, 07:54] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [45:27, 02:20](808 MB) PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:30] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [58:43, 01:43](954 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [58:39, 02:07](951 MB) -PASS -- TEST 'conus13km_debug_intel' [58:17, 02:22](1041 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [58:16, 02:09](709 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [58:04, 01:53](1042 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [58:00, 01:34](1105 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:24] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [57:37, 01:25](979 MB) - -PASS -- COMPILE 'hafsw_intel' [10:32, 09:11] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [57:35, 02:43](599 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [57:09, 02:16](943 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [57:06, 02:38](644 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [56:56, 03:11](671 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [56:01, 03:09](691 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [55:29, 02:35](373 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [55:11, 02:41](390 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [55:05, 02:06](521 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [54:54, 03:50](364 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [54:43, 02:02](402 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [53:56, 01:50](398 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [53:38, 02:15](473 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [53:36, 01:47](306 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:20, 04:50] ( 1447 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [53:26, 02:36](496 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [10:36, 09:07] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [53:14, 02:05](514 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [51:58, 02:45](697 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:38, 09:26] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [50:15, 02:13](702 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:35, 08:45] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [49:59, 02:59](639 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [49:47, 02:27](616 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [49:11, 02:01](878 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:37, 10:00] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [48:56, 01:50](1814 MB) - -PASS -- COMPILE 'atml_intel' [10:23, 08:46] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [07:20, 05:18] ( 866 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [09:37, 08:10] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [48:56, 02:38](3013 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [48:55, 02:56](2894 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [48:27, 02:53](2878 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:20, 04:25] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [48:18, 02:24](4377 MB) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [45:27, 01:50](952 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [45:25, 01:59](950 MB) +PASS -- TEST 'conus13km_debug_intel' [45:13, 01:45](1040 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [45:12, 01:37](708 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [44:29, 02:10](1041 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [44:26, 01:44](1105 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 04:23] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [44:19, 01:42](980 MB) + +PASS -- COMPILE 'hafsw_intel' [11:31, 09:28] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [43:56, 02:58](600 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [43:46, 01:47](940 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [43:39, 02:38](647 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [43:33, 02:24](671 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [43:34, 03:16](691 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [42:36, 02:03](374 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [42:27, 03:09](388 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [42:25, 02:41](351 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [41:53, 03:05](366 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [41:22, 02:28](402 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [40:56, 01:46](402 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [40:55, 01:47](473 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [40:47, 01:26](464 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:20, 04:52] ( 1447 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [40:33, 02:18](499 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [10:28, 09:08] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [40:06, 01:56](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [39:55, 02:43](693 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:31, 09:21] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [38:29, 02:15](700 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:29, 08:47] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [38:22, 03:15](641 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [37:48, 03:04](616 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [37:45, 01:33](878 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:31, 09:52] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [37:13, 01:42](1814 MB) + +PASS -- COMPILE 'atml_intel' [10:27, 08:50] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [07:21, 05:23] ( 866 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [10:35, 08:27] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [36:57, 02:23](3011 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [36:33, 02:51](2898 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [36:14, 02:47](2906 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:24, 04:26] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [36:15, 02:52](4374 MB) SYNOPSIS: -Starting Date/Time: 20240926 17:11:54 -Ending Date/Time: 20240926 18:40:15 -Total Time: 01h:28m:50s +Starting Date/Time: 20241004 12:24:28 +Ending Date/Time: 20241004 13:52:15 +Total Time: 01h:28m:29s Compiles Completed: 33/33 Tests Completed: 156/156 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/test_changes.list b/tests/test_changes.list index e69de29bb2..70d3028764 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -0,0 +1,4 @@ +cpld_control_gfsv17 intel +cpld_control_gfsv17_iau intel +cpld_restart_gfsv17 intel +cpld_mpi_gfsv17 intel 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_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 From f3ce1698b00bc1039f73f662e9e107f9c424201f Mon Sep 17 00:00:00 2001 From: Justin Perket Date: Fri, 11 Oct 2024 11:00:38 -0400 Subject: [PATCH 03/24] Add GFDL Land Model 4.0 (#2146) * UFSWM - Adds GFDL Land Model version 4 (LM4) as a component model, functional in Data Atmosphere mode * CMEPS - Small modifications for coupling of LM4 * LM4-NUOPC driver - new model component hosted at github.com/NOAA-GFDL/LM4-NUOPC-driver. NUOPC Cap for LM4 * LM4.0 - submodule of LM4 NUOPC driver, hosted at https://github.com/NOAA-GFDL/LM4/ --- .gitmodules | 4 + CMEPS-interface/CMEPS | 2 +- CMakeLists.txt | 19 +- LM4-driver | 1 + README.md | 1 + cmake/configure_apps.cmake | 13 +- doc/UsersGuide/source/CodeOverview.rst | 5 + doc/UsersGuide/source/Glossary.rst | 3 + driver/UFSDriver.F90 | 11 + modulefiles/ufs_orion.intel.lua | 3 + tests/default_vars.sh | 1 + tests/fv3_conf/lm4_run.IN | 97 +++ tests/logs/OpnReqTests_control_p8_hera.log | 62 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 30 +- .../OpnReqTests_regional_control_hera.log | 38 +- tests/logs/RegressionTests_acorn.log | 512 ++++++------ tests/logs/RegressionTests_gaea.log | 562 ++++++------- tests/logs/RegressionTests_hera.log | 741 +++++++++--------- tests/logs/RegressionTests_hercules.log | 734 ++++++++--------- tests/logs/RegressionTests_jet.log | 490 ++++++------ tests/logs/RegressionTests_orion.log | 628 ++++++++------- tests/logs/RegressionTests_wcoss2.log | 456 +++++------ tests/opnReqTest | 2 + tests/parm/diag_table/diag_table_datm_lm4 | 158 ++++ tests/parm/field_table/field_table_lm4 | 9 + tests/parm/input_datm_lm4.nml.IN | 406 ++++++++++ tests/parm/ufs.configure.atm_lm4.IN | 104 +++ tests/rt.conf | 6 + tests/rt.sh | 5 +- tests/rt_utils.sh | 11 +- tests/run_test.sh | 7 +- tests/test_changes.list | 6 +- tests/tests/datm_cdeps_lm4_gswp3 | 120 +++ tests/tests/datm_cdeps_lm4_gswp3_rst | 126 +++ 34 files changed, 3278 insertions(+), 2095 deletions(-) create mode 160000 LM4-driver create mode 100644 tests/fv3_conf/lm4_run.IN create mode 100644 tests/parm/diag_table/diag_table_datm_lm4 create mode 100644 tests/parm/field_table/field_table_lm4 create mode 100644 tests/parm/input_datm_lm4.nml.IN create mode 100644 tests/parm/ufs.configure.atm_lm4.IN create mode 100644 tests/tests/datm_cdeps_lm4_gswp3 create mode 100644 tests/tests/datm_cdeps_lm4_gswp3_rst 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/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/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/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/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/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/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_orion.intel.lua b/modulefiles/ufs_orion.intel.lua index e549ec4144..d6e25efad5 100644 --- a/modulefiles/ufs_orion.intel.lua +++ b/modulefiles/ufs_orion.intel.lua @@ -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/tests/default_vars.sh b/tests/default_vars.sh index 5b8b2ef8d5..2aefd87186 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -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/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 8157a7fbe4..a5ac539a95 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Wed Oct 2 22:41:48 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_2964678/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 = 299.526615 - 0: The maximum resident set size (KB) = 1441552 + 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_2964678/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 = 913.091192 - 0: The maximum resident set size (KB) = 1434836 + 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_2964678/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 = 271.228237 - 0: The maximum resident set size (KB) = 1420208 + 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_2964678/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.711616 - 0: The maximum resident set size (KB) = 1432888 + 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_2964678/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 = 271.801810 - 0: The maximum resident set size (KB) = 1408036 + 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_2964678/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 = 278.448169 - 0: The maximum resident set size (KB) = 1417104 + 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_2964678/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 = 274.922346 - 0: The maximum resident set size (KB) = 1427988 + 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 -Wed Oct 2 23:56:16 UTC 2024 -Elapsed time: 01h:14m:28s. 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 bbc2c6f136..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 @@ -Wed Oct 2 21:11:44 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_1326267/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 = 2302.748756 - 0: The maximum resident set size (KB) = 1502800 + 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_1326267/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 = 715.673783 - 0: The maximum resident set size (KB) = 1506992 + 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_1326267/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 = 750.553345 - 0: The maximum resident set size (KB) = 1504388 + 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 -Wed Oct 2 22:41:48 UTC 2024 -Elapsed time: 01h:30m:06s. 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 2f0bb6fb97..1c8759ae87 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Wed Oct 2 18:39:04 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_4004824/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 = 1391.385220 - 0: The maximum resident set size (KB) = 770368 + 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_4004824/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 = 2197.813777 - 0: The maximum resident set size (KB) = 714084 + 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_4004824/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 = 2180.905806 - 0: The maximum resident set size (KB) = 747696 + 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_4004824/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 = 2272.924862 - 0: The maximum resident set size (KB) = 711932 + 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 -Wed Oct 2 21:11:42 UTC 2024 -Elapsed time: 02h:32m:39s. 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 4490cb6414..7e1bada843 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,7 +1,7 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -12373b99074bcffc16efda0d1491bdc6a10e9914 +73c9d3c08bd18fa47227bd6c2ccb055397ceba95 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 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) - dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) + 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) @@ -21,6 +21,8 @@ Submodule hashes used in testing: -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) @@ -37,266 +39,266 @@ 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-20241001 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2089821 +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' [11:24, 10:02] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [23:38, 02:39](3190 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:25, 11:07] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:36, 03:38](1903 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [02:20, 03:08](1953 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [00:20, 03:34](1079 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:37, 03:26](1885 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:37, 22:30] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [10:24, 02:00](1905 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:29, 14:44] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [18:33, 04:00](1948 MB) - -PASS -- COMPILE 's2swa_intel' [24:38, 22:45] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [10:23, 02:51](3227 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:23, 03:07](3225 MB) -PASS -- TEST 'cpld_restart_p8_intel' [58:20, 02:55](3154 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:23, 02:46](3243 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [51:55, 03:02](3170 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:23, 03:31](3459 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:23, 02:52](3217 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:24, 03:06](3167 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:23, 02:48](3227 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:23, 03:03](3203 MB) - -PASS -- COMPILE 's2sw_intel' [19:33, 18:22] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:28, 02:56](1917 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:28, 03:07](1979 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:32, 15:41] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [17:29, 03:17](1979 MB) - -PASS -- COMPILE 's2s_intel' [14:29, 12:42] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [20:31, 01:56](2880 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [20:31, 02:37](2889 MB) -PASS -- TEST 'cpld_restart_c48_intel' [15:05, 02:06](2298 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:32, 15:36] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [17:29, 03:04](3225 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [27:42, 25:37] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [07:19, 02:38](1923 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [44:32, 02:35](1100 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [44:27, 02:37](1906 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:26, 11:58] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [10:11, 02:15](1966 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [19:34, 18:17] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [00:05, 01:37](662 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [58:20, 01:47](1561 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [58:20, 02:14](1563 MB) -PASS -- TEST 'control_latlon_intel' [56:24, 02:14](1565 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [56:24, 01:52](1565 MB) -PASS -- TEST 'control_c48_intel' [55:22, 02:18](1580 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [54:54, 01:54](702 MB) -PASS -- TEST 'control_c192_intel' [54:01, 01:57](1688 MB) -PASS -- TEST 'control_c384_intel' [53:23, 03:06](1970 MB) -PASS -- TEST 'control_c384gdas_intel' [53:23, 03:55](1175 MB) -PASS -- TEST 'control_stochy_intel' [52:52, 02:01](616 MB) -PASS -- TEST 'control_stochy_restart_intel' [44:15, 02:04](422 MB) -PASS -- TEST 'control_lndp_intel' [52:45, 01:55](615 MB) -PASS -- TEST 'control_iovr4_intel' [52:03, 01:40](610 MB) -PASS -- TEST 'control_iovr5_intel' [51:40, 01:52](610 MB) -PASS -- TEST 'control_p8_intel' [50:52, 02:53](1850 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [50:14, 02:46](1848 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [50:13, 03:50](1851 MB) -PASS -- TEST 'control_restart_p8_intel' [39:31, 03:05](1004 MB) -PASS -- TEST 'control_noqr_p8_intel' [50:12, 02:47](1847 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [37:20, 02:50](1011 MB) -PASS -- TEST 'control_decomp_p8_intel' [49:51, 03:04](1844 MB) -PASS -- TEST 'control_2threads_p8_intel' [49:43, 03:18](1930 MB) -PASS -- TEST 'control_p8_lndp_intel' [48:53, 02:05](1850 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [48:26, 02:43](1903 MB) -PASS -- TEST 'control_p8_mynn_intel' [48:19, 02:59](1866 MB) -PASS -- TEST 'merra2_thompson_intel' [48:14, 03:27](1860 MB) -PASS -- TEST 'regional_control_intel' [47:13, 01:33](864 MB) -PASS -- TEST 'regional_restart_intel' [30:09, 01:41](856 MB) -PASS -- TEST 'regional_decomp_intel' [46:20, 02:04](863 MB) -PASS -- TEST 'regional_2threads_intel' [46:13, 01:37](982 MB) -PASS -- TEST 'regional_noquilt_intel' [44:09, 01:34](1183 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [43:50, 01:55](851 MB) -PASS -- TEST 'regional_wofs_intel' [42:24, 01:15](1583 MB) - -PASS -- COMPILE 'rrfs_intel' [19:33, 17:27] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [42:02, 03:45](1002 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [41:56, 01:53](1136 MB) -PASS -- TEST 'rap_decomp_intel' [39:48, 03:19](998 MB) -PASS -- TEST 'rap_2threads_intel' [38:59, 03:13](1083 MB) -PASS -- TEST 'rap_restart_intel' [27:25, 03:48](881 MB) -PASS -- TEST 'rap_sfcdiff_intel' [38:20, 03:28](1000 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [37:43, 03:17](998 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [26:26, 03:55](885 MB) -PASS -- TEST 'hrrr_control_intel' [36:52, 03:48](998 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [36:38, 02:53](995 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [35:39, 04:05](1068 MB) -PASS -- TEST 'hrrr_control_restart_intel' [28:26, 01:48](829 MB) -PASS -- TEST 'rrfs_v1beta_intel' [35:26, 03:03](996 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [35:26, 01:21](1955 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [35:22, 02:11](1945 MB) - -PASS -- COMPILE 'csawmg_intel' [23:37, 21:47] -PASS -- TEST 'control_csawmg_intel' [34:36, 02:06](951 MB) -PASS -- TEST 'control_ras_intel' [34:34, 01:37](653 MB) - -PASS -- COMPILE 'wam_intel' [10:24, 08:49] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [07:05, 02:10](1644 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:28, 13:02] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [34:10, 02:54](1855 MB) -PASS -- TEST 'regional_control_faster_intel' [34:07, 01:32](854 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:26, 09:37] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:02, 01:24](1597 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:02, 02:06](1602 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:02, 01:56](804 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:02, 01:27](805 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:02, 02:16](1110 MB) -PASS -- TEST 'control_ras_debug_intel' [04:02, 01:16](812 MB) -PASS -- TEST 'control_diag_debug_intel' [04:02, 02:03](1664 MB) -PASS -- TEST 'control_debug_p8_intel' [04:02, 02:12](1904 MB) -PASS -- TEST 'regional_debug_intel' [04:01, 02:10](911 MB) -PASS -- TEST 'rap_control_debug_intel' [04:02, 01:20](1194 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:02, 01:40](1181 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:02, 01:48](1188 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:02, 01:31](1188 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:02, 01:53](1186 MB) -PASS -- TEST 'rap_diag_debug_intel' [03:19, 02:01](1272 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [34:03, 01:52](1187 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [33:26, 01:53](1193 MB) -PASS -- TEST 'rap_lndp_debug_intel' [32:50, 01:39](1186 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [32:08, 02:06](1186 MB) -PASS -- TEST 'rap_noah_debug_intel' [31:42, 02:02](1183 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [30:10, 01:21](1189 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [29:51, 02:08](1186 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [29:21, 01:59](1178 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [28:31, 01:59](1187 MB) -PASS -- TEST 'rap_flake_debug_intel' [28:07, 01:50](1187 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [27:36, 03:19](1192 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:23, 08:57] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [27:25, 02:02](1691 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:25, 09:50] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [27:26, 01:38](1010 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [26:58, 03:05](873 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [26:26, 04:52](875 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [24:50, 03:22](939 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [24:03, 03:42](923 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [23:46, 03:25](869 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [15:20, 02:25](781 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [16:07, 02:09](759 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:27, 11:17] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [23:27, 02:07](1076 MB) -PASS -- TEST 'conus13km_2threads_intel' [16:13, 01:19](1059 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [16:12, 01:14](954 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [39:55, 07:54] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [23:14, 01:57](902 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [36:54, 04:23] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [23:12, 01:33](1063 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [22:52, 01:53](1063 MB) -PASS -- TEST 'conus13km_debug_intel' [22:51, 01:52](1153 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [22:35, 01:38](854 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [22:35, 02:03](1144 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [22:32, 01:52](1240 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [51:07, 04:19] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [12:55, 01:51](1088 MB) - -PASS -- COMPILE 'hafsw_intel' [55:15, 08:59] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:49, 02:56](688 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:49, 01:45](1034 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:47, 02:41](736 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [07:47, 02:26](766 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [07:48, 03:22](785 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:47, 02:03](461 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:48, 02:42](482 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [07:48, 02:50](375 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:51, 04:01](470 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:47, 02:05](496 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:47, 01:56](494 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:49, 01:41](558 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:48, 01:23](405 MB) -PASS -- TEST 'gnv1_nested_intel' [07:46, 04:34](1704 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [58:18, 12:18] ( 1447 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [04:45, 01:41](673 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [54:14, 10:18] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [06:46, 02:02](601 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [06:46, 01:47](780 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [54:10, 10:38] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:52, 02:50](785 MB) - -PASS -- COMPILE 'hafs_all_intel' [50:07, 08:20] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:52, 03:10](732 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:52, 03:04](707 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [08:50, 01:27](907 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [57:12, 17:27] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [59:30, 01:51](764 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [52:00, 01:49](754 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [59:30, 01:37](642 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [59:30, 01:40](642 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [59:30, 01:39](652 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [59:30, 01:52](767 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [59:30, 02:07](764 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [59:30, 01:50](646 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [58:10, 02:19](687 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [58:06, 01:55](668 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [57:17, 01:26](765 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [55:55, 01:35](1971 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [54:52, 02:11](2032 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [51:08, 12:45] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:44, 01:23](753 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [22:36, 09:17] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [07:34, 01:14](312 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [07:34, 01:40](450 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [45:40, 01:57](448 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [28:42, 18:05] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [54:16, 02:18](1917 MB) - -PASS -- COMPILE 'atml_intel' [14:28, 12:26] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [54:07, 03:15](1885 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [52:48, 03:00](1883 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [38:18, 02:12](1031 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:21, 07:06] ( 866 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [00:30, 03:36](1929 MB) - -PASS -- COMPILE 'atmw_intel' [16:29, 14:28] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [51:01, 03:01](1879 MB) - -PASS -- COMPILE 'atmaero_intel' [12:25, 10:39] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [52:01, 03:21](3114 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [50:15, 03:02](2997 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [49:29, 03:08](3006 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [11:24, 09:52] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [49:19, 02:12](4477 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: 20241004 12:24:39 -Ending Date/Time: 20241004 14:39:40 -Total Time: 02h:15m:27s +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_gaea.log b/tests/logs/RegressionTests_gaea.log index 5e5b1dabfa..4f4fbc1ec6 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -27fcef4059964b9e0da304984293d4bea802d1df +a548dfb95738d53c36144e4a347eff7c9a786284 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 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) - dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) + 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) @@ -21,6 +21,8 @@ Submodule hashes used in testing: -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) @@ -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_224093 +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' [28:12, 27:05] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [20:01, 08:42](3188 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:12, 24:30] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [27:47, 14:21](1908 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:48, 14:25](1936 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:27, 06:48](1063 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:47, 15:02](1879 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:12, 24:24] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [26:03, 14:06](1908 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:13, 15:08] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [45:05, 26:15](1934 MB) - -PASS -- COMPILE 's2swa_intel' [22:14, 20:15] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [23:21, 10:05](3212 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [25:39, 10:18](3211 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:45, 06:03](3137 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [24:29, 10:34](3235 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:55, 06:22](3160 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [22:27, 08:25](3454 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [22:27, 09:50](3209 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [22:27, 08:39](3152 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [23:29, 10:08](3211 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [27:09, 10:35](3440 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [14:23, 07:30](3593 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [29:46, 09:43](4189 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:04, 05:57](4348 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [21:53, 07:50](3193 MB) - -PASS -- COMPILE 's2sw_intel' [21:11, 20:04] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [22:14, 06:17](1920 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [23:30, 08:47](1976 MB) - -PASS -- COMPILE 's2swa_debug_intel' [15:14, 13:48] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [33:07, 14:11](3273 MB) - -PASS -- COMPILE 's2sw_debug_intel' [16:13, 14:17] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [28:12, 09:07](1950 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [19:14, 17:43] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [23:32, 05:30](1985 MB) - -PASS -- COMPILE 's2s_intel' [20:11, 18:22] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [20:56, 05:35](2865 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [15:08, 02:04](2875 MB) -PASS -- TEST 'cpld_restart_c48_intel' [08:27, 01:13](2287 MB) - -PASS -- COMPILE 's2swa_faster_intel' [21:15, 19:32] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [14:17, 09:54](3211 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:16, 22:20] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:08, 15:35](1928 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:30, 07:21](1086 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:38, 17:02](1907 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:12, 11:49] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [37:26, 27:44](1952 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:13, 14:12] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:42, 03:50](664 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [08:37, 04:07](1565 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:37, 03:52](1564 MB) -PASS -- TEST 'control_latlon_intel' [07:01, 03:19](1572 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:24, 03:28](1567 MB) -PASS -- TEST 'control_c48_intel' [12:52, 10:00](1576 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [09:40, 05:50](695 MB) -PASS -- TEST 'control_c192_intel' [14:37, 11:10](1690 MB) -PASS -- TEST 'control_c384_intel' [28:35, 23:23](1957 MB) -PASS -- TEST 'control_c384gdas_intel' [20:43, 14:45](1152 MB) -PASS -- TEST 'control_stochy_intel' [04:52, 02:11](619 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:34, 01:14](425 MB) -PASS -- TEST 'control_lndp_intel' [04:33, 01:57](617 MB) -PASS -- TEST 'control_iovr4_intel' [05:35, 02:44](616 MB) -PASS -- TEST 'control_iovr5_intel' [07:41, 02:45](616 MB) -PASS -- TEST 'control_p8_intel' [08:18, 04:09](1858 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [08:09, 03:24](1856 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [08:01, 03:45](1858 MB) -PASS -- TEST 'control_restart_p8_intel' [05:13, 02:29](1005 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:46, 03:48](1857 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:13, 02:28](1017 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:46, 04:03](1847 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:18, 03:23](1930 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:32, 06:16](1859 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:03, 04:10](1907 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:13, 03:41](1865 MB) -PASS -- TEST 'merra2_thompson_intel' [08:07, 04:11](1857 MB) -PASS -- TEST 'regional_control_intel' [07:42, 04:56](849 MB) -PASS -- TEST 'regional_restart_intel' [05:09, 02:37](848 MB) -PASS -- TEST 'regional_decomp_intel' [07:35, 05:10](848 MB) -PASS -- TEST 'regional_2threads_intel' [04:49, 03:04](989 MB) -PASS -- TEST 'regional_noquilt_intel' [06:53, 04:42](1171 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:51, 04:37](849 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:44, 04:40](856 MB) -PASS -- TEST 'regional_wofs_intel' [09:35, 06:31](1571 MB) - -PASS -- COMPILE 'rrfs_intel' [15:15, 13:13] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:12, 06:51](998 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:37, 03:45](1129 MB) -PASS -- TEST 'rap_decomp_intel' [10:12, 07:11](1004 MB) -PASS -- TEST 'rap_2threads_intel' [09:02, 06:18](1079 MB) -PASS -- TEST 'rap_restart_intel' [05:58, 03:32](866 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:03, 07:13](998 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:54, 07:17](993 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:01, 05:11](865 MB) -PASS -- TEST 'hrrr_control_intel' [07:38, 03:49](995 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:23, 04:06](1000 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:34, 03:09](1071 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:33, 01:55](822 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:58, 06:45](991 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:29, 08:55](1947 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:28, 08:22](1943 MB) - -PASS -- COMPILE 'csawmg_intel' [13:14, 11:56] -PASS -- TEST 'control_csawmg_intel' [11:04, 06:56](954 MB) -PASS -- TEST 'control_ras_intel' [07:54, 03:37](650 MB) - -PASS -- COMPILE 'wam_intel' [14:15, 13:02] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:08, 12:06](1651 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:15, 13:07] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:07, 04:24](1850 MB) -PASS -- TEST 'regional_control_faster_intel' [06:35, 04:27](852 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:16, 14:23] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:48, 03:56](1585 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:11, 03:59](1592 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:38, 03:55](793 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:29, 03:15](793 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:01, 04:16](1093 MB) -PASS -- TEST 'control_ras_debug_intel' [05:04, 02:57](802 MB) -PASS -- TEST 'control_diag_debug_intel' [06:15, 02:58](1652 MB) -PASS -- TEST 'control_debug_p8_intel' [05:42, 03:04](1878 MB) -PASS -- TEST 'regional_debug_intel' [18:45, 16:24](887 MB) -PASS -- TEST 'rap_control_debug_intel' [07:34, 05:08](1173 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:33, 04:57](1168 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:23, 05:05](1170 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:08, 05:22](1169 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:01, 05:04](1172 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:44, 05:50](1262 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:42, 05:09](1171 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:36, 05:14](1173 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:28, 05:11](1174 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:25, 05:03](1173 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:26, 05:04](1169 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:23, 05:06](1173 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:30, 07:56](1171 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:28, 04:54](1167 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:26, 05:44](1172 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:25, 05:29](1172 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:58, 08:28](1178 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:12, 09:07] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:03, 13:35](1679 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:15, 12:58] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:05, 03:42](999 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:53, 05:48](876 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:45, 03:43](874 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:51, 05:19](927 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:56, 02:40](918 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:48, 03:52](872 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [21:57, 04:10](773 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [15:32, 01:44](754 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:14, 13:32] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:50, 02:40](1076 MB) -PASS -- TEST 'conus13km_2threads_intel' [18:56, 00:55](1052 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [18:52, 01:24](953 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:15, 13:54] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:24, 04:24](902 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:11, 10:48] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:35, 05:08](1049 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:28, 05:12](1045 MB) -PASS -- TEST 'conus13km_debug_intel' [17:15, 14:27](1130 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [25:22, 14:56](803 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [15:12, 08:15](1112 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:12, 14:54](1199 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [21:13, 19:25] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:33, 05:00](1069 MB) - -PASS -- COMPILE 'hafsw_intel' [20:11, 18:57] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:18, 04:41](682 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:31, 04:02](1029 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:32, 07:25](729 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:12, 11:32](759 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [29:40, 12:38](773 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:14, 05:02](464 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [17:35, 06:17](476 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [19:13, 02:35](367 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [25:42, 06:51](425 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [19:49, 03:29](495 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [19:06, 03:19](496 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [22:09, 04:05](556 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [19:37, 01:16](395 MB) -PASS -- TEST 'gnv1_nested_intel' [22:51, 05:09](1697 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [15:23, 13:55] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [28:00, 12:26](575 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [19:22, 18:00] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:36, 07:13](595 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:18, 07:20](776 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [21:22, 19:51] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [24:00, 05:24](777 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:15, 15:44] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [23:16, 06:05](718 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [23:16, 06:02](702 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [36:22, 19:59](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [14:18, 12:45] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [17:29, 02:38](752 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:23, 02:08](756 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [16:28, 02:30](644 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [15:28, 02:32](642 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [15:26, 02:32](644 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [15:28, 02:34](766 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [12:22, 02:35](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [11:20, 02:25](644 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [15:03, 06:08](695 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [14:01, 05:53](678 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [09:25, 02:36](766 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:22, 04:41](2029 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [09:23, 04:43](2031 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [10:11, 08:44] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:26, 05:34](748 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [16:11, 15:00] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [06:23, 02:36](766 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:16, 03:53] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:53, 01:59](316 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:48, 01:10](454 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:46, 02:03](454 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:16, 16:55] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:55, 04:10](1909 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [18:12, 17:06] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:11, 04:13](1895 MB) - -PASS -- COMPILE 'atml_intel' [18:13, 16:49] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:30, 08:05](1890 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:30, 08:11](1888 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [12:35, 03:33](1028 MB) - -PASS -- COMPILE 'atml_debug_intel' [16:11, 14:48] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:21, 06:56](1917 MB) - -PASS -- COMPILE 'atmw_intel' [19:12, 18:00] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:58, 02:55](1879 MB) - -PASS -- COMPILE 'atmaero_intel' [17:11, 15:29] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [11:09, 06:38](3106 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [11:11, 07:08](2993 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:04, 07:17](3007 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [14:17, 12:57] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:22, 18:38](4413 MB) - -PASS -- COMPILE 'atm_fbh_intel' [17:17, 15:11] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [12:25, 08:57](796 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: 20241003 10:58:55 -Ending Date/Time: 20241003 13:03:17 -Total Time: 02h:05m:18s -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 41eb20e38e..bc30027e59 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,17 +1,18 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -27fcef4059964b9e0da304984293d4bea802d1df +a548dfb95738d53c36144e4a347eff7c9a786284 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) - dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) + 0609c42d5345afdf69c41d476e86a35f41050764 CMEPS-interface/CMEPS (cmeps_v0.4.1-2348-g0609c42) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 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) c7004b658b9dae9fc473d4e6511dfc1cf8e6a7bd WW3 (6.07.1-347-gc7004b65) @@ -25,380 +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/Fernando.Andrade-maldonado/FV3_RT/rt_1043523 +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' [13:14, 11:57] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:15, 06:12](3294 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:14, 15:36] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:06, 16:37](1977 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:21, 17:25](2171 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:12, 07:58](1269 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:59, 18:32](1859 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:14, 16:08] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:49, 16:13](1959 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:13, 06:02] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:10, 23:31](1881 MB) - -PASS -- COMPILE 's2swa_intel' [13:14, 11:51] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [10:13, 07:28](3353 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:27, 07:25](3315 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:48, 04:15](3251 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:13, 07:30](3345 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:48, 04:15](3274 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:05, 07:09](3641 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:09, 07:32](3317 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:10, 06:05](3219 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:23, 07:30](3350 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:22, 09:45](3517 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:52, 06:11](3617 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:55, 08:39](4295 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:07, 05:39](4386 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:10, 05:29](3298 MB) - -PASS -- COMPILE 's2sw_intel' [14:14, 11:38] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:15, 05:38](1947 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:22, 07:20](2046 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:13, 06:00] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [15:08, 12:50](3401 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:13, 05:26] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:08, 08:52](2013 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:13, 10:35] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:01, 04:19](2046 MB) - -PASS -- COMPILE 's2s_intel' [12:13, 10:47] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:44, 07:39](3031 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:43, 02:38](3024 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:39, 01:32](2482 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:16, 16:13] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [11:16, 07:36](3349 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:16, 15:42] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:12, 17:18](2030 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:33, 08:00](1269 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:14, 19:05](1934 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:14, 05:40] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:59, 26:10](1944 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:13, 10:13] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:28, 03:19](702 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:49, 03:17](1579 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:54, 03:21](1594 MB) -PASS -- TEST 'control_latlon_intel' [05:45, 03:22](1591 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:49, 03:17](1591 MB) -PASS -- TEST 'control_c48_intel' [13:43, 11:20](1717 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:30, 06:24](853 MB) -PASS -- TEST 'control_c192_intel' [15:03, 12:12](1752 MB) -PASS -- TEST 'control_c384_intel' [17:04, 13:53](1978 MB) -PASS -- TEST 'control_c384gdas_intel' [13:02, 08:11](1378 MB) -PASS -- TEST 'control_stochy_intel' [04:30, 02:20](654 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:30, 00:58](510 MB) -PASS -- TEST 'control_lndp_intel' [04:27, 02:03](661 MB) -PASS -- TEST 'control_iovr4_intel' [05:32, 02:39](645 MB) -PASS -- TEST 'control_iovr5_intel' [04:52, 02:40](650 MB) -PASS -- TEST 'control_p8_intel' [06:17, 03:46](1886 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:00, 03:02](1889 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:57, 03:34](1877 MB) -PASS -- TEST 'control_restart_p8_intel' [04:49, 01:59](1129 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:49, 03:34](1834 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:53, 02:00](1160 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:51, 03:45](1861 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:51, 03:33](1962 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:50, 06:34](1878 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:57, 03:59](1947 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:58, 03:08](1884 MB) -PASS -- TEST 'merra2_thompson_intel' [06:54, 03:18](1898 MB) -PASS -- TEST 'regional_control_intel' [07:39, 05:12](1095 MB) -PASS -- TEST 'regional_restart_intel' [05:40, 02:57](1085 MB) -PASS -- TEST 'regional_decomp_intel' [08:36, 05:33](1078 MB) -PASS -- TEST 'regional_2threads_intel' [05:35, 03:23](1077 MB) -PASS -- TEST 'regional_noquilt_intel' [07:40, 05:12](1390 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:41, 05:12](1083 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:35, 05:17](1087 MB) -PASS -- TEST 'regional_wofs_intel' [08:37, 06:48](1889 MB) - -PASS -- COMPILE 'rrfs_intel' [11:13, 09:33] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:50, 07:45](1102 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:16, 04:03](1248 MB) -PASS -- TEST 'rap_decomp_intel' [09:50, 08:07](1031 MB) -PASS -- TEST 'rap_2threads_intel' [09:51, 07:19](1166 MB) -PASS -- TEST 'rap_restart_intel' [06:51, 04:03](1098 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:52, 07:43](1106 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:52, 08:11](1028 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:49, 05:48](1121 MB) -PASS -- TEST 'hrrr_control_intel' [05:47, 04:03](1038 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:47, 04:03](1023 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:47, 03:42](1102 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:35, 02:10](993 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:55, 07:39](1088 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:36, 09:36](1977 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:35, 08:59](2061 MB) - -PASS -- COMPILE 'csawmg_intel' [10:14, 09:07] -PASS -- TEST 'control_csawmg_intel' [08:46, 06:14](1014 MB) -PASS -- TEST 'control_ras_intel' [05:28, 03:17](750 MB) - -PASS -- COMPILE 'csawmg_gnu' [06:13, 04:09] -PASS -- TEST 'control_csawmg_gnu' [10:42, 08:20](738 MB) - -PASS -- COMPILE 'wam_intel' [11:13, 09:29] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:45, 11:03](1663 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:13, 09:33] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:56, 02:44](1892 MB) -PASS -- TEST 'regional_control_faster_intel' [06:37, 04:46](1082 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:13, 07:23] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:43, 02:12](1617 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:44, 02:08](1610 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:25, 02:59](827 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:25, 02:43](831 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:41, 04:11](1132 MB) -PASS -- TEST 'control_ras_debug_intel' [04:23, 02:45](843 MB) -PASS -- TEST 'control_diag_debug_intel' [04:48, 02:44](1685 MB) -PASS -- TEST 'control_debug_p8_intel' [04:44, 02:30](1891 MB) -PASS -- TEST 'regional_debug_intel' [18:39, 16:38](1086 MB) -PASS -- TEST 'rap_control_debug_intel' [06:25, 04:47](1173 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:26, 04:45](1211 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:24, 04:48](1215 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:25, 04:51](1206 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 04:47](1211 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:45, 04:58](1292 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:24, 04:56](1214 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:21, 04:54](1215 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:26, 04:49](1220 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:25, 04:51](1212 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:26, 04:44](1212 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:26, 04:44](1214 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:25, 07:56](1214 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:24, 04:49](1211 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:22, 06:01](1213 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:24, 04:59](1207 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:41, 08:31](1222 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:12, 04:10] -PASS -- TEST 'control_csawmg_debug_gnu' [04:39, 02:12](717 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:14, 04:27] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:54, 12:49](1684 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:15, 10:37] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:07, 03:50](1124 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:39, 06:22](1048 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:36, 03:28](977 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:39, 06:04](1081 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:36, 03:10](955 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:33, 03:34](930 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:42, 04:48](1024 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:28, 01:53](921 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:15, 09:34] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:07, 02:03](1188 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:50, 00:51](1100 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:43, 01:12](1100 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:13, 09:29] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:41, 04:13](977 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:12, 04:43] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:24, 04:41](1087 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:25, 04:34](1089 MB) -PASS -- TEST 'conus13km_debug_intel' [16:52, 14:19](1239 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:44, 14:35](976 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:49, 08:03](1154 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:52, 14:19](1306 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:13, 04:30] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:31, 04:48](1137 MB) - -PASS -- COMPILE 'hafsw_intel' [12:14, 11:00] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:22, 04:56](721 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [11:36, 06:29](1094 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:30, 06:54](817 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:25, 13:05](848 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:34, 14:48](864 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:55, 05:29](487 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:29, 06:40](507 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:44, 02:38](374 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:38, 07:20](478 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:47, 03:38](520 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:48, 03:34](522 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:55, 04:13](578 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:29, 01:08](402 MB) -PASS -- TEST 'gnv1_nested_intel' [06:39, 03:58](1741 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:13, 05:29] ( 1465 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:55, 12:30](583 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [12:16, 10:41] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:06, 08:37](622 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:09, 08:46](737 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:14, 10:54] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:34, 06:27](703 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:15, 10:34] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:25, 06:22](813 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:33, 06:24](797 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:59, 16:15](1215 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:15, 07:16] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 02:46](1156 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:22, 01:45](1108 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:42](1025 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:44](1025 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:20, 02:40](1025 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 02:44](1159 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:19, 02:45](1158 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:38](1031 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:27, 06:18](1071 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:22, 06:31](1044 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:46](1156 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 03:47](2519 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:20, 03:54](2512 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:12, 03:15] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:22, 06:10](1081 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:14, 06:21] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:31, 02:48](1168 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:12, 01:12] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:32, 00:44](265 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:52](329 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:24, 00:29](321 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:16, 10:03] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:08, 03:39](1949 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:15, 09:38] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:02, 03:32](1967 MB) - -PASS -- COMPILE 'atml_intel' [12:12, 10:01] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:01, 04:11](1834 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:57, 04:10](1863 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:47, 02:21](1087 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:11, 05:44] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:55, 05:28](1898 MB) - -PASS -- COMPILE 'atmw_intel' [12:12, 10:09] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:50, 01:52](1914 MB) - -PASS -- COMPILE 'atmaero_intel' [12:13, 09:43] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:54, 03:59](3186 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:56, 04:44](3090 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:43, 04:49](3114 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:41] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_gnu' [06:11, 04:30] -PASS -- TEST 'control_c48_gnu' [11:47, 09:19](1508 MB) -PASS -- TEST 'control_stochy_gnu' [05:21, 03:22](495 MB) -PASS -- TEST 'control_ras_gnu' [06:19, 04:51](504 MB) -PASS -- TEST 'control_p8_gnu' [08:01, 05:10](1443 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [07:08, 05:01](1455 MB) -PASS -- TEST 'control_flake_gnu' [12:25, 10:27](505 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:11, 04:25] -PASS -- TEST 'rap_control_gnu' [13:38, 11:14](809 MB) -PASS -- TEST 'rap_decomp_gnu' [13:37, 11:19](805 MB) -PASS -- TEST 'rap_2threads_gnu' [12:41, 10:10](914 MB) -PASS -- TEST 'rap_restart_gnu' [07:50, 05:44](573 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [13:42, 11:09](804 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:37, 11:24](835 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:51, 08:22](574 MB) -PASS -- TEST 'hrrr_control_gnu' [07:39, 05:47](836 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:36, 05:44](786 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [07:34, 05:14](902 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:41, 05:52](802 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [05:32, 03:01](560 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:31, 02:57](646 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [12:47, 11:03](803 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:12, 06:21] -PASS -- TEST 'control_diag_debug_gnu' [03:45, 01:30](1266 MB) -PASS -- TEST 'regional_debug_gnu' [13:39, 11:13](742 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:23, 02:35](817 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:22, 02:23](814 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:23, 02:25](821 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:22, 02:28](813 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:42, 02:39](899 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:22, 03:47](816 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:23, 02:28](818 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:23, 02:23](810 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:23, 01:28](456 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:21, 01:37](448 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:39, 01:34](1425 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:24, 02:27](820 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:24, 02:40](825 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:39, 03:58](828 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:39] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:01] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:33, 09:33](696 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:35, 05:02](693 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:39, 08:53](743 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:36, 04:39](738 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:37, 05:13](692 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:41, 07:08](547 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:32, 02:38](528 MB) -PASS -- TEST 'conus13km_control_gnu' [06:05, 03:21](863 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:50, 06:01](889 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:47, 01:55](549 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:22] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:50, 05:47](721 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:24] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:25, 02:26](703 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:24, 02:23](704 MB) -PASS -- TEST 'conus13km_debug_gnu' [09:58, 06:35](877 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [09:51, 06:32](569 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [10:45, 07:36](882 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:46, 06:24](946 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:21] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [05:30, 02:34](733 MB) - -PASS -- COMPILE 's2swa_gnu' [17:11, 15:33] - -PASS -- COMPILE 's2s_gnu' [16:13, 15:07] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [15:20, 12:16](1505 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:11, 02:54] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:12, 15:14] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [24:10, 21:19](1441 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:51] - -PASS -- COMPILE 'datm_cdeps_gnu' [16:15, 14:32] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:22, 03:01](689 MB) - -PASS -- COMPILE 'atm_fbh_intel' [11:12, 09:14] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:29, 11:37](1081 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: 20241002 18:34:02 -Ending Date/Time: 20241002 20:39:20 -Total Time: 02h:06m:49s -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 ada6d70f6d..4b8443b03a 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7 +1,7 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -72afacdfb7986f4a761f188cdf6eb4c740c51224 +229038624f3cd9854cdb4f2a8b235eee207416d3 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 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) - dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) + 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) @@ -21,6 +21,8 @@ Submodule hashes used in testing: -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) @@ -37,378 +39,378 @@ 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-20241001 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1451143 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_169100 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:11, 12:53] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:32, 08:45](2126 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:11, 17:15] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [16:29, 13:26](1992 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:45, 15:18](2281 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [21:48, 07:57](1352 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:10, 15:18](1915 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:11, 17:59] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [15:49, 13:17](1988 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:10, 05:32] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:31, 23:06](1968 MB) - -PASS -- COMPILE 's2swa_intel' [12:11, 11:04] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:16, 08:10](2193 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:30, 08:55](2199 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:41, 05:23](1954 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:14, 08:11](2214 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:43, 05:35](1726 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [12:11, 09:47](2544 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:13, 08:12](2189 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:12, 06:51](2105 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:27, 08:04](2199 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:26, 16:20](2974 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [20:55, 06:52](2907 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:25, 10:43](3820 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:30, 07:07](3634 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:17, 05:11](2134 MB) - -PASS -- COMPILE 's2sw_intel' [11:11, 10:07] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:08, 07:23](2004 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:17, 07:05](2072 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:10, 05:31] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [15:26, 12:23](2241 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:01] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:19, 08:40](2044 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:11, 09:56] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:22, 04:11](2072 MB) - -PASS -- COMPILE 's2s_intel' [13:11, 11:26] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:53, 06:01](3022 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:53, 02:12](3032 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:04, 01:15](2471 MB) - -PASS -- COMPILE 's2swa_faster_intel' [13:11, 11:43] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [13:26, 10:23](2216 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 15:50] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:09, 14:44](2065 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:25, 07:38](1387 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:25, 16:20](1998 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:10, 04:46] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:06, 23:52](2005 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:11, 08:41] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:27, 03:23](714 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [07:46, 02:51](1596 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:51, 02:56](1601 MB) -PASS -- TEST 'control_latlon_intel' [08:49, 02:50](1587 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:50, 02:56](1589 MB) -PASS -- TEST 'control_c48_intel' [16:50, 10:20](1704 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:31, 05:54](836 MB) -PASS -- TEST 'control_c192_intel' [17:04, 10:32](1781 MB) -PASS -- TEST 'control_c384_intel' [16:57, 12:26](2040 MB) -PASS -- TEST 'control_c384gdas_intel' [17:36, 10:46](1505 MB) -PASS -- TEST 'control_stochy_intel' [03:24, 01:49](669 MB) -PASS -- TEST 'control_stochy_restart_intel' [08:29, 01:18](531 MB) -PASS -- TEST 'control_lndp_intel' [07:27, 01:46](664 MB) -PASS -- TEST 'control_iovr4_intel' [08:26, 02:50](669 MB) -PASS -- TEST 'control_iovr5_intel' [07:27, 02:53](667 MB) -PASS -- TEST 'control_p8_intel' [09:07, 03:57](1880 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [12:13, 04:38](1900 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [11:13, 04:14](1879 MB) -PASS -- TEST 'control_restart_p8_intel' [13:02, 02:18](1161 MB) -PASS -- TEST 'control_noqr_p8_intel' [14:10, 04:36](1882 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [15:06, 02:47](1211 MB) -PASS -- TEST 'control_decomp_p8_intel' [16:51, 03:58](1885 MB) -PASS -- TEST 'control_2threads_p8_intel' [14:59, 03:58](1961 MB) -PASS -- TEST 'control_p8_lndp_intel' [17:41, 06:45](1870 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [18:08, 05:07](1975 MB) -PASS -- TEST 'control_p8_mynn_intel' [17:00, 03:23](1906 MB) -PASS -- TEST 'merra2_thompson_intel' [18:20, 04:29](1896 MB) -PASS -- TEST 'regional_control_intel' [17:44, 05:38](1190 MB) -PASS -- TEST 'regional_restart_intel' [10:39, 03:14](1163 MB) -PASS -- TEST 'regional_decomp_intel' [17:38, 05:45](1180 MB) -PASS -- TEST 'regional_2threads_intel' [15:35, 03:58](1156 MB) -PASS -- TEST 'regional_noquilt_intel' [17:36, 05:35](1521 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [19:46, 05:53](1187 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [18:33, 05:49](1201 MB) -PASS -- TEST 'regional_wofs_intel' [21:35, 07:49](2071 MB) - -PASS -- COMPILE 'rrfs_intel' [10:11, 08:26] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [21:02, 07:08](1220 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [17:07, 04:02](1357 MB) -PASS -- TEST 'rap_decomp_intel' [19:42, 07:38](1146 MB) -PASS -- TEST 'rap_2threads_intel' [19:39, 07:14](1361 MB) -PASS -- TEST 'rap_restart_intel' [07:02, 03:53](1135 MB) -PASS -- TEST 'rap_sfcdiff_intel' [19:55, 07:08](1194 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [19:42, 07:33](1155 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:56, 05:26](1213 MB) -PASS -- TEST 'hrrr_control_intel' [16:50, 03:33](1063 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [16:42, 03:36](1034 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [16:45, 03:18](1127 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:35, 01:57](1012 MB) -PASS -- TEST 'rrfs_v1beta_intel' [20:07, 06:49](1219 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [19:25, 10:19](2004 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [19:23, 10:19](2191 MB) - -PASS -- COMPILE 'csawmg_intel' [11:11, 10:04] -PASS -- TEST 'control_csawmg_intel' [15:33, 07:25](1038 MB) -PASS -- TEST 'control_ras_intel' [11:20, 03:27](845 MB) - -PASS -- COMPILE 'csawmg_gnu' [07:11, 04:50] -PASS -- TEST 'control_csawmg_gnu' [09:53, 07:10](1068 MB) - -PASS -- COMPILE 'wam_intel' [11:11, 09:07] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [17:46, 09:47](1660 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:11, 09:04] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [11:14, 03:21](1903 MB) -PASS -- TEST 'regional_control_faster_intel' [12:36, 05:42](1191 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:10, 07:31] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:40, 02:02](1608 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:42, 02:00](1622 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:24, 02:32](841 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:24, 02:23](847 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:39, 04:40](1144 MB) -PASS -- TEST 'control_ras_debug_intel' [05:26, 02:25](851 MB) -PASS -- TEST 'control_diag_debug_intel' [05:42, 02:31](1691 MB) -PASS -- TEST 'control_debug_p8_intel' [05:41, 02:42](1921 MB) -PASS -- TEST 'regional_debug_intel' [18:40, 15:40](1141 MB) -PASS -- TEST 'rap_control_debug_intel' [06:21, 04:14](1228 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:25, 04:04](1220 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:22, 04:20](1217 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:20](1226 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:19, 04:16](1229 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:29, 04:42](1312 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:21, 04:19](1224 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:19, 04:17](1218 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:22, 04:07](1228 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:21, 04:09](1226 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:20, 04:09](1220 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:23, 04:08](1232 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:23, 06:39](1215 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:11](1222 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:22, 04:55](1226 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:22, 04:13](1218 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:03, 07:11](1232 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 04:06] -PASS -- TEST 'control_csawmg_debug_gnu' [05:45, 03:06](1038 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:10, 03:45] ( 837 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 08:16] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:01, 03:36](1232 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:52, 05:26](1145 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:51, 03:01](1039 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:46, 05:25](1260 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:41, 02:46](1023 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:42, 03:10](998 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [19:00, 04:03](1097 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:35, 01:39](950 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:10, 08:57] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [09:50, 02:32](1288 MB) -PASS -- TEST 'conus13km_2threads_intel' [15:51, 01:05](1189 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [15:41, 01:27](1131 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:11, 08:51] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:37, 03:51](1076 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:10, 03:44] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [12:22, 04:50](1103 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [11:22, 04:44](1096 MB) -PASS -- TEST 'conus13km_debug_intel' [22:53, 14:05](1341 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [22:51, 14:01](1000 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [18:49, 11:01](1237 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [22:48, 14:06](1427 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:11, 04:44] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [12:29, 04:26](1166 MB) - -PASS -- COMPILE 'hafsw_intel' [15:11, 11:21] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:15, 05:49](844 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:30, 05:36](1246 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [17:26, 06:56](918 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [23:18, 14:55](946 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:22, 15:39](967 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [16:02, 05:33](595 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:23, 07:44](605 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [12:51, 03:01](439 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:15, 08:22](546 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [12:50, 04:08](600 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:52, 03:45](599 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [14:01, 04:59](664 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [10:29, 01:18](457 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:11, 04:58] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [20:49, 12:04](631 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [14:11, 10:19] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [28:59, 15:57](735 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [29:06, 15:44](833 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 11:07] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [25:53, 11:00](807 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:11, 09:46] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [25:15, 07:32](912 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [24:11, 07:19](905 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [30:03, 16:31](1341 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:10, 06:20] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [15:21, 02:14](1130 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:21, 01:26](1111 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [15:18, 02:08](1017 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [14:18, 02:15](1018 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [14:18, 02:11](1022 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [13:18, 02:14](1163 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [14:18, 02:19](1142 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [13:19, 02:12](1020 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [15:16, 05:24](1171 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [15:10, 05:19](1152 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [11:15, 02:17](1144 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [12:17, 03:09](2400 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [11:17, 03:13](2396 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:58] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [12:18, 05:13](1075 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 05:19] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [08:17, 02:16](1148 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:48] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:31, 01:00](339 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:22, 01:00](572 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:26, 00:39](573 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:11, 09:19] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:09, 03:24](2019 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:11, 08:34] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:01, 03:20](1987 MB) - -PASS -- COMPILE 'atml_intel' [13:10, 09:17] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:18, 05:55](1892 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:14, 05:56](1892 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:54, 03:18](1140 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:10, 04:48] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:08, 06:39](1928 MB) - -PASS -- COMPILE 'atmw_intel' [14:11, 10:09] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:08, 02:47](1942 MB) - -PASS -- COMPILE 'atmaero_intel' [14:11, 09:34] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [10:07, 05:42](1999 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [11:20, 05:27](1791 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:59, 05:31](1793 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:11, 04:11] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [21:09, 17:32](4521 MB) - -PASS -- COMPILE 'atm_gnu' [09:11, 05:10] -PASS -- TEST 'control_c48_gnu' [13:53, 07:59](1525 MB) -PASS -- TEST 'control_stochy_gnu' [06:24, 02:41](722 MB) -PASS -- TEST 'control_ras_gnu' [08:21, 04:13](725 MB) -PASS -- TEST 'control_p8_gnu' [09:16, 05:16](1702 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [08:55, 05:16](1718 MB) -PASS -- TEST 'control_flake_gnu' [07:25, 04:52](800 MB) - -PASS -- COMPILE 'rrfs_gnu' [08:10, 05:18] -PASS -- TEST 'rap_control_gnu' [11:52, 08:33](1070 MB) -PASS -- TEST 'rap_decomp_gnu' [11:55, 08:30](1072 MB) -PASS -- TEST 'rap_2threads_gnu' [11:06, 07:35](1132 MB) -PASS -- TEST 'rap_restart_gnu' [06:59, 04:12](880 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [12:00, 08:18](1090 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:00, 08:25](1074 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:16, 06:19](877 MB) -PASS -- TEST 'hrrr_control_gnu' [07:46, 04:37](1062 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:48, 04:30](1127 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [06:01, 03:57](1021 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:53, 04:44](1060 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:30, 02:18](876 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:34, 02:13](924 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:11, 08:13](1067 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [11:11, 06:03] -PASS -- TEST 'control_diag_debug_gnu' [03:48, 01:33](1618 MB) -PASS -- TEST 'regional_debug_gnu' [09:41, 07:45](1127 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:24, 02:11](1090 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:22, 02:01](1080 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:24, 02:19](1085 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:22, 02:07](1087 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:35, 02:29](1263 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:23, 03:20](1090 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:24, 02:24](1091 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:26, 02:18](1082 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:21, 01:26](719 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:22, 01:30](721 MB) -PASS -- TEST 'control_debug_p8_gnu' [04:46, 02:25](1698 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:26, 02:12](1090 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:23, 02:19](1091 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:03, 03:48](1091 MB) - -PASS -- COMPILE 'wam_debug_gnu' [08:11, 02:50] -PASS -- TEST 'control_wam_debug_gnu' [07:54, 05:14](1557 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [11:11, 04:32] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:59, 07:54](953 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:10, 04:32](941 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:42, 07:01](966 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:53, 03:43](880 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:54, 04:04](941 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:54, 05:47](854 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:28, 02:15](864 MB) -PASS -- TEST 'conus13km_control_gnu' [05:01, 02:41](1254 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:51, 01:06](1167 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:51, 01:30](936 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [17:11, 10:57] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:42, 04:38](985 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [15:11, 09:09] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:26, 02:05](968 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:27, 02:08](964 MB) -PASS -- TEST 'conus13km_debug_gnu' [09:01, 06:19](1276 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:55, 06:11](967 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [05:52, 03:47](1187 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:54, 06:04](1343 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [14:11, 09:13] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:28, 02:23](996 MB) - -PASS -- COMPILE 's2swa_gnu' [22:11, 17:14] - -PASS -- COMPILE 's2s_gnu' [21:11, 16:27] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [12:27, 09:42](2721 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [06:10, 03:45] - -PASS -- COMPILE 's2sw_pdlib_gnu' [23:12, 18:24] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [29:29, 26:52](3026 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [11:11, 06:19] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:20, 12:57](2896 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [20:11, 15:59] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:17, 02:20](770 MB) - -PASS -- COMPILE 'atm_fbh_intel' [12:11, 09:31] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:37, 09:58](1079 MB) +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: 20241004 08:01:09 -Ending Date/Time: 20241004 10:15:55 -Total Time: 02h:15m:53s +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 9040279613..d4e14d11fd 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -12373b99074bcffc16efda0d1491bdc6a10e9914 +a548dfb95738d53c36144e4a347eff7c9a786284 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 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) - dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) + 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) @@ -21,6 +21,8 @@ Submodule hashes used in testing: -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) @@ -37,256 +39,256 @@ 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-20241001 -COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2224851 +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' [20:24, 42:18] ( 1 warnings 1380 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [25:29, 08:22](2025 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [27:22, 48:38] ( 1 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [31:11, 20:59](1895 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [53:25, 21:47](2017 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [41:19, 10:04](1128 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [34:07, 24:11](1846 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [29:24, 50:47] ( 1 warnings 1424 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [27:57, 20:37](1877 MB) - -PASS -- COMPILE 's2swa_intel' [21:24, 43:25] ( 1 warnings 1399 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [26:14, 09:56](2058 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [26:35, 10:04](2072 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:19, 05:32](1718 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [26:15, 10:04](2082 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:18, 05:39](1715 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [25:10, 09:26](2315 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [26:09, 10:00](2060 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [24:27, 08:25](2014 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [26:30, 09:55](2065 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [23:24, 07:08](2031 MB) - -PASS -- COMPILE 's2sw_intel' [19:22, 40:38] ( 1 warnings 1284 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [25:28, 07:34](1905 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [27:44, 09:45](1951 MB) - -PASS -- COMPILE 's2swa_debug_intel' [23:14, 06:26] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [25:28, 16:27](2089 MB) - -PASS -- COMPILE 's2sw_debug_intel' [22:13, 06:20] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [20:14, 11:24](1926 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [52:18, 36:55] ( 1010 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [22:32, 05:32](1974 MB) - -PASS -- COMPILE 's2s_intel' [46:15, 37:24] ( 1 warnings 1033 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [26:57, 10:23](3021 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [19:58, 03:30](3019 MB) -PASS -- TEST 'cpld_restart_c48_intel' [09:01, 01:58](2454 MB) - -PASS -- COMPILE 's2swa_faster_intel' [40:24, 32:33] ( 1 warnings 1615 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [42:57, 09:22](2068 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [54:20, 46:22] ( 1 warnings 1344 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:16, 20:55](1915 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [57:50, 10:13](1127 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [11:36, 24:11](1904 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:12, 06:04] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [06:23, 33:19](1932 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:20, 36:48] ( 1 warnings 1116 remarks ) -PASS -- TEST 'control_flake_intel' [20:03, 04:19](648 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [20:24, 04:19](1544 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [23:30, 04:23](1542 MB) -PASS -- TEST 'control_latlon_intel' [20:20, 04:12](1541 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [20:29, 04:20](1534 MB) -PASS -- TEST 'control_c48_intel' [37:35, 18:09](1698 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [30:15, 10:15](829 MB) -PASS -- TEST 'control_c192_intel' [18:36, 15:51](1690 MB) -PASS -- TEST 'control_c384_intel' [26:33, 23:13](1813 MB) -PASS -- TEST 'control_c384gdas_intel' [17:23, 13:22](1001 MB) -PASS -- TEST 'control_stochy_intel' [04:58, 02:10](611 MB) -PASS -- TEST 'control_stochy_restart_intel' [18:29, 01:13](432 MB) -PASS -- TEST 'control_lndp_intel' [18:03, 02:00](600 MB) -PASS -- TEST 'control_iovr4_intel' [19:06, 03:11](599 MB) -PASS -- TEST 'control_iovr5_intel' [19:06, 03:19](597 MB) -PASS -- TEST 'control_p8_intel' [37:18, 04:48](1818 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [36:14, 04:02](1837 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [36:01, 04:42](1816 MB) -PASS -- TEST 'control_restart_p8_intel' [14:52, 02:54](1060 MB) -PASS -- TEST 'control_noqr_p8_intel' [32:54, 04:40](1817 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [14:03, 02:54](1072 MB) -PASS -- TEST 'control_decomp_p8_intel' [32:53, 04:45](1824 MB) -PASS -- TEST 'control_2threads_p8_intel' [32:50, 04:30](1914 MB) -PASS -- TEST 'control_p8_lndp_intel' [36:50, 08:38](1828 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [33:04, 05:10](1903 MB) -PASS -- TEST 'control_p8_mynn_intel' [32:00, 04:00](1852 MB) -PASS -- TEST 'merra2_thompson_intel' [31:56, 04:18](1837 MB) -PASS -- TEST 'regional_control_intel' [37:45, 07:12](1013 MB) -PASS -- TEST 'regional_restart_intel' [14:46, 04:03](1002 MB) -PASS -- TEST 'regional_decomp_intel' [35:45, 07:31](1003 MB) -PASS -- TEST 'regional_2threads_intel' [28:42, 04:21](991 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [24:50, 07:14](1003 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [20:40, 07:09](1013 MB) - -PASS -- COMPILE 'rrfs_intel' [50:17, 34:18] ( 3 warnings 1092 remarks ) -PASS -- TEST 'rap_control_intel' [54:21, 10:12](988 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [49:40, 05:41](1167 MB) -PASS -- TEST 'rap_decomp_intel' [55:12, 10:49](982 MB) -PASS -- TEST 'rap_2threads_intel' [54:21, 09:48](1067 MB) -PASS -- TEST 'rap_restart_intel' [11:54, 05:08](979 MB) -PASS -- TEST 'rap_sfcdiff_intel' [54:21, 10:12](979 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [55:12, 10:49](988 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [25:55, 07:47](996 MB) -PASS -- TEST 'hrrr_control_intel' [50:19, 05:11](986 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [50:19, 05:13](968 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [55:11, 04:40](1051 MB) -PASS -- TEST 'hrrr_control_restart_intel' [20:38, 03:03](909 MB) -PASS -- TEST 'rrfs_v1beta_intel' [54:30, 10:13](985 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [58:00, 13:37](1919 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [57:00, 13:04](1936 MB) - -PASS -- COMPILE 'csawmg_intel' [50:17, 34:22] ( 1091 remarks ) -PASS -- TEST 'control_csawmg_intel' [13:11, 08:06](969 MB) -PASS -- TEST 'control_ras_intel' [48:53, 04:23](667 MB) - -PASS -- COMPILE 'wam_intel' [37:16, 34:50] ( 994 remarks ) -PASS -- TEST 'control_wam_intel' [32:03, 14:44](1604 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [41:32, 36:49] ( 1294 remarks ) -PASS -- TEST 'control_p8_faster_intel' [31:01, 03:54](1834 MB) -PASS -- TEST 'regional_control_faster_intel' [33:41, 06:51](997 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [13:30, 08:12] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [19:48, 03:02](1562 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [19:50, 03:01](1570 MB) -PASS -- TEST 'control_stochy_debug_intel' [19:29, 04:02](779 MB) -PASS -- TEST 'control_lndp_debug_intel' [19:27, 03:42](780 MB) -PASS -- TEST 'control_csawmg_debug_intel' [21:44, 05:46](1087 MB) -PASS -- TEST 'control_ras_debug_intel' [16:24, 03:48](784 MB) -PASS -- TEST 'control_diag_debug_intel' [16:47, 03:40](1639 MB) -PASS -- TEST 'control_debug_p8_intel' [15:46, 03:37](1852 MB) -PASS -- TEST 'regional_debug_intel' [33:44, 22:21](1033 MB) -PASS -- TEST 'rap_control_debug_intel' [18:26, 06:24](1161 MB) -PASS -- TEST 'hrrr_control_debug_intel' [11:34, 06:05](1165 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [17:27, 06:20](1165 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [17:28, 06:27](1167 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [17:31, 06:24](1160 MB) -PASS -- TEST 'rap_diag_debug_intel' [16:39, 06:43](1248 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [16:30, 06:32](1164 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [13:25, 06:21](1178 MB) -PASS -- TEST 'rap_lndp_debug_intel' [13:29, 06:04](1169 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [17:29, 06:11](1163 MB) -PASS -- TEST 'rap_noah_debug_intel' [17:28, 06:08](1165 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [16:27, 06:12](1165 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [19:28, 10:06](1167 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [15:30, 06:10](1160 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [11:28, 07:26](1170 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:25, 06:15](1168 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:53, 10:44](1164 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:30, 05:17] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [44:02, 16:48](1644 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [46:38, 30:35] ( 3 warnings 1026 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [22:17, 05:30](1041 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [24:51, 08:29](899 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [20:52, 04:20](868 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [24:51, 08:07](938 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [23:41, 03:59](907 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [21:45, 04:37](860 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [15:50, 06:20](891 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [15:30, 02:26](839 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:33, 31:57] ( 3 warnings 1199 remarks ) -PASS -- TEST 'conus13km_control_intel' [21:54, 02:46](1098 MB) -PASS -- TEST 'conus13km_2threads_intel' [11:54, 01:19](1036 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [11:52, 01:38](1017 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [00:18, 31:33] ( 3 warnings 1046 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:52, 05:26](908 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [30:14, 05:33] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [31:28, 06:17](1036 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [30:27, 06:07](1053 MB) -PASS -- TEST 'conus13km_debug_intel' [44:03, 19:01](1150 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [44:03, 19:09](889 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [35:53, 11:10](1091 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [42:50, 19:08](1208 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:11, 05:16] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [26:28, 06:25](1087 MB) - -PASS -- COMPILE 'hafsw_intel' [04:20, 39:39] ( 1 warnings 1418 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:19, 06:46](699 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:30, 06:06](1070 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [45:15, 09:15](754 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:22, 16:05](776 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [59:25, 17:50](797 MB) -PASS -- TEST 'gnv1_nested_intel' [43:39, 06:40](1669 MB) - -PASS -- COMPILE 'hafs_all_intel' [55:16, 35:44] ( 1265 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [13:29, 08:25](752 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:34, 08:24](738 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [28:14, 08:11] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:24, 03:44](1075 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [07:25, 02:10](1049 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [09:24, 03:37](937 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [09:24, 03:40](934 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [09:24, 03:42](932 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [09:24, 03:44](1078 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [09:24, 03:45](1067 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [08:23, 03:13](938 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [13:16, 07:41](897 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:18, 07:36](851 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [09:21, 03:43](1077 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [10:24, 05:10](2373 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [10:24, 05:13](2432 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [22:13, 03:20] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [18:27, 08:17](1007 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:12, 08:10] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [09:19, 03:44](1073 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [12:14, 01:55] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [08:36, 01:05](240 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [08:31, 00:57](267 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [11:27, 00:41](260 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [41:20, 36:07] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [26:43, 05:01](1902 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [40:16, 35:18] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [27:59, 04:53](1889 MB) - -PASS -- COMPILE 'atml_intel' [38:14, 36:43] ( 8 warnings 1157 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [23:52, 05:51](1858 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [23:52, 05:47](1859 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [15:48, 03:17](1066 MB) - -PASS -- COMPILE 'atml_debug_intel' [10:11, 06:19] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [36:55, 07:26](1906 MB) - -PASS -- COMPILE 'atmw_intel' [39:18, 37:21] ( 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [58:43, 02:34](1864 MB) - -PASS -- COMPILE 'atmaero_intel' [05:19, 35:37] ( 1098 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [11:16, 05:19](1943 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [12:16, 06:24](1714 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:59, 06:29](1721 MB) - -PASS -- COMPILE 'atm_fbh_intel' [53:17, 31:35] ( 3 warnings 996 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [25:42, 15:19](1022 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: 20241003 21:13:31 -Ending Date/Time: 20241004 10:39:52 -Total Time: 13h:27m:08s +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 03864bbf5c..3cf2788835 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -72afacdfb7986f4a761f188cdf6eb4c740c51224 +229038624f3cd9854cdb4f2a8b235eee207416d3 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 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) - dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) + 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) @@ -21,6 +21,8 @@ Submodule hashes used in testing: -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) @@ -37,289 +39,361 @@ 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_334122 +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' [18:11, 16:37] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:47, 14:25](2081 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 19:35] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:36, 18:08](1944 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:23, 19:03](2116 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:17, 09:02](1228 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:43, 20:25](1875 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:11, 23:07] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:42, 17:48](1938 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:11, 08:23] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [31:44, 28:16](1934 MB) - -PASS -- COMPILE 's2swa_intel' [18:11, 17:09] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [17:34, 14:34](2135 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:46, 14:11](2133 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:56, 07:56](1792 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [17:34, 14:21](2169 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:56, 08:04](1700 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [16:30, 13:28](2415 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:34, 14:27](2121 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [15:34, 12:16](2040 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:45, 14:27](2137 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:45, 16:29](2707 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:09, 08:58](2702 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:29, 11:00](3676 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:08, 06:55](3497 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:27, 06:04](2087 MB) - -PASS -- COMPILE 's2sw_intel' [18:11, 16:52] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [16:19, 13:42](1966 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:28, 08:02](2025 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:11, 08:35] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [16:23, 13:27](2164 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:11, 08:18] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:05, 09:16](1995 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:11, 15:24] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:08, 04:52](2030 MB) - -PASS -- COMPILE 's2s_intel' [16:11, 14:47] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:54, 08:43](3023 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:54, 03:32](3026 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:51, 02:18](2482 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:12, 17:51] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [17:33, 15:01](2136 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:11, 23:02] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:14, 18:20](2009 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:28, 09:00](1242 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:10, 20:29](1926 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:11, 08:31] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:11, 29:48](1969 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:10, 13:50] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:25, 03:43](684 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:47, 03:32](1569 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:52, 03:36](1580 MB) -PASS -- TEST 'control_latlon_intel' [05:43, 03:31](1569 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:52, 03:35](1568 MB) -PASS -- TEST 'control_c48_intel' [16:54, 14:45](1711 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:34, 08:13](840 MB) -PASS -- TEST 'control_c192_intel' [16:04, 13:11](1746 MB) -PASS -- TEST 'control_c384_intel' [19:59, 16:42](1991 MB) -PASS -- TEST 'control_c384gdas_intel' [13:47, 09:59](1332 MB) -PASS -- TEST 'control_stochy_intel' [03:23, 01:52](642 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:39, 01:09](474 MB) -PASS -- TEST 'control_lndp_intel' [03:23, 01:45](642 MB) -PASS -- TEST 'control_iovr4_intel' [04:27, 02:43](642 MB) -PASS -- TEST 'control_iovr5_intel' [04:26, 02:42](632 MB) -PASS -- TEST 'control_p8_intel' [07:04, 04:16](1867 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:18, 03:35](1879 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:25, 04:07](1861 MB) -PASS -- TEST 'control_restart_p8_intel' [05:16, 02:24](1094 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:03, 04:09](1850 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:35, 02:20](1131 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:19, 04:16](1860 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:08, 04:29](1945 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:46, 07:12](1863 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:28, 04:50](1944 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:28, 03:31](1877 MB) -PASS -- TEST 'merra2_thompson_intel' [06:42, 03:53](1882 MB) -PASS -- TEST 'regional_control_intel' [08:37, 06:43](1073 MB) -PASS -- TEST 'regional_restart_intel' [05:39, 03:37](1077 MB) -PASS -- TEST 'regional_decomp_intel' [08:30, 07:06](1066 MB) -PASS -- TEST 'regional_2threads_intel' [06:36, 04:44](1072 MB) -PASS -- TEST 'regional_noquilt_intel' [08:43, 06:32](1377 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:43, 06:37](1074 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:39, 06:33](1062 MB) -PASS -- TEST 'regional_wofs_intel' [09:36, 07:59](1900 MB) - -PASS -- COMPILE 'rrfs_intel' [14:10, 12:50] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [11:07, 08:28](1053 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:01, 05:15](1244 MB) -PASS -- TEST 'rap_decomp_intel' [10:54, 08:45](1016 MB) -PASS -- TEST 'rap_2threads_intel' [10:53, 08:37](1153 MB) -PASS -- TEST 'rap_restart_intel' [07:33, 04:23](1027 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:12, 08:25](1049 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:56, 08:42](1019 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:31, 06:18](1062 MB) -PASS -- TEST 'hrrr_control_intel' [07:08, 04:22](1017 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:07, 04:26](1020 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:23, 04:15](1082 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:40, 02:21](944 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:17, 08:22](1037 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:25, 09:52](1977 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:22, 09:36](2018 MB) - -PASS -- COMPILE 'csawmg_intel' [14:10, 12:53] -PASS -- TEST 'control_csawmg_intel' [08:35, 06:40](1014 MB) -PASS -- TEST 'control_ras_intel' [05:21, 03:31](711 MB) - -PASS -- COMPILE 'wam_intel' [14:10, 12:22] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:47, 12:51](1651 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:10, 13:08] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:21, 03:20](1872 MB) -PASS -- TEST 'regional_control_faster_intel' [08:39, 06:18](1074 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:10, 10:06] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:42, 02:21](1595 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:51, 02:14](1600 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:20, 03:04](812 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:25, 02:51](815 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:40, 04:31](1128 MB) -PASS -- TEST 'control_ras_debug_intel' [04:27, 02:47](824 MB) -PASS -- TEST 'control_diag_debug_intel' [04:47, 02:51](1673 MB) -PASS -- TEST 'control_debug_p8_intel' [04:41, 02:54](1899 MB) -PASS -- TEST 'regional_debug_intel' [19:45, 17:28](1073 MB) -PASS -- TEST 'rap_control_debug_intel' [06:28, 04:58](1200 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:25, 04:55](1196 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:36, 04:59](1203 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:28, 05:02](1204 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:31, 05:01](1205 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:33, 05:17](1289 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:20, 05:02](1195 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:20, 05:05](1196 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:23, 05:04](1202 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 04:58](1195 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:23, 04:50](1192 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:21, 05:05](1204 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:22, 08:03](1198 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:21, 04:50](1198 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:30, 05:55](1204 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:25, 05:03](1204 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:25, 08:37](1206 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:11, 06:19] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:44, 13:13](1673 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 12:38] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:52, 04:58](1128 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:15, 07:13](993 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:12, 03:49](918 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:03, 07:26](1071 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:05, 03:44](937 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:02, 03:58](889 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:24, 05:25](965 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:43, 02:03](871 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 12:36] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:00, 02:45](1161 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:46, 01:14](1101 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:33](1064 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:10, 13:02] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:40, 04:41](968 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 06:21] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:26, 04:49](1080 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:25, 04:53](1082 MB) -PASS -- TEST 'conus13km_debug_intel' [16:47, 14:48](1258 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:46, 15:10](932 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:41, 08:41](1168 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:41, 14:44](1299 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:11, 06:36] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:23, 05:01](1133 MB) - -PASS -- COMPILE 'hafsw_intel' [16:11, 15:07] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:14, 05:57](737 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:24, 06:35](1110 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:25, 07:34](811 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [27:12, 24:32](845 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [31:21, 28:44](866 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:03, 07:21](513 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:30, 08:33](501 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:56, 03:29](370 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:23, 09:44](478 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:56, 04:46](523 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:00, 04:30](523 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:50, 05:40](569 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:33](400 MB) -PASS -- TEST 'gnv1_nested_intel' [08:09, 04:18](1723 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:11, 06:10] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:55, 13:14](581 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:27] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:04, 13:08](633 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:22, 12:56](716 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 14:09] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:19, 08:40](705 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:11, 14:16] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:18, 07:34](808 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:12, 07:35](790 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:55, 16:22](1208 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [11:10, 09:32] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 03:01](1159 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:55](1103 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:53](1013 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:55](1011 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:55](1015 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 03:02](1153 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:18, 04:36](1152 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:16, 02:50](1020 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:13, 06:31](1024 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:10, 06:26](1000 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:57](1154 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:17, 04:21](2390 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:17, 04:23](2393 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:10, 05:33] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 06:28](1070 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:10, 08:17] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:16, 03:01](1164 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:17] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:32, 01:01](249 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:56](324 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:36](321 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:10, 13:46] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:06, 04:12](1963 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:10, 13:44] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:56, 03:58](1948 MB) - -PASS -- COMPILE 'atml_intel' [15:10, 13:48] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:28, 04:55](1856 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:19, 04:55](1865 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:52, 02:48](1051 MB) - -PASS -- COMPILE 'atml_debug_intel' [12:10, 10:35] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:21, 06:02](1892 MB) - -PASS -- COMPILE 'atmw_intel' [12:10, 10:49] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:15, 02:12](1897 MB) - -PASS -- COMPILE 'atmaero_intel' [17:10, 15:15] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:09, 04:37](1973 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:14, 05:22](1750 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:58, 05:28](1771 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:10, 07:32] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:53, 20:55](4485 MB) - -PASS -- COMPILE 'atm_fbh_intel' [14:11, 12:34] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:27, 14:03](1078 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: 20241004 07:58:40 -Ending Date/Time: 20241004 09:40:37 -Total Time: 01h:42m:35s -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 310edabefe..3f3dca3ed4 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -12373b99074bcffc16efda0d1491bdc6a10e9914 +73c9d3c08bd18fa47227bd6c2ccb055397ceba95 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 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) - dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) + 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) @@ -21,6 +21,8 @@ Submodule hashes used in testing: -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) @@ -37,238 +39,238 @@ 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-20241001 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_73695 +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' [13:28, 11:17] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [21:45, 02:30](3088 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:29, 11:50] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [21:45, 02:36](1809 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [02:37, 03:25](1838 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [02:27, 02:53](960 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:45, 03:45](1787 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:29, 11:55] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [21:45, 01:59](1805 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:25] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:53, 03:03](1837 MB) - -PASS -- COMPILE 's2swa_intel' [13:28, 11:14] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [21:45, 02:34](3116 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [21:45, 02:53](3116 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:23, 02:05](3046 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [21:44, 02:31](3135 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:22, 02:02](3065 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [21:44, 02:03](3355 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [21:44, 02:35](3110 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [21:45, 02:07](3056 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [21:44, 02:50](3115 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [21:53, 06:27](4107 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [01:59, 07:35](4252 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [21:45, 02:49](3095 MB) - -PASS -- COMPILE 's2sw_intel' [12:28, 11:04] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [22:46, 02:44](1827 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [22:46, 02:41](1882 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:26, 10:21] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [22:47, 03:02](1889 MB) - -PASS -- COMPILE 's2s_intel' [11:25, 10:03] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [23:47, 01:42](2859 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [23:47, 02:21](2866 MB) -PASS -- TEST 'cpld_restart_c48_intel' [18:43, 02:16](2282 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:31, 16:10] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [17:42, 02:54](3125 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:27, 11:49] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:46, 01:58](1834 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [03:08, 02:18](989 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [02:44, 02:47](1795 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:23, 05:08] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [20:29, 02:06](1851 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:25, 09:05] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [13:22, 01:26](568 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [13:22, 02:11](1461 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [13:22, 02:05](1469 MB) -PASS -- TEST 'control_latlon_intel' [13:22, 02:06](1465 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [13:22, 02:14](1469 MB) -PASS -- TEST 'control_c48_intel' [13:21, 02:33](1563 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [13:21, 01:54](688 MB) -PASS -- TEST 'control_c192_intel' [13:22, 02:32](1587 MB) -PASS -- TEST 'control_c384_intel' [13:26, 02:18](1895 MB) -PASS -- TEST 'control_c384gdas_intel' [13:26, 05:46](1063 MB) -PASS -- TEST 'control_stochy_intel' [13:22, 01:29](522 MB) -PASS -- TEST 'control_stochy_restart_intel' [09:50, 02:03](328 MB) -PASS -- TEST 'control_lndp_intel' [12:16, 01:31](524 MB) -PASS -- TEST 'control_iovr4_intel' [12:12, 01:41](517 MB) -PASS -- TEST 'control_iovr5_intel' [12:06, 01:43](517 MB) -PASS -- TEST 'control_p8_intel' [11:29, 02:27](1759 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [11:23, 02:57](1752 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [10:26, 02:34](1758 MB) -PASS -- TEST 'control_restart_p8_intel' [05:00, 03:09](906 MB) -PASS -- TEST 'control_noqr_p8_intel' [10:03, 02:26](1754 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:20, 02:52](918 MB) -PASS -- TEST 'control_decomp_p8_intel' [10:03, 02:24](1750 MB) -PASS -- TEST 'control_2threads_p8_intel' [08:46, 02:31](1841 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:46, 02:32](1758 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:42, 03:21](1809 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:38, 03:00](1773 MB) -PASS -- TEST 'merra2_thompson_intel' [07:37, 02:52](1760 MB) -PASS -- TEST 'regional_control_intel' [07:31, 02:09](837 MB) -PASS -- TEST 'regional_restart_intel' [59:40, 01:19](842 MB) -PASS -- TEST 'regional_decomp_intel' [07:30, 01:52](838 MB) -PASS -- TEST 'regional_2threads_intel' [07:26, 01:48](891 MB) -PASS -- TEST 'regional_noquilt_intel' [06:21, 01:16](1165 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:12, 02:23](841 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:25, 01:35](834 MB) -PASS -- TEST 'regional_wofs_intel' [04:54, 01:26](1569 MB) - -PASS -- COMPILE 'rrfs_intel' [10:26, 08:11] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [03:50, 03:12](904 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [03:37, 02:07](1054 MB) -PASS -- TEST 'rap_decomp_intel' [03:20, 02:30](900 MB) -PASS -- TEST 'rap_2threads_intel' [02:43, 02:35](983 MB) -PASS -- TEST 'rap_restart_intel' [53:07, 03:17](773 MB) -PASS -- TEST 'rap_sfcdiff_intel' [01:41, 03:04](900 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [00:57, 02:33](904 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [50:56, 02:44](774 MB) -PASS -- TEST 'hrrr_control_intel' [00:49, 02:21](901 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [59:58, 02:46](900 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [59:49, 02:13](973 MB) -PASS -- TEST 'hrrr_control_restart_intel' [54:05, 02:01](732 MB) -PASS -- TEST 'rrfs_v1beta_intel' [59:41, 02:57](897 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [59:38, 01:46](1853 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [59:08, 02:11](1846 MB) - -PASS -- COMPILE 'csawmg_intel' [09:24, 07:54] -PASS -- TEST 'control_csawmg_intel' [59:00, 01:30](858 MB) -PASS -- TEST 'control_ras_intel' [58:57, 01:53](554 MB) - -PASS -- COMPILE 'wam_intel' [09:25, 07:56] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [58:46, 01:32](1553 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:25, 08:11] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [58:27, 03:12](1759 MB) -PASS -- TEST 'regional_control_faster_intel' [58:26, 01:17](834 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:24, 07:38] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [58:10, 01:47](1492 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [58:00, 01:47](1491 MB) -PASS -- TEST 'control_stochy_debug_intel' [57:46, 01:47](697 MB) -PASS -- TEST 'control_lndp_debug_intel' [57:46, 02:04](697 MB) -PASS -- TEST 'control_csawmg_debug_intel' [56:21, 01:30](999 MB) -PASS -- TEST 'control_ras_debug_intel' [56:20, 02:00](706 MB) -PASS -- TEST 'control_diag_debug_intel' [55:52, 02:10](1555 MB) -PASS -- TEST 'control_debug_p8_intel' [54:18, 02:21](1782 MB) -PASS -- TEST 'regional_debug_intel' [53:24, 01:14](888 MB) -PASS -- TEST 'rap_control_debug_intel' [53:11, 01:41](1078 MB) -PASS -- TEST 'hrrr_control_debug_intel' [53:06, 01:48](1071 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [53:05, 01:57](1074 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [53:02, 01:38](1072 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [52:56, 01:46](1076 MB) -PASS -- TEST 'rap_diag_debug_intel' [52:36, 02:09](1163 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [52:12, 01:38](1075 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [52:11, 01:40](1077 MB) -PASS -- TEST 'rap_lndp_debug_intel' [51:39, 01:52](1079 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [51:39, 01:51](1076 MB) -PASS -- TEST 'rap_noah_debug_intel' [51:19, 01:54](1074 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [51:11, 01:46](1074 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [50:48, 01:33](1073 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [50:15, 01:45](1067 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [50:09, 01:55](1075 MB) -PASS -- TEST 'rap_flake_debug_intel' [50:08, 01:45](1082 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [49:32, 02:39](1081 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:20, 04:24] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:24, 01:25](1575 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:24, 07:50] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [49:28, 02:47](910 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [49:26, 03:03](778 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [49:06, 03:32](784 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [48:20, 02:31](840 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [47:53, 03:56](826 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [47:02, 02:48](775 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [40:04, 02:39](675 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [41:59, 01:21](660 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:23, 07:50] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [45:38, 01:55](986 MB) -PASS -- TEST 'conus13km_2threads_intel' [40:10, 01:57](991 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [40:04, 01:43](861 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:22, 07:54] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [45:27, 02:20](808 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:30] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [45:27, 01:50](952 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [45:25, 01:59](950 MB) -PASS -- TEST 'conus13km_debug_intel' [45:13, 01:45](1040 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [45:12, 01:37](708 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [44:29, 02:10](1041 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [44:26, 01:44](1105 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 04:23] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [44:19, 01:42](980 MB) - -PASS -- COMPILE 'hafsw_intel' [11:31, 09:28] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [43:56, 02:58](600 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [43:46, 01:47](940 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [43:39, 02:38](647 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [43:33, 02:24](671 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [43:34, 03:16](691 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [42:36, 02:03](374 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [42:27, 03:09](388 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [42:25, 02:41](351 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [41:53, 03:05](366 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [41:22, 02:28](402 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [40:56, 01:46](402 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [40:55, 01:47](473 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [40:47, 01:26](464 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:20, 04:52] ( 1447 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [40:33, 02:18](499 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [10:28, 09:08] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [40:06, 01:56](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [39:55, 02:43](693 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:31, 09:21] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [38:29, 02:15](700 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:29, 08:47] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [38:22, 03:15](641 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [37:48, 03:04](616 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [37:45, 01:33](878 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:31, 09:52] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [37:13, 01:42](1814 MB) - -PASS -- COMPILE 'atml_intel' [10:27, 08:50] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [07:21, 05:23] ( 866 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [10:35, 08:27] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [36:57, 02:23](3011 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [36:33, 02:51](2898 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [36:14, 02:47](2906 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:24, 04:26] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [36:15, 02:52](4374 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: 20241004 12:24:28 -Ending Date/Time: 20241004 13:52:15 -Total Time: 01h:28m:29s +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/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 1b3b9fa5b2..8eb72b1571 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -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_utils.sh b/tests/rt_utils.sh index e56321cb3d..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 diff --git a/tests/run_test.sh b/tests/run_test.sh index 75808abad7..64f7f007d2 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -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/test_changes.list b/tests/test_changes.list index 70d3028764..caee037a6f 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,4 +1,2 @@ -cpld_control_gfsv17 intel -cpld_control_gfsv17_iau intel -cpld_restart_gfsv17 intel -cpld_mpi_gfsv17 intel +datm_cdeps_lm4_gswp3 intel +datm_cdeps_lm4_gswp3_rst intel 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 From db1781a05dce1125cfe17f8324650674640f0a9e Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Fri, 18 Oct 2024 12:58:16 -0400 Subject: [PATCH 04/24] First reconciliation PR from production/RRFS.v1 (#2449) * UFSWM - physics updates for RRFS.v1 code freeze * FV3 - physics updates for RRFS.v1 code freeze * ccpp-physics - physics updates for RRFS.v1 code freeze * apply gaea job card fix for MPI issue: FI_VERBS_PREFER_XRC --- FV3 | 2 +- modulefiles/ufs_gaea.intel.lua | 4 +- tests/bl_date.conf | 2 +- tests/fv3_conf/fv3_slurm.IN_gaea | 1 + tests/logs/RegressionTests_acorn.log | 516 ++++++++-------- tests/logs/RegressionTests_gaea.log | 565 +++++++++--------- tests/logs/RegressionTests_hera.log | 743 ++++++++++++------------ tests/logs/RegressionTests_hercules.log | 743 ++++++++++++------------ tests/logs/RegressionTests_orion.log | 635 +++++++++----------- tests/logs/RegressionTests_wcoss2.log | 456 +++++++-------- tests/rt.sh | 9 +- tests/run_test.sh | 2 +- tests/test_changes.list | 110 +++- 13 files changed, 1911 insertions(+), 1877 deletions(-) diff --git a/FV3 b/FV3 index 1aba87cb30..1e10d62a97 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 1aba87cb308fb52912e7fe6dd6b53d0ce7077554 +Subproject commit 1e10d62a971e4114faea90ae2f134664f3a9ef02 diff --git a/modulefiles/ufs_gaea.intel.lua b/modulefiles/ufs_gaea.intel.lua index 592eb7461d..8e8525c21e 100644 --- a/modulefiles/ufs_gaea.intel.lua +++ b/modulefiles/ufs_gaea.intel.lua @@ -7,10 +7,10 @@ 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/fms-2024.01/install/modulefiles/Core") -stack_intel_ver=os.getenv("stack_intel_ver") or "2023.1.0" +stack_intel_ver=os.getenv("stack_intel_ver") or "2023.2.0" load(pathJoin("stack-intel", stack_intel_ver)) -stack_cray_mpich_ver=os.getenv("stack_cray_mpich_ver") or "8.1.25" +stack_cray_mpich_ver=os.getenv("stack_cray_mpich_ver") or "8.1.28" load(pathJoin("stack-cray-mpich", stack_cray_mpich_ver)) stack_python_ver=os.getenv("stack_python_ver") or "3.10.13" diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 9985917741..c938d3783e 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20241001 +export BL_DATE=20241011 diff --git a/tests/fv3_conf/fv3_slurm.IN_gaea b/tests/fv3_conf/fv3_slurm.IN_gaea index ad2459efba..b306f1a1c5 100644 --- a/tests/fv3_conf/fv3_slurm.IN_gaea +++ b/tests/fv3_conf/fv3_slurm.IN_gaea @@ -28,6 +28,7 @@ export OMP_STACKSIZE=1024M export NC_BLKSZ=1M export ESMF_RUNTIME_PROFILE=ON export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" +export FI_VERBS_PREFER_XRC=0 # Avoid job errors because of filesystem synchronization delays sync && sleep 1 diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 7e1bada843..5f4e122a1f 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,7 +1,7 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -73c9d3c08bd18fa47227bd6c2ccb055397ceba95 +f814ef71e560a00a30454e00ef05ccf4d20f45b3 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 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) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1aba87cb308fb52912e7fe6dd6b53d0ce7077554 FV3 (heads/develop) + b71196b0faf74f0fe59558796285424c915b6eaa FV3 (remotes/origin/rrfsv1-to-ufs/dev1) 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) + d5842b617d0bdddd00fd8d45cf1cbf3c9c141258 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5334-gd5842b61) 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 @@ -38,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-20241001 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1459763 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241011 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3720938 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -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) +PASS -- COMPILE 's2swa_32bit_intel' [11:23, 10:09] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [45:59, 02:46](3193 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [32:45, 31:20] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [24:26, 04:08](1914 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [54:59, 03:48](1943 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [54:07, 03:56](1075 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:18, 03:38](1885 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:31, 16:20] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [39:52, 01:59](1899 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:12] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [50:03, 03:41](1941 MB) + +PASS -- COMPILE 's2swa_intel' [40:55, 39:06] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:23, 02:20](3229 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:23, 03:08](3224 MB) +PASS -- TEST 'cpld_restart_p8_intel' [59:13, 02:51](3153 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:15, 02:20](3244 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [59:13, 01:59](3170 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [14:33, 02:29](3460 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:31, 02:18](3219 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:59, 02:53](3167 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:25, 03:17](3227 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:51, 02:34](3204 MB) + +PASS -- COMPILE 's2sw_intel' [10:23, 09:07] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [46:59, 01:56](1918 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [46:59, 03:14](1966 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [25:38, 24:03] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [30:55, 03:07](1966 MB) + +PASS -- COMPILE 's2s_intel' [10:23, 08:58] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [46:58, 01:52](2881 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [46:58, 02:34](2889 MB) +PASS -- TEST 'cpld_restart_c48_intel' [41:28, 02:00](2304 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:30, 14:44] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [40:53, 02:58](3226 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:36, 19:53] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [35:43, 02:03](1921 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [01:37, 02:27](1102 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [01:32, 02:51](1890 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:21, 07:00] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:41, 02:16](1963 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:23, 08:37] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [36:35, 01:18](660 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [36:35, 01:42](1562 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [36:35, 01:26](1568 MB) +PASS -- TEST 'control_latlon_intel' [36:35, 01:22](1565 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [36:35, 01:57](1565 MB) +PASS -- TEST 'control_c48_intel' [36:34, 02:11](1581 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [36:34, 01:49](706 MB) +PASS -- TEST 'control_c192_intel' [36:35, 02:22](1683 MB) +PASS -- TEST 'control_c384_intel' [36:39, 02:59](1971 MB) +PASS -- TEST 'control_c384gdas_intel' [36:39, 04:03](1162 MB) +PASS -- TEST 'control_stochy_intel' [36:35, 01:24](617 MB) +PASS -- TEST 'control_stochy_restart_intel' [33:01, 02:02](424 MB) +PASS -- TEST 'control_lndp_intel' [36:35, 01:35](615 MB) +PASS -- TEST 'control_iovr4_intel' [36:35, 01:37](612 MB) +PASS -- TEST 'control_iovr5_intel' [36:35, 01:42](611 MB) +PASS -- TEST 'control_p8_intel' [36:35, 02:50](1851 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [36:35, 03:40](1848 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [36:35, 03:35](1850 MB) +PASS -- TEST 'control_restart_p8_intel' [26:48, 03:05](1005 MB) +PASS -- TEST 'control_noqr_p8_intel' [36:35, 02:37](1852 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [23:11, 02:36](1011 MB) +PASS -- TEST 'control_decomp_p8_intel' [36:35, 03:06](1845 MB) +PASS -- TEST 'control_2threads_p8_intel' [36:35, 03:19](1937 MB) +PASS -- TEST 'control_p8_lndp_intel' [36:35, 01:50](1851 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [36:35, 03:07](1904 MB) +PASS -- TEST 'control_p8_mynn_intel' [36:35, 03:11](1864 MB) +PASS -- TEST 'merra2_thompson_intel' [36:35, 04:10](1860 MB) +PASS -- TEST 'regional_control_intel' [34:50, 02:06](859 MB) +PASS -- TEST 'regional_restart_intel' [25:57, 01:43](858 MB) +PASS -- TEST 'regional_decomp_intel' [32:59, 01:39](863 MB) +PASS -- TEST 'regional_2threads_intel' [31:57, 01:50](984 MB) +PASS -- TEST 'regional_noquilt_intel' [31:55, 01:45](1184 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [29:14, 01:41](861 MB) +PASS -- TEST 'regional_wofs_intel' [28:51, 01:57](1581 MB) + +PASS -- COMPILE 'rrfs_intel' [25:40, 23:42] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [20:08, 03:45](1002 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [19:43, 02:00](1137 MB) +PASS -- TEST 'rap_decomp_intel' [19:01, 02:38](1003 MB) +PASS -- TEST 'rap_2threads_intel' [19:01, 03:46](1082 MB) +PASS -- TEST 'rap_restart_intel' [01:31, 03:14](878 MB) +PASS -- TEST 'rap_sfcdiff_intel' [16:43, 04:01](1000 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:30, 03:28](999 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [00:16, 03:41](883 MB) +PASS -- TEST 'hrrr_control_intel' [11:24, 03:10](998 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [10:23, 02:31](992 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [10:24, 03:41](1069 MB) +PASS -- TEST 'hrrr_control_restart_intel' [57:53, 01:49](829 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:08, 03:26](995 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:47, 01:31](1957 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:27, 01:53](1946 MB) + +PASS -- COMPILE 'csawmg_intel' [12:25, 10:47] +PASS -- TEST 'control_csawmg_intel' [28:38, 01:57](951 MB) +PASS -- TEST 'control_ras_intel' [25:08, 02:17](655 MB) + +PASS -- COMPILE 'wam_intel' [13:27, 11:23] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [24:44, 01:42](1645 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:23, 08:03] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [22:56, 03:24](1854 MB) +PASS -- TEST 'regional_control_faster_intel' [22:46, 01:23](856 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:26, 11:19] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [22:08, 02:15](1599 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [22:01, 02:12](1609 MB) +PASS -- TEST 'control_stochy_debug_intel' [21:43, 01:20](803 MB) +PASS -- TEST 'control_lndp_debug_intel' [21:26, 01:37](804 MB) +PASS -- TEST 'control_csawmg_debug_intel' [09:04, 01:48](1109 MB) +PASS -- TEST 'control_ras_debug_intel' [08:51, 01:55](811 MB) +PASS -- TEST 'control_diag_debug_intel' [08:32, 02:13](1664 MB) +PASS -- TEST 'control_debug_p8_intel' [08:29, 01:45](1896 MB) +PASS -- TEST 'regional_debug_intel' [07:46, 01:58](915 MB) +PASS -- TEST 'rap_control_debug_intel' [06:48, 01:29](1186 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:31, 01:40](1181 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [03:03, 01:50](1194 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [01:25, 01:29](1188 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [01:23, 01:38](1187 MB) +PASS -- TEST 'rap_diag_debug_intel' [01:04, 01:33](1280 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [59:06, 01:18](1188 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [58:56, 01:59](1189 MB) +PASS -- TEST 'rap_lndp_debug_intel' [58:15, 01:57](1189 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [57:56, 02:04](1186 MB) +PASS -- TEST 'rap_noah_debug_intel' [57:49, 01:41](1184 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [56:50, 02:00](1183 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [56:31, 02:08](1188 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [56:26, 01:38](1182 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [56:08, 01:53](1187 MB) +PASS -- TEST 'rap_flake_debug_intel' [56:02, 01:24](1188 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [53:56, 04:07](1187 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:22, 07:56] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [53:48, 01:55](1686 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:28, 13:46] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [53:42, 02:34](1013 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [53:02, 03:48](875 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [52:48, 04:18](876 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [52:43, 03:28](932 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [52:25, 02:51](924 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [51:59, 03:17](871 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [39:36, 02:13](780 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [41:27, 02:13](759 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:26, 10:46] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [51:46, 01:46](1077 MB) +PASS -- TEST 'conus13km_2threads_intel' [41:31, 01:31](1061 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [41:30, 01:54](955 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:31, 07:55] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [51:17, 02:31](897 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [24:40, 04:30] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [50:29, 01:22](1065 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [50:14, 02:09](1065 MB) +PASS -- TEST 'conus13km_debug_intel' [49:21, 01:48](1173 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [48:51, 01:27](821 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [48:46, 01:17](1132 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [48:18, 02:15](1240 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [41:57, 04:40] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [46:15, 01:55](1086 MB) + +PASS -- COMPILE 'hafsw_intel' [57:14, 10:20] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [30:02, 02:20](686 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [30:02, 02:05](1039 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [30:00, 02:38](737 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [30:00, 02:22](763 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:01, 03:03](787 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [30:00, 02:36](465 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [30:01, 03:08](476 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [30:01, 02:52](375 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [30:04, 04:15](445 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [30:00, 01:58](495 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [30:00, 02:21](496 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [30:02, 01:47](562 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [30:01, 01:26](406 MB) +PASS -- TEST 'gnv1_nested_intel' [29:59, 04:38](1703 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [51:08, 04:42] ( 1447 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [35:19, 02:18](667 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [53:09, 08:36] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [31:31, 02:25](604 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [31:31, 02:08](785 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [50:05, 08:40] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [31:17, 02:13](785 MB) + +PASS -- COMPILE 'hafs_all_intel' [49:08, 08:29] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [31:10, 02:33](768 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [31:10, 02:30](707 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [31:08, 01:14](898 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [58:14, 15:38] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [21:50, 01:22](752 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [14:23, 01:42](755 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [21:50, 01:18](642 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [21:50, 01:25](642 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [20:06, 01:12](645 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [20:01, 01:22](765 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [17:48, 02:11](766 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [15:48, 02:07](642 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [15:24, 01:49](689 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [15:07, 02:37](670 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [14:15, 01:52](764 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [13:26, 01:35](2031 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [13:21, 01:20](2034 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [54:11, 15:28] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [22:14, 01:49](766 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [43:57, 07:17] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [30:15, 01:17](301 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [30:15, 01:51](449 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [11:25, 02:04](450 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [44:00, 14:23] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [22:49, 02:46](1914 MB) + +PASS -- COMPILE 'atml_intel' [27:43, 18:28] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [13:08, 03:28](1886 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [12:42, 02:56](1885 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [00:13, 02:07](1032 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:23, 09:03] ( 866 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [24:53, 03:22](1929 MB) + +PASS -- COMPILE 'atmw_intel' [15:29, 13:57] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [12:32, 03:24](1879 MB) + +PASS -- COMPILE 'atmaero_intel' [13:27, 11:46] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [12:28, 03:22](3115 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [12:25, 02:46](2996 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [12:18, 03:00](3008 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:21, 06:55] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [22:48, 02:12](4467 MB) SYNOPSIS: -Starting Date/Time: 20241009 19:44:28 -Ending Date/Time: 20241009 22:11:48 -Total Time: 02h:27m:48s +Starting Date/Time: 20241015 18:02:17 +Ending Date/Time: 20241015 20:16:20 +Total Time: 02h:14m:33s Compiles Completed: 37/37 Tests Completed: 176/176 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 4f4fbc1ec6..6f89c5a1e4 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -a548dfb95738d53c36144e4a347eff7c9a786284 +ff8bef7b1f5ab5484a5001d4b16a237e8baa7b81 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 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) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1aba87cb308fb52912e7fe6dd6b53d0ce7077554 FV3 (heads/develop) + b71196b0faf74f0fe59558796285424c915b6eaa FV3 (remotes/origin/rrfsv1-to-ufs/dev1) 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) + d5842b617d0bdddd00fd8d45cf1cbf3c9c141258 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5334-gd5842b61) 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 @@ -38,292 +38,291 @@ 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-20241001 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_8981 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20241011 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_3630269 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -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) +PASS -- COMPILE 's2swa_32bit_intel' [15:20, 13:41] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:35, 08:57](3185 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:22, 24:15] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [17:23, 14:14](1901 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:16, 14:20](1938 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:27, 07:13](1060 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:25, 15:36](1880 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:21, 22:17] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [15:51, 13:31](1902 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:24, 12:14] ( 1528 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:41, 25:24](1934 MB) + +PASS -- COMPILE 's2swa_intel' [13:20, 11:18] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [14:06, 10:27](3214 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:15, 10:43](3214 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:46, 06:38](3136 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [14:06, 10:16](3232 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:46, 06:50](3159 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:52, 09:00](3462 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:01, 10:29](3205 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:01, 09:23](3158 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:15, 10:36](3214 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [16:31, 10:37](3491 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:21, 07:08](3601 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:13, 12:00](4260 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:51, 08:28](4345 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:52, 08:22](3190 MB) + +PASS -- COMPILE 's2sw_intel' [14:24, 12:59] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:34, 06:35](1907 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:56, 08:50](1975 MB) + +PASS -- COMPILE 's2swa_debug_intel' [16:24, 14:14] ( 1418 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [17:21, 15:04](3269 MB) + +PASS -- COMPILE 's2sw_debug_intel' [14:24, 12:31] ( 1418 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:30, 09:18](1948 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:20, 16:02] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:26, 05:41](1972 MB) + +PASS -- COMPILE 's2s_intel' [09:20, 08:05] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:17, 05:40](2865 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:28, 02:48](2873 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:56, 01:06](2284 MB) + +PASS -- COMPILE 's2swa_faster_intel' [46:19, 44:23] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [13:37, 10:21](3216 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 20:02] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:23, 16:02](1913 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:25, 07:30](1096 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:13, 17:37](1889 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:11, 11:43] ( 1528 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:01, 26:59](1952 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:15, 12:59] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:41, 03:50](655 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:15, 03:30](1549 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:18, 03:36](1557 MB) +PASS -- TEST 'control_latlon_intel' [06:08, 03:21](1556 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:19, 03:31](1563 MB) +PASS -- TEST 'control_c48_intel' [13:19, 09:58](1578 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:10, 05:41](698 MB) +PASS -- TEST 'control_c192_intel' [14:16, 11:16](1680 MB) +PASS -- TEST 'control_c384_intel' [26:17, 23:53](1969 MB) +PASS -- TEST 'control_c384gdas_intel' [18:21, 14:53](1171 MB) +PASS -- TEST 'control_stochy_intel' [03:24, 01:55](612 MB) +PASS -- TEST 'control_stochy_restart_intel' [04:09, 01:37](418 MB) +PASS -- TEST 'control_lndp_intel' [03:30, 01:51](609 MB) +PASS -- TEST 'control_iovr4_intel' [04:27, 02:41](611 MB) +PASS -- TEST 'control_iovr5_intel' [04:25, 02:40](608 MB) +PASS -- TEST 'control_p8_intel' [07:11, 04:36](1841 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:03, 03:41](1844 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:04, 04:29](1847 MB) +PASS -- TEST 'control_restart_p8_intel' [05:01, 02:28](997 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:11, 04:30](1837 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:09, 02:17](1007 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:03, 04:05](1834 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:03, 03:26](1927 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:00, 06:39](1852 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:25, 04:23](1899 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:10, 03:56](1851 MB) +PASS -- TEST 'merra2_thompson_intel' [07:06, 04:11](1850 MB) +PASS -- TEST 'regional_control_intel' [06:41, 05:04](845 MB) +PASS -- TEST 'regional_restart_intel' [04:37, 02:36](848 MB) +PASS -- TEST 'regional_decomp_intel' [06:43, 04:56](846 MB) +PASS -- TEST 'regional_2threads_intel' [04:44, 03:04](983 MB) +PASS -- TEST 'regional_noquilt_intel' [06:46, 04:41](1172 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:45, 04:45](843 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:37, 05:07](844 MB) +PASS -- TEST 'regional_wofs_intel' [08:41, 06:32](1570 MB) + +PASS -- COMPILE 'rrfs_intel' [13:11, 11:56] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:26, 07:04](991 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:31, 04:18](1148 MB) +PASS -- TEST 'rap_decomp_intel' [10:30, 07:14](988 MB) +PASS -- TEST 'rap_2threads_intel' [09:26, 06:22](1073 MB) +PASS -- TEST 'rap_restart_intel' [06:46, 04:13](869 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:25, 06:59](988 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:30, 07:30](987 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:52, 05:12](869 MB) +PASS -- TEST 'hrrr_control_intel' [06:28, 03:51](982 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:23, 04:13](987 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:28, 03:10](1065 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:34, 02:06](815 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:25, 06:51](983 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:02, 08:56](1942 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:02, 08:43](1933 MB) + +PASS -- COMPILE 'csawmg_intel' [14:16, 12:39] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [09:25, 07:02](950 MB) +PASS -- TEST 'control_ras_intel' [05:27, 03:38](644 MB) + +PASS -- COMPILE 'wam_intel' [15:11, 13:14] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:13, 12:01](1637 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 12:48] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:05, 03:14](1845 MB) +PASS -- TEST 'regional_control_faster_intel' [06:48, 04:26](843 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [12:11, 10:51] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:51, 02:49](1581 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:56, 02:49](1580 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:29, 03:09](783 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:32, 02:53](783 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:52, 04:22](1083 MB) +PASS -- TEST 'control_ras_debug_intel' [04:23, 02:51](788 MB) +PASS -- TEST 'control_diag_debug_intel' [04:39, 03:04](1641 MB) +PASS -- TEST 'control_debug_p8_intel' [04:37, 03:04](1867 MB) +PASS -- TEST 'regional_debug_intel' [18:32, 16:12](884 MB) +PASS -- TEST 'rap_control_debug_intel' [06:29, 05:04](1164 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:28, 04:57](1160 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:25, 05:18](1163 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:29, 05:17](1161 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:27, 05:09](1163 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:33, 05:15](1249 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:26, 05:13](1163 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:26, 05:15](1164 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:26, 05:08](1164 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 05:01](1165 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:22, 05:07](1157 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:27, 05:13](1163 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:26, 07:58](1163 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 05:06](1157 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:25, 06:37](1164 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:27, 05:15](1163 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:57, 08:55](1167 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:15, 08:29] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:05, 13:46](1671 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:15, 11:10] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:01, 04:02](1023 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:42, 06:11](866 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:49, 03:32](863 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:42, 05:26](922 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:55, 02:55](912 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:39, 03:45](868 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:56, 04:15](773 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:04, 01:40](751 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:14, 12:42] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:18, 02:09](1072 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:24, 01:10](1063 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:18, 01:15](948 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 11:10] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:30, 04:17](894 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:11, 08:52] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:00, 04:54](1043 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:59, 05:07](1042 MB) +PASS -- TEST 'conus13km_debug_intel' [16:17, 13:25](1123 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:08, 13:46](796 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:04, 07:54](1114 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:59, 13:40](1193 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:15, 08:11] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:54, 05:02](1062 MB) + +PASS -- COMPILE 'hafsw_intel' [15:11, 14:07] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:25, 05:01](712 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:43, 04:21](1065 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:31, 07:49](744 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:20, 11:45](771 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:39, 12:55](796 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:21, 05:24](475 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:33, 06:35](495 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:12, 03:21](392 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:37, 07:32](483 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:10, 04:00](503 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:16, 04:17](502 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:19, 04:42](588 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:18, 01:42](424 MB) +PASS -- TEST 'gnv1_nested_intel' [09:49, 05:48](1696 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [11:11, 10:06] ( 1470 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:47, 12:51](612 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:13, 15:05] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:22, 07:50](630 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:45, 08:09](810 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 15:24] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:13, 06:07](809 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:12, 14:19] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:44, 06:34](736 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:27, 06:36](720 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:37, 20:02](891 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [14:00, 11:29] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:30, 02:37](763 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:23, 01:36](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:26, 02:33](642 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:31, 02:46](642 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:24, 02:34](641 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:29, 02:37](763 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:24, 02:36](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:29, 02:28](642 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:04, 06:27](694 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:05, 06:22](676 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:23, 02:44](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:26, 04:42](2030 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:27, 04:44](2030 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:15, 07:47] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:28, 05:30](749 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:13, 11:29] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:27, 02:40](764 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:13, 02:15] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:46, 02:12](322 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:45, 01:39](460 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:41, 01:06](460 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [04:11, 02:34] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [03:47, 01:08](449 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:52, 00:15](255 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:14, 13:05] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:14, 04:43](1912 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:14, 11:44] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:10, 04:19](1905 MB) + +PASS -- COMPILE 'atml_intel' [22:11, 21:04] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:15, 07:36](1876 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:15, 07:38](1882 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:41, 04:37](1027 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:20, 08:47] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:17, 06:32](1911 MB) + +PASS -- COMPILE 'atmw_intel' [15:10, 13:24] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:58, 02:26](1878 MB) + +PASS -- COMPILE 'atmaero_intel' [14:10, 12:40] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:16, 06:52](3100 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [11:04, 07:22](2988 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:38, 07:13](2996 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [11:11, 09:35] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [21:45, 18:12](4422 MB) + +PASS -- COMPILE 'atm_fbh_intel' [13:14, 11:54] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:43, 09:27](798 MB) SYNOPSIS: -Starting Date/Time: 20241008 16:57:16 -Ending Date/Time: 20241008 18:56:17 -Total Time: 02h:00m:06s +Starting Date/Time: 20241017 20:04:15 +Ending Date/Time: 20241017 22:44:00 +Total Time: 02h:41m:22s Compiles Completed: 43/43 Tests Completed: 188/188 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index bc30027e59..ff6bb65f57 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,15 +1,15 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -a548dfb95738d53c36144e4a347eff7c9a786284 +61e2d26b6b6977a6b2486ccc3f639470e651c095 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) - 0609c42d5345afdf69c41d476e86a35f41050764 CMEPS-interface/CMEPS (cmeps_v0.4.1-2348-g0609c42) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1aba87cb308fb52912e7fe6dd6b53d0ce7077554 FV3 (heads/develop) + b71196b0faf74f0fe59558796285424c915b6eaa FV3 (remotes/origin/rrfsv1-to-ufs/dev1) 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) @@ -26,382 +26,381 @@ 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-20241001 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1987659 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241011 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3220251 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -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) +PASS -- COMPILE 's2swa_32bit_intel' [14:11, 12:16] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:17, 06:10](3290 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:12, 15:55] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:00, 16:52](1947 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:14, 17:23](2139 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:06, 07:57](1246 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:56, 18:41](1840 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:12, 15:57] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:44, 16:19](1947 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 05:57] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:13, 23:29](1886 MB) + +PASS -- COMPILE 's2swa_intel' [14:11, 12:23] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [10:21, 07:59](3325 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:34, 07:45](3308 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:27, 04:13](3224 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:21, 07:39](3332 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:27, 04:15](3242 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:21, 07:22](3595 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:19, 07:32](3308 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:15, 06:08](3190 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:30, 07:31](3312 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:12, 09:53](3490 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:32, 06:01](3589 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [16:37, 08:46](4262 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:17, 05:33](4351 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:13, 05:27](3283 MB) + +PASS -- COMPILE 's2sw_intel' [13:11, 11:32] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:55, 05:52](1962 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:59, 07:29](1994 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:11, 05:54] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:14, 13:06](3323 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:37] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:04, 08:54](1959 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:11, 10:50] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:57, 04:20](2015 MB) + +PASS -- COMPILE 's2s_intel' [12:11, 10:53] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:39, 07:40](3004 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:40, 02:42](3019 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:39, 01:32](2466 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:12, 16:34] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:14, 07:09](3327 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 15:55] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:09, 16:52](2001 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:25, 08:06](1257 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:04, 19:15](1904 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:12, 05:17] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:12, 26:04](1933 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:11, 10:10] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:24, 03:20](689 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:51, 03:15](1566 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:50, 03:19](1570 MB) +PASS -- TEST 'control_latlon_intel' [05:41, 03:09](1564 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:55, 03:11](1564 MB) +PASS -- TEST 'control_c48_intel' [13:48, 11:19](1704 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:37, 06:22](826 MB) +PASS -- TEST 'control_c192_intel' [14:04, 11:49](1734 MB) +PASS -- TEST 'control_c384_intel' [17:03, 13:19](1955 MB) +PASS -- TEST 'control_c384gdas_intel' [11:25, 08:02](1346 MB) +PASS -- TEST 'control_stochy_intel' [03:24, 01:36](639 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:28, 01:00](470 MB) +PASS -- TEST 'control_lndp_intel' [03:21, 01:32](636 MB) +PASS -- TEST 'control_iovr4_intel' [04:22, 02:26](629 MB) +PASS -- TEST 'control_iovr5_intel' [04:24, 02:27](631 MB) +PASS -- TEST 'control_p8_intel' [05:52, 03:40](1859 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:53, 03:04](1876 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:48, 03:33](1866 MB) +PASS -- TEST 'control_restart_p8_intel' [03:43, 02:00](1108 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:47, 03:34](1836 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:53, 01:59](1133 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:47, 03:39](1839 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:47, 03:26](1931 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:43, 06:27](1847 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:55, 03:54](1937 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:52, 03:02](1877 MB) +PASS -- TEST 'merra2_thompson_intel' [05:50, 03:18](1865 MB) +PASS -- TEST 'regional_control_intel' [07:35, 05:12](1071 MB) +PASS -- TEST 'regional_restart_intel' [04:35, 02:54](1062 MB) +PASS -- TEST 'regional_decomp_intel' [07:34, 05:32](1062 MB) +PASS -- TEST 'regional_2threads_intel' [05:36, 03:19](1071 MB) +PASS -- TEST 'regional_noquilt_intel' [07:38, 05:11](1366 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:40, 05:11](1073 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:34, 05:14](1067 MB) +PASS -- TEST 'regional_wofs_intel' [08:36, 06:53](1877 MB) + +PASS -- COMPILE 'rrfs_intel' [11:11, 09:48] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:47, 07:47](1076 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:03, 04:08](1227 MB) +PASS -- TEST 'rap_decomp_intel' [10:39, 08:10](1004 MB) +PASS -- TEST 'rap_2threads_intel' [09:47, 07:20](1160 MB) +PASS -- TEST 'rap_restart_intel' [05:45, 04:01](1078 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:48, 07:43](1081 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:40, 08:07](1014 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:46, 05:47](1100 MB) +PASS -- TEST 'hrrr_control_intel' [05:40, 04:00](1013 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:40, 04:06](1006 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:40, 03:41](1083 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:30, 02:11](966 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:50, 07:40](1069 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:30, 09:26](1958 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:27, 09:03](2036 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 09:27] +PASS -- TEST 'control_csawmg_intel' [08:36, 06:12](1004 MB) +PASS -- TEST 'control_ras_intel' [05:22, 03:14](730 MB) + +PASS -- COMPILE 'csawmg_gnu' [06:11, 04:14] +PASS -- TEST 'control_csawmg_gnu' [10:35, 08:31](722 MB) + +PASS -- COMPILE 'wam_intel' [11:11, 09:27] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:46, 11:04](1634 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:11, 09:46] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:46, 02:42](1869 MB) +PASS -- TEST 'regional_control_faster_intel' [06:38, 04:45](1067 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 07:22] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:40, 02:09](1567 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:44, 02:07](1576 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:21, 02:58](781 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:41](795 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:34, 04:15](1094 MB) +PASS -- TEST 'control_ras_debug_intel' [04:22, 02:42](797 MB) +PASS -- TEST 'control_diag_debug_intel' [04:42, 02:44](1645 MB) +PASS -- TEST 'control_debug_p8_intel' [04:42, 02:32](1866 MB) +PASS -- TEST 'regional_debug_intel' [18:40, 16:54](1057 MB) +PASS -- TEST 'rap_control_debug_intel' [06:23, 04:48](1177 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:25, 04:52](1165 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:23, 04:53](1169 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 04:52](1170 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 04:47](1170 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:39, 05:02](1260 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 04:52](1168 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:21, 04:50](1171 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:23, 04:50](1170 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 04:55](1175 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:23, 04:48](1173 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 04:56](1185 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:27, 07:52](1181 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:25, 04:56](1172 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:30, 05:48](1169 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:25, 04:49](1164 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:37, 08:22](1175 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 03:59] +PASS -- TEST 'control_csawmg_debug_gnu' [04:36, 02:10](696 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 04:41] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:58, 12:44](1647 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 09:09] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:02, 03:49](1104 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:35, 06:24](1016 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:37, 03:28](960 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:36, 06:05](1055 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:34, 03:07](930 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:31, 03:34](918 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:46, 04:51](1003 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:27, 01:52](901 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 09:21] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:54, 02:05](1165 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:40, 00:50](1089 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:41, 01:11](1077 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 09:35] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:42, 04:12](959 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:36] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:20, 04:42](1047 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:21, 04:39](1045 MB) +PASS -- TEST 'conus13km_debug_intel' [15:53, 13:19](1160 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:53, 13:35](883 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:44, 07:32](1100 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:46, 13:32](1233 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:36] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:25, 04:46](1099 MB) + +PASS -- COMPILE 'hafsw_intel' [12:11, 10:52] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:18, 04:45](702 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:29, 05:47](1081 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:21, 06:51](796 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:18, 12:59](951 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:23, 14:44](850 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:02, 05:16](473 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:46, 06:22](482 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:42, 02:36](354 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:36, 07:24](434 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:43, 03:36](494 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:47, 03:22](490 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:53, 04:06](547 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:09](381 MB) +PASS -- TEST 'gnv1_nested_intel' [07:00, 03:59](1708 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:11, 05:00] ( 1465 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:54, 12:31](541 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:12, 10:32] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:02, 08:25](624 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:16, 08:42](682 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:10, 10:59] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:40, 06:24](685 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:11, 10:27] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:24, 06:16](786 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:15, 06:20](764 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:55, 15:48](1205 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:10, 06:19] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:34, 02:42](1153 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:22, 01:40](1094 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:26, 02:33](1019 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:37](1019 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:43](1016 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:20, 02:44](1141 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 02:59](1129 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:41](1016 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:24, 06:28](1062 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:19, 06:26](1037 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:48](1125 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:21, 03:55](2506 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:19, 04:39](2443 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:23] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:21, 06:05](1069 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:20] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 02:42](1160 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:07] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:31, 00:46](254 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:51](314 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:36](314 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:16] +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:34, 00:31](564 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:32, 00:17](447 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:11, 09:52] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:05, 03:53](1947 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:11, 09:49] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:51, 03:32](1935 MB) + +PASS -- COMPILE 'atml_intel' [12:11, 10:17] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:59, 04:14](1842 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:53, 04:15](1828 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:43, 02:21](1060 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:11, 05:31] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:50, 05:34](1843 MB) + +PASS -- COMPILE 'atmw_intel' [11:11, 10:00] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:46, 01:48](1895 MB) + +PASS -- COMPILE 'atmaero_intel' [11:11, 09:48] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:55, 04:02](3165 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:56, 04:46](3060 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:42, 04:48](3087 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:35] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_gnu' [06:12, 04:22] +PASS -- TEST 'control_c48_gnu' [11:40, 09:24](1494 MB) +PASS -- TEST 'control_stochy_gnu' [05:24, 03:25](481 MB) +PASS -- TEST 'control_ras_gnu' [06:25, 04:51](494 MB) +PASS -- TEST 'control_p8_gnu' [07:51, 05:12](1437 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:53, 05:04](1433 MB) +PASS -- TEST 'control_flake_gnu' [12:25, 10:24](524 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:11, 04:08] +PASS -- TEST 'rap_control_gnu' [13:36, 11:12](801 MB) +PASS -- TEST 'rap_decomp_gnu' [13:31, 11:24](806 MB) +PASS -- TEST 'rap_2threads_gnu' [12:34, 10:11](907 MB) +PASS -- TEST 'rap_restart_gnu' [07:41, 05:44](556 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:38, 11:16](827 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:34, 11:24](799 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:46, 08:23](561 MB) +PASS -- TEST 'hrrr_control_gnu' [07:35, 05:48](794 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:31, 05:45](778 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [07:30, 05:13](892 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:32, 05:46](829 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:26, 02:58](544 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:26, 02:54](632 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [12:44, 10:55](792 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:10, 06:28] +PASS -- TEST 'control_diag_debug_gnu' [03:43, 01:33](1247 MB) +PASS -- TEST 'regional_debug_gnu' [12:35, 10:34](702 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:21, 02:26](805 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:21, 02:21](793 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:21, 02:21](798 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:20, 02:25](802 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:31, 02:39](883 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:22, 03:45](797 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:21, 02:30](797 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:20, 02:26](796 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:20, 01:27](433 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:20, 01:35](428 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:37, 01:28](1409 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:21, 02:25](799 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:21, 02:35](802 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:33, 03:57](804 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:10, 02:31] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:12, 04:08] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:29, 09:33](683 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:35, 05:00](684 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:32, 08:49](728 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:28, 04:39](727 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:31, 05:09](681 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:37, 07:10](533 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:26, 02:39](518 MB) +PASS -- TEST 'conus13km_control_gnu' [04:49, 03:06](847 MB) +PASS -- TEST 'conus13km_2threads_gnu' [08:41, 06:21](854 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:41, 01:47](537 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:21] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:41, 05:49](705 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:10, 06:20] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:22, 02:17](687 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:22, 02:15](688 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:47, 06:07](850 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:43, 06:20](550 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [09:41, 07:30](854 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:40, 06:17](913 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:10, 06:25] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:24, 02:23](708 MB) + +PASS -- COMPILE 's2swa_gnu' [17:11, 15:34] + +PASS -- COMPILE 's2s_gnu' [17:11, 15:25] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [15:10, 12:13](1490 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [05:11, 03:10] + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 15:48] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [23:58, 21:37](1452 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 03:01] + +PASS -- COMPILE 'datm_cdeps_gnu' [16:11, 14:46] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:18, 03:00](688 MB) + +PASS -- COMPILE 'atm_fbh_intel' [11:11, 09:28] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:28, 11:58](1066 MB) SYNOPSIS: -Starting Date/Time: 20241008 20:50:57 -Ending Date/Time: 20241008 22:32:43 -Total Time: 01h:42m:03s +Starting Date/Time: 20241014 00:56:56 +Ending Date/Time: 20241014 02:37:16 +Total Time: 01h:40m:35s Compiles Completed: 59/59 Tests Completed: 246/246 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 4b8443b03a..4a43f5e864 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7 +1,7 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -229038624f3cd9854cdb4f2a8b235eee207416d3 +61e2d26b6b6977a6b2486ccc3f639470e651c095 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 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) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1aba87cb308fb52912e7fe6dd6b53d0ce7077554 FV3 (heads/develop) + b71196b0faf74f0fe59558796285424c915b6eaa FV3 (remotes/origin/rrfsv1-to-ufs/dev1) 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) + d5842b617d0bdddd00fd8d45cf1cbf3c9c141258 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5334-gd5842b61) 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 @@ -38,379 +38,378 @@ 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-20241001 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_169100 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20241011 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_1248227 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-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) +* (-r) - USE ROCOTO + +PASS -- COMPILE 's2swa_32bit_intel' [11:55, 11:55] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:27, 07:44](2129 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:49, 17:49] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [14:02, 13:24](1993 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [14:52, 14:05](2292 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [07:37, 06:33](1326 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:53, 15:04](1902 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:30, 17:30] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [13:33, 13:04](1989 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:34, 07:34] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [22:48, 21:57](1969 MB) + +PASS -- COMPILE 's2swa_intel' [12:39, 12:39] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:52, 08:01](2197 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:58, 08:10](2202 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:04, 04:32](1973 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:58, 08:09](2221 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:29, 04:31](1742 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:50, 09:06](2545 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:33, 07:49](2194 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:30, 06:45](2103 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:49, 08:13](2199 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [16:19, 14:59](2969 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [07:05, 05:53](2909 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [13:09, 08:47](3819 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [11:50, 06:24](3630 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [05:44, 05:07](2140 MB) + +PASS -- COMPILE 's2sw_intel' [12:03, 12:03] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:55, 07:16](2006 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:24, 06:50](2071 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:24, 07:24] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [13:26, 12:43](2243 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:51, 06:50] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:28, 07:52](2035 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:53, 10:53] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:48, 04:03](2060 MB) + +PASS -- COMPILE 's2s_intel' [11:03, 11:03] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [06:43, 06:12](3032 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:05, 02:35](3023 MB) +PASS -- TEST 'cpld_restart_c48_intel' [01:48, 01:31](2484 MB) + +PASS -- COMPILE 's2swa_faster_intel' [12:17, 12:17] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [08:48, 08:02](2211 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:29, 20:29] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:27, 13:52](2074 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:45, 07:01](1378 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [15:54, 15:22](1990 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:32, 04:32] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:42, 23:00](2017 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [08:54, 08:54] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:25, 03:12](709 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:15, 02:51](1593 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:24, 02:58](1594 MB) +PASS -- TEST 'control_latlon_intel' [03:10, 02:50](1584 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:21, 02:50](1581 MB) +PASS -- TEST 'control_c48_intel' [10:43, 10:26](1713 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:12, 06:00](830 MB) +PASS -- TEST 'control_c192_intel' [10:45, 10:13](1775 MB) +PASS -- TEST 'control_c384_intel' [13:06, 12:04](2015 MB) +PASS -- TEST 'control_c384gdas_intel' [11:46, 10:20](1516 MB) +PASS -- TEST 'control_stochy_intel' [01:59, 01:48](663 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:23, 01:11](545 MB) +PASS -- TEST 'control_lndp_intel' [01:45, 01:36](667 MB) +PASS -- TEST 'control_iovr4_intel' [02:53, 02:42](665 MB) +PASS -- TEST 'control_iovr5_intel' [03:02, 02:50](658 MB) +PASS -- TEST 'control_p8_intel' [03:53, 03:15](1880 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:04, 03:26](1908 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:50, 03:13](1880 MB) +PASS -- TEST 'control_restart_p8_intel' [02:19, 01:53](1155 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:44, 03:13](1875 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:21, 01:51](1193 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:55, 03:17](1872 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:34, 02:59](1973 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:58, 05:38](1882 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:17, 03:37](1966 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:27, 02:46](1909 MB) +PASS -- TEST 'merra2_thompson_intel' [04:49, 04:01](1902 MB) +PASS -- TEST 'regional_control_intel' [04:58, 04:44](1199 MB) +PASS -- TEST 'regional_restart_intel' [03:03, 02:45](1170 MB) +PASS -- TEST 'regional_decomp_intel' [05:03, 04:49](1181 MB) +PASS -- TEST 'regional_2threads_intel' [03:12, 02:58](1153 MB) +PASS -- TEST 'regional_noquilt_intel' [04:55, 04:33](1520 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:01, 04:40](1195 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [04:53, 04:39](1204 MB) +PASS -- TEST 'regional_wofs_intel' [07:33, 07:18](2079 MB) + +PASS -- COMPILE 'rrfs_intel' [08:28, 08:28] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:17, 06:44](1198 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:01, 03:28](1355 MB) +PASS -- TEST 'rap_decomp_intel' [07:32, 06:59](1142 MB) +PASS -- TEST 'rap_2threads_intel' [07:10, 06:35](1369 MB) +PASS -- TEST 'rap_restart_intel' [04:17, 03:37](1159 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:35, 06:56](1207 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:53, 07:15](1156 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:57, 05:11](1190 MB) +PASS -- TEST 'hrrr_control_intel' [04:08, 03:29](1069 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:13, 03:32](1040 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [03:50, 03:11](1114 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:08, 01:52](1029 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:13, 06:32](1217 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:34, 08:24](1998 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:15, 08:04](2167 MB) + +PASS -- COMPILE 'csawmg_intel' [08:17, 08:16] +PASS -- TEST 'control_csawmg_intel' [06:38, 06:20](1051 MB) +PASS -- TEST 'control_ras_intel' [03:44, 03:31](848 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:08, 04:08] +PASS -- TEST 'control_csawmg_gnu' [07:19, 07:03](1071 MB) + +PASS -- COMPILE 'wam_intel' [09:13, 09:13] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [10:25, 10:06](1657 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:01, 09:01] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [02:59, 02:25](1898 MB) +PASS -- TEST 'regional_control_faster_intel' [05:19, 05:06](1189 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:16, 06:16] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:09, 01:53](1619 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:11, 01:52](1627 MB) +PASS -- TEST 'control_stochy_debug_intel' [02:37, 02:31](837 MB) +PASS -- TEST 'control_lndp_debug_intel' [02:20, 02:15](836 MB) +PASS -- TEST 'control_csawmg_debug_intel' [03:44, 03:32](1156 MB) +PASS -- TEST 'control_ras_debug_intel' [02:26, 02:19](852 MB) +PASS -- TEST 'control_diag_debug_intel' [02:40, 02:19](1696 MB) +PASS -- TEST 'control_debug_p8_intel' [02:38, 02:16](1918 MB) +PASS -- TEST 'regional_debug_intel' [15:09, 14:51](1140 MB) +PASS -- TEST 'rap_control_debug_intel' [04:15, 04:08](1226 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:09, 04:01](1213 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:26, 04:18](1226 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:14, 04:06](1215 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:14, 04:07](1227 MB) +PASS -- TEST 'rap_diag_debug_intel' [04:26, 04:12](1310 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:19, 04:12](1224 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:21, 04:14](1230 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:23, 04:12](1225 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:21, 04:09](1219 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:17, 04:09](1228 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:14, 04:06](1225 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:14, 07:06](1225 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:20, 04:13](1224 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:08, 05:00](1223 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:16, 04:03](1220 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:47, 07:06](1215 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 04:10] +PASS -- TEST 'control_csawmg_debug_gnu' [02:28, 02:08](1037 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:08, 04:08] ( 837 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:00, 08:00] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [03:51, 03:18](1237 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:12, 06:35](1166 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:50, 03:01](1026 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:04, 06:32](1281 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:57, 08:04](1023 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:46, 03:05](971 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:47, 05:05](1114 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [01:46, 01:39](943 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:34, 08:34] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:38, 02:15](1274 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:13, 00:52](1186 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:38, 01:20](1122 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:35, 08:35] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:07, 03:43](1077 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:56, 03:55] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:31, 04:19](1105 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:44, 04:37](1095 MB) +PASS -- TEST 'conus13km_debug_intel' [12:50, 12:24](1346 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [14:11, 13:42](998 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:14, 09:48](1248 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:47, 12:21](1414 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:32, 03:31] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:15, 04:04](1154 MB) + +PASS -- COMPILE 'hafsw_intel' [09:36, 09:36] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:13, 05:18](858 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:15, 04:57](1247 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:40, 06:29](922 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:03, 14:05](948 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:19, 16:09](987 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:24, 05:35](595 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:56, 07:41](603 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:23, 02:43](427 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:04, 08:37](548 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:01, 04:18](600 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:55, 04:07](597 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:06, 05:13](665 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:54, 01:26](444 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:00, 05:00] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:57, 12:07](638 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [10:24, 10:24] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:45, 16:58](734 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:01, 16:12](833 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:34, 10:33] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:37, 10:22](813 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:04, 10:04] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:07, 07:20](915 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:22, 07:31](899 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:08, 16:33](1348 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:06, 06:06] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:16, 03:10](1152 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:51, 01:45](1081 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:01, 02:55](1010 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:48, 02:41](1016 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:50, 02:45](1026 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:26, 02:19](1140 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:04, 03:00](1143 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:51, 02:47](1022 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:34, 04:58](1161 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:28, 04:54](1150 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:14, 02:11](1162 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:12, 03:07](2399 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:06, 03:01](2391 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:04, 04:04] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:32, 09:26](1074 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [05:29, 05:29] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:02, 02:58](1137 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:15, 01:15] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:06, 01:41](330 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:21, 01:04](569 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:45, 00:31](572 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:39, 09:39] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [03:57, 03:21](2029 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:54, 08:54] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [03:50, 03:10](1978 MB) + +PASS -- COMPILE 'atml_intel' [09:05, 09:04] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:15, 05:29](1892 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:09, 05:23](1887 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:19, 02:55](1135 MB) + +PASS -- COMPILE 'atml_debug_intel' [04:50, 04:50] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:30, 05:40](1931 MB) + +PASS -- COMPILE 'atmw_intel' [09:18, 09:18] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:31, 01:49](1939 MB) + +PASS -- COMPILE 'atmaero_intel' [08:33, 08:33] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:14, 04:40](2008 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:52, 05:19](1786 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:09, 05:41](1793 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:15, 04:15] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [17:43, 16:28](4546 MB) + +PASS -- COMPILE 'atm_gnu' [04:17, 04:16] +PASS -- TEST 'control_c48_gnu' [11:38, 11:11](1522 MB) +PASS -- TEST 'control_stochy_gnu' [02:39, 02:30](735 MB) +PASS -- TEST 'control_ras_gnu' [04:16, 04:09](723 MB) +PASS -- TEST 'control_p8_gnu' [05:05, 04:27](1744 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:58, 04:30](1700 MB) +PASS -- TEST 'control_flake_gnu' [04:50, 04:40](801 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:18, 04:18] +PASS -- TEST 'rap_control_gnu' [10:11, 09:34](1075 MB) +PASS -- TEST 'rap_decomp_gnu' [10:13, 09:42](1069 MB) +PASS -- TEST 'rap_2threads_gnu' [09:50, 09:19](1126 MB) +PASS -- TEST 'rap_restart_gnu' [05:48, 05:14](878 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:48, 10:57](1071 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:06, 09:31](1071 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:42, 07:42](877 MB) +PASS -- TEST 'hrrr_control_gnu' [05:36, 04:57](1062 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:54, 05:23](1124 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:11, 04:33](1033 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:07, 05:16](1064 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:04, 02:48](876 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:37, 02:23](923 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:18, 10:23](1067 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [05:56, 05:56] +PASS -- TEST 'control_diag_debug_gnu' [01:38, 01:13](1617 MB) +PASS -- TEST 'regional_debug_gnu' [07:11, 06:55](1100 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:26, 02:14](1091 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:30, 02:18](1081 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:24, 02:11](1086 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:27, 02:14](1088 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:05, 02:48](1263 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:48, 03:28](1086 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:26, 02:16](1090 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:24, 02:09](1084 MB) +PASS -- TEST 'control_ras_debug_gnu' [01:29, 01:22](716 MB) +PASS -- TEST 'control_stochy_debug_gnu' [01:40, 01:32](716 MB) +PASS -- TEST 'control_debug_p8_gnu' [01:51, 01:29](1699 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:31, 02:11](1093 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [02:42, 02:29](1093 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:55, 04:10](1096 MB) + +PASS -- COMPILE 'wam_debug_gnu' [02:42, 02:41] +PASS -- TEST 'control_wam_debug_gnu' [05:48, 05:24](1549 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:36, 04:36] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:33, 07:52](958 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:49, 04:02](944 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:42, 07:10](982 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:27, 03:43](869 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:53, 04:05](940 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:18, 05:48](855 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:10, 02:01](853 MB) +PASS -- TEST 'conus13km_control_gnu' [03:11, 02:42](1256 MB) +PASS -- TEST 'conus13km_2threads_gnu' [01:31, 01:08](1163 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [01:54, 01:31](921 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:44, 08:44] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [04:52, 04:35](983 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:54, 06:54] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:24, 02:12](967 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:07, 01:59](963 MB) +PASS -- TEST 'conus13km_debug_gnu' [05:54, 05:27](1276 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [06:29, 06:02](948 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [03:43, 03:26](1183 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:07, 05:52](1344 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [06:52, 06:52] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:11, 02:05](995 MB) + +PASS -- COMPILE 's2swa_gnu' [17:00, 16:59] + +PASS -- COMPILE 's2s_gnu' [15:30, 15:30] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:42, 09:03](3066 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:05, 04:04] + +PASS -- COMPILE 's2sw_pdlib_gnu' [16:25, 16:25] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:24, 26:45](3040 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:17, 03:17] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:08, 12:27](3072 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [15:14, 15:14] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [06:20, 06:13](758 MB) + +PASS -- COMPILE 'atm_fbh_intel' [08:02, 08:02] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [16:32, 16:17](1067 MB) SYNOPSIS: -Starting Date/Time: 20241008 09:05:13 -Ending Date/Time: 20241008 10:52:36 -Total Time: 01h:47m:58s +Starting Date/Time: 20241013 19:55:47 +Ending Date/Time: 20241014 00:21:41 +Total Time: 04h:26m:24s Compiles Completed: 58/58 Tests Completed: 245/245 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 3cf2788835..9a7e5e28a7 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -229038624f3cd9854cdb4f2a8b235eee207416d3 +61e2d26b6b6977a6b2486ccc3f639470e651c095 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 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) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1aba87cb308fb52912e7fe6dd6b53d0ce7077554 FV3 (heads/develop) + b71196b0faf74f0fe59558796285424c915b6eaa FV3 (remotes/origin/rrfsv1-to-ufs/dev1) 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) + d5842b617d0bdddd00fd8d45cf1cbf3c9c141258 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5334-gd5842b61) 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 @@ -38,362 +38,293 @@ 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_1750568 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241011 +COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2284266 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -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) +PASS -- COMPILE 's2swa_32bit_intel' [18:10, 16:20] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:25, 14:25](2083 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:10, 22:06] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:34, 18:11](1948 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:08, 19:01](2130 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:04, 08:55](1222 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:37, 20:24](1879 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:11, 23:41] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:38, 17:44](1944 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:10, 08:10] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [31:33, 28:34](1935 MB) + +PASS -- COMPILE 's2swa_intel' [19:10, 17:33] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [17:34, 14:40](2132 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:44, 14:33](2132 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:43, 08:02](1797 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [17:34, 14:32](2164 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:43, 08:05](1694 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [16:33, 13:16](2419 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:34, 14:19](2132 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:27, 12:19](2043 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:42, 14:38](2139 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:26, 16:12](2705 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:52, 08:43](2701 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:18, 10:58](3683 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:55, 06:49](3503 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:23, 05:59](2090 MB) + +PASS -- COMPILE 's2sw_intel' [17:10, 15:45] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [16:06, 13:48](1974 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:15, 08:04](2034 MB) + +PASS -- COMPILE 's2swa_debug_intel' [11:10, 09:29] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:18, 13:34](2169 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:10, 07:58] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:08, 09:25](1993 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:10, 14:46] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:16, 04:52](2037 MB) + +PASS -- COMPILE 's2s_intel' [16:10, 14:17] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:56, 08:39](3026 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:55, 03:28](3023 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:53, 02:12](2490 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:10, 16:36] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [17:17, 15:02](2143 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 20:00] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:17, 18:14](2008 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:27, 08:57](1256 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:05, 20:31](1930 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 07:27] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:09, 29:50](1967 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:10, 13:03] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:27, 03:44](685 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:51, 03:32](1572 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:55, 03:37](1572 MB) +PASS -- TEST 'control_latlon_intel' [05:47, 03:32](1579 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:56, 03:34](1567 MB) +PASS -- TEST 'control_c48_intel' [16:56, 14:42](1701 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:34, 08:13](838 MB) +PASS -- TEST 'control_c192_intel' [15:00, 13:09](1742 MB) +PASS -- TEST 'control_c384_intel' [19:55, 16:39](1981 MB) +PASS -- TEST 'control_c384gdas_intel' [13:38, 10:00](1331 MB) +PASS -- TEST 'control_stochy_intel' [03:25, 01:50](644 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:43, 01:06](473 MB) +PASS -- TEST 'control_lndp_intel' [03:25, 01:45](641 MB) +PASS -- TEST 'control_iovr4_intel' [04:26, 02:45](636 MB) +PASS -- TEST 'control_iovr5_intel' [04:26, 02:45](642 MB) +PASS -- TEST 'control_p8_intel' [07:09, 04:26](1865 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:07, 03:41](1877 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:34, 04:04](1868 MB) +PASS -- TEST 'control_restart_p8_intel' [05:09, 02:24](1083 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:11, 04:01](1849 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:14, 02:17](1133 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:15, 04:11](1844 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:21, 04:20](1946 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:50, 07:15](1864 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:27, 04:56](1932 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:23, 03:33](1885 MB) +PASS -- TEST 'merra2_thompson_intel' [06:44, 03:50](1878 MB) +PASS -- TEST 'regional_control_intel' [08:43, 06:31](1077 MB) +PASS -- TEST 'regional_restart_intel' [05:36, 03:37](1070 MB) +PASS -- TEST 'regional_decomp_intel' [08:36, 06:56](1075 MB) +PASS -- TEST 'regional_2threads_intel' [06:35, 04:48](1065 MB) +PASS -- TEST 'regional_noquilt_intel' [08:41, 06:28](1377 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:41, 06:33](1076 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:33, 06:35](1076 MB) +PASS -- TEST 'regional_wofs_intel' [09:32, 08:00](1895 MB) + +PASS -- COMPILE 'rrfs_intel' [14:10, 12:38] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:23, 08:30](1056 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:57, 05:14](1244 MB) +PASS -- TEST 'rap_decomp_intel' [11:04, 08:45](1013 MB) +PASS -- TEST 'rap_2threads_intel' [11:01, 08:39](1152 MB) +PASS -- TEST 'rap_restart_intel' [07:31, 04:23](1029 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:56, 08:24](1046 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:55, 08:42](1008 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:35, 06:18](1067 MB) +PASS -- TEST 'hrrr_control_intel' [07:08, 04:22](1022 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:54, 04:25](1015 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:18, 04:13](1083 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:46, 02:21](945 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:21, 08:21](1036 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:23, 09:51](1977 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:22, 09:32](2012 MB) + +PASS -- COMPILE 'csawmg_intel' [14:10, 12:14] +PASS -- TEST 'control_csawmg_intel' [08:31, 06:39](1013 MB) +PASS -- TEST 'control_ras_intel' [05:22, 03:26](721 MB) + +PASS -- COMPILE 'wam_intel' [15:10, 13:24] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:42, 12:46](1641 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:10, 12:47] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:22, 03:15](1881 MB) +PASS -- TEST 'regional_control_faster_intel' [08:36, 06:18](1081 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:11, 09:55] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:39, 02:24](1601 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:44, 02:16](1597 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:28, 03:02](813 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:23, 02:48](817 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:37, 04:31](1125 MB) +PASS -- TEST 'control_ras_debug_intel' [04:22, 02:59](825 MB) +PASS -- TEST 'control_diag_debug_intel' [04:41, 02:49](1672 MB) +PASS -- TEST 'control_debug_p8_intel' [04:42, 02:48](1893 MB) +PASS -- TEST 'regional_debug_intel' [19:38, 17:18](1091 MB) +PASS -- TEST 'rap_control_debug_intel' [06:23, 05:00](1202 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:24, 04:52](1192 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:25, 04:55](1205 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 04:59](1204 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 04:57](1201 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:30, 05:14](1283 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:27, 05:14](1202 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:20, 05:05](1198 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:26, 05:06](1204 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:24, 04:59](1201 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:52](1201 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:21, 04:59](1199 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:22, 07:57](1200 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 05:00](1196 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:23, 05:58](1204 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:20, 05:06](1202 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:23, 08:25](1203 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:10, 06:21] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:40, 13:12](1676 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:11, 11:59] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:56, 04:57](1126 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:54, 07:12](996 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:35, 03:48](923 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:51, 07:26](1068 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:00, 03:43](934 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:37, 03:57](891 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:29, 05:24](972 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:29, 02:05](871 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:11, 13:17] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:53, 02:37](1163 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:50, 01:12](1109 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:48, 01:31](1061 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:20] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:42, 04:34](967 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 06:03] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:46](1081 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:21, 04:52](1071 MB) +PASS -- TEST 'conus13km_debug_intel' [15:45, 13:50](1227 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:44, 13:55](926 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 08:09](1167 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:47, 14:04](1290 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:10, 06:39] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:26, 05:06](1133 MB) + +PASS -- COMPILE 'hafsw_intel' [16:10, 14:34] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:14, 05:57](739 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:27, 06:27](1112 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:25, 07:30](814 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [27:11, 24:45](854 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [31:16, 28:28](866 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:00, 07:08](488 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:28, 08:41](503 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:55, 03:33](371 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:28, 09:37](486 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:56, 04:43](523 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:47, 04:29](522 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:49, 05:39](572 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:34](396 MB) +PASS -- TEST 'gnv1_nested_intel' [08:12, 04:19](1724 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:10, 06:38] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:06, 13:21](583 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:11, 14:25] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:13, 12:40](659 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:11, 13:09](681 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 14:22] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:25, 08:43](701 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:10, 13:45] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:19, 07:35](816 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:15, 07:36](793 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:56, 16:21](1204 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:10, 08:12] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:58](1151 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:35](1110 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:51](1015 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:56](1013 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:54](1023 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 03:00](1154 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:16, 03:00](1158 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:16, 02:50](1014 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:08, 06:27](1012 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:08, 06:20](1005 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:58](1142 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:18, 04:18](2459 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 04:21](2398 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 04:40] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 06:29](1079 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:36] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:56](1157 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:19] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:31, 01:01](252 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:56](325 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:36](324 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:39] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:30, 00:28](565 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:35, 00:22](444 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:10, 13:45] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:05, 04:14](1965 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:10, 12:47] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:02, 04:10](1938 MB) + +PASS -- COMPILE 'atml_intel' [14:10, 12:57] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:29, 05:00](1861 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:24, 04:57](1860 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:54, 02:55](1054 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:10, 07:11] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:21, 05:56](1898 MB) + +PASS -- COMPILE 'atmw_intel' [15:10, 13:49] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:16, 02:12](1897 MB) + +PASS -- COMPILE 'atmaero_intel' [14:11, 12:52] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:12, 04:36](1974 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:13, 05:22](1750 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:02, 05:28](1759 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:10, 06:34] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:56, 20:51](4492 MB) + +PASS -- COMPILE 'atm_fbh_intel' [13:10, 11:57] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:29, 14:04](1080 MB) SYNOPSIS: -Starting Date/Time: 20241008 09:04:00 -Ending Date/Time: 20241008 11:37:32 -Total Time: 02h:34m:11s +Starting Date/Time: 20241013 19:56:25 +Ending Date/Time: 20241013 21:37:56 +Total Time: 01h:42m:06s 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 +Tests Completed: 188/188 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 3f3dca3ed4..aa48425d25 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -73c9d3c08bd18fa47227bd6c2ccb055397ceba95 +f814ef71e560a00a30454e00ef05ccf4d20f45b3 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 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) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1aba87cb308fb52912e7fe6dd6b53d0ce7077554 FV3 (heads/develop) + b71196b0faf74f0fe59558796285424c915b6eaa FV3 (remotes/origin/rrfsv1-to-ufs/dev1) 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) + d5842b617d0bdddd00fd8d45cf1cbf3c9c141258 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5334-gd5842b61) 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 @@ -38,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-20241001 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_64926 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241011 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_125035 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -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 's2swa_32bit_intel' [13:40, 11:34] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:34, 02:30](3089 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:40, 11:58] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [10:34, 02:44](1819 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [51:18, 03:20](1835 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [51:11, 02:53](972 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [10:35, 03:15](1790 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:40, 12:13] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [10:34, 02:02](1808 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:31, 05:15] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [16:43, 02:58](1832 MB) + +PASS -- COMPILE 's2swa_intel' [13:39, 11:23] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [10:35, 02:50](3117 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:35, 03:20](3114 MB) +PASS -- TEST 'cpld_restart_p8_intel' [58:53, 02:59](3048 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:35, 02:52](3135 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [58:53, 02:55](3061 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:35, 02:31](3355 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:35, 03:00](3114 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:36, 02:05](3059 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:35, 03:26](3120 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [10:44, 07:06](4109 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [49:35, 05:40](4256 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:35, 02:44](3093 MB) + +PASS -- COMPILE 's2sw_intel' [12:38, 10:59] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:36, 02:40](1821 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:36, 03:01](1879 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:38, 10:45] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:35, 03:01](1883 MB) + +PASS -- COMPILE 's2s_intel' [12:38, 10:22] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [11:34, 01:51](2863 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [11:34, 02:26](2865 MB) +PASS -- TEST 'cpld_restart_c48_intel' [06:32, 02:15](2280 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:45, 16:20] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [05:28, 03:32](3121 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:40, 11:19] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [10:34, 02:33](1825 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [51:24, 02:14](998 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [51:21, 02:25](1800 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:06] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [09:22, 02:43](1855 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:24, 08:49] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [01:11, 02:24](567 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [01:11, 02:18](1460 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [01:11, 02:11](1471 MB) +PASS -- TEST 'control_latlon_intel' [01:11, 02:10](1472 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [01:11, 02:14](1468 MB) +PASS -- TEST 'control_c48_intel' [01:10, 02:28](1567 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [01:10, 01:59](692 MB) +PASS -- TEST 'control_c192_intel' [01:11, 01:56](1590 MB) +PASS -- TEST 'control_c384_intel' [01:15, 02:55](1871 MB) +PASS -- TEST 'control_c384gdas_intel' [01:11, 03:31](1067 MB) +PASS -- TEST 'control_stochy_intel' [01:05, 01:33](526 MB) +PASS -- TEST 'control_stochy_restart_intel' [57:28, 02:06](331 MB) +PASS -- TEST 'control_lndp_intel' [00:54, 01:32](527 MB) +PASS -- TEST 'control_iovr4_intel' [59:52, 01:42](518 MB) +PASS -- TEST 'control_iovr5_intel' [59:52, 01:44](518 MB) +PASS -- TEST 'control_p8_intel' [58:54, 02:27](1759 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [58:21, 03:08](1759 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [58:19, 02:32](1760 MB) +PASS -- TEST 'control_restart_p8_intel' [51:31, 02:57](908 MB) +PASS -- TEST 'control_noqr_p8_intel' [57:08, 02:20](1754 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [50:30, 02:39](915 MB) +PASS -- TEST 'control_decomp_p8_intel' [56:35, 01:58](1751 MB) +PASS -- TEST 'control_2threads_p8_intel' [55:08, 02:29](1838 MB) +PASS -- TEST 'control_p8_lndp_intel' [55:06, 01:55](1756 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [55:05, 02:45](1807 MB) +PASS -- TEST 'control_p8_mynn_intel' [55:01, 02:40](1759 MB) +PASS -- TEST 'merra2_thompson_intel' [54:58, 02:28](1761 MB) +PASS -- TEST 'regional_control_intel' [54:54, 02:00](843 MB) +PASS -- TEST 'regional_restart_intel' [46:52, 01:22](843 MB) +PASS -- TEST 'regional_decomp_intel' [54:30, 01:45](837 MB) +PASS -- TEST 'regional_2threads_intel' [53:34, 01:44](895 MB) +PASS -- TEST 'regional_noquilt_intel' [53:19, 01:19](1166 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [53:17, 02:20](849 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [53:07, 02:11](841 MB) +PASS -- TEST 'regional_wofs_intel' [52:01, 02:06](1565 MB) + +PASS -- COMPILE 'rrfs_intel' [10:25, 08:15] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [50:25, 02:59](905 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [49:15, 02:03](1049 MB) +PASS -- TEST 'rap_decomp_intel' [49:14, 02:17](914 MB) +PASS -- TEST 'rap_2threads_intel' [48:31, 02:13](986 MB) +PASS -- TEST 'rap_restart_intel' [39:48, 02:08](774 MB) +PASS -- TEST 'rap_sfcdiff_intel' [48:26, 03:08](901 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [48:21, 02:47](897 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [37:53, 02:39](775 MB) +PASS -- TEST 'hrrr_control_intel' [48:20, 02:20](900 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [47:47, 02:11](901 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [47:28, 02:25](979 MB) +PASS -- TEST 'hrrr_control_restart_intel' [41:50, 02:01](727 MB) +PASS -- TEST 'rrfs_v1beta_intel' [47:19, 03:03](895 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [47:17, 01:56](1855 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [47:14, 02:16](1842 MB) + +PASS -- COMPILE 'csawmg_intel' [09:23, 07:53] +PASS -- TEST 'control_csawmg_intel' [02:11, 01:30](857 MB) +PASS -- TEST 'control_ras_intel' [02:11, 01:58](555 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) +PASS -- TEST 'control_wam_intel' [47:11, 01:24](1555 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:24, 08:08] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [46:45, 02:58](1754 MB) +PASS -- TEST 'regional_control_faster_intel' [46:28, 02:13](833 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:24, 07:42] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [46:14, 01:42](1496 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [46:08, 01:48](1492 MB) +PASS -- TEST 'control_stochy_debug_intel' [45:51, 01:39](698 MB) +PASS -- TEST 'control_lndp_debug_intel' [45:13, 02:02](699 MB) +PASS -- TEST 'control_csawmg_debug_intel' [45:06, 01:23](1001 MB) +PASS -- TEST 'control_ras_debug_intel' [45:05, 02:01](707 MB) +PASS -- TEST 'control_diag_debug_intel' [42:55, 02:09](1549 MB) +PASS -- TEST 'control_debug_p8_intel' [42:06, 02:13](1790 MB) +PASS -- TEST 'regional_debug_intel' [42:01, 01:59](879 MB) +PASS -- TEST 'rap_control_debug_intel' [41:43, 01:42](1081 MB) +PASS -- TEST 'hrrr_control_debug_intel' [41:24, 01:44](1074 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [41:18, 01:38](1079 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [41:18, 01:41](1076 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [41:18, 01:35](1084 MB) +PASS -- TEST 'rap_diag_debug_intel' [40:24, 01:33](1161 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [40:05, 01:37](1082 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [39:45, 01:33](1082 MB) +PASS -- TEST 'rap_lndp_debug_intel' [39:38, 01:38](1083 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [39:36, 01:40](1080 MB) +PASS -- TEST 'rap_noah_debug_intel' [39:36, 01:44](1072 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [39:22, 01:38](1074 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [39:08, 01:24](1074 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [39:06, 01:43](1072 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [38:39, 01:52](1079 MB) +PASS -- TEST 'rap_flake_debug_intel' [38:25, 01:45](1079 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [37:53, 02:48](1085 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:20, 04:26] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [04:13, 02:06](1580 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:24, 07:50] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [37:21, 02:17](913 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [37:03, 02:22](777 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [36:43, 03:16](776 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [36:19, 02:40](834 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [35:39, 02:57](827 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [35:37, 02:28](776 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [28:23, 02:31](675 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [29:57, 02:18](659 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:27, 07:54] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [34:09, 02:14](989 MB) +PASS -- TEST 'conus13km_2threads_intel' [29:08, 01:57](992 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [28:34, 01:47](862 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:24, 08:01] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [33:48, 02:27](806 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:21, 04:31] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [33:48, 02:02](953 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [33:46, 02:04](948 MB) +PASS -- TEST 'conus13km_debug_intel' [33:45, 01:53](1039 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [33:28, 01:38](711 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [32:59, 01:46](1039 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [32:43, 01:50](1103 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:21, 04:25] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [32:24, 01:57](980 MB) + +PASS -- COMPILE 'hafsw_intel' [11:32, 09:17] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [32:18, 03:15](597 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [32:09, 01:49](946 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [32:06, 02:53](652 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [32:06, 02:25](675 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [31:55, 02:40](693 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [31:33, 02:02](375 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [31:04, 03:08](388 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [30:50, 02:38](279 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [30:14, 03:31](404 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [30:04, 02:36](433 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [29:51, 01:49](402 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [29:51, 01:52](477 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [29:32, 01:27](308 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:21, 04:58] ( 1447 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [29:33, 02:24](499 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:32, 09:19] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [29:31, 01:50](515 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [28:00, 02:46](699 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:31, 09:25] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [26:58, 02:14](704 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:30, 08:39] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [26:11, 03:11](639 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [26:10, 03:09](616 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [25:52, 01:36](880 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:32, 10:24] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [25:27, 01:49](1820 MB) + +PASS -- COMPILE 'atml_intel' [10:28, 08:55] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [07:24, 05:50] ( 866 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [10:28, 08:20] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [25:18, 02:17](3006 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [25:13, 02:50](2894 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [24:44, 02:41](2905 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:22, 04:30] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [24:45, 02:39](4377 MB) SYNOPSIS: -Starting Date/Time: 20241009 19:44:38 -Ending Date/Time: 20241009 21:12:19 -Total Time: 01h:28m:12s +Starting Date/Time: 20241015 17:35:30 +Ending Date/Time: 20241015 19:03:50 +Total Time: 01h:28m:57s Compiles Completed: 33/33 Tests Completed: 156/156 diff --git a/tests/rt.sh b/tests/rt.sh index 8eb72b1571..48a65436be 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -717,13 +717,12 @@ case ${MACHINE_ID} in ROCOTO_SCHEDULER="slurm" fi - export LD_PRELOAD=/opt/cray/pe/gcc/12.2.0/snos/lib64/libstdc++.so.6 - module load PrgEnv-intel/8.3.3 - module load intel-classic/2023.1.0 - module load cray-mpich/8.1.25 + export LD_PRELOAD=/usr/lib64/libstdc++.so.6 + module load PrgEnv-intel/8.5.0 + module load intel-classic/2023.2.0 + module load cray-mpich/8.1.28 module load python/3.9.12 module use /ncrc/proj/epic/spack-stack/modulefiles - module load gcc/12.2.0 if [[ "${ECFLOW:-false}" == true ]] ; then module load ecflow/5.8.4 ECF_HOST=$(hostname) diff --git a/tests/run_test.sh b/tests/run_test.sh index 64f7f007d2..201ac000b3 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -118,7 +118,7 @@ case ${MACHINE_ID} in ;; gaea) 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 stack-intel/2023.2.0 stack-cray-mpich/8.1.28 module load nccmp/1.9.0.1 ;; derecho) diff --git a/tests/test_changes.list b/tests/test_changes.list index caee037a6f..904333a800 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,2 +1,108 @@ -datm_cdeps_lm4_gswp3 intel -datm_cdeps_lm4_gswp3_rst intel +control_p8_mynn intel +regional_control intel +regional_restart intel +regional_decomp intel +regional_2threads intel +regional_noquilt intel +regional_netcdf_parallel intel +regional_2dwrtdecomp intel +regional_wofs intel +rap_control intel +regional_spp_sppt_shum_skeb intel +rap_decomp intel +rap_2threads intel +rap_restart intel +rap_sfcdiff intel +rap_sfcdiff_decomp intel +rap_sfcdiff_restart intel +hrrr_control intel +hrrr_control_decomp intel +hrrr_control_2threads intel +hrrr_control_restart intel +rrfs_v1beta intel +rrfs_v1nssl intel +rrfs_v1nssl_nohailnoccn intel +regional_control_faster intel +regional_debug intel +rap_control_debug intel +hrrr_control_debug intel +hrrr_gf_debug intel +hrrr_c3_debug intel +rap_unified_drag_suite_debug intel +rap_diag_debug intel +rap_cires_ugwp_debug intel +rap_unified_ugwp_debug intel +rap_lndp_debug intel +rap_progcld_thompson_debug intel +rap_noah_debug intel +rap_sfcdiff_debug intel +rap_noah_sfcdiff_cires_ugwp_debug intel +rrfs_v1beta_debug intel +rap_clm_lake_debug intel +rap_flake_debug intel +gnv1_c96_no_nest_debug intel +regional_spp_sppt_shum_skeb_dyn32_phy32 intel +rap_control_dyn32_phy32 intel +hrrr_control_dyn32_phy32 intel +rap_2threads_dyn32_phy32 intel +hrrr_control_2threads_dyn32_phy32 intel +hrrr_control_decomp_dyn32_phy32 intel +rap_restart_dyn32_phy32 intel +hrrr_control_restart_dyn32_phy32 intel +conus13km_control intel +conus13km_2threads intel +conus13km_restart_mismatch intel +rap_control_dyn64_phy32 intel +rap_control_debug_dyn32_phy32 intel +hrrr_control_debug_dyn32_phy32 intel +conus13km_debug intel +conus13km_debug_qr intel +conus13km_debug_2threads intel +conus13km_radar_tten_debug intel +rap_control_dyn64_phy32_debug intel +gnv1_nested intel +rap_control gnu +rap_decomp gnu +rap_2threads gnu +rap_restart gnu +rap_sfcdiff gnu +rap_sfcdiff_decomp gnu +rap_sfcdiff_restart gnu +hrrr_control gnu +hrrr_control_noqr gnu +hrrr_control_2threads gnu +hrrr_control_decomp gnu +hrrr_control_restart gnu +hrrr_control_restart_noqr gnu +rrfs_v1beta gnu +regional_debug gnu +rap_control_debug gnu +hrrr_control_debug gnu +hrrr_gf_debug gnu +hrrr_c3_debug gnu +rap_diag_debug gnu +rap_noah_sfcdiff_cires_ugwp_debug gnu +rap_progcld_thompson_debug gnu +rrfs_v1beta_debug gnu +rap_flake_debug gnu +rap_clm_lake_debug gnu +gnv1_c96_no_nest_debug gnu +rap_control_dyn32_phy32 gnu +hrrr_control_dyn32_phy32 gnu +rap_2threads_dyn32_phy32 gnu +hrrr_control_2threads_dyn32_phy32 gnu +hrrr_control_decomp_dyn32_phy32 gnu +rap_restart_dyn32_phy32 gnu +hrrr_control_restart_dyn32_phy32 gnu +conus13km_control gnu +conus13km_2threads gnu +conus13km_restart_mismatch gnu +rap_control_dyn64_phy32 gnu +rap_control_debug_dyn32_phy32 gnu +hrrr_control_debug_dyn32_phy32 gnu +conus13km_debug gnu +conus13km_debug_qr gnu +conus13km_debug_2threads gnu +conus13km_radar_tten_debug gnu +rap_control_dyn64_phy32_debug gnu +cpld_regional_atm_fbh intel From be4544ee28f8fad7bc2cdb207dc62f89c4aa2bb2 Mon Sep 17 00:00:00 2001 From: Gillian Petro <96886803+gspetro-NOAA@users.noreply.github.com> Date: Wed, 23 Oct 2024 12:01:55 -0400 Subject: [PATCH 05/24] [develop]: Documentation updates + Submodule pointer update (fv3atm, ccpp-framework) for ccpp-framework PR 600 (bug fix for unit conversion error in ccpp_prebuild.py ) #2464 + Update chunksizes for cubed sphere grid #2465 (#2463) * UFSWM - Update LND I/O docs Add fd_ufs.yaml docs Add tests-dev docs * UFSWM - Change the default chunking for the cubed sphere history files to use only the horizontal grid size of each of the tiles. * FV3 - Change the default chunking for the cubed sphere history files to use only the horizontal grid size of each of the tiles. * FV3 - Submodule pointer update for ccpp-framework PR 600 (bug fix for unit conversion error in ccpp_prebuild.py) --------- Co-authored-by: Dusan Jovic Co-authored-by: Dom Heinzeller --- FV3 | 2 +- doc/UsersGuide/Makefile | 5 + doc/UsersGuide/source/Glossary.rst | 54 +- doc/UsersGuide/source/InputsOutputs.rst | 67 +- doc/UsersGuide/source/Introduction.rst | 2 +- doc/UsersGuide/source/conf.py | 35 +- doc/UsersGuide/source/create_log.rst | 7 + doc/UsersGuide/source/create_xml.rst | 7 + doc/UsersGuide/source/index.rst | 1 + doc/UsersGuide/source/modules.rst | 9 + doc/UsersGuide/source/ufs_test_utils.rst | 7 + tests-dev/create_log.py | 2 +- tests-dev/create_xml.py | 40 +- tests-dev/ufs_test_utils.py | 52 +- tests/logs/OpnReqTests_control_p8_hera.log | 62 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 28 +- .../OpnReqTests_regional_control_hera.log | 38 +- tests/logs/RegressionTests_gaea.log | 562 ++++++------- tests/logs/RegressionTests_hera.log | 732 ++++++++--------- tests/logs/RegressionTests_hercules.log | 736 +++++++++--------- tests/logs/RegressionTests_orion.log | 536 ++++++------- tests/logs/RegressionTests_wcoss2.log | 454 +++++------ tests/test_changes.list | 108 --- 23 files changed, 1770 insertions(+), 1776 deletions(-) create mode 100644 doc/UsersGuide/source/create_log.rst create mode 100644 doc/UsersGuide/source/create_xml.rst create mode 100644 doc/UsersGuide/source/modules.rst create mode 100644 doc/UsersGuide/source/ufs_test_utils.rst diff --git a/FV3 b/FV3 index 1e10d62a97..99091f9742 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 1e10d62a971e4114faea90ae2f134664f3a9ef02 +Subproject commit 99091f9742670bdebd84bd13f17b9115457d64dd diff --git a/doc/UsersGuide/Makefile b/doc/UsersGuide/Makefile index a883b1dda4..2b79cf2c86 100644 --- a/doc/UsersGuide/Makefile +++ b/doc/UsersGuide/Makefile @@ -15,6 +15,11 @@ help: .PHONY: help Makefile linkcheck +doc: + make clean + $(MAKE) linkcheck + $(MAKE) html + linkcheck: $(SPHINXBUILD) -b linkcheck $(SPHINXOPTS) $(SOURCEDIR) $(LINKCHECKDIR) diff --git a/doc/UsersGuide/source/Glossary.rst b/doc/UsersGuide/source/Glossary.rst index 0d528a8d34..aa012eb238 100644 --- a/doc/UsersGuide/source/Glossary.rst +++ b/doc/UsersGuide/source/Glossary.rst @@ -10,16 +10,16 @@ Glossary To transport substances in the atmostphere by :term:`advection`. advection - According to the American Meteorological Society (AMS) `definition `__, advection is "The process of transport of an atmospheric property solely by the mass motion (velocity field) of the atmosphere." In common parlance, advection is movement of atmospheric substances that are carried around by the wind. + According to the American Meteorological Society (AMS) definition, `advection `_ is "The process of transport of an atmospheric property solely by the mass motion (velocity field) of the atmosphere." In common parlance, advection is movement of atmospheric substances that are carried around by the wind. ATM The Weather Model configuration that runs only the standalone atmospheric model. AQM - The `Air Quality Model `__ (AQM) is a UFS Application that dynamically couples the Community Multiscale Air Quality (:term:`CMAQ`) model with the UFS Weather Model through the :term:`NUOPC` Layer to simulate temporal and spatial variations of atmospheric compositions (e.g., ozone and aerosol compositions). The CMAQ, treated as a column chemistry model, updates concentrations of chemical species (e.g., ozone and aerosol compositions) at each integration time step. The transport terms (e.g., :term:`advection` and diffusion) of all chemical species are handled by the UFS Weather Model as :term:`tracers`. + The `Air Quality Model `_ (AQM) is a UFS Application that dynamically couples the Community Multiscale Air Quality (:term:`CMAQ`) model with the UFS Weather Model through the :term:`NUOPC` Layer to simulate temporal and spatial variations of atmospheric compositions (e.g., ozone and aerosol compositions). The CMAQ, treated as a column chemistry model, updates concentrations of chemical species (e.g., ozone and aerosol compositions) at each integration time step. The transport terms (e.g., :term:`advection` and diffusion) of all chemical species are handled by the UFS Weather Model as :term:`tracers`. CCPP - The `Common Community Physics Package `__ is a forecast-model agnostic, vetted collection of code containing atmospheric physical parameterizations and suites of parameterizations for use in Numerical Weather Prediction (:term:`NWP`) along with a framework that connects the physics to the host forecast model. + The `Common Community Physics Package `_ is a forecast-model agnostic, vetted collection of code containing atmospheric physical parameterizations and suites of parameterizations for use in Numerical Weather Prediction (:term:`NWP`) along with a framework that connects the physics to the host forecast model. CCPP-Framework The infrastructure that connects physics schemes with a host model; also refers to a software @@ -29,10 +29,10 @@ Glossary The pool of CCPP-compliant physics schemes; also refers to a software repository of the same name CDEPS - The `Community Data Models for Earth Predictive Systems `__ repository (CDEPS) contains a set of :term:`NUOPC`-compliant data components and :term:`ESMF`-based "stream" code that selectively removes feedback in coupled model systems. In essence, CDEPS handles the static Data Atmosphere (:term:`DATM`) integration with dynamic coupled model components (e.g., :term:`MOM6`). The CDEPS data models perform the basic function of reading external data files, modifying those data, and then sending the data back to the :term:`CMEPS` mediator. The fields sent to the :term:`mediator` are the same as those that would be sent by an active component. This takes advantage of the fact that the mediator and other CMEPS-compliant model components have no fundamental knowledge of whether another component is fully active or just a data component. More information about DATM is available in the `CDEPS Documentation `__. + The `Community Data Models for Earth Predictive Systems `_ repository (CDEPS) contains a set of :term:`NUOPC`-compliant data components and :term:`ESMF`-based "stream" code that selectively removes feedback in coupled model systems. In essence, CDEPS handles the static Data Atmosphere (:term:`DATM`) integration with dynamic coupled model components (e.g., :term:`MOM6`). The CDEPS data models perform the basic function of reading external data files, modifying those data, and then sending the data back to the :term:`CMEPS` mediator. The fields sent to the :term:`mediator` are the same as those that would be sent by an active component. This takes advantage of the fact that the mediator and other CMEPS-compliant model components have no fundamental knowledge of whether another component is fully active or just a data component. More information about DATM is available in the `CDEPS Documentation `_. CESM - The `Community Earth System Model `__ (CESM) is a fully-coupled global climate model developed at the National Center for Atmospheric Research (:term:`NCAR`) in collaboration with colleagues in the research community. + The `Community Earth System Model `_ (CESM) is a fully-coupled global climate model developed at the National Center for Atmospheric Research (:term:`NCAR`) in collaboration with colleagues in the research community. chgres_cube The preprocessing software used to create initial and boundary condition files to "coldstart" the forecast model. It is part of :term:`UFS_UTILS`. @@ -40,13 +40,13 @@ Glossary CICE CICE6 Sea Ice Model - `CICE `__ is a computationally efficient model for simulating the growth, melting, and movement of polar sea ice. It was designed as one component of a coupled atmosphere-ocean-land-ice global climate model. CICE has several interacting components, including a model of ice dynamics, a transport model that describes :term:`advection` of different state variables; and a vertical physics package called "Icepack". + `CICE `_ is a computationally efficient model for simulating the growth, melting, and movement of polar sea ice. It was designed as one component of a coupled atmosphere-ocean-land-ice global climate model. CICE has several interacting components, including a model of ice dynamics, a transport model that describes :term:`advection` of different state variables; and a vertical physics package called "Icepack". CMAQ - The `Community Multiscale Air Quality Model `__ (CMAQ, pronounced "cee-mak") is a numerical air quality model that predicts the concentration of airborne gases and particles and the deposition of these pollutants back to Earth's surface. The purpose of CMAQ is to provide fast, technically sound estimates of ozone, particulates, toxics, and acid deposition. CMAQ is an active open-source development project of the U.S. Environmental Protection Agency (EPA). Code is publicly availably at https://github.com/USEPA/CMAQ. + The `Community Multiscale Air Quality Model `_ (CMAQ, pronounced "cee-mak") is a numerical air quality model that predicts the concentration of airborne gases and particles and the deposition of these pollutants back to Earth's surface. The purpose of CMAQ is to provide fast, technically sound estimates of ozone, particulates, toxics, and acid deposition. CMAQ is an active open-source development project of the U.S. Environmental Protection Agency (EPA). Code is publicly availably at https://github.com/USEPA/CMAQ. CMEPS - The `Community Mediator for Earth Prediction Systems `__ (CMEPS) is a :term:`NUOPC`-compliant :term:`mediator` used for coupling Earth system model components. It is currently being used in NCAR's Community Earth System Model (:term:`CESM`) and NOAA's subseasonal-to-seasonal (S2S) coupled system. More information is available in the `CMEPS Documentation `__. + The `Community Mediator for Earth Prediction Systems `_ (CMEPS) is a :term:`NUOPC`-compliant :term:`mediator` used for coupling Earth system model components. It is currently being used in NCAR's Community Earth System Model (:term:`CESM`) and NOAA's subseasonal-to-seasonal (S2S) coupled system. More information is available in the `CMEPS Documentation `_. cron cron job @@ -58,21 +58,21 @@ Glossary Data assimilation is the process of combining observations, model data, and error statistics to achieve the best estimate of the state of a system. One of the major sources of error in weather and climate forecasts is uncertainty related to the initial conditions that are used to generate future predictions. Even the most precise instruments have a small range of unavoidable measurement error, which means that tiny measurement errors (e.g., related to atmospheric conditions and instrument location) can compound over time. These small differences result in very similar forecasts in the short term (i.e., minutes, hours), but they cause widely divergent forecasts in the long term. Errors in weather and climate forecasts can also arise because models are imperfect representations of reality. Data assimilation systems seek to mitigate these problems by combining the most timely observational data with a "first guess" of the atmospheric state (usually a previous forecast) and other sources of data to provide a "best guess" analysis of the atmospheric state to start a weather or climate simulation. When combined with an "ensemble" of model runs (many forecasts with slightly different conditions), data assimilation helps predict a range of possible atmospheric states, giving an overall measure of uncertainty in a given forecast. DATM - DATM is the *Data Atmosphere* component of :term:`CDEPS`. It uses static atmospheric forcing files (derived from observations or previous atmospheric model runs) instead of output from an active atmospheric model. This reduces the complexity and computational cost associated with coupling to an active atmospheric model. The *Data Atmosphere* component is particularly useful when employing computationally intensive Data Assimilation (DA) techniques to update ocean and/or sea ice fields in a coupled model. In general, use of DATM in place of :term:`ATM` can be appropriate when users are running a coupled model and only want certain components of the model to be active. More information about DATM is available in the `CDEPS Documentation `__. + DATM is the *Data Atmosphere* component of :term:`CDEPS`. It uses static atmospheric forcing files (derived from observations or previous atmospheric model runs) instead of output from an active atmospheric model. This reduces the complexity and computational cost associated with coupling to an active atmospheric model. The *Data Atmosphere* component is particularly useful when employing computationally intensive Data Assimilation (DA) techniques to update ocean and/or sea ice fields in a coupled model. In general, use of DATM in place of :term:`ATM` can be appropriate when users are running a coupled model and only want certain components of the model to be active. More information about DATM is available in the `CDEPS DATM Documentation `_. DOCN - DOCN is the *Data Ocean* component of :term:`CDEPS`. It uses static ocean forcing files (derived from observations or previous ocean model runs) instead of output from an active ocean model. This reduces the complexity and computational cost associated with coupling to an active ocean model. The *Data Ocean* component is particularly useful when employing computationally intensive Data Assimilation (DA) techniques to update atmospheric fields in a coupled model. In general, use of DOCN in place of :term:`MOM6` or :term:`HYCOM` can be appropriate when users are running a coupled model and only want certain components of the model to be active. More information about DOCN is available in the `CDEPS Documentation `__. + DOCN is the *Data Ocean* component of :term:`CDEPS`. It uses static ocean forcing files (derived from observations or previous ocean model runs) instead of output from an active ocean model. This reduces the complexity and computational cost associated with coupling to an active ocean model. The *Data Ocean* component is particularly useful when employing computationally intensive Data Assimilation (DA) techniques to update atmospheric fields in a coupled model. In general, use of DOCN in place of :term:`MOM6` or :term:`HYCOM` can be appropriate when users are running a coupled model and only want certain components of the model to be active. More information about DOCN is available in the `CDEPS DOCN Documentation `_. dycore dynamical core Global atmospheric model based on fluid dynamics principles, including Euler's equations of motion. EMC - The `Environmental Modeling Center `__ is one of :term:`NCEP`'s nine centers and leads the :term:`National Weather Service `'s modeling efforts. + The `Environmental Modeling Center `_ is one of :term:`NCEP`'s nine centers and leads the :term:`National Weather Service `'s modeling efforts. ESMF - `Earth System Modeling Framework `__. The ESMF defines itself as "a suite of software tools for developing high-performance, multi-component Earth science modeling applications." It is a community-developed software infrastructure for building and coupling models. + `Earth System Modeling Framework `_. The ESMF defines itself as "a suite of software tools for developing high-performance, multi-component Earth science modeling applications." It is a community-developed software infrastructure for building and coupling models. FMS The Flexible Modeling System (FMS) is a software framework for supporting the efficient @@ -82,20 +82,20 @@ Glossary FV3 FV3 dycore FV3 dynamical core - The Finite-Volume Cubed-Sphere :term:`dynamical core` (dycore). Developed at NOAA's `Geophysical - Fluid Dynamics Laboratory `__ (GFDL), it is a scalable and flexible dycore capable of both hydrostatic and non-hydrostatic atmospheric simulations. It is the dycore used in the UFS Weather Model. + The Finite-Volume Cubed-Sphere :term:`dynamical core` (dycore). Developed at NOAA's Geophysical + Fluid Dynamics Laboratory `(GFDL) `_, it is a scalable and flexible dycore capable of both hydrostatic and non-hydrostatic atmospheric simulations. It is the dycore used in the UFS Weather Model. GOCART NASA's Goddard Chemistry Aerosol Radiation and Transport (GOCART) model simulates the distribution of major tropospheric aerosol types, including sulfate, dust, organic carbon (OC), black carbon (BC), and sea salt aerosols. The UFS Weather Model integrates a prognostic aerosol component using GOCART. The code is publicly available on GitHub at https://github.com/GEOS-ESM/GOCART. HPC-Stack - The `HPC-Stack `__ is a repository that provides a unified, shell script-based build system for building the software stack required for numerical weather prediction (NWP) tools such as the `Unified Forecast System (UFS) `__ and the `Joint Effort for Data assimilation Integration (JEDI) `__ framework. + The `HPC-Stack `_ is a repository that provides a unified, shell script-based build system for building the software stack required for numerical weather prediction (NWP) tools such as the `Unified Forecast System (UFS) `_ and the `Joint Effort for Data assimilation Integration (JEDI) `_ framework. HAFS - The Hurricane Analysis and Forecast System (`HAFS `__) is a :term:`UFS` application for hurricane forecasting. It is an :term:`FV3`-based multi-scale model and data assimilation (DA) system capable of providing analyses and forecasts of the inner core structure of tropical cyclones (TC) --- including hurricanes and typhoons --- out to 7 days. This is key to improving size and intensity predictions. HAFS also provides analyses and forecasts of the large-scale environment that is known to influence a TC's motion. HAFS development targets an operational analysis and forecast system for hurricane forecasters with reliable, robust and skillful guidance on TC track and intensity (including rapid intensification), storm size, genesis, storm surge, rainfall, and tornadoes associated with TCs. Currently, HAFS is under active development with collaborative efforts among NCEP/EMC, AOML/HRD, GFDL, ESRL/GSD, ESRL/NESII, OFCM/AOC, and NCAR/DTC. + The Hurricane Analysis and Forecast System (`HAFS `_) is a :term:`UFS` application for hurricane forecasting. It is an :term:`FV3`-based multi-scale model and data assimilation (DA) system capable of providing analyses and forecasts of the inner core structure of tropical cyclones (TC) --- including hurricanes and typhoons --- out to 7 days. This is key to improving size and intensity predictions. HAFS also provides analyses and forecasts of the large-scale environment that is known to influence a TC's motion. HAFS development targets an operational analysis and forecast system for hurricane forecasters with reliable, robust and skillful guidance on TC track and intensity (including rapid intensification), storm size, genesis, storm surge, rainfall, and tornadoes associated with TCs. Currently, HAFS is under active development with collaborative efforts among NCEP/EMC, AOML/HRD, GFDL, ESRL/GSD, ESRL/NESII, OFCM/AOC, and NCAR/DTC. 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. + 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 @@ -110,14 +110,14 @@ Glossary MOM MOM6 Modular Ocean Model - MOM6 is the latest generation of the Modular Ocean Model. It is numerical model code for simulating the ocean general circulation. MOM6 was originally developed by the `Geophysical Fluid Dynamics Laboratory `__. Currently, `MOM6 code `__ and an `extensive suite of test cases `__ are available under an open-development software framework. Although there are many public forks of MOM6, the `NOAA EMC fork `__ is used in the UFS Weather Model. + MOM6 is the latest generation of the Modular Ocean Model. It is numerical model code for simulating the ocean general circulation. MOM6 was originally developed by the `Geophysical Fluid Dynamics Laboratory `_. Currently, `MOM6 code `_ and an `extensive suite of test cases `_ are available under an open-development software framework. Although there are many public forks of MOM6, the `NOAA EMC fork `_ is used in the UFS Weather Model. MRW MRW App - The `Medium-Range Weather Application `__ is a UFS Application that targets predictions of atmospheric behavior out to about two weeks. It packages a prognostic atmospheric model (the UFS Weather Model), pre- and post-processing tools, and a community workflow. + The `Medium-Range Weather Application `_ is a UFS Application that targets predictions of atmospheric behavior out to about two weeks. It packages a prognostic atmospheric model (the UFS Weather Model), pre- and post-processing tools, and a community workflow. NCAR - The `National Center for Atmospheric Research `__. + The `National Center for Atmospheric Research `_. NCEP National Centers for Environmental Prediction (NCEP) is a branch of the :term:`National Weather Service ` and consists of nine centers, including the :term:`Environmental Modeling Center `. More information can be found at https://www.ncep.noaa.gov. @@ -168,10 +168,10 @@ Glossary SRW SRW App Short-Range Weather Application - The `Short-Range Weather Application `__ is a UFS Application that targets predictions of atmospheric behavior on a limited spatial domain and on time scales from minutes out to about two days. It packages a prognostic atmospheric model (the UFS Weather Model), pre- and post-processing tools, and a community workflow. + The `Short-Range Weather Application `_ is a UFS Application that targets predictions of atmospheric behavior on a limited spatial domain and on time scales from minutes out to about two days. It packages a prognostic atmospheric model (the UFS Weather Model), pre- and post-processing tools, and a community workflow. spack-stack - The `spack-stack `__ is a collaborative effort between the NOAA Environmental Modeling Center (EMC), the UCAR Joint Center for Satellite Data Assimilation (JCSDA), and the Earth Prediction Innovation Center (EPIC). *spack-stack* is a repository that provides a Spack-based method for building the software stack required for numerical weather prediction (NWP) tools such as the `Unified Forecast System (UFS) `__ and the `Joint Effort for Data assimilation Integration (JEDI) `__ framework. *spack-stack* uses the Spack package manager along with custom Spack configuration files and Python scripts to simplify installation of the libraries required to run various applications. The *spack-stack* can be installed on a range of platforms and comes pre-configured for many systems. Users can install the necessary packages for a particular application and later add the missing packages for another application without having to rebuild the entire stack. + The `spack-stack `_ is a collaborative effort between the NOAA Environmental Modeling Center (EMC), the UCAR Joint Center for Satellite Data Assimilation (JCSDA), and the Earth Prediction Innovation Center (EPIC). *spack-stack* is a repository that provides a Spack-based method for building the software stack required for numerical weather prediction (NWP) tools such as the `Unified Forecast System (UFS) `_ and the `Joint Effort for Data assimilation Integration (JEDI) `_ framework. *spack-stack* uses the Spack package manager along with custom Spack configuration files and Python scripts to simplify installation of the libraries required to run various applications. The *spack-stack* can be installed on a range of platforms and comes pre-configured for many systems. Users can install the necessary packages for a particular application and later add the missing packages for another application without having to rebuild the entire stack. Suite Definition File (SDF) An external file containing information about the @@ -184,20 +184,20 @@ Glossary well together tracer - According to the American Meteorological Society (AMS) `definition `__, a tracer is "Any substance in the atmosphere that can be used to track the history [i.e., movement] of an air mass." Tracers are carried around by the motion of the atmosphere (i.e., by :term:`advection`). These substances are usually gases (e.g., water vapor, CO2), but they can also be non-gaseous (e.g., rain drops in microphysics parameterizations). In weather models, temperature (or potential temperature), absolute humidity, and radioactivity are also usually treated as tracers. According to AMS, "The main requirement for a tracer is that its lifetime be substantially longer than the transport process under study." + According to the American Meteorological Society (AMS) definition, a `tracer `_ is "Any substance in the atmosphere that can be used to track the history [i.e., movement] of an air mass." Tracers are carried around by the motion of the atmosphere (i.e., by :term:`advection`). These substances are usually gases (e.g., water vapor, CO2), but they can also be non-gaseous (e.g., rain drops in microphysics parameterizations). In weather models, temperature (or potential temperature), absolute humidity, and radioactivity are also usually treated as tracers. According to AMS, "The main requirement for a tracer is that its lifetime be substantially longer than the transport process under study." UFS Unified Forecast System The Unified Forecast System (UFS) is a community-based, coupled, comprehensive Earth system modeling system. The UFS numerical applications span regional to global domains - and sub-hourly to seasonal time scales. The UFS is designed to support the :term:`Weather Enterprise` and to be the source system for NOAA's operational numerical weather prediction (:term:`NWP`) applications. For more information, visit https://ufscommunity.org/. + and sub-hourly to seasonal time scales. The UFS is designed to support the :term:`Weather Enterprise` and to be the source system for NOAA's operational numerical weather prediction (:term:`NWP`) applications. For more information, visit https://ufs.epic.noaa.gov/. UFS_UTILS - The UFS Utilities repository (`UFS_UTILS `__) contains a collection of pre-processing programs for use with the UFS Weather Model and UFS applications. These programs set up the model grid and create coldstart initial conditions. The code is publicly available on the `UFS_UTILS `__ Github repository. + The UFS Utilities repository (`UFS_UTILS `_) contains a collection of pre-processing programs for use with the UFS Weather Model and UFS applications. These programs set up the model grid and create coldstart initial conditions. The code is publicly available in the `UFS_UTILS GitHub repository `_. UPP Unified Post Processor - The `Unified Post Processor `__ is the :term:`post-processor` software developed at :term:`NCEP`. It is used operationally to + The `Unified Post Processor `_ is the :term:`post-processor` software developed at :term:`NCEP`. It is used operationally to convert the raw output from a variety of :term:`NCEP`'s :term:`NWP` models, including the :term:`FV3 dycore`, to a more useful form. WW3 @@ -213,6 +213,6 @@ Glossary A prognostic model that can be used for short- and medium-range research and operational forecasts. It can be an atmosphere-only model or be an atmospheric model coupled with one or more additional components, such as a wave or ocean model. - The UFS Weather Model repository is publicly available on `GitHub `__. + The UFS Weather Model repository is publicly available on `GitHub `_. diff --git a/doc/UsersGuide/source/InputsOutputs.rst b/doc/UsersGuide/source/InputsOutputs.rst index c4a79ed5f8..2ad87b2f74 100644 --- a/doc/UsersGuide/source/InputsOutputs.rst +++ b/doc/UsersGuide/source/InputsOutputs.rst @@ -793,7 +793,7 @@ The input files containing grid information and the time-varying forcing files f .. note:: - Users can find atmospheric forcing files for use with the land (:ref:`LND `) component in the `Land Data Assimilation (DA) data bucket `__. These files provide atmospheric forcing data related to precipitation, solar radiation, longwave radiation, temperature, pressure, winds, humidity, topography, and mesh data. Forcing files for the land component configuration come from the Global Soil Wetness Project Phase 3 (`GSWP3 `__) dataset. + Users can find atmospheric forcing files for use with the land (:ref:`LND `) component in the `Land Data Assimilation (DA) data bucket `_. These files provide atmospheric forcing data related to precipitation, solar radiation, longwave radiation, temperature, pressure, winds, humidity, topography, and mesh data. Forcing files for the land component configuration come from the Global Soil Wetness Project Phase 3 (`GSWP3 `_) dataset. .. code-block:: console @@ -1021,18 +1021,18 @@ AQM inputs defined in ``aqm.rc`` are listed and described in :numref:`Table %s < .. _lnd-in: -------- -LND -------- +-------------- +NOAH-MP (LND) +-------------- -LND component datasets are available from the `Land Data Assimilation (DA) System data bucket `__ and can be retrieved using a ``wget`` command: +LND component datasets are available from the `Land Data Assimilation (DA) System data bucket `_ and can be retrieved using a ``wget`` command: .. code-block:: console - wget https://noaa-ufs-land-da-pds.s3.amazonaws.com/current_land_da_release_data/v1.2.0/Landdav1.2.0_input_data.tar.gz - tar xvfz Landdav1.2.0_input_data.tar.gz + wget https://noaa-ufs-land-da-pds.s3.amazonaws.com/develop-20240501/Landda_develop_data.tar.gz + tar xvfz Landda_develop_data.tar.gz -These files will be untarred into an ``inputs`` directory if the user does not specify a different name. They include data for Dec. 21, 2019. :numref:`Table %s ` describes the file types. In each file name, ``YYYY`` refers to a valid 4-digit year, ``MM`` refers to a valid 2-digit month, and ``DD`` refers to a valid 2-digit day of the month. +These files will be untarred into an ``inputs`` directory. They include data for Jan. 1-2, 2000. :numref:`Table %s ` describes the file types. In each file name, ``YYYY`` refers to a valid 4-digit year, ``MM`` refers to a valid 2-digit month, and ``DD`` refers to a valid 2-digit day of the month. .. _LndInputFiles: @@ -1062,19 +1062,19 @@ These files will be untarred into an ``inputs`` directory if the user does not s oro_C96.mx100.tile*.nc - Tiled static files that contain information on maximum snow albedo, slope type, soil color and type, substrate temperature, vegetation greenness and type, and orography (grid and land mask information). ``*`` stands for the grid tile number [1-6]. - - Static/fixed files - * - grid_spec.nc + - FV3 fix files/Grid information + * - grid_spec.nc (aka C96.mosaic.nc) - Contains information on the mosaic grid - - Grid + - FV3 fix files/Grid information * - C96_grid.tile*.nc - - C96 grid information for tiles 1-6, where ``*`` is the grid tile number [1-6]. - - Grid + - C96 grid information for tiles 1-6 at C96 grid resolution, where ``*`` is the grid tile number [1-6]. + - FV3 fix files/Grid information * - C96_oro_data.tile*.nc / oro_C96.mx100.tileN.nc - Orography files that contain grid and land mask information, where ``*`` is the grid tile number [1-6]. ``mx100`` refers to the ocean resolution (100=1º). - - Grid - * - See :ref:`CDEPS ` for information on atmospheric forcing files. + - FV3 fix files/Grid information + * - See :ref:`CDEPS ` for information on GSWP3 atmospheric forcing files. - Atmospheric forcing - - CDEPS + - CDEPS/DATM * - ghcn_snwd_ioda_YYYYMMDD.nc - GHCN snow depth data assimilation files - DA @@ -1088,9 +1088,9 @@ These files will be untarred into an ``inputs`` directory if the user does not s Static Datasets (i.e., *fix files*) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -The static files (listed in :numref:`Table %s `) include specific information on location, time, soil layers, and fixed (invariant) experiment parameters that are required for the land component to run. The data must be provided in :term:`netCDF` format. +The fix files (listed in :numref:`Table %s `) include specific information on location, time, soil layers, and fixed (invariant) experiment parameters that are required for the land component to run. The data must be provided in :term:`netCDF` format. -The following static files are available in the ``inputs/UFS_WM/FV3_fix_tiled/C96/`` data directory (downloaded :ref:`above `): +The following fix files are available in the ``inputs/UFS_WM/FV3_fix_tiled/C96/`` data directory (downloaded :ref:`above `): .. code-block:: @@ -1104,7 +1104,7 @@ The following static files are available in the ``inputs/UFS_WM/FV3_fix_tiled/C9 oro_C96.mx100.tile*.nc where ``*`` refers to the tile number (1-6). -Details on the configuration variables included in this file are available in the :ref:`Land DA documentation `. +Details on the configuration variables included in these files are available in the :ref:`Land DA documentation `. .. _lnd-grid-ic-files: @@ -1148,6 +1148,7 @@ The configuration files used by the UFS Weather Model are listed here and descri * ``field_table`` * ``model_configure`` * ``ufs.configure`` + * ``fd_ufs.yaml`` * ``suite_[suite_name].xml`` (used only at build time) * ``datm.streams`` (used by CDEPS) * ``datm_in`` (used by CDEPS) @@ -1675,6 +1676,34 @@ However, ``ufs.configure`` files for other configurations of the Weather Model a .. note:: The ``aoflux_code`` option is used to define the algorithm that will be used to calculate atmosphere-ocean fluxes. The possible options are ``cesm`` and ``ccpp``. If ``ccpp`` is selected then the suite file provided in the ``aoflux_ccpp_suite`` option is used to calculate atmosphere-ocean fluxes through the use of CCPP host model. + +.. _fd-ufs: + +----------------- +``fd_ufs.yaml`` +----------------- + +The ``fd_ufs.yaml`` file contains a field dictionary to configure several fields that are used in import/export operations by different Earth modeling components in ESMF's NUOPC coupling system. It allows the sharing of coupling fields between components. Entries in the field dictionary are organized as YAML lists of maps. The NUOPC Field Dictionary data structure in the model code is set up by the NUOPC function called ``NUOPC_FieldDictionarySetup()``, which loads the ``fd_ufs.yaml`` file (see `UFSDriver.F90 `_). The field +metadata described in each entry are used by the NUOPC layer to match fields provided and requested by the various component models. The field dictionary can be shared with other Earth modeling systems that use the same ESPS coupling strategy, such as the Community Earth System Model (CESM). + +The standard field metadata for each coupling field has the following keys and corresponding values: + +.. code-block:: console + + - standard_name: + canonical_units: + description: + alias: + +* ``standard_name`` (required): Name of the field. +* ``canonical_units`` (required): The units used to fully define the field +* ``description`` (optional): Brief explanation of the field +* ``alias`` (optional): Alternative names for the field. An alias can be one character string or a list of strings (e.g., ```` or ``[, ]``). This allows a field to have different names used in the coupling field exchange. + +Either the ``standard_name`` or ``alias`` name can be used in a component model, and the NUOPC layer will recognize these fields as the same field using the definitions provided in the YAML file. For more on the NUOPC field dictionary, visit the `documentation `_. + + + .. _SDF-file: --------------------------------------- diff --git a/doc/UsersGuide/source/Introduction.rst b/doc/UsersGuide/source/Introduction.rst index b2d86b08c1..829d332e4a 100644 --- a/doc/UsersGuide/source/Introduction.rst +++ b/doc/UsersGuide/source/Introduction.rst @@ -8,7 +8,7 @@ The Unified Forecast System (:term:`UFS`) Weather Model (:term:`WM`) is a progno used for short- and medium-range research and operational forecasts, as exemplified by its use in the operational Global Forecast System (GFS) of the National Oceanic and Atmospheric Administration (NOAA). In addition to its use in NOAA's operational forecast systems, the UFS WM is the atmospheric model used in public UFS application releases, such as the Short-Range Weather (SRW) Application v2.2.0 release. These releases represent a snapshot of a continuously evolving system undergoing open -development. More information about the UFS can be found on the UFS Community Portal at https://ufscommunity.org/ and on the Earth Prediction Innovation Center (EPIC) website at https://epic.noaa.gov/get-code/ufs-weather-model/. +development. More information about the UFS can be found on the UFS Community Portal at https://ufs.epic.noaa.gov/ and on the Earth Prediction Innovation Center (EPIC) website at https://epic.noaa.gov/get-code/ufs-weather-model/. Key architectural elements of the UFS WM, along with links to external detailed documentation for those elements, are listed below: diff --git a/doc/UsersGuide/source/conf.py b/doc/UsersGuide/source/conf.py index ea5e7cf860..ae16c27be2 100644 --- a/doc/UsersGuide/source/conf.py +++ b/doc/UsersGuide/source/conf.py @@ -14,13 +14,15 @@ # import os import sys +import sphinx +from sphinx.util import logging sys.path.insert(0, os.path.abspath('.')) - +sys.path.insert(0, os.path.abspath('../../../tests-dev')) # -- Project information ----------------------------------------------------- project = 'UFS Weather Model Users Guide' -copyright = '2020' +copyright = '2024' author = ' ' # The short X.Y version @@ -121,6 +123,7 @@ def setup(app): app.add_css_file('custom.css') # may also be an URL app.add_css_file('theme_overrides.css') # may also be an URL + app.connect('autodoc-process-docstring', warn_undocumented_members) # Created warnings for undocumented portions of Python scripts # Custom sidebar templates, must be a dictionary that maps document names # to template names. @@ -212,6 +215,34 @@ def setup(app): # -- Extension configuration ------------------------------------------------- +# -- Options for autodoc extension --------------------------------------- + +autodoc_mock_imports = [ + ] + +logger = logging.getLogger(__name__) + +# Ensure that warnings pop up when functions, attributes, or methods are undocumented +members_to_watch = ['function', 'attribute', 'method'] +def warn_undocumented_members(app, what, name, obj, options, lines): + if(what in members_to_watch and len(lines)==0): + message = what + " is undocumented: " + name + "(%d)"% len(lines) + logger.warning(message) + +autodoc_default_options = { + "members": True, + "undoc-members": True, + "show-inheritance": True, +} + +add_module_names = False + +# -- Options for napoleon extension --------------------------------------- + +napoleon_numpy_docstring = False +napoleon_google_docstring = True +napoleon_custom_sections = [('Returns', 'params_style')] # Allows return of multiple values + # -- Options for intersphinx extension --------------------------------------- # Example configuration for intersphinx: refer to the Python standard library. diff --git a/doc/UsersGuide/source/create_log.rst b/doc/UsersGuide/source/create_log.rst new file mode 100644 index 0000000000..80158437ee --- /dev/null +++ b/doc/UsersGuide/source/create_log.rst @@ -0,0 +1,7 @@ +create\_log module +================== + +.. automodule:: create_log + :members: + :undoc-members: + :show-inheritance: diff --git a/doc/UsersGuide/source/create_xml.rst b/doc/UsersGuide/source/create_xml.rst new file mode 100644 index 0000000000..29037b6637 --- /dev/null +++ b/doc/UsersGuide/source/create_xml.rst @@ -0,0 +1,7 @@ +create\_xml module +================== + +.. automodule:: create_xml + :members: + :undoc-members: + :show-inheritance: diff --git a/doc/UsersGuide/source/index.rst b/doc/UsersGuide/source/index.rst index c6636e8452..6004f5a5fe 100644 --- a/doc/UsersGuide/source/index.rst +++ b/doc/UsersGuide/source/index.rst @@ -15,6 +15,7 @@ Welcome to the UFS Weather Model User's Guide BuildingAndRunning InputsOutputs Configurations + modules ConfigParameters AutomatedTesting FAQ diff --git a/doc/UsersGuide/source/modules.rst b/doc/UsersGuide/source/modules.rst new file mode 100644 index 0000000000..456173aa9a --- /dev/null +++ b/doc/UsersGuide/source/modules.rst @@ -0,0 +1,9 @@ +Technical Documentation for ``tests-dev`` +========================================== + +.. toctree:: + :maxdepth: 4 + + create_log + create_xml + ufs_test_utils diff --git a/doc/UsersGuide/source/ufs_test_utils.rst b/doc/UsersGuide/source/ufs_test_utils.rst new file mode 100644 index 0000000000..c5291bb440 --- /dev/null +++ b/doc/UsersGuide/source/ufs_test_utils.rst @@ -0,0 +1,7 @@ +ufs\_test\_utils module +======================= + +.. automodule:: ufs_test_utils + :members: + :undoc-members: + :show-inheritance: diff --git a/tests-dev/create_log.py b/tests-dev/create_log.py index 72ebd5ae70..6dfee1cbf4 100644 --- a/tests-dev/create_log.py +++ b/tests-dev/create_log.py @@ -6,7 +6,7 @@ from ufs_test_utils import get_testcase, write_logfile, delete_files, machine_check_off def finish_log(): - """Collect regression test results and generate log file. + """Collects regression test results and generates log file. """ UFS_TEST_YAML = str(os.getenv('UFS_TEST_YAML')) PATHRT = os.getenv('PATHRT') diff --git a/tests-dev/create_xml.py b/tests-dev/create_xml.py index 2d567cec4e..a7462c70bf 100644 --- a/tests-dev/create_xml.py +++ b/tests-dev/create_xml.py @@ -5,18 +5,19 @@ from ufs_test_utils import get_testcase, write_logfile, rrmdir, machine_check_off def rocoto_create_entries(RTPWD,MACHINE_ID,INPUTDATA_ROOT,INPUTDATA_ROOT_WW3,INPUTDATA_ROOT_BMIC,RUNDIR_ROOT,NEW_BASELINE,ROCOTO_XML): - """Generate header information for Rocoto xml file + """Generate header information for Rocoto XML file Args: RTPWD (str): Baseline directory - MACHINE_ID (str): Machine ID i.e. Hera, Gaea, Jet, etc. + MACHINE_ID (str): Machine ID i.e., Hera, Gaea, Jet, etc. INPUTDATA_ROOT (str): Input data directory INPUTDATA_ROOT_WW3 (str): WW3 input data directory INPUTDATA_ROOT_BMIC (str): BMIC input data directory RUNDIR_ROOT (str): Test run directory NEW_BASELINE (str): Directory for newly generated baselines - ROCOTO_XML (str): Rocoto .xml filename to write to + ROCOTO_XML (str): Rocoto XML filename to write to """ + PATHRT = os.getenv('PATHRT') LOG_DIR= PATHRT+'/logs/log_'+MACHINE_ID PATHTR, tail = os.path.split(PATHRT) @@ -43,17 +44,17 @@ def rocoto_create_entries(RTPWD,MACHINE_ID,INPUTDATA_ROOT,INPUTDATA_ROOT_WW3,INP f.close() def rocoto_create_compile_task(MACHINE_ID,COMPILE_ID,ROCOTO_COMPILE_MAXTRIES,MAKE_OPT,ACCNR,COMPILE_QUEUE,PARTITION,ROCOTO_XML): - """Generate and append compile task into Rocoto xml file + """Generate and append compile task into Rocoto XML file Args: - MACHINE_ID (str): Machine ID i.e. Hera, Gaea, Jet, etc. - COMPILE_ID (str): Compile identifier e.g. s2swa_intel + MACHINE_ID (str): Machine ID i.e., Hera, Gaea, Jet, etc. + COMPILE_ID (str): Compile identifier e.g., s2swa_intel ROCOTO_COMPILE_MAXTRIES (str): Max attempts for compile MAKE_OPT (str): Make build options ACCNR (str): Account to run the job with - COMPILE_QUEUE (str): QOS i.e. batch, windfall, normal, etc. - PARTITION (str): System partition i.e. xjet, c5 - ROCOTO_XML (str): Rocoto .xml filename to write to + COMPILE_QUEUE (str): Quality of Service (QOS), i.e., batch, windfall, normal, etc. + PARTITION (str): System partition i.e., xjet, c5 + ROCOTO_XML (str): Rocoto XML filename to write to """ NATIVE="" BUILD_CORES="8" @@ -90,11 +91,11 @@ def rocoto_create_compile_task(MACHINE_ID,COMPILE_ID,ROCOTO_COMPILE_MAXTRIES,MAK f.close() def write_metatask_begin(COMPILE_METATASK_NAME, filename): - """Write compile task metadata to Rocoto xml file + """Write compile task metadata to Rocoto XML file Args: - COMPILE_METATASK_NAME (str): Compile job name e.g. s2swa_intel - filename (str): Rocoto xml filename to append to + COMPILE_METATASK_NAME (str): Compile job name e.g., s2swa_intel + filename (str): Rocoto XML filename to append to """ metatask_name = f""" 0 """ @@ -103,10 +104,10 @@ def write_metatask_begin(COMPILE_METATASK_NAME, filename): f.close() def write_metatask_end(filename): - """Append closing metatask element to Rocoto xml + """Append closing metatask element to Rocoto XML Args: - filename (str): Rocoto xml filename + filename (str): Rocoto XML filename """ metatask_name = f""" """ @@ -118,10 +119,10 @@ def write_compile_env(SCHEDULER,PARTITION,JOB_NR,COMPILE_QUEUE,RUNDIR_ROOT): """Generate compile task .env file Args: - SCHEDULER (str): Job scheduler e.g. pbs, slurm - PARTITION (str): System partition i.e. xjet, c5 + SCHEDULER (str): Job scheduler, e.g., pbs, slurm + PARTITION (str): System partition, i.e., xjet, c5 JOB_NR (str): Job number - COMPILE_QUEUE (str): QOS i.e. batch, windfall, normal, etc. + COMPILE_QUEUE (str): Quality of Service (QOS), i.e., batch, windfall, normal, etc. RUNDIR_ROOT (str): Test run directory """ filename = RUNDIR_ROOT+"/compile_"+str(os.getenv('COMPILE_ID'))+".env" @@ -308,6 +309,11 @@ def make_loghead(ACCNR,MACHINE_ID,RUNDIR_ROOT,RTPWD,REGRESSIONTEST_LOG): write_logfile(filename, "a", output="* (-v) - VERBOSE OUTPUT"+"\n") def xml_loop(): + """ + Creates workflow XML file for each test. + Reads in ``baseline_setup.yaml``, parses ``ufs_test.yaml``, and sets up Rocoto XML + according to the runtime arguments given in ``ufs_test.sh``. + """ ACCNR = str(os.getenv('ACCNR')) PATHRT = str(os.getenv('PATHRT')) MACHINE_ID = str(os.getenv('MACHINE_ID')) diff --git a/tests-dev/ufs_test_utils.py b/tests-dev/ufs_test_utils.py index 9a0f8a2faa..dafefea0a5 100644 --- a/tests-dev/ufs_test_utils.py +++ b/tests-dev/ufs_test_utils.py @@ -7,7 +7,7 @@ import subprocess def update_testyaml(input_list): - """Generate temporary test yaml based on list of tests received + """Generates temporary test YAML based on list of tests received Args: input_list (list): list of tests to run @@ -80,7 +80,7 @@ def update_testyaml(input_list): file_yaml.close() def update_testyaml_n(): - """Update test yaml file for a single test specified in -n + """Updates test YAML file for a single test specified in ``-n `` """ try: SRT_NAME = str(os.getenv('SRT_NAME')) @@ -91,7 +91,7 @@ def update_testyaml_n(): update_testyaml(input_list) def update_testyaml_b(): - """Update test yaml file for tests specified in -b + """Updates test YAML file for tests specified in ``-b `` """ NEW_BASELINES_FILE = str(os.getenv('NEW_BASELINES_FILE')) input_list=[] @@ -104,31 +104,31 @@ def update_testyaml_b(): update_testyaml(input_list) def string_clean(str_in): - """Strip out RUN or COMPILE whitespace and separate with commas. + """Strips out RUN or COMPILE whitespace and separates with commas. Args: - str_in (str): RUN or COMPILE line read in from rt.conf + str_in (str): RUN or COMPILE line read in from ``rt.conf`` Returns: - str: whitespace stripped and comma separated values + str: Whitespace stripped and comma separated values """ return "'"+("','".join(str_in.split()))+"'" def parse_line(str_in): - """Parse rt.conf line into list + """Parses ``rt.conf`` line into list Args: str_in (str): RUN or COMPILE line from rt.conf Returns: - list: list of RUN or COMPILE test attributes + build_attr: List of RUN or COMPILE test attributes """ build_attr = " ".join(str_in.split()).split('|') build_attr = [attr.strip() for attr in build_attr] return build_attr def create_yaml(): - """Parse default rt.conf into ufs_test.yaml + """Parses default ``rt.conf`` into ``ufs_test.yaml`` """ with open('ufs_test.yaml', 'w') as yaml_file, open("rt.conf") as conf_file: @@ -190,7 +190,7 @@ def create_yaml(): yaml_file.close(); conf_file.close() def sync_testscripts(): - """symlink sharable rt.sh test scripts + """Symlinks sharable ``rt.sh`` test scripts """ dst= os.getcwd() src= os.path.split(os.getcwd())[0]+'/tests' @@ -211,13 +211,13 @@ def sync_testscripts(): os.symlink(src_name, dst_name) def machine_check_off(machine_id, val): - """Check turned-off machine from yaml configuration + """Checks turned-off machine from YAML configuration Args: - machine_id (str): local machine name - val (dic): build and test config dictionary list + machine_id (str): Local machine name + val (dict): Build and test config dictionary list Returns: - pass_machine: logical flag to pass local machine + pass_machine: Logical flag to pass local machine """ pass_machine = True if 'turnoff' in val.keys(): @@ -229,10 +229,10 @@ def machine_check_off(machine_id, val): return pass_machine def delete_files(deletefiles): - """Remove specified filepath + """Removes specified filepath Args: - deletefiles (str): filepath to remove e.g. tests/rocoto.* + deletefiles (str): filepath to remove, e.g., ``tests/rocoto.*`` """ fileList = glob.glob(deletefiles, recursive=True) for filePath in fileList: @@ -242,7 +242,7 @@ def delete_files(deletefiles): print("Error while deleting ",deletefiles) def link_new_baselines(): - """Create symlinks for newly generated baselines. + """Creates symlinks for newly generated baselines """ USER = str(os.environ.get('USER')) MACHINE_ID = os.getenv('MACHINE_ID') @@ -272,14 +272,14 @@ def link_new_baselines(): symlink_baselines.wait() def get_testdep(casename,val): - """Retrieve test case dependencies + """Retrieves test case dependencies Args: casename (str): Test case name - val (dict): Test case attributes e.g. val['compiler'] + val (dict): Test case attributes, e.g., val['compiler'] Returns: - dict: Test case and config for the specified dependency + test_dep: Dictionary with test case and configuration for the specified dependency """ test_dep = None for test in val: @@ -289,13 +289,13 @@ def get_testdep(casename,val): return test_dep def get_testcase(test): - """Retrieve test case names and configs from given dict from pyaml + """Retrieves test case names and configs from given dictionary from PyYAML Args: - test (dict): dict retrieved from reading in yaml test file + test (dict): Dictionary retrieved from reading in YAML test file Returns: - str, dict: test name and python dict of test configuration + case_name, case_config: Test name (str) and Python dictionary of test configuration """ case_name = None case_config = None @@ -305,11 +305,11 @@ def get_testcase(test): return case_name, case_config def write_logfile(logfile, openmod, output="", subproc=""): - """Append given output into log file + """Appends given output into log file Args: logfile (str): Log filename - openmod (str): mode to open file in + openmod (str): Mode to open file in output (str): Content to append to log file. Defaults to "". subproc (str): Command to run within the shell. Defaults to "". """ @@ -321,7 +321,7 @@ def write_logfile(logfile, openmod, output="", subproc=""): rtlog.close() def rrmdir(path): - """Remove all files and directories in specified path. + """Removes all files and directories in specified path. Args: path (str): File path to remove diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index a5ac539a95..4fd215fb50 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Tue Oct 8 22:47:32 UTC 2024 +Mon Oct 21 19:48:59 UTC 2024 Start Operation Requirement Test -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 +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_1401223/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 = 311.645970 - 0: The maximum resident set size (KB) = 1440152 + 0: The total amount of wall time = 306.702972 + 0: The maximum resident set size (KB) = 1441656 Test bit_base PASS -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 +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_1401223/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 = 940.211866 - 0: The maximum resident set size (KB) = 1423792 + 0: The total amount of wall time = 946.656819 + 0: The maximum resident set size (KB) = 1405800 Test dbg_base PASS -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 +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_1401223/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 = 274.188787 - 0: The maximum resident set size (KB) = 1418424 + 0: The total amount of wall time = 278.080934 + 0: The maximum resident set size (KB) = 1417788 Test dcp PASS -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 +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_1401223/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 = 301.161679 - 0: The maximum resident set size (KB) = 1416756 + 0: The total amount of wall time = 279.382382 + 0: The maximum resident set size (KB) = 1419056 Test mpi PASS -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 +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_1401223/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 = 276.271987 - 0: The maximum resident set size (KB) = 1431172 + 0: The total amount of wall time = 275.205034 + 0: The maximum resident set size (KB) = 1430944 Test rst PASS -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 +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_1401223/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 = 276.492714 - 0: The maximum resident set size (KB) = 1430992 + 0: The total amount of wall time = 279.070769 + 0: The maximum resident set size (KB) = 1403488 Test std_base PASS -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 +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_1401223/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 = 275.115479 - 0: The maximum resident set size (KB) = 1421612 + 0: The total amount of wall time = 327.912024 + 0: The maximum resident set size (KB) = 1419068 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Oct 9 00:04:19 UTC 2024 -Elapsed time: 01h:16m:47s. Have a nice day! +Mon Oct 21 21:03:27 UTC 2024 +Elapsed time: 01h:14m:28s. 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 6bfe7ee77f..df058cd5d3 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 @@ -Wed Oct 9 14:47:17 UTC 2024 +Mon Oct 21 18:13:22 UTC 2024 Start Operation Requirement Test -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 +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_311611/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 = 2410.412873 - 0: The maximum resident set size (KB) = 1500288 + 0: The total amount of wall time = 2424.448685 + 0: The maximum resident set size (KB) = 1511852 Test dbg_base PASS -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 +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_311611/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 = 899.090979 + 0: The total amount of wall time = 798.111971 0: The maximum resident set size (KB) = 1504600 Test rst PASS -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 +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_311611/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 = 721.439080 - 0: The maximum resident set size (KB) = 1504092 + 0: The total amount of wall time = 784.776830 + 0: The maximum resident set size (KB) = 1507688 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Oct 9 16:24:56 UTC 2024 -Elapsed time: 01h:37m:39s. Have a nice day! +Mon Oct 21 19:48:58 UTC 2024 +Elapsed time: 01h:35m:37s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 1c8759ae87..de7d11ca0e 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Wed Oct 9 12:02:03 UTC 2024 +Mon Oct 21 15:35:17 UTC 2024 Start Operation Requirement Test -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 +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_3613607/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 = 1488.179880 - 0: The maximum resident set size (KB) = 746240 + 0: The total amount of wall time = 1387.422370 + 0: The maximum resident set size (KB) = 763032 Test bit_base PASS -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 +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_3613607/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 = 2215.405761 - 0: The maximum resident set size (KB) = 739208 + 0: The total amount of wall time = 2284.264268 + 0: The maximum resident set size (KB) = 710292 Test dcp PASS -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 +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_3613607/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 = 2326.131971 - 0: The maximum resident set size (KB) = 730172 + 0: The total amount of wall time = 2289.920746 + 0: The maximum resident set size (KB) = 719844 Test std_base PASS -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 +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_3613607/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 = 2180.030448 - 0: The maximum resident set size (KB) = 722712 + 0: The total amount of wall time = 2287.377209 + 0: The maximum resident set size (KB) = 709840 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Oct 9 14:37:25 UTC 2024 -Elapsed time: 02h:35m:23s. Have a nice day! +Mon Oct 21 18:13:21 UTC 2024 +Elapsed time: 02h:38m:05s. Have a nice day! diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 6f89c5a1e4..a34994d13a 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -ff8bef7b1f5ab5484a5001d4b16a237e8baa7b81 +6bd7ea845b22492c06f61a14c242fce7da453a15 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b71196b0faf74f0fe59558796285424c915b6eaa FV3 (remotes/origin/rrfsv1-to-ufs/dev1) + 8e8df02db4fda01cb4cb63c13164e833c8280931 FV3 (remotes/origin/cubed_sphere_chunks) 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - d5842b617d0bdddd00fd8d45cf1cbf3c9c141258 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5334-gd5842b61) + 8c8b60498ec463ea2d3d5b79950c6b47f4af3e34 FV3/ccpp/framework (v0.1.0-1703-g8c8b604) + f3eeb3442775b7239d98e3d09acc6d4f1d42233e FV3/ccpp/physics (EP4-889-gf3eeb344) 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 @@ -39,290 +39,290 @@ 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-20241011 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_3630269 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_3827138 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [15:20, 13:41] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:35, 08:57](3185 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:22, 24:15] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [17:23, 14:14](1901 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:16, 14:20](1938 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:27, 07:13](1060 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:25, 15:36](1880 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:21, 22:17] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [15:51, 13:31](1902 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:24, 12:14] ( 1528 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:41, 25:24](1934 MB) - -PASS -- COMPILE 's2swa_intel' [13:20, 11:18] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [14:06, 10:27](3214 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:15, 10:43](3214 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:46, 06:38](3136 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [14:06, 10:16](3232 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:46, 06:50](3159 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:52, 09:00](3462 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:01, 10:29](3205 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:01, 09:23](3158 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:15, 10:36](3214 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:31, 10:37](3491 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:21, 07:08](3601 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:13, 12:00](4260 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:51, 08:28](4345 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:52, 08:22](3190 MB) - -PASS -- COMPILE 's2sw_intel' [14:24, 12:59] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:34, 06:35](1907 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:56, 08:50](1975 MB) - -PASS -- COMPILE 's2swa_debug_intel' [16:24, 14:14] ( 1418 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [17:21, 15:04](3269 MB) - -PASS -- COMPILE 's2sw_debug_intel' [14:24, 12:31] ( 1418 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:30, 09:18](1948 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:20, 16:02] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:26, 05:41](1972 MB) - -PASS -- COMPILE 's2s_intel' [09:20, 08:05] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:17, 05:40](2865 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:28, 02:48](2873 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:56, 01:06](2284 MB) - -PASS -- COMPILE 's2swa_faster_intel' [46:19, 44:23] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [13:37, 10:21](3216 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 20:02] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:23, 16:02](1913 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:25, 07:30](1096 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:13, 17:37](1889 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:11, 11:43] ( 1528 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:01, 26:59](1952 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:15, 12:59] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:41, 03:50](655 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:15, 03:30](1549 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:18, 03:36](1557 MB) -PASS -- TEST 'control_latlon_intel' [06:08, 03:21](1556 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:19, 03:31](1563 MB) -PASS -- TEST 'control_c48_intel' [13:19, 09:58](1578 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:10, 05:41](698 MB) -PASS -- TEST 'control_c192_intel' [14:16, 11:16](1680 MB) -PASS -- TEST 'control_c384_intel' [26:17, 23:53](1969 MB) -PASS -- TEST 'control_c384gdas_intel' [18:21, 14:53](1171 MB) -PASS -- TEST 'control_stochy_intel' [03:24, 01:55](612 MB) -PASS -- TEST 'control_stochy_restart_intel' [04:09, 01:37](418 MB) -PASS -- TEST 'control_lndp_intel' [03:30, 01:51](609 MB) -PASS -- TEST 'control_iovr4_intel' [04:27, 02:41](611 MB) -PASS -- TEST 'control_iovr5_intel' [04:25, 02:40](608 MB) -PASS -- TEST 'control_p8_intel' [07:11, 04:36](1841 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:03, 03:41](1844 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:04, 04:29](1847 MB) -PASS -- TEST 'control_restart_p8_intel' [05:01, 02:28](997 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:11, 04:30](1837 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:09, 02:17](1007 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:03, 04:05](1834 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:03, 03:26](1927 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:00, 06:39](1852 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:25, 04:23](1899 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:10, 03:56](1851 MB) -PASS -- TEST 'merra2_thompson_intel' [07:06, 04:11](1850 MB) -PASS -- TEST 'regional_control_intel' [06:41, 05:04](845 MB) -PASS -- TEST 'regional_restart_intel' [04:37, 02:36](848 MB) -PASS -- TEST 'regional_decomp_intel' [06:43, 04:56](846 MB) -PASS -- TEST 'regional_2threads_intel' [04:44, 03:04](983 MB) -PASS -- TEST 'regional_noquilt_intel' [06:46, 04:41](1172 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:45, 04:45](843 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:37, 05:07](844 MB) -PASS -- TEST 'regional_wofs_intel' [08:41, 06:32](1570 MB) - -PASS -- COMPILE 'rrfs_intel' [13:11, 11:56] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:26, 07:04](991 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:31, 04:18](1148 MB) -PASS -- TEST 'rap_decomp_intel' [10:30, 07:14](988 MB) -PASS -- TEST 'rap_2threads_intel' [09:26, 06:22](1073 MB) -PASS -- TEST 'rap_restart_intel' [06:46, 04:13](869 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:25, 06:59](988 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:30, 07:30](987 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:52, 05:12](869 MB) -PASS -- TEST 'hrrr_control_intel' [06:28, 03:51](982 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:23, 04:13](987 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:28, 03:10](1065 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:34, 02:06](815 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:25, 06:51](983 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:02, 08:56](1942 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:02, 08:43](1933 MB) - -PASS -- COMPILE 'csawmg_intel' [14:16, 12:39] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [09:25, 07:02](950 MB) -PASS -- TEST 'control_ras_intel' [05:27, 03:38](644 MB) - -PASS -- COMPILE 'wam_intel' [15:11, 13:14] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:13, 12:01](1637 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 12:48] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:05, 03:14](1845 MB) -PASS -- TEST 'regional_control_faster_intel' [06:48, 04:26](843 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [12:11, 10:51] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:51, 02:49](1581 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:56, 02:49](1580 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:29, 03:09](783 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:32, 02:53](783 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:52, 04:22](1083 MB) -PASS -- TEST 'control_ras_debug_intel' [04:23, 02:51](788 MB) -PASS -- TEST 'control_diag_debug_intel' [04:39, 03:04](1641 MB) -PASS -- TEST 'control_debug_p8_intel' [04:37, 03:04](1867 MB) -PASS -- TEST 'regional_debug_intel' [18:32, 16:12](884 MB) -PASS -- TEST 'rap_control_debug_intel' [06:29, 05:04](1164 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:28, 04:57](1160 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:25, 05:18](1163 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:29, 05:17](1161 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:27, 05:09](1163 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:33, 05:15](1249 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:26, 05:13](1163 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:26, 05:15](1164 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:26, 05:08](1164 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 05:01](1165 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:22, 05:07](1157 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:27, 05:13](1163 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:26, 07:58](1163 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 05:06](1157 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:25, 06:37](1164 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:27, 05:15](1163 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:57, 08:55](1167 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:15, 08:29] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:05, 13:46](1671 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:15, 11:10] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:01, 04:02](1023 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:42, 06:11](866 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:49, 03:32](863 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:42, 05:26](922 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:55, 02:55](912 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:39, 03:45](868 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:56, 04:15](773 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:04, 01:40](751 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:14, 12:42] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:18, 02:09](1072 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:24, 01:10](1063 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:18, 01:15](948 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 11:10] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:30, 04:17](894 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:11, 08:52] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:00, 04:54](1043 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:59, 05:07](1042 MB) -PASS -- TEST 'conus13km_debug_intel' [16:17, 13:25](1123 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:08, 13:46](796 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:04, 07:54](1114 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:59, 13:40](1193 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:15, 08:11] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:54, 05:02](1062 MB) - -PASS -- COMPILE 'hafsw_intel' [15:11, 14:07] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:25, 05:01](712 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:43, 04:21](1065 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:31, 07:49](744 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:20, 11:45](771 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:39, 12:55](796 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:21, 05:24](475 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:33, 06:35](495 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:12, 03:21](392 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:37, 07:32](483 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:10, 04:00](503 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:16, 04:17](502 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:19, 04:42](588 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:18, 01:42](424 MB) -PASS -- TEST 'gnv1_nested_intel' [09:49, 05:48](1696 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [11:11, 10:06] ( 1470 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:47, 12:51](612 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:13, 15:05] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:22, 07:50](630 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:45, 08:09](810 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 15:24] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:13, 06:07](809 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:12, 14:19] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:44, 06:34](736 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:27, 06:36](720 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:37, 20:02](891 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [14:00, 11:29] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:30, 02:37](763 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:23, 01:36](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:26, 02:33](642 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:31, 02:46](642 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:24, 02:34](641 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:29, 02:37](763 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:24, 02:36](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:29, 02:28](642 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:04, 06:27](694 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:05, 06:22](676 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:23, 02:44](763 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:26, 04:42](2030 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:27, 04:44](2030 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:15, 07:47] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:28, 05:30](749 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [13:13, 11:29] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:27, 02:40](764 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:13, 02:15] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:46, 02:12](322 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:45, 01:39](460 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:41, 01:06](460 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [04:11, 02:34] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [03:47, 01:08](449 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:52, 00:15](255 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:14, 13:05] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:14, 04:43](1912 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:14, 11:44] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:10, 04:19](1905 MB) - -PASS -- COMPILE 'atml_intel' [22:11, 21:04] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:15, 07:36](1876 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:15, 07:38](1882 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:41, 04:37](1027 MB) - -PASS -- COMPILE 'atml_debug_intel' [10:20, 08:47] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:17, 06:32](1911 MB) - -PASS -- COMPILE 'atmw_intel' [15:10, 13:24] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:58, 02:26](1878 MB) - -PASS -- COMPILE 'atmaero_intel' [14:10, 12:40] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:16, 06:52](3100 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [11:04, 07:22](2988 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:38, 07:13](2996 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [11:11, 09:35] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [21:45, 18:12](4422 MB) - -PASS -- COMPILE 'atm_fbh_intel' [13:14, 11:54] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:43, 09:27](798 MB) +PASS -- COMPILE 's2swa_32bit_intel' [18:15, 16:33] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:22, 08:31](3186 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:12, 19:03] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [16:14, 13:50](1909 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:02, 14:24](1933 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:08, 06:49](1067 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:37, 15:17](1872 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:13, 20:47] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [16:01, 13:26](1896 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:14, 09:10] ( 1528 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:28, 25:43](1928 MB) + +PASS -- COMPILE 's2swa_intel' [17:14, 15:53] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [14:01, 10:13](3213 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:14, 10:17](3212 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:28, 06:43](3135 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [14:02, 10:13](3230 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:28, 06:38](3159 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [12:00, 08:35](3463 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [13:52, 10:09](3204 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [12:44, 09:16](3152 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:14, 10:10](3211 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:17, 10:08](3487 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:14, 07:23](3597 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:27, 11:20](4251 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:12, 08:22](4349 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:35, 07:57](3187 MB) + +PASS -- COMPILE 's2sw_intel' [18:15, 16:26] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:51, 06:04](1912 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:22, 08:37](1966 MB) + +PASS -- COMPILE 's2swa_debug_intel' [13:12, 11:44] ( 1418 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [17:08, 14:13](3264 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:12, 08:55] ( 1418 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:26, 09:19](1945 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:12, 13:49] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:24, 05:20](1973 MB) + +PASS -- COMPILE 's2s_intel' [15:12, 13:46] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:57, 05:35](2867 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:55, 02:00](2879 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:56, 01:07](2290 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:16, 15:28] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [12:43, 10:05](3216 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:15, 19:10] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:27, 15:14](1917 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:58, 07:30](1090 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:40, 17:29](1890 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:11, 09:36] ( 1528 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:44, 27:07](1943 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:14, 13:10] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:22, 03:45](654 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [08:06, 03:52](1554 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:41, 03:58](1564 MB) +PASS -- TEST 'control_latlon_intel' [07:51, 03:50](1553 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:06, 03:41](1560 MB) +PASS -- TEST 'control_c48_intel' [12:41, 09:55](1570 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:40, 05:42](696 MB) +PASS -- TEST 'control_c192_intel' [14:01, 11:25](1686 MB) +PASS -- TEST 'control_c384_intel' [27:11, 24:14](1965 MB) +PASS -- TEST 'control_c384gdas_intel' [18:18, 14:36](1166 MB) +PASS -- TEST 'control_stochy_intel' [03:30, 02:03](612 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:32, 01:00](416 MB) +PASS -- TEST 'control_lndp_intel' [04:24, 02:16](609 MB) +PASS -- TEST 'control_iovr4_intel' [05:32, 03:00](606 MB) +PASS -- TEST 'control_iovr5_intel' [05:38, 02:30](609 MB) +PASS -- TEST 'control_p8_intel' [06:14, 03:46](1844 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:50, 03:20](1842 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:41, 03:46](1841 MB) +PASS -- TEST 'control_restart_p8_intel' [05:29, 02:26](996 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:30, 03:46](1839 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:39, 02:44](1006 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:30, 03:48](1846 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:30, 03:21](1926 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:39, 06:21](1845 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:48, 04:10](1896 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:42, 03:47](1851 MB) +PASS -- TEST 'merra2_thompson_intel' [09:32, 04:09](1851 MB) +PASS -- TEST 'regional_control_intel' [08:31, 05:03](842 MB) +PASS -- TEST 'regional_restart_intel' [05:02, 02:32](846 MB) +PASS -- TEST 'regional_decomp_intel' [08:19, 05:11](854 MB) +PASS -- TEST 'regional_2threads_intel' [05:39, 03:13](981 MB) +PASS -- TEST 'regional_noquilt_intel' [07:19, 04:35](1170 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:47, 04:58](851 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:42, 04:42](843 MB) +PASS -- TEST 'regional_wofs_intel' [08:32, 06:37](1575 MB) + +PASS -- COMPILE 'rrfs_intel' [13:11, 11:18] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:17, 06:57](988 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:13, 03:58](1145 MB) +PASS -- TEST 'rap_decomp_intel' [10:17, 07:15](991 MB) +PASS -- TEST 'rap_2threads_intel' [10:17, 06:13](1071 MB) +PASS -- TEST 'rap_restart_intel' [07:18, 03:53](867 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:17, 06:53](987 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:17, 07:18](987 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:50, 04:59](867 MB) +PASS -- TEST 'hrrr_control_intel' [06:03, 03:56](982 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:03, 04:00](987 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:03, 03:12](1065 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:04, 01:53](814 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:17, 06:46](984 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:59, 08:56](1942 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:35, 08:42](1935 MB) + +PASS -- COMPILE 'csawmg_intel' [13:12, 11:10] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:32, 06:41](944 MB) +PASS -- TEST 'control_ras_intel' [05:30, 03:36](642 MB) + +PASS -- COMPILE 'wam_intel' [13:12, 11:40] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:41, 12:38](1638 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:12, 11:14] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:16, 03:32](1841 MB) +PASS -- TEST 'regional_control_faster_intel' [07:04, 04:51](843 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:11, 11:38] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:08, 03:35](1583 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:25, 03:25](1582 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:37, 03:28](784 MB) +PASS -- TEST 'control_lndp_debug_intel' [07:01, 02:49](785 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:12, 04:22](1085 MB) +PASS -- TEST 'control_ras_debug_intel' [05:55, 02:53](793 MB) +PASS -- TEST 'control_diag_debug_intel' [06:14, 03:05](1639 MB) +PASS -- TEST 'control_debug_p8_intel' [06:13, 03:22](1876 MB) +PASS -- TEST 'regional_debug_intel' [19:14, 15:56](885 MB) +PASS -- TEST 'rap_control_debug_intel' [07:48, 05:09](1166 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:16, 04:58](1163 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:17, 05:14](1164 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:09, 05:23](1162 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:17, 05:08](1162 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:55, 05:32](1251 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:46, 05:13](1166 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:43, 05:07](1162 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:49, 05:09](1167 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:00, 05:01](1164 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:44, 04:55](1158 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:36, 05:07](1163 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:28, 07:55](1161 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:52, 04:55](1159 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:33, 06:08](1166 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:38, 05:02](1165 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:55, 08:34](1168 MB) + +PASS -- COMPILE 'wam_debug_intel' [12:14, 10:36] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:32, 13:39](1663 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:15, 11:53] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:36, 03:50](1017 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:09, 06:01](865 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:33, 03:30](860 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:53, 05:34](922 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:26, 02:46](909 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:00, 03:55](861 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [25:58, 04:12](772 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [23:54, 01:57](743 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:34, 10:56] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:47, 02:55](1072 MB) +PASS -- TEST 'conus13km_2threads_intel' [23:12, 01:06](1061 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [26:09, 01:23](948 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:13, 11:26] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:24, 04:23](895 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:11, 08:10] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:07, 05:17](1041 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:07, 04:57](1034 MB) +PASS -- TEST 'conus13km_debug_intel' [16:58, 13:29](1123 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [34:12, 14:03](795 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [27:55, 08:24](1115 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [36:10, 13:40](1190 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:11, 07:56] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:55, 05:13](1066 MB) + +PASS -- COMPILE 'hafsw_intel' [15:17, 13:40] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:14, 05:20](711 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [24:15, 04:43](1065 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [30:29, 07:42](745 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [32:53, 12:16](774 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [35:13, 12:58](797 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [27:28, 05:15](468 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [27:54, 06:41](495 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [23:20, 02:43](395 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [30:54, 07:40](479 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [26:17, 03:49](505 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [25:19, 03:31](503 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [30:24, 04:43](582 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [28:52, 01:37](425 MB) +PASS -- TEST 'gnv1_nested_intel' [30:53, 05:57](1696 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [11:12, 09:35] ( 1470 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [38:07, 12:58](614 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:17, 15:03] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [34:15, 07:52](632 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [35:27, 07:50](806 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [20:15, 19:07] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [33:39, 06:06](807 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:12, 14:09] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [33:16, 06:17](736 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [34:28, 06:22](717 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [47:18, 20:04](885 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [13:19, 12:10] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [28:27, 02:37](751 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [10:26, 01:44](741 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [25:24, 02:29](641 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [28:27, 02:29](640 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [22:25, 02:29](640 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [21:27, 02:37](750 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [20:27, 02:37](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [20:30, 02:30](642 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [24:06, 06:22](692 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [24:10, 06:34](672 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [18:25, 02:36](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:23, 04:39](2030 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [20:32, 04:45](2032 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:15, 05:45] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [21:28, 05:39](749 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:13, 11:37] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [17:29, 02:36](764 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 02:06] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [18:48, 03:34](313 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [15:43, 01:44](460 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:41, 01:05](462 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [04:13, 02:34] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [13:08, 01:14](451 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [04:52, 00:58](256 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:15, 13:41] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [18:13, 04:29](1909 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:15, 14:48] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [17:07, 04:33](1905 MB) + +PASS -- COMPILE 'atml_intel' [17:12, 15:26] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [21:15, 07:29](1878 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [20:21, 07:41](1880 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:38, 04:47](1024 MB) + +PASS -- COMPILE 'atml_debug_intel' [12:21, 10:14] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [19:10, 06:23](1902 MB) + +PASS -- COMPILE 'atmw_intel' [16:18, 14:26] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [14:01, 02:54](1879 MB) + +PASS -- COMPILE 'atmaero_intel' [14:16, 12:51] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [19:02, 06:27](3099 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [17:02, 07:28](2988 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [15:57, 07:05](2995 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [12:16, 10:35] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [27:53, 18:13](4439 MB) + +PASS -- COMPILE 'atm_fbh_intel' [16:16, 14:38] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [18:37, 09:31](796 MB) SYNOPSIS: -Starting Date/Time: 20241017 20:04:15 -Ending Date/Time: 20241017 22:44:00 -Total Time: 02h:41m:22s +Starting Date/Time: 20241018 20:22:24 +Ending Date/Time: 20241018 22:32:42 +Total Time: 02h:11m:17s Compiles Completed: 43/43 Tests Completed: 188/188 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index ff6bb65f57..5b507962b8 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -61e2d26b6b6977a6b2486ccc3f639470e651c095 +6bd7ea845b22492c06f61a14c242fce7da453a15 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b71196b0faf74f0fe59558796285424c915b6eaa FV3 (remotes/origin/rrfsv1-to-ufs/dev1) + 8e8df02db4fda01cb4cb63c13164e833c8280931 FV3 (remotes/origin/cubed_sphere_chunks) 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) @@ -27,380 +27,380 @@ 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-20241011 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3220251 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_1237674 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:11, 12:16] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:17, 06:10](3290 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:12, 15:55] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:00, 16:52](1947 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:14, 17:23](2139 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:06, 07:57](1246 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:56, 18:41](1840 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:12, 15:57] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:44, 16:19](1947 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 05:57] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:13, 23:29](1886 MB) - -PASS -- COMPILE 's2swa_intel' [14:11, 12:23] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [10:21, 07:59](3325 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:34, 07:45](3308 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:27, 04:13](3224 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:21, 07:39](3332 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:27, 04:15](3242 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:21, 07:22](3595 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:19, 07:32](3308 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:15, 06:08](3190 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:30, 07:31](3312 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:12, 09:53](3490 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:32, 06:01](3589 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [16:37, 08:46](4262 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:17, 05:33](4351 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:13, 05:27](3283 MB) - -PASS -- COMPILE 's2sw_intel' [13:11, 11:32] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:55, 05:52](1962 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:59, 07:29](1994 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 05:54] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [16:14, 13:06](3323 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:37] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:04, 08:54](1959 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:11, 10:50] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:57, 04:20](2015 MB) - -PASS -- COMPILE 's2s_intel' [12:11, 10:53] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:39, 07:40](3004 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:40, 02:42](3019 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:39, 01:32](2466 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:12, 16:34] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:14, 07:09](3327 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 15:55] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:09, 16:52](2001 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:25, 08:06](1257 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:04, 19:15](1904 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:12, 05:17] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:12, 26:04](1933 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:11, 10:10] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:24, 03:20](689 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:51, 03:15](1566 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:50, 03:19](1570 MB) -PASS -- TEST 'control_latlon_intel' [05:41, 03:09](1564 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:55, 03:11](1564 MB) -PASS -- TEST 'control_c48_intel' [13:48, 11:19](1704 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:37, 06:22](826 MB) -PASS -- TEST 'control_c192_intel' [14:04, 11:49](1734 MB) -PASS -- TEST 'control_c384_intel' [17:03, 13:19](1955 MB) -PASS -- TEST 'control_c384gdas_intel' [11:25, 08:02](1346 MB) -PASS -- TEST 'control_stochy_intel' [03:24, 01:36](639 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:28, 01:00](470 MB) -PASS -- TEST 'control_lndp_intel' [03:21, 01:32](636 MB) -PASS -- TEST 'control_iovr4_intel' [04:22, 02:26](629 MB) -PASS -- TEST 'control_iovr5_intel' [04:24, 02:27](631 MB) -PASS -- TEST 'control_p8_intel' [05:52, 03:40](1859 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:53, 03:04](1876 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:48, 03:33](1866 MB) -PASS -- TEST 'control_restart_p8_intel' [03:43, 02:00](1108 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:47, 03:34](1836 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:53, 01:59](1133 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:47, 03:39](1839 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:47, 03:26](1931 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:43, 06:27](1847 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:55, 03:54](1937 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:52, 03:02](1877 MB) -PASS -- TEST 'merra2_thompson_intel' [05:50, 03:18](1865 MB) -PASS -- TEST 'regional_control_intel' [07:35, 05:12](1071 MB) -PASS -- TEST 'regional_restart_intel' [04:35, 02:54](1062 MB) -PASS -- TEST 'regional_decomp_intel' [07:34, 05:32](1062 MB) -PASS -- TEST 'regional_2threads_intel' [05:36, 03:19](1071 MB) -PASS -- TEST 'regional_noquilt_intel' [07:38, 05:11](1366 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:40, 05:11](1073 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:34, 05:14](1067 MB) -PASS -- TEST 'regional_wofs_intel' [08:36, 06:53](1877 MB) - -PASS -- COMPILE 'rrfs_intel' [11:11, 09:48] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:47, 07:47](1076 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:03, 04:08](1227 MB) -PASS -- TEST 'rap_decomp_intel' [10:39, 08:10](1004 MB) -PASS -- TEST 'rap_2threads_intel' [09:47, 07:20](1160 MB) -PASS -- TEST 'rap_restart_intel' [05:45, 04:01](1078 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:48, 07:43](1081 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:40, 08:07](1014 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:46, 05:47](1100 MB) -PASS -- TEST 'hrrr_control_intel' [05:40, 04:00](1013 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:40, 04:06](1006 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:40, 03:41](1083 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:30, 02:11](966 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:50, 07:40](1069 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:30, 09:26](1958 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:27, 09:03](2036 MB) - -PASS -- COMPILE 'csawmg_intel' [11:11, 09:27] -PASS -- TEST 'control_csawmg_intel' [08:36, 06:12](1004 MB) -PASS -- TEST 'control_ras_intel' [05:22, 03:14](730 MB) - -PASS -- COMPILE 'csawmg_gnu' [06:11, 04:14] -PASS -- TEST 'control_csawmg_gnu' [10:35, 08:31](722 MB) - -PASS -- COMPILE 'wam_intel' [11:11, 09:27] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [12:46, 11:04](1634 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [11:11, 09:46] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:46, 02:42](1869 MB) -PASS -- TEST 'regional_control_faster_intel' [06:38, 04:45](1067 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 07:22] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:40, 02:09](1567 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:44, 02:07](1576 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:21, 02:58](781 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:41](795 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:34, 04:15](1094 MB) -PASS -- TEST 'control_ras_debug_intel' [04:22, 02:42](797 MB) -PASS -- TEST 'control_diag_debug_intel' [04:42, 02:44](1645 MB) -PASS -- TEST 'control_debug_p8_intel' [04:42, 02:32](1866 MB) -PASS -- TEST 'regional_debug_intel' [18:40, 16:54](1057 MB) -PASS -- TEST 'rap_control_debug_intel' [06:23, 04:48](1177 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:25, 04:52](1165 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:23, 04:53](1169 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 04:52](1170 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 04:47](1170 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:39, 05:02](1260 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 04:52](1168 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:21, 04:50](1171 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:23, 04:50](1170 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 04:55](1175 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:23, 04:48](1173 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 04:56](1185 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:27, 07:52](1181 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:25, 04:56](1172 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:30, 05:48](1169 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:25, 04:49](1164 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:37, 08:22](1175 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 03:59] -PASS -- TEST 'control_csawmg_debug_gnu' [04:36, 02:10](696 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:11, 04:41] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:58, 12:44](1647 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 09:09] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:02, 03:49](1104 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:35, 06:24](1016 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:37, 03:28](960 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:36, 06:05](1055 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:34, 03:07](930 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:31, 03:34](918 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:46, 04:51](1003 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:27, 01:52](901 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 09:21] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:54, 02:05](1165 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:40, 00:50](1089 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:41, 01:11](1077 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 09:35] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:42, 04:12](959 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:36] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:20, 04:42](1047 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:21, 04:39](1045 MB) -PASS -- TEST 'conus13km_debug_intel' [15:53, 13:19](1160 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:53, 13:35](883 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:44, 07:32](1100 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:46, 13:32](1233 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:36] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:25, 04:46](1099 MB) - -PASS -- COMPILE 'hafsw_intel' [12:11, 10:52] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:18, 04:45](702 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:29, 05:47](1081 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:21, 06:51](796 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:18, 12:59](951 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:23, 14:44](850 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:02, 05:16](473 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:46, 06:22](482 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:42, 02:36](354 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:36, 07:24](434 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:43, 03:36](494 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:47, 03:22](490 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:53, 04:06](547 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:09](381 MB) -PASS -- TEST 'gnv1_nested_intel' [07:00, 03:59](1708 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:11, 05:00] ( 1465 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:54, 12:31](541 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [12:12, 10:32] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:02, 08:25](624 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:16, 08:42](682 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:10, 10:59] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:40, 06:24](685 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:11, 10:27] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:24, 06:16](786 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:15, 06:20](764 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:55, 15:48](1205 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:10, 06:19] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:34, 02:42](1153 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:22, 01:40](1094 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:26, 02:33](1019 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:37](1019 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:43](1016 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:20, 02:44](1141 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 02:59](1129 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:41](1016 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:24, 06:28](1062 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:19, 06:26](1037 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:48](1125 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:21, 03:55](2506 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:19, 04:39](2443 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:23] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:21, 06:05](1069 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:20] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 02:42](1160 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:07] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:31, 00:46](254 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:51](314 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:36](314 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:16] -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:34, 00:31](564 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:32, 00:17](447 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:11, 09:52] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:05, 03:53](1947 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:11, 09:49] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:51, 03:32](1935 MB) - -PASS -- COMPILE 'atml_intel' [12:11, 10:17] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:59, 04:14](1842 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:53, 04:15](1828 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:43, 02:21](1060 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:11, 05:31] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:50, 05:34](1843 MB) - -PASS -- COMPILE 'atmw_intel' [11:11, 10:00] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:46, 01:48](1895 MB) - -PASS -- COMPILE 'atmaero_intel' [11:11, 09:48] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:55, 04:02](3165 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:56, 04:46](3060 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:42, 04:48](3087 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:12, 12:11] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:17, 06:15](3305 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:12, 16:24] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:07, 16:40](1974 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:36, 17:24](2162 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:05, 08:03](1272 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:09, 18:44](1866 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:12, 16:15] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:50, 16:13](1961 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 05:58] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:13, 23:26](1937 MB) + +PASS -- COMPILE 's2swa_intel' [14:12, 12:54] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:09, 07:30](3353 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:18, 07:40](3328 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:10, 04:10](3251 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:09, 07:23](3374 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:26, 04:13](3282 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:04, 07:04](3627 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:09, 07:28](3326 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:13, 06:11](3220 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:18, 07:23](3360 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:13, 09:44](3521 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:15, 06:06](3619 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:21, 08:45](4292 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:14, 05:37](4381 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:14, 05:24](3288 MB) + +PASS -- COMPILE 's2sw_intel' [13:12, 11:46] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:05, 05:41](1952 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:03, 07:26](2011 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:11, 05:58] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [15:22, 12:48](3367 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:50] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:12, 08:49](2011 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:12, 10:54] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:03, 04:22](2024 MB) + +PASS -- COMPILE 's2s_intel' [12:12, 11:08] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:43, 07:40](3040 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:41, 02:38](3043 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:42, 01:32](2472 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:11, 16:42] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:16, 07:05](3341 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:02] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:24, 16:46](2032 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:22, 08:05](1274 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:20, 19:11](1937 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:10, 05:50] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:12, 25:49](1956 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:10, 10:26] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:24, 03:18](707 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:49, 03:09](1583 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:53, 03:13](1600 MB) +PASS -- TEST 'control_latlon_intel' [05:45, 03:08](1587 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:45, 03:09](1587 MB) +PASS -- TEST 'control_c48_intel' [13:41, 11:21](1707 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:29, 06:22](863 MB) +PASS -- TEST 'control_c192_intel' [14:05, 11:43](1728 MB) +PASS -- TEST 'control_c384_intel' [17:12, 13:11](1980 MB) +PASS -- TEST 'control_c384gdas_intel' [13:06, 07:57](1397 MB) +PASS -- TEST 'control_stochy_intel' [03:27, 01:36](655 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:29, 00:58](504 MB) +PASS -- TEST 'control_lndp_intel' [03:22, 01:33](656 MB) +PASS -- TEST 'control_iovr4_intel' [04:26, 02:25](656 MB) +PASS -- TEST 'control_iovr5_intel' [04:28, 02:25](650 MB) +PASS -- TEST 'control_p8_intel' [05:52, 03:36](1876 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:57, 03:00](1885 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:04, 03:32](1881 MB) +PASS -- TEST 'control_restart_p8_intel' [03:47, 02:01](1132 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:51, 03:33](1870 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:55, 02:01](1160 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:47, 03:37](1870 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:46, 03:26](1957 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:45, 06:28](1879 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:55, 03:55](1955 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:56, 03:06](1901 MB) +PASS -- TEST 'merra2_thompson_intel' [05:51, 03:20](1897 MB) +PASS -- TEST 'regional_control_intel' [07:38, 05:18](1088 MB) +PASS -- TEST 'regional_restart_intel' [04:37, 02:53](1079 MB) +PASS -- TEST 'regional_decomp_intel' [07:37, 05:32](1071 MB) +PASS -- TEST 'regional_2threads_intel' [05:37, 03:22](1092 MB) +PASS -- TEST 'regional_noquilt_intel' [07:37, 05:15](1391 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:40, 05:14](1089 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:35, 05:14](1095 MB) +PASS -- TEST 'regional_wofs_intel' [08:36, 06:46](1901 MB) + +PASS -- COMPILE 'rrfs_intel' [11:10, 09:45] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:41, 07:48](1108 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:06, 04:05](1241 MB) +PASS -- TEST 'rap_decomp_intel' [11:42, 08:10](1030 MB) +PASS -- TEST 'rap_2threads_intel' [09:44, 07:17](1165 MB) +PASS -- TEST 'rap_restart_intel' [05:47, 04:02](1090 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:44, 07:42](1098 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:44, 08:01](1034 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:47, 05:48](1124 MB) +PASS -- TEST 'hrrr_control_intel' [07:40, 03:56](1040 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:40, 04:03](1023 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:43, 03:37](1095 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:33, 02:08](995 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:51, 07:37](1097 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:33, 09:29](1974 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:32, 09:01](2058 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 09:38] +PASS -- TEST 'control_csawmg_intel' [08:41, 06:08](1018 MB) +PASS -- TEST 'control_ras_intel' [05:24, 03:13](741 MB) + +PASS -- COMPILE 'csawmg_gnu' [06:10, 04:18] +PASS -- TEST 'control_csawmg_gnu' [10:48, 08:36](734 MB) + +PASS -- COMPILE 'wam_intel' [11:11, 09:28] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:54, 11:05](1653 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 09:45] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:01, 02:45](1884 MB) +PASS -- TEST 'regional_control_faster_intel' [06:44, 04:51](1081 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 07:23] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:47, 02:10](1603 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:44, 02:06](1613 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:24, 02:58](827 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:24, 02:40](828 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:35, 04:10](1133 MB) +PASS -- TEST 'control_ras_debug_intel' [04:22, 02:41](838 MB) +PASS -- TEST 'control_diag_debug_intel' [04:50, 02:42](1678 MB) +PASS -- TEST 'control_debug_p8_intel' [04:43, 02:42](1892 MB) +PASS -- TEST 'regional_debug_intel' [18:39, 17:05](1099 MB) +PASS -- TEST 'rap_control_debug_intel' [06:26, 04:49](1217 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:29, 04:46](1214 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:28, 04:50](1208 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 04:55](1213 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:23, 04:53](1213 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:39, 05:10](1298 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:24, 04:53](1212 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:24, 04:57](1208 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:29, 04:59](1212 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:25, 04:54](1208 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:26, 04:47](1208 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:26, 04:51](1210 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:27, 08:10](1212 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:28, 04:57](1204 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:32, 05:41](1214 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:27, 04:50](1211 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:47, 08:24](1224 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:10, 04:20] +PASS -- TEST 'control_csawmg_debug_gnu' [04:49, 02:09](727 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:10, 04:40] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:53, 12:53](1681 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 09:38] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:09, 03:46](1125 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:42, 06:26](1046 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:38, 03:20](973 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:33, 06:05](1080 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:31, 03:07](955 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:36, 03:31](916 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:54, 04:49](1027 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:27, 01:51](929 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 09:31] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:00, 01:57](1181 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:48, 00:52](1112 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:46, 01:12](1093 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 09:31] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:43, 04:13](978 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:30] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 04:46](1091 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:26, 04:45](1088 MB) +PASS -- TEST 'conus13km_debug_intel' [15:48, 13:44](1213 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:53, 13:27](969 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 07:40](1157 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:46, 13:33](1308 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 04:17] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:26, 04:49](1135 MB) + +PASS -- COMPILE 'hafsw_intel' [13:11, 11:13] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:26, 04:50](721 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:39, 05:58](1094 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:30, 06:49](809 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:25, 13:02](847 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:28, 14:40](866 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:07, 05:23](488 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:29, 06:21](505 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:54, 02:36](374 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:29, 07:00](465 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:47, 03:33](513 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:51, 03:26](516 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:56, 04:02](573 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:30, 01:10](398 MB) +PASS -- TEST 'gnv1_nested_intel' [06:44, 03:51](1738 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:11, 04:53] ( 1465 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:59, 12:36](587 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:11, 10:44] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:11, 08:28](627 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:15, 08:31](727 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 11:14] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:52, 06:16](722 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:13, 10:21] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:27, 06:14](814 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:17, 06:17](799 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:57, 16:19](1210 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:26] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 02:45](1146 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:39](1117 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:38](1021 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:37](1038 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:40](1018 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 02:44](1137 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:42](1154 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:37](1031 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:24, 06:06](1075 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:24, 06:19](1051 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 02:46](1135 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:21, 03:53](2507 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:21, 03:55](2462 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:15] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:12](1087 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:30] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:44](1146 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:01] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:44](259 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:48](322 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:30](327 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:19] +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:36, 00:32](567 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:33, 00:16](458 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:12, 10:22] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:04, 03:38](1976 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:10, 10:00] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:52, 03:30](1946 MB) + +PASS -- COMPILE 'atml_intel' [12:10, 10:18] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:58, 04:13](1877 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:58, 04:12](1865 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:48, 02:20](1084 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:11, 05:59] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:59, 05:33](1884 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 10:23] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:52, 01:50](1921 MB) + +PASS -- COMPILE 'atmaero_intel' [11:10, 10:00] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:00, 04:03](3169 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:55, 04:46](3092 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:44, 04:46](3105 MB) PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:35] ( 882 warnings 6 remarks ) -PASS -- COMPILE 'atm_gnu' [06:12, 04:22] -PASS -- TEST 'control_c48_gnu' [11:40, 09:24](1494 MB) -PASS -- TEST 'control_stochy_gnu' [05:24, 03:25](481 MB) -PASS -- TEST 'control_ras_gnu' [06:25, 04:51](494 MB) -PASS -- TEST 'control_p8_gnu' [07:51, 05:12](1437 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:53, 05:04](1433 MB) -PASS -- TEST 'control_flake_gnu' [12:25, 10:24](524 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:11, 04:08] -PASS -- TEST 'rap_control_gnu' [13:36, 11:12](801 MB) -PASS -- TEST 'rap_decomp_gnu' [13:31, 11:24](806 MB) -PASS -- TEST 'rap_2threads_gnu' [12:34, 10:11](907 MB) -PASS -- TEST 'rap_restart_gnu' [07:41, 05:44](556 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [13:38, 11:16](827 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:34, 11:24](799 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:46, 08:23](561 MB) -PASS -- TEST 'hrrr_control_gnu' [07:35, 05:48](794 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:31, 05:45](778 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [07:30, 05:13](892 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:32, 05:46](829 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:26, 02:58](544 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:26, 02:54](632 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [12:44, 10:55](792 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:10, 06:28] -PASS -- TEST 'control_diag_debug_gnu' [03:43, 01:33](1247 MB) -PASS -- TEST 'regional_debug_gnu' [12:35, 10:34](702 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:21, 02:26](805 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:21, 02:21](793 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:21, 02:21](798 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:20, 02:25](802 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:31, 02:39](883 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:22, 03:45](797 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:21, 02:30](797 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:20, 02:26](796 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:20, 01:27](433 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:20, 01:35](428 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:37, 01:28](1409 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:21, 02:25](799 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:21, 02:35](802 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:33, 03:57](804 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:10, 02:31] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:12, 04:08] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:29, 09:33](683 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:35, 05:00](684 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:32, 08:49](728 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:28, 04:39](727 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:31, 05:09](681 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:37, 07:10](533 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:26, 02:39](518 MB) -PASS -- TEST 'conus13km_control_gnu' [04:49, 03:06](847 MB) -PASS -- TEST 'conus13km_2threads_gnu' [08:41, 06:21](854 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:41, 01:47](537 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:21] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:41, 05:49](705 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:10, 06:20] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:22, 02:17](687 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:22, 02:15](688 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:47, 06:07](850 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:43, 06:20](550 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [09:41, 07:30](854 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:40, 06:17](913 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:10, 06:25] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:24, 02:23](708 MB) - -PASS -- COMPILE 's2swa_gnu' [17:11, 15:34] - -PASS -- COMPILE 's2s_gnu' [17:11, 15:25] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [15:10, 12:13](1490 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [05:11, 03:10] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 15:48] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [23:58, 21:37](1452 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 03:01] - -PASS -- COMPILE 'datm_cdeps_gnu' [16:11, 14:46] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:18, 03:00](688 MB) - -PASS -- COMPILE 'atm_fbh_intel' [11:11, 09:28] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:28, 11:58](1066 MB) +PASS -- COMPILE 'atm_gnu' [06:11, 04:36] +PASS -- TEST 'control_c48_gnu' [11:43, 09:23](1507 MB) +PASS -- TEST 'control_stochy_gnu' [05:23, 03:36](488 MB) +PASS -- TEST 'control_ras_gnu' [06:24, 04:58](501 MB) +PASS -- TEST 'control_p8_gnu' [08:04, 05:12](1439 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [07:58, 05:08](1450 MB) +PASS -- TEST 'control_flake_gnu' [12:27, 10:31](534 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:10, 04:23] +PASS -- TEST 'rap_control_gnu' [13:34, 11:25](809 MB) +PASS -- TEST 'rap_decomp_gnu' [13:35, 11:35](807 MB) +PASS -- TEST 'rap_2threads_gnu' [12:47, 10:19](919 MB) +PASS -- TEST 'rap_restart_gnu' [12:44, 06:56](575 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:38, 11:17](838 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:38, 11:31](837 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [15:47, 09:33](574 MB) +PASS -- TEST 'hrrr_control_gnu' [07:38, 05:47](806 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:30, 05:49](796 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [07:30, 05:21](904 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:32, 05:51](808 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [05:29, 03:00](555 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:28, 02:56](648 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [13:44, 11:05](801 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:10, 06:58] +PASS -- TEST 'control_diag_debug_gnu' [03:48, 01:38](1265 MB) +PASS -- TEST 'regional_debug_gnu' [12:39, 10:45](738 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:25, 02:29](813 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:25, 02:22](813 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:23, 02:28](819 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:21, 02:33](819 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:41, 02:39](901 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:23, 03:48](817 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:22, 02:24](819 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:24, 02:27](810 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:23, 01:28](448 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:22, 01:37](450 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:41, 01:30](1427 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:25, 02:31](814 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:22, 02:43](820 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:36, 04:00](821 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:10, 02:58] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 04:09] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:47, 09:39](697 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:31, 05:09](689 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [11:33, 08:56](739 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:35, 04:42](738 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:28, 05:18](687 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:40, 07:16](549 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [08:27, 03:48](531 MB) +PASS -- TEST 'conus13km_control_gnu' [05:56, 03:07](863 MB) +PASS -- TEST 'conus13km_2threads_gnu' [12:47, 07:37](865 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [07:45, 02:47](543 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:12] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:39, 05:52](717 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:21] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:23, 02:21](706 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:22, 02:23](704 MB) +PASS -- TEST 'conus13km_debug_gnu' [10:26, 06:17](879 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:45, 06:17](571 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [09:46, 07:29](880 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:41, 06:11](947 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:23] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [05:24, 02:26](737 MB) + +PASS -- COMPILE 's2swa_gnu' [17:12, 15:30] + +PASS -- COMPILE 's2s_gnu' [16:11, 15:05] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [16:11, 12:51](1502 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:10, 03:03] + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 15:19] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [28:03, 25:30](1441 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:54] + +PASS -- COMPILE 'datm_cdeps_gnu' [16:12, 14:46] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:17, 03:01](689 MB) + +PASS -- COMPILE 'atm_fbh_intel' [11:12, 09:27] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:30, 11:44](1085 MB) SYNOPSIS: -Starting Date/Time: 20241014 00:56:56 -Ending Date/Time: 20241014 02:37:16 -Total Time: 01h:40m:35s +Starting Date/Time: 20241019 00:16:58 +Ending Date/Time: 20241019 02:02:41 +Total Time: 01h:46m:51s Compiles Completed: 59/59 Tests Completed: 246/246 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 4a43f5e864..644a1f611f 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7 +1,7 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -61e2d26b6b6977a6b2486ccc3f639470e651c095 +6bd7ea845b22492c06f61a14c242fce7da453a15 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b71196b0faf74f0fe59558796285424c915b6eaa FV3 (remotes/origin/rrfsv1-to-ufs/dev1) + 8e8df02db4fda01cb4cb63c13164e833c8280931 FV3 (remotes/origin/cubed_sphere_chunks) 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - d5842b617d0bdddd00fd8d45cf1cbf3c9c141258 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5334-gd5842b61) + 8c8b60498ec463ea2d3d5b79950c6b47f4af3e34 FV3/ccpp/framework (v0.1.0-1703-g8c8b604) + f3eeb3442775b7239d98e3d09acc6d4f1d42233e FV3/ccpp/physics (EP4-889-gf3eeb344) 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 @@ -39,377 +39,377 @@ 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-20241011 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_1248227 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_202469 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-r) - USE ROCOTO -PASS -- COMPILE 's2swa_32bit_intel' [11:55, 11:55] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:27, 07:44](2129 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:49, 17:49] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [14:02, 13:24](1993 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [14:52, 14:05](2292 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [07:37, 06:33](1326 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:53, 15:04](1902 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:30, 17:30] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [13:33, 13:04](1989 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:34, 07:34] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [22:48, 21:57](1969 MB) - -PASS -- COMPILE 's2swa_intel' [12:39, 12:39] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:52, 08:01](2197 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:58, 08:10](2202 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:04, 04:32](1973 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:58, 08:09](2221 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:29, 04:31](1742 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:50, 09:06](2545 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:33, 07:49](2194 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:30, 06:45](2103 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:49, 08:13](2199 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:19, 14:59](2969 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [07:05, 05:53](2909 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [13:09, 08:47](3819 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [11:50, 06:24](3630 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [05:44, 05:07](2140 MB) - -PASS -- COMPILE 's2sw_intel' [12:03, 12:03] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:55, 07:16](2006 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:24, 06:50](2071 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:24, 07:24] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [13:26, 12:43](2243 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:51, 06:50] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:28, 07:52](2035 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:53, 10:53] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:48, 04:03](2060 MB) - -PASS -- COMPILE 's2s_intel' [11:03, 11:03] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [06:43, 06:12](3032 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:05, 02:35](3023 MB) -PASS -- TEST 'cpld_restart_c48_intel' [01:48, 01:31](2484 MB) - -PASS -- COMPILE 's2swa_faster_intel' [12:17, 12:17] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [08:48, 08:02](2211 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:29, 20:29] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:27, 13:52](2074 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:45, 07:01](1378 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [15:54, 15:22](1990 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:32, 04:32] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:42, 23:00](2017 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [08:54, 08:54] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:25, 03:12](709 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:15, 02:51](1593 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:24, 02:58](1594 MB) -PASS -- TEST 'control_latlon_intel' [03:10, 02:50](1584 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:21, 02:50](1581 MB) -PASS -- TEST 'control_c48_intel' [10:43, 10:26](1713 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:12, 06:00](830 MB) -PASS -- TEST 'control_c192_intel' [10:45, 10:13](1775 MB) -PASS -- TEST 'control_c384_intel' [13:06, 12:04](2015 MB) -PASS -- TEST 'control_c384gdas_intel' [11:46, 10:20](1516 MB) -PASS -- TEST 'control_stochy_intel' [01:59, 01:48](663 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:23, 01:11](545 MB) -PASS -- TEST 'control_lndp_intel' [01:45, 01:36](667 MB) -PASS -- TEST 'control_iovr4_intel' [02:53, 02:42](665 MB) -PASS -- TEST 'control_iovr5_intel' [03:02, 02:50](658 MB) -PASS -- TEST 'control_p8_intel' [03:53, 03:15](1880 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:04, 03:26](1908 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:50, 03:13](1880 MB) -PASS -- TEST 'control_restart_p8_intel' [02:19, 01:53](1155 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:44, 03:13](1875 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:21, 01:51](1193 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:55, 03:17](1872 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:34, 02:59](1973 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:58, 05:38](1882 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:17, 03:37](1966 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:27, 02:46](1909 MB) -PASS -- TEST 'merra2_thompson_intel' [04:49, 04:01](1902 MB) -PASS -- TEST 'regional_control_intel' [04:58, 04:44](1199 MB) -PASS -- TEST 'regional_restart_intel' [03:03, 02:45](1170 MB) -PASS -- TEST 'regional_decomp_intel' [05:03, 04:49](1181 MB) -PASS -- TEST 'regional_2threads_intel' [03:12, 02:58](1153 MB) -PASS -- TEST 'regional_noquilt_intel' [04:55, 04:33](1520 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:01, 04:40](1195 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [04:53, 04:39](1204 MB) -PASS -- TEST 'regional_wofs_intel' [07:33, 07:18](2079 MB) - -PASS -- COMPILE 'rrfs_intel' [08:28, 08:28] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [07:17, 06:44](1198 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:01, 03:28](1355 MB) -PASS -- TEST 'rap_decomp_intel' [07:32, 06:59](1142 MB) -PASS -- TEST 'rap_2threads_intel' [07:10, 06:35](1369 MB) -PASS -- TEST 'rap_restart_intel' [04:17, 03:37](1159 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:35, 06:56](1207 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:53, 07:15](1156 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:57, 05:11](1190 MB) -PASS -- TEST 'hrrr_control_intel' [04:08, 03:29](1069 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:13, 03:32](1040 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [03:50, 03:11](1114 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:08, 01:52](1029 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:13, 06:32](1217 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:34, 08:24](1998 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:15, 08:04](2167 MB) - -PASS -- COMPILE 'csawmg_intel' [08:17, 08:16] -PASS -- TEST 'control_csawmg_intel' [06:38, 06:20](1051 MB) -PASS -- TEST 'control_ras_intel' [03:44, 03:31](848 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:08, 04:08] -PASS -- TEST 'control_csawmg_gnu' [07:19, 07:03](1071 MB) - -PASS -- COMPILE 'wam_intel' [09:13, 09:13] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [10:25, 10:06](1657 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:01, 09:01] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [02:59, 02:25](1898 MB) -PASS -- TEST 'regional_control_faster_intel' [05:19, 05:06](1189 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:16, 06:16] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:09, 01:53](1619 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:11, 01:52](1627 MB) -PASS -- TEST 'control_stochy_debug_intel' [02:37, 02:31](837 MB) -PASS -- TEST 'control_lndp_debug_intel' [02:20, 02:15](836 MB) -PASS -- TEST 'control_csawmg_debug_intel' [03:44, 03:32](1156 MB) -PASS -- TEST 'control_ras_debug_intel' [02:26, 02:19](852 MB) -PASS -- TEST 'control_diag_debug_intel' [02:40, 02:19](1696 MB) -PASS -- TEST 'control_debug_p8_intel' [02:38, 02:16](1918 MB) -PASS -- TEST 'regional_debug_intel' [15:09, 14:51](1140 MB) -PASS -- TEST 'rap_control_debug_intel' [04:15, 04:08](1226 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:09, 04:01](1213 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:26, 04:18](1226 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:14, 04:06](1215 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:14, 04:07](1227 MB) -PASS -- TEST 'rap_diag_debug_intel' [04:26, 04:12](1310 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:19, 04:12](1224 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:21, 04:14](1230 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:23, 04:12](1225 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:21, 04:09](1219 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:17, 04:09](1228 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:14, 04:06](1225 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:14, 07:06](1225 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:20, 04:13](1224 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:08, 05:00](1223 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:16, 04:03](1220 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:47, 07:06](1215 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 04:10] -PASS -- TEST 'control_csawmg_debug_gnu' [02:28, 02:08](1037 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:08, 04:08] ( 837 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:00, 08:00] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [03:51, 03:18](1237 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:12, 06:35](1166 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:50, 03:01](1026 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:04, 06:32](1281 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:57, 08:04](1023 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:46, 03:05](971 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:47, 05:05](1114 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [01:46, 01:39](943 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:34, 08:34] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:38, 02:15](1274 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:13, 00:52](1186 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:38, 01:20](1122 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:35, 08:35] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:07, 03:43](1077 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:56, 03:55] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:31, 04:19](1105 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:44, 04:37](1095 MB) -PASS -- TEST 'conus13km_debug_intel' [12:50, 12:24](1346 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [14:11, 13:42](998 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:14, 09:48](1248 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:47, 12:21](1414 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:32, 03:31] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:15, 04:04](1154 MB) - -PASS -- COMPILE 'hafsw_intel' [09:36, 09:36] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:13, 05:18](858 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:15, 04:57](1247 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:40, 06:29](922 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:03, 14:05](948 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:19, 16:09](987 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:24, 05:35](595 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:56, 07:41](603 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:23, 02:43](427 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:04, 08:37](548 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:01, 04:18](600 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:55, 04:07](597 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:06, 05:13](665 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:54, 01:26](444 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:00, 05:00] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:57, 12:07](638 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [10:24, 10:24] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:45, 16:58](734 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:01, 16:12](833 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:34, 10:33] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:37, 10:22](813 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:04, 10:04] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:07, 07:20](915 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:22, 07:31](899 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:08, 16:33](1348 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:06, 06:06] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:16, 03:10](1152 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:51, 01:45](1081 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:01, 02:55](1010 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:48, 02:41](1016 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:50, 02:45](1026 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:26, 02:19](1140 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:04, 03:00](1143 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:51, 02:47](1022 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:34, 04:58](1161 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:28, 04:54](1150 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:14, 02:11](1162 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:12, 03:07](2399 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:06, 03:01](2391 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:04, 04:04] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:32, 09:26](1074 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [05:29, 05:29] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:02, 02:58](1137 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:15, 01:15] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:06, 01:41](330 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:21, 01:04](569 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:45, 00:31](572 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:39, 09:39] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [03:57, 03:21](2029 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:54, 08:54] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [03:50, 03:10](1978 MB) - -PASS -- COMPILE 'atml_intel' [09:05, 09:04] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:15, 05:29](1892 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:09, 05:23](1887 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:19, 02:55](1135 MB) - -PASS -- COMPILE 'atml_debug_intel' [04:50, 04:50] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:30, 05:40](1931 MB) - -PASS -- COMPILE 'atmw_intel' [09:18, 09:18] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:31, 01:49](1939 MB) - -PASS -- COMPILE 'atmaero_intel' [08:33, 08:33] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:14, 04:40](2008 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:52, 05:19](1786 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:09, 05:41](1793 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:15, 04:15] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [17:43, 16:28](4546 MB) - -PASS -- COMPILE 'atm_gnu' [04:17, 04:16] -PASS -- TEST 'control_c48_gnu' [11:38, 11:11](1522 MB) -PASS -- TEST 'control_stochy_gnu' [02:39, 02:30](735 MB) -PASS -- TEST 'control_ras_gnu' [04:16, 04:09](723 MB) -PASS -- TEST 'control_p8_gnu' [05:05, 04:27](1744 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:58, 04:30](1700 MB) -PASS -- TEST 'control_flake_gnu' [04:50, 04:40](801 MB) - -PASS -- COMPILE 'rrfs_gnu' [04:18, 04:18] -PASS -- TEST 'rap_control_gnu' [10:11, 09:34](1075 MB) -PASS -- TEST 'rap_decomp_gnu' [10:13, 09:42](1069 MB) -PASS -- TEST 'rap_2threads_gnu' [09:50, 09:19](1126 MB) -PASS -- TEST 'rap_restart_gnu' [05:48, 05:14](878 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:48, 10:57](1071 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:06, 09:31](1071 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:42, 07:42](877 MB) -PASS -- TEST 'hrrr_control_gnu' [05:36, 04:57](1062 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:54, 05:23](1124 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:11, 04:33](1033 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:07, 05:16](1064 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:04, 02:48](876 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:37, 02:23](923 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:18, 10:23](1067 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [05:56, 05:56] -PASS -- TEST 'control_diag_debug_gnu' [01:38, 01:13](1617 MB) -PASS -- TEST 'regional_debug_gnu' [07:11, 06:55](1100 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:26, 02:14](1091 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:30, 02:18](1081 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:24, 02:11](1086 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:27, 02:14](1088 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:05, 02:48](1263 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:48, 03:28](1086 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:26, 02:16](1090 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:24, 02:09](1084 MB) -PASS -- TEST 'control_ras_debug_gnu' [01:29, 01:22](716 MB) -PASS -- TEST 'control_stochy_debug_gnu' [01:40, 01:32](716 MB) -PASS -- TEST 'control_debug_p8_gnu' [01:51, 01:29](1699 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:31, 02:11](1093 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [02:42, 02:29](1093 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:55, 04:10](1096 MB) - -PASS -- COMPILE 'wam_debug_gnu' [02:42, 02:41] -PASS -- TEST 'control_wam_debug_gnu' [05:48, 05:24](1549 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:36, 04:36] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:33, 07:52](958 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:49, 04:02](944 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:42, 07:10](982 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:27, 03:43](869 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:53, 04:05](940 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:18, 05:48](855 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:10, 02:01](853 MB) -PASS -- TEST 'conus13km_control_gnu' [03:11, 02:42](1256 MB) -PASS -- TEST 'conus13km_2threads_gnu' [01:31, 01:08](1163 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [01:54, 01:31](921 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:44, 08:44] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [04:52, 04:35](983 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:54, 06:54] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:24, 02:12](967 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:07, 01:59](963 MB) -PASS -- TEST 'conus13km_debug_gnu' [05:54, 05:27](1276 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:29, 06:02](948 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [03:43, 03:26](1183 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:07, 05:52](1344 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [06:52, 06:52] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:11, 02:05](995 MB) - -PASS -- COMPILE 's2swa_gnu' [17:00, 16:59] - -PASS -- COMPILE 's2s_gnu' [15:30, 15:30] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:42, 09:03](3066 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:05, 04:04] - -PASS -- COMPILE 's2sw_pdlib_gnu' [16:25, 16:25] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:24, 26:45](3040 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:17, 03:17] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:08, 12:27](3072 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [15:14, 15:14] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [06:20, 06:13](758 MB) - -PASS -- COMPILE 'atm_fbh_intel' [08:02, 08:02] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [16:32, 16:17](1067 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:16, 12:16] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:39, 07:54](2129 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:16, 17:16] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [14:13, 13:23](1989 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:15, 14:07](2325 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [07:29, 06:34](1343 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:08, 15:11](1897 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:30, 20:30] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [13:23, 13:04](1985 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:52, 06:51] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:23, 22:28](1969 MB) + +PASS -- COMPILE 's2swa_intel' [12:44, 12:44] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:45, 07:59](2203 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:50, 08:04](2210 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:25, 04:36](1971 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:19, 08:13](2224 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:32, 04:32](1730 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:31, 08:43](2544 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:47, 08:07](2202 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:29, 06:40](2093 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:53, 08:00](2201 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:22, 16:08](2972 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [07:38, 05:55](2906 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [14:30, 09:44](3823 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [11:33, 05:23](3627 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [06:03, 05:19](2124 MB) + +PASS -- COMPILE 's2sw_intel' [12:09, 12:09] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:53, 07:14](2006 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:37, 06:54](2059 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:49, 05:49] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [12:40, 11:52](2234 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:09, 05:09] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:14, 08:29](2057 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:09, 10:09] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:58, 04:06](2065 MB) + +PASS -- COMPILE 's2s_intel' [10:24, 10:23] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [06:23, 05:56](3039 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [02:32, 02:03](3034 MB) +PASS -- TEST 'cpld_restart_c48_intel' [01:41, 01:10](2481 MB) + +PASS -- COMPILE 's2swa_faster_intel' [12:31, 12:31] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [08:31, 07:44](2206 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [15:53, 15:52] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:21, 13:52](2079 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:39, 06:51](1401 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:03, 15:25](2000 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:34, 04:34] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:37, 23:56](2003 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:09, 09:08] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:08, 02:55](708 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:09, 02:47](1595 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:13, 02:46](1595 MB) +PASS -- TEST 'control_latlon_intel' [03:02, 02:44](1589 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:18, 02:48](1583 MB) +PASS -- TEST 'control_c48_intel' [11:08, 10:41](1707 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:06, 05:53](838 MB) +PASS -- TEST 'control_c192_intel' [10:50, 10:17](1778 MB) +PASS -- TEST 'control_c384_intel' [13:00, 11:53](2018 MB) +PASS -- TEST 'control_c384gdas_intel' [08:58, 07:31](1486 MB) +PASS -- TEST 'control_stochy_intel' [01:37, 01:27](659 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:10, 00:54](534 MB) +PASS -- TEST 'control_lndp_intel' [01:37, 01:23](670 MB) +PASS -- TEST 'control_iovr4_intel' [02:27, 02:12](654 MB) +PASS -- TEST 'control_iovr5_intel' [02:20, 02:09](657 MB) +PASS -- TEST 'control_p8_intel' [03:48, 03:09](1876 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:23, 02:41](1893 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:55, 03:12](1887 MB) +PASS -- TEST 'control_restart_p8_intel' [02:18, 01:48](1150 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:35, 03:07](1861 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:42, 02:03](1209 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:52, 03:13](1862 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:37, 02:58](1962 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:18, 05:51](1880 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:25, 03:42](1963 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:16, 02:42](1909 MB) +PASS -- TEST 'merra2_thompson_intel' [03:38, 02:58](1893 MB) +PASS -- TEST 'regional_control_intel' [04:51, 04:35](1191 MB) +PASS -- TEST 'regional_restart_intel' [02:52, 02:37](1167 MB) +PASS -- TEST 'regional_decomp_intel' [05:08, 04:53](1186 MB) +PASS -- TEST 'regional_2threads_intel' [03:22, 03:02](1150 MB) +PASS -- TEST 'regional_noquilt_intel' [04:49, 04:32](1519 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:02, 04:39](1194 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [04:52, 04:38](1180 MB) +PASS -- TEST 'regional_wofs_intel' [06:20, 06:05](2079 MB) + +PASS -- COMPILE 'rrfs_intel' [08:23, 08:23] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:12, 06:40](1195 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:08, 03:32](1354 MB) +PASS -- TEST 'rap_decomp_intel' [07:46, 07:13](1151 MB) +PASS -- TEST 'rap_2threads_intel' [07:02, 06:25](1340 MB) +PASS -- TEST 'rap_restart_intel' [03:59, 03:32](1131 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:23, 06:44](1179 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:31, 06:57](1155 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:47, 05:07](1195 MB) +PASS -- TEST 'hrrr_control_intel' [04:06, 03:28](1083 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:19, 03:41](1055 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:55, 04:15](1107 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:09, 01:54](1008 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:24, 06:37](1202 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:27, 08:18](1999 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:17, 08:08](2170 MB) + +PASS -- COMPILE 'csawmg_intel' [08:25, 08:25] +PASS -- TEST 'control_csawmg_intel' [06:17, 06:05](1043 MB) +PASS -- TEST 'control_ras_intel' [03:07, 02:55](825 MB) + +PASS -- COMPILE 'csawmg_gnu' [03:55, 03:55] +PASS -- TEST 'control_csawmg_gnu' [07:38, 07:24](1055 MB) + +PASS -- COMPILE 'wam_intel' [08:32, 08:32] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [10:05, 09:41](1659 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [08:36, 08:35] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:09, 02:34](1893 MB) +PASS -- TEST 'regional_control_faster_intel' [06:00, 05:47](1183 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:22, 06:21] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:10, 01:53](1628 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:13, 01:51](1611 MB) +PASS -- TEST 'control_stochy_debug_intel' [02:38, 02:32](838 MB) +PASS -- TEST 'control_lndp_debug_intel' [02:28, 02:15](842 MB) +PASS -- TEST 'control_csawmg_debug_intel' [03:53, 03:38](1150 MB) +PASS -- TEST 'control_ras_debug_intel' [02:31, 02:21](848 MB) +PASS -- TEST 'control_diag_debug_intel' [02:43, 02:17](1690 MB) +PASS -- TEST 'control_debug_p8_intel' [02:43, 02:14](1908 MB) +PASS -- TEST 'regional_debug_intel' [15:36, 15:15](1141 MB) +PASS -- TEST 'rap_control_debug_intel' [04:15, 04:06](1217 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:17, 04:05](1220 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:24, 04:11](1227 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:23, 04:10](1224 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:14, 04:06](1225 MB) +PASS -- TEST 'rap_diag_debug_intel' [04:34, 04:17](1315 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:29, 04:17](1210 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:29, 04:17](1224 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:11, 04:04](1232 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:24, 04:11](1214 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:11, 04:02](1225 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:14, 04:07](1228 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:07, 07:00](1218 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:12, 04:05](1212 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:13, 05:03](1219 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:16, 04:05](1233 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:50, 07:08](1230 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:31, 04:30] +PASS -- TEST 'control_csawmg_debug_gnu' [02:57, 02:39](1039 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:47, 03:47] ( 837 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:16, 08:15] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:28, 03:54](1213 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:51, 06:20](1154 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:53, 03:12](1019 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:38, 06:06](1275 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:29, 06:40](1029 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:10, 03:31](999 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:30, 04:51](1127 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:10, 01:51](962 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:14, 08:14] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:06, 01:42](1293 MB) +PASS -- TEST 'conus13km_2threads_intel' [00:58, 00:44](1192 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:25, 01:05](1136 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:32, 09:25] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:04, 03:46](1067 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:42, 03:42] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:16, 04:11](1105 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:12, 04:06](1101 MB) +PASS -- TEST 'conus13km_debug_intel' [12:31, 12:08](1341 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [12:31, 12:07](991 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [07:51, 07:29](1247 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:26, 12:05](1437 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:04, 04:04] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:51, 04:44](1169 MB) + +PASS -- COMPILE 'hafsw_intel' [09:47, 09:46] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:09, 05:15](857 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:23, 05:11](1259 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:53, 06:48](919 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:44, 14:44](962 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:53, 16:38](970 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:34, 05:56](594 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:58, 07:51](604 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:31, 02:54](428 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:15, 08:26](544 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:51, 04:13](598 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:48, 04:03](602 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:07, 05:13](661 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:31, 01:13](449 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:54, 05:54] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:57, 12:10](639 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:31, 11:31] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:03, 16:13](735 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:13, 16:18](838 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:00, 10:00] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:06, 10:41](804 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:19, 10:19] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:01, 07:09](918 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:07, 07:13](898 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:21, 16:43](1341 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:05, 07:05] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:13, 03:06](1147 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:50, 01:44](1107 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:16, 02:10](1013 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:47, 02:42](1011 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:12, 02:07](1019 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:07, 03:03](1140 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:51, 02:46](1153 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:03, 02:59](1014 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:56, 05:13](1171 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:45, 05:00](1147 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:19, 02:16](1132 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:15, 03:08](2447 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:10, 04:06](2426 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [02:59, 02:59] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:21, 05:12](1075 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [05:22, 05:21] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:04, 02:59](1124 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [00:46, 00:45] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:16, 00:57](329 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:13, 01:00](572 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:55, 00:38](569 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:11, 11:11] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:12, 03:24](2017 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:21, 11:21] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:23, 03:40](1992 MB) + +PASS -- COMPILE 'atml_intel' [11:25, 11:24] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:34, 05:37](1895 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:38, 05:41](1891 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:51, 03:11](1141 MB) + +PASS -- COMPILE 'atml_debug_intel' [04:45, 04:45] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:29, 05:11](1928 MB) + +PASS -- COMPILE 'atmw_intel' [09:40, 09:40] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:33, 01:45](1938 MB) + +PASS -- COMPILE 'atmaero_intel' [08:43, 08:43] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:37, 03:56](2006 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:18, 04:34](1773 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:17, 04:47](1790 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [03:34, 03:33] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [18:50, 17:28](4511 MB) + +PASS -- COMPILE 'atm_gnu' [04:16, 04:16] +PASS -- TEST 'control_c48_gnu' [09:50, 09:13](1498 MB) +PASS -- TEST 'control_stochy_gnu' [02:43, 02:32](718 MB) +PASS -- TEST 'control_ras_gnu' [04:16, 04:01](722 MB) +PASS -- TEST 'control_p8_gnu' [05:10, 04:25](1746 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:57, 04:20](1717 MB) +PASS -- TEST 'control_flake_gnu' [04:57, 04:42](806 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:14, 04:14] +PASS -- TEST 'rap_control_gnu' [08:40, 08:04](1075 MB) +PASS -- TEST 'rap_decomp_gnu' [08:42, 08:06](1072 MB) +PASS -- TEST 'rap_2threads_gnu' [08:11, 07:34](1133 MB) +PASS -- TEST 'rap_restart_gnu' [05:11, 04:22](879 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [08:57, 08:18](1072 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:57, 08:17](1071 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:35, 05:54](877 MB) +PASS -- TEST 'hrrr_control_gnu' [04:54, 04:13](1060 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [04:55, 04:21](1128 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:22, 03:42](1033 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:00, 04:22](1064 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [02:37, 02:17](876 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:36, 02:20](925 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [08:32, 07:46](1069 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:16, 06:15] +PASS -- TEST 'control_diag_debug_gnu' [01:51, 01:23](1620 MB) +PASS -- TEST 'regional_debug_gnu' [07:07, 06:46](1129 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:19, 02:10](1092 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:13, 02:05](1084 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:16, 02:06](1087 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:30, 02:17](1090 MB) +PASS -- TEST 'rap_diag_debug_gnu' [02:40, 02:23](1265 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:28, 03:19](1087 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:23, 02:10](1091 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:21, 02:11](1087 MB) +PASS -- TEST 'control_ras_debug_gnu' [01:22, 01:14](719 MB) +PASS -- TEST 'control_stochy_debug_gnu' [01:46, 01:36](720 MB) +PASS -- TEST 'control_debug_p8_gnu' [01:46, 01:18](1702 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:19, 02:10](1092 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [02:28, 02:17](1093 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:16, 03:37](1091 MB) + +PASS -- COMPILE 'wam_debug_gnu' [02:25, 02:25] +PASS -- TEST 'control_wam_debug_gnu' [06:20, 05:51](1557 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:14, 04:14] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:11, 07:37](954 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:54, 04:12](945 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:27, 06:53](958 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:24, 03:35](872 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:55, 04:12](940 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:44, 06:01](852 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:42, 02:15](853 MB) +PASS -- TEST 'conus13km_control_gnu' [03:10, 02:37](1256 MB) +PASS -- TEST 'conus13km_2threads_gnu' [01:57, 01:24](1169 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:15, 01:39](924 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:51, 09:50] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:14, 04:49](983 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [05:54, 05:54] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:19, 02:06](966 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:15, 02:02](956 MB) +PASS -- TEST 'conus13km_debug_gnu' [06:16, 05:31](1271 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [06:31, 05:56](953 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [03:50, 03:24](1183 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [05:54, 05:23](1343 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:19, 07:18] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:23, 02:13](988 MB) + +PASS -- COMPILE 's2swa_gnu' [17:45, 17:45] + +PASS -- COMPILE 's2s_gnu' [16:38, 16:38] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:59, 09:13](3046 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [05:06, 05:06] + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:08, 17:08] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:06, 26:15](3063 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:16, 03:16] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:26, 12:35](2895 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [15:17, 15:16] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:39, 03:31](765 MB) + +PASS -- COMPILE 'atm_fbh_intel' [08:22, 08:21] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:24, 10:10](1084 MB) SYNOPSIS: -Starting Date/Time: 20241013 19:55:47 -Ending Date/Time: 20241014 00:21:41 -Total Time: 04h:26m:24s +Starting Date/Time: 20241018 18:47:06 +Ending Date/Time: 20241018 23:18:34 +Total Time: 04h:32m:06s Compiles Completed: 58/58 Tests Completed: 245/245 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 9a7e5e28a7..b72ba6607c 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -61e2d26b6b6977a6b2486ccc3f639470e651c095 +6bd7ea845b22492c06f61a14c242fce7da453a15 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b71196b0faf74f0fe59558796285424c915b6eaa FV3 (remotes/origin/rrfsv1-to-ufs/dev1) + 8e8df02db4fda01cb4cb63c13164e833c8280931 FV3 (remotes/origin/cubed_sphere_chunks) 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - d5842b617d0bdddd00fd8d45cf1cbf3c9c141258 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5334-gd5842b61) + 8c8b60498ec463ea2d3d5b79950c6b47f4af3e34 FV3/ccpp/framework (v0.1.0-1703-g8c8b604) + f3eeb3442775b7239d98e3d09acc6d4f1d42233e FV3/ccpp/physics (EP4-889-gf3eeb344) 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 @@ -39,290 +39,290 @@ 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-20241011 -COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2284266 +COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_432500 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [18:10, 16:20] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:25, 14:25](2083 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:10, 22:06] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [21:34, 18:11](1948 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:08, 19:01](2130 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:04, 08:55](1222 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:37, 20:24](1879 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:11, 23:41] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:38, 17:44](1944 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:10, 08:10] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [31:33, 28:34](1935 MB) - -PASS -- COMPILE 's2swa_intel' [19:10, 17:33] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [17:34, 14:40](2132 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:44, 14:33](2132 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:43, 08:02](1797 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [17:34, 14:32](2164 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:43, 08:05](1694 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [16:33, 13:16](2419 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:34, 14:19](2132 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [15:27, 12:19](2043 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:42, 14:38](2139 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:26, 16:12](2705 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:52, 08:43](2701 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:18, 10:58](3683 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:55, 06:49](3503 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:23, 05:59](2090 MB) - -PASS -- COMPILE 's2sw_intel' [17:10, 15:45] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [16:06, 13:48](1974 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:15, 08:04](2034 MB) - -PASS -- COMPILE 's2swa_debug_intel' [11:10, 09:29] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [16:18, 13:34](2169 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:10, 07:58] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:08, 09:25](1993 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:10, 14:46] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:16, 04:52](2037 MB) - -PASS -- COMPILE 's2s_intel' [16:10, 14:17] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:56, 08:39](3026 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:55, 03:28](3023 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:53, 02:12](2490 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:10, 16:36] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [17:17, 15:02](2143 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 20:00] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:17, 18:14](2008 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:27, 08:57](1256 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:05, 20:31](1930 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 07:27] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:09, 29:50](1967 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:10, 13:03] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:27, 03:44](685 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:51, 03:32](1572 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:55, 03:37](1572 MB) -PASS -- TEST 'control_latlon_intel' [05:47, 03:32](1579 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:56, 03:34](1567 MB) -PASS -- TEST 'control_c48_intel' [16:56, 14:42](1701 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:34, 08:13](838 MB) -PASS -- TEST 'control_c192_intel' [15:00, 13:09](1742 MB) -PASS -- TEST 'control_c384_intel' [19:55, 16:39](1981 MB) -PASS -- TEST 'control_c384gdas_intel' [13:38, 10:00](1331 MB) -PASS -- TEST 'control_stochy_intel' [03:25, 01:50](644 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:43, 01:06](473 MB) -PASS -- TEST 'control_lndp_intel' [03:25, 01:45](641 MB) -PASS -- TEST 'control_iovr4_intel' [04:26, 02:45](636 MB) -PASS -- TEST 'control_iovr5_intel' [04:26, 02:45](642 MB) -PASS -- TEST 'control_p8_intel' [07:09, 04:26](1865 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:07, 03:41](1877 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:34, 04:04](1868 MB) -PASS -- TEST 'control_restart_p8_intel' [05:09, 02:24](1083 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:11, 04:01](1849 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:14, 02:17](1133 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:15, 04:11](1844 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:21, 04:20](1946 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:50, 07:15](1864 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:27, 04:56](1932 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:23, 03:33](1885 MB) -PASS -- TEST 'merra2_thompson_intel' [06:44, 03:50](1878 MB) -PASS -- TEST 'regional_control_intel' [08:43, 06:31](1077 MB) -PASS -- TEST 'regional_restart_intel' [05:36, 03:37](1070 MB) -PASS -- TEST 'regional_decomp_intel' [08:36, 06:56](1075 MB) -PASS -- TEST 'regional_2threads_intel' [06:35, 04:48](1065 MB) -PASS -- TEST 'regional_noquilt_intel' [08:41, 06:28](1377 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:41, 06:33](1076 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:33, 06:35](1076 MB) -PASS -- TEST 'regional_wofs_intel' [09:32, 08:00](1895 MB) - -PASS -- COMPILE 'rrfs_intel' [14:10, 12:38] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [11:23, 08:30](1056 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:57, 05:14](1244 MB) -PASS -- TEST 'rap_decomp_intel' [11:04, 08:45](1013 MB) -PASS -- TEST 'rap_2threads_intel' [11:01, 08:39](1152 MB) -PASS -- TEST 'rap_restart_intel' [07:31, 04:23](1029 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:56, 08:24](1046 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:55, 08:42](1008 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:35, 06:18](1067 MB) -PASS -- TEST 'hrrr_control_intel' [07:08, 04:22](1022 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:54, 04:25](1015 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:18, 04:13](1083 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:46, 02:21](945 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:21, 08:21](1036 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:23, 09:51](1977 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:22, 09:32](2012 MB) - -PASS -- COMPILE 'csawmg_intel' [14:10, 12:14] -PASS -- TEST 'control_csawmg_intel' [08:31, 06:39](1013 MB) -PASS -- TEST 'control_ras_intel' [05:22, 03:26](721 MB) - -PASS -- COMPILE 'wam_intel' [15:10, 13:24] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:42, 12:46](1641 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:10, 12:47] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:22, 03:15](1881 MB) -PASS -- TEST 'regional_control_faster_intel' [08:36, 06:18](1081 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:11, 09:55] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:39, 02:24](1601 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:44, 02:16](1597 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:28, 03:02](813 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:23, 02:48](817 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:37, 04:31](1125 MB) -PASS -- TEST 'control_ras_debug_intel' [04:22, 02:59](825 MB) -PASS -- TEST 'control_diag_debug_intel' [04:41, 02:49](1672 MB) -PASS -- TEST 'control_debug_p8_intel' [04:42, 02:48](1893 MB) -PASS -- TEST 'regional_debug_intel' [19:38, 17:18](1091 MB) -PASS -- TEST 'rap_control_debug_intel' [06:23, 05:00](1202 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:24, 04:52](1192 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:25, 04:55](1205 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 04:59](1204 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 04:57](1201 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:30, 05:14](1283 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:27, 05:14](1202 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:20, 05:05](1198 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:26, 05:06](1204 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:24, 04:59](1201 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:52](1201 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:21, 04:59](1199 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:22, 07:57](1200 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 05:00](1196 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:23, 05:58](1204 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:20, 05:06](1202 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:23, 08:25](1203 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:10, 06:21] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:40, 13:12](1676 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:11, 11:59] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:56, 04:57](1126 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:54, 07:12](996 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:35, 03:48](923 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:51, 07:26](1068 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:00, 03:43](934 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:37, 03:57](891 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:29, 05:24](972 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:29, 02:05](871 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:11, 13:17] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:53, 02:37](1163 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:50, 01:12](1109 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:48, 01:31](1061 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:20] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:42, 04:34](967 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 06:03] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:46](1081 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:21, 04:52](1071 MB) -PASS -- TEST 'conus13km_debug_intel' [15:45, 13:50](1227 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:44, 13:55](926 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 08:09](1167 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:47, 14:04](1290 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:10, 06:39] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:26, 05:06](1133 MB) - -PASS -- COMPILE 'hafsw_intel' [16:10, 14:34] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:14, 05:57](739 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:27, 06:27](1112 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:25, 07:30](814 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [27:11, 24:45](854 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [31:16, 28:28](866 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:00, 07:08](488 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:28, 08:41](503 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:55, 03:33](371 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:28, 09:37](486 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:56, 04:43](523 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:47, 04:29](522 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:49, 05:39](572 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:34](396 MB) -PASS -- TEST 'gnv1_nested_intel' [08:12, 04:19](1724 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:10, 06:38] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:06, 13:21](583 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:11, 14:25] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:13, 12:40](659 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:11, 13:09](681 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 14:22] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:25, 08:43](701 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:10, 13:45] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:19, 07:35](816 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:15, 07:36](793 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:56, 16:21](1204 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:10, 08:12] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:58](1151 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:35](1110 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:51](1015 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:56](1013 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:54](1023 MB) +PASS -- COMPILE 's2swa_32bit_intel' [18:10, 16:31] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [28:53, 14:27](2076 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:10, 21:16] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [27:48, 18:08](1948 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:16, 19:05](2134 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:09, 08:59](1203 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [30:47, 20:24](1874 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:10, 21:23] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [26:50, 17:40](1939 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:10, 08:08] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [30:45, 28:05](1929 MB) + +PASS -- COMPILE 's2swa_intel' [18:10, 17:01] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [28:44, 14:31](2135 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:58, 14:36](2144 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:47, 07:57](1795 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [28:44, 14:13](2161 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:47, 08:02](1697 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [16:38, 13:18](2422 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [28:44, 14:25](2123 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:45, 12:19](2037 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:57, 14:38](2133 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [24:28, 16:04](2700 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:00, 08:27](2708 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [29:25, 10:59](3718 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:46, 06:46](3493 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [20:44, 06:03](2105 MB) + +PASS -- COMPILE 's2sw_intel' [17:10, 15:59] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [17:01, 14:01](1978 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:15, 08:04](2036 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:10, 08:07] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:23, 13:37](2175 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:10, 08:03] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:05, 09:19](1988 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:10, 14:08] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:13, 04:48](2020 MB) + +PASS -- COMPILE 's2s_intel' [17:10, 15:37] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [12:00, 08:42](3027 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [07:00, 03:36](3021 MB) +PASS -- TEST 'cpld_restart_c48_intel' [10:11, 02:15](2470 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:10, 17:32] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [19:38, 14:41](2144 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:10, 19:55] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:13, 18:20](2010 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:16, 09:01](1236 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:19, 20:28](1930 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 07:15] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:21, 29:51](1970 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:10, 14:00] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:27, 03:45](688 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:40, 03:33](1572 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:44, 03:35](1577 MB) +PASS -- TEST 'control_latlon_intel' [08:44, 03:33](1561 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:45, 03:34](1571 MB) +PASS -- TEST 'control_c48_intel' [16:47, 14:43](1705 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:34, 08:15](837 MB) +PASS -- TEST 'control_c192_intel' [18:55, 13:11](1744 MB) +PASS -- TEST 'control_c384_intel' [22:52, 16:36](1987 MB) +PASS -- TEST 'control_c384gdas_intel' [17:39, 09:56](1330 MB) +PASS -- TEST 'control_stochy_intel' [08:24, 01:50](637 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:37, 01:03](472 MB) +PASS -- TEST 'control_lndp_intel' [08:25, 01:43](648 MB) +PASS -- TEST 'control_iovr4_intel' [07:24, 02:50](633 MB) +PASS -- TEST 'control_iovr5_intel' [09:25, 02:43](639 MB) +PASS -- TEST 'control_p8_intel' [11:02, 04:15](1864 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [08:19, 03:33](1878 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:33, 04:09](1863 MB) +PASS -- TEST 'control_restart_p8_intel' [05:14, 02:20](1082 MB) +PASS -- TEST 'control_noqr_p8_intel' [08:15, 04:05](1853 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:20, 02:17](1120 MB) +PASS -- TEST 'control_decomp_p8_intel' [08:01, 04:09](1855 MB) +PASS -- TEST 'control_2threads_p8_intel' [08:04, 04:28](1944 MB) +PASS -- TEST 'control_p8_lndp_intel' [10:43, 07:15](1864 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:28, 04:55](1935 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:24, 03:33](1886 MB) +PASS -- TEST 'merra2_thompson_intel' [06:33, 03:55](1872 MB) +PASS -- TEST 'regional_control_intel' [08:34, 06:35](1071 MB) +PASS -- TEST 'regional_restart_intel' [05:37, 03:36](1065 MB) +PASS -- TEST 'regional_decomp_intel' [08:31, 06:58](1071 MB) +PASS -- TEST 'regional_2threads_intel' [06:46, 04:46](1067 MB) +PASS -- TEST 'regional_noquilt_intel' [08:41, 06:30](1376 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:45, 06:30](1076 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:38, 06:32](1080 MB) +PASS -- TEST 'regional_wofs_intel' [09:41, 07:59](1892 MB) + +PASS -- COMPILE 'rrfs_intel' [15:11, 12:46] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:21, 08:29](1052 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:01, 05:15](1250 MB) +PASS -- TEST 'rap_decomp_intel' [10:55, 08:46](1016 MB) +PASS -- TEST 'rap_2threads_intel' [11:18, 08:35](1152 MB) +PASS -- TEST 'rap_restart_intel' [08:44, 04:24](1033 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:00, 08:23](1044 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:58, 08:43](1018 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:47, 06:21](1064 MB) +PASS -- TEST 'hrrr_control_intel' [07:20, 04:23](1016 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:54, 04:27](1011 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:25, 04:15](1082 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:40, 02:22](944 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:21, 08:21](1034 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:29, 09:52](1977 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:27, 09:33](2021 MB) + +PASS -- COMPILE 'csawmg_intel' [15:11, 12:22] +PASS -- TEST 'control_csawmg_intel' [08:32, 06:38](1016 MB) +PASS -- TEST 'control_ras_intel' [05:19, 03:29](714 MB) + +PASS -- COMPILE 'wam_intel' [15:10, 12:41] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:46, 12:47](1651 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:10, 12:53] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:27, 03:19](1879 MB) +PASS -- TEST 'regional_control_faster_intel' [08:34, 06:21](1074 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:10, 09:16] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:47, 02:46](1602 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:51, 02:26](1600 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:23, 03:06](815 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:23, 02:46](808 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:40, 04:28](1128 MB) +PASS -- TEST 'control_ras_debug_intel' [05:23, 03:02](823 MB) +PASS -- TEST 'control_diag_debug_intel' [05:47, 02:52](1671 MB) +PASS -- TEST 'control_debug_p8_intel' [05:50, 02:46](1883 MB) +PASS -- TEST 'regional_debug_intel' [19:45, 17:35](1122 MB) +PASS -- TEST 'rap_control_debug_intel' [07:24, 04:59](1201 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:28, 04:59](1193 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:29, 04:54](1203 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:22, 05:05](1209 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:27, 04:57](1203 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:34, 05:15](1288 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:25, 05:01](1203 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:23, 05:08](1194 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:23, 04:55](1204 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 05:07](1198 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:25, 04:51](1193 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:26, 05:09](1206 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:24, 08:12](1202 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:26, 04:52](1200 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:27, 05:58](1209 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:27, 05:06](1202 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:28, 08:40](1200 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:11, 06:13] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:51, 13:14](1681 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:11, 12:28] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:57, 05:09](1107 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:08, 07:11](993 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:21, 03:56](918 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:58, 07:25](1069 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:34, 03:43](938 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:09, 03:56](898 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:26, 05:25](974 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:32, 02:03](869 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:11, 12:34] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:57, 02:39](1164 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:48, 01:15](1103 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:31](1057 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:11, 12:31] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:45, 04:42](946 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 06:39] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:26, 04:59](1082 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:27, 04:45](1080 MB) +PASS -- TEST 'conus13km_debug_intel' [18:58, 14:00](1231 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [18:58, 13:59](927 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:42, 07:56](1161 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:59, 14:00](1291 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:11, 06:39] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:27, 04:53](1136 MB) + +PASS -- COMPILE 'hafsw_intel' [16:11, 14:51] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:20, 06:05](739 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:27, 06:41](1116 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:28, 07:33](824 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [27:20, 24:17](853 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [31:33, 28:46](870 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:03, 07:10](494 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:29, 08:35](510 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:57, 03:34](369 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:27, 10:28](473 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:55, 04:45](520 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:53, 04:34](522 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:59, 05:42](574 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:32, 01:33](402 MB) +PASS -- TEST 'gnv1_nested_intel' [08:12, 04:24](1695 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:11, 06:34] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:09, 13:20](578 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:11, 15:09] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:05, 13:02](658 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:09, 13:09](721 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 15:15] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:47, 08:42](705 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:11, 14:03] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:14, 07:39](813 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:16, 07:38](790 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:58, 16:25](1201 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [11:11, 07:53] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 03:01](1156 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:19, 01:55](1098 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:51](1018 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:56](1023 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:55](1019 MB) PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 03:00](1154 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:16, 03:00](1158 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:16, 02:50](1014 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:08, 06:27](1012 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:08, 06:20](1005 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:58](1142 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:18, 04:18](2459 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 04:21](2398 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 03:02](1148 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:52](1016 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:08, 06:29](1026 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:16, 06:27](1001 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 03:01](1162 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:20, 04:19](2452 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:19, 04:22](2384 MB) -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 04:40] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 06:29](1079 MB) +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:11, 05:06] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 06:28](1082 MB) -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:36] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:56](1157 MB) +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 07:47] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:16, 02:59](1149 MB) -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:19] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:31, 01:01](252 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:56](325 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:36](324 MB) +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:38] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:33, 01:02](252 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:26, 00:58](323 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:29, 00:34](325 MB) -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:39] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:30, 00:28](565 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:35, 00:22](444 MB) +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:34] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [03:31, 00:36](563 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:35, 00:25](447 MB) -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:10, 13:45] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:05, 04:14](1965 MB) +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:11, 13:53] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:09, 04:12](1961 MB) -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:10, 12:47] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:02, 04:10](1938 MB) +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:10, 13:43] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:58, 03:59](1941 MB) -PASS -- COMPILE 'atml_intel' [14:10, 12:57] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:29, 05:00](1861 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:24, 04:57](1860 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:54, 02:55](1054 MB) +PASS -- COMPILE 'atml_intel' [16:11, 14:14] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:31, 05:03](1860 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:29, 05:02](1870 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:54, 02:49](1065 MB) -PASS -- COMPILE 'atml_debug_intel' [09:10, 07:11] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:21, 05:56](1898 MB) +PASS -- COMPILE 'atml_debug_intel' [09:11, 07:15] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:25, 05:56](1898 MB) -PASS -- COMPILE 'atmw_intel' [15:10, 13:49] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:16, 02:12](1897 MB) +PASS -- COMPILE 'atmw_intel' [16:11, 14:10] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:16, 02:12](1903 MB) -PASS -- COMPILE 'atmaero_intel' [14:11, 12:52] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:12, 04:36](1974 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:13, 05:22](1750 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:02, 05:28](1759 MB) +PASS -- COMPILE 'atmaero_intel' [15:11, 14:08] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:08, 04:55](1972 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:12, 05:22](1758 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:59, 05:27](1757 MB) -PASS -- COMPILE 'atmaq_debug_intel' [08:10, 06:34] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:56, 20:51](4492 MB) +PASS -- COMPILE 'atmaq_debug_intel' [08:11, 06:24] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [24:13, 20:48](4486 MB) -PASS -- COMPILE 'atm_fbh_intel' [13:10, 11:57] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:29, 14:04](1080 MB) +PASS -- COMPILE 'atm_fbh_intel' [14:12, 12:28] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:31, 13:59](1079 MB) SYNOPSIS: -Starting Date/Time: 20241013 19:56:25 -Ending Date/Time: 20241013 21:37:56 -Total Time: 01h:42m:06s +Starting Date/Time: 20241018 19:05:16 +Ending Date/Time: 20241018 20:53:50 +Total Time: 01h:49m:17s Compiles Completed: 43/43 Tests Completed: 188/188 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index aa48425d25..80b3a1f35e 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -f814ef71e560a00a30454e00ef05ccf4d20f45b3 +1462344cc1bf03e701cfe58b3e74a9e57762b3b6 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b71196b0faf74f0fe59558796285424c915b6eaa FV3 (remotes/origin/rrfsv1-to-ufs/dev1) + 8e8df02db4fda01cb4cb63c13164e833c8280931 FV3 (remotes/origin/cubed_sphere_chunks) 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - d5842b617d0bdddd00fd8d45cf1cbf3c9c141258 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5334-gd5842b61) + 8c8b60498ec463ea2d3d5b79950c6b47f4af3e34 FV3/ccpp/framework (v0.1.0-1703-g8c8b604) + f3eeb3442775b7239d98e3d09acc6d4f1d42233e FV3/ccpp/physics (EP4-889-gf3eeb344) 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 @@ -39,238 +39,238 @@ 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-20241011 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_125035 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112875 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:40, 11:34] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:34, 02:30](3089 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:40, 11:58] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [10:34, 02:44](1819 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [51:18, 03:20](1835 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [51:11, 02:53](972 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [10:35, 03:15](1790 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:40, 12:13] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [10:34, 02:02](1808 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:31, 05:15] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [16:43, 02:58](1832 MB) - -PASS -- COMPILE 's2swa_intel' [13:39, 11:23] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [10:35, 02:50](3117 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:35, 03:20](3114 MB) -PASS -- TEST 'cpld_restart_p8_intel' [58:53, 02:59](3048 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:35, 02:52](3135 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [58:53, 02:55](3061 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:35, 02:31](3355 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:35, 03:00](3114 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:36, 02:05](3059 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:35, 03:26](3120 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [10:44, 07:06](4109 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [49:35, 05:40](4256 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:35, 02:44](3093 MB) - -PASS -- COMPILE 's2sw_intel' [12:38, 10:59] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [11:36, 02:40](1821 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:36, 03:01](1879 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:38, 10:45] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:35, 03:01](1883 MB) - -PASS -- COMPILE 's2s_intel' [12:38, 10:22] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [11:34, 01:51](2863 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [11:34, 02:26](2865 MB) -PASS -- TEST 'cpld_restart_c48_intel' [06:32, 02:15](2280 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:45, 16:20] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [05:28, 03:32](3121 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:40, 11:19] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [10:34, 02:33](1825 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [51:24, 02:14](998 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [51:21, 02:25](1800 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:06] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [09:22, 02:43](1855 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:24, 08:49] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [01:11, 02:24](567 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [01:11, 02:18](1460 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [01:11, 02:11](1471 MB) -PASS -- TEST 'control_latlon_intel' [01:11, 02:10](1472 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [01:11, 02:14](1468 MB) -PASS -- TEST 'control_c48_intel' [01:10, 02:28](1567 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [01:10, 01:59](692 MB) -PASS -- TEST 'control_c192_intel' [01:11, 01:56](1590 MB) -PASS -- TEST 'control_c384_intel' [01:15, 02:55](1871 MB) -PASS -- TEST 'control_c384gdas_intel' [01:11, 03:31](1067 MB) -PASS -- TEST 'control_stochy_intel' [01:05, 01:33](526 MB) -PASS -- TEST 'control_stochy_restart_intel' [57:28, 02:06](331 MB) -PASS -- TEST 'control_lndp_intel' [00:54, 01:32](527 MB) -PASS -- TEST 'control_iovr4_intel' [59:52, 01:42](518 MB) -PASS -- TEST 'control_iovr5_intel' [59:52, 01:44](518 MB) -PASS -- TEST 'control_p8_intel' [58:54, 02:27](1759 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [58:21, 03:08](1759 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [58:19, 02:32](1760 MB) -PASS -- TEST 'control_restart_p8_intel' [51:31, 02:57](908 MB) -PASS -- TEST 'control_noqr_p8_intel' [57:08, 02:20](1754 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [50:30, 02:39](915 MB) -PASS -- TEST 'control_decomp_p8_intel' [56:35, 01:58](1751 MB) -PASS -- TEST 'control_2threads_p8_intel' [55:08, 02:29](1838 MB) -PASS -- TEST 'control_p8_lndp_intel' [55:06, 01:55](1756 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [55:05, 02:45](1807 MB) -PASS -- TEST 'control_p8_mynn_intel' [55:01, 02:40](1759 MB) -PASS -- TEST 'merra2_thompson_intel' [54:58, 02:28](1761 MB) -PASS -- TEST 'regional_control_intel' [54:54, 02:00](843 MB) -PASS -- TEST 'regional_restart_intel' [46:52, 01:22](843 MB) -PASS -- TEST 'regional_decomp_intel' [54:30, 01:45](837 MB) -PASS -- TEST 'regional_2threads_intel' [53:34, 01:44](895 MB) -PASS -- TEST 'regional_noquilt_intel' [53:19, 01:19](1166 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [53:17, 02:20](849 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [53:07, 02:11](841 MB) -PASS -- TEST 'regional_wofs_intel' [52:01, 02:06](1565 MB) - -PASS -- COMPILE 'rrfs_intel' [10:25, 08:15] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [50:25, 02:59](905 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [49:15, 02:03](1049 MB) -PASS -- TEST 'rap_decomp_intel' [49:14, 02:17](914 MB) -PASS -- TEST 'rap_2threads_intel' [48:31, 02:13](986 MB) -PASS -- TEST 'rap_restart_intel' [39:48, 02:08](774 MB) -PASS -- TEST 'rap_sfcdiff_intel' [48:26, 03:08](901 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [48:21, 02:47](897 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [37:53, 02:39](775 MB) -PASS -- TEST 'hrrr_control_intel' [48:20, 02:20](900 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [47:47, 02:11](901 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [47:28, 02:25](979 MB) -PASS -- TEST 'hrrr_control_restart_intel' [41:50, 02:01](727 MB) -PASS -- TEST 'rrfs_v1beta_intel' [47:19, 03:03](895 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [47:17, 01:56](1855 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [47:14, 02:16](1842 MB) - -PASS -- COMPILE 'csawmg_intel' [09:23, 07:53] -PASS -- TEST 'control_csawmg_intel' [02:11, 01:30](857 MB) -PASS -- TEST 'control_ras_intel' [02:11, 01:58](555 MB) - -PASS -- COMPILE 'wam_intel' [09:24, 07:59] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [47:11, 01:24](1555 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:24, 08:08] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [46:45, 02:58](1754 MB) -PASS -- TEST 'regional_control_faster_intel' [46:28, 02:13](833 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:27, 11:20] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [22:49, 02:30](3085 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:29, 11:49] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:48, 02:55](1816 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [03:18, 02:55](1832 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [02:39, 02:52](975 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:49, 03:26](1779 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:29, 11:58] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [22:48, 02:06](1813 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:23, 05:19] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:55, 03:23](1829 MB) + +PASS -- COMPILE 's2swa_intel' [13:27, 11:34] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [22:49, 02:28](3115 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [22:49, 02:52](3113 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:25, 03:10](3043 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [22:49, 02:25](3135 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:26, 03:05](3062 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [22:49, 02:18](3358 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [22:49, 02:28](3115 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [22:50, 03:04](3057 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [22:49, 02:48](3113 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [22:58, 07:27](4103 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [01:17, 07:15](4257 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [22:49, 02:49](3095 MB) + +PASS -- COMPILE 's2sw_intel' [13:29, 11:13] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [22:48, 02:49](1818 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [22:48, 02:46](1888 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:27, 10:15] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [23:49, 03:04](1881 MB) + +PASS -- COMPILE 's2s_intel' [12:26, 10:21] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [23:49, 01:44](2865 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [23:49, 02:26](2870 MB) +PASS -- TEST 'cpld_restart_c48_intel' [18:37, 02:20](2283 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:33, 16:18] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [17:43, 03:01](3125 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:29, 11:31] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:47, 02:21](1820 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [03:47, 02:18](993 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [03:35, 02:41](1794 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:22, 05:21] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [21:32, 02:19](1849 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:33] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [12:14, 02:22](565 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [12:14, 02:16](1465 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [11:30, 01:58](1473 MB) +PASS -- TEST 'control_latlon_intel' [11:09, 01:58](1469 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [11:03, 02:14](1468 MB) +PASS -- TEST 'control_c48_intel' [11:00, 02:28](1565 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:09, 01:43](689 MB) +PASS -- TEST 'control_c192_intel' [06:51, 02:01](1586 MB) +PASS -- TEST 'control_c384_intel' [06:55, 04:26](1879 MB) +PASS -- TEST 'control_c384gdas_intel' [06:23, 03:57](1063 MB) +PASS -- TEST 'control_stochy_intel' [06:19, 01:34](522 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:35, 02:04](328 MB) +PASS -- TEST 'control_lndp_intel' [06:07, 01:36](520 MB) +PASS -- TEST 'control_iovr4_intel' [06:00, 01:48](519 MB) +PASS -- TEST 'control_iovr5_intel' [05:40, 01:37](517 MB) +PASS -- TEST 'control_p8_intel' [05:31, 02:38](1757 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:24, 02:59](1759 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:02, 02:20](1753 MB) +PASS -- TEST 'control_restart_p8_intel' [58:33, 02:50](910 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:29, 02:24](1753 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [57:05, 02:45](914 MB) +PASS -- TEST 'control_decomp_p8_intel' [02:39, 02:19](1750 MB) +PASS -- TEST 'control_2threads_p8_intel' [02:38, 02:35](1839 MB) +PASS -- TEST 'control_p8_lndp_intel' [02:38, 02:03](1757 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [02:37, 03:01](1815 MB) +PASS -- TEST 'control_p8_mynn_intel' [02:29, 02:52](1771 MB) +PASS -- TEST 'merra2_thompson_intel' [02:29, 02:52](1755 MB) +PASS -- TEST 'regional_control_intel' [02:28, 02:08](836 MB) +PASS -- TEST 'regional_restart_intel' [54:31, 01:16](841 MB) +PASS -- TEST 'regional_decomp_intel' [01:32, 01:59](836 MB) +PASS -- TEST 'regional_2threads_intel' [01:31, 01:51](889 MB) +PASS -- TEST 'regional_noquilt_intel' [01:23, 01:16](1166 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [01:01, 02:22](839 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [00:21, 02:07](838 MB) +PASS -- TEST 'regional_wofs_intel' [00:12, 02:06](1565 MB) + +PASS -- COMPILE 'rrfs_intel' [10:24, 09:01] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [13:24, 03:01](902 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:25, 02:04](1049 MB) +PASS -- TEST 'rap_decomp_intel' [13:24, 02:51](905 MB) +PASS -- TEST 'rap_2threads_intel' [13:24, 02:48](989 MB) +PASS -- TEST 'rap_restart_intel' [00:13, 02:18](776 MB) +PASS -- TEST 'rap_sfcdiff_intel' [13:24, 03:11](906 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:24, 02:50](901 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [59:05, 02:50](775 MB) +PASS -- TEST 'hrrr_control_intel' [13:24, 02:18](901 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [13:24, 02:45](900 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [13:25, 02:39](972 MB) +PASS -- TEST 'hrrr_control_restart_intel' [58:50, 02:00](731 MB) +PASS -- TEST 'rrfs_v1beta_intel' [13:24, 03:11](898 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:24, 01:59](1857 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:16, 02:14](1848 MB) + +PASS -- COMPILE 'csawmg_intel' [10:25, 08:10] +PASS -- TEST 'control_csawmg_intel' [58:30, 01:33](858 MB) +PASS -- TEST 'control_ras_intel' [58:09, 01:52](556 MB) + +PASS -- COMPILE 'wam_intel' [10:25, 08:18] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [57:40, 01:26](1542 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:25, 08:29] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [55:55, 03:11](1756 MB) +PASS -- TEST 'regional_control_faster_intel' [55:54, 01:24](836 MB) PASS -- COMPILE 'atm_debug_dyn32_intel' [09:24, 07:42] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [46:14, 01:42](1496 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [46:08, 01:48](1492 MB) -PASS -- TEST 'control_stochy_debug_intel' [45:51, 01:39](698 MB) -PASS -- TEST 'control_lndp_debug_intel' [45:13, 02:02](699 MB) -PASS -- TEST 'control_csawmg_debug_intel' [45:06, 01:23](1001 MB) -PASS -- TEST 'control_ras_debug_intel' [45:05, 02:01](707 MB) -PASS -- TEST 'control_diag_debug_intel' [42:55, 02:09](1549 MB) -PASS -- TEST 'control_debug_p8_intel' [42:06, 02:13](1790 MB) -PASS -- TEST 'regional_debug_intel' [42:01, 01:59](879 MB) -PASS -- TEST 'rap_control_debug_intel' [41:43, 01:42](1081 MB) -PASS -- TEST 'hrrr_control_debug_intel' [41:24, 01:44](1074 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [41:18, 01:38](1079 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [41:18, 01:41](1076 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [41:18, 01:35](1084 MB) -PASS -- TEST 'rap_diag_debug_intel' [40:24, 01:33](1161 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [40:05, 01:37](1082 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [39:45, 01:33](1082 MB) -PASS -- TEST 'rap_lndp_debug_intel' [39:38, 01:38](1083 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [39:36, 01:40](1080 MB) -PASS -- TEST 'rap_noah_debug_intel' [39:36, 01:44](1072 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [39:22, 01:38](1074 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [39:08, 01:24](1074 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [39:06, 01:43](1072 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [38:39, 01:52](1079 MB) -PASS -- TEST 'rap_flake_debug_intel' [38:25, 01:45](1079 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [37:53, 02:48](1085 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:20, 04:26] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [04:13, 02:06](1580 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:24, 07:50] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [37:21, 02:17](913 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [37:03, 02:22](777 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [36:43, 03:16](776 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [36:19, 02:40](834 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [35:39, 02:57](827 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [35:37, 02:28](776 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [28:23, 02:31](675 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [29:57, 02:18](659 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:27, 07:54] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [34:09, 02:14](989 MB) -PASS -- TEST 'conus13km_2threads_intel' [29:08, 01:57](992 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [28:34, 01:47](862 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:24, 08:01] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [33:48, 02:27](806 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:21, 04:31] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [33:48, 02:02](953 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [33:46, 02:04](948 MB) -PASS -- TEST 'conus13km_debug_intel' [33:45, 01:53](1039 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [33:28, 01:38](711 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [32:59, 01:46](1039 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [32:43, 01:50](1103 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:21, 04:25] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [32:24, 01:57](980 MB) - -PASS -- COMPILE 'hafsw_intel' [11:32, 09:17] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [32:18, 03:15](597 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [32:09, 01:49](946 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [32:06, 02:53](652 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [32:06, 02:25](675 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [31:55, 02:40](693 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [31:33, 02:02](375 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [31:04, 03:08](388 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [30:50, 02:38](279 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [30:14, 03:31](404 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [30:04, 02:36](433 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [29:51, 01:49](402 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [29:51, 01:52](477 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [29:32, 01:27](308 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:21, 04:58] ( 1447 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [29:33, 02:24](499 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:32, 09:19] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [29:31, 01:50](515 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [28:00, 02:46](699 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:31, 09:25] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [26:58, 02:14](704 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:30, 08:39] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [26:11, 03:11](639 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [26:10, 03:09](616 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [25:52, 01:36](880 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:32, 10:24] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [25:27, 01:49](1820 MB) - -PASS -- COMPILE 'atml_intel' [10:28, 08:55] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [07:24, 05:50] ( 866 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [10:28, 08:20] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [25:18, 02:17](3006 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [25:13, 02:50](2894 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [24:44, 02:41](2905 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:22, 04:30] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [24:45, 02:39](4377 MB) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [13:05, 01:45](1496 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [55:53, 01:46](1493 MB) +PASS -- TEST 'control_stochy_debug_intel' [55:33, 01:50](693 MB) +PASS -- TEST 'control_lndp_debug_intel' [55:31, 02:05](694 MB) +PASS -- TEST 'control_csawmg_debug_intel' [54:55, 01:29](999 MB) +PASS -- TEST 'control_ras_debug_intel' [54:29, 02:06](702 MB) +PASS -- TEST 'control_diag_debug_intel' [54:01, 02:28](1556 MB) +PASS -- TEST 'control_debug_p8_intel' [53:34, 02:21](1779 MB) +PASS -- TEST 'regional_debug_intel' [53:32, 02:01](878 MB) +PASS -- TEST 'rap_control_debug_intel' [53:29, 01:33](1076 MB) +PASS -- TEST 'hrrr_control_debug_intel' [52:57, 01:44](1074 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [52:48, 01:38](1075 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [52:39, 01:36](1074 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [52:32, 01:37](1077 MB) +PASS -- TEST 'rap_diag_debug_intel' [52:28, 02:35](1160 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [52:12, 01:29](1077 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [51:38, 01:29](1078 MB) +PASS -- TEST 'rap_lndp_debug_intel' [51:37, 01:28](1077 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [51:31, 01:42](1077 MB) +PASS -- TEST 'rap_noah_debug_intel' [51:03, 01:37](1072 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [50:22, 01:32](1076 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [50:17, 02:19](1074 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [50:10, 01:34](1065 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [49:57, 01:42](1076 MB) +PASS -- TEST 'rap_flake_debug_intel' [49:56, 01:28](1079 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [49:49, 02:50](1083 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:20, 04:27] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:27, 01:23](1576 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 08:07] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [49:23, 02:16](912 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [49:12, 03:03](783 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [49:06, 03:34](775 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [48:53, 02:45](837 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [48:10, 03:44](822 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [47:39, 03:19](774 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [39:48, 02:30](675 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [41:53, 01:27](660 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:23, 08:09] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [47:33, 02:05](989 MB) +PASS -- TEST 'conus13km_2threads_intel' [42:18, 01:55](994 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [41:45, 01:41](859 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:22, 08:22] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [47:20, 02:33](804 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 04:34] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [45:53, 01:51](951 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [45:14, 02:01](949 MB) +PASS -- TEST 'conus13km_debug_intel' [45:14, 01:48](1039 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [45:04, 02:13](711 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [44:51, 01:41](1041 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [44:39, 01:42](1104 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 04:28] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [44:06, 01:47](983 MB) + +PASS -- COMPILE 'hafsw_intel' [11:26, 10:02] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [44:09, 02:48](598 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [43:53, 01:33](941 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [43:35, 02:27](645 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [43:31, 02:32](673 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [43:26, 02:49](693 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [42:50, 02:10](379 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [42:40, 03:02](386 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [42:23, 02:32](308 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [41:32, 03:17](368 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [41:19, 02:29](400 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [41:15, 02:47](397 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [40:55, 02:47](469 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [40:26, 02:22](311 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:20, 04:58] ( 1447 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [40:27, 02:18](501 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:27, 09:46] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [40:22, 02:42](515 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [40:18, 02:40](693 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:27, 09:53] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [38:44, 03:11](703 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:25, 09:02] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [38:23, 02:56](643 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [38:19, 02:48](619 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [38:00, 01:24](880 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:26, 10:04] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [37:49, 01:49](1816 MB) + +PASS -- COMPILE 'atml_intel' [11:30, 09:35] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [07:30, 05:30] ( 866 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [10:29, 08:39] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [37:28, 02:20](3009 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [37:02, 02:53](2898 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [36:24, 02:55](2902 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:24, 04:28] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [36:13, 02:23](4379 MB) SYNOPSIS: -Starting Date/Time: 20241015 17:35:30 -Ending Date/Time: 20241015 19:03:50 -Total Time: 01h:28m:57s +Starting Date/Time: 20241021 13:23:29 +Ending Date/Time: 20241021 14:52:52 +Total Time: 01h:30m:06s Compiles Completed: 33/33 Tests Completed: 156/156 diff --git a/tests/test_changes.list b/tests/test_changes.list index 904333a800..e69de29bb2 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,108 +0,0 @@ -control_p8_mynn intel -regional_control intel -regional_restart intel -regional_decomp intel -regional_2threads intel -regional_noquilt intel -regional_netcdf_parallel intel -regional_2dwrtdecomp intel -regional_wofs intel -rap_control intel -regional_spp_sppt_shum_skeb intel -rap_decomp intel -rap_2threads intel -rap_restart intel -rap_sfcdiff intel -rap_sfcdiff_decomp intel -rap_sfcdiff_restart intel -hrrr_control intel -hrrr_control_decomp intel -hrrr_control_2threads intel -hrrr_control_restart intel -rrfs_v1beta intel -rrfs_v1nssl intel -rrfs_v1nssl_nohailnoccn intel -regional_control_faster intel -regional_debug intel -rap_control_debug intel -hrrr_control_debug intel -hrrr_gf_debug intel -hrrr_c3_debug intel -rap_unified_drag_suite_debug intel -rap_diag_debug intel -rap_cires_ugwp_debug intel -rap_unified_ugwp_debug intel -rap_lndp_debug intel -rap_progcld_thompson_debug intel -rap_noah_debug intel -rap_sfcdiff_debug intel -rap_noah_sfcdiff_cires_ugwp_debug intel -rrfs_v1beta_debug intel -rap_clm_lake_debug intel -rap_flake_debug intel -gnv1_c96_no_nest_debug intel -regional_spp_sppt_shum_skeb_dyn32_phy32 intel -rap_control_dyn32_phy32 intel -hrrr_control_dyn32_phy32 intel -rap_2threads_dyn32_phy32 intel -hrrr_control_2threads_dyn32_phy32 intel -hrrr_control_decomp_dyn32_phy32 intel -rap_restart_dyn32_phy32 intel -hrrr_control_restart_dyn32_phy32 intel -conus13km_control intel -conus13km_2threads intel -conus13km_restart_mismatch intel -rap_control_dyn64_phy32 intel -rap_control_debug_dyn32_phy32 intel -hrrr_control_debug_dyn32_phy32 intel -conus13km_debug intel -conus13km_debug_qr intel -conus13km_debug_2threads intel -conus13km_radar_tten_debug intel -rap_control_dyn64_phy32_debug intel -gnv1_nested intel -rap_control gnu -rap_decomp gnu -rap_2threads gnu -rap_restart gnu -rap_sfcdiff gnu -rap_sfcdiff_decomp gnu -rap_sfcdiff_restart gnu -hrrr_control gnu -hrrr_control_noqr gnu -hrrr_control_2threads gnu -hrrr_control_decomp gnu -hrrr_control_restart gnu -hrrr_control_restart_noqr gnu -rrfs_v1beta gnu -regional_debug gnu -rap_control_debug gnu -hrrr_control_debug gnu -hrrr_gf_debug gnu -hrrr_c3_debug gnu -rap_diag_debug gnu -rap_noah_sfcdiff_cires_ugwp_debug gnu -rap_progcld_thompson_debug gnu -rrfs_v1beta_debug gnu -rap_flake_debug gnu -rap_clm_lake_debug gnu -gnv1_c96_no_nest_debug gnu -rap_control_dyn32_phy32 gnu -hrrr_control_dyn32_phy32 gnu -rap_2threads_dyn32_phy32 gnu -hrrr_control_2threads_dyn32_phy32 gnu -hrrr_control_decomp_dyn32_phy32 gnu -rap_restart_dyn32_phy32 gnu -hrrr_control_restart_dyn32_phy32 gnu -conus13km_control gnu -conus13km_2threads gnu -conus13km_restart_mismatch gnu -rap_control_dyn64_phy32 gnu -rap_control_debug_dyn32_phy32 gnu -hrrr_control_debug_dyn32_phy32 gnu -conus13km_debug gnu -conus13km_debug_qr gnu -conus13km_debug_2threads gnu -conus13km_radar_tten_debug gnu -rap_control_dyn64_phy32_debug gnu -cpld_regional_atm_fbh intel From 547be6d379f5b213b47eb3eacc9c5211fb95b6ab Mon Sep 17 00:00:00 2001 From: Daniel Sarmiento <42810219+dpsarmie@users.noreply.github.com> Date: Thu, 31 Oct 2024 17:53:21 -0400 Subject: [PATCH 06/24] GW-RT global_control.nml modifications (#2425) * UFSWM - Modify global_control.nml to add compatibility with Global Workflow --- tests/bl_date.conf | 2 +- tests/default_vars.sh | 244 ++++- tests/logs/RegressionTests_gaea.log | 638 ++++++----- tests/logs/RegressionTests_hera.log | 856 ++++++++------- tests/logs/RegressionTests_hercules.log | 1170 ++++++++++++++------- tests/logs/RegressionTests_jet.log | 577 +++++----- tests/logs/RegressionTests_orion.log | 577 +++++----- tests/logs/RegressionTests_wcoss2.log | 530 ++++++---- tests/parm/global_control.nml.IN | 269 ++--- tests/rt.conf | 3 +- tests/run_test.sh | 16 + tests/test_changes.list | 37 + tests/tests/atm_ds2s_docn_dice | 16 +- tests/tests/control_p8_mynn | 6 + tests/tests/cpld_2threads_p8 | 5 +- tests/tests/cpld_bmark_p8 | 4 +- tests/tests/cpld_bmark_p8_35d | 3 +- tests/tests/cpld_control_c192_p8 | 7 +- tests/tests/cpld_control_c48 | 5 +- tests/tests/cpld_control_ciceC_p8 | 6 +- tests/tests/cpld_control_gfsv17 | 2 +- tests/tests/cpld_control_gfsv17_iau | 2 +- tests/tests/cpld_control_noaero_p8 | 2 +- tests/tests/cpld_control_nowave_noaero_p8 | 5 +- tests/tests/cpld_control_p8 | 6 +- tests/tests/cpld_control_p8.v2.sfc | 5 +- tests/tests/cpld_control_p8_faster | 5 +- tests/tests/cpld_control_p8_mixedmode | 5 +- tests/tests/cpld_control_pdlib_p8 | 9 +- tests/tests/cpld_control_qr_p8 | 6 +- tests/tests/cpld_control_sfs | 10 +- tests/tests/cpld_debug_gfsv17 | 9 +- tests/tests/cpld_debug_noaero_p8 | 2 +- tests/tests/cpld_debug_p8 | 5 +- tests/tests/cpld_debug_pdlib_p8 | 14 +- tests/tests/cpld_decomp_p8 | 5 +- tests/tests/cpld_mpi_gfsv17 | 2 +- tests/tests/cpld_mpi_p8 | 5 +- tests/tests/cpld_mpi_pdlib_p8 | 13 +- tests/tests/cpld_restart_bmark_p8 | 5 +- tests/tests/cpld_restart_c192_p8 | 4 +- tests/tests/cpld_restart_c48 | 8 +- tests/tests/cpld_restart_gfsv17 | 2 +- tests/tests/cpld_restart_p8 | 5 +- tests/tests/cpld_restart_pdlib_p8 | 6 +- tests/tests/cpld_restart_qr_p8 | 5 +- tests/tests/cpld_s2sa_p8 | 2 + tests/tests/cpld_warmstart_c48 | 4 +- 48 files changed, 3073 insertions(+), 2051 deletions(-) diff --git a/tests/bl_date.conf b/tests/bl_date.conf index c938d3783e..117af5527c 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20241011 +export BL_DATE=20241028 diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 2aefd87186..737f186342 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -456,6 +456,8 @@ export DO_UGWP_V0=.false. export DO_GSL_DRAG_SS=.false. export SATMEDMF=.false. export ISATMEDMF=0 +export LRADAR=.true. +export LTAEROSOL=.true. export LSM=1 export LANDICE=.true. @@ -479,14 +481,26 @@ export ATMRES=C96 export TILEDFIX=.false. export DO_CA=.false. export CA_SGS=.false. - } - export_fv3 () { -if [[ -z ${ATMRES+x} || -z ${ATMRES} ]]; then - export ATMRES=C96 +#Set defaults if ATMRES and DT_ATMOS are not set +export ATMRES=${ATMRES:-"C96"} +export DT_ATMOS=${DT_ATMOS:-"1800"} + +#DT_INNER=(Time step)/2 +export DT_INNER_c96=360 +export DT_INNER_c192=300 +export DT_INNER_c384=150 +export DT_INNER_c768=75 + +if [[ ${DT_ATMOS} = 1800 ]]; then + export default_dt_atmos=1 + export DT_INNER=${DT_INNER_c96} +else + export default_dt_atmos=0 + export DT_INNER=${DT_ATMOS} fi # ufs.configure defaults @@ -511,7 +525,11 @@ export CDEPS_INLINE=false export POSTAPP='global' export USE_MERRA2=.true. export NESTED=.false. +export BLOCKSIZE=32 +export CHKSUM_DEBUG=.false. +export DYCORE_ONLY=.false. +export IO_LAYOUT=1,1 export NTILES=6 export INPES=${INPES_dflt} export JNPES=${JNPES_dflt} @@ -576,13 +594,42 @@ export MAKE_NH=.true. export MOUNTAIN=.false. export NA_INIT=1 export DO_VORT_DAMP=.true. +export N_SPONGE=42 +export NUDGE_QV=.true. +export NUDGE_DZ=.false. export HYDROSTATIC=.false. -export KORD_XX=9 +export KORD_MT=9 +export KORD_WZ=9 +export KORD_TR=9 export KORD_TM=-9 +export PHYS_HYDROSTATIC=.false. +export USE_HYDRO_PRESSURE=.false. +export NWAT=6 +export NORD=2 +export D4_BG=0.12 +export VTDM4=0.02 +export DELT_MAX=0.002 +export EXTERNAL_ETA=.true. +export GFS_PHIL=.false. +export NCEP_IC=.false. export D_CON=1. -export HORD_XX=5 +export HORD_MT=5 +export HORD_VT=5 +export HORD_TM=5 export HORD_DP=-5 export HORD_TR=8 +export ADJUST_DRY_MASS=.false. +export DRY_MASS=98320.0 +export CONSV_TE=1. +export PRINT_FREQ=6 +export NO_DYCORE=.false. + +export FILTERED_TERRAIN=.true. +export GFS_DWINDS=.true. + +export USE_UFO=.true. +export PRE_RAD=.false. +export TTENDLIM=-999 # Radiation export DO_RRTMGP=.false. @@ -593,11 +640,27 @@ export USE_LW_JACOBIAN=.false. export DAMP_LW_FLUXADJ=.false. export RRTMGP_LW_PHYS_BLKSZ=2 export ICLOUD=0 +export ICLOUD_BL=1 export IAER=1011 export ICLIQ_SW=2 export IOVR=3 export LFNC_K=-999 export LFNC_P0=-999 +export PDFCLD=.false. +export FHSWR=3600. +export FHLWR=3600. + +export ICO2=2 +export ISUBC_SW=2 +export ISUBC_LW=2 +export ISOL=2 +export LWHTR=.true. +export SWHTR=.true. +export CNVGWD=.true. +export CAL_PRE=.false. +export REDRAG=.true. +export DSPHEAT=.true. +export HYBEDMF=.false. # Microphysics export IMP_PHYSICS=8 @@ -610,8 +673,8 @@ export LSEASPRAY=.true. export LGFDLMPRAD=.false. export EFFR_IN=.false. # Thompson MP -export LRADAR=.true. -export LTAEROSOL=.true. +export LRADAR=.false. +export LTAEROSOL=.false. export EXT_DIAG_THOMPSON=.false. export SEDI_SEMI=.true. export DECFL=10 @@ -644,11 +707,28 @@ export PSL_GWD_DX_FACTOR=6.0 export DO_GSL_DRAG_TOFD=.false. export DO_UGWP_V1=.false. export DO_UGWP_V1_OROG_ONLY=.false. +export KNOB_UGWP_SOLVER=2 +export KNOB_UGWP_SOURCE=1,1,0,0 +export KNOB_UGWP_WVSPEC=1,25,25,25 +export KNOB_UGWP_AZDIR=2,4,4,4 +export KNOB_UGWP_STOCH=0,0,0,0 +export KNOB_UGWP_EFFAC=1,1,1,1 +export KNOB_UGWP_DOAXYZ=1 +export KNOB_UGWP_DOHEAT=1 +export LAUNCH_LEVEL=54 export KNOB_UGWP_DOKDIS=1 export KNOB_UGWP_NDX4LH=1 export KNOB_UGWP_VERSION=0 -export KNOB_UGWP_PALAUNCH=500.e2 +export KNOB_UGWP_PALAUNCH=275.0e2 export KNOB_UGWP_NSLOPE=1 +export KNOB_UGWP_LZMAX=15.750e3 +export KNOB_UGWP_LZMIN=0.75e3 +export KNOB_UGWP_LZSTAR=2.0e3 +export KNOB_UGWP_TAUMIN=0.25e-3 +export KNOB_UGWP_TAUAMP=3.0e-3 +export KNOB_UGWP_LHMET=200.0e3 +export KNOB_UGWP_OROSOLV="'pss-1986'" + export KNOB_UGWP_TAUAMP=3.0e-3 export DO_UGWP_V0_NST_ONLY=.false. @@ -659,19 +739,21 @@ export CDMBWD_c192='0.23,1.5,1.0,1.0' export CDMBWD_c384='1.1,0.72,1.0,1.0' export CDMBWD_c768='4.0,0.15,1.0,1.0' -#DT_INNER=(Time step)/2 -export DT_INNER_c96=360 -export DT_INNER_c192=300 -export DT_INNER_c384=150 -export DT_INNER_c768=75 - # set default export CDMBWD=${CDMBWD_c96} -export DT_INNER=${DT_INNER_c96} + +if [[ ${default_dt_atmos} = 1 ]]; then + export DT_INNER=${DT_INNER_c96} +else + export DT_INNER=${DT_ATMOS} +fi + +export ISATMEDMF=1 +export TRANS_TRAC=.true. # PBL export SATMEDMF=.true. -export HYBEDMF=.true. +export HYBEDMF=.false. export SHINHONG=.false. export DO_YSU=.false. export DO_MYNNEDMF=.false. @@ -700,9 +782,15 @@ export FSCAV_AERO='"*:0.3","so2:0.0","msa:0.0","dms:0.0","nh3:0.4","nh4:0.6","bc # SFC export DO_MYJSFC=.false. export DO_MYNNSFCLAY=.false. -export BL_MYNN_TKEADVECT=.false. +export BL_MYNN_EDMF=1 +export BL_MYNN_TKEADVECT=.true. +export BL_MYNN_EDMF_MOM=1 # LSM +export PRSLRD0=0. +export IVEGSRC=1 +export ISOT=1 +export LSOIL=4 export LSM=2 export LSOIL_LSM=4 export LANDICE=.false. @@ -711,13 +799,33 @@ export IALB=2 export IEMS=2 export IOPT_DVEG=4 export IOPT_CRS=2 +export IOPT_BTR=1 +export IOPT_RUN=1 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 - +export IOPT_FRZ=1 +export IOPT_INF=1 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 +export IOPT_SNF=4 +export IOPT_TBOT=2 +export DEBUG=.false. +export NST_ANL=.true. +export PSAUTCO=0.0008,0.0005 +export PRAUTCO=0.00015,0.00015 +export EFFR_IN=.true. +export ACTIVE_GASES="'h2o_co2_o3_n2o_ch4_o2'" +export NGASES=6 +export LW_FILE_GAS="'rrtmgp-data-lw-g128-210809.nc'" +export LW_FILE_CLOUDS="'rrtmgp-cloud-optics-coeffs-lw.nc'" +export SW_FILE_GAS="'rrtmgp-data-sw-g112-210809.nc'" +export SW_FILE_CLOUDS="'rrtmgp-cloud-optics-coeffs-sw.nc'" +export RRTMGP_NGPTSSW=112 +export RRTMGP_NGPTSLW=128 +export RRTMGP_NBANDSLW=16 +export RRTMGP_NBANDSSW=14 export D2_BG_K1=0.20 export D2_BG_K2=0.04 @@ -728,6 +836,7 @@ export DDDMP=0.1 # Ozone / stratospheric H2O export OZ_PHYS_OLD=.true. export OZ_PHYS_NEW=.false. + export H2O_PHYS=.false. # Lake models @@ -772,7 +881,6 @@ export SDAY=03 export SHOUR=00 export SECS=$(( SHOUR*3600 )) export FHMAX=$(( DAYS*24 )) -export DT_ATMOS=1800 export FHCYC=24 export FHROT=0 export LDIAG3D=.false. @@ -782,6 +890,20 @@ export MAX_OUTPUT_FIELDS=310 export UPDATE_FULL_OMEGA=.false. # Stochastic physics +export HIDE_LAND_PERT=' ' +export HIDE_NEST='!' +export HIDE_SPPT='!' +export HIDE_SKEB='!' +export HIDE_SHUM='!' +export HIDE_OCNSPPT='!' +export HIDE_EPBL='!' +export HIDE_IAU='!' + +export LCNORM=.false. +export PERT_MP=.false. +export PERT_RADTEND=.false. +export PERT_CLDS=.true. + export STOCHINI=.false. export DO_SPPT=.false. export DO_SHUM=.false. @@ -797,12 +919,37 @@ export LNDP_MODEL_TYPE=0 export LNDP_TAU=21600, export LNDP_LSCALE=500000, export ISEED_LNDP=2010, +export ISEED_SKEB=0 +export SKEB_TAU=21600, +export SKEB_LSCALE=500000, +export SKEBNORM=1, +export SKEB_NPASS=30, +export SKEB_VDOF=5, +export ISEED_SHUM=1, +export SHUM_TAU=21600, +export SHUM_LSCALE=500000, +export ISEED_SPPT=20210325000103,20210325000104,20210325000105,20210325000106,20210325000107 +export SPPT_TAU=2.16E4,2.592E5,2.592E6,7.776E6,3.1536E7 +export SPPT_LSCALE=500.E3,1000.E3,2000.E3,2000.E3,2000.E3 +export SPPT_LOGIT=.true., +export SPPT_SFCLIMIT=.true., +export USE_ZMTNBLCK=.true. +export PBL_TAPER=0,0,0,0.125,0.25,0.5,0.75 +export OCNSPPT=0.8,0.4,0.2,0.08,0.04 +export OCNSPPT_LSCALE=500.E3,1000.E3,2000.E3,2000.E3,2000.E3 +export OCNSPPT_TAU=2.16E4,2.592E5,2.592E6,7.776E6,3.1536E7 +export ISEED_OCNSPPT=20210325000108,20210325000109,20210325000110,20210325000111,20210325000112 +export EPBL=0.8,0.4,0.2,0.08,0.04 +export EPBL_LSCALE=500.E3,1000.E3,2000.E3,2000.E3,2000.E3 +export EPBL_TAU=2.16E4,2.592E5,2.592E6,7.776E6,3.1536E7 +export ISEED_EPBL=20210325000113,20210325000114,20210325000115,20210325000116,20210325000117 #IAU export IAU_INC_FILES="''" export IAU_DELTHRS=0 export IAUFHRS=-1 export IAU_OFFSET=0 +export IAU_FILTER_INCREMENTS=.false. export FH_DFI_RADAR='-2e10' @@ -888,7 +1035,7 @@ export USE_CICE_ALB=.false. # GFDL Cloud Microphysics export FTSFS=90 - +export REIFLAG=2 # NAM sfc export FNGLAC="'global_glacier.2x2.grb'" @@ -897,6 +1044,7 @@ export FNTSFC="'RTGSST.1982.2012.monthly.clim.grb'" export FNSNOC="'global_snoclim.1.875.grb'" export FNZORC="'igbp'" export FNAISC="'IMS-NIC.blended.ice.monthly.clim.grb'" +export LDEBUG=.false. } # Add section for tiled grid namelist @@ -933,11 +1081,11 @@ export_ugwpv1() { export LDIAG_UGWP=.false. export KNOB_UGWP_DOKDIS=2 export KNOB_UGWP_NDX4LH=4 - + # Add updated damping and timestep variables case "${ATMRES}" in "C48") - export DT_ATMOS=720 + if [[ ${default_dt_atmos} = 1 ]]; then export DT_ATMOS=720; fi export XR_CNVCLD=.false. export CDMBGWD="0.071,2.1,1.0,1.0" export CDMBGWD_GSL="40.0,1.77,1.0,1.0" @@ -949,7 +1097,7 @@ export_ugwpv1() { export FV_SG_ADJ=3600 ;; "C96") - export DT_ATMOS=720 + if [[ ${default_dt_atmos} = 1 ]]; then export DT_ATMOS=720; fi export XR_CNVCLD=.false. export CDMBGWD="0.14,1.8,1.0,1.0" export CDMBGWD_GSL="20.0,2.5,1.0,1.0" @@ -961,7 +1109,7 @@ export_ugwpv1() { export FV_SG_ADJ=1800 ;; "C192") - export DT_ATMOS=600 + if [[ ${default_dt_atmos} = 1 ]]; then export DT_ATMOS=600; fi export XR_CNVCLD=.true. export CDMBGWD="0.23,1.5,1.0,1.0" export CDMBGWD_GSL="5.0,5.0,1.0,1.0" @@ -973,7 +1121,7 @@ export_ugwpv1() { export FV_SG_ADJ=1800 ;; "C384") - export DT_ATMOS=300 + if [[ ${default_dt_atmos} = 1 ]]; then export DT_ATMOS=300; fi export XR_CNVCLD=.true. export CDMBGWD="1.1,0.72,1.0,1.0" export CDMBGWD_GSL="5.0,5.0,1.0,1.0" @@ -985,7 +1133,7 @@ export_ugwpv1() { export FV_SG_ADJ=900 ;; "C768") - export DT_ATMOS=150 + if [[ ${default_dt_atmos} = 1 ]]; then export DT_ATMOS=150; fi export XR_CNVCLD=.true. export CDMBGWD="4.0,0.15,1.0,1.0" export CDMBGWD_GSL="2.5,7.5,1.0,1.0" @@ -997,7 +1145,7 @@ export_ugwpv1() { export FV_SG_ADJ=450 ;; "C1152") - export DT_ATMOS=150 + if [[ ${default_dt_atmos} = 1 ]]; then export DT_ATMOS=150; fi export XR_CNVCLD=.true. export CDMBGWD="4.0,0.10,1.0,1.0" export CDMBGWD_GSL="1.67,8.8,1.0,1.0" @@ -1009,7 +1157,7 @@ export_ugwpv1() { export FV_SG_ADJ=450 ;; "C3072") - export DT_ATMOS=90 + if [[ ${default_dt_atmos} = 1 ]]; then export DT_ATMOS=90; fi export XR_CNVCLD=.true. export CDMBGWD="4.0,0.05,1.0,1.0" export CDMBGWD_GSL="0.625,14.1,1.0,1.0" @@ -1029,10 +1177,9 @@ export_ugwpv1() { if [[ ${DO_GSL_DRAG_SS} = .true. ]]; then export CDMBGWD=${CDMBGWD_GSL}; fi if [[ ${SEDI_SEMI} = .true. ]]; then export DT_ATMOS=$((DT_ATMOS/2)); fi export DT_INNER=${DT_ATMOS} - + export default_dt_atmos=0 } - # Defaults for the CICE6 model namelist, mx100 export_cice6() { SECS=$((SHOUR*3600)) @@ -1243,16 +1390,23 @@ export SHOUR=06 export CHOUR=06 export FHMAX=24 export FHROT=0 -export DT_ATMOS=720 export QUILTING_RESTART=.false. export WRTTASK_PER_GROUP=${WPG_cpl_dflt} export WRITE_NSFLIP=.true. export OUTPUT_FH='6 -1' # default atm/ocn/ice resolution -export ATMRES=C96 -export OCNRES=100 -export ICERES=1.00 +if [[ ${default_dt_atmos} = 1 ]]; then + #If default DT_ATMOS is being used, set to 720 for RTs + export DT_ATMOS=720 + export DT_INNER=${DT_ATMOS} +fi +if [[ -z ${OCNRES+x} || -z ${OCNRES} ]]; then + export OCNRES=100 +fi +if [[ -z ${ICERES+x} || -z ${ICERES} ]]; then + export ICERES=1.00 +fi export NX_GLB=360 export NY_GLB=320 export NPZ=127 @@ -1300,7 +1454,6 @@ export FV3_RUN=cpld_control_run.IN export TILEDFIX=.false. export FHZERO=6 -export DT_INNER=${DT_ATMOS} export IALB=2 export IEMS=2 @@ -1330,30 +1483,12 @@ export NSTF_NAME=2,0,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# UGWP1 -export GWD_OPT=2 -export KNOB_UGWP_NSLOPE=1 -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. - -export DO_GSL_DRAG_TOFD=.false. -export CDMBWD=${CDMBWD_c96} - # RRTMGP export DO_RRTMGP=.false. export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. -# UGWD -export DO_UGWP_V0=.true. -export DO_UGWP_V1=.false. -export DO_GSL_DRAG_LS_BL=.false. -export KNOB_UGWP_VERSION=0 - # CA export DO_CA=.true. export CA_SGS=.true. @@ -1543,6 +1678,7 @@ export_hafs_regional () export INPES=${INPES_dflt} export JNPES=${JNPES_dflt} export NTILES=1 + export BLOCKSIZE=24 # model_configure export SYEAR=2019 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index a34994d13a..ee23b7bd59 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -6bd7ea845b22492c06f61a14c242fce7da453a15 +20191d85286242c7e38a3ddada32e7c03e4452f5 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,9 +11,9 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 8e8df02db4fda01cb4cb63c13164e833c8280931 FV3 (remotes/origin/cubed_sphere_chunks) + 99091f9742670bdebd84bd13f17b9115457d64dd FV3 (heads/develop) 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) - 8c8b60498ec463ea2d3d5b79950c6b47f4af3e34 FV3/ccpp/framework (v0.1.0-1703-g8c8b604) + b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) f3eeb3442775b7239d98e3d09acc6d4f1d42233e FV3/ccpp/physics (EP4-889-gf3eeb344) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) @@ -38,293 +38,367 @@ 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-20241011 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_3827138 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20241028 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_1082482 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [18:15, 16:33] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:22, 08:31](3186 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:12, 19:03] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [16:14, 13:50](1909 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:02, 14:24](1933 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:08, 06:49](1067 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:37, 15:17](1872 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:13, 20:47] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [16:01, 13:26](1896 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:14, 09:10] ( 1528 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:28, 25:43](1928 MB) - -PASS -- COMPILE 's2swa_intel' [17:14, 15:53] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [14:01, 10:13](3213 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:14, 10:17](3212 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:28, 06:43](3135 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [14:02, 10:13](3230 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:28, 06:38](3159 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [12:00, 08:35](3463 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [13:52, 10:09](3204 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [12:44, 09:16](3152 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:14, 10:10](3211 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [15:17, 10:08](3487 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:14, 07:23](3597 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:27, 11:20](4251 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:12, 08:22](4349 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:35, 07:57](3187 MB) - -PASS -- COMPILE 's2sw_intel' [18:15, 16:26] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:51, 06:04](1912 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:22, 08:37](1966 MB) - -PASS -- COMPILE 's2swa_debug_intel' [13:12, 11:44] ( 1418 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [17:08, 14:13](3264 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:12, 08:55] ( 1418 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:26, 09:19](1945 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:12, 13:49] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:24, 05:20](1973 MB) - -PASS -- COMPILE 's2s_intel' [15:12, 13:46] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [07:57, 05:35](2867 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:55, 02:00](2879 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:56, 01:07](2290 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:16, 15:28] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:43, 10:05](3216 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:15, 19:10] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:27, 15:14](1917 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:58, 07:30](1090 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:40, 17:29](1890 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:11, 09:36] ( 1528 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:44, 27:07](1943 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:14, 13:10] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:22, 03:45](654 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [08:06, 03:52](1554 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:41, 03:58](1564 MB) -PASS -- TEST 'control_latlon_intel' [07:51, 03:50](1553 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:06, 03:41](1560 MB) -PASS -- TEST 'control_c48_intel' [12:41, 09:55](1570 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:40, 05:42](696 MB) -PASS -- TEST 'control_c192_intel' [14:01, 11:25](1686 MB) -PASS -- TEST 'control_c384_intel' [27:11, 24:14](1965 MB) -PASS -- TEST 'control_c384gdas_intel' [18:18, 14:36](1166 MB) -PASS -- TEST 'control_stochy_intel' [03:30, 02:03](612 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:32, 01:00](416 MB) -PASS -- TEST 'control_lndp_intel' [04:24, 02:16](609 MB) -PASS -- TEST 'control_iovr4_intel' [05:32, 03:00](606 MB) -PASS -- TEST 'control_iovr5_intel' [05:38, 02:30](609 MB) -PASS -- TEST 'control_p8_intel' [06:14, 03:46](1844 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:50, 03:20](1842 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:41, 03:46](1841 MB) -PASS -- TEST 'control_restart_p8_intel' [05:29, 02:26](996 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:30, 03:46](1839 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:39, 02:44](1006 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:30, 03:48](1846 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:30, 03:21](1926 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:39, 06:21](1845 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:48, 04:10](1896 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:42, 03:47](1851 MB) -PASS -- TEST 'merra2_thompson_intel' [09:32, 04:09](1851 MB) -PASS -- TEST 'regional_control_intel' [08:31, 05:03](842 MB) -PASS -- TEST 'regional_restart_intel' [05:02, 02:32](846 MB) -PASS -- TEST 'regional_decomp_intel' [08:19, 05:11](854 MB) -PASS -- TEST 'regional_2threads_intel' [05:39, 03:13](981 MB) -PASS -- TEST 'regional_noquilt_intel' [07:19, 04:35](1170 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:47, 04:58](851 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:42, 04:42](843 MB) -PASS -- TEST 'regional_wofs_intel' [08:32, 06:37](1575 MB) - -PASS -- COMPILE 'rrfs_intel' [13:11, 11:18] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:17, 06:57](988 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:13, 03:58](1145 MB) -PASS -- TEST 'rap_decomp_intel' [10:17, 07:15](991 MB) -PASS -- TEST 'rap_2threads_intel' [10:17, 06:13](1071 MB) -PASS -- TEST 'rap_restart_intel' [07:18, 03:53](867 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:17, 06:53](987 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:17, 07:18](987 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:50, 04:59](867 MB) -PASS -- TEST 'hrrr_control_intel' [06:03, 03:56](982 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:03, 04:00](987 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:03, 03:12](1065 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:04, 01:53](814 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:17, 06:46](984 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:59, 08:56](1942 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:35, 08:42](1935 MB) - -PASS -- COMPILE 'csawmg_intel' [13:12, 11:10] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [08:32, 06:41](944 MB) -PASS -- TEST 'control_ras_intel' [05:30, 03:36](642 MB) - -PASS -- COMPILE 'wam_intel' [13:12, 11:40] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:41, 12:38](1638 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:12, 11:14] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:16, 03:32](1841 MB) -PASS -- TEST 'regional_control_faster_intel' [07:04, 04:51](843 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [13:11, 11:38] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:08, 03:35](1583 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:25, 03:25](1582 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:37, 03:28](784 MB) -PASS -- TEST 'control_lndp_debug_intel' [07:01, 02:49](785 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:12, 04:22](1085 MB) -PASS -- TEST 'control_ras_debug_intel' [05:55, 02:53](793 MB) -PASS -- TEST 'control_diag_debug_intel' [06:14, 03:05](1639 MB) -PASS -- TEST 'control_debug_p8_intel' [06:13, 03:22](1876 MB) -PASS -- TEST 'regional_debug_intel' [19:14, 15:56](885 MB) -PASS -- TEST 'rap_control_debug_intel' [07:48, 05:09](1166 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:16, 04:58](1163 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:17, 05:14](1164 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:09, 05:23](1162 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:17, 05:08](1162 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:55, 05:32](1251 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:46, 05:13](1166 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:43, 05:07](1162 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:49, 05:09](1167 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:00, 05:01](1164 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:44, 04:55](1158 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:36, 05:07](1163 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:28, 07:55](1161 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:52, 04:55](1159 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:33, 06:08](1166 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:38, 05:02](1165 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:55, 08:34](1168 MB) - -PASS -- COMPILE 'wam_debug_intel' [12:14, 10:36] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:32, 13:39](1663 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:15, 11:53] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:36, 03:50](1017 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:09, 06:01](865 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:33, 03:30](860 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:53, 05:34](922 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:26, 02:46](909 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:00, 03:55](861 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [25:58, 04:12](772 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [23:54, 01:57](743 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:34, 10:56] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:47, 02:55](1072 MB) -PASS -- TEST 'conus13km_2threads_intel' [23:12, 01:06](1061 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [26:09, 01:23](948 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:13, 11:26] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:24, 04:23](895 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:11, 08:10] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:07, 05:17](1041 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:07, 04:57](1034 MB) -PASS -- TEST 'conus13km_debug_intel' [16:58, 13:29](1123 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [34:12, 14:03](795 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [27:55, 08:24](1115 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [36:10, 13:40](1190 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:11, 07:56] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:55, 05:13](1066 MB) - -PASS -- COMPILE 'hafsw_intel' [15:17, 13:40] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:14, 05:20](711 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [24:15, 04:43](1065 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [30:29, 07:42](745 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [32:53, 12:16](774 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [35:13, 12:58](797 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [27:28, 05:15](468 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [27:54, 06:41](495 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [23:20, 02:43](395 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [30:54, 07:40](479 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [26:17, 03:49](505 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [25:19, 03:31](503 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [30:24, 04:43](582 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [28:52, 01:37](425 MB) -PASS -- TEST 'gnv1_nested_intel' [30:53, 05:57](1696 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [11:12, 09:35] ( 1470 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [38:07, 12:58](614 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:17, 15:03] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [34:15, 07:52](632 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [35:27, 07:50](806 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [20:15, 19:07] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [33:39, 06:06](807 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:12, 14:09] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [33:16, 06:17](736 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [34:28, 06:22](717 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [47:18, 20:04](885 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:19, 12:10] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [28:27, 02:37](751 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [10:26, 01:44](741 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [25:24, 02:29](641 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [28:27, 02:29](640 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [22:25, 02:29](640 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [21:27, 02:37](750 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [20:27, 02:37](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [20:30, 02:30](642 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [24:06, 06:22](692 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [24:10, 06:34](672 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [18:25, 02:36](763 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:23, 04:39](2030 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [20:32, 04:45](2032 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:15, 05:45] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [21:28, 05:39](749 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [13:13, 11:37] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [17:29, 02:36](764 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 02:06] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [18:48, 03:34](313 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [15:43, 01:44](460 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:41, 01:05](462 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [04:13, 02:34] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [13:08, 01:14](451 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [04:52, 00:58](256 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:15, 13:41] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [18:13, 04:29](1909 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:15, 14:48] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [17:07, 04:33](1905 MB) - -PASS -- COMPILE 'atml_intel' [17:12, 15:26] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [21:15, 07:29](1878 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [20:21, 07:41](1880 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:38, 04:47](1024 MB) - -PASS -- COMPILE 'atml_debug_intel' [12:21, 10:14] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [19:10, 06:23](1902 MB) - -PASS -- COMPILE 'atmw_intel' [16:18, 14:26] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [14:01, 02:54](1879 MB) - -PASS -- COMPILE 'atmaero_intel' [14:16, 12:51] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [19:02, 06:27](3099 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [17:02, 07:28](2988 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [15:57, 07:05](2995 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [12:16, 10:35] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [27:53, 18:13](4439 MB) - -PASS -- COMPILE 'atm_fbh_intel' [16:16, 14:38] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [18:37, 09:31](796 MB) +PASS -- COMPILE 's2swa_32bit_intel' [17:12, 15:59] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:32, 12:25](3181 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:12, 21:03] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [26:02, 13:49](1896 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:10, 14:09](1938 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [16:51, 06:48](1072 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:58, 15:07](1884 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:12, 21:14] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [25:36, 13:51](1903 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:15, 09:39] ( 1528 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [43:44, 27:38](1934 MB) + +PASS -- COMPILE 's2swa_intel' [17:12, 15:58] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [25:46, 16:22](3212 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:44, 15:55](3206 MB) +PASS -- TEST 'cpld_restart_p8_intel' [25:03, 09:05](3135 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [19:39, 16:01](3230 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [31:10, 09:08](3155 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [20:37, 13:59](3457 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [18:33, 15:46](3208 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [27:40, 13:17](3153 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [25:34, 15:51](3213 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [25:52, 10:11](3491 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [23:54, 07:03](3594 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [37:48, 19:14](4253 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:10, 12:32](4355 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [13:39, 09:43](3191 MB) + +PASS -- COMPILE 's2sw_intel' [18:12, 16:47] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [21:05, 07:41](1912 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [26:10, 12:40](1971 MB) + +PASS -- COMPILE 's2swa_debug_intel' [11:15, 09:41] ( 1418 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [31:33, 22:50](3269 MB) + +PASS -- COMPILE 's2sw_debug_intel' [11:15, 09:49] ( 1418 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:29, 09:04](1946 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:11, 13:36] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:04, 05:16](1966 MB) + +PASS -- COMPILE 's2s_intel' [15:11, 13:30] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:50, 05:34](2870 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [06:51, 01:42](2880 MB) +PASS -- TEST 'cpld_restart_c48_intel' [12:49, 01:00](2292 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:17, 16:05] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [44:10, 15:51](3217 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:17, 19:28] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [48:57, 25:02](1916 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [31:09, 12:54](1100 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [40:10, 28:49](1893 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:17, 09:17] ( 1528 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [43:56, 30:59](1949 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:11, 11:26] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [29:22, 03:45](655 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [26:38, 03:20](1549 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [25:45, 03:22](1555 MB) +PASS -- TEST 'control_latlon_intel' [24:33, 03:19](1556 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [23:06, 03:21](1558 MB) +PASS -- TEST 'control_c48_intel' [17:37, 10:01](1572 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [21:27, 05:46](696 MB) +PASS -- TEST 'control_c192_intel' [26:41, 11:13](1686 MB) +PASS -- TEST 'control_c384_intel' [39:06, 24:05](1967 MB) +PASS -- TEST 'control_c384gdas_intel' [29:38, 14:41](1168 MB) +PASS -- TEST 'control_stochy_intel' [15:20, 01:57](611 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:21, 01:39](415 MB) +PASS -- TEST 'control_lndp_intel' [15:20, 01:51](608 MB) +PASS -- TEST 'control_iovr4_intel' [12:57, 02:40](606 MB) +PASS -- TEST 'control_iovr5_intel' [12:49, 02:44](609 MB) +PASS -- TEST 'control_p8_intel' [13:59, 03:48](1852 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [08:28, 03:22](1844 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:05, 03:45](1844 MB) +PASS -- TEST 'control_restart_p8_intel' [03:46, 02:00](996 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:18, 04:30](1842 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:44, 01:54](1008 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:57, 03:53](1846 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:00, 03:20](1923 MB) +PASS -- TEST 'control_p8_lndp_intel' [10:08, 06:25](1844 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:01, 04:17](1901 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:11, 03:17](1857 MB) +PASS -- TEST 'merra2_thompson_intel' [06:09, 03:36](1847 MB) +PASS -- TEST 'regional_control_intel' [06:53, 04:47](842 MB) +PASS -- TEST 'regional_restart_intel' [04:31, 02:34](842 MB) +PASS -- TEST 'regional_decomp_intel' [06:51, 04:57](844 MB) +PASS -- TEST 'regional_2threads_intel' [04:55, 02:55](980 MB) +PASS -- TEST 'regional_noquilt_intel' [06:55, 04:39](1174 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:01, 04:40](849 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:47, 04:43](851 MB) +PASS -- TEST 'regional_wofs_intel' [09:32, 06:32](1571 MB) + +PASS -- COMPILE 'rrfs_intel' [12:11, 11:04] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [15:55, 06:50](989 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [35:13, 04:03](1150 MB) +PASS -- TEST 'rap_decomp_intel' [21:57, 07:22](988 MB) +PASS -- TEST 'rap_2threads_intel' [16:51, 06:14](1069 MB) +PASS -- TEST 'rap_restart_intel' [05:44, 03:25](867 MB) +PASS -- TEST 'rap_sfcdiff_intel' [29:49, 06:43](987 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [18:56, 07:14](987 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:39, 04:50](867 MB) +PASS -- TEST 'hrrr_control_intel' [26:55, 03:47](986 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [35:06, 03:52](986 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [35:12, 03:15](1063 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:26, 01:56](818 MB) +PASS -- TEST 'rrfs_v1beta_intel' [21:57, 07:08](984 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:23, 08:42](1943 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:24, 08:32](1935 MB) + +PASS -- COMPILE 'csawmg_intel' [12:14, 10:19] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:30, 06:35](940 MB) +PASS -- TEST 'control_ras_intel' [05:21, 03:25](645 MB) + +PASS -- COMPILE 'wam_intel' [12:14, 11:04] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:30, 11:55](1639 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:14, 10:47] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:51, 03:09](1841 MB) +PASS -- TEST 'regional_control_faster_intel' [06:30, 04:23](841 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:11, 11:31] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:34, 02:48](1579 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:47, 02:44](1582 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:23, 03:23](784 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:26, 02:52](783 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:30, 04:28](1084 MB) +PASS -- TEST 'control_ras_debug_intel' [04:23, 03:04](791 MB) +PASS -- TEST 'control_diag_debug_intel' [05:43, 03:35](1639 MB) +PASS -- TEST 'control_debug_p8_intel' [05:31, 03:41](1876 MB) +PASS -- TEST 'regional_debug_intel' [18:34, 16:44](885 MB) +PASS -- TEST 'rap_control_debug_intel' [07:26, 05:33](1163 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:21, 05:41](1161 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:22, 05:31](1164 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:22, 05:27](1162 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:24, 05:11](1165 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:30, 05:25](1248 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:22, 05:14](1166 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:22, 05:05](1169 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:19, 05:02](1167 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:19, 05:03](1164 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:28, 04:54](1159 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:30, 05:05](1163 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:30, 08:03](1157 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:59](1157 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:01, 06:03](1163 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:22, 04:57](1163 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:39, 08:36](1165 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:11, 06:47] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:52, 13:15](1663 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 10:18] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:04, 03:49](1016 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:48, 05:47](865 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:42, 03:27](861 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:41, 05:18](922 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:39, 02:46](911 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:04, 03:31](859 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:44, 04:10](772 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:54, 01:48](743 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:13, 10:01] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:00, 01:59](1073 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:53, 01:41](1059 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [05:34, 01:39](947 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 10:29] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:43, 04:20](894 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 07:00] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 05:03](1043 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:25, 04:56](1039 MB) +PASS -- TEST 'conus13km_debug_intel' [15:53, 13:38](1119 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:53, 13:39](793 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:52, 08:02](1111 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:51, 13:51](1193 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:11, 06:55] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:20, 05:24](1066 MB) + +PASS -- COMPILE 'hafsw_intel' [16:11, 14:42] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:07, 05:11](715 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:28, 04:29](1057 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:27, 08:10](742 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:08, 11:47](774 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:19, 13:19](798 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:54, 05:34](469 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:17, 07:07](503 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:18, 02:49](399 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:24, 07:33](495 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:58, 03:45](506 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:48, 03:31](506 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [15:01, 04:34](585 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:35, 01:34](424 MB) +PASS -- TEST 'gnv1_nested_intel' [13:21, 05:14](1701 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:15, 08:28] ( 1470 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [23:50, 12:56](614 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:11, 14:09] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:06, 07:41](630 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:10, 07:52](809 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:14, 13:03] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [24:14, 05:58](807 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:11, 13:11] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [24:07, 06:22](742 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [28:18, 06:22](719 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [39:16, 20:03](891 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [12:11, 10:37] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [19:19, 02:37](763 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:26, 01:38](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [18:21, 02:30](643 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [20:21, 02:30](644 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [21:20, 02:32](642 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [21:21, 02:36](763 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [21:20, 02:35](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [21:21, 02:29](641 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [24:59, 06:17](694 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [24:58, 06:19](676 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [19:24, 02:36](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:24, 04:39](2031 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [21:41, 04:40](2030 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:11, 06:49] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [21:22, 05:29](749 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [12:11, 10:17] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [16:24, 02:35](763 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:11, 03:26] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [15:41, 01:47](322 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [14:40, 01:25](460 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:32, 01:00](461 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [05:10, 03:41] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [13:43, 00:34](448 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [04:04, 00:14](254 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:17, 12:35] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [17:39, 04:01](1909 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 10:46] ( 6 warnings 1 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'atm_ds2s_docn_dice_intel' [, ]( MB) + +PASS -- COMPILE 'atml_intel' [14:11, 12:10] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [20:03, 08:22](1874 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [20:06, 08:23](1878 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:42, 04:51](1022 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:11, 07:23] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [16:56, 06:24](1901 MB) + +PASS -- COMPILE 'atmw_intel' [14:11, 12:26] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:52, 02:19](1871 MB) + +PASS -- COMPILE 'atmaero_intel' [12:11, 10:45] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [10:55, 06:31](3098 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:50, 06:46](2981 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:48, 07:27](2995 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:10, 07:04] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [21:27, 18:15](4428 MB) + +PASS -- COMPILE 'atm_fbh_intel' [12:14, 10:15] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:36, 09:29](796 MB) SYNOPSIS: -Starting Date/Time: 20241018 20:22:24 -Ending Date/Time: 20241018 22:32:42 -Total Time: 02h:11m:17s +Starting Date/Time: 20241028 22:49:01 +Ending Date/Time: 20241029 01:00:33 +Total Time: 02h:13m:56s Compiles Completed: 43/43 -Tests Completed: 188/188 +Tests Completed: 187/188 +Failed Tests: +* TEST atm_ds2s_docn_dice_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f5/epic/scratch/Jong.Kim/rt-2425/tests/logs/log_gaea/run_atm_ds2s_docn_dice_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 GAEA REGRESSION TESTING LOG==== +====START OF GAEA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +20191d85286242c7e38a3ddada32e7c03e4452f5 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) + 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 99091f9742670bdebd84bd13f17b9115457d64dd FV3 (heads/develop) + 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) + b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) + f3eeb3442775b7239d98e3d09acc6d4f1d42233e FV3/ccpp/physics (EP4-889-gf3eeb344) + 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: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20241028 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_3505788 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2sw_pdlib_intel' [21:15, 20:06] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:05, 26:14](1921 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [33:40, 29:40](1895 MB) + +PASS -- COMPILE 's2sw_intel' [16:11, 14:38] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:01, 12:33](1969 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:11, 11:37] ( 6 warnings 1 remarks ) + +SYNOPSIS: +Starting Date/Time: 20241029 15:26:53 +Ending Date/Time: 20241029 16:53:19 +Total Time: 01h:26m:36s +Compiles Completed: 3/3 +Tests Completed: 3/3 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 5b507962b8..6fefb37069 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -6bd7ea845b22492c06f61a14c242fce7da453a15 +20191d85286242c7e38a3ddada32e7c03e4452f5 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 8e8df02db4fda01cb4cb63c13164e833c8280931 FV3 (remotes/origin/cubed_sphere_chunks) + 99091f9742670bdebd84bd13f17b9115457d64dd 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) @@ -26,388 +26,520 @@ 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-20241011 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_1237674 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241028 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_906265 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:12, 12:11] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:17, 06:15](3305 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:12, 16:24] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:07, 16:40](1974 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:36, 17:24](2162 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:05, 08:03](1272 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:09, 18:44](1866 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:12, 16:15] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:50, 16:13](1961 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 05:58] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:13, 23:26](1937 MB) - -PASS -- COMPILE 's2swa_intel' [14:12, 12:54] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:09, 07:30](3353 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:18, 07:40](3328 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:10, 04:10](3251 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:09, 07:23](3374 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:26, 04:13](3282 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:04, 07:04](3627 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:09, 07:28](3326 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:13, 06:11](3220 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:18, 07:23](3360 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:13, 09:44](3521 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:15, 06:06](3619 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:21, 08:45](4292 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:14, 05:37](4381 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:14, 05:24](3288 MB) - -PASS -- COMPILE 's2sw_intel' [13:12, 11:46] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:05, 05:41](1952 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:03, 07:26](2011 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 05:58] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [15:22, 12:48](3367 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:50] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:12, 08:49](2011 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:12, 10:54] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:03, 04:22](2024 MB) - -PASS -- COMPILE 's2s_intel' [12:12, 11:08] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:43, 07:40](3040 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:41, 02:38](3043 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:42, 01:32](2472 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:11, 16:42] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:16, 07:05](3341 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:02] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:24, 16:46](2032 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:22, 08:05](1274 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:20, 19:11](1937 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:10, 05:50] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:12, 25:49](1956 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:10, 10:26] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:24, 03:18](707 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:49, 03:09](1583 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:53, 03:13](1600 MB) -PASS -- TEST 'control_latlon_intel' [05:45, 03:08](1587 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:45, 03:09](1587 MB) -PASS -- TEST 'control_c48_intel' [13:41, 11:21](1707 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:29, 06:22](863 MB) -PASS -- TEST 'control_c192_intel' [14:05, 11:43](1728 MB) -PASS -- TEST 'control_c384_intel' [17:12, 13:11](1980 MB) -PASS -- TEST 'control_c384gdas_intel' [13:06, 07:57](1397 MB) -PASS -- TEST 'control_stochy_intel' [03:27, 01:36](655 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:29, 00:58](504 MB) -PASS -- TEST 'control_lndp_intel' [03:22, 01:33](656 MB) -PASS -- TEST 'control_iovr4_intel' [04:26, 02:25](656 MB) -PASS -- TEST 'control_iovr5_intel' [04:28, 02:25](650 MB) -PASS -- TEST 'control_p8_intel' [05:52, 03:36](1876 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:57, 03:00](1885 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:04, 03:32](1881 MB) -PASS -- TEST 'control_restart_p8_intel' [03:47, 02:01](1132 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:51, 03:33](1870 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:55, 02:01](1160 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:47, 03:37](1870 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:46, 03:26](1957 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:45, 06:28](1879 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:55, 03:55](1955 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:56, 03:06](1901 MB) -PASS -- TEST 'merra2_thompson_intel' [05:51, 03:20](1897 MB) -PASS -- TEST 'regional_control_intel' [07:38, 05:18](1088 MB) -PASS -- TEST 'regional_restart_intel' [04:37, 02:53](1079 MB) -PASS -- TEST 'regional_decomp_intel' [07:37, 05:32](1071 MB) -PASS -- TEST 'regional_2threads_intel' [05:37, 03:22](1092 MB) -PASS -- TEST 'regional_noquilt_intel' [07:37, 05:15](1391 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:40, 05:14](1089 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:35, 05:14](1095 MB) -PASS -- TEST 'regional_wofs_intel' [08:36, 06:46](1901 MB) - -PASS -- COMPILE 'rrfs_intel' [11:10, 09:45] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:41, 07:48](1108 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:06, 04:05](1241 MB) -PASS -- TEST 'rap_decomp_intel' [11:42, 08:10](1030 MB) -PASS -- TEST 'rap_2threads_intel' [09:44, 07:17](1165 MB) -PASS -- TEST 'rap_restart_intel' [05:47, 04:02](1090 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:44, 07:42](1098 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:44, 08:01](1034 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:47, 05:48](1124 MB) -PASS -- TEST 'hrrr_control_intel' [07:40, 03:56](1040 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:40, 04:03](1023 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:43, 03:37](1095 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:33, 02:08](995 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:51, 07:37](1097 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:33, 09:29](1974 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:32, 09:01](2058 MB) - -PASS -- COMPILE 'csawmg_intel' [11:11, 09:38] -PASS -- TEST 'control_csawmg_intel' [08:41, 06:08](1018 MB) -PASS -- TEST 'control_ras_intel' [05:24, 03:13](741 MB) - -PASS -- COMPILE 'csawmg_gnu' [06:10, 04:18] -PASS -- TEST 'control_csawmg_gnu' [10:48, 08:36](734 MB) - -PASS -- COMPILE 'wam_intel' [11:11, 09:28] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [12:54, 11:05](1653 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 09:45] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:01, 02:45](1884 MB) -PASS -- TEST 'regional_control_faster_intel' [06:44, 04:51](1081 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 07:23] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:47, 02:10](1603 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:44, 02:06](1613 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:24, 02:58](827 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:24, 02:40](828 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:35, 04:10](1133 MB) -PASS -- TEST 'control_ras_debug_intel' [04:22, 02:41](838 MB) -PASS -- TEST 'control_diag_debug_intel' [04:50, 02:42](1678 MB) -PASS -- TEST 'control_debug_p8_intel' [04:43, 02:42](1892 MB) -PASS -- TEST 'regional_debug_intel' [18:39, 17:05](1099 MB) -PASS -- TEST 'rap_control_debug_intel' [06:26, 04:49](1217 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:29, 04:46](1214 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:28, 04:50](1208 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 04:55](1213 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:23, 04:53](1213 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:39, 05:10](1298 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:24, 04:53](1212 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:24, 04:57](1208 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:29, 04:59](1212 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:25, 04:54](1208 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:26, 04:47](1208 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:26, 04:51](1210 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:27, 08:10](1212 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:28, 04:57](1204 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:32, 05:41](1214 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:27, 04:50](1211 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:47, 08:24](1224 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:10, 04:20] -PASS -- TEST 'control_csawmg_debug_gnu' [04:49, 02:09](727 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:10, 04:40] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:53, 12:53](1681 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 09:38] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:09, 03:46](1125 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:42, 06:26](1046 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:38, 03:20](973 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:33, 06:05](1080 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:31, 03:07](955 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:36, 03:31](916 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:54, 04:49](1027 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:27, 01:51](929 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 09:31] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:00, 01:57](1181 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:48, 00:52](1112 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:46, 01:12](1093 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 09:31] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:43, 04:13](978 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:30] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 04:46](1091 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:26, 04:45](1088 MB) -PASS -- TEST 'conus13km_debug_intel' [15:48, 13:44](1213 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:53, 13:27](969 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 07:40](1157 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:46, 13:33](1308 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 04:17] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:26, 04:49](1135 MB) - -PASS -- COMPILE 'hafsw_intel' [13:11, 11:13] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:26, 04:50](721 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:39, 05:58](1094 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:30, 06:49](809 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:25, 13:02](847 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:28, 14:40](866 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:07, 05:23](488 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:29, 06:21](505 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:54, 02:36](374 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:29, 07:00](465 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:47, 03:33](513 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:51, 03:26](516 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:56, 04:02](573 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:30, 01:10](398 MB) -PASS -- TEST 'gnv1_nested_intel' [06:44, 03:51](1738 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:11, 04:53] ( 1465 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:59, 12:36](587 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [12:11, 10:44] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:11, 08:28](627 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:15, 08:31](727 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 11:14] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:52, 06:16](722 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:13, 10:21] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:27, 06:14](814 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:17, 06:17](799 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:57, 16:19](1210 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:26] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 02:45](1146 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:39](1117 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:38](1021 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:37](1038 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:40](1018 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 02:44](1137 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:42](1154 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:37](1031 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:24, 06:06](1075 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:24, 06:19](1051 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 02:46](1135 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:21, 03:53](2507 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:21, 03:55](2462 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:15] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:12](1087 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:30] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:44](1146 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:01] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:44](259 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:48](322 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:30](327 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:19] -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:36, 00:32](567 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:33, 00:16](458 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:12, 10:22] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:04, 03:38](1976 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:10, 10:00] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:52, 03:30](1946 MB) - -PASS -- COMPILE 'atml_intel' [12:10, 10:18] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:58, 04:13](1877 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:58, 04:12](1865 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:48, 02:20](1084 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:11, 05:59] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:59, 05:33](1884 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 10:23] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:52, 01:50](1921 MB) - -PASS -- COMPILE 'atmaero_intel' [11:10, 10:00] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:00, 04:03](3169 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:55, 04:46](3092 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:44, 04:46](3105 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:35] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_gnu' [06:11, 04:36] -PASS -- TEST 'control_c48_gnu' [11:43, 09:23](1507 MB) -PASS -- TEST 'control_stochy_gnu' [05:23, 03:36](488 MB) -PASS -- TEST 'control_ras_gnu' [06:24, 04:58](501 MB) -PASS -- TEST 'control_p8_gnu' [08:04, 05:12](1439 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [07:58, 05:08](1450 MB) -PASS -- TEST 'control_flake_gnu' [12:27, 10:31](534 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:10, 04:23] -PASS -- TEST 'rap_control_gnu' [13:34, 11:25](809 MB) -PASS -- TEST 'rap_decomp_gnu' [13:35, 11:35](807 MB) -PASS -- TEST 'rap_2threads_gnu' [12:47, 10:19](919 MB) -PASS -- TEST 'rap_restart_gnu' [12:44, 06:56](575 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [13:38, 11:17](838 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:38, 11:31](837 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [15:47, 09:33](574 MB) -PASS -- TEST 'hrrr_control_gnu' [07:38, 05:47](806 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:30, 05:49](796 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [07:30, 05:21](904 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:32, 05:51](808 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [05:29, 03:00](555 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:28, 02:56](648 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [13:44, 11:05](801 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:10, 06:58] -PASS -- TEST 'control_diag_debug_gnu' [03:48, 01:38](1265 MB) -PASS -- TEST 'regional_debug_gnu' [12:39, 10:45](738 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:25, 02:29](813 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:25, 02:22](813 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:23, 02:28](819 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:21, 02:33](819 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:41, 02:39](901 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:23, 03:48](817 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:22, 02:24](819 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:24, 02:27](810 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:23, 01:28](448 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:22, 01:37](450 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:41, 01:30](1427 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:25, 02:31](814 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:22, 02:43](820 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:36, 04:00](821 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:10, 02:58] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 04:09] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:47, 09:39](697 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:31, 05:09](689 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [11:33, 08:56](739 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:35, 04:42](738 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:28, 05:18](687 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:40, 07:16](549 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [08:27, 03:48](531 MB) -PASS -- TEST 'conus13km_control_gnu' [05:56, 03:07](863 MB) -PASS -- TEST 'conus13km_2threads_gnu' [12:47, 07:37](865 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [07:45, 02:47](543 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:11, 12:51] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:03, 10:18](3294 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 16:54] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [36:26, 17:17](1961 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [56:30, 17:35](2152 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [46:23, 08:17](1260 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [38:19, 19:06](1860 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:11, 16:05] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [32:08, 16:32](1971 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:10, 06:07] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:56, 25:34](1945 MB) + +PASS -- COMPILE 's2swa_intel' [18:11, 12:22] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [35:43, 13:29](3330 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [35:45, 13:00](3335 MB) +PASS -- TEST 'cpld_restart_p8_intel' [50:35, 07:08](3256 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [35:43, 13:01](3342 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [50:35, 07:09](3271 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [27:24, 12:30](3644 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [18:16, 13:00](3344 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:25, 10:28](3208 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [34:41, 13:00](3348 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:15, 10:03](3520 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [06:13, 06:29](3622 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [40:19, 15:43](4286 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [29:12, 09:27](4385 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [25:24, 07:20](3270 MB) + +PASS -- COMPILE 's2sw_intel' [17:11, 11:57] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:57, 07:36](1982 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [19:06, 11:01](2066 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:10, 05:58] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [31:12, 22:08](3374 MB) + +PASS -- COMPILE 's2sw_debug_intel' [11:10, 05:42] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [15:55, 09:08](2004 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:11, 11:07] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [12:05, 04:26](2034 MB) + +PASS -- COMPILE 's2s_intel' [18:11, 11:13] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:05, 07:51](3044 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [14:55, 02:20](3028 MB) +PASS -- TEST 'cpld_restart_c48_intel' [15:06, 01:27](2489 MB) + +PASS -- COMPILE 's2swa_faster_intel' [24:11, 16:40] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:52, 12:42](3351 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:12, 15:07] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [35:24, 27:09](2028 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [36:33, 13:54](1262 MB) +FAILED: TEST TIMED OUT -- TEST 'cpld_mpi_pdlib_p8_intel' [, ]( MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 05:50] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [40:34, 30:40](1962 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:11, 10:47] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [16:35, 03:20](696 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [22:01, 03:12](1565 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [22:08, 03:15](1594 MB) +PASS -- TEST 'control_latlon_intel' [21:55, 03:11](1582 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [22:04, 03:13](1587 MB) +PASS -- TEST 'control_c48_intel' [22:53, 11:18](1716 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:34, 06:24](849 MB) +PASS -- TEST 'control_c192_intel' [31:19, 11:54](1754 MB) +PASS -- TEST 'control_c384_intel' [33:24, 13:37](1989 MB) +PASS -- TEST 'control_c384gdas_intel' [05:10, 08:14](1375 MB) +PASS -- TEST 'control_stochy_intel' [50:57, 01:43](655 MB) +PASS -- TEST 'control_stochy_restart_intel' [07:31, 01:00](508 MB) +PASS -- TEST 'control_lndp_intel' [10:46, 01:44](656 MB) +PASS -- TEST 'control_iovr4_intel' [07:51, 02:38](651 MB) +PASS -- TEST 'control_iovr5_intel' [03:54, 02:45](649 MB) +PASS -- TEST 'control_p8_intel' [02:17, 03:50](1872 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [57:19, 03:30](1871 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [57:11, 03:51](1880 MB) +PASS -- TEST 'control_restart_p8_intel' [06:52, 02:06](1128 MB) +PASS -- TEST 'control_noqr_p8_intel' [56:11, 03:51](1872 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:58, 02:03](1157 MB) +PASS -- TEST 'control_decomp_p8_intel' [56:11, 03:52](1863 MB) +PASS -- TEST 'control_2threads_p8_intel' [51:00, 03:43](1959 MB) +PASS -- TEST 'control_p8_lndp_intel' [54:03, 06:43](1877 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [53:21, 04:18](1951 MB) +PASS -- TEST 'control_p8_mynn_intel' [51:17, 03:21](1895 MB) +PASS -- TEST 'merra2_thompson_intel' [52:11, 03:32](1894 MB) +PASS -- TEST 'regional_control_intel' [09:43, 05:20](1092 MB) +PASS -- TEST 'regional_restart_intel' [15:43, 03:18](1087 MB) +PASS -- TEST 'regional_decomp_intel' [09:48, 05:42](1080 MB) +PASS -- TEST 'regional_2threads_intel' [05:32, 03:26](1082 MB) +PASS -- TEST 'regional_noquilt_intel' [07:37, 05:15](1388 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [18:44, 05:29](1089 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [17:43, 05:29](1085 MB) +PASS -- TEST 'regional_wofs_intel' [20:47, 06:59](1899 MB) + +PASS -- COMPILE 'rrfs_intel' [12:11, 10:14] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [43:48, 07:59](1104 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [39:25, 04:24](1245 MB) +PASS -- TEST 'rap_decomp_intel' [28:39, 08:18](1038 MB) +PASS -- TEST 'rap_2threads_intel' [28:37, 07:29](1169 MB) +PASS -- TEST 'rap_restart_intel' [06:42, 04:03](1090 MB) +PASS -- TEST 'rap_sfcdiff_intel' [24:42, 07:55](1100 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:38, 08:18](1034 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:43, 05:49](1128 MB) +PASS -- TEST 'hrrr_control_intel' [05:44, 03:58](1038 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [09:38, 04:09](1029 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [09:33, 03:43](1103 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:27, 02:13](983 MB) +PASS -- TEST 'rrfs_v1beta_intel' [13:46, 07:41](1088 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [14:26, 09:25](1975 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:27, 09:10](2047 MB) + +PASS -- COMPILE 'csawmg_intel' [14:11, 09:43] +PASS -- TEST 'control_csawmg_intel' [10:43, 06:14](1020 MB) +PASS -- TEST 'control_ras_intel' [07:24, 03:19](747 MB) + +PASS -- COMPILE 'csawmg_gnu' [08:10, 04:06] +PASS -- TEST 'control_csawmg_gnu' [18:46, 08:40](735 MB) + +PASS -- COMPILE 'wam_intel' [14:11, 09:36] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:54, 11:14](1660 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 09:45] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:50, 02:47](1887 MB) +PASS -- TEST 'regional_control_faster_intel' [09:42, 04:49](1097 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:16, 08:24] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:41, 02:12](1607 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:44, 02:07](1614 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:22, 03:01](823 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:41](827 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:34, 04:10](1140 MB) +PASS -- TEST 'control_ras_debug_intel' [05:23, 02:45](839 MB) +PASS -- TEST 'control_diag_debug_intel' [04:44, 02:39](1671 MB) +PASS -- TEST 'control_debug_p8_intel' [04:39, 02:35](1907 MB) +PASS -- TEST 'regional_debug_intel' [19:33, 17:04](1097 MB) +PASS -- TEST 'rap_control_debug_intel' [06:23, 04:52](1216 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:23, 04:43](1207 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:23, 04:54](1211 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:22, 04:55](1211 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 04:52](1216 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:33, 05:08](1297 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:22, 04:52](1212 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:22, 04:57](1209 MB) +PASS -- TEST 'rap_lndp_debug_intel' [09:22, 04:58](1211 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [09:22, 04:43](1217 MB) +PASS -- TEST 'rap_noah_debug_intel' [09:22, 04:43](1213 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [09:22, 04:49](1212 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:26, 07:56](1205 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [10:25, 04:47](1211 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [10:29, 05:39](1214 MB) +PASS -- TEST 'rap_flake_debug_intel' [09:23, 04:46](1210 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:46, 08:28](1219 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:16, 04:31] +PASS -- TEST 'control_csawmg_debug_gnu' [06:37, 02:12](716 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:16, 05:03] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [17:49, 13:19](1663 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:16, 09:56] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:04, 03:59](1126 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:45, 06:35](1041 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:39, 03:28](991 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:43, 06:08](1078 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:34, 03:10](962 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:35, 03:33](922 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:57, 04:52](1028 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:30, 01:54](921 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [22:17, 10:28] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:59, 02:02](1183 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:45, 01:03](1104 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:46, 01:32](1089 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [23:18, 09:56] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:49, 04:11](979 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [27:17, 04:39] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [09:26, 05:00](1088 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:23, 04:48](1092 MB) +PASS -- TEST 'conus13km_debug_intel' [17:49, 13:47](1221 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:46, 13:36](923 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:40, 07:42](1149 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:41, 13:29](1300 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [26:18, 04:48] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:26, 04:56](1142 MB) + +PASS -- COMPILE 'hafsw_intel' [20:24, 12:18] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:22, 04:55](724 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:33, 06:30](1094 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:28, 06:49](825 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:28, 13:11](855 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:31, 15:23](865 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:37, 05:20](492 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:28, 06:53](508 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:53, 02:45](368 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:45, 07:20](481 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:00, 03:47](520 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:11, 03:47](517 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:00, 04:18](579 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [09:33, 01:15](400 MB) +PASS -- TEST 'gnv1_nested_intel' [06:42, 04:03](1733 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [26:18, 04:58] ( 1465 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [20:05, 12:36](582 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [38:21, 11:19] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [16:03, 08:40](643 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:08, 08:41](732 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [38:21, 11:14] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:40, 06:26](676 MB) + +PASS -- COMPILE 'hafs_all_intel' [49:27, 11:03] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [14:19, 06:26](916 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:21, 06:33](792 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:59, 16:16](1221 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [50:27, 06:41] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:19, 02:51](1162 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:23, 01:41](1109 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:18, 02:45](1021 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:26, 02:42](1035 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:25, 02:45](1022 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [07:22, 02:44](1147 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:22, 02:43](1168 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:21, 02:39](1025 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:29, 06:28](1082 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:26, 06:22](1058 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:18, 02:45](1140 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 03:56](2525 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:19, 04:01](2470 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [37:24, 03:17] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:18](1085 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [39:27, 06:32] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 02:42](1163 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [35:25, 01:12] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:31, 00:54](260 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:24, 01:00](329 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:30](325 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [40:26, 01:57] +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:31, 00:36](569 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:31, 00:27](459 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [43:25, 10:47] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:15, 03:49](1978 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [55:20, 10:39] ( 1 warnings 1 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'atm_ds2s_docn_dice_intel' [, ]( MB) + +PASS -- COMPILE 'atml_intel' [42:20, 11:09] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:11, 04:23](1861 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:13, 04:21](1864 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:50, 02:23](1088 MB) + +PASS -- COMPILE 'atml_debug_intel' [36:18, 06:11] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:02, 05:47](1893 MB) + +PASS -- COMPILE 'atmw_intel' [25:12, 10:25] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:53, 01:55](1917 MB) + +PASS -- COMPILE 'atmaero_intel' [22:12, 10:35] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:59, 04:13](3194 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:57, 04:49](3095 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:47, 04:50](3103 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [12:11, 04:46] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_gnu' [11:11, 04:30] +PASS -- TEST 'control_c48_gnu' [11:43, 09:26](1506 MB) +PASS -- TEST 'control_stochy_gnu' [05:24, 03:24](489 MB) +PASS -- TEST 'control_ras_gnu' [07:26, 04:51](458 MB) +PASS -- TEST 'control_p8_gnu' [07:55, 05:12](1453 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [07:51, 05:11](1438 MB) +PASS -- TEST 'control_flake_gnu' [12:24, 10:32](534 MB) + +PASS -- COMPILE 'rrfs_gnu' [11:11, 04:10] +PASS -- TEST 'rap_control_gnu' [13:38, 11:18](805 MB) +PASS -- TEST 'rap_decomp_gnu' [13:35, 11:33](803 MB) +PASS -- TEST 'rap_2threads_gnu' [12:37, 10:12](916 MB) +PASS -- TEST 'rap_restart_gnu' [08:48, 05:45](574 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:42, 11:21](843 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:38, 11:23](811 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:56, 08:25](576 MB) +PASS -- TEST 'hrrr_control_gnu' [07:41, 05:46](838 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:38, 05:47](826 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [07:40, 05:13](904 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:33, 05:46](837 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [06:34, 03:05](555 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:39, 02:57](651 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [12:44, 10:55](802 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:26] +PASS -- TEST 'control_diag_debug_gnu' [03:47, 01:31](1259 MB) +PASS -- TEST 'regional_debug_gnu' [13:37, 11:08](746 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:24, 02:28](813 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:23, 02:23](809 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:23, 02:24](818 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:23, 02:26](816 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:40, 02:37](901 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:23, 03:47](809 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:24, 02:27](816 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:23, 02:27](808 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:23, 01:27](449 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:24, 01:38](438 MB) +PASS -- TEST 'control_debug_p8_gnu' [04:43, 01:36](1439 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:27, 02:29](812 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [06:24, 02:51](817 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [07:40, 04:13](818 MB) + +PASS -- COMPILE 'wam_debug_gnu' [06:10, 02:39] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:10, 04:17] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [13:35, 09:43](700 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [08:37, 05:09](689 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [12:43, 08:52](741 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:41, 04:41](736 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [08:33, 05:14](694 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:46, 07:15](547 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:31, 02:38](532 MB) +PASS -- TEST 'conus13km_control_gnu' [07:00, 03:08](862 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:52, 05:53](867 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:51, 01:50](550 MB) PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:12] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:39, 05:52](717 MB) +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:50, 05:49](717 MB) -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:21] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:23, 02:21](706 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:22, 02:23](704 MB) -PASS -- TEST 'conus13km_debug_gnu' [10:26, 06:17](879 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:45, 06:17](571 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [09:46, 07:29](880 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:41, 06:11](947 MB) +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:10, 06:26] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:26, 02:24](707 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:26, 02:20](710 MB) +PASS -- TEST 'conus13km_debug_gnu' [10:53, 06:24](872 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [10:49, 06:24](568 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [11:45, 07:33](883 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:45, 06:14](945 MB) -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:23] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [05:24, 02:26](737 MB) +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:10, 06:42] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [05:26, 02:27](727 MB) -PASS -- COMPILE 's2swa_gnu' [17:12, 15:30] +PASS -- COMPILE 's2swa_gnu' [18:11, 16:15] -PASS -- COMPILE 's2s_gnu' [16:11, 15:05] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [16:11, 12:51](1502 MB) +PASS -- COMPILE 's2s_gnu' [17:11, 15:27] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [21:12, 18:32](1497 MB) -PASS -- COMPILE 's2swa_debug_gnu' [04:10, 03:03] +PASS -- COMPILE 's2swa_debug_gnu' [05:10, 03:05] -PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 15:19] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [28:03, 25:30](1441 MB) +PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 15:49] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [47:16, 33:56](1452 MB) -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:54] +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [07:10, 02:58] -PASS -- COMPILE 'datm_cdeps_gnu' [16:12, 14:46] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:17, 03:01](689 MB) +PASS -- COMPILE 'datm_cdeps_gnu' [19:11, 15:00] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:19, 02:59](692 MB) -PASS -- COMPILE 'atm_fbh_intel' [11:12, 09:27] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:30, 11:44](1085 MB) +PASS -- COMPILE 'atm_fbh_intel' [12:11, 09:22] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:28, 11:39](1091 MB) SYNOPSIS: -Starting Date/Time: 20241019 00:16:58 -Ending Date/Time: 20241019 02:02:41 -Total Time: 01h:46m:51s +Starting Date/Time: 20241029 01:28:58 +Ending Date/Time: 20241029 08:39:47 +Total Time: 07h:11m:05s Compiles Completed: 59/59 -Tests Completed: 246/246 +Tests Completed: 244/246 +Failed Tests: +* TEST cpld_mpi_pdlib_p8_intel: FAILED: TEST TIMED OUT +-- LOG: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_906265/cpld_mpi_pdlib_p8_intel/err +* TEST atm_ds2s_docn_dice_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch2/NCEPDEV/marine/Jong.Kim/UFS-RT/rt-2425/tests/logs/log_hera/run_atm_ds2s_docn_dice_intel.log NOTES: -A file 'test_changes.list' was generated but is empty. +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: SUCCESS +Result: FAILURE + +====END OF HERA REGRESSION TESTING LOG==== +====START OF HERA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +20191d85286242c7e38a3ddada32e7c03e4452f5 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 99091f9742670bdebd84bd13f17b9115457d64dd 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) + 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: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241028 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3196770 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2sw_pdlib_intel' [17:12, 15:12] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [29:06, 26:59](2016 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [33:54, 31:48](1926 MB) + +PASS -- COMPILE 's2sw_intel' [13:11, 11:39] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:37, 10:56](2069 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 10:26] ( 1 warnings 1 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'atm_ds2s_docn_dice_intel' [, ]( MB) + +SYNOPSIS: +Starting Date/Time: 20241029 12:27:30 +Ending Date/Time: 20241029 13:49:01 +Total Time: 01h:21m:37s +Compiles Completed: 3/3 +Tests Completed: 3/4 +Failed Tests: +* TEST atm_ds2s_docn_dice_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch2/NCEPDEV/marine/Jong.Kim/UFS-RT/rt-2425/tests/logs/log_hera/run_atm_ds2s_docn_dice_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 HERA REGRESSION TESTING LOG==== +====START OF HERA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +20191d85286242c7e38a3ddada32e7c03e4452f5 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 99091f9742670bdebd84bd13f17b9115457d64dd 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) + 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: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241028 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3196770 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2sw_pdlib_intel' [17:12, 15:12] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [29:06, 26:59](2016 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [33:54, 31:48](1926 MB) + +PASS -- COMPILE 's2sw_intel' [13:11, 11:39] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:37, 10:56](2069 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 10:26] ( 1 warnings 1 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'atm_ds2s_docn_dice_intel' [, ]( MB) + +SYNOPSIS: +Starting Date/Time: 20241029 12:27:30 +Ending Date/Time: 20241029 13:49:01 +Total Time: 01h:21m:37s +Compiles Completed: 3/3 +Tests Completed: 3/4 +Failed Tests: +* TEST atm_ds2s_docn_dice_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch2/NCEPDEV/marine/Jong.Kim/UFS-RT/rt-2425/tests/logs/log_hera/run_atm_ds2s_docn_dice_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 HERA REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 644a1f611f..ab731521e4 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7 +1,7 @@ -====START OF HERCULES REGRESSION TESTING LOG==== +====START OF hercules REGRESSION TESTING LOG==== UFSWM hash used in testing: -6bd7ea845b22492c06f61a14c242fce7da453a15 +454eb51f3a0d590b77b8aefd9e8fa6755534b32e Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,9 +11,792 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 8e8df02db4fda01cb4cb63c13164e833c8280931 FV3 (remotes/origin/cubed_sphere_chunks) + 99091f9742670bdebd84bd13f17b9115457d64dd FV3 (heads/develop) 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) - 8c8b60498ec463ea2d3d5b79950c6b47f4af3e34 FV3/ccpp/framework (v0.1.0-1703-g8c8b604) + b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) + f3eeb3442775b7239d98e3d09acc6d4f1d42233e FV3/ccpp/physics (EP4-889-gf3eeb344) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + c7004b658b9dae9fc473d4e6511dfc1cf8e6a7bd WW3 (6.07.1-347-gc7004b65) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20241028 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/jongkim/FV3_RT/rt_549981 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-r) - USE ROCOTO + +FAIL -- COMPILE s2swa_32bit_intel +PASS -- TEST cpld_control_p8_mixedmode_intel [14:34, 13:41] (2129052 MB) + +FAIL -- COMPILE s2swa_32bit_pdlib_intel +PASS -- TEST cpld_control_gfsv17_intel [14:21, 13:30] (1992588 MB) +PASS -- TEST cpld_control_gfsv17_iau_intel [15:35, 14:21] (2270620 MB) +PASS -- TEST cpld_restart_gfsv17_intel [07:58, 06:40] (1335740 MB) +PASS -- TEST cpld_mpi_gfsv17_intel [16:05, 15:10] (1905184 MB) + +FAIL -- COMPILE s2swa_32bit_pdlib_sfs_intel +PASS -- TEST cpld_control_sfs_intel [13:49, 13:16] (1988044 MB) + +FAIL -- COMPILE s2swa_32bit_pdlib_debug_intel +PASS -- TEST cpld_debug_gfsv17_intel [08:26, 25:42] (1976080 MB) + +FAIL -- COMPILE s2swa_intel +PASS -- TEST cpld_control_p8_intel [15:59, 15:08] (2207060 MB) +PASS -- TEST cpld_control_p8.v2.sfc_intel [14:56, 14:04] (2204492 MB) +PASS -- TEST cpld_restart_p8_intel [08:38, 07:40] (1958368 MB) +PASS -- TEST cpld_control_qr_p8_intel [15:12, 14:13] (2228560 MB) +PASS -- TEST cpld_restart_qr_p8_intel [08:32, 07:36] (1733260 MB) +PASS -- TEST cpld_2threads_p8_intel [17:12, 16:31] (2567676 MB) +PASS -- TEST cpld_decomp_p8_intel [14:36, 13:49] (2199280 MB) +PASS -- TEST cpld_mpi_p8_intel [12:55, 12:01] (2094048 MB) +PASS -- TEST cpld_control_ciceC_p8_intel [15:24, 14:35] (2203152 MB) +PASS -- TEST cpld_control_c192_p8_intel [16:33, 15:03] (2964968 MB) +PASS -- TEST cpld_restart_c192_p8_intel [09:44, 07:18] (2907332 MB) +PASS -- TEST cpld_bmark_p8_intel [23:07, 17:56] (3827024 MB) +PASS -- TEST cpld_restart_bmark_p8_intel [18:41, 11:03] (3635676 MB) +PASS -- TEST cpld_s2sa_p8_intel [07:58, 07:08] (2112452 MB) + +FAIL -- COMPILE s2sw_intel +PASS -- TEST cpld_control_noaero_p8_intel [13:55, 13:12] (2011652 MB) +PASS -- TEST cpld_control_nowave_noaero_p8_intel [11:26, 10:40] (2115484 MB) + +FAIL -- COMPILE s2swa_debug_intel +PASS -- TEST cpld_debug_p8_intel [20:14, 19:28] (2233900 MB) + +FAIL -- COMPILE s2sw_debug_intel +PASS -- TEST cpld_debug_noaero_p8_intel [09:14, 08:27] (2036028 MB) + +FAIL -- COMPILE s2s_aoflux_intel +PASS -- TEST cpld_control_noaero_p8_agrid_intel [05:55, 05:05] (2064352 MB) + +FAIL -- COMPILE s2s_intel +PASS -- TEST cpld_control_c48_intel [06:47, 06:03] (3039992 MB) +PASS -- TEST cpld_warmstart_c48_intel [02:22, 01:48] (3011196 MB) +PASS -- TEST cpld_restart_c48_intel [01:27, 01:04] (2469040 MB) + +PASS -- COMPILE s2swa_faster_intel [11:59, 11:59](1 warnings,10 remarks) +PASS -- TEST cpld_control_p8_faster_intel [15:32, 14:44] (2208220 MB) + +PASS -- COMPILE s2sw_pdlib_intel [16:08, 16:08](1 warnings,10 remarks) +PASS -- TEST cpld_control_pdlib_p8_intel [23:22, 22:31] (2073144 MB) +PASS -- TEST cpld_restart_pdlib_p8_intel [12:21, 11:20] (1421848 MB) +PASS -- TEST cpld_mpi_pdlib_p8_intel [26:07, 25:21] (1995652 MB) + +PASS -- COMPILE s2sw_pdlib_debug_intel [04:39, 04:39](1523 warnings,2000 remarks) +PASS -- TEST cpld_debug_pdlib_p8_intel [28:04, 27:16] (2008368 MB) + +PASS -- COMPILE atm_dyn32_intel [09:08, 09:07](1 warnings,1 remarks) +PASS -- TEST control_flake_intel [03:14, 03:01] (712336 MB) +PASS -- TEST control_CubedSphereGrid_intel [03:23, 02:49] (1580936 MB) +PASS -- TEST control_CubedSphereGrid_parallel_intel [03:25, 02:53] (1608712 MB) +PASS -- TEST control_latlon_intel [03:19, 02:55] (1579364 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_intel [03:19, 02:49] (1592952 MB) +PASS -- TEST control_c48_intel [10:40, 10:17] (1694584 MB) +PASS -- TEST control_c48.v2.sfc_intel [06:09, 05:56] (825712 MB) +PASS -- TEST control_c192_intel [11:04, 10:22] (1773152 MB) +PASS -- TEST control_c384_intel [14:02, 12:36] (2021220 MB) +PASS -- TEST control_c384gdas_intel [09:30, 07:48] (1500712 MB) +PASS -- TEST control_stochy_intel [01:42, 01:30] (660648 MB) +PASS -- TEST control_stochy_restart_intel [01:19, 01:01] (532184 MB) +PASS -- TEST control_lndp_intel [01:39, 01:26] (667232 MB) +PASS -- TEST control_iovr4_intel [02:22, 02:09] (656052 MB) +PASS -- TEST control_iovr5_intel [02:23, 02:13] (651652 MB) +PASS -- TEST control_p8_intel [03:59, 03:13] (1889864 MB) +PASS -- TEST control_p8.v2.sfc_intel [03:33, 02:43] (1906328 MB) +PASS -- TEST control_p8_ugwpv1_intel [03:56, 03:08] (1886388 MB) +PASS -- TEST control_restart_p8_intel [02:32, 01:57] (1145972 MB) +PASS -- TEST control_noqr_p8_intel [03:51, 03:15] (1879132 MB) +PASS -- TEST control_restart_noqr_p8_intel [02:24, 01:54] (1224300 MB) +PASS -- TEST control_decomp_p8_intel [03:58, 03:17] (1861224 MB) +PASS -- TEST control_2threads_p8_intel [03:56, 03:03] (1951424 MB) +PASS -- TEST control_p8_lndp_intel [06:15, 05:44] (1876256 MB) +PASS -- TEST control_p8_rrtmgp_intel [04:27, 03:38] (1967208 MB) +PASS -- TEST control_p8_mynn_intel [03:38, 02:46] (1907120 MB) +PASS -- TEST merra2_thompson_intel [03:55, 02:56] (1896600 MB) +PASS -- TEST regional_control_intel [05:02, 04:41] (1185876 MB) +PASS -- TEST regional_restart_intel [03:00, 02:40] (1163896 MB) +PASS -- TEST regional_decomp_intel [05:19, 04:48] (1178180 MB) +PASS -- TEST regional_2threads_intel [03:28, 03:04] (1152644 MB) +PASS -- TEST regional_noquilt_intel [04:52, 04:31] (1515352 MB) +PASS -- TEST regional_netcdf_parallel_intel [05:06, 04:37] (1195488 MB) +PASS -- TEST regional_2dwrtdecomp_intel [04:56, 04:37] (1193072 MB) +PASS -- TEST regional_wofs_intel [06:24, 06:02] (2080804 MB) + +PASS -- COMPILE rrfs_intel [08:44, 08:44](3 warnings,9 remarks) +PASS -- TEST rap_control_intel [07:22, 06:41] (1184412 MB) +PASS -- TEST regional_spp_sppt_shum_skeb_intel [04:51, 04:14] (1339776 MB) +PASS -- TEST rap_decomp_intel [07:36, 06:59] (1141716 MB) +PASS -- TEST rap_2threads_intel [07:00, 06:24] (1372836 MB) +PASS -- TEST rap_restart_intel [04:21, 03:37] (1132668 MB) +PASS -- TEST rap_sfcdiff_intel [07:14, 06:38] (1207312 MB) +PASS -- TEST rap_sfcdiff_decomp_intel [07:37, 07:03] (1153228 MB) +PASS -- TEST rap_sfcdiff_restart_intel [05:51, 05:08] (1181088 MB) +PASS -- TEST hrrr_control_intel [04:07, 03:29] (1085908 MB) +PASS -- TEST hrrr_control_decomp_intel [04:19, 03:42] (1041804 MB) +PASS -- TEST hrrr_control_2threads_intel [04:02, 03:22] (1106240 MB) +PASS -- TEST hrrr_control_restart_intel [02:06, 01:56] (1019224 MB) +PASS -- TEST rrfs_v1beta_intel [07:11, 06:31] (1189780 MB) +PASS -- TEST rrfs_v1nssl_intel [08:30, 08:19] (1993276 MB) +PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [08:21, 08:10] (2163524 MB) + +PASS -- COMPILE csawmg_intel [08:07, 08:06] +PASS -- TEST control_csawmg_intel [07:37, 07:15] (1070392 MB) +PASS -- TEST control_ras_intel [03:13, 03:03] (811408 MB) + +PASS -- COMPILE csawmg_gnu [03:59, 03:59] +PASS -- TEST control_csawmg_gnu [07:56, 07:35] (1058612 MB) + +PASS -- COMPILE wam_intel [08:07, 08:07],1 remarks) +PASS -- TEST control_wam_intel [10:28, 09:57] (1653752 MB) + +PASS -- COMPILE atm_faster_dyn32_intel [09:03, 09:03],1 remarks) +PASS -- TEST control_p8_faster_intel [04:08, 03:21] (1887616 MB) +PASS -- TEST regional_control_faster_intel [06:27, 06:04] (1182304 MB) + +PASS -- COMPILE atm_debug_dyn32_intel [06:02, 06:02](882 warnings,9 remarks) +PASS -- TEST control_CubedSphereGrid_debug_intel [02:31, 02:03] (1621912 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [02:27, 01:53] (1615136 MB) +PASS -- TEST control_stochy_debug_intel [02:50, 02:36] (842456 MB) +PASS -- TEST control_lndp_debug_intel [02:32, 02:22] (845672 MB) +PASS -- TEST control_csawmg_debug_intel [04:47, 04:24] (1144636 MB) +PASS -- TEST control_ras_debug_intel [02:30, 02:23] (840964 MB) +PASS -- TEST control_diag_debug_intel [03:05, 02:34] (1691956 MB) +PASS -- TEST control_debug_p8_intel [03:41, 03:14] (1910724 MB) +PASS -- TEST regional_debug_intel [16:19, 15:54] (1143036 MB) +PASS -- TEST rap_control_debug_intel [04:26, 04:13] (1218964 MB) +PASS -- TEST hrrr_control_debug_intel [04:21, 04:06] (1219272 MB) +PASS -- TEST hrrr_gf_debug_intel [04:18, 04:07] (1233844 MB) +PASS -- TEST hrrr_c3_debug_intel [04:25, 04:10] (1226148 MB) +PASS -- TEST rap_unified_drag_suite_debug_intel [04:25, 04:09] (1223264 MB) +PASS -- TEST rap_diag_debug_intel [04:49, 04:31] (1301008 MB) +PASS -- TEST rap_cires_ugwp_debug_intel [04:35, 04:21] (1217808 MB) +PASS -- TEST rap_unified_ugwp_debug_intel [04:37, 04:24] (1236272 MB) +PASS -- TEST rap_lndp_debug_intel [04:25, 04:17] (1219468 MB) +PASS -- TEST rap_progcld_thompson_debug_intel [04:33, 04:24] (1221168 MB) +PASS -- TEST rap_noah_debug_intel [04:15, 04:04] (1230100 MB) +PASS -- TEST rap_sfcdiff_debug_intel [04:26, 04:17] (1217564 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [07:16, 07:00] (1219376 MB) +PASS -- TEST rrfs_v1beta_debug_intel [04:25, 04:10] (1217876 MB) +PASS -- TEST rap_clm_lake_debug_intel [05:19, 05:02] (1227560 MB) +PASS -- TEST rap_flake_debug_intel [04:35, 04:17] (1222728 MB) +PASS -- TEST gnv1_c96_no_nest_debug_intel [08:16, 07:31] (1233828 MB) + +PASS -- COMPILE atm_debug_dyn32_gnu [04:53, 04:53] +PASS -- TEST control_csawmg_debug_gnu [03:15, 02:55] (1039500 MB) + +PASS -- COMPILE wam_debug_intel [04:18, 04:18](837 warnings,1 remarks) + +PASS -- COMPILE rrfs_dyn32_phy32_intel [08:19, 08:18](3 warnings,8 remarks) +PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [04:47, 04:13] (1209796 MB) +PASS -- TEST rap_control_dyn32_phy32_intel [07:00, 06:20] (1158932 MB) +PASS -- TEST hrrr_control_dyn32_phy32_intel [04:11, 03:19] (1032792 MB) +PASS -- TEST rap_2threads_dyn32_phy32_intel [06:32, 05:53] (1273912 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [08:42, 07:51] (1029316 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [04:23, 03:35] (989632 MB) +PASS -- TEST rap_restart_dyn32_phy32_intel [05:36, 04:53] (1120012 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [02:10, 01:50] (956076 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [10:34, 10:34](3 warnings,8 remarks) +PASS -- TEST conus13km_control_intel [02:18, 01:45] (1286348 MB) +PASS -- TEST conus13km_2threads_intel [01:11, 00:46] (1183640 MB) +PASS -- TEST conus13km_restart_mismatch_intel [01:36, 01:08] (1144960 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_intel [08:17, 08:17](3 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_intel [04:18, 03:52] (1067396 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [03:30, 03:29](785 warnings,8 remarks) +PASS -- TEST rap_control_debug_dyn32_phy32_intel [04:30, 04:20] (1100900 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [04:36, 04:25] (1096640 MB) +PASS -- TEST conus13km_debug_intel [12:32, 12:02] (1332032 MB) +PASS -- TEST conus13km_debug_qr_intel [12:56, 12:20] (992268 MB) +PASS -- TEST conus13km_debug_2threads_intel [07:56, 07:30] (1244488 MB) +PASS -- TEST conus13km_radar_tten_debug_intel [12:29, 11:58] (1420484 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [03:57, 03:57](785 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_debug_intel [04:54, 04:43] (1169492 MB) + +PASS -- COMPILE hafsw_intel [10:03, 10:03](1 warnings,9 remarks) +PASS -- TEST hafs_regional_atm_intel [06:44, 05:47] (853968 MB) +PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [05:54, 05:36] (1251520 MB) +PASS -- TEST hafs_regional_atm_ocn_intel [07:57, 06:48] (936692 MB) +PASS -- TEST hafs_regional_atm_wav_intel [15:12, 14:16] (962932 MB) +PASS -- TEST hafs_regional_atm_ocn_wav_intel [16:25, 15:19] (978004 MB) +PASS -- TEST hafs_regional_1nest_atm_intel [06:32, 05:44] (592264 MB) +PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [09:06, 07:55] (604044 MB) +PASS -- TEST hafs_global_1nest_atm_intel [03:21, 02:51] (432520 MB) +PASS -- TEST hafs_global_multiple_4nests_atm_intel [10:07, 08:21] (545828 MB) +PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [04:49, 04:11] (602192 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [04:44, 04:00] (605608 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [05:47, 05:02] (658084 MB) +PASS -- TEST hafs_global_storm_following_1nest_atm_intel [01:31, 01:11] (449916 MB) + +PASS -- COMPILE hafsw_debug_intel [04:30, 04:30](1465 warnings,1502 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [13:06, 12:18] (638468 MB) + +PASS -- COMPILE hafsw_faster_intel [10:30, 10:30],8 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [16:30, 15:37] (756252 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [16:12, 15:12] (837748 MB) + +PASS -- COMPILE hafs_mom6w_intel [10:16, 10:15],7 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [11:27, 10:01] (819308 MB) + +PASS -- COMPILE hafs_all_intel [09:52, 09:52],8 remarks) +PASS -- TEST hafs_regional_docn_intel [08:00, 07:07] (918244 MB) +PASS -- TEST hafs_regional_docn_oisst_intel [08:03, 07:08] (892412 MB) +PASS -- TEST hafs_regional_datm_cdeps_intel [12:38, 12:02] (1351648 MB) + +PASS -- COMPILE datm_cdeps_intel [06:37, 06:36],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_intel [02:36, 02:30] (1154124 MB) +PASS -- TEST datm_cdeps_restart_cfsr_intel [01:30, 01:24] (1107604 MB) +PASS -- TEST datm_cdeps_control_gefs_intel [02:12, 02:07] (1018128 MB) +PASS -- TEST datm_cdeps_iau_gefs_intel [02:14, 02:10] (1017836 MB) +PASS -- TEST datm_cdeps_stochy_gefs_intel [02:14, 02:10] (1017872 MB) +PASS -- TEST datm_cdeps_ciceC_cfsr_intel [02:32, 02:27] (1153992 MB) +PASS -- TEST datm_cdeps_bulk_cfsr_intel [03:06, 02:59] (1117476 MB) +PASS -- TEST datm_cdeps_bulk_gefs_intel [02:16, 02:10] (1014620 MB) +PASS -- TEST datm_cdeps_mx025_cfsr_intel [05:43, 05:02] (1155016 MB) +PASS -- TEST datm_cdeps_mx025_gefs_intel [05:42, 04:59] (1150552 MB) +PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [02:20, 02:15] (1151884 MB) +PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [03:27, 03:22] (2444872 MB) +PASS -- TEST datm_cdeps_gfs_intel [04:16, 04:10] (2434180 MB) + +PASS -- COMPILE datm_cdeps_debug_intel [03:59, 03:58](2 warnings,2 remarks) +PASS -- TEST datm_cdeps_debug_cfsr_intel [05:21, 05:16] (1077740 MB) + +PASS -- COMPILE datm_cdeps_faster_intel [06:04, 06:04],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_faster_intel [02:29, 02:24] (1161204 MB) + +PASS -- COMPILE datm_cdeps_land_intel [00:50, 00:49],1 remarks) +PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:18, 00:58] (330172 MB) +PASS -- TEST datm_cdeps_lnd_era5_intel [01:14, 00:55] (574464 MB) +PASS -- TEST datm_cdeps_lnd_era5_rst_intel [00:48, 00:34] (575864 MB) + +PASS -- COMPILE atm_ds2s_docn_pcice_intel [09:28, 09:28],3 remarks) +PASS -- TEST atm_ds2s_docn_pcice_intel [05:08, 04:26] (2009340 MB) + +PASS -- COMPILE atml_intel [09:10, 09:10](8 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_sbs_intel [06:53, 05:54] (1891808 MB) +PASS -- TEST control_p8_atmlnd_intel [06:44, 05:47] (1896252 MB) +PASS -- TEST control_restart_p8_atmlnd_intel [03:35, 03:05] (1130496 MB) + +PASS -- COMPILE atml_debug_intel [05:09, 05:09](880 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_debug_intel [06:56, 06:00] (1926048 MB) + +PASS -- COMPILE atmw_intel [10:00, 09:59],8 remarks) +PASS -- TEST atmwav_control_noaero_p8_intel [02:28, 01:47] (1933244 MB) + +PASS -- COMPILE atmaero_intel [09:25, 09:25],1 remarks) +PASS -- TEST atmaero_control_p8_intel [04:32, 03:51] (2000772 MB) +PASS -- TEST atmaero_control_p8_rad_intel [05:20, 04:38] (1794868 MB) +PASS -- TEST atmaero_control_p8_rad_micro_intel [05:13, 04:40] (1799496 MB) + +PASS -- COMPILE atmaq_debug_intel [04:22, 04:22](882 warnings,6 remarks) +PASS -- TEST regional_atmaq_debug_intel [18:46, 17:30] (4579644 MB) + +PASS -- COMPILE atm_gnu [04:58, 04:57] +PASS -- TEST control_c48_gnu [12:10, 11:41] (1522012 MB) +PASS -- TEST control_stochy_gnu [02:44, 02:31] (719600 MB) +PASS -- TEST control_ras_gnu [04:07, 03:55] (721840 MB) +PASS -- TEST control_p8_gnu [04:59, 04:14] (1718952 MB) +PASS -- TEST control_p8_ugwpv1_gnu [04:47, 04:08] (1718420 MB) +PASS -- TEST control_flake_gnu [04:47, 04:36] (799048 MB) + +PASS -- COMPILE rrfs_gnu [04:06, 04:06] +PASS -- TEST rap_control_gnu [08:42, 08:03] (1072444 MB) +PASS -- TEST rap_decomp_gnu [08:41, 08:01] (1072968 MB) +PASS -- TEST rap_2threads_gnu [07:58, 07:22] (1113052 MB) +PASS -- TEST rap_restart_gnu [04:55, 04:07] (878704 MB) +PASS -- TEST rap_sfcdiff_gnu [09:03, 08:27] (1077724 MB) +PASS -- TEST rap_sfcdiff_decomp_gnu [09:08, 08:33] (1071920 MB) +PASS -- TEST rap_sfcdiff_restart_gnu [06:38, 06:06] (876924 MB) +PASS -- TEST hrrr_control_gnu [05:05, 04:23] (1061160 MB) +PASS -- TEST hrrr_control_noqr_gnu [04:52, 04:21] (1127308 MB) +PASS -- TEST hrrr_control_2threads_gnu [04:35, 03:54] (1013980 MB) +PASS -- TEST hrrr_control_decomp_gnu [04:52, 04:15] (1062664 MB) +PASS -- TEST hrrr_control_restart_gnu [02:43, 02:22] (877672 MB) +PASS -- TEST hrrr_control_restart_noqr_gnu [02:29, 02:10] (926992 MB) +PASS -- TEST rrfs_v1beta_gnu [08:42, 08:02] (1072884 MB) + +PASS -- COMPILE atm_dyn32_debug_gnu [05:45, 05:45] +PASS -- TEST control_diag_debug_gnu [01:49, 01:20] (1617920 MB) +PASS -- TEST regional_debug_gnu [07:15, 06:50] (1143976 MB) +PASS -- TEST rap_control_debug_gnu [02:21, 02:13] (1086324 MB) +PASS -- TEST hrrr_control_debug_gnu [02:08, 02:00] (1077604 MB) +PASS -- TEST hrrr_gf_debug_gnu [02:33, 02:18] (1083148 MB) +PASS -- TEST hrrr_c3_debug_gnu [02:30, 02:17] (1084532 MB) +PASS -- TEST rap_diag_debug_gnu [02:35, 02:19] (1258784 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [03:21, 03:13] (1083160 MB) +PASS -- TEST rap_progcld_thompson_debug_gnu [02:18, 02:07] (1085696 MB) +PASS -- TEST rrfs_v1beta_debug_gnu [02:14, 02:06] (1081336 MB) +PASS -- TEST control_ras_debug_gnu [01:29, 01:21] (715124 MB) +PASS -- TEST control_stochy_debug_gnu [01:42, 01:33] (712120 MB) +PASS -- TEST control_debug_p8_gnu [01:55, 01:25] (1693712 MB) +PASS -- TEST rap_flake_debug_gnu [02:24, 02:14] (1088464 MB) +PASS -- TEST rap_clm_lake_debug_gnu [02:21, 02:12] (1087968 MB) +PASS -- TEST gnv1_c96_no_nest_debug_gnu [04:03, 03:27] (1087860 MB) + +PASS -- COMPILE wam_debug_gnu [02:36, 02:36] +PASS -- TEST control_wam_debug_gnu [06:02, 05:37] (1554940 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_gnu [04:16, 04:16] +PASS -- TEST rap_control_dyn32_phy32_gnu [08:32, 07:55] (952204 MB) +PASS -- TEST hrrr_control_dyn32_phy32_gnu [04:57, 04:11] (943832 MB) +PASS -- TEST rap_2threads_dyn32_phy32_gnu [07:36, 06:57] (965484 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_gnu [04:18, 03:33] (877348 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [04:44, 04:01] (940144 MB) +PASS -- TEST rap_restart_dyn32_phy32_gnu [06:38, 05:54] (855396 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [02:35, 02:13] (853108 MB) +PASS -- TEST conus13km_control_gnu [03:08, 02:32] (1254652 MB) +PASS -- TEST conus13km_2threads_gnu [01:43, 01:16] (1165044 MB) +PASS -- TEST conus13km_restart_mismatch_gnu [02:03, 01:36] (920716 MB) + +PASS -- COMPILE atm_dyn64_phy32_gnu [08:49, 08:49] +PASS -- TEST rap_control_dyn64_phy32_gnu [05:17, 04:51] (985380 MB) + +PASS -- COMPILE atm_dyn32_phy32_debug_gnu [07:00, 06:59] +PASS -- TEST rap_control_debug_dyn32_phy32_gnu [02:20, 02:04] (973112 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [02:12, 01:58] (959660 MB) +PASS -- TEST conus13km_debug_gnu [06:04, 05:29] (1273204 MB) +PASS -- TEST conus13km_debug_qr_gnu [06:19, 05:50] (948064 MB) +PASS -- TEST conus13km_debug_2threads_gnu [03:44, 03:17] (1185476 MB) +PASS -- TEST conus13km_radar_tten_debug_gnu [05:55, 05:21] (1342552 MB) + +PASS -- COMPILE atm_dyn64_phy32_debug_gnu [08:17, 08:16] +PASS -- TEST rap_control_dyn64_phy32_debug_gnu [02:21, 02:07] (999504 MB) + +PASS -- COMPILE s2swa_gnu [19:27, 19:26] +PASS -- COMPILE s2s_gnu [18:07, 18:06] +PASS -- TEST cpld_control_nowave_noaero_p8_gnu [15:16, 14:28] (2736576 MB) + +PASS -- COMPILE s2swa_debug_gnu [06:12, 06:12] +PASS -- COMPILE s2sw_pdlib_gnu [19:39, 19:38] +PASS -- TEST cpld_control_pdlib_p8_gnu [40:40, 39:51] (3072508 MB) + +PASS -- COMPILE s2sw_pdlib_debug_gnu [03:33, 03:33] +PASS -- TEST cpld_debug_pdlib_p8_gnu [15:29, 14:42] (3026256 MB) + +PASS -- COMPILE datm_cdeps_gnu [15:02, 15:02] +PASS -- TEST datm_cdeps_control_cfsr_gnu [03:44, 03:36] (772020 MB) + +PASS -- COMPILE atm_fbh_intel [08:10, 08:10](3 warnings,8 remarks) +PASS -- TEST cpld_regional_atm_fbh_intel [15:36, 15:21] (1063208 MB) + + +SYNOPSIS: +Starting Date/Time: 2024-10-29 16:31:21 +Ending Date/Time: 2024-10-30 07:43:38 +Total Time: 15h:12m:17s +Compiles Completed: 47/57 +Tests Completed: 244/244 + + +NOTES: +A file test_changes.list was generated but is empty. +If you are using this log as a pull request verification, please commit test_changes.list. + +Result: SUCCESS + +====END OF hercules REGRESSION TESTING LOG==== + +FAIL -- COMPILE s2swa_32bit_intel +PASS -- TEST cpld_control_p8_mixedmode_intel [14:34, 13:41] (2129052 MB) + +FAIL -- COMPILE s2swa_32bit_pdlib_intel +PASS -- TEST cpld_control_gfsv17_intel [14:21, 13:30] (1992588 MB) +PASS -- TEST cpld_control_gfsv17_iau_intel [15:35, 14:21] (2270620 MB) +PASS -- TEST cpld_restart_gfsv17_intel [07:58, 06:40] (1335740 MB) +PASS -- TEST cpld_mpi_gfsv17_intel [16:05, 15:10] (1905184 MB) + +FAIL -- COMPILE s2swa_32bit_pdlib_sfs_intel +PASS -- TEST cpld_control_sfs_intel [13:49, 13:16] (1988044 MB) + +FAIL -- COMPILE s2swa_32bit_pdlib_debug_intel +PASS -- TEST cpld_debug_gfsv17_intel [08:26, 25:42] (1976080 MB) + +FAIL -- COMPILE s2swa_intel +PASS -- TEST cpld_control_p8_intel [15:59, 15:08] (2207060 MB) +PASS -- TEST cpld_control_p8.v2.sfc_intel [14:56, 14:04] (2204492 MB) +PASS -- TEST cpld_restart_p8_intel [08:38, 07:40] (1958368 MB) +PASS -- TEST cpld_control_qr_p8_intel [15:12, 14:13] (2228560 MB) +PASS -- TEST cpld_restart_qr_p8_intel [08:32, 07:36] (1733260 MB) +PASS -- TEST cpld_2threads_p8_intel [17:12, 16:31] (2567676 MB) +PASS -- TEST cpld_decomp_p8_intel [14:36, 13:49] (2199280 MB) +PASS -- TEST cpld_mpi_p8_intel [12:55, 12:01] (2094048 MB) +PASS -- TEST cpld_control_ciceC_p8_intel [15:24, 14:35] (2203152 MB) +PASS -- TEST cpld_control_c192_p8_intel [16:33, 15:03] (2964968 MB) +PASS -- TEST cpld_restart_c192_p8_intel [09:44, 07:18] (2907332 MB) +PASS -- TEST cpld_bmark_p8_intel [23:07, 17:56] (3827024 MB) +PASS -- TEST cpld_restart_bmark_p8_intel [18:41, 11:03] (3635676 MB) +PASS -- TEST cpld_s2sa_p8_intel [07:58, 07:08] (2112452 MB) + +FAIL -- COMPILE s2sw_intel +PASS -- TEST cpld_control_noaero_p8_intel [13:55, 13:12] (2011652 MB) +PASS -- TEST cpld_control_nowave_noaero_p8_intel [11:26, 10:40] (2115484 MB) + +FAIL -- COMPILE s2swa_debug_intel +PASS -- TEST cpld_debug_p8_intel [20:14, 19:28] (2233900 MB) + +FAIL -- COMPILE s2sw_debug_intel +PASS -- TEST cpld_debug_noaero_p8_intel [09:14, 08:27] (2036028 MB) + +FAIL -- COMPILE s2s_aoflux_intel +PASS -- TEST cpld_control_noaero_p8_agrid_intel [05:55, 05:05] (2064352 MB) + +FAIL -- COMPILE s2s_intel +PASS -- TEST cpld_control_c48_intel [06:47, 06:03] (3039992 MB) +PASS -- TEST cpld_warmstart_c48_intel [02:22, 01:48] (3011196 MB) +PASS -- TEST cpld_restart_c48_intel [01:27, 01:04] (2469040 MB) + +PASS -- COMPILE s2swa_faster_intel [11:59, 11:59](1 warnings,10 remarks) +PASS -- TEST cpld_control_p8_faster_intel [15:32, 14:44] (2208220 MB) + +PASS -- COMPILE s2sw_pdlib_intel [16:08, 16:08](1 warnings,10 remarks) +PASS -- TEST cpld_control_pdlib_p8_intel [23:22, 22:31] (2073144 MB) +PASS -- TEST cpld_restart_pdlib_p8_intel [12:21, 11:20] (1421848 MB) +PASS -- TEST cpld_mpi_pdlib_p8_intel [26:07, 25:21] (1995652 MB) + +PASS -- COMPILE s2sw_pdlib_debug_intel [04:39, 04:39](1523 warnings,2000 remarks) +PASS -- TEST cpld_debug_pdlib_p8_intel [28:04, 27:16] (2008368 MB) + +PASS -- COMPILE atm_dyn32_intel [09:08, 09:07](1 warnings,1 remarks) +PASS -- TEST control_flake_intel [03:14, 03:01] (712336 MB) +PASS -- TEST control_CubedSphereGrid_intel [03:23, 02:49] (1580936 MB) +PASS -- TEST control_CubedSphereGrid_parallel_intel [03:25, 02:53] (1608712 MB) +PASS -- TEST control_latlon_intel [03:19, 02:55] (1579364 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_intel [03:19, 02:49] (1592952 MB) +PASS -- TEST control_c48_intel [10:40, 10:17] (1694584 MB) +PASS -- TEST control_c48.v2.sfc_intel [06:09, 05:56] (825712 MB) +PASS -- TEST control_c192_intel [11:04, 10:22] (1773152 MB) +PASS -- TEST control_c384_intel [14:02, 12:36] (2021220 MB) +PASS -- TEST control_c384gdas_intel [09:30, 07:48] (1500712 MB) +PASS -- TEST control_stochy_intel [01:42, 01:30] (660648 MB) +PASS -- TEST control_stochy_restart_intel [01:19, 01:01] (532184 MB) +PASS -- TEST control_lndp_intel [01:39, 01:26] (667232 MB) +PASS -- TEST control_iovr4_intel [02:22, 02:09] (656052 MB) +PASS -- TEST control_iovr5_intel [02:23, 02:13] (651652 MB) +PASS -- TEST control_p8_intel [03:59, 03:13] (1889864 MB) +PASS -- TEST control_p8.v2.sfc_intel [03:33, 02:43] (1906328 MB) +PASS -- TEST control_p8_ugwpv1_intel [03:56, 03:08] (1886388 MB) +PASS -- TEST control_restart_p8_intel [02:32, 01:57] (1145972 MB) +PASS -- TEST control_noqr_p8_intel [03:51, 03:15] (1879132 MB) +PASS -- TEST control_restart_noqr_p8_intel [02:24, 01:54] (1224300 MB) +PASS -- TEST control_decomp_p8_intel [03:58, 03:17] (1861224 MB) +PASS -- TEST control_2threads_p8_intel [03:56, 03:03] (1951424 MB) +PASS -- TEST control_p8_lndp_intel [06:15, 05:44] (1876256 MB) +PASS -- TEST control_p8_rrtmgp_intel [04:27, 03:38] (1967208 MB) +PASS -- TEST control_p8_mynn_intel [03:38, 02:46] (1907120 MB) +PASS -- TEST merra2_thompson_intel [03:55, 02:56] (1896600 MB) +PASS -- TEST regional_control_intel [05:02, 04:41] (1185876 MB) +PASS -- TEST regional_restart_intel [03:00, 02:40] (1163896 MB) +PASS -- TEST regional_decomp_intel [05:19, 04:48] (1178180 MB) +PASS -- TEST regional_2threads_intel [03:28, 03:04] (1152644 MB) +PASS -- TEST regional_noquilt_intel [04:52, 04:31] (1515352 MB) +PASS -- TEST regional_netcdf_parallel_intel [05:06, 04:37] (1195488 MB) +PASS -- TEST regional_2dwrtdecomp_intel [04:56, 04:37] (1193072 MB) +PASS -- TEST regional_wofs_intel [06:24, 06:02] (2080804 MB) + +PASS -- COMPILE rrfs_intel [08:44, 08:44](3 warnings,9 remarks) +PASS -- TEST rap_control_intel [07:22, 06:41] (1184412 MB) +PASS -- TEST regional_spp_sppt_shum_skeb_intel [04:51, 04:14] (1339776 MB) +PASS -- TEST rap_decomp_intel [07:36, 06:59] (1141716 MB) +PASS -- TEST rap_2threads_intel [07:00, 06:24] (1372836 MB) +PASS -- TEST rap_restart_intel [04:21, 03:37] (1132668 MB) +PASS -- TEST rap_sfcdiff_intel [07:14, 06:38] (1207312 MB) +PASS -- TEST rap_sfcdiff_decomp_intel [07:37, 07:03] (1153228 MB) +PASS -- TEST rap_sfcdiff_restart_intel [05:51, 05:08] (1181088 MB) +PASS -- TEST hrrr_control_intel [04:07, 03:29] (1085908 MB) +PASS -- TEST hrrr_control_decomp_intel [04:19, 03:42] (1041804 MB) +PASS -- TEST hrrr_control_2threads_intel [04:02, 03:22] (1106240 MB) +PASS -- TEST hrrr_control_restart_intel [02:06, 01:56] (1019224 MB) +PASS -- TEST rrfs_v1beta_intel [07:11, 06:31] (1189780 MB) +PASS -- TEST rrfs_v1nssl_intel [08:30, 08:19] (1993276 MB) +PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [08:21, 08:10] (2163524 MB) + +PASS -- COMPILE csawmg_intel [08:07, 08:06] +PASS -- TEST control_csawmg_intel [07:37, 07:15] (1070392 MB) +PASS -- TEST control_ras_intel [03:13, 03:03] (811408 MB) + +PASS -- COMPILE csawmg_gnu [03:59, 03:59] +PASS -- TEST control_csawmg_gnu [07:56, 07:35] (1058612 MB) + +PASS -- COMPILE wam_intel [08:07, 08:07],1 remarks) +PASS -- TEST control_wam_intel [10:28, 09:57] (1653752 MB) + +PASS -- COMPILE atm_faster_dyn32_intel [09:03, 09:03],1 remarks) +PASS -- TEST control_p8_faster_intel [04:08, 03:21] (1887616 MB) +PASS -- TEST regional_control_faster_intel [06:27, 06:04] (1182304 MB) + +PASS -- COMPILE atm_debug_dyn32_intel [06:02, 06:02](882 warnings,9 remarks) +PASS -- TEST control_CubedSphereGrid_debug_intel [02:31, 02:03] (1621912 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [02:27, 01:53] (1615136 MB) +PASS -- TEST control_stochy_debug_intel [02:50, 02:36] (842456 MB) +PASS -- TEST control_lndp_debug_intel [02:32, 02:22] (845672 MB) +PASS -- TEST control_csawmg_debug_intel [04:47, 04:24] (1144636 MB) +PASS -- TEST control_ras_debug_intel [02:30, 02:23] (840964 MB) +PASS -- TEST control_diag_debug_intel [03:05, 02:34] (1691956 MB) +PASS -- TEST control_debug_p8_intel [03:41, 03:14] (1910724 MB) +PASS -- TEST regional_debug_intel [16:19, 15:54] (1143036 MB) +PASS -- TEST rap_control_debug_intel [04:26, 04:13] (1218964 MB) +PASS -- TEST hrrr_control_debug_intel [04:21, 04:06] (1219272 MB) +PASS -- TEST hrrr_gf_debug_intel [04:18, 04:07] (1233844 MB) +PASS -- TEST hrrr_c3_debug_intel [04:25, 04:10] (1226148 MB) +PASS -- TEST rap_unified_drag_suite_debug_intel [04:25, 04:09] (1223264 MB) +PASS -- TEST rap_diag_debug_intel [04:49, 04:31] (1301008 MB) +PASS -- TEST rap_cires_ugwp_debug_intel [04:35, 04:21] (1217808 MB) +PASS -- TEST rap_unified_ugwp_debug_intel [04:37, 04:24] (1236272 MB) +PASS -- TEST rap_lndp_debug_intel [04:25, 04:17] (1219468 MB) +PASS -- TEST rap_progcld_thompson_debug_intel [04:33, 04:24] (1221168 MB) +PASS -- TEST rap_noah_debug_intel [04:15, 04:04] (1230100 MB) +PASS -- TEST rap_sfcdiff_debug_intel [04:26, 04:17] (1217564 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [07:16, 07:00] (1219376 MB) +PASS -- TEST rrfs_v1beta_debug_intel [04:25, 04:10] (1217876 MB) +PASS -- TEST rap_clm_lake_debug_intel [05:19, 05:02] (1227560 MB) +PASS -- TEST rap_flake_debug_intel [04:35, 04:17] (1222728 MB) +PASS -- TEST gnv1_c96_no_nest_debug_intel [08:16, 07:31] (1233828 MB) + +PASS -- COMPILE atm_debug_dyn32_gnu [04:53, 04:53] +PASS -- TEST control_csawmg_debug_gnu [03:15, 02:55] (1039500 MB) + +PASS -- COMPILE wam_debug_intel [04:18, 04:18](837 warnings,1 remarks) + +PASS -- COMPILE rrfs_dyn32_phy32_intel [08:19, 08:18](3 warnings,8 remarks) +PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [04:47, 04:13] (1209796 MB) +PASS -- TEST rap_control_dyn32_phy32_intel [07:00, 06:20] (1158932 MB) +PASS -- TEST hrrr_control_dyn32_phy32_intel [04:11, 03:19] (1032792 MB) +PASS -- TEST rap_2threads_dyn32_phy32_intel [06:32, 05:53] (1273912 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [08:42, 07:51] (1029316 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [04:23, 03:35] (989632 MB) +PASS -- TEST rap_restart_dyn32_phy32_intel [05:36, 04:53] (1120012 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [02:10, 01:50] (956076 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [10:34, 10:34](3 warnings,8 remarks) +PASS -- TEST conus13km_control_intel [02:18, 01:45] (1286348 MB) +PASS -- TEST conus13km_2threads_intel [01:11, 00:46] (1183640 MB) +PASS -- TEST conus13km_restart_mismatch_intel [01:36, 01:08] (1144960 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_intel [08:17, 08:17](3 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_intel [04:18, 03:52] (1067396 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [03:30, 03:29](785 warnings,8 remarks) +PASS -- TEST rap_control_debug_dyn32_phy32_intel [04:30, 04:20] (1100900 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [04:36, 04:25] (1096640 MB) +PASS -- TEST conus13km_debug_intel [12:32, 12:02] (1332032 MB) +PASS -- TEST conus13km_debug_qr_intel [12:56, 12:20] (992268 MB) +PASS -- TEST conus13km_debug_2threads_intel [07:56, 07:30] (1244488 MB) +PASS -- TEST conus13km_radar_tten_debug_intel [12:29, 11:58] (1420484 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [03:57, 03:57](785 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_debug_intel [04:54, 04:43] (1169492 MB) + +PASS -- COMPILE hafsw_intel [10:03, 10:03](1 warnings,9 remarks) +PASS -- TEST hafs_regional_atm_intel [06:44, 05:47] (853968 MB) +PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [05:54, 05:36] (1251520 MB) +PASS -- TEST hafs_regional_atm_ocn_intel [07:57, 06:48] (936692 MB) +PASS -- TEST hafs_regional_atm_wav_intel [15:12, 14:16] (962932 MB) +PASS -- TEST hafs_regional_atm_ocn_wav_intel [16:25, 15:19] (978004 MB) +PASS -- TEST hafs_regional_1nest_atm_intel [06:32, 05:44] (592264 MB) +PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [09:06, 07:55] (604044 MB) +PASS -- TEST hafs_global_1nest_atm_intel [03:21, 02:51] (432520 MB) +PASS -- TEST hafs_global_multiple_4nests_atm_intel [10:07, 08:21] (545828 MB) +PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [04:49, 04:11] (602192 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [04:44, 04:00] (605608 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [05:47, 05:02] (658084 MB) +PASS -- TEST hafs_global_storm_following_1nest_atm_intel [01:31, 01:11] (449916 MB) + +PASS -- COMPILE hafsw_debug_intel [04:30, 04:30](1465 warnings,1502 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [13:06, 12:18] (638468 MB) + +PASS -- COMPILE hafsw_faster_intel [10:30, 10:30],8 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [16:30, 15:37] (756252 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [16:12, 15:12] (837748 MB) + +PASS -- COMPILE hafs_mom6w_intel [10:16, 10:15],7 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [11:27, 10:01] (819308 MB) + +PASS -- COMPILE hafs_all_intel [09:52, 09:52],8 remarks) +PASS -- TEST hafs_regional_docn_intel [08:00, 07:07] (918244 MB) +PASS -- TEST hafs_regional_docn_oisst_intel [08:03, 07:08] (892412 MB) +PASS -- TEST hafs_regional_datm_cdeps_intel [12:38, 12:02] (1351648 MB) + +PASS -- COMPILE datm_cdeps_intel [06:37, 06:36],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_intel [02:36, 02:30] (1154124 MB) +PASS -- TEST datm_cdeps_restart_cfsr_intel [01:30, 01:24] (1107604 MB) +PASS -- TEST datm_cdeps_control_gefs_intel [02:12, 02:07] (1018128 MB) +PASS -- TEST datm_cdeps_iau_gefs_intel [02:14, 02:10] (1017836 MB) +PASS -- TEST datm_cdeps_stochy_gefs_intel [02:14, 02:10] (1017872 MB) +PASS -- TEST datm_cdeps_ciceC_cfsr_intel [02:32, 02:27] (1153992 MB) +PASS -- TEST datm_cdeps_bulk_cfsr_intel [03:06, 02:59] (1117476 MB) +PASS -- TEST datm_cdeps_bulk_gefs_intel [02:16, 02:10] (1014620 MB) +PASS -- TEST datm_cdeps_mx025_cfsr_intel [05:43, 05:02] (1155016 MB) +PASS -- TEST datm_cdeps_mx025_gefs_intel [05:42, 04:59] (1150552 MB) +PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [02:20, 02:15] (1151884 MB) +PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [03:27, 03:22] (2444872 MB) +PASS -- TEST datm_cdeps_gfs_intel [04:16, 04:10] (2434180 MB) + +PASS -- COMPILE datm_cdeps_debug_intel [03:59, 03:58](2 warnings,2 remarks) +PASS -- TEST datm_cdeps_debug_cfsr_intel [05:21, 05:16] (1077740 MB) + +PASS -- COMPILE datm_cdeps_faster_intel [06:04, 06:04],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_faster_intel [02:29, 02:24] (1161204 MB) + +PASS -- COMPILE datm_cdeps_land_intel [00:50, 00:49],1 remarks) +PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:18, 00:58] (330172 MB) +PASS -- TEST datm_cdeps_lnd_era5_intel [01:14, 00:55] (574464 MB) +PASS -- TEST datm_cdeps_lnd_era5_rst_intel [00:48, 00:34] (575864 MB) + +PASS -- COMPILE atm_ds2s_docn_pcice_intel [09:28, 09:28],3 remarks) +PASS -- TEST atm_ds2s_docn_pcice_intel [05:08, 04:26] (2009340 MB) + +PASS -- COMPILE atm_ds2s_docn_dice_intel [09:01, 09:01],1 remarks) + +PASS -- COMPILE atml_intel [09:10, 09:10](8 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_sbs_intel [06:53, 05:54] (1891808 MB) +PASS -- TEST control_p8_atmlnd_intel [06:44, 05:47] (1896252 MB) +PASS -- TEST control_restart_p8_atmlnd_intel [03:35, 03:05] (1130496 MB) + +PASS -- COMPILE atml_debug_intel [05:09, 05:09](880 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_debug_intel [06:56, 06:00] (1926048 MB) + +PASS -- COMPILE atmw_intel [10:00, 09:59],8 remarks) +PASS -- TEST atmwav_control_noaero_p8_intel [02:28, 01:47] (1933244 MB) + +PASS -- COMPILE atmaero_intel [09:25, 09:25],1 remarks) +PASS -- TEST atmaero_control_p8_intel [04:32, 03:51] (2000772 MB) +PASS -- TEST atmaero_control_p8_rad_intel [05:20, 04:38] (1794868 MB) +PASS -- TEST atmaero_control_p8_rad_micro_intel [05:13, 04:40] (1799496 MB) + +PASS -- COMPILE atmaq_debug_intel [04:22, 04:22](882 warnings,6 remarks) +PASS -- TEST regional_atmaq_debug_intel [18:46, 17:30] (4579644 MB) + +PASS -- COMPILE atm_gnu [04:58, 04:57] +PASS -- TEST control_c48_gnu [12:10, 11:41] (1522012 MB) +PASS -- TEST control_stochy_gnu [02:44, 02:31] (719600 MB) +PASS -- TEST control_ras_gnu [04:07, 03:55] (721840 MB) +PASS -- TEST control_p8_gnu [04:59, 04:14] (1718952 MB) +PASS -- TEST control_p8_ugwpv1_gnu [04:47, 04:08] (1718420 MB) +PASS -- TEST control_flake_gnu [04:47, 04:36] (799048 MB) + +PASS -- COMPILE rrfs_gnu [04:06, 04:06] +PASS -- TEST rap_control_gnu [08:42, 08:03] (1072444 MB) +PASS -- TEST rap_decomp_gnu [08:41, 08:01] (1072968 MB) +PASS -- TEST rap_2threads_gnu [07:58, 07:22] (1113052 MB) +PASS -- TEST rap_restart_gnu [04:55, 04:07] (878704 MB) +PASS -- TEST rap_sfcdiff_gnu [09:03, 08:27] (1077724 MB) +PASS -- TEST rap_sfcdiff_decomp_gnu [09:08, 08:33] (1071920 MB) +PASS -- TEST rap_sfcdiff_restart_gnu [06:38, 06:06] (876924 MB) +PASS -- TEST hrrr_control_gnu [05:05, 04:23] (1061160 MB) +PASS -- TEST hrrr_control_noqr_gnu [04:52, 04:21] (1127308 MB) +PASS -- TEST hrrr_control_2threads_gnu [04:35, 03:54] (1013980 MB) +PASS -- TEST hrrr_control_decomp_gnu [04:52, 04:15] (1062664 MB) +PASS -- TEST hrrr_control_restart_gnu [02:43, 02:22] (877672 MB) +PASS -- TEST hrrr_control_restart_noqr_gnu [02:29, 02:10] (926992 MB) +PASS -- TEST rrfs_v1beta_gnu [08:42, 08:02] (1072884 MB) + +PASS -- COMPILE atm_dyn32_debug_gnu [05:45, 05:45] +PASS -- TEST control_diag_debug_gnu [01:49, 01:20] (1617920 MB) +PASS -- TEST regional_debug_gnu [07:15, 06:50] (1143976 MB) +PASS -- TEST rap_control_debug_gnu [02:21, 02:13] (1086324 MB) +PASS -- TEST hrrr_control_debug_gnu [02:08, 02:00] (1077604 MB) +PASS -- TEST hrrr_gf_debug_gnu [02:33, 02:18] (1083148 MB) +PASS -- TEST hrrr_c3_debug_gnu [02:30, 02:17] (1084532 MB) +PASS -- TEST rap_diag_debug_gnu [02:35, 02:19] (1258784 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [03:21, 03:13] (1083160 MB) +PASS -- TEST rap_progcld_thompson_debug_gnu [02:18, 02:07] (1085696 MB) +PASS -- TEST rrfs_v1beta_debug_gnu [02:14, 02:06] (1081336 MB) +PASS -- TEST control_ras_debug_gnu [01:29, 01:21] (715124 MB) +PASS -- TEST control_stochy_debug_gnu [01:42, 01:33] (712120 MB) +PASS -- TEST control_debug_p8_gnu [01:55, 01:25] (1693712 MB) +PASS -- TEST rap_flake_debug_gnu [02:24, 02:14] (1088464 MB) +PASS -- TEST rap_clm_lake_debug_gnu [02:21, 02:12] (1087968 MB) +PASS -- TEST gnv1_c96_no_nest_debug_gnu [04:03, 03:27] (1087860 MB) + +PASS -- COMPILE wam_debug_gnu [02:36, 02:36] +PASS -- TEST control_wam_debug_gnu [06:02, 05:37] (1554940 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_gnu [04:16, 04:16] +PASS -- TEST rap_control_dyn32_phy32_gnu [08:32, 07:55] (952204 MB) +PASS -- TEST hrrr_control_dyn32_phy32_gnu [04:57, 04:11] (943832 MB) +PASS -- TEST rap_2threads_dyn32_phy32_gnu [07:36, 06:57] (965484 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_gnu [04:18, 03:33] (877348 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [04:44, 04:01] (940144 MB) +PASS -- TEST rap_restart_dyn32_phy32_gnu [06:38, 05:54] (855396 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [02:35, 02:13] (853108 MB) +PASS -- TEST conus13km_control_gnu [03:08, 02:32] (1254652 MB) +PASS -- TEST conus13km_2threads_gnu [01:43, 01:16] (1165044 MB) +PASS -- TEST conus13km_restart_mismatch_gnu [02:03, 01:36] (920716 MB) + +PASS -- COMPILE atm_dyn64_phy32_gnu [08:49, 08:49] +PASS -- TEST rap_control_dyn64_phy32_gnu [05:17, 04:51] (985380 MB) + +PASS -- COMPILE atm_dyn32_phy32_debug_gnu [07:00, 06:59] +PASS -- TEST rap_control_debug_dyn32_phy32_gnu [02:20, 02:04] (973112 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [02:12, 01:58] (959660 MB) +PASS -- TEST conus13km_debug_gnu [06:04, 05:29] (1273204 MB) +PASS -- TEST conus13km_debug_qr_gnu [06:19, 05:50] (948064 MB) +PASS -- TEST conus13km_debug_2threads_gnu [03:44, 03:17] (1185476 MB) +PASS -- TEST conus13km_radar_tten_debug_gnu [05:55, 05:21] (1342552 MB) + +PASS -- COMPILE atm_dyn64_phy32_debug_gnu [08:17, 08:16] +PASS -- TEST rap_control_dyn64_phy32_debug_gnu [02:21, 02:07] (999504 MB) + +PASS -- COMPILE s2swa_gnu [19:27, 19:26] +PASS -- COMPILE s2s_gnu [18:07, 18:06] +PASS -- TEST cpld_control_nowave_noaero_p8_gnu [15:16, 14:28] (2736576 MB) + +PASS -- COMPILE s2swa_debug_gnu [06:12, 06:12] +PASS -- COMPILE s2sw_pdlib_gnu [19:39, 19:38] +PASS -- TEST cpld_control_pdlib_p8_gnu [40:40, 39:51] (3072508 MB) + +PASS -- COMPILE s2sw_pdlib_debug_gnu [03:33, 03:33] +PASS -- TEST cpld_debug_pdlib_p8_gnu [15:29, 14:42] (3026256 MB) + +PASS -- COMPILE datm_cdeps_gnu [15:02, 15:02] +PASS -- TEST datm_cdeps_control_cfsr_gnu [03:44, 03:36] (772020 MB) + +PASS -- COMPILE atm_fbh_intel [08:10, 08:10](3 warnings,8 remarks) +PASS -- TEST cpld_regional_atm_fbh_intel [15:36, 15:21] (1063208 MB) + + +SYNOPSIS: +Starting Date/Time: 2024-10-29 16:31:21 +Ending Date/Time: 2024-10-30 07:43:38 +Total Time: 15h:12m:17s +Compiles Completed: 48/58 +Tests Completed: 244/245 + +UFSWM hash used in testing: +454eb51f3a0d590b77b8aefd9e8fa6755534b32e + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) + 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 99091f9742670bdebd84bd13f17b9115457d64dd FV3 (heads/develop) + 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) + b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) f3eeb3442775b7239d98e3d09acc6d4f1d42233e FV3/ccpp/physics (EP4-889-gf3eeb344) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) @@ -38,380 +821,25 @@ 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-20241011 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_202469 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20241028 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_596774 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-r) - USE ROCOTO -PASS -- COMPILE 's2swa_32bit_intel' [12:16, 12:16] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:39, 07:54](2129 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:16, 17:16] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [14:13, 13:23](1989 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:15, 14:07](2325 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [07:29, 06:34](1343 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:08, 15:11](1897 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:30, 20:30] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [13:23, 13:04](1985 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:52, 06:51] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:23, 22:28](1969 MB) - -PASS -- COMPILE 's2swa_intel' [12:44, 12:44] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:45, 07:59](2203 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:50, 08:04](2210 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:25, 04:36](1971 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:19, 08:13](2224 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:32, 04:32](1730 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:31, 08:43](2544 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:47, 08:07](2202 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:29, 06:40](2093 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:53, 08:00](2201 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:22, 16:08](2972 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [07:38, 05:55](2906 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [14:30, 09:44](3823 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [11:33, 05:23](3627 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [06:03, 05:19](2124 MB) - -PASS -- COMPILE 's2sw_intel' [12:09, 12:09] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:53, 07:14](2006 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:37, 06:54](2059 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:49, 05:49] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:40, 11:52](2234 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:09, 05:09] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:14, 08:29](2057 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:09, 10:09] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:58, 04:06](2065 MB) - -PASS -- COMPILE 's2s_intel' [10:24, 10:23] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [06:23, 05:56](3039 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [02:32, 02:03](3034 MB) -PASS -- TEST 'cpld_restart_c48_intel' [01:41, 01:10](2481 MB) - -PASS -- COMPILE 's2swa_faster_intel' [12:31, 12:31] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [08:31, 07:44](2206 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [15:53, 15:52] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:21, 13:52](2079 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:39, 06:51](1401 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:03, 15:25](2000 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:34, 04:34] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:37, 23:56](2003 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:09, 09:08] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:08, 02:55](708 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:09, 02:47](1595 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:13, 02:46](1595 MB) -PASS -- TEST 'control_latlon_intel' [03:02, 02:44](1589 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:18, 02:48](1583 MB) -PASS -- TEST 'control_c48_intel' [11:08, 10:41](1707 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:06, 05:53](838 MB) -PASS -- TEST 'control_c192_intel' [10:50, 10:17](1778 MB) -PASS -- TEST 'control_c384_intel' [13:00, 11:53](2018 MB) -PASS -- TEST 'control_c384gdas_intel' [08:58, 07:31](1486 MB) -PASS -- TEST 'control_stochy_intel' [01:37, 01:27](659 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:10, 00:54](534 MB) -PASS -- TEST 'control_lndp_intel' [01:37, 01:23](670 MB) -PASS -- TEST 'control_iovr4_intel' [02:27, 02:12](654 MB) -PASS -- TEST 'control_iovr5_intel' [02:20, 02:09](657 MB) -PASS -- TEST 'control_p8_intel' [03:48, 03:09](1876 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:23, 02:41](1893 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:55, 03:12](1887 MB) -PASS -- TEST 'control_restart_p8_intel' [02:18, 01:48](1150 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:35, 03:07](1861 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:42, 02:03](1209 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:52, 03:13](1862 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:37, 02:58](1962 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:18, 05:51](1880 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:25, 03:42](1963 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:16, 02:42](1909 MB) -PASS -- TEST 'merra2_thompson_intel' [03:38, 02:58](1893 MB) -PASS -- TEST 'regional_control_intel' [04:51, 04:35](1191 MB) -PASS -- TEST 'regional_restart_intel' [02:52, 02:37](1167 MB) -PASS -- TEST 'regional_decomp_intel' [05:08, 04:53](1186 MB) -PASS -- TEST 'regional_2threads_intel' [03:22, 03:02](1150 MB) -PASS -- TEST 'regional_noquilt_intel' [04:49, 04:32](1519 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:02, 04:39](1194 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [04:52, 04:38](1180 MB) -PASS -- TEST 'regional_wofs_intel' [06:20, 06:05](2079 MB) - -PASS -- COMPILE 'rrfs_intel' [08:23, 08:23] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [07:12, 06:40](1195 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:08, 03:32](1354 MB) -PASS -- TEST 'rap_decomp_intel' [07:46, 07:13](1151 MB) -PASS -- TEST 'rap_2threads_intel' [07:02, 06:25](1340 MB) -PASS -- TEST 'rap_restart_intel' [03:59, 03:32](1131 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:23, 06:44](1179 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:31, 06:57](1155 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:47, 05:07](1195 MB) -PASS -- TEST 'hrrr_control_intel' [04:06, 03:28](1083 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:19, 03:41](1055 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:55, 04:15](1107 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:09, 01:54](1008 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:24, 06:37](1202 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:27, 08:18](1999 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:17, 08:08](2170 MB) - -PASS -- COMPILE 'csawmg_intel' [08:25, 08:25] -PASS -- TEST 'control_csawmg_intel' [06:17, 06:05](1043 MB) -PASS -- TEST 'control_ras_intel' [03:07, 02:55](825 MB) - -PASS -- COMPILE 'csawmg_gnu' [03:55, 03:55] -PASS -- TEST 'control_csawmg_gnu' [07:38, 07:24](1055 MB) - -PASS -- COMPILE 'wam_intel' [08:32, 08:32] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [10:05, 09:41](1659 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [08:36, 08:35] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:09, 02:34](1893 MB) -PASS -- TEST 'regional_control_faster_intel' [06:00, 05:47](1183 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:22, 06:21] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:10, 01:53](1628 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:13, 01:51](1611 MB) -PASS -- TEST 'control_stochy_debug_intel' [02:38, 02:32](838 MB) -PASS -- TEST 'control_lndp_debug_intel' [02:28, 02:15](842 MB) -PASS -- TEST 'control_csawmg_debug_intel' [03:53, 03:38](1150 MB) -PASS -- TEST 'control_ras_debug_intel' [02:31, 02:21](848 MB) -PASS -- TEST 'control_diag_debug_intel' [02:43, 02:17](1690 MB) -PASS -- TEST 'control_debug_p8_intel' [02:43, 02:14](1908 MB) -PASS -- TEST 'regional_debug_intel' [15:36, 15:15](1141 MB) -PASS -- TEST 'rap_control_debug_intel' [04:15, 04:06](1217 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:17, 04:05](1220 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:24, 04:11](1227 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:23, 04:10](1224 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:14, 04:06](1225 MB) -PASS -- TEST 'rap_diag_debug_intel' [04:34, 04:17](1315 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:29, 04:17](1210 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:29, 04:17](1224 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:11, 04:04](1232 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:24, 04:11](1214 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:11, 04:02](1225 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:14, 04:07](1228 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:07, 07:00](1218 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:12, 04:05](1212 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:13, 05:03](1219 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:16, 04:05](1233 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:50, 07:08](1230 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:31, 04:30] -PASS -- TEST 'control_csawmg_debug_gnu' [02:57, 02:39](1039 MB) - -PASS -- COMPILE 'wam_debug_intel' [03:47, 03:47] ( 837 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:16, 08:15] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:28, 03:54](1213 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:51, 06:20](1154 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:53, 03:12](1019 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:38, 06:06](1275 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:29, 06:40](1029 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:10, 03:31](999 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:30, 04:51](1127 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:10, 01:51](962 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:14, 08:14] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:06, 01:42](1293 MB) -PASS -- TEST 'conus13km_2threads_intel' [00:58, 00:44](1192 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:25, 01:05](1136 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:32, 09:25] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:04, 03:46](1067 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:42, 03:42] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:16, 04:11](1105 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:12, 04:06](1101 MB) -PASS -- TEST 'conus13km_debug_intel' [12:31, 12:08](1341 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [12:31, 12:07](991 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [07:51, 07:29](1247 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:26, 12:05](1437 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:04, 04:04] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:51, 04:44](1169 MB) - -PASS -- COMPILE 'hafsw_intel' [09:47, 09:46] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:09, 05:15](857 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:23, 05:11](1259 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:53, 06:48](919 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:44, 14:44](962 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:53, 16:38](970 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:34, 05:56](594 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:58, 07:51](604 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:31, 02:54](428 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:15, 08:26](544 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:51, 04:13](598 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:48, 04:03](602 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:07, 05:13](661 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:31, 01:13](449 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:54, 05:54] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:57, 12:10](639 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:31, 11:31] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:03, 16:13](735 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:13, 16:18](838 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:00, 10:00] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:06, 10:41](804 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:19, 10:19] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:01, 07:09](918 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:07, 07:13](898 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:21, 16:43](1341 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:05, 07:05] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:13, 03:06](1147 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:50, 01:44](1107 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:16, 02:10](1013 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:47, 02:42](1011 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:12, 02:07](1019 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:07, 03:03](1140 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:51, 02:46](1153 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:03, 02:59](1014 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:56, 05:13](1171 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:45, 05:00](1147 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:19, 02:16](1132 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:15, 03:08](2447 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:10, 04:06](2426 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [02:59, 02:59] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:21, 05:12](1075 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [05:22, 05:21] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:04, 02:59](1124 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [00:46, 00:45] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:16, 00:57](329 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:13, 01:00](572 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:55, 00:38](569 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:11, 11:11] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:12, 03:24](2017 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:21, 11:21] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:23, 03:40](1992 MB) - -PASS -- COMPILE 'atml_intel' [11:25, 11:24] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:34, 05:37](1895 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:38, 05:41](1891 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:51, 03:11](1141 MB) - -PASS -- COMPILE 'atml_debug_intel' [04:45, 04:45] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:29, 05:11](1928 MB) - -PASS -- COMPILE 'atmw_intel' [09:40, 09:40] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:33, 01:45](1938 MB) - -PASS -- COMPILE 'atmaero_intel' [08:43, 08:43] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:37, 03:56](2006 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:18, 04:34](1773 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:17, 04:47](1790 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [03:34, 03:33] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [18:50, 17:28](4511 MB) - -PASS -- COMPILE 'atm_gnu' [04:16, 04:16] -PASS -- TEST 'control_c48_gnu' [09:50, 09:13](1498 MB) -PASS -- TEST 'control_stochy_gnu' [02:43, 02:32](718 MB) -PASS -- TEST 'control_ras_gnu' [04:16, 04:01](722 MB) -PASS -- TEST 'control_p8_gnu' [05:10, 04:25](1746 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:57, 04:20](1717 MB) -PASS -- TEST 'control_flake_gnu' [04:57, 04:42](806 MB) - -PASS -- COMPILE 'rrfs_gnu' [04:14, 04:14] -PASS -- TEST 'rap_control_gnu' [08:40, 08:04](1075 MB) -PASS -- TEST 'rap_decomp_gnu' [08:42, 08:06](1072 MB) -PASS -- TEST 'rap_2threads_gnu' [08:11, 07:34](1133 MB) -PASS -- TEST 'rap_restart_gnu' [05:11, 04:22](879 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [08:57, 08:18](1072 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:57, 08:17](1071 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:35, 05:54](877 MB) -PASS -- TEST 'hrrr_control_gnu' [04:54, 04:13](1060 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [04:55, 04:21](1128 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:22, 03:42](1033 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:00, 04:22](1064 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [02:37, 02:17](876 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:36, 02:20](925 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:32, 07:46](1069 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:16, 06:15] -PASS -- TEST 'control_diag_debug_gnu' [01:51, 01:23](1620 MB) -PASS -- TEST 'regional_debug_gnu' [07:07, 06:46](1129 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:19, 02:10](1092 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:13, 02:05](1084 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:16, 02:06](1087 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:30, 02:17](1090 MB) -PASS -- TEST 'rap_diag_debug_gnu' [02:40, 02:23](1265 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:28, 03:19](1087 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:23, 02:10](1091 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:21, 02:11](1087 MB) -PASS -- TEST 'control_ras_debug_gnu' [01:22, 01:14](719 MB) -PASS -- TEST 'control_stochy_debug_gnu' [01:46, 01:36](720 MB) -PASS -- TEST 'control_debug_p8_gnu' [01:46, 01:18](1702 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:19, 02:10](1092 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [02:28, 02:17](1093 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:16, 03:37](1091 MB) - -PASS -- COMPILE 'wam_debug_gnu' [02:25, 02:25] -PASS -- TEST 'control_wam_debug_gnu' [06:20, 05:51](1557 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:14, 04:14] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:11, 07:37](954 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:54, 04:12](945 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:27, 06:53](958 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:24, 03:35](872 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:55, 04:12](940 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:44, 06:01](852 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:42, 02:15](853 MB) -PASS -- TEST 'conus13km_control_gnu' [03:10, 02:37](1256 MB) -PASS -- TEST 'conus13km_2threads_gnu' [01:57, 01:24](1169 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:15, 01:39](924 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:51, 09:50] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:14, 04:49](983 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [05:54, 05:54] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:19, 02:06](966 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:15, 02:02](956 MB) -PASS -- TEST 'conus13km_debug_gnu' [06:16, 05:31](1271 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:31, 05:56](953 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [03:50, 03:24](1183 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [05:54, 05:23](1343 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:19, 07:18] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:23, 02:13](988 MB) - -PASS -- COMPILE 's2swa_gnu' [17:45, 17:45] - -PASS -- COMPILE 's2s_gnu' [16:38, 16:38] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:59, 09:13](3046 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [05:06, 05:06] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:08, 17:08] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:06, 26:15](3063 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:16, 03:16] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:26, 12:35](2895 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [15:17, 15:16] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:39, 03:31](765 MB) - -PASS -- COMPILE 'atm_fbh_intel' [08:22, 08:21] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:24, 10:10](1084 MB) +PASS -- COMPILE 's2sw_intel' [11:33, 11:33] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:20, 10:30](2107 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [09:56, 09:52] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:50, 07:10](2032 MB) SYNOPSIS: -Starting Date/Time: 20241018 18:47:06 -Ending Date/Time: 20241018 23:18:34 -Total Time: 04h:32m:06s -Compiles Completed: 58/58 -Tests Completed: 245/245 +Starting Date/Time: 20241030 07:46:02 +Ending Date/Time: 20241030 08:18:31 +Total Time: 00h:32m:30s +Compiles Completed: 2/2 +Tests Completed: 2/2 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index d4e14d11fd..fee89b261d 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -a548dfb95738d53c36144e4a347eff7c9a786284 +20191d85286242c7e38a3ddada32e7c03e4452f5 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 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) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1aba87cb308fb52912e7fe6dd6b53d0ce7077554 FV3 (heads/develop) + 99091f9742670bdebd84bd13f17b9115457d64dd 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) + b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) + f3eeb3442775b7239d98e3d09acc6d4f1d42233e FV3/ccpp/physics (EP4-889-gf3eeb344) 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 @@ -38,259 +38,336 @@ 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-20241001 -COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_16794 +BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20241028 +COMPARISON DIRECTORY: /lfs5/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_2497585 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems -* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -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) +PASS -- COMPILE 's2swa_32bit_intel' [57:21, 43:22] ( 1 warnings 1380 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:12, 13:23](2015 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [08:26, 53:51] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [23:04, 20:43](1890 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:14, 21:47](2002 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [14:09, 09:53](1138 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:03, 23:48](1844 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [03:24, 48:55] ( 1 warnings 1424 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:49, 20:11](1880 MB) + +PASS -- COMPILE 's2swa_intel' [58:21, 43:49] ( 1 warnings 1399 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [20:09, 16:49](2073 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:25, 16:44](2069 MB) +PASS -- TEST 'cpld_restart_p8_intel' [14:18, 08:55](1715 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [20:10, 16:55](2084 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [15:17, 09:03](1745 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [19:08, 16:00](2321 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [20:04, 17:01](2067 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [17:15, 13:58](2013 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [20:22, 16:48](2071 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:14, 09:25](2033 MB) + +PASS -- COMPILE 's2sw_intel' [55:21, 41:22] ( 1 warnings 1284 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:24, 09:28](1915 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [20:37, 14:20](1962 MB) + +PASS -- COMPILE 's2swa_debug_intel' [12:12, 06:22] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [30:20, 27:35](2098 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:12, 06:08] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [14:02, 11:19](1926 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [40:23, 37:19] ( 1010 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:20, 05:28](1962 MB) + +PASS -- COMPILE 's2s_intel' [40:22, 38:27] ( 1 warnings 1033 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [12:50, 10:17](3016 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:47, 03:02](3004 MB) +PASS -- TEST 'cpld_restart_c48_intel' [07:49, 01:45](2462 MB) + +PASS -- COMPILE 's2swa_faster_intel' [35:34, 32:48] ( 1 warnings 1615 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [18:25, 15:59](2061 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [50:20, 48:23] ( 1 warnings 1344 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [36:09, 33:41](1927 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [20:17, 16:54](1141 MB) +FAILED: TEST TIMED OUT -- TEST 'cpld_mpi_pdlib_p8_intel' [, ]( MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:48] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [47:24, 38:59](1928 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [46:24, 38:23] ( 1 warnings 1116 remarks ) +PASS -- TEST 'control_flake_intel' [06:30, 04:21](646 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [07:03, 04:22](1535 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:05, 04:38](1549 MB) +PASS -- TEST 'control_latlon_intel' [07:01, 04:24](1539 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:09, 04:30](1530 MB) +PASS -- TEST 'control_c48_intel' [21:10, 18:20](1698 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [12:37, 10:12](828 MB) +PASS -- TEST 'control_c192_intel' [19:19, 15:59](1693 MB) +PASS -- TEST 'control_c384_intel' [26:15, 22:57](1813 MB) +PASS -- TEST 'control_c384gdas_intel' [17:59, 13:15](991 MB) +PASS -- TEST 'control_stochy_intel' [04:29, 02:09](599 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:27, 01:14](438 MB) +PASS -- TEST 'control_lndp_intel' [04:29, 02:02](609 MB) +PASS -- TEST 'control_iovr4_intel' [05:31, 03:16](602 MB) +PASS -- TEST 'control_iovr5_intel' [05:31, 03:17](609 MB) +PASS -- TEST 'control_p8_intel' [07:22, 04:57](1824 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:28, 04:09](1844 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:11, 04:54](1834 MB) +PASS -- TEST 'control_restart_p8_intel' [04:51, 02:37](1046 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:16, 04:51](1820 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:55, 02:33](1073 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:14, 05:05](1817 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:12, 04:43](1907 MB) +PASS -- TEST 'control_p8_lndp_intel' [11:08, 08:46](1826 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:16, 05:24](1901 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:20, 04:00](1845 MB) +PASS -- TEST 'merra2_thompson_intel' [07:11, 04:20](1849 MB) +PASS -- TEST 'regional_control_intel' [09:58, 07:11](1004 MB) +PASS -- TEST 'regional_restart_intel' [05:36, 03:47](1004 MB) +PASS -- TEST 'regional_decomp_intel' [09:58, 07:36](1006 MB) +PASS -- TEST 'regional_2threads_intel' [06:58, 04:33](1007 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [10:07, 07:10](1004 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:36, 07:03](1007 MB) + +PASS -- COMPILE 'rrfs_intel' [36:16, 34:55] ( 3 warnings 1092 remarks ) +PASS -- TEST 'rap_control_intel' [12:41, 10:10](986 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:09, 05:30](1161 MB) +PASS -- TEST 'rap_decomp_intel' [12:41, 10:39](981 MB) +PASS -- TEST 'rap_2threads_intel' [11:49, 09:42](1074 MB) +PASS -- TEST 'rap_restart_intel' [08:45, 05:18](985 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:45, 10:09](991 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:45, 10:47](980 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:47, 07:38](987 MB) +PASS -- TEST 'hrrr_control_intel' [07:44, 05:13](983 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:44, 05:26](975 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:51, 04:49](1044 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:28, 02:43](916 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:00, 10:03](981 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [15:34, 13:24](1941 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:33, 13:04](1929 MB) + +PASS -- COMPILE 'csawmg_intel' [36:16, 35:06] ( 1091 remarks ) +PASS -- TEST 'control_csawmg_intel' [09:39, 08:03](967 MB) +PASS -- TEST 'control_ras_intel' [06:23, 04:19](668 MB) + +PASS -- COMPILE 'wam_intel' [37:15, 35:50] ( 994 remarks ) +PASS -- TEST 'control_wam_intel' [17:44, 14:16](1611 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [39:15, 37:38] ( 1294 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:59, 03:36](1840 MB) +PASS -- TEST 'regional_control_faster_intel' [09:46, 06:29](998 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 08:35] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:47, 02:46](1567 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:49, 02:57](1563 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:26, 03:53](776 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:26, 03:31](777 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:42, 05:30](1088 MB) +PASS -- TEST 'control_ras_debug_intel' [05:26, 03:32](783 MB) +PASS -- TEST 'control_diag_debug_intel' [05:48, 03:23](1629 MB) +PASS -- TEST 'control_debug_p8_intel' [05:48, 03:18](1860 MB) +PASS -- TEST 'regional_debug_intel' [23:44, 22:01](1024 MB) +PASS -- TEST 'rap_control_debug_intel' [08:29, 06:17](1162 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:28, 06:07](1164 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:28, 06:13](1161 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:28, 06:15](1166 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:29, 06:16](1162 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:39, 06:33](1247 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:28, 06:23](1164 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:28, 06:22](1160 MB) +PASS -- TEST 'rap_lndp_debug_intel' [11:27, 06:16](1167 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:29, 06:12](1165 MB) +PASS -- TEST 'rap_noah_debug_intel' [10:26, 06:04](1167 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [10:25, 06:11](1164 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:25, 10:04](1165 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [09:26, 06:08](1158 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [10:29, 07:24](1173 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:27, 06:07](1164 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:46, 10:38](1168 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 05:02] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [19:53, 16:31](1642 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:13, 30:37] ( 3 warnings 1026 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [14:05, 05:14](1046 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [16:38, 08:11](900 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [13:36, 04:24](864 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [16:38, 07:56](945 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [12:41, 04:04](899 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [13:36, 04:41](856 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:41, 06:09](894 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:27, 02:19](842 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [37:13, 32:05] ( 3 warnings 1199 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:48, 02:47](1097 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:40, 01:12](1044 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:39, 01:31](1014 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [33:14, 31:34] ( 3 warnings 1046 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:50, 05:25](902 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:12, 05:16] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:26, 06:03](1034 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:30, 05:57](1035 MB) +PASS -- TEST 'conus13km_debug_intel' [19:57, 17:39](1152 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:54, 17:52](864 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:50, 10:17](1097 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:50, 17:45](1221 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:11, 05:06] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:24, 06:08](1080 MB) + +PASS -- COMPILE 'hafsw_intel' [42:16, 40:48] ( 1 warnings 1418 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:13, 06:55](699 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:30, 06:18](1061 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:30, 09:11](754 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:22, 16:06](770 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:37, 17:40](805 MB) +PASS -- TEST 'gnv1_nested_intel' [09:42, 06:15](1669 MB) + +PASS -- COMPILE 'hafs_all_intel' [38:16, 36:20] ( 1265 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:25, 08:35](755 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:28, 08:36](738 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [17:12, 08:20] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:23, 03:36](1090 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:22, 02:09](1041 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:24, 03:30](934 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:24, 03:34](931 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:24, 03:34](937 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:23, 03:35](1062 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:22, 03:36](1071 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:22, 03:30](936 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:13, 07:38](906 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:14, 07:37](851 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:20, 03:37](1059 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:23, 05:01](2432 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:23, 05:06](2422 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 03:33] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:21, 08:08](1017 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:13, 08:09] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [06:23, 03:32](1072 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:11, 01:41] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:32, 01:18](237 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:26, 01:09](261 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:29, 00:40](262 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [39:14, 36:55] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:07, 04:49](1907 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [38:17, 36:16] ( 1 warnings 1020 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'atm_ds2s_docn_dice_intel' [, ]( MB) + +PASS -- COMPILE 'atml_intel' [40:15, 38:00] ( 8 warnings 1157 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [17:19, 05:45](1855 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [17:20, 05:41](1857 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:44, 03:15](1063 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:11, 06:18] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:13, 07:17](1884 MB) + +PASS -- COMPILE 'atmw_intel' [39:15, 37:44] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:56, 02:18](1853 MB) + +PASS -- COMPILE 'atmaero_intel' [38:19, 36:18] ( 1098 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:58, 05:14](1926 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:00, 06:18](1709 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:52, 06:28](1726 MB) + +PASS -- COMPILE 'atm_fbh_intel' [33:18, 31:23] ( 3 warnings 996 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [50:42, 15:14](1021 MB) SYNOPSIS: -Starting Date/Time: 20241008 20:28:25 -Ending Date/Time: 20241009 11:54:15 -Total Time: 15h:26m:25s +Starting Date/Time: 20241029 11:57:17 +Ending Date/Time: 20241029 17:16:17 +Total Time: 05h:19m:33s Compiles Completed: 37/37 -Tests Completed: 165/165 +Tests Completed: 163/165 +Failed Tests: +* TEST cpld_mpi_pdlib_p8_intel: FAILED: TEST TIMED OUT +-- LOG: /lfs5/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_2497585/cpld_mpi_pdlib_p8_intel/err +* TEST atm_ds2s_docn_dice_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/UFS-RT-TESTs/rt-2425/tests/logs/log_jet/run_atm_ds2s_docn_dice_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 JET REGRESSION TESTING LOG==== +====START OF JET REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +454eb51f3a0d590b77b8aefd9e8fa6755534b32e + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) + 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 99091f9742670bdebd84bd13f17b9115457d64dd FV3 (heads/develop) + 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) + b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) + f3eeb3442775b7239d98e3d09acc6d4f1d42233e FV3/ccpp/physics (EP4-889-gf3eeb344) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + c7004b658b9dae9fc473d4e6511dfc1cf8e6a7bd WW3 (6.07.1-347-gc7004b65) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20241028 +COMPARISON DIRECTORY: /lfs5/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_3560233 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2sw_intel' [43:17, 41:49] ( 1 warnings 1284 remarks ) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [17:39, 14:12](1982 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [38:16, 36:18] ( 1 warnings 1020 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [13:06, 10:24](1905 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [49:19, 47:56] ( 1 warnings 1344 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [36:16, 33:49](1906 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [19:09, 16:55](1137 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [42:11, 39:37](1906 MB) + +SYNOPSIS: +Starting Date/Time: 20241029 19:55:09 +Ending Date/Time: 20241029 22:04:19 +Total Time: 02h:09m:20s +Compiles Completed: 3/3 +Tests Completed: 5/5 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index b72ba6607c..295802d867 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ -====START OF ORION REGRESSION TESTING LOG==== +====START OF orion REGRESSION TESTING LOG==== UFSWM hash used in testing: -6bd7ea845b22492c06f61a14c242fce7da453a15 +454eb51f3a0d590b77b8aefd9e8fa6755534b32e Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,9 +11,9 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 8e8df02db4fda01cb4cb63c13164e833c8280931 FV3 (remotes/origin/cubed_sphere_chunks) + 99091f9742670bdebd84bd13f17b9115457d64dd FV3 (heads/develop) 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) - 8c8b60498ec463ea2d3d5b79950c6b47f4af3e34 FV3/ccpp/framework (v0.1.0-1703-g8c8b604) + b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) f3eeb3442775b7239d98e3d09acc6d4f1d42233e FV3/ccpp/physics (EP4-889-gf3eeb344) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) @@ -31,305 +31,302 @@ Submodule hashes used in testing: 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-20241011 -COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_432500 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241028 +COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_185120 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [18:10, 16:31] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [28:53, 14:27](2076 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:10, 21:16] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [27:48, 18:08](1948 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:16, 19:05](2134 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:09, 08:59](1203 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [30:47, 20:24](1874 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:10, 21:23] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [26:50, 17:40](1939 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:10, 08:08] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [30:45, 28:05](1929 MB) - -PASS -- COMPILE 's2swa_intel' [18:10, 17:01] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [28:44, 14:31](2135 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:58, 14:36](2144 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:47, 07:57](1795 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [28:44, 14:13](2161 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:47, 08:02](1697 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [16:38, 13:18](2422 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [28:44, 14:25](2123 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [15:45, 12:19](2037 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:57, 14:38](2133 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [24:28, 16:04](2700 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:00, 08:27](2708 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [29:25, 10:59](3718 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:46, 06:46](3493 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [20:44, 06:03](2105 MB) - -PASS -- COMPILE 's2sw_intel' [17:10, 15:59] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [17:01, 14:01](1978 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:15, 08:04](2036 MB) - -PASS -- COMPILE 's2swa_debug_intel' [09:10, 08:07] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [16:23, 13:37](2175 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:10, 08:03] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:05, 09:19](1988 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:10, 14:08] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:13, 04:48](2020 MB) - -PASS -- COMPILE 's2s_intel' [17:10, 15:37] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [12:00, 08:42](3027 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [07:00, 03:36](3021 MB) -PASS -- TEST 'cpld_restart_c48_intel' [10:11, 02:15](2470 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:10, 17:32] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [19:38, 14:41](2144 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:10, 19:55] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:13, 18:20](2010 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:16, 09:01](1236 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:19, 20:28](1930 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 07:15] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:21, 29:51](1970 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:10, 14:00] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:27, 03:45](688 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:40, 03:33](1572 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:44, 03:35](1577 MB) -PASS -- TEST 'control_latlon_intel' [08:44, 03:33](1561 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:45, 03:34](1571 MB) -PASS -- TEST 'control_c48_intel' [16:47, 14:43](1705 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:34, 08:15](837 MB) -PASS -- TEST 'control_c192_intel' [18:55, 13:11](1744 MB) -PASS -- TEST 'control_c384_intel' [22:52, 16:36](1987 MB) -PASS -- TEST 'control_c384gdas_intel' [17:39, 09:56](1330 MB) -PASS -- TEST 'control_stochy_intel' [08:24, 01:50](637 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:37, 01:03](472 MB) -PASS -- TEST 'control_lndp_intel' [08:25, 01:43](648 MB) -PASS -- TEST 'control_iovr4_intel' [07:24, 02:50](633 MB) -PASS -- TEST 'control_iovr5_intel' [09:25, 02:43](639 MB) -PASS -- TEST 'control_p8_intel' [11:02, 04:15](1864 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [08:19, 03:33](1878 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [08:33, 04:09](1863 MB) -PASS -- TEST 'control_restart_p8_intel' [05:14, 02:20](1082 MB) -PASS -- TEST 'control_noqr_p8_intel' [08:15, 04:05](1853 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:20, 02:17](1120 MB) -PASS -- TEST 'control_decomp_p8_intel' [08:01, 04:09](1855 MB) -PASS -- TEST 'control_2threads_p8_intel' [08:04, 04:28](1944 MB) -PASS -- TEST 'control_p8_lndp_intel' [10:43, 07:15](1864 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:28, 04:55](1935 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:24, 03:33](1886 MB) -PASS -- TEST 'merra2_thompson_intel' [06:33, 03:55](1872 MB) -PASS -- TEST 'regional_control_intel' [08:34, 06:35](1071 MB) -PASS -- TEST 'regional_restart_intel' [05:37, 03:36](1065 MB) -PASS -- TEST 'regional_decomp_intel' [08:31, 06:58](1071 MB) -PASS -- TEST 'regional_2threads_intel' [06:46, 04:46](1067 MB) -PASS -- TEST 'regional_noquilt_intel' [08:41, 06:30](1376 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:45, 06:30](1076 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:38, 06:32](1080 MB) -PASS -- TEST 'regional_wofs_intel' [09:41, 07:59](1892 MB) - -PASS -- COMPILE 'rrfs_intel' [15:11, 12:46] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [11:21, 08:29](1052 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:01, 05:15](1250 MB) -PASS -- TEST 'rap_decomp_intel' [10:55, 08:46](1016 MB) -PASS -- TEST 'rap_2threads_intel' [11:18, 08:35](1152 MB) -PASS -- TEST 'rap_restart_intel' [08:44, 04:24](1033 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:00, 08:23](1044 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:58, 08:43](1018 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:47, 06:21](1064 MB) -PASS -- TEST 'hrrr_control_intel' [07:20, 04:23](1016 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:54, 04:27](1011 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:25, 04:15](1082 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:40, 02:22](944 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:21, 08:21](1034 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:29, 09:52](1977 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:27, 09:33](2021 MB) - -PASS -- COMPILE 'csawmg_intel' [15:11, 12:22] -PASS -- TEST 'control_csawmg_intel' [08:32, 06:38](1016 MB) -PASS -- TEST 'control_ras_intel' [05:19, 03:29](714 MB) - -PASS -- COMPILE 'wam_intel' [15:10, 12:41] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:46, 12:47](1651 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:10, 12:53] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:27, 03:19](1879 MB) -PASS -- TEST 'regional_control_faster_intel' [08:34, 06:21](1074 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:10, 09:16] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:47, 02:46](1602 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:51, 02:26](1600 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:23, 03:06](815 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:23, 02:46](808 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:40, 04:28](1128 MB) -PASS -- TEST 'control_ras_debug_intel' [05:23, 03:02](823 MB) -PASS -- TEST 'control_diag_debug_intel' [05:47, 02:52](1671 MB) -PASS -- TEST 'control_debug_p8_intel' [05:50, 02:46](1883 MB) -PASS -- TEST 'regional_debug_intel' [19:45, 17:35](1122 MB) -PASS -- TEST 'rap_control_debug_intel' [07:24, 04:59](1201 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:28, 04:59](1193 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:29, 04:54](1203 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:22, 05:05](1209 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:27, 04:57](1203 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:34, 05:15](1288 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:25, 05:01](1203 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:23, 05:08](1194 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:23, 04:55](1204 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 05:07](1198 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:25, 04:51](1193 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:26, 05:09](1206 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:24, 08:12](1202 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:26, 04:52](1200 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:27, 05:58](1209 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:27, 05:06](1202 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:28, 08:40](1200 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:11, 06:13] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:51, 13:14](1681 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:11, 12:28] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:57, 05:09](1107 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:08, 07:11](993 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:21, 03:56](918 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:58, 07:25](1069 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:34, 03:43](938 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:09, 03:56](898 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:26, 05:25](974 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:32, 02:03](869 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:11, 12:34] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:57, 02:39](1164 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:48, 01:15](1103 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:31](1057 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:11, 12:31] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:45, 04:42](946 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 06:39] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:26, 04:59](1082 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:27, 04:45](1080 MB) -PASS -- TEST 'conus13km_debug_intel' [18:58, 14:00](1231 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [18:58, 13:59](927 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:42, 07:56](1161 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:59, 14:00](1291 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:11, 06:39] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:27, 04:53](1136 MB) - -PASS -- COMPILE 'hafsw_intel' [16:11, 14:51] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:20, 06:05](739 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:27, 06:41](1116 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:28, 07:33](824 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [27:20, 24:17](853 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [31:33, 28:46](870 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:03, 07:10](494 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:29, 08:35](510 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:57, 03:34](369 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:27, 10:28](473 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:55, 04:45](520 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:53, 04:34](522 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:59, 05:42](574 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:32, 01:33](402 MB) -PASS -- TEST 'gnv1_nested_intel' [08:12, 04:24](1695 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:11, 06:34] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:09, 13:20](578 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:11, 15:09] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:05, 13:02](658 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:09, 13:09](721 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 15:15] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:47, 08:42](705 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:11, 14:03] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:14, 07:39](813 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:16, 07:38](790 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:58, 16:25](1201 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [11:11, 07:53] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 03:01](1156 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:19, 01:55](1098 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:51](1018 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:56](1023 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:55](1019 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 03:00](1154 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 03:02](1148 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:52](1016 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:08, 06:29](1026 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:16, 06:27](1001 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 03:01](1162 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:20, 04:19](2452 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:19, 04:22](2384 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:11, 05:06] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 06:28](1082 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 07:47] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:16, 02:59](1149 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:38] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:33, 01:02](252 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:26, 00:58](323 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:29, 00:34](325 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:34] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [03:31, 00:36](563 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:35, 00:25](447 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:11, 13:53] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:09, 04:12](1961 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:10, 13:43] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:58, 03:59](1941 MB) - -PASS -- COMPILE 'atml_intel' [16:11, 14:14] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:31, 05:03](1860 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:29, 05:02](1870 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:54, 02:49](1065 MB) - -PASS -- COMPILE 'atml_debug_intel' [09:11, 07:15] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:25, 05:56](1898 MB) - -PASS -- COMPILE 'atmw_intel' [16:11, 14:10] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:16, 02:12](1903 MB) - -PASS -- COMPILE 'atmaero_intel' [15:11, 14:08] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:08, 04:55](1972 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:12, 05:22](1758 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:59, 05:27](1757 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:11, 06:24] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [24:13, 20:48](4486 MB) - -PASS -- COMPILE 'atm_fbh_intel' [14:12, 12:28] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:31, 13:59](1079 MB) +* (-r) - USE ROCOTO + +PASS -- COMPILE s2swa_32bit_intel [16:24, 16:24](1 warnings,10 remarks) +PASS -- TEST cpld_control_p8_mixedmode_intel [27:26, 26:10] (2080528 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_intel [19:31, 19:31](1 warnings,10 remarks) +PASS -- TEST cpld_control_gfsv17_intel [19:39, 18:24] (1948288 MB) +PASS -- TEST cpld_control_gfsv17_iau_intel [20:55, 19:07] (2117840 MB) +PASS -- TEST cpld_restart_gfsv17_intel [10:51, 09:05] (1234540 MB) +PASS -- TEST cpld_mpi_gfsv17_intel [21:55, 20:28] (1869744 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [20:22, 20:22](1 warnings,10 remarks) +PASS -- TEST cpld_control_sfs_intel [18:43, 18:05] (1939904 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [08:57, 08:57](1523 warnings,2000 remarks) +PASS -- TEST cpld_debug_gfsv17_intel [31:47, 30:23] (1932544 MB) + +PASS -- COMPILE s2swa_intel [17:30, 17:30](1 warnings,10 remarks) +PASS -- TEST cpld_control_p8_intel [28:19, 27:01] (2140716 MB) +PASS -- TEST cpld_control_p8.v2.sfc_intel [27:11, 25:59] (2137376 MB) +PASS -- TEST cpld_restart_p8_intel [15:26, 14:17] (1802904 MB) +PASS -- TEST cpld_control_qr_p8_intel [28:45, 27:28] (2163280 MB) +PASS -- TEST cpld_restart_qr_p8_intel [15:25, 14:10] (1697324 MB) +PASS -- TEST cpld_2threads_p8_intel [25:10, 24:05] (2427012 MB) +PASS -- TEST cpld_decomp_p8_intel [27:16, 26:20] (2120040 MB) +PASS -- TEST cpld_mpi_p8_intel [23:18, 22:02] (2040468 MB) +PASS -- TEST cpld_control_ciceC_p8_intel [26:59, 25:42] (2148532 MB) +PASS -- TEST cpld_control_c192_p8_intel [17:59, 16:03] (2700724 MB) +PASS -- TEST cpld_restart_c192_p8_intel [11:31, 08:55] (2707112 MB) +PASS -- TEST cpld_bmark_p8_intel [27:27, 22:03] (3674560 MB) +PASS -- TEST cpld_restart_bmark_p8_intel [18:15, 11:21] (3489436 MB) +PASS -- TEST cpld_s2sa_p8_intel [09:15, 08:10] (2078064 MB) + +PASS -- COMPILE s2sw_intel [16:40, 16:40](1 warnings,10 remarks) +PASS -- TEST cpld_control_noaero_p8_intel [26:57, 25:59] (1974608 MB) +PASS -- TEST cpld_control_nowave_noaero_p8_intel [12:46, 11:46] (2056020 MB) + +PASS -- COMPILE s2swa_debug_intel [10:09, 10:09](1413 warnings,1230 remarks) +PASS -- TEST cpld_debug_p8_intel [23:52, 22:44] (2177676 MB) + +PASS -- COMPILE s2sw_debug_intel [07:55, 07:55](1413 warnings,1230 remarks) +PASS -- TEST cpld_debug_noaero_p8_intel [10:21, 09:26] (1997948 MB) + +PASS -- COMPILE s2s_aoflux_intel [14:44, 14:44],3 remarks) +PASS -- TEST cpld_control_noaero_p8_agrid_intel [06:02, 04:55] (2019512 MB) + +PASS -- COMPILE s2s_intel [15:14, 15:14](1 warnings,3 remarks) +PASS -- TEST cpld_control_c48_intel [11:08, 10:26] (3038052 MB) +PASS -- TEST cpld_warmstart_c48_intel [03:35, 02:55] (3017520 MB) +PASS -- TEST cpld_restart_c48_intel [02:16, 01:35] (2470352 MB) + +PASS -- COMPILE s2swa_faster_intel [18:22, 18:22](1 warnings,10 remarks) +PASS -- TEST cpld_control_p8_faster_intel [28:29, 27:20] (2149132 MB) + +PASS -- COMPILE s2sw_pdlib_intel [20:31, 20:31](1 warnings,10 remarks) +PASS -- TEST cpld_control_pdlib_p8_intel [29:39, 28:45] (2006448 MB) +PASS -- TEST cpld_restart_pdlib_p8_intel [15:22, 14:35] (1259924 MB) +PASS -- TEST cpld_mpi_pdlib_p8_intel [33:48, 32:53] (1936484 MB) + +PASS -- COMPILE s2sw_pdlib_debug_intel [07:19, 07:19](1523 warnings,2000 remarks) +PASS -- TEST cpld_debug_pdlib_p8_intel [35:31, 34:38] (1963992 MB) + +PASS -- COMPILE atm_dyn32_intel [14:35, 14:35](1 warnings,1 remarks) +PASS -- TEST control_flake_intel [03:55, 03:43] (687596 MB) +PASS -- TEST control_CubedSphereGrid_intel [04:04, 03:34] (1571908 MB) +PASS -- TEST control_CubedSphereGrid_parallel_intel [04:13, 03:45] (1579072 MB) +PASS -- TEST control_latlon_intel [03:54, 03:33] (1573844 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_intel [04:32, 03:44] (1579216 MB) +PASS -- TEST control_c48_intel [19:27, 18:47] (1708440 MB) +PASS -- TEST control_c48.v2.sfc_intel [10:09, 09:42] (837160 MB) +PASS -- TEST control_c192_intel [14:03, 13:14] (1733000 MB) +PASS -- TEST control_c384_intel [19:54, 18:26] (1978792 MB) +PASS -- TEST control_c384gdas_intel [12:15, 10:01] (1327408 MB) +PASS -- TEST control_stochy_intel [02:03, 01:50] (638724 MB) +PASS -- TEST control_stochy_restart_intel [01:25, 01:04] (472928 MB) +PASS -- TEST control_lndp_intel [01:50, 01:41] (643700 MB) +PASS -- TEST control_iovr4_intel [02:58, 02:42] (642916 MB) +PASS -- TEST control_iovr5_intel [02:53, 02:43] (638148 MB) +PASS -- TEST control_p8_intel [05:02, 04:11] (1868940 MB) +PASS -- TEST control_p8.v2.sfc_intel [04:45, 03:44] (1877864 MB) +PASS -- TEST control_p8_ugwpv1_intel [05:13, 04:08] (1871664 MB) +PASS -- TEST control_restart_p8_intel [03:05, 02:20] (1092960 MB) +PASS -- TEST control_noqr_p8_intel [05:01, 04:04] (1850968 MB) +PASS -- TEST control_restart_noqr_p8_intel [03:33, 02:34] (1121332 MB) +PASS -- TEST control_decomp_p8_intel [05:14, 04:10] (1856096 MB) +PASS -- TEST control_2threads_p8_intel [05:13, 04:24] (1943704 MB) +PASS -- TEST control_p8_lndp_intel [07:41, 07:18] (1858748 MB) +PASS -- TEST control_p8_rrtmgp_intel [05:52, 04:55] (1939344 MB) +PASS -- TEST control_p8_mynn_intel [04:58, 03:38] (1884936 MB) +PASS -- TEST merra2_thompson_intel [05:12, 03:54] (1872624 MB) +PASS -- TEST regional_control_intel [07:18, 06:38] (1066884 MB) +PASS -- TEST regional_restart_intel [04:03, 03:37] (1070232 MB) +PASS -- TEST regional_decomp_intel [07:18, 06:52] (1068720 MB) +PASS -- TEST regional_2threads_intel [05:40, 05:14] (1060268 MB) +PASS -- TEST regional_noquilt_intel [06:56, 06:30] (1377872 MB) +PASS -- TEST regional_netcdf_parallel_intel [06:56, 06:31] (1072144 MB) +PASS -- TEST regional_2dwrtdecomp_intel [06:46, 06:26] (1072592 MB) +PASS -- TEST regional_wofs_intel [08:18, 07:58] (1892968 MB) + +PASS -- COMPILE rrfs_intel [13:42, 13:42](3 warnings,9 remarks) +PASS -- TEST rap_control_intel [09:41, 08:33] (1048204 MB) +PASS -- TEST regional_spp_sppt_shum_skeb_intel [06:00, 05:16] (1249620 MB) +PASS -- TEST rap_decomp_intel [09:46, 08:45] (1017816 MB) +PASS -- TEST rap_2threads_intel [09:39, 08:37] (1144900 MB) +PASS -- TEST rap_restart_intel [05:36, 04:25] (1034972 MB) +PASS -- TEST rap_sfcdiff_intel [09:17, 08:12] (1054600 MB) +PASS -- TEST rap_sfcdiff_decomp_intel [09:44, 08:42] (1013960 MB) +PASS -- TEST rap_sfcdiff_restart_intel [07:24, 06:17] (1059764 MB) +PASS -- TEST hrrr_control_intel [05:16, 04:19] (1025876 MB) +PASS -- TEST hrrr_control_decomp_intel [05:29, 04:25] (1018276 MB) +PASS -- TEST hrrr_control_2threads_intel [10:36, 09:34] (1081092 MB) +PASS -- TEST hrrr_control_restart_intel [02:32, 02:20] (943140 MB) +PASS -- TEST rrfs_v1beta_intel [09:14, 08:20] (1045116 MB) +PASS -- TEST rrfs_v1nssl_intel [10:00, 09:44] (1975064 MB) +PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [09:51, 09:35] (2007216 MB) + +PASS -- COMPILE csawmg_intel [13:02, 13:02] +PASS -- TEST control_csawmg_intel [07:07, 06:41] (1013428 MB) +PASS -- TEST control_ras_intel [03:39, 03:31] (714928 MB) + +PASS -- COMPILE wam_intel [10:56, 10:56],1 remarks) +PASS -- TEST control_wam_intel [13:14, 12:43] (1646984 MB) + +PASS -- COMPILE atm_faster_dyn32_intel [10:56, 10:56],1 remarks) +PASS -- TEST control_p8_faster_intel [04:24, 03:21] (1870608 MB) +PASS -- TEST regional_control_faster_intel [06:51, 06:26] (1080472 MB) + +PASS -- COMPILE atm_debug_dyn32_intel [07:50, 07:50](882 warnings,9 remarks) +PASS -- TEST control_CubedSphereGrid_debug_intel [02:53, 02:21] (1598820 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [02:45, 02:15] (1606704 MB) +PASS -- TEST control_stochy_debug_intel [03:15, 03:06] (815860 MB) +PASS -- TEST control_lndp_debug_intel [03:00, 02:51] (812256 MB) +PASS -- TEST control_csawmg_debug_intel [04:44, 04:24] (1114180 MB) +PASS -- TEST control_ras_debug_intel [03:05, 02:55] (826172 MB) +PASS -- TEST control_diag_debug_intel [03:18, 02:49] (1673192 MB) +PASS -- TEST control_debug_p8_intel [03:15, 02:49] (1883116 MB) +PASS -- TEST regional_debug_intel [18:58, 18:30] (1090568 MB) +PASS -- TEST rap_control_debug_intel [05:12, 05:02] (1194716 MB) +PASS -- TEST hrrr_control_debug_intel [05:08, 04:58] (1197456 MB) +PASS -- TEST hrrr_gf_debug_intel [05:08, 04:55] (1203852 MB) +PASS -- TEST hrrr_c3_debug_intel [05:09, 04:56] (1201216 MB) +PASS -- TEST rap_unified_drag_suite_debug_intel [05:24, 05:09] (1202512 MB) +PASS -- TEST rap_diag_debug_intel [05:28, 05:07] (1284552 MB) +PASS -- TEST rap_cires_ugwp_debug_intel [05:17, 05:07] (1202700 MB) +PASS -- TEST rap_unified_ugwp_debug_intel [05:16, 05:06] (1201300 MB) +PASS -- TEST rap_lndp_debug_intel [05:18, 05:08] (1204948 MB) +PASS -- TEST rap_progcld_thompson_debug_intel [05:15, 05:04] (1198764 MB) +PASS -- TEST rap_noah_debug_intel [05:00, 04:50] (1199084 MB) +PASS -- TEST rap_sfcdiff_debug_intel [05:02, 04:51] (1196812 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [08:03, 07:53] (1200264 MB) +PASS -- TEST rrfs_v1beta_debug_intel [05:06, 04:52] (1196152 MB) +PASS -- TEST rap_clm_lake_debug_intel [06:14, 06:01] (1198800 MB) +PASS -- TEST rap_flake_debug_intel [05:15, 05:02] (1200684 MB) +PASS -- TEST gnv1_c96_no_nest_debug_intel [09:53, 08:46] (1198060 MB) + +PASS -- COMPILE wam_debug_intel [07:04, 07:04](837 warnings,1 remarks) +PASS -- TEST control_wam_debug_intel [14:42, 14:10] (1671236 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_intel [13:04, 13:04](3 warnings,8 remarks) +PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [05:42, 04:59] (1128820 MB) +PASS -- TEST rap_control_dyn32_phy32_intel [08:10, 07:13] (990348 MB) +PASS -- TEST hrrr_control_dyn32_phy32_intel [05:09, 03:48] (908964 MB) +PASS -- TEST rap_2threads_dyn32_phy32_intel [08:32, 07:29] (1065284 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [10:08, 08:43] (937576 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [04:42, 03:56] (887492 MB) +PASS -- TEST rap_restart_dyn32_phy32_intel [06:32, 05:27] (974200 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [02:32, 02:00] (873400 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [13:13, 13:13](3 warnings,8 remarks) +PASS -- TEST conus13km_control_intel [03:14, 02:38] (1162800 MB) +PASS -- TEST conus13km_2threads_intel [01:43, 01:12] (1106304 MB) +PASS -- TEST conus13km_restart_mismatch_intel [02:01, 01:31] (1062568 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_intel [13:16, 13:16](3 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_intel [05:06, 04:34] (960140 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [06:12, 06:12](785 warnings,8 remarks) +PASS -- TEST rap_control_debug_dyn32_phy32_intel [05:11, 04:55] (1079184 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [05:03, 04:50] (1071480 MB) +PASS -- TEST conus13km_debug_intel [14:05, 13:32] (1231400 MB) +PASS -- TEST conus13km_debug_qr_intel [14:03, 13:38] (923536 MB) +PASS -- TEST conus13km_debug_2threads_intel [08:24, 08:01] (1164676 MB) +PASS -- TEST conus13km_radar_tten_debug_intel [14:03, 13:35] (1293220 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [12:43, 12:43](785 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_debug_intel [05:11, 05:01] (1134856 MB) + +PASS -- COMPILE hafsw_intel [15:17, 15:17](1 warnings,9 remarks) +PASS -- TEST hafs_regional_atm_intel [07:09, 06:07] (735328 MB) +PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [06:51, 06:29] (1105684 MB) +PASS -- TEST hafs_regional_atm_ocn_intel [08:52, 07:36] (808112 MB) +PASS -- TEST hafs_regional_atm_wav_intel [25:09, 24:04] (840636 MB) +PASS -- TEST hafs_regional_atm_ocn_wav_intel [29:53, 28:32] (867168 MB) +PASS -- TEST hafs_regional_1nest_atm_intel [08:02, 07:12] (497844 MB) +PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [09:52, 08:38] (516888 MB) +PASS -- TEST hafs_global_1nest_atm_intel [04:15, 03:31] (372176 MB) +PASS -- TEST hafs_global_multiple_4nests_atm_intel [11:49, 09:43] (483212 MB) +PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [05:34, 04:50] (521440 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [05:17, 04:27] (529192 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [06:38, 05:49] (570956 MB) +PASS -- TEST hafs_global_storm_following_1nest_atm_intel [01:54, 01:33] (400332 MB) +PASS -- TEST gnv1_nested_intel [06:20, 04:25] (1712168 MB) + +PASS -- COMPILE hafsw_debug_intel [07:06, 07:06](1465 warnings,1502 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [14:36, 13:43] (580276 MB) + +PASS -- COMPILE hafsw_faster_intel [15:33, 15:33],8 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [14:00, 12:55] (660152 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [14:22, 13:15] (714924 MB) + +PASS -- COMPILE hafs_mom6w_intel [15:01, 15:01],7 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [10:15, 08:52] (703896 MB) + +PASS -- COMPILE hafs_all_intel [20:49, 20:49],8 remarks) +PASS -- TEST hafs_regional_docn_intel [08:41, 07:36] (805844 MB) +PASS -- TEST hafs_regional_docn_oisst_intel [08:42, 07:37] (795744 MB) +PASS -- TEST hafs_regional_datm_cdeps_intel [17:00, 16:17] (1204108 MB) + +PASS -- COMPILE datm_cdeps_intel [09:32, 09:31],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_intel [03:06, 02:59] (1157664 MB) +PASS -- TEST datm_cdeps_restart_cfsr_intel [02:01, 01:53] (1104244 MB) +PASS -- TEST datm_cdeps_control_gefs_intel [02:58, 02:50] (1022084 MB) +PASS -- TEST datm_cdeps_iau_gefs_intel [03:02, 02:53] (1016672 MB) +PASS -- TEST datm_cdeps_stochy_gefs_intel [03:07, 03:00] (1005108 MB) +PASS -- TEST datm_cdeps_ciceC_cfsr_intel [03:05, 02:57] (1154516 MB) +PASS -- TEST datm_cdeps_bulk_cfsr_intel [03:06, 02:58] (1149476 MB) +PASS -- TEST datm_cdeps_bulk_gefs_intel [02:57, 02:50] (1019796 MB) +PASS -- TEST datm_cdeps_mx025_cfsr_intel [07:28, 06:36] (1016632 MB) +PASS -- TEST datm_cdeps_mx025_gefs_intel [07:23, 06:31] (1000896 MB) +PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [03:02, 02:58] (1151916 MB) +PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [04:27, 04:19] (2396808 MB) +PASS -- TEST datm_cdeps_gfs_intel [04:31, 04:23] (2393840 MB) + +PASS -- COMPILE datm_cdeps_debug_intel [05:12, 05:12](2 warnings,2 remarks) +PASS -- TEST datm_cdeps_debug_cfsr_intel [06:40, 06:30] (1078396 MB) + +PASS -- COMPILE datm_cdeps_faster_intel [08:20, 08:20],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_faster_intel [03:03, 02:57] (1147824 MB) + +PASS -- COMPILE datm_cdeps_land_intel [01:25, 01:25],1 remarks) +PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:22, 01:02] (255152 MB) +PASS -- TEST datm_cdeps_lnd_era5_intel [01:11, 00:53] (325144 MB) +PASS -- TEST datm_cdeps_lnd_era5_rst_intel [00:50, 00:35] (321824 MB) + +PASS -- COMPILE atm_ds2s_docn_pcice_intel [13:40, 13:40],3 remarks) +PASS -- TEST atm_ds2s_docn_pcice_intel [05:10, 04:15] (1969272 MB) + +PASS -- COMPILE atm_ds2s_docn_dice_intel [20:13, 14:17](1 warnings,1 remarks) +PASS -- TEST atm_ds2s_docn_dice_intel [13:20, 09:13] (1968132 MB) + +PASS -- COMPILE atml_intel [14:46, 14:46](8 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_sbs_intel [06:14, 04:56] (1856404 MB) +PASS -- TEST control_p8_atmlnd_intel [06:10, 04:52] (1864464 MB) +PASS -- TEST control_restart_p8_atmlnd_intel [03:26, 02:48] (1074680 MB) + +PASS -- COMPILE atml_debug_intel [07:40, 07:40](880 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_debug_intel [07:08, 05:51] (1893832 MB) + +PASS -- COMPILE atmw_intel [13:34, 13:34],8 remarks) +PASS -- TEST atmwav_control_noaero_p8_intel [03:18, 02:11] (1896056 MB) + +PASS -- COMPILE atmaero_intel [13:03, 13:03],1 remarks) +PASS -- TEST atmaero_control_p8_intel [05:34, 04:36] (1975420 MB) +PASS -- TEST atmaero_control_p8_rad_intel [06:28, 05:24] (1766680 MB) +PASS -- TEST atmaero_control_p8_rad_micro_intel [06:27, 05:29] (1762344 MB) + +PASS -- COMPILE atmaq_debug_intel [06:06, 06:06](882 warnings,6 remarks) +PASS -- TEST regional_atmaq_debug_intel [22:29, 20:52] (4482168 MB) + +PASS -- COMPILE atm_fbh_intel [12:07, 12:07](3 warnings,8 remarks) +PASS -- TEST cpld_regional_atm_fbh_intel [15:54, 15:38] (1082444 MB) + SYNOPSIS: -Starting Date/Time: 20241018 19:05:16 -Ending Date/Time: 20241018 20:53:50 -Total Time: 01h:49m:17s -Compiles Completed: 43/43 -Tests Completed: 188/188 +Starting Date/Time: 2024-10-29 17:32:00 +Ending Date/Time: 2024-10-30 12:58:15 +Total Time: 19h:26m:15s +Compiles Completed: 42/42 +Tests Completed: 186/186 + NOTES: -A file 'test_changes.list' was generated but is empty. -If you are using this log as a pull request verification, please commit 'test_changes.list'. +A file test_changes.list was generated but is empty. +If you are using this log as a pull request verification, please commit test_changes.list. Result: SUCCESS -====END OF ORION REGRESSION TESTING LOG==== +====END OF orion REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 80b3a1f35e..4e5df4ef05 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -1462344cc1bf03e701cfe58b3e74a9e57762b3b6 +28e0f98fc73229c8005bc8300b29230d804edac1 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,9 +11,9 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 8e8df02db4fda01cb4cb63c13164e833c8280931 FV3 (remotes/origin/cubed_sphere_chunks) + 99091f9742670bdebd84bd13f17b9115457d64dd FV3 (heads/develop) 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) - 8c8b60498ec463ea2d3d5b79950c6b47f4af3e34 FV3/ccpp/framework (v0.1.0-1703-g8c8b604) + b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) f3eeb3442775b7239d98e3d09acc6d4f1d42233e FV3/ccpp/physics (EP4-889-gf3eeb344) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) @@ -38,241 +38,311 @@ 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-20241011 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112875 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241028 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3146 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:27, 11:20] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [22:49, 02:30](3085 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:29, 11:49] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:48, 02:55](1816 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [03:18, 02:55](1832 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [02:39, 02:52](975 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:49, 03:26](1779 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:29, 11:58] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [22:48, 02:06](1813 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:23, 05:19] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:55, 03:23](1829 MB) - -PASS -- COMPILE 's2swa_intel' [13:27, 11:34] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [22:49, 02:28](3115 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [22:49, 02:52](3113 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:25, 03:10](3043 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [22:49, 02:25](3135 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [11:26, 03:05](3062 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [22:49, 02:18](3358 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [22:49, 02:28](3115 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [22:50, 03:04](3057 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [22:49, 02:48](3113 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [22:58, 07:27](4103 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [01:17, 07:15](4257 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [22:49, 02:49](3095 MB) - -PASS -- COMPILE 's2sw_intel' [13:29, 11:13] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [22:48, 02:49](1818 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [22:48, 02:46](1888 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:27, 10:15] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [23:49, 03:04](1881 MB) - -PASS -- COMPILE 's2s_intel' [12:26, 10:21] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [23:49, 01:44](2865 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [23:49, 02:26](2870 MB) -PASS -- TEST 'cpld_restart_c48_intel' [18:37, 02:20](2283 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:33, 16:18] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [17:43, 03:01](3125 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:29, 11:31] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:47, 02:21](1820 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [03:47, 02:18](993 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [03:35, 02:41](1794 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:22, 05:21] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [21:32, 02:19](1849 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:33] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [12:14, 02:22](565 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [12:14, 02:16](1465 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [11:30, 01:58](1473 MB) -PASS -- TEST 'control_latlon_intel' [11:09, 01:58](1469 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [11:03, 02:14](1468 MB) -PASS -- TEST 'control_c48_intel' [11:00, 02:28](1565 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:09, 01:43](689 MB) -PASS -- TEST 'control_c192_intel' [06:51, 02:01](1586 MB) -PASS -- TEST 'control_c384_intel' [06:55, 04:26](1879 MB) -PASS -- TEST 'control_c384gdas_intel' [06:23, 03:57](1063 MB) -PASS -- TEST 'control_stochy_intel' [06:19, 01:34](522 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:35, 02:04](328 MB) -PASS -- TEST 'control_lndp_intel' [06:07, 01:36](520 MB) -PASS -- TEST 'control_iovr4_intel' [06:00, 01:48](519 MB) -PASS -- TEST 'control_iovr5_intel' [05:40, 01:37](517 MB) -PASS -- TEST 'control_p8_intel' [05:31, 02:38](1757 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:24, 02:59](1759 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:02, 02:20](1753 MB) -PASS -- TEST 'control_restart_p8_intel' [58:33, 02:50](910 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:29, 02:24](1753 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [57:05, 02:45](914 MB) -PASS -- TEST 'control_decomp_p8_intel' [02:39, 02:19](1750 MB) -PASS -- TEST 'control_2threads_p8_intel' [02:38, 02:35](1839 MB) -PASS -- TEST 'control_p8_lndp_intel' [02:38, 02:03](1757 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [02:37, 03:01](1815 MB) -PASS -- TEST 'control_p8_mynn_intel' [02:29, 02:52](1771 MB) -PASS -- TEST 'merra2_thompson_intel' [02:29, 02:52](1755 MB) -PASS -- TEST 'regional_control_intel' [02:28, 02:08](836 MB) -PASS -- TEST 'regional_restart_intel' [54:31, 01:16](841 MB) -PASS -- TEST 'regional_decomp_intel' [01:32, 01:59](836 MB) -PASS -- TEST 'regional_2threads_intel' [01:31, 01:51](889 MB) -PASS -- TEST 'regional_noquilt_intel' [01:23, 01:16](1166 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [01:01, 02:22](839 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [00:21, 02:07](838 MB) -PASS -- TEST 'regional_wofs_intel' [00:12, 02:06](1565 MB) - -PASS -- COMPILE 'rrfs_intel' [10:24, 09:01] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [13:24, 03:01](902 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:25, 02:04](1049 MB) -PASS -- TEST 'rap_decomp_intel' [13:24, 02:51](905 MB) -PASS -- TEST 'rap_2threads_intel' [13:24, 02:48](989 MB) -PASS -- TEST 'rap_restart_intel' [00:13, 02:18](776 MB) -PASS -- TEST 'rap_sfcdiff_intel' [13:24, 03:11](906 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:24, 02:50](901 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [59:05, 02:50](775 MB) -PASS -- TEST 'hrrr_control_intel' [13:24, 02:18](901 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [13:24, 02:45](900 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [13:25, 02:39](972 MB) -PASS -- TEST 'hrrr_control_restart_intel' [58:50, 02:00](731 MB) -PASS -- TEST 'rrfs_v1beta_intel' [13:24, 03:11](898 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:24, 01:59](1857 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:16, 02:14](1848 MB) - -PASS -- COMPILE 'csawmg_intel' [10:25, 08:10] -PASS -- TEST 'control_csawmg_intel' [58:30, 01:33](858 MB) -PASS -- TEST 'control_ras_intel' [58:09, 01:52](556 MB) - -PASS -- COMPILE 'wam_intel' [10:25, 08:18] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [57:40, 01:26](1542 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:25, 08:29] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [55:55, 03:11](1756 MB) -PASS -- TEST 'regional_control_faster_intel' [55:54, 01:24](836 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:24, 07:42] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [13:05, 01:45](1496 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [55:53, 01:46](1493 MB) -PASS -- TEST 'control_stochy_debug_intel' [55:33, 01:50](693 MB) -PASS -- TEST 'control_lndp_debug_intel' [55:31, 02:05](694 MB) -PASS -- TEST 'control_csawmg_debug_intel' [54:55, 01:29](999 MB) -PASS -- TEST 'control_ras_debug_intel' [54:29, 02:06](702 MB) -PASS -- TEST 'control_diag_debug_intel' [54:01, 02:28](1556 MB) -PASS -- TEST 'control_debug_p8_intel' [53:34, 02:21](1779 MB) -PASS -- TEST 'regional_debug_intel' [53:32, 02:01](878 MB) -PASS -- TEST 'rap_control_debug_intel' [53:29, 01:33](1076 MB) -PASS -- TEST 'hrrr_control_debug_intel' [52:57, 01:44](1074 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [52:48, 01:38](1075 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [52:39, 01:36](1074 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [52:32, 01:37](1077 MB) -PASS -- TEST 'rap_diag_debug_intel' [52:28, 02:35](1160 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [52:12, 01:29](1077 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [51:38, 01:29](1078 MB) -PASS -- TEST 'rap_lndp_debug_intel' [51:37, 01:28](1077 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [51:31, 01:42](1077 MB) -PASS -- TEST 'rap_noah_debug_intel' [51:03, 01:37](1072 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [50:22, 01:32](1076 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [50:17, 02:19](1074 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [50:10, 01:34](1065 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [49:57, 01:42](1076 MB) -PASS -- TEST 'rap_flake_debug_intel' [49:56, 01:28](1079 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [49:49, 02:50](1083 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:20, 04:27] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:27, 01:23](1576 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 08:07] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [49:23, 02:16](912 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [49:12, 03:03](783 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [49:06, 03:34](775 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [48:53, 02:45](837 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [48:10, 03:44](822 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [47:39, 03:19](774 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [39:48, 02:30](675 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [41:53, 01:27](660 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:23, 08:09] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [47:33, 02:05](989 MB) -PASS -- TEST 'conus13km_2threads_intel' [42:18, 01:55](994 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [41:45, 01:41](859 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:22, 08:22] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [47:20, 02:33](804 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 04:34] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [45:53, 01:51](951 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [45:14, 02:01](949 MB) -PASS -- TEST 'conus13km_debug_intel' [45:14, 01:48](1039 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [45:04, 02:13](711 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [44:51, 01:41](1041 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [44:39, 01:42](1104 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 04:28] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [44:06, 01:47](983 MB) - -PASS -- COMPILE 'hafsw_intel' [11:26, 10:02] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [44:09, 02:48](598 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [43:53, 01:33](941 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [43:35, 02:27](645 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [43:31, 02:32](673 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [43:26, 02:49](693 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [42:50, 02:10](379 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [42:40, 03:02](386 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [42:23, 02:32](308 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [41:32, 03:17](368 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [41:19, 02:29](400 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [41:15, 02:47](397 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [40:55, 02:47](469 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [40:26, 02:22](311 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:20, 04:58] ( 1447 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [40:27, 02:18](501 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:27, 09:46] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [40:22, 02:42](515 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [40:18, 02:40](693 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:27, 09:53] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [38:44, 03:11](703 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:25, 09:02] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [38:23, 02:56](643 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [38:19, 02:48](619 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [38:00, 01:24](880 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:26, 10:04] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [37:49, 01:49](1816 MB) - -PASS -- COMPILE 'atml_intel' [11:30, 09:35] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [07:30, 05:30] ( 866 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [10:29, 08:39] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [37:28, 02:20](3009 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [37:02, 02:53](2898 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [36:24, 02:55](2902 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:24, 04:28] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [36:13, 02:23](4379 MB) +PASS -- COMPILE 's2swa_32bit_intel' [15:31, 11:29] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:44, 03:17](3085 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:31, 12:04] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [08:44, 03:22](1811 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [46:29, 02:50](1846 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [45:50, 02:45](972 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [08:45, 03:05](1783 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [15:31, 11:37] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [08:44, 01:52](1809 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:23, 05:19] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [14:53, 03:10](1841 MB) + +PASS -- COMPILE 's2swa_intel' [15:31, 11:40] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:44, 02:32](3115 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:44, 02:41](3115 MB) +PASS -- TEST 'cpld_restart_p8_intel' [49:03, 02:58](3043 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:44, 02:25](3136 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [49:06, 02:47](3062 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [08:44, 02:29](3356 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:44, 02:26](3113 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:45, 02:20](3055 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:44, 02:37](3121 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [08:53, 06:24](4110 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [36:46, 04:54](4252 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:44, 02:02](3094 MB) + +PASS -- COMPILE 's2sw_intel' [14:30, 10:56] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:45, 02:19](1829 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:45, 02:56](1888 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:28, 10:25] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:47, 02:13](1881 MB) + +PASS -- COMPILE 's2s_intel' [14:29, 10:17] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:45, 02:08](2859 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [09:45, 01:57](2871 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:38, 02:19](2279 MB) + +PASS -- COMPILE 's2swa_faster_intel' [20:42, 16:19] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [03:34, 03:04](3121 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [15:31, 11:35] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [08:44, 02:03](1832 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [37:49, 02:33](978 MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_mpi_pdlib_p8_intel' [, ]( MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:25, 05:16] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [07:27, 02:26](1845 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:24, 09:42] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [58:22, 02:15](568 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [58:22, 02:02](1464 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [58:22, 02:04](1474 MB) +PASS -- TEST 'control_latlon_intel' [58:22, 02:00](1468 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [58:22, 02:07](1469 MB) +PASS -- TEST 'control_c48_intel' [58:21, 02:16](1568 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [58:21, 01:42](689 MB) +PASS -- TEST 'control_c192_intel' [58:22, 01:54](1594 MB) +PASS -- TEST 'control_c384_intel' [57:30, 03:24](1882 MB) +PASS -- TEST 'control_c384gdas_intel' [56:08, 03:46](1068 MB) +PASS -- TEST 'control_stochy_intel' [53:46, 01:50](524 MB) +PASS -- TEST 'control_stochy_restart_intel' [49:13, 01:41](326 MB) +PASS -- TEST 'control_lndp_intel' [52:40, 01:24](524 MB) +PASS -- TEST 'control_iovr4_intel' [52:33, 01:34](516 MB) +PASS -- TEST 'control_iovr5_intel' [52:29, 01:35](520 MB) +PASS -- TEST 'control_p8_intel' [52:27, 02:15](1760 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [51:56, 02:55](1764 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [51:46, 02:24](1761 MB) +PASS -- TEST 'control_restart_p8_intel' [45:36, 02:37](907 MB) +PASS -- TEST 'control_noqr_p8_intel' [51:44, 01:58](1751 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [45:34, 02:32](919 MB) +PASS -- TEST 'control_decomp_p8_intel' [51:38, 01:51](1749 MB) +PASS -- TEST 'control_2threads_p8_intel' [50:35, 02:14](1839 MB) +PASS -- TEST 'control_p8_lndp_intel' [50:05, 02:22](1760 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [49:23, 02:32](1808 MB) +PASS -- TEST 'control_p8_mynn_intel' [49:14, 02:39](1764 MB) +PASS -- TEST 'merra2_thompson_intel' [49:08, 03:30](1761 MB) +PASS -- TEST 'regional_control_intel' [48:48, 01:35](843 MB) +PASS -- TEST 'regional_restart_intel' [40:59, 02:13](841 MB) +PASS -- TEST 'regional_decomp_intel' [48:44, 01:18](844 MB) +PASS -- TEST 'regional_2threads_intel' [48:28, 01:50](892 MB) +PASS -- TEST 'regional_noquilt_intel' [48:00, 02:09](1165 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [47:48, 02:04](836 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [45:31, 01:48](839 MB) +PASS -- TEST 'regional_wofs_intel' [45:31, 01:58](1566 MB) + +PASS -- COMPILE 'rrfs_intel' [11:25, 08:54] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [45:15, 02:44](903 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [45:12, 01:33](1046 MB) +PASS -- TEST 'rap_decomp_intel' [45:09, 02:35](902 MB) +PASS -- TEST 'rap_2threads_intel' [44:20, 02:31](983 MB) +PASS -- TEST 'rap_restart_intel' [34:21, 02:09](772 MB) +PASS -- TEST 'rap_sfcdiff_intel' [44:14, 03:26](902 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [44:12, 03:24](905 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [32:24, 02:27](773 MB) +PASS -- TEST 'hrrr_control_intel' [43:12, 03:17](898 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [42:37, 02:52](903 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [42:36, 02:37](976 MB) +PASS -- TEST 'hrrr_control_restart_intel' [35:21, 01:58](728 MB) +PASS -- TEST 'rrfs_v1beta_intel' [42:16, 02:51](898 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [42:06, 01:51](1853 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [41:51, 02:07](1842 MB) + +PASS -- COMPILE 'csawmg_intel' [10:24, 08:13] +PASS -- TEST 'control_csawmg_intel' [59:20, 02:16](858 MB) +PASS -- TEST 'control_ras_intel' [59:20, 01:42](554 MB) + +PASS -- COMPILE 'wam_intel' [12:27, 08:25] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [41:17, 02:30](1553 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:27, 08:31] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [41:02, 03:03](1764 MB) +PASS -- TEST 'regional_control_faster_intel' [40:13, 01:20](840 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:26, 07:37] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [40:04, 01:37](1492 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [40:04, 01:32](1492 MB) +PASS -- TEST 'control_stochy_debug_intel' [40:03, 01:53](697 MB) +PASS -- TEST 'control_lndp_debug_intel' [39:58, 02:08](698 MB) +PASS -- TEST 'control_csawmg_debug_intel' [38:17, 01:57](999 MB) +PASS -- TEST 'control_ras_debug_intel' [37:58, 01:27](705 MB) +PASS -- TEST 'control_diag_debug_intel' [37:05, 02:12](1558 MB) +PASS -- TEST 'control_debug_p8_intel' [37:05, 02:16](1794 MB) +PASS -- TEST 'regional_debug_intel' [35:55, 02:05](881 MB) +PASS -- TEST 'rap_control_debug_intel' [35:44, 01:27](1083 MB) +PASS -- TEST 'hrrr_control_debug_intel' [35:11, 01:48](1073 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [35:09, 01:45](1076 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [34:21, 01:43](1076 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [34:20, 01:36](1078 MB) +PASS -- TEST 'rap_diag_debug_intel' [34:15, 02:30](1165 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [34:15, 01:38](1079 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [34:09, 01:34](1078 MB) +PASS -- TEST 'rap_lndp_debug_intel' [34:05, 01:37](1078 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [34:01, 01:33](1078 MB) +PASS -- TEST 'rap_noah_debug_intel' [33:27, 01:39](1074 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [33:26, 01:30](1074 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [32:30, 01:23](1072 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [32:24, 01:31](1068 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [31:49, 01:49](1074 MB) +PASS -- TEST 'rap_flake_debug_intel' [31:19, 01:31](1077 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [30:40, 02:51](1084 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:22, 04:40] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [00:21, 02:19](1581 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:26, 08:08] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [30:22, 01:57](909 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [30:11, 02:43](778 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [30:09, 03:02](776 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [30:03, 02:41](834 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [29:22, 02:20](827 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [28:10, 02:44](776 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [21:07, 02:14](674 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [23:23, 01:47](660 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:24, 08:22] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [27:46, 02:01](987 MB) +PASS -- TEST 'conus13km_2threads_intel' [22:39, 01:34](985 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [21:52, 02:07](859 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:24, 08:17] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [27:22, 02:08](807 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 04:39] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [27:19, 01:54](951 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [26:37, 01:55](954 MB) +PASS -- TEST 'conus13km_debug_intel' [26:35, 01:43](1039 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [26:32, 01:26](707 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [26:32, 01:41](1041 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:30, 01:29](1104 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:21, 04:42] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [26:14, 01:51](985 MB) + +PASS -- COMPILE 'hafsw_intel' [12:31, 10:17] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [26:04, 02:51](597 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [25:50, 01:58](946 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [25:45, 02:36](644 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [25:28, 03:09](666 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:59, 03:18](694 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [24:54, 01:54](378 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [23:59, 02:49](391 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [23:49, 01:55](278 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [23:17, 03:41](361 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [23:13, 01:52](399 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [23:12, 02:13](410 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [21:43, 02:23](478 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [21:27, 01:54](312 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:19, 05:01] ( 1447 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [20:31, 01:48](504 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:28, 09:52] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [19:28, 02:38](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:01, 01:56](702 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:27, 09:56] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [19:00, 02:40](702 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:28, 09:29] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [18:32, 03:10](640 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:53, 02:17](619 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:44, 01:54](878 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:28, 10:09] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [16:03, 02:17](1820 MB) + +PASS -- COMPILE 'atml_intel' [11:30, 09:42] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [07:20, 05:41] ( 866 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [10:24, 08:43] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [16:00, 01:59](3009 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [15:42, 02:45](2898 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [15:39, 02:33](2906 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:20, 04:32] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [15:28, 02:43](4380 MB) SYNOPSIS: -Starting Date/Time: 20241021 13:23:29 -Ending Date/Time: 20241021 14:52:52 -Total Time: 01h:30m:06s +Starting Date/Time: 20241031 14:35:23 +Ending Date/Time: 20241031 16:31:48 +Total Time: 01h:57m:13s Compiles Completed: 33/33 -Tests Completed: 156/156 +Tests Completed: 155/156 +Failed Tests: +* TEST cpld_mpi_pdlib_p8_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/dpsarmie/ufs-weather-model/tests/logs/log_wcoss2/run_cpld_mpi_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 WCOSS2 REGRESSION TESTING LOG==== +====START OF WCOSS2 REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +358449cfff384a09cdf27f90139d02cf9f0a9074 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) + 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 99091f9742670bdebd84bd13f17b9115457d64dd FV3 (heads/develop) + 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) + b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) + f3eeb3442775b7239d98e3d09acc6d4f1d42233e FV3/ccpp/physics (EP4-889-gf3eeb344) + 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: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241028 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_222071 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: GFS-DEV +* (-n) - RUN SINGLE TEST: cpld_mpi_pdlib_p8 +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2sw_pdlib_intel' [13:33, 11:43] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [37:36, 02:24](1826 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [06:52, 01:45](1795 MB) + +SYNOPSIS: +Starting Date/Time: 20241031 17:08:50 +Ending Date/Time: 20241031 18:33:25 +Total Time: 01h:24m:52s +Compiles Completed: 1/1 +Tests Completed: 2/2 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/parm/global_control.nml.IN b/tests/parm/global_control.nml.IN index 675bc19739..aeb1c11b2e 100644 --- a/tests/parm/global_control.nml.IN +++ b/tests/parm/global_control.nml.IN @@ -1,7 +1,7 @@ &atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. + blocksize = @[BLOCKSIZE] + chksum_debug = @[CHKSUM_DEBUG] + dycore_only = @[DYCORE_ONLY] ccpp_suite = '@[CCPP_SUITE]' / @@ -22,10 +22,10 @@ &fv_core_nml layout = @[INPES],@[JNPES] - io_layout = 1,1 + io_layout = @[IO_LAYOUT] npx = @[NPX] npy = @[NPY] - ntiles = 6 + ntiles = @[NTILES] npz = @[NPZ] dz_min = @[DZ_MIN] psm_bc = @[PSM_BC] @@ -34,62 +34,62 @@ fv_debug = .false. range_warn = .true. reset_eta = .false. - n_sponge = 42 - nudge_qv = .true. - nudge_dz = .false. + n_sponge = @[N_SPONGE] + nudge_qv = @[NUDGE_QV] + nudge_dz = @[NUDGE_DZ] tau = @[TAU] - fast_tau_w_sec = 0.2 + fast_tau_w_sec = @[FAST_TAU_W_SEC] rf_cutoff = @[RF_CUTOFF] d2_bg_k1 = @[D2_BG_K1] d2_bg_k2 = @[D2_BG_K2] kord_tm = @[KORD_TM] - kord_mt = @[KORD_XX] - kord_wz = @[KORD_XX] - kord_tr = @[KORD_XX] + kord_mt = @[KORD_MT] + kord_wz = @[KORD_WZ] + kord_tr = @[KORD_TR] hydrostatic = @[HYDROSTATIC] - phys_hydrostatic = .false. - use_hydro_pressure = .false. + phys_hydrostatic = @[PHYS_HYDROSTATIC] + use_hydro_pressure = @[USE_HYDRO_PRESSURE] pass_full_omega_to_physics_in_non_hydrostatic_mode = @[UPDATE_FULL_OMEGA] beta = 0. a_imp = 1. p_fac = 0.1 k_split = @[K_SPLIT] n_split = @[N_SPLIT] - nwat = 6 + nwat = @[NWAT] na_init = @[NA_INIT] d_ext = 0. dnats = @[DNATS] fv_sg_adj = @[FV_SG_ADJ] d2_bg = 0. - nord = 2 + nord = @[NORD] dddmp = @[DDDMP] - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 + d4_bg = @[D4_BG] + vtdm4 = @[VTDM4] + delt_max = @[DELT_MAX] ke_bg = 0. do_vort_damp = @[DO_VORT_DAMP] external_ic = @[EXTERNAL_IC] - external_eta = .true. - gfs_phil = .false. + external_eta = @[EXTERNAL_ETA] + gfs_phil = @[GFS_PHIL] nggps_ic = @[NGGPS_IC] mountain = @[MOUNTAIN] - ncep_ic = .false. + ncep_ic = @[NCEP_IC] d_con = @[D_CON] - hord_mt = @[HORD_XX] - hord_vt = @[HORD_XX] - hord_tm = @[HORD_XX] + hord_mt = @[HORD_MT] + hord_vt = @[HORD_VT] + hord_tm = @[HORD_TM] hord_dp = @[HORD_DP] hord_tr = @[HORD_TR] - adjust_dry_mass = .false. - dry_mass = 98320.0 - consv_te = 1. + adjust_dry_mass = @[ADJUST_DRY_MASS] + dry_mass = @[DRY_MASS] + consv_te = @[CONSV_TE] do_sat_adj = @[DO_SAT_ADJ] consv_am = .false. fill = .true. dwind_2d = .false. - print_freq = 6 + print_freq = @[PRINT_FREQ] warm_start = @[WARM_START] - no_dycore = .false. + no_dycore = @[NO_DYCORE] z_tracer = .true. agrid_vel_rst = .true. read_increment = @[READ_INCREMENT] @@ -98,9 +98,9 @@ / &external_ic_nml - filtered_terrain = .true. + filtered_terrain = @[FILTERED_TERRAIN] levp = @[NPZP] - gfs_dwinds = .true. + gfs_dwinds = @[GFS_DWINDS] checker_tr = .false. nt_checker = 0 / @@ -112,31 +112,31 @@ qdiag3d = @[QDIAG3D] print_diff_pgr = @[PRINT_DIFF_PGR] fhcyc = @[FHCYC] - use_ufo = .true. - pre_rad = .false. + use_ufo = @[USE_UFO] + pre_rad = @[PRE_RAD] imp_physics = @[IMP_PHYSICS] iovr = @[IOVR] - ltaerosol = .false. - lradar = .false. - ttendlim = -999 + ltaerosol = @[LTAEROSOL] + lradar = @[LRADAR] + ttendlim = @[TTENDLIM] dt_inner = @[DT_INNER] sedi_semi = @[SEDI_SEMI] decfl = @[DECFL] - oz_phys = .false. - oz_phys_2015 = .true. - lsoil_lsm = 4 + oz_phys = @[OZ_PHYS_NEW] + oz_phys_2015 = @[OZ_PHYS_OLD] + lsoil_lsm = @[LSOIL_LSM] do_mynnedmf = @[DO_MYNNEDMF] - do_mynnsfclay = .false. - icloud_bl = 1 - bl_mynn_edmf = 1 - bl_mynn_tkeadvect = .true. - bl_mynn_edmf_mom = 1 - do_ugwp = .false. - do_tofd = .false. + do_mynnsfclay = @[DO_MYNNSFCLAY] + icloud_bl = @[ICLOUD_BL] + bl_mynn_edmf = @[BL_MYNN_EDMF] + bl_mynn_tkeadvect = @[BL_MYNN_TKEADVECT] + bl_mynn_edmf_mom = @[BL_MYNN_EDMF_MOM] + do_ugwp = @[DO_UGWP] + do_tofd = @[DO_TOFD] gwd_opt = @[GWD_OPT] do_ugwp_v0 = @[DO_UGWP_V0] do_ugwp_v1 = @[DO_UGWP_V1] - do_ugwp_v0_orog_only = .false. + do_ugwp_v0_orog_only = @[DO_UGWP_V0_OROG_ONLY] do_ugwp_v0_nst_only = @[DO_UGWP_V0_NST_ONLY] do_gsl_drag_ls_bl = @[DO_GSL_DRAG_LS_BL] do_gsl_drag_ss = @[DO_GSL_DRAG_SS] @@ -147,31 +147,31 @@ min_lakeice = @[MIN_LAKEICE] min_seaice = @[MIN_SEAICE] use_cice_alb = @[USE_CICE_ALB] - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. + pdfcld = @[PDFCLD] + fhswr = @[FHSWR] + fhlwr = @[FHLWR] ialb = @[IALB] iems = @[IEMS] iaer = @[IAER] icliq_sw = @[ICLIQ_SW] - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. + ico2 = @[ICO2] + isubc_sw = @[ISUBC_SW] + isubc_lw = @[ISUBC_LW] + isol = @[ISOL] + lwhtr = @[LWHTR] + swhtr = @[SWHTR] + cnvgwd = @[CNVGWD] shal_cnv = @[SHAL_CNV] - cal_pre = .false. - redrag = .true. - dspheat = .true. - hybedmf = .false. + cal_pre = @[CAL_PRE] + redrag = @[REDRAG] + dspheat = @[DSPHEAT] + hybedmf = @[HYBEDMF] satmedmf = @[SATMEDMF] - isatmedmf = 1 + isatmedmf = @[ISATMEDMF] lheatstrg = @[LHEATSTRG] lseaspray = @[LSEASPRAY] random_clds = @[RANDOM_CLDS] - trans_trac = .true. + trans_trac = @[TRANS_TRAC] cnvcld = @[CNVCLD] imfshalcnv = @[IMFSHALCNV] imfdeepcnv = @[IMFDEEPCNV] @@ -181,45 +181,45 @@ betadcu = @[BETADCU] ras = @[RAS] cdmbgwd = @[CDMBWD] - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsoil = 4 + prslrd0 = @[PRSLRD0] + ivegsrc = @[IVEGSRC] + isot = @[ISOT] + lsoil = @[LSOIL] lsm = @[LSM] iopt_dveg = @[IOPT_DVEG] iopt_crs = @[IOPT_CRS] - iopt_btr = 1 - iopt_run = 1 + iopt_btr = @[IOPT_BTR] + iopt_run = @[IOPT_RUN] iopt_sfc = @[IOPT_SFC] iopt_trs = @[IOPT_TRS] iopt_diag = @[IOPT_DIAG] - iopt_frz = 1 - iopt_inf = 1 + iopt_frz = @[IOPT_FRZ] + iopt_inf = @[IOPT_INF] iopt_rad = @[IOPT_RAD] iopt_alb = @[IOPT_ALB] - iopt_snf = 4 - iopt_tbot = 2 + iopt_snf = @[IOPT_SNF] + iopt_tbot = @[IOPT_TBOT] iopt_stc = @[IOPT_STC] - debug = .false. + debug = @[DEBUG] nstf_name = @[NSTF_NAME] - nst_anl = .true. - psautco = 0.0008,0.0005 - prautco = 0.00015,0.00015 + nst_anl = @[NST_ANL] + psautco = @[PSAUTCO] + prautco = @[PRAUTCO] lgfdlmprad = @[LGFDLMPRAD] - effr_in = .true. + effr_in = @[EFFR_IN] ldiag_ugwp = @[LDIAG_UGWP] fscav_aero = @[FSCAV_AERO] do_RRTMGP = @[DO_RRTMGP] - active_gases = 'h2o_co2_o3_n2o_ch4_o2' - ngases = 6 - lw_file_gas = 'rrtmgp-data-lw-g128-210809.nc' - lw_file_clouds = 'rrtmgp-cloud-optics-coeffs-lw.nc' - sw_file_gas = 'rrtmgp-data-sw-g112-210809.nc' - sw_file_clouds = 'rrtmgp-cloud-optics-coeffs-sw.nc' - rrtmgp_nGptsSW = 112 - rrtmgp_nGptsLW = 128 - rrtmgp_nBandsLW = 16 - rrtmgp_nBandsSW = 14 + active_gases = @[ACTIVE_GASES] + ngases = @[NGASES] + lw_file_gas = @[LW_FILE_GAS] + lw_file_clouds = @[LW_FILE_CLOUDS] + sw_file_gas = @[SW_FILE_GAS] + sw_file_clouds = @[SW_FILE_CLOUDS] + rrtmgp_nGptsSW = @[RRTMGP_NGPTSSW] + rrtmgp_nGptsLW = @[RRTMGP_NGPTSLW] + rrtmgp_nBandsLW = @[RRTMGP_NBANDSLW] + rrtmgp_nBandsSW = @[RRTMGP_NBANDSSW] doGP_cldoptics_LUT = @[DOGP_CLDOPTICS_LUT] doGP_lwscat = @[DOGP_LWSCAT] doGP_sgs_cnv = @[DOGP_SGS_CNV] @@ -251,34 +251,41 @@ ca_trigger = @[CA_TRIGGER] nspinup = @[NSPINUP] iseed_ca = @[ISEED_CA] - lndp_type = @[LNDP_TYPE] - n_var_lndp = @[N_VAR_LNDP] +@[HIDE_LAND_PERT] lndp_type = @[LNDP_TYPE] +@[HIDE_LAND_PERT] n_var_lndp = @[N_VAR_LNDP] +@[HIDE_NEST] lcnorm = @[LCNORM] +@[HIDE_SPPT] pert_mp = @[PERT_MP] +@[HIDE_SPPT] pert_radtend = @[PERT_RADTEND] +@[HIDE_SPPT] pert_clds = @[PERT_CLDS] +@[HIDE_IAU] iau_inc_files= @[IAU_INC_FILES] +@[HIDE_IAU] iau_drymassfixer = .false. +@[HIDE_IAU] iau_filter_increments = @[IAU_FILTER_INCREMENTS] / &cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 + knob_ugwp_solver = @[KNOB_UGWP_SOLVER] + knob_ugwp_source = @[KNOB_UGWP_SOURCE] + knob_ugwp_wvspec = @[KNOB_UGWP_WVSPEC] + knob_ugwp_azdir = @[KNOB_UGWP_AZDIR] + knob_ugwp_stoch = @[KNOB_UGWP_STOCH] + knob_ugwp_effac = @[KNOB_UGWP_EFFAC] + knob_ugwp_doaxyz = @[KNOB_UGWP_DOAXYZ] + knob_ugwp_doheat = @[KNOB_UGWP_DOHEAT] knob_ugwp_dokdis = @[KNOB_UGWP_DOKDIS] knob_ugwp_ndx4lh = @[KNOB_UGWP_NDX4LH] knob_ugwp_version = @[KNOB_UGWP_VERSION] ! This is only for UGWP v0 -@[HIDE_UGWPV0] launch_level = 54 +@[HIDE_UGWPV0] launch_level = @[LAUNCH_LEVEL] ! These are only for UGWP v1 -@[HIDE_UGWPV1] knob_ugwp_palaunch = 275.0e2 +@[HIDE_UGWPV1] knob_ugwp_palaunch = @[KNOB_UGWP_PALAUNCH] @[HIDE_UGWPV1] knob_ugwp_nslope = @[KNOB_UGWP_NSLOPE] -@[HIDE_UGWPV1] knob_ugwp_lzmax = 15.750e3 -@[HIDE_UGWPV1] knob_ugwp_lzmin = 0.75e3 -@[HIDE_UGWPV1] knob_ugwp_lzstar = 2.0e3 -@[HIDE_UGWPV1] knob_ugwp_taumin = 0.25e-3 +@[HIDE_UGWPV1] knob_ugwp_lzmax = @[KNOB_UGWP_LZMAX] +@[HIDE_UGWPV1] knob_ugwp_lzmin = @[KNOB_UGWP_LZMIN] +@[HIDE_UGWPV1] knob_ugwp_lzstar = @[KNOB_UGWP_LZSTAR] +@[HIDE_UGWPV1] knob_ugwp_taumin = @[KNOB_UGWP_TAUMIN] @[HIDE_UGWPV1] knob_ugwp_tauamp = @[KNOB_UGWP_TAUAMP] -@[HIDE_UGWPV1] knob_ugwp_lhmet = 200.0e3 -@[HIDE_UGWPV1] knob_ugwp_orosolv = 'pss-1986' +@[HIDE_UGWPV1] knob_ugwp_lhmet = @[KNOB_UGWP_LHMET] +@[HIDE_UGWPV1] knob_ugwp_orosolv = @[KNOB_UGWP_OROSOLV] / &gfdl_cloud_microphysics_nml @@ -328,7 +335,7 @@ fix_negative = .true. icloud_f = 1 mp_time = 150. - reiflag = 2 + reiflag = @[REIFLAG] / &interpolator_nml @@ -358,7 +365,7 @@ FNVMXC = @[FNVMXC] FNSLPC = @[FNSLPC] FNABSC = @[FNABSC] - LDEBUG = .false. + LDEBUG = @[LDEBUG] FSMCL(2) = 99999 FSMCL(3) = 99999 FSMCL(4) = 99999 @@ -384,16 +391,43 @@ / &nam_stochy +@[HIDE_SKEB] skeb = @[SKEB] +@[HIDE_SKEB] iseed_skeb = @[ISEED_SKEB] +@[HIDE_SKEB] skeb_tau = @[SKEB_TAU] +@[HIDE_SKEB] skeb_lscale = @[SKEB_LSCALE] +@[HIDE_SKEB] skebnorm = @[SKEBNORM] +@[HIDE_SKEB] skeb_npass = @[SKEB_NPASS] +@[HIDE_SKEB] skeb_vdof = @[SKEB_VDOF] +@[HIDE_SHUM] shum = @[SHUM] +@[HIDE_SHUM] iseed_shum = @[ISEED_SHUM] +@[HIDE_SHUM] shum_tau = @[SHUM_TAU] +@[HIDE_SHUM] shum_lscale = @[SHUM_LSCALE] +@[HIDE_SPPT] sppt = @[SPPT] +@[HIDE_SPPT] iseed_sppt = @[ISEED_SPPT] +@[HIDE_SPPT] sppt_tau = @[SPPT_TAU] +@[HIDE_SPPT] sppt_lscale = @[SPPT_LSCALE] +@[HIDE_SPPT] sppt_logit = @[SPPT_LOGIT] +@[HIDE_SPPT] sppt_sfclimit = @[SPPT_SFCLIMIT] +@[HIDE_SPPT] use_zmtnblck = @[USE_ZMTNBLCK] +@[HIDE_SPPT] pbl_taper = @[PBL_TAPER] +@[HIDE_OCNSPPT] OCNSPPT = @[OCNSPPT] +@[HIDE_OCNSPPT] OCNSPPT_LSCALE = @[OCNSPPT_LSCALE] +@[HIDE_OCNSPPT] OCNSPPT_TAU = @[OCNSPPT_TAU] +@[HIDE_OCNSPPT] ISEED_OCNSPPT =@[ISEED_OCNSPPT] +@[HIDE_EPBL] EPBL = @[EPBL] +@[HIDE_EPBL] EPBL_LSCALE = @[EPBL_LSCALE] +@[HIDE_EPBL] EPBL_TAU = @[EPBL_TAU] +@[HIDE_EPBL] ISEED_EPBL = @[ISEED_EPBL] / &nam_sfcperts - lndp_type = @[LNDP_TYPE] - lndp_model_type = @[LNDP_MODEL_TYPE] - LNDP_TAU=@[LNDP_TAU] - LNDP_LSCALE=@[LNDP_LSCALE] - ISEED_LNDP=@[ISEED_LNDP] - lndp_var_list = @[LNDP_VAR_LIST] - lndp_prt_list = @[LNDP_PRT_LIST] +@[HIDE_LAND_PERT] lndp_type = @[LNDP_TYPE] +@[HIDE_LAND_PERT] lndp_model_type = @[LNDP_MODEL_TYPE] +@[HIDE_LAND_PERT] LNDP_TAU=@[LNDP_TAU] +@[HIDE_LAND_PERT] LNDP_LSCALE=@[LNDP_LSCALE] +@[HIDE_LAND_PERT] ISEED_LNDP=@[ISEED_LNDP] +@[HIDE_LAND_PERT] lndp_var_list = @[LNDP_VAR_LIST] +@[HIDE_LAND_PERT] lndp_prt_list = @[LNDP_PRT_LIST] / &MOM_input_nml @@ -401,5 +435,4 @@ input_filename = '@[MOM6_RESTART_SETTING]' restart_input_dir = 'INPUT/', restart_output_dir = '@[MOM6_RESTART_DIR]' - parameter_filename = 'INPUT/MOM_input', - 'INPUT/MOM_override'/ + parameter_filename = 'INPUT/MOM_input','INPUT/MOM_override'/ diff --git a/tests/rt.conf b/tests/rt.conf index 347840ec31..7798c120c5 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -296,11 +296,10 @@ 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 | -COMPILE | atm_ds2s_docn_dice | intel | -DAPP=ATM_DS2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | - wcoss2 acorn | fv3 | +COMPILE | atm_ds2s_docn_dice | intel | -DAPP=ATM_DS2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 | - wcoss2 acorn | fv3 | RUN | atm_ds2s_docn_dice | - noaacloud wcoss2 acorn | baseline | cpld_control_nowave_noaero_p8 ### ATM-LND tests ### diff --git a/tests/run_test.sh b/tests/run_test.sh index 201ac000b3..8e8e7c34d3 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -339,6 +339,22 @@ if [[ ${FIRE_BEHAVIOR} = 'true' ]]; then atparse < "${PATHRT}/parm/${FIRE_NML:-namelist.fire.IN}" > namelist.fire fi +#Namelists generated and variable definitions are finalized +#Sanity check for timesteps on ATM/OCN/ICE +if [[ -n "${DT_CICE+x}" ]]; then + if [[ ${DT_ATMOS} -ne ${DT_CICE} ]]; then + echo "Atmosphere timestep (DT_ATMOS) should be equal to CICE timestep (DT_CICE). Exiting" + exit 1 + fi +fi +if [[ -n "${coupling_interval_slow_sec+x}" && -n "${coupling_interval_fast_sec+x}" ]]; then + if [[ $(( coupling_interval_slow_sec % coupling_interval_fast_sec)) -ne 0 ]]; then + echo "The slow coupling timestep (coupling_interval_slow_sec) should be divisible by" + echo "the fast coupling timestep (coupling_interval_fast_sec). Exiting" + exit 1 + fi +fi + TPN=$(( TPN / THRD )) if (( TASKS < TPN )); then TPN=${TASKS} diff --git a/tests/test_changes.list b/tests/test_changes.list index e69de29bb2..2e6b76033d 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -0,0 +1,37 @@ +cpld_control_p8_mixedmode intel +cpld_control_gfsv17 intel +cpld_control_gfsv17_iau intel +cpld_restart_gfsv17 intel +cpld_mpi_gfsv17 intel +cpld_control_sfs intel +cpld_debug_gfsv17 intel +cpld_control_p8 intel +cpld_control_p8.v2.sfc intel +cpld_restart_p8 intel +cpld_control_qr_p8 intel +cpld_restart_qr_p8 intel +cpld_2threads_p8 intel +cpld_decomp_p8 intel +cpld_mpi_p8 intel +cpld_control_ciceC_p8 intel +cpld_control_c192_p8 intel +cpld_restart_c192_p8 intel +cpld_bmark_p8 intel +cpld_restart_bmark_p8 intel +cpld_s2sa_p8 intel +cpld_control_noaero_p8 intel +cpld_control_nowave_noaero_p8 intel +cpld_debug_p8 intel +cpld_debug_noaero_p8 intel +cpld_control_c48 intel +cpld_warmstart_c48 intel +cpld_restart_c48 intel +cpld_control_p8_faster intel +cpld_control_pdlib_p8 intel +cpld_restart_pdlib_p8 intel +cpld_mpi_pdlib_p8 intel +cpld_debug_pdlib_p8 intel +atm_ds2s_docn_dice intel +cpld_control_nowave_noaero_p8 gnu +cpld_control_pdlib_p8 gnu +cpld_debug_pdlib_p8 gnu diff --git a/tests/tests/atm_ds2s_docn_dice b/tests/tests/atm_ds2s_docn_dice index 79d81894cf..cd477d3bc1 100644 --- a/tests/tests/atm_ds2s_docn_dice +++ b/tests/tests/atm_ds2s_docn_dice @@ -64,7 +64,10 @@ export LIST_FILES="sfcf021.tile1.nc \ RESTART/20210323.060000.sfc_data.tile6.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc" +export DT_ATMOS=720 + export_fv3 +export_ugwpv1 export_cpl #Component settings @@ -112,10 +115,21 @@ export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" export OUTPUT_FH='0 21 24' -export CCPP_SUITE=FV3_GFS_v17_coupled_p8 +export K_SPLIT=4 +export N_SPLIT=5 + +# HR4 GFSv17 GWD update +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. + +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export DIAG_TABLE=diag_table_gfsv16 export FIELD_TABLE=field_table_thompson_noaero_tke export INPUT_NML=global_control.nml.IN export MODEL_CONFIGURE=model_configure.IN export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN export FV3_RUN="cpld_control_run.IN cpld_docn_dice.IN" + +if [[ $MACHINE_ID = hera ]] || [[ $MACHINE_ID = hercules ]] || [[ $MACHINE_ID = orion ]] || [[ $MACHINE_ID = gaea ]]; then + WLCLK=50 +fi diff --git a/tests/tests/control_p8_mynn b/tests/tests/control_p8_mynn index 9eac9bb346..e129bd4cde 100644 --- a/tests/tests/control_p8_mynn +++ b/tests/tests/control_p8_mynn @@ -93,6 +93,12 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. +export FAST_TAU_W_SEC=0.2 +export RF_CUTOFF=10. +export ISATMEDMF=1 +export LRADAR=.false. +export LTAEROSOL=.false. + # UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. diff --git a/tests/tests/cpld_2threads_p8 b/tests/tests/cpld_2threads_p8 index 3612e62529..3a70bc0d2e 100644 --- a/tests/tests/cpld_2threads_p8 +++ b/tests/tests/cpld_2threads_p8 @@ -57,9 +57,10 @@ export LIST_FILES="sfcf024.tile1.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " +export DT_ATMOS=720 export_fv3 -export_cpl export_ugwpv1 +export_cpl export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 @@ -95,8 +96,6 @@ if [[ $MACHINE_ID = derecho ]]; then TPN=96 fi -export DT_INNER=720 -export DT_ATMOS=720 export K_SPLIT=4 export N_SPLIT=5 diff --git a/tests/tests/cpld_bmark_p8 b/tests/tests/cpld_bmark_p8 index 8a0229c38e..6ffd9712bd 100644 --- a/tests/tests/cpld_bmark_p8 +++ b/tests/tests/cpld_bmark_p8 @@ -50,10 +50,11 @@ export LIST_FILES="sfcf006.nc \ RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc \ 20130401.060000.out_pnt.ww3 \ 20130401.060000.out_grd.ww3 " +export ATMRES=C384 export_fv3 -export_cpl export_ugwpv1 +export_cpl export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export SYEAR=2013 @@ -89,7 +90,6 @@ export ice_omp_num_threads=$ICE_thrds_cpl_bmrk export wav_omp_num_threads=$WAV_thrds_cpl_bmrk # atm/ocn/ice resolution -export ATMRES=C384 export NPX=385 export NPY=385 export IMO=1536 diff --git a/tests/tests/cpld_bmark_p8_35d b/tests/tests/cpld_bmark_p8_35d index c4fca78a23..0e3b2a2bba 100644 --- a/tests/tests/cpld_bmark_p8_35d +++ b/tests/tests/cpld_bmark_p8_35d @@ -7,6 +7,8 @@ export CNTL_DIR=cpld_bmark_p8 export LIST_FILES="" +export ATMRES=C384 + export_fv3 export_cpl @@ -43,7 +45,6 @@ export ice_omp_num_threads=$ICE_thrds_cpl_bmrk export wav_omp_num_threads=$WAV_thrds_cpl_bmrk # atm/ocn/ice resolution -export ATMRES=C384 export NPX=385 export NPY=385 export IMO=1536 diff --git a/tests/tests/cpld_control_c192_p8 b/tests/tests/cpld_control_c192_p8 index 41f8d426b4..a5cae9923e 100644 --- a/tests/tests/cpld_control_c192_p8 +++ b/tests/tests/cpld_control_c192_p8 @@ -56,9 +56,13 @@ export LIST_FILES="sfcf030.tile1.nc \ 20210323.120000.out_grd.ww3 \ 20210323.120000.out_pnt.ww3 " +export ATMRES=C192 export_fv3 +export_ugwpv1 export_cpl +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 + export DAYS=1.25 export FHMAX=30 export RESTART_N=15 @@ -82,7 +86,6 @@ export chm_omp_num_threads=$atm_omp_num_threads export med_omp_num_threads=$atm_omp_num_threads # atm/ocn/ice resolution -export ATMRES=C192 export NPX=193 export NPY=193 export IMO=768 @@ -134,8 +137,6 @@ export FNVMXC="'C192.vegetation_greenness.tileX.nc'" export FNSLPC="'C192.slope_type.tileX.nc'" export FNABSC="'C192.maximum_snow_albedo.tileX.nc'" -export CDMBWD=${CDMBWD_c192} - export FV3_RUN=cpld_control_run.IN if [[ $MACHINE_ID = derecho ]]; then diff --git a/tests/tests/cpld_control_c48 b/tests/tests/cpld_control_c48 index f90cad4b81..0f86ec5d5b 100644 --- a/tests/tests/cpld_control_c48 +++ b/tests/tests/cpld_control_c48 @@ -52,11 +52,11 @@ export LIST_FILES="sfcf024.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" +export ATMRES=C48 export_fv3 -export_cpl export_ugwpv1 - +export_cpl export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 @@ -74,7 +74,6 @@ OCN_tasks=$OCN_tasks_cpl_c48 ICE_tasks=$ICE_tasks_cpl_c48 # atm/ocn/ice resolution -export ATMRES=C48 export NPX=49 export NPY=49 export IMO=192 diff --git a/tests/tests/cpld_control_ciceC_p8 b/tests/tests/cpld_control_ciceC_p8 index e3c1a9f462..033313329e 100644 --- a/tests/tests/cpld_control_ciceC_p8 +++ b/tests/tests/cpld_control_ciceC_p8 @@ -68,10 +68,10 @@ export LIST_FILES="sfcf021.tile1.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " - +export DT_ATMOS=720 export_fv3 -export_cpl export_ugwpv1 +export_cpl export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 @@ -86,8 +86,6 @@ export CICE_GRIDICE=C export FV3_RUN=cpld_control_run.IN -export DT_INNER=720 -export DT_ATMOS=720 export K_SPLIT=4 export N_SPLIT=5 diff --git a/tests/tests/cpld_control_gfsv17 b/tests/tests/cpld_control_gfsv17 index 98592a1109..8ea5d20e89 100644 --- a/tests/tests/cpld_control_gfsv17 +++ b/tests/tests/cpld_control_gfsv17 @@ -71,8 +71,8 @@ export LIST_FILES="sfcf021.tile1.nc \ 20210323.060000.out_grd.ww3 " export_fv3 -export_cpl export_ugwpv1 +export_cpl export CPLCHM=.false. export DNATS=0 diff --git a/tests/tests/cpld_control_gfsv17_iau b/tests/tests/cpld_control_gfsv17_iau index c4a9125082..14d80219c7 100644 --- a/tests/tests/cpld_control_gfsv17_iau +++ b/tests/tests/cpld_control_gfsv17_iau @@ -52,8 +52,8 @@ export LIST_FILES="sfcf024.nc \ 20210323.120000.out_grd.ww3 " export_fv3 -export_cpl export_ugwpv1 +export_cpl export CPLCHM=.false. export DNATS=0 diff --git a/tests/tests/cpld_control_noaero_p8 b/tests/tests/cpld_control_noaero_p8 index e918aa1f63..0d2ab926c2 100644 --- a/tests/tests/cpld_control_noaero_p8 +++ b/tests/tests/cpld_control_noaero_p8 @@ -69,8 +69,8 @@ export LIST_FILES="sfcf021.tile1.nc \ 20210323.060000.out_grd.ww3 " export_fv3 -export_cpl export_ugwpv1 +export_cpl export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 diff --git a/tests/tests/cpld_control_nowave_noaero_p8 b/tests/tests/cpld_control_nowave_noaero_p8 index 0647cd8e79..240b03d2d2 100644 --- a/tests/tests/cpld_control_nowave_noaero_p8 +++ b/tests/tests/cpld_control_nowave_noaero_p8 @@ -67,10 +67,11 @@ export LIST_FILES="sfcf021.tile1.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc" #TODO: add comparison of CA restart files? +export DT_ATMOS=720 export_fv3 -export_cpl export_ugwpv1 +export_cpl export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 @@ -107,7 +108,7 @@ export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN export FV3_RUN=cpld_control_run.IN -export K_SPLIT=2 +export K_SPLIT=4 export N_SPLIT=5 # HR4 GFSv17 GWD update diff --git a/tests/tests/cpld_control_p8 b/tests/tests/cpld_control_p8 index fcb57d70fe..4a4641e3d8 100644 --- a/tests/tests/cpld_control_p8 +++ b/tests/tests/cpld_control_p8 @@ -68,10 +68,10 @@ export LIST_FILES="sfcf021.tile1.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " - +export DT_ATMOS=720 export_fv3 -export_cpl export_ugwpv1 +export_cpl export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 @@ -88,8 +88,6 @@ if [[ $MACHINE_ID = derecho ]]; then TPN=96 fi -export DT_INNER=720 -export DT_ATMOS=720 export K_SPLIT=4 export N_SPLIT=5 diff --git a/tests/tests/cpld_control_p8.v2.sfc b/tests/tests/cpld_control_p8.v2.sfc index b754f76072..ea0d95bf74 100644 --- a/tests/tests/cpld_control_p8.v2.sfc +++ b/tests/tests/cpld_control_p8.v2.sfc @@ -69,9 +69,10 @@ export LIST_FILES="sfcf021.tile1.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " +export DT_ATMOS=720 export_fv3 -export_cpl export_ugwpv1 +export_cpl export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 @@ -89,8 +90,6 @@ if [[ $MACHINE_ID = derecho ]]; then TPN=96 fi -export DT_INNER=720 -export DT_ATMOS=720 export K_SPLIT=4 export N_SPLIT=5 diff --git a/tests/tests/cpld_control_p8_faster b/tests/tests/cpld_control_p8_faster index 5a751b24d8..c1a895e3ec 100644 --- a/tests/tests/cpld_control_p8_faster +++ b/tests/tests/cpld_control_p8_faster @@ -69,9 +69,10 @@ export LIST_FILES="sfcf021.tile1.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " +export DT_ATMOS=720 export_fv3 -export_cpl export_ugwpv1 +export_cpl export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 @@ -84,8 +85,6 @@ export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN -export DT_INNER=720 -export DT_ATMOS=720 export K_SPLIT=4 export N_SPLIT=5 diff --git a/tests/tests/cpld_control_p8_mixedmode b/tests/tests/cpld_control_p8_mixedmode index 10669918f3..dad84b4660 100644 --- a/tests/tests/cpld_control_p8_mixedmode +++ b/tests/tests/cpld_control_p8_mixedmode @@ -69,9 +69,10 @@ export LIST_FILES="sfcf021.tile1.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " +export DT_ATMOS=720 export_fv3 -export_cpl export_ugwpv1 +export_cpl export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 @@ -84,8 +85,6 @@ export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN -export DT_INNER=720 -export DT_ATMOS=720 export K_SPLIT=4 export N_SPLIT=5 diff --git a/tests/tests/cpld_control_pdlib_p8 b/tests/tests/cpld_control_pdlib_p8 index 7f87778cf7..ab41e06f89 100644 --- a/tests/tests/cpld_control_pdlib_p8 +++ b/tests/tests/cpld_control_pdlib_p8 @@ -68,9 +68,10 @@ export LIST_FILES="sfcf021.tile1.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " +export DT_ATMOS=720 export_fv3 -export_cpl export_ugwpv1 +export_cpl export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 @@ -104,12 +105,10 @@ export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then - WLCLK=40 +if [[ $MACHINE_ID = orion ]] || [[ $RT_COMPILER = gnu ]]; then + WLCLK=50 fi -export DT_INNER=720 -export DT_ATMOS=720 export K_SPLIT=4 export N_SPLIT=5 diff --git a/tests/tests/cpld_control_qr_p8 b/tests/tests/cpld_control_qr_p8 index a79b1a6d82..483bca9a6c 100644 --- a/tests/tests/cpld_control_qr_p8 +++ b/tests/tests/cpld_control_qr_p8 @@ -68,10 +68,10 @@ export LIST_FILES="sfcf021.tile1.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " - +export DT_ATMOS=720 export_fv3 -export_cpl export_ugwpv1 +export_cpl export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export QUILTING_RESTART=.true. @@ -85,8 +85,6 @@ export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN -export DT_INNER=720 -export DT_ATMOS=720 export K_SPLIT=4 export N_SPLIT=5 diff --git a/tests/tests/cpld_control_sfs b/tests/tests/cpld_control_sfs index 9f0d327e00..91cfb35945 100644 --- a/tests/tests/cpld_control_sfs +++ b/tests/tests/cpld_control_sfs @@ -18,8 +18,8 @@ export LIST_FILES="sfcf021.nc \ RESTART/20210323.060000.MOM.res.nc" export_fv3 -export_cpl export_ugwpv1 +export_cpl export CPLCHM=.false. export DNATS=0 @@ -27,10 +27,14 @@ export MAKE_NH=.false. export DDDMP=0 export DO_VORT_DAMP=.false. export HYDROSTATIC=.true. -export HORD_XX=10 export HORD_DP=10 -export KORD_XX=12 export KORD_TM=-12 +export KORD_MT=12 +export KORD_WZ=12 +export KORD_TR=12 +export HORD_MT=10 +export HORD_VT=10 +export HORD_TM=10 export D_CON=0 export RESTART_N=3 diff --git a/tests/tests/cpld_debug_gfsv17 b/tests/tests/cpld_debug_gfsv17 index 72debc6f49..9b42af815b 100644 --- a/tests/tests/cpld_debug_gfsv17 +++ b/tests/tests/cpld_debug_gfsv17 @@ -55,10 +55,10 @@ export LIST_FILES="sfcf003.tile1.nc \ RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc \ 20210322.090000.out_pnt.ww3 \ 20210322.090000.out_grd.ww3 " - +export DT_ATMOS=360 export_fv3 -export_cpl export_ugwpv1 +export_cpl export FHMAX=3 export DAYS=0.125 @@ -103,8 +103,6 @@ export UFS_CONFIGURE=ufs.configure.s2sw.IN export FV3_RUN=cpld_control_run.IN -export DT_INNER=360 -export DT_ATMOS=360 export K_SPLIT=2 export N_SPLIT=5 @@ -114,6 +112,9 @@ fi if [[ $MACHINE_ID = gaea ]] && [[ $RT_COMPILER = intelllvm ]]; then WLCLK=40 fi +if [[ $MACHINE_ID = orion ]]; then + WLCLK=40 +fi # HR4 GFSv17 GWD update export DO_GWD_OPT_PSL=.true. diff --git a/tests/tests/cpld_debug_noaero_p8 b/tests/tests/cpld_debug_noaero_p8 index befc62f92a..c79ff40d8e 100644 --- a/tests/tests/cpld_debug_noaero_p8 +++ b/tests/tests/cpld_debug_noaero_p8 @@ -57,8 +57,8 @@ export LIST_FILES="sfcf003.tile1.nc \ 20210322.090000.out_grd.ww3 " export_fv3 -export_cpl export_ugwpv1 +export_cpl export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export FHMAX=3 diff --git a/tests/tests/cpld_debug_p8 b/tests/tests/cpld_debug_p8 index 9267cf6f8e..7bd9e10f7f 100644 --- a/tests/tests/cpld_debug_p8 +++ b/tests/tests/cpld_debug_p8 @@ -57,9 +57,10 @@ export LIST_FILES="sfcf003.tile1.nc \ 20210322.090000.out_pnt.ww3 \ 20210322.090000.out_grd.ww3 " +export DT_ATMOS=720 export_fv3 -export_cpl export_ugwpv1 +export_cpl export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export FHMAX=3 @@ -79,8 +80,6 @@ if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 fi -export DT_INNER=720 -export DT_ATMOS=720 export K_SPLIT=4 export N_SPLIT=5 diff --git a/tests/tests/cpld_debug_pdlib_p8 b/tests/tests/cpld_debug_pdlib_p8 index 90e02daccb..3ce5a4c975 100644 --- a/tests/tests/cpld_debug_pdlib_p8 +++ b/tests/tests/cpld_debug_pdlib_p8 @@ -56,9 +56,10 @@ export LIST_FILES="sfcf003.tile1.nc \ 20210322.090000.out_pnt.ww3 \ 20210322.090000.out_grd.ww3 " +export DT_ATMOS=720 export_fv3 -export_cpl export_ugwpv1 +export_cpl export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export FHMAX=3 @@ -98,19 +99,24 @@ export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = hera && $RT_COMPILER = gnu ]] || [[ $MACHINE_ID = jet ]]; then +if [[ $MACHINE_ID = hera ]] || [[ $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 +if [[ $MACHINE_ID = orion ]]; then + WLCLK=50 +fi +if [[ $MACHINE_ID = gaea ]]; then WLCLK=50 fi -if [[ $MACHINE_ID = gaea ]] && [[ $RT_COMPILER = intelllvm ]]; then +if [[ $MACHINE_ID = wcoss2 ]]; then WLCLK=50 fi +# set component and coupling timesteps due to long +# runtime export K_SPLIT=2 export N_SPLIT=5 diff --git a/tests/tests/cpld_decomp_p8 b/tests/tests/cpld_decomp_p8 index 2642cc30a2..5c1222e0ce 100644 --- a/tests/tests/cpld_decomp_p8 +++ b/tests/tests/cpld_decomp_p8 @@ -57,9 +57,10 @@ export LIST_FILES="sfcf024.tile1.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " +export DT_ATMOS=720 export_fv3 -export_cpl export_ugwpv1 +export_cpl export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 @@ -89,8 +90,6 @@ if [[ $MACHINE_ID = derecho ]]; then TPN=96 fi -export DT_INNER=720 -export DT_ATMOS=720 export K_SPLIT=4 export N_SPLIT=5 diff --git a/tests/tests/cpld_mpi_gfsv17 b/tests/tests/cpld_mpi_gfsv17 index f93f351c25..cdb7494ddf 100644 --- a/tests/tests/cpld_mpi_gfsv17 +++ b/tests/tests/cpld_mpi_gfsv17 @@ -71,8 +71,8 @@ export LIST_FILES="sfcf021.tile1.nc \ 20210323.060000.out_grd.ww3 " export_fv3 -export_cpl export_ugwpv1 +export_cpl export CPLCHM=.false. export DNATS=0 diff --git a/tests/tests/cpld_mpi_p8 b/tests/tests/cpld_mpi_p8 index fcf8316ab0..cb2feba497 100644 --- a/tests/tests/cpld_mpi_p8 +++ b/tests/tests/cpld_mpi_p8 @@ -57,9 +57,10 @@ export LIST_FILES="sfcf024.tile1.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " +export DT_ATMOS=720 export_fv3 -export_cpl export_ugwpv1 +export_cpl export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 @@ -89,8 +90,6 @@ if [[ $MACHINE_ID = derecho ]]; then TPN=96 fi -export DT_INNER=720 -export DT_ATMOS=720 export K_SPLIT=4 export N_SPLIT=5 diff --git a/tests/tests/cpld_mpi_pdlib_p8 b/tests/tests/cpld_mpi_pdlib_p8 index c3879bf706..9bf46f5600 100644 --- a/tests/tests/cpld_mpi_pdlib_p8 +++ b/tests/tests/cpld_mpi_pdlib_p8 @@ -67,10 +67,10 @@ export LIST_FILES="sfcf021.tile1.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " - +export DT_ATMOS=720 export_fv3 -export_cpl export_ugwpv1 +export_cpl export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 @@ -107,11 +107,16 @@ export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN export FV3_RUN=cpld_control_run.IN -export DT_INNER=720 -export DT_ATMOS=720 export K_SPLIT=4 export N_SPLIT=5 # HR4 GFSv17 GWD update export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. + +if [[ $MACHINE_ID = hera ]] || [[ $MACHINE_ID = orion ]]; then + WLCLK=50 +fi +if [[ $MACHINE_ID = wcoss2 ]]; then + WLCLK=50 +fi diff --git a/tests/tests/cpld_restart_bmark_p8 b/tests/tests/cpld_restart_bmark_p8 index ca3dc70ffc..64e12f36f3 100644 --- a/tests/tests/cpld_restart_bmark_p8 +++ b/tests/tests/cpld_restart_bmark_p8 @@ -50,10 +50,10 @@ export LIST_FILES="sfcf006.nc \ RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc \ 20130401.060000.out_pnt.ww3 \ 20130401.060000.out_grd.ww3 " - +export ATMRES=C384 export_fv3 -export_cpl export_ugwpv1 +export_cpl export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export SYEAR=2013 @@ -93,7 +93,6 @@ export ice_omp_num_threads=$ICE_thrds_cpl_bmrk export wav_omp_num_threads=$WAV_thrds_cpl_bmrk # atm/ocn/ice resolution -export ATMRES=C384 export NPX=385 export NPY=385 export IMO=1536 diff --git a/tests/tests/cpld_restart_c192_p8 b/tests/tests/cpld_restart_c192_p8 index dce8254328..54c2da4572 100644 --- a/tests/tests/cpld_restart_c192_p8 +++ b/tests/tests/cpld_restart_c192_p8 @@ -56,8 +56,11 @@ export LIST_FILES="sfcf030.tile1.nc \ 20210323.120000.out_grd.ww3 \ 20210323.120000.out_pnt.ww3 " +export ATMRES=C192 export_fv3 +export_ugwpv1 export_cpl +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export DAYS=1.25 export FHMAX=30 @@ -84,7 +87,6 @@ export chm_omp_num_threads=$atm_omp_num_threads export med_omp_num_threads=$atm_omp_num_threads # atm/ocn/ice resolution -export ATMRES=C192 export NPX=193 export NPY=193 export IMO=768 diff --git a/tests/tests/cpld_restart_c48 b/tests/tests/cpld_restart_c48 index bafb92a4b5..4803fd5f46 100644 --- a/tests/tests/cpld_restart_c48 +++ b/tests/tests/cpld_restart_c48 @@ -53,8 +53,11 @@ export LIST_FILES="sfcf006.tile1.nc \ RESTART/iced.2021-03-23-43200.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc" +export ATMRES=C48 export_fv3 +export_ugwpv1 export_cpl +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export SYEAR=2021 export SMONTH=03 @@ -86,7 +89,6 @@ OCN_tasks=$OCN_tasks_cpl_c48 ICE_tasks=$ICE_tasks_cpl_c48 # atm/ocn/ice resolution -export ATMRES=C48 export NPX=49 export NPY=49 export IMO=192 @@ -171,9 +173,5 @@ export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN export FV3_RUN=cpld_control_run.IN # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_restart_gfsv17 b/tests/tests/cpld_restart_gfsv17 index 484c29da74..a42209e229 100644 --- a/tests/tests/cpld_restart_gfsv17 +++ b/tests/tests/cpld_restart_gfsv17 @@ -59,8 +59,8 @@ export LIST_FILES="sfcf024.tile1.nc \ 20210323.060000.out_grd.ww3 " export_fv3 -export_cpl export_ugwpv1 +export_cpl export CPLCHM=.false. export DNATS=0 diff --git a/tests/tests/cpld_restart_p8 b/tests/tests/cpld_restart_p8 index 9895fd9d99..55f556d3a5 100644 --- a/tests/tests/cpld_restart_p8 +++ b/tests/tests/cpld_restart_p8 @@ -57,9 +57,10 @@ export LIST_FILES="sfcf024.tile1.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " +export DT_ATMOS=720 export_fv3 -export_cpl export_ugwpv1 +export_cpl export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export FHROT=12 @@ -95,8 +96,6 @@ if [[ $MACHINE_ID = derecho ]]; then TPN=96 fi -export DT_INNER=720 -export DT_ATMOS=720 export K_SPLIT=4 export N_SPLIT=5 diff --git a/tests/tests/cpld_restart_pdlib_p8 b/tests/tests/cpld_restart_pdlib_p8 index 6097f05559..151176eda9 100644 --- a/tests/tests/cpld_restart_pdlib_p8 +++ b/tests/tests/cpld_restart_pdlib_p8 @@ -55,10 +55,10 @@ export LIST_FILES="sfcf024.tile1.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " - +export DT_ATMOS=720 export_fv3 -export_cpl export_ugwpv1 +export_cpl export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export FHROT=12 @@ -111,8 +111,6 @@ export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN export FV3_RUN=cpld_control_run.IN -export DT_INNER=720 -export DT_ATMOS=720 export K_SPLIT=4 export N_SPLIT=5 diff --git a/tests/tests/cpld_restart_qr_p8 b/tests/tests/cpld_restart_qr_p8 index 33dd3e65d0..943b736809 100644 --- a/tests/tests/cpld_restart_qr_p8 +++ b/tests/tests/cpld_restart_qr_p8 @@ -57,9 +57,10 @@ export LIST_FILES="sfcf024.tile1.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " +export DT_ATMOS=720 export_fv3 -export_cpl export_ugwpv1 +export_cpl export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export QUILTING_RESTART=.true. @@ -92,8 +93,6 @@ export CICE_DIAGFREQ=`expr $((FHMAX-$FHROT)) \* 3600 / $DT_CICE` export FV3_RUN=cpld_control_run.IN -export DT_INNER=720 -export DT_ATMOS=720 export K_SPLIT=4 export N_SPLIT=5 diff --git a/tests/tests/cpld_s2sa_p8 b/tests/tests/cpld_s2sa_p8 index fb827e0b83..a9fba26d01 100644 --- a/tests/tests/cpld_s2sa_p8 +++ b/tests/tests/cpld_s2sa_p8 @@ -56,7 +56,9 @@ export LIST_FILES="sfcf024.tile1.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc" export_fv3 +export_ugwpv1 export_cpl +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" diff --git a/tests/tests/cpld_warmstart_c48 b/tests/tests/cpld_warmstart_c48 index 3c2c18e6b1..8f65c964de 100644 --- a/tests/tests/cpld_warmstart_c48 +++ b/tests/tests/cpld_warmstart_c48 @@ -53,8 +53,11 @@ export LIST_FILES="sfcf006.tile1.nc \ RESTART/iced.2021-03-23-43200.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc" +export ATMRES=C48 export_fv3 +export_ugwpv1 export_cpl +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export SYEAR=2021 export SMONTH=03 @@ -83,7 +86,6 @@ OCN_tasks=$OCN_tasks_cpl_c48 ICE_tasks=$ICE_tasks_cpl_c48 # atm/ocn/ice resolution -export ATMRES=C48 export NPX=49 export NPY=49 export IMO=192 From f9c91d3df80a8536cf2a226fac5d826889e55c17 Mon Sep 17 00:00:00 2001 From: Daniel Sarmiento <42810219+dpsarmie@users.noreply.github.com> Date: Tue, 5 Nov 2024 16:28:18 -0500 Subject: [PATCH 07/24] Fix/cpld sfs rt + Pull in units updates from FV3 #2467 (#2475) * UFSWM - Updates cpld_control_sfs to use the most up-to-date configuration specs * UFSWM - Update units attributes in netCDF output to be machine-readable * FV3 - Update units attributes in netCDF output to be machine-readable * atmos_cubed_sphere - Update units attributes in netCDF output to be machine-readable --- FV3 | 2 +- tests/bl_date.conf | 2 +- tests/logs/RegressionTests_gaea.log | 636 ++++++------ tests/logs/RegressionTests_hera.log | 878 ++++++++--------- tests/logs/RegressionTests_hercules.log | 1168 +++++++---------------- tests/logs/RegressionTests_jet.log | 525 +++++----- tests/logs/RegressionTests_orion.log | 575 +++++------ tests/logs/RegressionTests_wcoss2.log | 528 +++++----- tests/test_changes.list | 191 +++- tests/tests/cpld_control_pdlib_p8 | 4 + tests/tests/cpld_control_sfs | 3 + tests/tests/cpld_mpi_pdlib_p8 | 2 +- 12 files changed, 1964 insertions(+), 2550 deletions(-) diff --git a/FV3 b/FV3 index 99091f9742..bd785e50f9 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 99091f9742670bdebd84bd13f17b9115457d64dd +Subproject commit bd785e50f90985fb1330e36852297af38293415b diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 117af5527c..bc20d96dc3 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20241028 +export BL_DATE=20241031 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index ee23b7bd59..f84378cb31 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -20191d85286242c7e38a3ddada32e7c03e4452f5 +50c915d559ecbbc39d288ac9da24860f225597f1 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 99091f9742670bdebd84bd13f17b9115457d64dd FV3 (heads/develop) + 99091f9742670bdebd84bd13f17b9115457d64dd FV3 (heads/develop-13-g99091f9) 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) f3eeb3442775b7239d98e3d09acc6d4f1d42233e FV3/ccpp/physics (EP4-889-gf3eeb344) @@ -38,367 +38,293 @@ 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-20241028 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_1082482 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20241031 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_2275031 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [17:12, 15:59] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:32, 12:25](3181 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:12, 21:03] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [26:02, 13:49](1896 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:10, 14:09](1938 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [16:51, 06:48](1072 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:58, 15:07](1884 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:12, 21:14] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [25:36, 13:51](1903 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:15, 09:39] ( 1528 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [43:44, 27:38](1934 MB) - -PASS -- COMPILE 's2swa_intel' [17:12, 15:58] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [25:46, 16:22](3212 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:44, 15:55](3206 MB) -PASS -- TEST 'cpld_restart_p8_intel' [25:03, 09:05](3135 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [19:39, 16:01](3230 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [31:10, 09:08](3155 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [20:37, 13:59](3457 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [18:33, 15:46](3208 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [27:40, 13:17](3153 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [25:34, 15:51](3213 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [25:52, 10:11](3491 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [23:54, 07:03](3594 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [37:48, 19:14](4253 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:10, 12:32](4355 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [13:39, 09:43](3191 MB) - -PASS -- COMPILE 's2sw_intel' [18:12, 16:47] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [21:05, 07:41](1912 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [26:10, 12:40](1971 MB) - -PASS -- COMPILE 's2swa_debug_intel' [11:15, 09:41] ( 1418 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [31:33, 22:50](3269 MB) - -PASS -- COMPILE 's2sw_debug_intel' [11:15, 09:49] ( 1418 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:29, 09:04](1946 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:11, 13:36] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:04, 05:16](1966 MB) - -PASS -- COMPILE 's2s_intel' [15:11, 13:30] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:50, 05:34](2870 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [06:51, 01:42](2880 MB) -PASS -- TEST 'cpld_restart_c48_intel' [12:49, 01:00](2292 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:17, 16:05] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [44:10, 15:51](3217 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:17, 19:28] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [48:57, 25:02](1916 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [31:09, 12:54](1100 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [40:10, 28:49](1893 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:17, 09:17] ( 1528 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [43:56, 30:59](1949 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:11, 11:26] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [29:22, 03:45](655 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [26:38, 03:20](1549 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [25:45, 03:22](1555 MB) -PASS -- TEST 'control_latlon_intel' [24:33, 03:19](1556 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [23:06, 03:21](1558 MB) -PASS -- TEST 'control_c48_intel' [17:37, 10:01](1572 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [21:27, 05:46](696 MB) -PASS -- TEST 'control_c192_intel' [26:41, 11:13](1686 MB) -PASS -- TEST 'control_c384_intel' [39:06, 24:05](1967 MB) -PASS -- TEST 'control_c384gdas_intel' [29:38, 14:41](1168 MB) -PASS -- TEST 'control_stochy_intel' [15:20, 01:57](611 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:21, 01:39](415 MB) -PASS -- TEST 'control_lndp_intel' [15:20, 01:51](608 MB) -PASS -- TEST 'control_iovr4_intel' [12:57, 02:40](606 MB) -PASS -- TEST 'control_iovr5_intel' [12:49, 02:44](609 MB) -PASS -- TEST 'control_p8_intel' [13:59, 03:48](1852 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [08:28, 03:22](1844 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:05, 03:45](1844 MB) -PASS -- TEST 'control_restart_p8_intel' [03:46, 02:00](996 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:18, 04:30](1842 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:44, 01:54](1008 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:57, 03:53](1846 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:00, 03:20](1923 MB) -PASS -- TEST 'control_p8_lndp_intel' [10:08, 06:25](1844 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:01, 04:17](1901 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:11, 03:17](1857 MB) -PASS -- TEST 'merra2_thompson_intel' [06:09, 03:36](1847 MB) -PASS -- TEST 'regional_control_intel' [06:53, 04:47](842 MB) -PASS -- TEST 'regional_restart_intel' [04:31, 02:34](842 MB) -PASS -- TEST 'regional_decomp_intel' [06:51, 04:57](844 MB) -PASS -- TEST 'regional_2threads_intel' [04:55, 02:55](980 MB) -PASS -- TEST 'regional_noquilt_intel' [06:55, 04:39](1174 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:01, 04:40](849 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:47, 04:43](851 MB) -PASS -- TEST 'regional_wofs_intel' [09:32, 06:32](1571 MB) - -PASS -- COMPILE 'rrfs_intel' [12:11, 11:04] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [15:55, 06:50](989 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [35:13, 04:03](1150 MB) -PASS -- TEST 'rap_decomp_intel' [21:57, 07:22](988 MB) -PASS -- TEST 'rap_2threads_intel' [16:51, 06:14](1069 MB) -PASS -- TEST 'rap_restart_intel' [05:44, 03:25](867 MB) -PASS -- TEST 'rap_sfcdiff_intel' [29:49, 06:43](987 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [18:56, 07:14](987 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:39, 04:50](867 MB) -PASS -- TEST 'hrrr_control_intel' [26:55, 03:47](986 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [35:06, 03:52](986 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [35:12, 03:15](1063 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:26, 01:56](818 MB) -PASS -- TEST 'rrfs_v1beta_intel' [21:57, 07:08](984 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:23, 08:42](1943 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:24, 08:32](1935 MB) - -PASS -- COMPILE 'csawmg_intel' [12:14, 10:19] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [08:30, 06:35](940 MB) -PASS -- TEST 'control_ras_intel' [05:21, 03:25](645 MB) - -PASS -- COMPILE 'wam_intel' [12:14, 11:04] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:30, 11:55](1639 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:14, 10:47] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:51, 03:09](1841 MB) -PASS -- TEST 'regional_control_faster_intel' [06:30, 04:23](841 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [13:11, 11:31] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:34, 02:48](1579 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:47, 02:44](1582 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:23, 03:23](784 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:26, 02:52](783 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:30, 04:28](1084 MB) -PASS -- TEST 'control_ras_debug_intel' [04:23, 03:04](791 MB) -PASS -- TEST 'control_diag_debug_intel' [05:43, 03:35](1639 MB) -PASS -- TEST 'control_debug_p8_intel' [05:31, 03:41](1876 MB) -PASS -- TEST 'regional_debug_intel' [18:34, 16:44](885 MB) -PASS -- TEST 'rap_control_debug_intel' [07:26, 05:33](1163 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:21, 05:41](1161 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:22, 05:31](1164 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:22, 05:27](1162 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:24, 05:11](1165 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:30, 05:25](1248 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:22, 05:14](1166 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:22, 05:05](1169 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:19, 05:02](1167 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:19, 05:03](1164 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:28, 04:54](1159 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:30, 05:05](1163 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:30, 08:03](1157 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:59](1157 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:01, 06:03](1163 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:22, 04:57](1163 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:39, 08:36](1165 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:11, 06:47] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:52, 13:15](1663 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 10:18] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:04, 03:49](1016 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:48, 05:47](865 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:42, 03:27](861 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:41, 05:18](922 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:39, 02:46](911 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:04, 03:31](859 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:44, 04:10](772 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:54, 01:48](743 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:13, 10:01] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:00, 01:59](1073 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:53, 01:41](1059 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [05:34, 01:39](947 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 10:29] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:43, 04:20](894 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 07:00] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 05:03](1043 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:25, 04:56](1039 MB) -PASS -- TEST 'conus13km_debug_intel' [15:53, 13:38](1119 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:53, 13:39](793 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:52, 08:02](1111 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:51, 13:51](1193 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:11, 06:55] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:20, 05:24](1066 MB) - -PASS -- COMPILE 'hafsw_intel' [16:11, 14:42] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:07, 05:11](715 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:28, 04:29](1057 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:27, 08:10](742 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:08, 11:47](774 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:19, 13:19](798 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:54, 05:34](469 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:17, 07:07](503 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:18, 02:49](399 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:24, 07:33](495 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:58, 03:45](506 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:48, 03:31](506 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [15:01, 04:34](585 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:35, 01:34](424 MB) -PASS -- TEST 'gnv1_nested_intel' [13:21, 05:14](1701 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:15, 08:28] ( 1470 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [23:50, 12:56](614 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:11, 14:09] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:06, 07:41](630 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:10, 07:52](809 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:14, 13:03] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [24:14, 05:58](807 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:11, 13:11] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [24:07, 06:22](742 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [28:18, 06:22](719 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [39:16, 20:03](891 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [12:11, 10:37] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [19:19, 02:37](763 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:26, 01:38](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [18:21, 02:30](643 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [20:21, 02:30](644 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [21:20, 02:32](642 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [21:21, 02:36](763 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [21:20, 02:35](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [21:21, 02:29](641 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [24:59, 06:17](694 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [24:58, 06:19](676 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [19:24, 02:36](763 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:24, 04:39](2031 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [21:41, 04:40](2030 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:11, 06:49] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [21:22, 05:29](749 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [12:11, 10:17] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [16:24, 02:35](763 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:11, 03:26] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [15:41, 01:47](322 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [14:40, 01:25](460 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:32, 01:00](461 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [05:10, 03:41] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [13:43, 00:34](448 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [04:04, 00:14](254 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:17, 12:35] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [17:39, 04:01](1909 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 10:46] ( 6 warnings 1 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'atm_ds2s_docn_dice_intel' [, ]( MB) - -PASS -- COMPILE 'atml_intel' [14:11, 12:10] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [20:03, 08:22](1874 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [20:06, 08:23](1878 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:42, 04:51](1022 MB) - -PASS -- COMPILE 'atml_debug_intel' [09:11, 07:23] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [16:56, 06:24](1901 MB) - -PASS -- COMPILE 'atmw_intel' [14:11, 12:26] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:52, 02:19](1871 MB) - -PASS -- COMPILE 'atmaero_intel' [12:11, 10:45] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [10:55, 06:31](3098 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:50, 06:46](2981 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:48, 07:27](2995 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:10, 07:04] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [21:27, 18:15](4428 MB) - -PASS -- COMPILE 'atm_fbh_intel' [12:14, 10:15] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:36, 09:29](796 MB) +PASS -- COMPILE 's2swa_32bit_intel' [16:11, 14:31] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:05, 13:01](3181 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 19:05] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [16:58, 13:47](1910 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:24, 14:47](1939 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:54, 06:47](1074 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:34, 15:22](1872 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 19:25] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:39, 13:43](1900 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:11, 10:50] ( 1528 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [30:08, 27:32](1926 MB) + +PASS -- COMPILE 's2swa_intel' [18:15, 16:43] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [20:15, 15:35](3213 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:16, 15:46](3206 MB) +PASS -- TEST 'cpld_restart_p8_intel' [12:30, 09:09](3138 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [20:16, 15:36](3236 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:21, 08:50](3157 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [16:35, 13:40](3462 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [20:16, 15:23](3206 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:38, 13:04](3156 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [20:16, 15:40](3213 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:03, 10:05](3485 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:48, 07:02](3593 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [24:44, 19:07](4251 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:31, 11:57](4349 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:35, 09:35](3185 MB) + +PASS -- COMPILE 's2sw_intel' [16:11, 14:47] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:03, 08:28](1907 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:09, 13:38](1973 MB) + +PASS -- COMPILE 's2swa_debug_intel' [11:10, 09:14] ( 1418 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [25:00, 22:14](3272 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:10, 09:03] ( 1418 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:51, 08:57](1937 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:11, 12:35] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:50, 05:10](1966 MB) + +PASS -- COMPILE 's2s_intel' [16:11, 14:34] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:48, 05:34](2870 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:55, 02:21](2880 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:41, 01:02](2293 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:11, 15:48] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [19:37, 15:31](3217 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 19:19] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [26:59, 24:48](1915 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:58, 12:30](1089 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [31:57, 28:50](1893 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:11, 09:22] ( 1528 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:25, 32:11](1937 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:11, 11:27] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:01, 04:02](656 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [07:19, 03:12](1547 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:18, 03:20](1562 MB) +PASS -- TEST 'control_latlon_intel' [07:02, 03:16](1555 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:25, 03:46](1559 MB) +PASS -- TEST 'control_c48_intel' [13:26, 10:36](1573 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:48, 05:45](695 MB) +PASS -- TEST 'control_c192_intel' [15:18, 11:16](1682 MB) +PASS -- TEST 'control_c384_intel' [27:33, 23:39](1967 MB) +PASS -- TEST 'control_c384gdas_intel' [18:47, 14:36](1174 MB) +PASS -- TEST 'control_stochy_intel' [04:47, 02:14](609 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:23, 01:01](415 MB) +PASS -- TEST 'control_lndp_intel' [03:22, 01:43](606 MB) +PASS -- TEST 'control_iovr4_intel' [04:21, 02:33](609 MB) +PASS -- TEST 'control_iovr5_intel' [04:22, 02:32](609 MB) +PASS -- TEST 'control_p8_intel' [05:46, 03:43](1852 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:11, 03:16](1844 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:58, 03:43](1848 MB) +PASS -- TEST 'control_restart_p8_intel' [03:51, 02:06](996 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:02, 03:43](1843 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:45, 01:56](1005 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:00, 03:43](1842 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:00, 03:18](1925 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:41, 06:09](1850 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:56, 04:13](1899 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:43, 03:22](1849 MB) +PASS -- TEST 'merra2_thompson_intel' [05:45, 03:35](1848 MB) +PASS -- TEST 'regional_control_intel' [06:30, 04:41](847 MB) +PASS -- TEST 'regional_restart_intel' [04:29, 02:45](846 MB) +PASS -- TEST 'regional_decomp_intel' [06:31, 04:49](843 MB) +PASS -- TEST 'regional_2threads_intel' [04:46, 03:00](981 MB) +PASS -- TEST 'regional_noquilt_intel' [06:49, 04:35](1171 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:53, 04:52](847 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:31, 04:40](845 MB) +PASS -- TEST 'regional_wofs_intel' [08:34, 06:33](1571 MB) + +PASS -- COMPILE 'rrfs_intel' [15:11, 13:15] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:41, 06:47](988 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:59, 04:04](1146 MB) +PASS -- TEST 'rap_decomp_intel' [08:38, 07:01](990 MB) +PASS -- TEST 'rap_2threads_intel' [08:39, 06:17](1068 MB) +PASS -- TEST 'rap_restart_intel' [05:47, 03:49](868 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:43, 06:58](988 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:49, 07:13](987 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:42, 04:54](869 MB) +PASS -- TEST 'hrrr_control_intel' [06:11, 03:47](986 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:35, 03:49](984 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:38, 03:05](1063 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:41, 01:53](820 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:40, 07:00](983 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:22, 08:56](1944 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:22, 08:41](1934 MB) + +PASS -- COMPILE 'csawmg_intel' [13:11, 11:46] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:32, 06:38](944 MB) +PASS -- TEST 'control_ras_intel' [05:24, 03:29](647 MB) + +PASS -- COMPILE 'wam_intel' [15:11, 13:09] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:17, 11:44](1639 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:11, 11:15] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:47, 03:18](1847 MB) +PASS -- TEST 'regional_control_faster_intel' [06:30, 04:27](841 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:10, 11:25] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:39, 02:55](1578 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:44, 03:07](1582 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:21, 03:38](783 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:22, 03:03](784 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:26, 04:25](1085 MB) +PASS -- TEST 'control_ras_debug_intel' [04:22, 03:05](790 MB) +PASS -- TEST 'control_diag_debug_intel' [04:31, 02:55](1639 MB) +PASS -- TEST 'control_debug_p8_intel' [04:31, 03:06](1876 MB) +PASS -- TEST 'regional_debug_intel' [17:28, 16:01](884 MB) +PASS -- TEST 'rap_control_debug_intel' [07:26, 05:09](1165 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:28, 04:59](1157 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:29, 05:13](1164 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 05:04](1162 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:25, 05:03](1164 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:55, 05:21](1248 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:59, 05:06](1166 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:57, 05:05](1166 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:59, 05:02](1165 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:01, 05:00](1166 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:00, 04:48](1159 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:58, 05:05](1162 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:25, 08:08](1158 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:03, 04:55](1161 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:21, 06:07](1165 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:24, 05:10](1163 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:37, 08:36](1168 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:11, 08:19] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:51, 13:58](1668 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 10:58] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:05, 03:45](1020 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:35, 06:04](863 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:54, 03:21](862 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:33, 05:14](919 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:43, 02:45](911 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:33, 03:43](860 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:59, 04:12](770 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:29, 01:42](743 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 11:51] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:57, 02:00](1070 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:00, 00:59](1058 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:59, 01:20](948 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 12:03] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:39, 04:24](895 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:14, 07:09] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:21, 05:22](1039 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:21, 05:23](1040 MB) +PASS -- TEST 'conus13km_debug_intel' [15:56, 13:57](1120 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:29, 14:12](798 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:42, 07:57](1111 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:39, 13:38](1190 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:10, 07:58] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:48, 05:06](1070 MB) + +PASS -- COMPILE 'hafsw_intel' [16:11, 14:34] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:30, 05:04](713 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:50, 04:20](1065 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:38, 07:35](743 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:19, 11:36](779 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:35, 12:54](798 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:07, 05:22](469 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:44, 06:33](498 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:53, 02:45](398 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:01, 07:32](486 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:43, 03:43](507 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:53, 03:32](507 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:58, 04:34](588 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:32, 01:31](426 MB) +PASS -- TEST 'gnv1_nested_intel' [10:28, 05:54](1705 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:10, 08:05] ( 1470 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:57, 12:52](611 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [15:11, 13:27] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:57, 07:37](631 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:05, 07:42](808 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:11, 13:15] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:08, 06:05](811 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:11, 12:23] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [14:05, 06:14](735 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:05, 06:18](714 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [29:10, 20:08](891 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [12:15, 10:11] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [11:22, 02:37](763 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:24, 01:34](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [10:21, 02:29](645 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [10:22, 02:31](640 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [10:21, 02:31](643 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [10:21, 02:37](763 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [09:23, 02:38](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [09:21, 02:29](643 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:04, 06:13](692 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:55, 06:13](671 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [07:20, 02:37](751 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:21, 04:41](2030 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [09:23, 04:40](2032 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:18, 06:21] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:24, 05:32](748 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [12:11, 10:07] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:22, 02:37](762 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:41] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:41, 01:58](324 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:36, 01:33](461 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:31, 00:57](461 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:12, 02:04] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:48, 00:36](447 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:45, 00:21](252 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:12, 12:12] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:14, 04:09](1916 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 10:57] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:01, 08:51](1899 MB) + +PASS -- COMPILE 'atml_intel' [13:11, 11:33] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:07, 07:02](1873 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:01, 07:16](1872 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:39, 04:55](1023 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:13, 08:58] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:57, 06:35](1909 MB) + +PASS -- COMPILE 'atmw_intel' [14:11, 13:05] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:49, 02:23](1880 MB) + +PASS -- COMPILE 'atmaero_intel' [14:11, 12:12] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:52, 06:28](3099 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:01, 06:56](2988 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:45, 07:19](2991 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [10:15, 08:42] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [21:20, 18:14](4443 MB) + +PASS -- COMPILE 'atm_fbh_intel' [13:11, 11:55] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [12:25, 09:32](799 MB) SYNOPSIS: -Starting Date/Time: 20241028 22:49:01 -Ending Date/Time: 20241029 01:00:33 -Total Time: 02h:13m:56s +Starting Date/Time: 20241101 09:50:53 +Ending Date/Time: 20241101 11:31:57 +Total Time: 01h:42m:04s Compiles Completed: 43/43 -Tests Completed: 187/188 -Failed Tests: -* TEST atm_ds2s_docn_dice_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f5/epic/scratch/Jong.Kim/rt-2425/tests/logs/log_gaea/run_atm_ds2s_docn_dice_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 GAEA REGRESSION TESTING LOG==== -====START OF GAEA REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -20191d85286242c7e38a3ddada32e7c03e4452f5 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) - 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) - 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 99091f9742670bdebd84bd13f17b9115457d64dd FV3 (heads/develop) - 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) - b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - f3eeb3442775b7239d98e3d09acc6d4f1d42233e FV3/ccpp/physics (EP4-889-gf3eeb344) - 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: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20241028 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_3505788 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2sw_pdlib_intel' [21:15, 20:06] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:05, 26:14](1921 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [33:40, 29:40](1895 MB) - -PASS -- COMPILE 's2sw_intel' [16:11, 14:38] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:01, 12:33](1969 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:11, 11:37] ( 6 warnings 1 remarks ) - -SYNOPSIS: -Starting Date/Time: 20241029 15:26:53 -Ending Date/Time: 20241029 16:53:19 -Total Time: 01h:26m:36s -Compiles Completed: 3/3 -Tests Completed: 3/3 +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 6fefb37069..5c4b7af873 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -20191d85286242c7e38a3ddada32e7c03e4452f5 +50c915d559ecbbc39d288ac9da24860f225597f1 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 99091f9742670bdebd84bd13f17b9115457d64dd FV3 (heads/develop) + 99091f9742670bdebd84bd13f17b9115457d64dd FV3 (heads/develop-13-g99091f9) 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) @@ -26,520 +26,388 @@ 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-20241028 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_906265 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241031 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264162 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:11, 12:51] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:03, 10:18](3294 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 16:54] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [36:26, 17:17](1961 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [56:30, 17:35](2152 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [46:23, 08:17](1260 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [38:19, 19:06](1860 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:11, 16:05] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [32:08, 16:32](1971 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:10, 06:07] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:56, 25:34](1945 MB) - -PASS -- COMPILE 's2swa_intel' [18:11, 12:22] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [35:43, 13:29](3330 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [35:45, 13:00](3335 MB) -PASS -- TEST 'cpld_restart_p8_intel' [50:35, 07:08](3256 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [35:43, 13:01](3342 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [50:35, 07:09](3271 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [27:24, 12:30](3644 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [18:16, 13:00](3344 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:25, 10:28](3208 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [34:41, 13:00](3348 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:15, 10:03](3520 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [06:13, 06:29](3622 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [40:19, 15:43](4286 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [29:12, 09:27](4385 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [25:24, 07:20](3270 MB) - -PASS -- COMPILE 's2sw_intel' [17:11, 11:57] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:57, 07:36](1982 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [19:06, 11:01](2066 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:10, 05:58] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [31:12, 22:08](3374 MB) - -PASS -- COMPILE 's2sw_debug_intel' [11:10, 05:42] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [15:55, 09:08](2004 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:11, 11:07] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [12:05, 04:26](2034 MB) - -PASS -- COMPILE 's2s_intel' [18:11, 11:13] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:05, 07:51](3044 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [14:55, 02:20](3028 MB) -PASS -- TEST 'cpld_restart_c48_intel' [15:06, 01:27](2489 MB) - -PASS -- COMPILE 's2swa_faster_intel' [24:11, 16:40] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:52, 12:42](3351 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:12, 15:07] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [35:24, 27:09](2028 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [36:33, 13:54](1262 MB) -FAILED: TEST TIMED OUT -- TEST 'cpld_mpi_pdlib_p8_intel' [, ]( MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 05:50] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [40:34, 30:40](1962 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:11, 10:47] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [16:35, 03:20](696 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [22:01, 03:12](1565 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [22:08, 03:15](1594 MB) -PASS -- TEST 'control_latlon_intel' [21:55, 03:11](1582 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [22:04, 03:13](1587 MB) -PASS -- TEST 'control_c48_intel' [22:53, 11:18](1716 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:34, 06:24](849 MB) -PASS -- TEST 'control_c192_intel' [31:19, 11:54](1754 MB) -PASS -- TEST 'control_c384_intel' [33:24, 13:37](1989 MB) -PASS -- TEST 'control_c384gdas_intel' [05:10, 08:14](1375 MB) -PASS -- TEST 'control_stochy_intel' [50:57, 01:43](655 MB) -PASS -- TEST 'control_stochy_restart_intel' [07:31, 01:00](508 MB) -PASS -- TEST 'control_lndp_intel' [10:46, 01:44](656 MB) -PASS -- TEST 'control_iovr4_intel' [07:51, 02:38](651 MB) -PASS -- TEST 'control_iovr5_intel' [03:54, 02:45](649 MB) -PASS -- TEST 'control_p8_intel' [02:17, 03:50](1872 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [57:19, 03:30](1871 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [57:11, 03:51](1880 MB) -PASS -- TEST 'control_restart_p8_intel' [06:52, 02:06](1128 MB) -PASS -- TEST 'control_noqr_p8_intel' [56:11, 03:51](1872 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:58, 02:03](1157 MB) -PASS -- TEST 'control_decomp_p8_intel' [56:11, 03:52](1863 MB) -PASS -- TEST 'control_2threads_p8_intel' [51:00, 03:43](1959 MB) -PASS -- TEST 'control_p8_lndp_intel' [54:03, 06:43](1877 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [53:21, 04:18](1951 MB) -PASS -- TEST 'control_p8_mynn_intel' [51:17, 03:21](1895 MB) -PASS -- TEST 'merra2_thompson_intel' [52:11, 03:32](1894 MB) -PASS -- TEST 'regional_control_intel' [09:43, 05:20](1092 MB) -PASS -- TEST 'regional_restart_intel' [15:43, 03:18](1087 MB) -PASS -- TEST 'regional_decomp_intel' [09:48, 05:42](1080 MB) -PASS -- TEST 'regional_2threads_intel' [05:32, 03:26](1082 MB) -PASS -- TEST 'regional_noquilt_intel' [07:37, 05:15](1388 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [18:44, 05:29](1089 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [17:43, 05:29](1085 MB) -PASS -- TEST 'regional_wofs_intel' [20:47, 06:59](1899 MB) - -PASS -- COMPILE 'rrfs_intel' [12:11, 10:14] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [43:48, 07:59](1104 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [39:25, 04:24](1245 MB) -PASS -- TEST 'rap_decomp_intel' [28:39, 08:18](1038 MB) -PASS -- TEST 'rap_2threads_intel' [28:37, 07:29](1169 MB) -PASS -- TEST 'rap_restart_intel' [06:42, 04:03](1090 MB) -PASS -- TEST 'rap_sfcdiff_intel' [24:42, 07:55](1100 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:38, 08:18](1034 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:43, 05:49](1128 MB) -PASS -- TEST 'hrrr_control_intel' [05:44, 03:58](1038 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [09:38, 04:09](1029 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [09:33, 03:43](1103 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:27, 02:13](983 MB) -PASS -- TEST 'rrfs_v1beta_intel' [13:46, 07:41](1088 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [14:26, 09:25](1975 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:27, 09:10](2047 MB) - -PASS -- COMPILE 'csawmg_intel' [14:11, 09:43] -PASS -- TEST 'control_csawmg_intel' [10:43, 06:14](1020 MB) -PASS -- TEST 'control_ras_intel' [07:24, 03:19](747 MB) - -PASS -- COMPILE 'csawmg_gnu' [08:10, 04:06] -PASS -- TEST 'control_csawmg_gnu' [18:46, 08:40](735 MB) - -PASS -- COMPILE 'wam_intel' [14:11, 09:36] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:54, 11:14](1660 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 09:45] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:50, 02:47](1887 MB) -PASS -- TEST 'regional_control_faster_intel' [09:42, 04:49](1097 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:16, 08:24] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:41, 02:12](1607 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:44, 02:07](1614 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:22, 03:01](823 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:41](827 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:34, 04:10](1140 MB) -PASS -- TEST 'control_ras_debug_intel' [05:23, 02:45](839 MB) -PASS -- TEST 'control_diag_debug_intel' [04:44, 02:39](1671 MB) -PASS -- TEST 'control_debug_p8_intel' [04:39, 02:35](1907 MB) -PASS -- TEST 'regional_debug_intel' [19:33, 17:04](1097 MB) -PASS -- TEST 'rap_control_debug_intel' [06:23, 04:52](1216 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:23, 04:43](1207 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:23, 04:54](1211 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:22, 04:55](1211 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 04:52](1216 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:33, 05:08](1297 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:22, 04:52](1212 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:22, 04:57](1209 MB) -PASS -- TEST 'rap_lndp_debug_intel' [09:22, 04:58](1211 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [09:22, 04:43](1217 MB) -PASS -- TEST 'rap_noah_debug_intel' [09:22, 04:43](1213 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [09:22, 04:49](1212 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:26, 07:56](1205 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [10:25, 04:47](1211 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [10:29, 05:39](1214 MB) -PASS -- TEST 'rap_flake_debug_intel' [09:23, 04:46](1210 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:46, 08:28](1219 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:16, 04:31] -PASS -- TEST 'control_csawmg_debug_gnu' [06:37, 02:12](716 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:16, 05:03] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [17:49, 13:19](1663 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:16, 09:56] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:04, 03:59](1126 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:45, 06:35](1041 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:39, 03:28](991 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:43, 06:08](1078 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:34, 03:10](962 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:35, 03:33](922 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:57, 04:52](1028 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:30, 01:54](921 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [22:17, 10:28] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:59, 02:02](1183 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:45, 01:03](1104 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:46, 01:32](1089 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [23:18, 09:56] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:49, 04:11](979 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [27:17, 04:39] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [09:26, 05:00](1088 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:23, 04:48](1092 MB) -PASS -- TEST 'conus13km_debug_intel' [17:49, 13:47](1221 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:46, 13:36](923 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:40, 07:42](1149 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:41, 13:29](1300 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [26:18, 04:48] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:26, 04:56](1142 MB) - -PASS -- COMPILE 'hafsw_intel' [20:24, 12:18] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:22, 04:55](724 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:33, 06:30](1094 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:28, 06:49](825 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:28, 13:11](855 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:31, 15:23](865 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:37, 05:20](492 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:28, 06:53](508 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:53, 02:45](368 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:45, 07:20](481 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:00, 03:47](520 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:11, 03:47](517 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:00, 04:18](579 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [09:33, 01:15](400 MB) -PASS -- TEST 'gnv1_nested_intel' [06:42, 04:03](1733 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [26:18, 04:58] ( 1465 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [20:05, 12:36](582 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [38:21, 11:19] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [16:03, 08:40](643 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:08, 08:41](732 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [38:21, 11:14] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:40, 06:26](676 MB) - -PASS -- COMPILE 'hafs_all_intel' [49:27, 11:03] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [14:19, 06:26](916 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:21, 06:33](792 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:59, 16:16](1221 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [50:27, 06:41] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:19, 02:51](1162 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:23, 01:41](1109 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:18, 02:45](1021 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:26, 02:42](1035 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:25, 02:45](1022 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [07:22, 02:44](1147 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:22, 02:43](1168 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:21, 02:39](1025 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:29, 06:28](1082 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:26, 06:22](1058 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:18, 02:45](1140 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 03:56](2525 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:19, 04:01](2470 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [37:24, 03:17] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:18](1085 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [39:27, 06:32] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 02:42](1163 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [35:25, 01:12] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:31, 00:54](260 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:24, 01:00](329 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:30](325 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [40:26, 01:57] -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:31, 00:36](569 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:31, 00:27](459 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [43:25, 10:47] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:15, 03:49](1978 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [55:20, 10:39] ( 1 warnings 1 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'atm_ds2s_docn_dice_intel' [, ]( MB) - -PASS -- COMPILE 'atml_intel' [42:20, 11:09] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:11, 04:23](1861 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:13, 04:21](1864 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:50, 02:23](1088 MB) - -PASS -- COMPILE 'atml_debug_intel' [36:18, 06:11] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:02, 05:47](1893 MB) - -PASS -- COMPILE 'atmw_intel' [25:12, 10:25] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:53, 01:55](1917 MB) - -PASS -- COMPILE 'atmaero_intel' [22:12, 10:35] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:59, 04:13](3194 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:57, 04:49](3095 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:47, 04:50](3103 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [12:11, 04:46] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_gnu' [11:11, 04:30] -PASS -- TEST 'control_c48_gnu' [11:43, 09:26](1506 MB) -PASS -- TEST 'control_stochy_gnu' [05:24, 03:24](489 MB) -PASS -- TEST 'control_ras_gnu' [07:26, 04:51](458 MB) -PASS -- TEST 'control_p8_gnu' [07:55, 05:12](1453 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [07:51, 05:11](1438 MB) -PASS -- TEST 'control_flake_gnu' [12:24, 10:32](534 MB) - -PASS -- COMPILE 'rrfs_gnu' [11:11, 04:10] -PASS -- TEST 'rap_control_gnu' [13:38, 11:18](805 MB) -PASS -- TEST 'rap_decomp_gnu' [13:35, 11:33](803 MB) -PASS -- TEST 'rap_2threads_gnu' [12:37, 10:12](916 MB) -PASS -- TEST 'rap_restart_gnu' [08:48, 05:45](574 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [13:42, 11:21](843 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:38, 11:23](811 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:56, 08:25](576 MB) -PASS -- TEST 'hrrr_control_gnu' [07:41, 05:46](838 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:38, 05:47](826 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [07:40, 05:13](904 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:33, 05:46](837 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [06:34, 03:05](555 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:39, 02:57](651 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [12:44, 10:55](802 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:26] -PASS -- TEST 'control_diag_debug_gnu' [03:47, 01:31](1259 MB) -PASS -- TEST 'regional_debug_gnu' [13:37, 11:08](746 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:24, 02:28](813 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:23, 02:23](809 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:23, 02:24](818 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:23, 02:26](816 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:40, 02:37](901 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:23, 03:47](809 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:24, 02:27](816 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:23, 02:27](808 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:23, 01:27](449 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:24, 01:38](438 MB) -PASS -- TEST 'control_debug_p8_gnu' [04:43, 01:36](1439 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:27, 02:29](812 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [06:24, 02:51](817 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [07:40, 04:13](818 MB) - -PASS -- COMPILE 'wam_debug_gnu' [06:10, 02:39] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:10, 04:17] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [13:35, 09:43](700 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [08:37, 05:09](689 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [12:43, 08:52](741 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:41, 04:41](736 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [08:33, 05:14](694 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:46, 07:15](547 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:31, 02:38](532 MB) -PASS -- TEST 'conus13km_control_gnu' [07:00, 03:08](862 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:52, 05:53](867 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:51, 01:50](550 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:12] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:50, 05:49](717 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:10, 06:26] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:26, 02:24](707 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:26, 02:20](710 MB) -PASS -- TEST 'conus13km_debug_gnu' [10:53, 06:24](872 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [10:49, 06:24](568 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [11:45, 07:33](883 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:45, 06:14](945 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:10, 06:42] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [05:26, 02:27](727 MB) - -PASS -- COMPILE 's2swa_gnu' [18:11, 16:15] - -PASS -- COMPILE 's2s_gnu' [17:11, 15:27] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [21:12, 18:32](1497 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [05:10, 03:05] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 15:49] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [47:16, 33:56](1452 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [07:10, 02:58] - -PASS -- COMPILE 'datm_cdeps_gnu' [19:11, 15:00] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:19, 02:59](692 MB) - -PASS -- COMPILE 'atm_fbh_intel' [12:11, 09:22] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:28, 11:39](1091 MB) +PASS -- COMPILE 's2swa_32bit_intel' [15:11, 12:59] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:11, 10:28](3294 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 16:10] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:57, 16:41](1969 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:17, 17:33](2154 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:09, 08:02](1270 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:54, 18:48](1860 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:11, 16:11] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [22:42, 16:26](1968 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:10, 06:04] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:02, 25:49](1928 MB) + +PASS -- COMPILE 's2swa_intel' [15:11, 13:01] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [17:13, 13:02](3350 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [22:18, 13:22](3320 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:17, 06:52](3260 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [17:13, 12:52](3370 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:17, 06:59](3267 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [21:07, 12:17](3616 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [23:07, 13:38](3290 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [19:09, 10:22](3223 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [22:19, 12:47](3355 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:08, 10:13](3517 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:01, 06:21](3620 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [28:44, 15:53](4296 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:27, 09:47](4381 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:12, 07:19](3312 MB) + +PASS -- COMPILE 's2sw_intel' [14:11, 11:30] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:57, 07:37](1957 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:02, 11:07](2046 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:10, 06:28] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [25:15, 22:17](3399 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:10, 05:57] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:06, 08:55](1963 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:11, 10:58] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:04, 04:27](2040 MB) + +PASS -- COMPILE 's2s_intel' [13:11, 11:13] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:40, 07:45](3033 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:42, 02:24](3024 MB) +PASS -- TEST 'cpld_restart_c48_intel' [07:50, 01:25](2475 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:12, 17:34] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [20:12, 12:26](3345 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:12, 15:38] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:07, 27:18](2013 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [25:25, 13:37](1257 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [44:14, 31:47](1927 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:11, 06:09] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [38:58, 30:40](1906 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:11, 10:31] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:24, 03:25](702 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:43, 03:29](1583 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:49, 03:26](1588 MB) +PASS -- TEST 'control_latlon_intel' [05:40, 03:19](1589 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:47, 03:21](1583 MB) +PASS -- TEST 'control_c48_intel' [13:44, 11:25](1730 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:25, 06:18](851 MB) +PASS -- TEST 'control_c192_intel' [15:00, 12:07](1752 MB) +PASS -- TEST 'control_c384_intel' [24:10, 13:58](1976 MB) +PASS -- TEST 'control_c384gdas_intel' [21:12, 08:15](1381 MB) +PASS -- TEST 'control_stochy_intel' [03:21, 01:45](651 MB) +PASS -- TEST 'control_stochy_restart_intel' [07:25, 01:01](498 MB) +PASS -- TEST 'control_lndp_intel' [08:21, 01:40](657 MB) +PASS -- TEST 'control_iovr4_intel' [07:22, 02:32](645 MB) +PASS -- TEST 'control_iovr5_intel' [07:22, 02:33](648 MB) +PASS -- TEST 'control_p8_intel' [08:47, 03:40](1879 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [08:55, 03:09](1889 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:46, 03:35](1876 MB) +PASS -- TEST 'control_restart_p8_intel' [03:45, 02:03](1123 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:48, 03:41](1873 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:52, 01:59](1164 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:43, 03:47](1863 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:45, 03:32](1957 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:39, 06:33](1875 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:49, 04:00](1947 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:47, 03:08](1887 MB) +PASS -- TEST 'merra2_thompson_intel' [05:44, 03:22](1889 MB) +PASS -- TEST 'regional_control_intel' [07:34, 05:21](1087 MB) +PASS -- TEST 'regional_restart_intel' [10:36, 02:58](1076 MB) +PASS -- TEST 'regional_decomp_intel' [07:32, 05:38](1090 MB) +PASS -- TEST 'regional_2threads_intel' [05:31, 03:26](1084 MB) +PASS -- TEST 'regional_noquilt_intel' [07:36, 05:15](1386 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:38, 05:16](1093 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:31, 05:27](1093 MB) +PASS -- TEST 'regional_wofs_intel' [08:32, 07:01](1897 MB) + +PASS -- COMPILE 'rrfs_intel' [12:11, 10:12] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:42, 07:57](1100 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:22, 04:15](1248 MB) +PASS -- TEST 'rap_decomp_intel' [10:36, 08:15](1032 MB) +PASS -- TEST 'rap_2threads_intel' [09:36, 07:37](1167 MB) +PASS -- TEST 'rap_restart_intel' [08:44, 04:08](1097 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:39, 07:52](1096 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:34, 08:13](1038 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:45, 05:55](1123 MB) +PASS -- TEST 'hrrr_control_intel' [05:41, 04:00](1043 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:37, 04:13](1023 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:37, 03:50](1096 MB) +PASS -- TEST 'hrrr_control_restart_intel' [07:29, 02:15](990 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:45, 07:50](1097 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:27, 09:32](1983 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:24, 09:12](2052 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 09:38] +PASS -- TEST 'control_csawmg_intel' [11:35, 06:20](1018 MB) +PASS -- TEST 'control_ras_intel' [10:23, 03:21](746 MB) + +PASS -- COMPILE 'csawmg_gnu' [06:11, 04:06] +PASS -- TEST 'control_csawmg_gnu' [11:36, 08:28](750 MB) + +PASS -- COMPILE 'wam_intel' [11:11, 09:43] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [17:44, 11:16](1659 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:10] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [10:53, 02:48](1886 MB) +PASS -- TEST 'regional_control_faster_intel' [11:44, 04:52](1079 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [14:11, 07:56] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [08:44, 02:10](1609 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:45, 02:13](1608 MB) +PASS -- TEST 'control_stochy_debug_intel' [09:22, 03:01](823 MB) +PASS -- TEST 'control_lndp_debug_intel' [08:23, 02:44](827 MB) +PASS -- TEST 'control_csawmg_debug_intel' [09:35, 04:14](1139 MB) +PASS -- TEST 'control_ras_debug_intel' [08:23, 02:45](833 MB) +PASS -- TEST 'control_diag_debug_intel' [07:47, 02:44](1679 MB) +PASS -- TEST 'control_debug_p8_intel' [06:41, 02:33](1908 MB) +PASS -- TEST 'regional_debug_intel' [20:37, 17:07](1101 MB) +PASS -- TEST 'rap_control_debug_intel' [08:24, 04:52](1207 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:24, 04:49](1203 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:23, 04:49](1204 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 04:52](1211 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:23, 05:02](1217 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:39, 05:16](1300 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:22, 04:59](1213 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:22, 05:01](1212 MB) +PASS -- TEST 'rap_lndp_debug_intel' [09:24, 04:54](1212 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [09:22, 05:00](1208 MB) +PASS -- TEST 'rap_noah_debug_intel' [13:25, 04:53](1215 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [13:23, 04:59](1210 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [16:24, 07:53](1211 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [16:24, 04:52](1203 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [17:25, 05:46](1212 MB) +PASS -- TEST 'rap_flake_debug_intel' [16:25, 04:56](1210 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [20:47, 08:29](1216 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [10:11, 04:28] +PASS -- TEST 'control_csawmg_debug_gnu' [13:37, 02:11](716 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:10, 04:45] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [24:46, 13:01](1684 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:13, 09:36] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [15:06, 04:03](1119 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [18:02, 06:42](1055 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [14:41, 03:30](983 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [16:44, 06:25](1080 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [12:47, 03:14](953 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [13:36, 03:40](926 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:01, 04:56](1029 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:33, 02:00](928 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:13, 09:36] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [11:57, 02:07](1194 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:56, 00:57](1109 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:50, 01:13](1092 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:13, 09:41] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [13:45, 04:20](973 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:10, 04:46] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [13:26, 04:58](1081 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [12:24, 04:42](1088 MB) +PASS -- TEST 'conus13km_debug_intel' [20:51, 13:34](1231 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:47, 13:45](923 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [14:41, 07:47](1158 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:40, 13:40](1292 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:48] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:26, 04:57](1140 MB) + +PASS -- COMPILE 'hafsw_intel' [17:12, 11:24] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:28, 04:53](732 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:36, 06:28](1102 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:30, 07:08](817 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:32, 13:20](839 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:45, 15:00](865 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:24, 05:42](489 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:29, 06:52](507 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:59, 02:50](368 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:50, 07:38](479 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:56, 03:55](519 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:13, 03:46](521 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:56, 04:25](574 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:33, 01:16](396 MB) +PASS -- TEST 'gnv1_nested_intel' [07:41, 04:05](1726 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [12:13, 05:14] ( 1465 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:57, 12:53](582 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [18:11, 10:56] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:17, 08:47](624 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:15, 08:56](791 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:12, 11:04] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:30, 06:29](714 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:11, 10:38] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:07, 06:32](811 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:38, 06:45](794 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:06, 16:29](1213 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:10, 06:22] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:22, 02:44](1153 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:39](1110 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:37](1038 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:21, 02:41](1028 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:41](1027 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:21, 02:44](1154 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:19, 02:44](1167 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:32, 02:40](1022 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:32, 06:28](1063 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:27, 06:23](1070 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:44](1166 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:23, 04:09](2468 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:20, 04:11](2405 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 03:20] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:20, 06:13](1086 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:33] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:21, 02:43](1149 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:01] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:36, 00:52](263 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:36, 00:55](325 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:40, 00:37](323 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:19] +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:45, 00:33](555 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:41, 00:20](458 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:13, 10:24] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:04, 03:47](1986 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:12, 09:59] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:09, 08:05](1979 MB) + +PASS -- COMPILE 'atml_intel' [12:12, 10:32] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:09, 04:25](1855 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:05, 04:28](1863 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:51, 02:32](1096 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:11, 06:01] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:04, 05:43](1879 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 10:14] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:55, 01:56](1924 MB) + +PASS -- COMPILE 'atmaero_intel' [13:11, 10:16] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:26, 04:14](3197 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:15, 04:58](3095 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:56, 04:57](3105 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:12, 05:07] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_gnu' [06:13, 04:10] +PASS -- TEST 'control_c48_gnu' [11:56, 09:21](1506 MB) +PASS -- TEST 'control_stochy_gnu' [05:26, 03:29](487 MB) +PASS -- TEST 'control_ras_gnu' [06:26, 04:58](496 MB) +PASS -- TEST 'control_p8_gnu' [08:05, 05:19](1451 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [07:59, 05:16](1452 MB) +PASS -- TEST 'control_flake_gnu' [12:30, 10:29](534 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:13, 04:07] +PASS -- TEST 'rap_control_gnu' [13:40, 11:40](807 MB) +PASS -- TEST 'rap_decomp_gnu' [14:05, 11:41](804 MB) +PASS -- TEST 'rap_2threads_gnu' [12:43, 10:38](917 MB) +PASS -- TEST 'rap_restart_gnu' [08:11, 05:53](572 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [14:09, 11:21](842 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:49, 11:34](805 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [11:00, 08:33](572 MB) +PASS -- TEST 'hrrr_control_gnu' [07:45, 05:52](804 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:44, 05:52](826 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [07:45, 05:20](907 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:40, 05:53](805 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [05:36, 03:12](555 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:37, 03:06](648 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [13:48, 11:28](805 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:13, 06:34] +PASS -- TEST 'control_diag_debug_gnu' [03:55, 01:34](1267 MB) +PASS -- TEST 'regional_debug_gnu' [12:40, 10:55](736 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:26, 02:26](816 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:25, 02:25](812 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:24, 02:29](821 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:25, 02:29](820 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:46, 02:42](900 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:27, 03:52](815 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:23, 02:32](815 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:24, 02:29](812 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:22, 01:33](453 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:23, 01:39](446 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:46, 01:34](1427 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:29, 02:31](821 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:29, 02:49](815 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [07:06, 04:07](820 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:12, 02:21] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 03:55] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [12:33, 10:13](700 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:37, 05:15](694 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [11:39, 09:34](738 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:39, 04:50](734 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:42, 05:46](686 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:52, 07:24](545 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:40, 02:43](528 MB) +PASS -- TEST 'conus13km_control_gnu' [06:01, 03:15](862 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:50, 06:04](865 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:51, 01:55](555 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:12, 09:11] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:44, 06:15](720 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:17] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:26, 02:30](704 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:39, 02:29](701 MB) +PASS -- TEST 'conus13km_debug_gnu' [09:55, 06:50](886 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [09:55, 06:46](570 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [10:53, 08:20](883 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:48, 06:50](949 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:28] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:27, 02:39](723 MB) + +PASS -- COMPILE 's2swa_gnu' [17:13, 15:32] + +PASS -- COMPILE 's2s_gnu' [17:13, 15:11] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [22:14, 19:25](1474 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:05] + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:12, 15:21] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [35:10, 32:41](1445 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [06:11, 02:57] + +PASS -- COMPILE 'datm_cdeps_gnu' [16:11, 14:52] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:21, 03:21](689 MB) + +PASS -- COMPILE 'atm_fbh_intel' [11:11, 09:28] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:35, 11:34](1086 MB) SYNOPSIS: -Starting Date/Time: 20241029 01:28:58 -Ending Date/Time: 20241029 08:39:47 -Total Time: 07h:11m:05s +Starting Date/Time: 20241101 13:15:16 +Ending Date/Time: 20241101 15:27:45 +Total Time: 02h:12m:47s Compiles Completed: 59/59 -Tests Completed: 244/246 -Failed Tests: -* TEST cpld_mpi_pdlib_p8_intel: FAILED: TEST TIMED OUT --- LOG: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_906265/cpld_mpi_pdlib_p8_intel/err -* TEST atm_ds2s_docn_dice_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch2/NCEPDEV/marine/Jong.Kim/UFS-RT/rt-2425/tests/logs/log_hera/run_atm_ds2s_docn_dice_intel.log +Tests Completed: 246/246 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. +A file 'test_changes.list' was generated but is empty. If you are using this log as a pull request verification, please commit 'test_changes.list'. -Result: FAILURE - -====END OF HERA REGRESSION TESTING LOG==== -====START OF HERA REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -20191d85286242c7e38a3ddada32e7c03e4452f5 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) - 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 99091f9742670bdebd84bd13f17b9115457d64dd 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) - 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: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241028 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3196770 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2sw_pdlib_intel' [17:12, 15:12] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [29:06, 26:59](2016 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [33:54, 31:48](1926 MB) - -PASS -- COMPILE 's2sw_intel' [13:11, 11:39] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:37, 10:56](2069 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 10:26] ( 1 warnings 1 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'atm_ds2s_docn_dice_intel' [, ]( MB) - -SYNOPSIS: -Starting Date/Time: 20241029 12:27:30 -Ending Date/Time: 20241029 13:49:01 -Total Time: 01h:21m:37s -Compiles Completed: 3/3 -Tests Completed: 3/4 -Failed Tests: -* TEST atm_ds2s_docn_dice_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch2/NCEPDEV/marine/Jong.Kim/UFS-RT/rt-2425/tests/logs/log_hera/run_atm_ds2s_docn_dice_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 HERA REGRESSION TESTING LOG==== -====START OF HERA REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -20191d85286242c7e38a3ddada32e7c03e4452f5 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) - 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 99091f9742670bdebd84bd13f17b9115457d64dd 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) - 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: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241028 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3196770 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2sw_pdlib_intel' [17:12, 15:12] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [29:06, 26:59](2016 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [33:54, 31:48](1926 MB) - -PASS -- COMPILE 's2sw_intel' [13:11, 11:39] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:37, 10:56](2069 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 10:26] ( 1 warnings 1 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'atm_ds2s_docn_dice_intel' [, ]( MB) - -SYNOPSIS: -Starting Date/Time: 20241029 12:27:30 -Ending Date/Time: 20241029 13:49:01 -Total Time: 01h:21m:37s -Compiles Completed: 3/3 -Tests Completed: 3/4 -Failed Tests: -* TEST atm_ds2s_docn_dice_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch2/NCEPDEV/marine/Jong.Kim/UFS-RT/rt-2425/tests/logs/log_hera/run_atm_ds2s_docn_dice_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 +Result: SUCCESS ====END OF HERA REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index ab731521e4..00065053c4 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7 +1,7 @@ -====START OF hercules REGRESSION TESTING LOG==== +====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -454eb51f3a0d590b77b8aefd9e8fa6755534b32e +50c915d559ecbbc39d288ac9da24860f225597f1 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,790 +11,7 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 99091f9742670bdebd84bd13f17b9115457d64dd FV3 (heads/develop) - 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) - b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - f3eeb3442775b7239d98e3d09acc6d4f1d42233e FV3/ccpp/physics (EP4-889-gf3eeb344) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) - c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - c7004b658b9dae9fc473d4e6511dfc1cf8e6a7bd WW3 (6.07.1-347-gc7004b65) - 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20241028 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/jongkim/FV3_RT/rt_549981 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-r) - USE ROCOTO - -FAIL -- COMPILE s2swa_32bit_intel -PASS -- TEST cpld_control_p8_mixedmode_intel [14:34, 13:41] (2129052 MB) - -FAIL -- COMPILE s2swa_32bit_pdlib_intel -PASS -- TEST cpld_control_gfsv17_intel [14:21, 13:30] (1992588 MB) -PASS -- TEST cpld_control_gfsv17_iau_intel [15:35, 14:21] (2270620 MB) -PASS -- TEST cpld_restart_gfsv17_intel [07:58, 06:40] (1335740 MB) -PASS -- TEST cpld_mpi_gfsv17_intel [16:05, 15:10] (1905184 MB) - -FAIL -- COMPILE s2swa_32bit_pdlib_sfs_intel -PASS -- TEST cpld_control_sfs_intel [13:49, 13:16] (1988044 MB) - -FAIL -- COMPILE s2swa_32bit_pdlib_debug_intel -PASS -- TEST cpld_debug_gfsv17_intel [08:26, 25:42] (1976080 MB) - -FAIL -- COMPILE s2swa_intel -PASS -- TEST cpld_control_p8_intel [15:59, 15:08] (2207060 MB) -PASS -- TEST cpld_control_p8.v2.sfc_intel [14:56, 14:04] (2204492 MB) -PASS -- TEST cpld_restart_p8_intel [08:38, 07:40] (1958368 MB) -PASS -- TEST cpld_control_qr_p8_intel [15:12, 14:13] (2228560 MB) -PASS -- TEST cpld_restart_qr_p8_intel [08:32, 07:36] (1733260 MB) -PASS -- TEST cpld_2threads_p8_intel [17:12, 16:31] (2567676 MB) -PASS -- TEST cpld_decomp_p8_intel [14:36, 13:49] (2199280 MB) -PASS -- TEST cpld_mpi_p8_intel [12:55, 12:01] (2094048 MB) -PASS -- TEST cpld_control_ciceC_p8_intel [15:24, 14:35] (2203152 MB) -PASS -- TEST cpld_control_c192_p8_intel [16:33, 15:03] (2964968 MB) -PASS -- TEST cpld_restart_c192_p8_intel [09:44, 07:18] (2907332 MB) -PASS -- TEST cpld_bmark_p8_intel [23:07, 17:56] (3827024 MB) -PASS -- TEST cpld_restart_bmark_p8_intel [18:41, 11:03] (3635676 MB) -PASS -- TEST cpld_s2sa_p8_intel [07:58, 07:08] (2112452 MB) - -FAIL -- COMPILE s2sw_intel -PASS -- TEST cpld_control_noaero_p8_intel [13:55, 13:12] (2011652 MB) -PASS -- TEST cpld_control_nowave_noaero_p8_intel [11:26, 10:40] (2115484 MB) - -FAIL -- COMPILE s2swa_debug_intel -PASS -- TEST cpld_debug_p8_intel [20:14, 19:28] (2233900 MB) - -FAIL -- COMPILE s2sw_debug_intel -PASS -- TEST cpld_debug_noaero_p8_intel [09:14, 08:27] (2036028 MB) - -FAIL -- COMPILE s2s_aoflux_intel -PASS -- TEST cpld_control_noaero_p8_agrid_intel [05:55, 05:05] (2064352 MB) - -FAIL -- COMPILE s2s_intel -PASS -- TEST cpld_control_c48_intel [06:47, 06:03] (3039992 MB) -PASS -- TEST cpld_warmstart_c48_intel [02:22, 01:48] (3011196 MB) -PASS -- TEST cpld_restart_c48_intel [01:27, 01:04] (2469040 MB) - -PASS -- COMPILE s2swa_faster_intel [11:59, 11:59](1 warnings,10 remarks) -PASS -- TEST cpld_control_p8_faster_intel [15:32, 14:44] (2208220 MB) - -PASS -- COMPILE s2sw_pdlib_intel [16:08, 16:08](1 warnings,10 remarks) -PASS -- TEST cpld_control_pdlib_p8_intel [23:22, 22:31] (2073144 MB) -PASS -- TEST cpld_restart_pdlib_p8_intel [12:21, 11:20] (1421848 MB) -PASS -- TEST cpld_mpi_pdlib_p8_intel [26:07, 25:21] (1995652 MB) - -PASS -- COMPILE s2sw_pdlib_debug_intel [04:39, 04:39](1523 warnings,2000 remarks) -PASS -- TEST cpld_debug_pdlib_p8_intel [28:04, 27:16] (2008368 MB) - -PASS -- COMPILE atm_dyn32_intel [09:08, 09:07](1 warnings,1 remarks) -PASS -- TEST control_flake_intel [03:14, 03:01] (712336 MB) -PASS -- TEST control_CubedSphereGrid_intel [03:23, 02:49] (1580936 MB) -PASS -- TEST control_CubedSphereGrid_parallel_intel [03:25, 02:53] (1608712 MB) -PASS -- TEST control_latlon_intel [03:19, 02:55] (1579364 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_intel [03:19, 02:49] (1592952 MB) -PASS -- TEST control_c48_intel [10:40, 10:17] (1694584 MB) -PASS -- TEST control_c48.v2.sfc_intel [06:09, 05:56] (825712 MB) -PASS -- TEST control_c192_intel [11:04, 10:22] (1773152 MB) -PASS -- TEST control_c384_intel [14:02, 12:36] (2021220 MB) -PASS -- TEST control_c384gdas_intel [09:30, 07:48] (1500712 MB) -PASS -- TEST control_stochy_intel [01:42, 01:30] (660648 MB) -PASS -- TEST control_stochy_restart_intel [01:19, 01:01] (532184 MB) -PASS -- TEST control_lndp_intel [01:39, 01:26] (667232 MB) -PASS -- TEST control_iovr4_intel [02:22, 02:09] (656052 MB) -PASS -- TEST control_iovr5_intel [02:23, 02:13] (651652 MB) -PASS -- TEST control_p8_intel [03:59, 03:13] (1889864 MB) -PASS -- TEST control_p8.v2.sfc_intel [03:33, 02:43] (1906328 MB) -PASS -- TEST control_p8_ugwpv1_intel [03:56, 03:08] (1886388 MB) -PASS -- TEST control_restart_p8_intel [02:32, 01:57] (1145972 MB) -PASS -- TEST control_noqr_p8_intel [03:51, 03:15] (1879132 MB) -PASS -- TEST control_restart_noqr_p8_intel [02:24, 01:54] (1224300 MB) -PASS -- TEST control_decomp_p8_intel [03:58, 03:17] (1861224 MB) -PASS -- TEST control_2threads_p8_intel [03:56, 03:03] (1951424 MB) -PASS -- TEST control_p8_lndp_intel [06:15, 05:44] (1876256 MB) -PASS -- TEST control_p8_rrtmgp_intel [04:27, 03:38] (1967208 MB) -PASS -- TEST control_p8_mynn_intel [03:38, 02:46] (1907120 MB) -PASS -- TEST merra2_thompson_intel [03:55, 02:56] (1896600 MB) -PASS -- TEST regional_control_intel [05:02, 04:41] (1185876 MB) -PASS -- TEST regional_restart_intel [03:00, 02:40] (1163896 MB) -PASS -- TEST regional_decomp_intel [05:19, 04:48] (1178180 MB) -PASS -- TEST regional_2threads_intel [03:28, 03:04] (1152644 MB) -PASS -- TEST regional_noquilt_intel [04:52, 04:31] (1515352 MB) -PASS -- TEST regional_netcdf_parallel_intel [05:06, 04:37] (1195488 MB) -PASS -- TEST regional_2dwrtdecomp_intel [04:56, 04:37] (1193072 MB) -PASS -- TEST regional_wofs_intel [06:24, 06:02] (2080804 MB) - -PASS -- COMPILE rrfs_intel [08:44, 08:44](3 warnings,9 remarks) -PASS -- TEST rap_control_intel [07:22, 06:41] (1184412 MB) -PASS -- TEST regional_spp_sppt_shum_skeb_intel [04:51, 04:14] (1339776 MB) -PASS -- TEST rap_decomp_intel [07:36, 06:59] (1141716 MB) -PASS -- TEST rap_2threads_intel [07:00, 06:24] (1372836 MB) -PASS -- TEST rap_restart_intel [04:21, 03:37] (1132668 MB) -PASS -- TEST rap_sfcdiff_intel [07:14, 06:38] (1207312 MB) -PASS -- TEST rap_sfcdiff_decomp_intel [07:37, 07:03] (1153228 MB) -PASS -- TEST rap_sfcdiff_restart_intel [05:51, 05:08] (1181088 MB) -PASS -- TEST hrrr_control_intel [04:07, 03:29] (1085908 MB) -PASS -- TEST hrrr_control_decomp_intel [04:19, 03:42] (1041804 MB) -PASS -- TEST hrrr_control_2threads_intel [04:02, 03:22] (1106240 MB) -PASS -- TEST hrrr_control_restart_intel [02:06, 01:56] (1019224 MB) -PASS -- TEST rrfs_v1beta_intel [07:11, 06:31] (1189780 MB) -PASS -- TEST rrfs_v1nssl_intel [08:30, 08:19] (1993276 MB) -PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [08:21, 08:10] (2163524 MB) - -PASS -- COMPILE csawmg_intel [08:07, 08:06] -PASS -- TEST control_csawmg_intel [07:37, 07:15] (1070392 MB) -PASS -- TEST control_ras_intel [03:13, 03:03] (811408 MB) - -PASS -- COMPILE csawmg_gnu [03:59, 03:59] -PASS -- TEST control_csawmg_gnu [07:56, 07:35] (1058612 MB) - -PASS -- COMPILE wam_intel [08:07, 08:07],1 remarks) -PASS -- TEST control_wam_intel [10:28, 09:57] (1653752 MB) - -PASS -- COMPILE atm_faster_dyn32_intel [09:03, 09:03],1 remarks) -PASS -- TEST control_p8_faster_intel [04:08, 03:21] (1887616 MB) -PASS -- TEST regional_control_faster_intel [06:27, 06:04] (1182304 MB) - -PASS -- COMPILE atm_debug_dyn32_intel [06:02, 06:02](882 warnings,9 remarks) -PASS -- TEST control_CubedSphereGrid_debug_intel [02:31, 02:03] (1621912 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [02:27, 01:53] (1615136 MB) -PASS -- TEST control_stochy_debug_intel [02:50, 02:36] (842456 MB) -PASS -- TEST control_lndp_debug_intel [02:32, 02:22] (845672 MB) -PASS -- TEST control_csawmg_debug_intel [04:47, 04:24] (1144636 MB) -PASS -- TEST control_ras_debug_intel [02:30, 02:23] (840964 MB) -PASS -- TEST control_diag_debug_intel [03:05, 02:34] (1691956 MB) -PASS -- TEST control_debug_p8_intel [03:41, 03:14] (1910724 MB) -PASS -- TEST regional_debug_intel [16:19, 15:54] (1143036 MB) -PASS -- TEST rap_control_debug_intel [04:26, 04:13] (1218964 MB) -PASS -- TEST hrrr_control_debug_intel [04:21, 04:06] (1219272 MB) -PASS -- TEST hrrr_gf_debug_intel [04:18, 04:07] (1233844 MB) -PASS -- TEST hrrr_c3_debug_intel [04:25, 04:10] (1226148 MB) -PASS -- TEST rap_unified_drag_suite_debug_intel [04:25, 04:09] (1223264 MB) -PASS -- TEST rap_diag_debug_intel [04:49, 04:31] (1301008 MB) -PASS -- TEST rap_cires_ugwp_debug_intel [04:35, 04:21] (1217808 MB) -PASS -- TEST rap_unified_ugwp_debug_intel [04:37, 04:24] (1236272 MB) -PASS -- TEST rap_lndp_debug_intel [04:25, 04:17] (1219468 MB) -PASS -- TEST rap_progcld_thompson_debug_intel [04:33, 04:24] (1221168 MB) -PASS -- TEST rap_noah_debug_intel [04:15, 04:04] (1230100 MB) -PASS -- TEST rap_sfcdiff_debug_intel [04:26, 04:17] (1217564 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [07:16, 07:00] (1219376 MB) -PASS -- TEST rrfs_v1beta_debug_intel [04:25, 04:10] (1217876 MB) -PASS -- TEST rap_clm_lake_debug_intel [05:19, 05:02] (1227560 MB) -PASS -- TEST rap_flake_debug_intel [04:35, 04:17] (1222728 MB) -PASS -- TEST gnv1_c96_no_nest_debug_intel [08:16, 07:31] (1233828 MB) - -PASS -- COMPILE atm_debug_dyn32_gnu [04:53, 04:53] -PASS -- TEST control_csawmg_debug_gnu [03:15, 02:55] (1039500 MB) - -PASS -- COMPILE wam_debug_intel [04:18, 04:18](837 warnings,1 remarks) - -PASS -- COMPILE rrfs_dyn32_phy32_intel [08:19, 08:18](3 warnings,8 remarks) -PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [04:47, 04:13] (1209796 MB) -PASS -- TEST rap_control_dyn32_phy32_intel [07:00, 06:20] (1158932 MB) -PASS -- TEST hrrr_control_dyn32_phy32_intel [04:11, 03:19] (1032792 MB) -PASS -- TEST rap_2threads_dyn32_phy32_intel [06:32, 05:53] (1273912 MB) -PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [08:42, 07:51] (1029316 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [04:23, 03:35] (989632 MB) -PASS -- TEST rap_restart_dyn32_phy32_intel [05:36, 04:53] (1120012 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [02:10, 01:50] (956076 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [10:34, 10:34](3 warnings,8 remarks) -PASS -- TEST conus13km_control_intel [02:18, 01:45] (1286348 MB) -PASS -- TEST conus13km_2threads_intel [01:11, 00:46] (1183640 MB) -PASS -- TEST conus13km_restart_mismatch_intel [01:36, 01:08] (1144960 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_intel [08:17, 08:17](3 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_intel [04:18, 03:52] (1067396 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [03:30, 03:29](785 warnings,8 remarks) -PASS -- TEST rap_control_debug_dyn32_phy32_intel [04:30, 04:20] (1100900 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [04:36, 04:25] (1096640 MB) -PASS -- TEST conus13km_debug_intel [12:32, 12:02] (1332032 MB) -PASS -- TEST conus13km_debug_qr_intel [12:56, 12:20] (992268 MB) -PASS -- TEST conus13km_debug_2threads_intel [07:56, 07:30] (1244488 MB) -PASS -- TEST conus13km_radar_tten_debug_intel [12:29, 11:58] (1420484 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [03:57, 03:57](785 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_debug_intel [04:54, 04:43] (1169492 MB) - -PASS -- COMPILE hafsw_intel [10:03, 10:03](1 warnings,9 remarks) -PASS -- TEST hafs_regional_atm_intel [06:44, 05:47] (853968 MB) -PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [05:54, 05:36] (1251520 MB) -PASS -- TEST hafs_regional_atm_ocn_intel [07:57, 06:48] (936692 MB) -PASS -- TEST hafs_regional_atm_wav_intel [15:12, 14:16] (962932 MB) -PASS -- TEST hafs_regional_atm_ocn_wav_intel [16:25, 15:19] (978004 MB) -PASS -- TEST hafs_regional_1nest_atm_intel [06:32, 05:44] (592264 MB) -PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [09:06, 07:55] (604044 MB) -PASS -- TEST hafs_global_1nest_atm_intel [03:21, 02:51] (432520 MB) -PASS -- TEST hafs_global_multiple_4nests_atm_intel [10:07, 08:21] (545828 MB) -PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [04:49, 04:11] (602192 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [04:44, 04:00] (605608 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [05:47, 05:02] (658084 MB) -PASS -- TEST hafs_global_storm_following_1nest_atm_intel [01:31, 01:11] (449916 MB) - -PASS -- COMPILE hafsw_debug_intel [04:30, 04:30](1465 warnings,1502 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [13:06, 12:18] (638468 MB) - -PASS -- COMPILE hafsw_faster_intel [10:30, 10:30],8 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [16:30, 15:37] (756252 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [16:12, 15:12] (837748 MB) - -PASS -- COMPILE hafs_mom6w_intel [10:16, 10:15],7 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [11:27, 10:01] (819308 MB) - -PASS -- COMPILE hafs_all_intel [09:52, 09:52],8 remarks) -PASS -- TEST hafs_regional_docn_intel [08:00, 07:07] (918244 MB) -PASS -- TEST hafs_regional_docn_oisst_intel [08:03, 07:08] (892412 MB) -PASS -- TEST hafs_regional_datm_cdeps_intel [12:38, 12:02] (1351648 MB) - -PASS -- COMPILE datm_cdeps_intel [06:37, 06:36],2 remarks) -PASS -- TEST datm_cdeps_control_cfsr_intel [02:36, 02:30] (1154124 MB) -PASS -- TEST datm_cdeps_restart_cfsr_intel [01:30, 01:24] (1107604 MB) -PASS -- TEST datm_cdeps_control_gefs_intel [02:12, 02:07] (1018128 MB) -PASS -- TEST datm_cdeps_iau_gefs_intel [02:14, 02:10] (1017836 MB) -PASS -- TEST datm_cdeps_stochy_gefs_intel [02:14, 02:10] (1017872 MB) -PASS -- TEST datm_cdeps_ciceC_cfsr_intel [02:32, 02:27] (1153992 MB) -PASS -- TEST datm_cdeps_bulk_cfsr_intel [03:06, 02:59] (1117476 MB) -PASS -- TEST datm_cdeps_bulk_gefs_intel [02:16, 02:10] (1014620 MB) -PASS -- TEST datm_cdeps_mx025_cfsr_intel [05:43, 05:02] (1155016 MB) -PASS -- TEST datm_cdeps_mx025_gefs_intel [05:42, 04:59] (1150552 MB) -PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [02:20, 02:15] (1151884 MB) -PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [03:27, 03:22] (2444872 MB) -PASS -- TEST datm_cdeps_gfs_intel [04:16, 04:10] (2434180 MB) - -PASS -- COMPILE datm_cdeps_debug_intel [03:59, 03:58](2 warnings,2 remarks) -PASS -- TEST datm_cdeps_debug_cfsr_intel [05:21, 05:16] (1077740 MB) - -PASS -- COMPILE datm_cdeps_faster_intel [06:04, 06:04],2 remarks) -PASS -- TEST datm_cdeps_control_cfsr_faster_intel [02:29, 02:24] (1161204 MB) - -PASS -- COMPILE datm_cdeps_land_intel [00:50, 00:49],1 remarks) -PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:18, 00:58] (330172 MB) -PASS -- TEST datm_cdeps_lnd_era5_intel [01:14, 00:55] (574464 MB) -PASS -- TEST datm_cdeps_lnd_era5_rst_intel [00:48, 00:34] (575864 MB) - -PASS -- COMPILE atm_ds2s_docn_pcice_intel [09:28, 09:28],3 remarks) -PASS -- TEST atm_ds2s_docn_pcice_intel [05:08, 04:26] (2009340 MB) - -PASS -- COMPILE atml_intel [09:10, 09:10](8 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_sbs_intel [06:53, 05:54] (1891808 MB) -PASS -- TEST control_p8_atmlnd_intel [06:44, 05:47] (1896252 MB) -PASS -- TEST control_restart_p8_atmlnd_intel [03:35, 03:05] (1130496 MB) - -PASS -- COMPILE atml_debug_intel [05:09, 05:09](880 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_debug_intel [06:56, 06:00] (1926048 MB) - -PASS -- COMPILE atmw_intel [10:00, 09:59],8 remarks) -PASS -- TEST atmwav_control_noaero_p8_intel [02:28, 01:47] (1933244 MB) - -PASS -- COMPILE atmaero_intel [09:25, 09:25],1 remarks) -PASS -- TEST atmaero_control_p8_intel [04:32, 03:51] (2000772 MB) -PASS -- TEST atmaero_control_p8_rad_intel [05:20, 04:38] (1794868 MB) -PASS -- TEST atmaero_control_p8_rad_micro_intel [05:13, 04:40] (1799496 MB) - -PASS -- COMPILE atmaq_debug_intel [04:22, 04:22](882 warnings,6 remarks) -PASS -- TEST regional_atmaq_debug_intel [18:46, 17:30] (4579644 MB) - -PASS -- COMPILE atm_gnu [04:58, 04:57] -PASS -- TEST control_c48_gnu [12:10, 11:41] (1522012 MB) -PASS -- TEST control_stochy_gnu [02:44, 02:31] (719600 MB) -PASS -- TEST control_ras_gnu [04:07, 03:55] (721840 MB) -PASS -- TEST control_p8_gnu [04:59, 04:14] (1718952 MB) -PASS -- TEST control_p8_ugwpv1_gnu [04:47, 04:08] (1718420 MB) -PASS -- TEST control_flake_gnu [04:47, 04:36] (799048 MB) - -PASS -- COMPILE rrfs_gnu [04:06, 04:06] -PASS -- TEST rap_control_gnu [08:42, 08:03] (1072444 MB) -PASS -- TEST rap_decomp_gnu [08:41, 08:01] (1072968 MB) -PASS -- TEST rap_2threads_gnu [07:58, 07:22] (1113052 MB) -PASS -- TEST rap_restart_gnu [04:55, 04:07] (878704 MB) -PASS -- TEST rap_sfcdiff_gnu [09:03, 08:27] (1077724 MB) -PASS -- TEST rap_sfcdiff_decomp_gnu [09:08, 08:33] (1071920 MB) -PASS -- TEST rap_sfcdiff_restart_gnu [06:38, 06:06] (876924 MB) -PASS -- TEST hrrr_control_gnu [05:05, 04:23] (1061160 MB) -PASS -- TEST hrrr_control_noqr_gnu [04:52, 04:21] (1127308 MB) -PASS -- TEST hrrr_control_2threads_gnu [04:35, 03:54] (1013980 MB) -PASS -- TEST hrrr_control_decomp_gnu [04:52, 04:15] (1062664 MB) -PASS -- TEST hrrr_control_restart_gnu [02:43, 02:22] (877672 MB) -PASS -- TEST hrrr_control_restart_noqr_gnu [02:29, 02:10] (926992 MB) -PASS -- TEST rrfs_v1beta_gnu [08:42, 08:02] (1072884 MB) - -PASS -- COMPILE atm_dyn32_debug_gnu [05:45, 05:45] -PASS -- TEST control_diag_debug_gnu [01:49, 01:20] (1617920 MB) -PASS -- TEST regional_debug_gnu [07:15, 06:50] (1143976 MB) -PASS -- TEST rap_control_debug_gnu [02:21, 02:13] (1086324 MB) -PASS -- TEST hrrr_control_debug_gnu [02:08, 02:00] (1077604 MB) -PASS -- TEST hrrr_gf_debug_gnu [02:33, 02:18] (1083148 MB) -PASS -- TEST hrrr_c3_debug_gnu [02:30, 02:17] (1084532 MB) -PASS -- TEST rap_diag_debug_gnu [02:35, 02:19] (1258784 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [03:21, 03:13] (1083160 MB) -PASS -- TEST rap_progcld_thompson_debug_gnu [02:18, 02:07] (1085696 MB) -PASS -- TEST rrfs_v1beta_debug_gnu [02:14, 02:06] (1081336 MB) -PASS -- TEST control_ras_debug_gnu [01:29, 01:21] (715124 MB) -PASS -- TEST control_stochy_debug_gnu [01:42, 01:33] (712120 MB) -PASS -- TEST control_debug_p8_gnu [01:55, 01:25] (1693712 MB) -PASS -- TEST rap_flake_debug_gnu [02:24, 02:14] (1088464 MB) -PASS -- TEST rap_clm_lake_debug_gnu [02:21, 02:12] (1087968 MB) -PASS -- TEST gnv1_c96_no_nest_debug_gnu [04:03, 03:27] (1087860 MB) - -PASS -- COMPILE wam_debug_gnu [02:36, 02:36] -PASS -- TEST control_wam_debug_gnu [06:02, 05:37] (1554940 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_gnu [04:16, 04:16] -PASS -- TEST rap_control_dyn32_phy32_gnu [08:32, 07:55] (952204 MB) -PASS -- TEST hrrr_control_dyn32_phy32_gnu [04:57, 04:11] (943832 MB) -PASS -- TEST rap_2threads_dyn32_phy32_gnu [07:36, 06:57] (965484 MB) -PASS -- TEST hrrr_control_2threads_dyn32_phy32_gnu [04:18, 03:33] (877348 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [04:44, 04:01] (940144 MB) -PASS -- TEST rap_restart_dyn32_phy32_gnu [06:38, 05:54] (855396 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [02:35, 02:13] (853108 MB) -PASS -- TEST conus13km_control_gnu [03:08, 02:32] (1254652 MB) -PASS -- TEST conus13km_2threads_gnu [01:43, 01:16] (1165044 MB) -PASS -- TEST conus13km_restart_mismatch_gnu [02:03, 01:36] (920716 MB) - -PASS -- COMPILE atm_dyn64_phy32_gnu [08:49, 08:49] -PASS -- TEST rap_control_dyn64_phy32_gnu [05:17, 04:51] (985380 MB) - -PASS -- COMPILE atm_dyn32_phy32_debug_gnu [07:00, 06:59] -PASS -- TEST rap_control_debug_dyn32_phy32_gnu [02:20, 02:04] (973112 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [02:12, 01:58] (959660 MB) -PASS -- TEST conus13km_debug_gnu [06:04, 05:29] (1273204 MB) -PASS -- TEST conus13km_debug_qr_gnu [06:19, 05:50] (948064 MB) -PASS -- TEST conus13km_debug_2threads_gnu [03:44, 03:17] (1185476 MB) -PASS -- TEST conus13km_radar_tten_debug_gnu [05:55, 05:21] (1342552 MB) - -PASS -- COMPILE atm_dyn64_phy32_debug_gnu [08:17, 08:16] -PASS -- TEST rap_control_dyn64_phy32_debug_gnu [02:21, 02:07] (999504 MB) - -PASS -- COMPILE s2swa_gnu [19:27, 19:26] -PASS -- COMPILE s2s_gnu [18:07, 18:06] -PASS -- TEST cpld_control_nowave_noaero_p8_gnu [15:16, 14:28] (2736576 MB) - -PASS -- COMPILE s2swa_debug_gnu [06:12, 06:12] -PASS -- COMPILE s2sw_pdlib_gnu [19:39, 19:38] -PASS -- TEST cpld_control_pdlib_p8_gnu [40:40, 39:51] (3072508 MB) - -PASS -- COMPILE s2sw_pdlib_debug_gnu [03:33, 03:33] -PASS -- TEST cpld_debug_pdlib_p8_gnu [15:29, 14:42] (3026256 MB) - -PASS -- COMPILE datm_cdeps_gnu [15:02, 15:02] -PASS -- TEST datm_cdeps_control_cfsr_gnu [03:44, 03:36] (772020 MB) - -PASS -- COMPILE atm_fbh_intel [08:10, 08:10](3 warnings,8 remarks) -PASS -- TEST cpld_regional_atm_fbh_intel [15:36, 15:21] (1063208 MB) - - -SYNOPSIS: -Starting Date/Time: 2024-10-29 16:31:21 -Ending Date/Time: 2024-10-30 07:43:38 -Total Time: 15h:12m:17s -Compiles Completed: 47/57 -Tests Completed: 244/244 - - -NOTES: -A file test_changes.list was generated but is empty. -If you are using this log as a pull request verification, please commit test_changes.list. - -Result: SUCCESS - -====END OF hercules REGRESSION TESTING LOG==== - -FAIL -- COMPILE s2swa_32bit_intel -PASS -- TEST cpld_control_p8_mixedmode_intel [14:34, 13:41] (2129052 MB) - -FAIL -- COMPILE s2swa_32bit_pdlib_intel -PASS -- TEST cpld_control_gfsv17_intel [14:21, 13:30] (1992588 MB) -PASS -- TEST cpld_control_gfsv17_iau_intel [15:35, 14:21] (2270620 MB) -PASS -- TEST cpld_restart_gfsv17_intel [07:58, 06:40] (1335740 MB) -PASS -- TEST cpld_mpi_gfsv17_intel [16:05, 15:10] (1905184 MB) - -FAIL -- COMPILE s2swa_32bit_pdlib_sfs_intel -PASS -- TEST cpld_control_sfs_intel [13:49, 13:16] (1988044 MB) - -FAIL -- COMPILE s2swa_32bit_pdlib_debug_intel -PASS -- TEST cpld_debug_gfsv17_intel [08:26, 25:42] (1976080 MB) - -FAIL -- COMPILE s2swa_intel -PASS -- TEST cpld_control_p8_intel [15:59, 15:08] (2207060 MB) -PASS -- TEST cpld_control_p8.v2.sfc_intel [14:56, 14:04] (2204492 MB) -PASS -- TEST cpld_restart_p8_intel [08:38, 07:40] (1958368 MB) -PASS -- TEST cpld_control_qr_p8_intel [15:12, 14:13] (2228560 MB) -PASS -- TEST cpld_restart_qr_p8_intel [08:32, 07:36] (1733260 MB) -PASS -- TEST cpld_2threads_p8_intel [17:12, 16:31] (2567676 MB) -PASS -- TEST cpld_decomp_p8_intel [14:36, 13:49] (2199280 MB) -PASS -- TEST cpld_mpi_p8_intel [12:55, 12:01] (2094048 MB) -PASS -- TEST cpld_control_ciceC_p8_intel [15:24, 14:35] (2203152 MB) -PASS -- TEST cpld_control_c192_p8_intel [16:33, 15:03] (2964968 MB) -PASS -- TEST cpld_restart_c192_p8_intel [09:44, 07:18] (2907332 MB) -PASS -- TEST cpld_bmark_p8_intel [23:07, 17:56] (3827024 MB) -PASS -- TEST cpld_restart_bmark_p8_intel [18:41, 11:03] (3635676 MB) -PASS -- TEST cpld_s2sa_p8_intel [07:58, 07:08] (2112452 MB) - -FAIL -- COMPILE s2sw_intel -PASS -- TEST cpld_control_noaero_p8_intel [13:55, 13:12] (2011652 MB) -PASS -- TEST cpld_control_nowave_noaero_p8_intel [11:26, 10:40] (2115484 MB) - -FAIL -- COMPILE s2swa_debug_intel -PASS -- TEST cpld_debug_p8_intel [20:14, 19:28] (2233900 MB) - -FAIL -- COMPILE s2sw_debug_intel -PASS -- TEST cpld_debug_noaero_p8_intel [09:14, 08:27] (2036028 MB) - -FAIL -- COMPILE s2s_aoflux_intel -PASS -- TEST cpld_control_noaero_p8_agrid_intel [05:55, 05:05] (2064352 MB) - -FAIL -- COMPILE s2s_intel -PASS -- TEST cpld_control_c48_intel [06:47, 06:03] (3039992 MB) -PASS -- TEST cpld_warmstart_c48_intel [02:22, 01:48] (3011196 MB) -PASS -- TEST cpld_restart_c48_intel [01:27, 01:04] (2469040 MB) - -PASS -- COMPILE s2swa_faster_intel [11:59, 11:59](1 warnings,10 remarks) -PASS -- TEST cpld_control_p8_faster_intel [15:32, 14:44] (2208220 MB) - -PASS -- COMPILE s2sw_pdlib_intel [16:08, 16:08](1 warnings,10 remarks) -PASS -- TEST cpld_control_pdlib_p8_intel [23:22, 22:31] (2073144 MB) -PASS -- TEST cpld_restart_pdlib_p8_intel [12:21, 11:20] (1421848 MB) -PASS -- TEST cpld_mpi_pdlib_p8_intel [26:07, 25:21] (1995652 MB) - -PASS -- COMPILE s2sw_pdlib_debug_intel [04:39, 04:39](1523 warnings,2000 remarks) -PASS -- TEST cpld_debug_pdlib_p8_intel [28:04, 27:16] (2008368 MB) - -PASS -- COMPILE atm_dyn32_intel [09:08, 09:07](1 warnings,1 remarks) -PASS -- TEST control_flake_intel [03:14, 03:01] (712336 MB) -PASS -- TEST control_CubedSphereGrid_intel [03:23, 02:49] (1580936 MB) -PASS -- TEST control_CubedSphereGrid_parallel_intel [03:25, 02:53] (1608712 MB) -PASS -- TEST control_latlon_intel [03:19, 02:55] (1579364 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_intel [03:19, 02:49] (1592952 MB) -PASS -- TEST control_c48_intel [10:40, 10:17] (1694584 MB) -PASS -- TEST control_c48.v2.sfc_intel [06:09, 05:56] (825712 MB) -PASS -- TEST control_c192_intel [11:04, 10:22] (1773152 MB) -PASS -- TEST control_c384_intel [14:02, 12:36] (2021220 MB) -PASS -- TEST control_c384gdas_intel [09:30, 07:48] (1500712 MB) -PASS -- TEST control_stochy_intel [01:42, 01:30] (660648 MB) -PASS -- TEST control_stochy_restart_intel [01:19, 01:01] (532184 MB) -PASS -- TEST control_lndp_intel [01:39, 01:26] (667232 MB) -PASS -- TEST control_iovr4_intel [02:22, 02:09] (656052 MB) -PASS -- TEST control_iovr5_intel [02:23, 02:13] (651652 MB) -PASS -- TEST control_p8_intel [03:59, 03:13] (1889864 MB) -PASS -- TEST control_p8.v2.sfc_intel [03:33, 02:43] (1906328 MB) -PASS -- TEST control_p8_ugwpv1_intel [03:56, 03:08] (1886388 MB) -PASS -- TEST control_restart_p8_intel [02:32, 01:57] (1145972 MB) -PASS -- TEST control_noqr_p8_intel [03:51, 03:15] (1879132 MB) -PASS -- TEST control_restart_noqr_p8_intel [02:24, 01:54] (1224300 MB) -PASS -- TEST control_decomp_p8_intel [03:58, 03:17] (1861224 MB) -PASS -- TEST control_2threads_p8_intel [03:56, 03:03] (1951424 MB) -PASS -- TEST control_p8_lndp_intel [06:15, 05:44] (1876256 MB) -PASS -- TEST control_p8_rrtmgp_intel [04:27, 03:38] (1967208 MB) -PASS -- TEST control_p8_mynn_intel [03:38, 02:46] (1907120 MB) -PASS -- TEST merra2_thompson_intel [03:55, 02:56] (1896600 MB) -PASS -- TEST regional_control_intel [05:02, 04:41] (1185876 MB) -PASS -- TEST regional_restart_intel [03:00, 02:40] (1163896 MB) -PASS -- TEST regional_decomp_intel [05:19, 04:48] (1178180 MB) -PASS -- TEST regional_2threads_intel [03:28, 03:04] (1152644 MB) -PASS -- TEST regional_noquilt_intel [04:52, 04:31] (1515352 MB) -PASS -- TEST regional_netcdf_parallel_intel [05:06, 04:37] (1195488 MB) -PASS -- TEST regional_2dwrtdecomp_intel [04:56, 04:37] (1193072 MB) -PASS -- TEST regional_wofs_intel [06:24, 06:02] (2080804 MB) - -PASS -- COMPILE rrfs_intel [08:44, 08:44](3 warnings,9 remarks) -PASS -- TEST rap_control_intel [07:22, 06:41] (1184412 MB) -PASS -- TEST regional_spp_sppt_shum_skeb_intel [04:51, 04:14] (1339776 MB) -PASS -- TEST rap_decomp_intel [07:36, 06:59] (1141716 MB) -PASS -- TEST rap_2threads_intel [07:00, 06:24] (1372836 MB) -PASS -- TEST rap_restart_intel [04:21, 03:37] (1132668 MB) -PASS -- TEST rap_sfcdiff_intel [07:14, 06:38] (1207312 MB) -PASS -- TEST rap_sfcdiff_decomp_intel [07:37, 07:03] (1153228 MB) -PASS -- TEST rap_sfcdiff_restart_intel [05:51, 05:08] (1181088 MB) -PASS -- TEST hrrr_control_intel [04:07, 03:29] (1085908 MB) -PASS -- TEST hrrr_control_decomp_intel [04:19, 03:42] (1041804 MB) -PASS -- TEST hrrr_control_2threads_intel [04:02, 03:22] (1106240 MB) -PASS -- TEST hrrr_control_restart_intel [02:06, 01:56] (1019224 MB) -PASS -- TEST rrfs_v1beta_intel [07:11, 06:31] (1189780 MB) -PASS -- TEST rrfs_v1nssl_intel [08:30, 08:19] (1993276 MB) -PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [08:21, 08:10] (2163524 MB) - -PASS -- COMPILE csawmg_intel [08:07, 08:06] -PASS -- TEST control_csawmg_intel [07:37, 07:15] (1070392 MB) -PASS -- TEST control_ras_intel [03:13, 03:03] (811408 MB) - -PASS -- COMPILE csawmg_gnu [03:59, 03:59] -PASS -- TEST control_csawmg_gnu [07:56, 07:35] (1058612 MB) - -PASS -- COMPILE wam_intel [08:07, 08:07],1 remarks) -PASS -- TEST control_wam_intel [10:28, 09:57] (1653752 MB) - -PASS -- COMPILE atm_faster_dyn32_intel [09:03, 09:03],1 remarks) -PASS -- TEST control_p8_faster_intel [04:08, 03:21] (1887616 MB) -PASS -- TEST regional_control_faster_intel [06:27, 06:04] (1182304 MB) - -PASS -- COMPILE atm_debug_dyn32_intel [06:02, 06:02](882 warnings,9 remarks) -PASS -- TEST control_CubedSphereGrid_debug_intel [02:31, 02:03] (1621912 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [02:27, 01:53] (1615136 MB) -PASS -- TEST control_stochy_debug_intel [02:50, 02:36] (842456 MB) -PASS -- TEST control_lndp_debug_intel [02:32, 02:22] (845672 MB) -PASS -- TEST control_csawmg_debug_intel [04:47, 04:24] (1144636 MB) -PASS -- TEST control_ras_debug_intel [02:30, 02:23] (840964 MB) -PASS -- TEST control_diag_debug_intel [03:05, 02:34] (1691956 MB) -PASS -- TEST control_debug_p8_intel [03:41, 03:14] (1910724 MB) -PASS -- TEST regional_debug_intel [16:19, 15:54] (1143036 MB) -PASS -- TEST rap_control_debug_intel [04:26, 04:13] (1218964 MB) -PASS -- TEST hrrr_control_debug_intel [04:21, 04:06] (1219272 MB) -PASS -- TEST hrrr_gf_debug_intel [04:18, 04:07] (1233844 MB) -PASS -- TEST hrrr_c3_debug_intel [04:25, 04:10] (1226148 MB) -PASS -- TEST rap_unified_drag_suite_debug_intel [04:25, 04:09] (1223264 MB) -PASS -- TEST rap_diag_debug_intel [04:49, 04:31] (1301008 MB) -PASS -- TEST rap_cires_ugwp_debug_intel [04:35, 04:21] (1217808 MB) -PASS -- TEST rap_unified_ugwp_debug_intel [04:37, 04:24] (1236272 MB) -PASS -- TEST rap_lndp_debug_intel [04:25, 04:17] (1219468 MB) -PASS -- TEST rap_progcld_thompson_debug_intel [04:33, 04:24] (1221168 MB) -PASS -- TEST rap_noah_debug_intel [04:15, 04:04] (1230100 MB) -PASS -- TEST rap_sfcdiff_debug_intel [04:26, 04:17] (1217564 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [07:16, 07:00] (1219376 MB) -PASS -- TEST rrfs_v1beta_debug_intel [04:25, 04:10] (1217876 MB) -PASS -- TEST rap_clm_lake_debug_intel [05:19, 05:02] (1227560 MB) -PASS -- TEST rap_flake_debug_intel [04:35, 04:17] (1222728 MB) -PASS -- TEST gnv1_c96_no_nest_debug_intel [08:16, 07:31] (1233828 MB) - -PASS -- COMPILE atm_debug_dyn32_gnu [04:53, 04:53] -PASS -- TEST control_csawmg_debug_gnu [03:15, 02:55] (1039500 MB) - -PASS -- COMPILE wam_debug_intel [04:18, 04:18](837 warnings,1 remarks) - -PASS -- COMPILE rrfs_dyn32_phy32_intel [08:19, 08:18](3 warnings,8 remarks) -PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [04:47, 04:13] (1209796 MB) -PASS -- TEST rap_control_dyn32_phy32_intel [07:00, 06:20] (1158932 MB) -PASS -- TEST hrrr_control_dyn32_phy32_intel [04:11, 03:19] (1032792 MB) -PASS -- TEST rap_2threads_dyn32_phy32_intel [06:32, 05:53] (1273912 MB) -PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [08:42, 07:51] (1029316 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [04:23, 03:35] (989632 MB) -PASS -- TEST rap_restart_dyn32_phy32_intel [05:36, 04:53] (1120012 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [02:10, 01:50] (956076 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [10:34, 10:34](3 warnings,8 remarks) -PASS -- TEST conus13km_control_intel [02:18, 01:45] (1286348 MB) -PASS -- TEST conus13km_2threads_intel [01:11, 00:46] (1183640 MB) -PASS -- TEST conus13km_restart_mismatch_intel [01:36, 01:08] (1144960 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_intel [08:17, 08:17](3 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_intel [04:18, 03:52] (1067396 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [03:30, 03:29](785 warnings,8 remarks) -PASS -- TEST rap_control_debug_dyn32_phy32_intel [04:30, 04:20] (1100900 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [04:36, 04:25] (1096640 MB) -PASS -- TEST conus13km_debug_intel [12:32, 12:02] (1332032 MB) -PASS -- TEST conus13km_debug_qr_intel [12:56, 12:20] (992268 MB) -PASS -- TEST conus13km_debug_2threads_intel [07:56, 07:30] (1244488 MB) -PASS -- TEST conus13km_radar_tten_debug_intel [12:29, 11:58] (1420484 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [03:57, 03:57](785 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_debug_intel [04:54, 04:43] (1169492 MB) - -PASS -- COMPILE hafsw_intel [10:03, 10:03](1 warnings,9 remarks) -PASS -- TEST hafs_regional_atm_intel [06:44, 05:47] (853968 MB) -PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [05:54, 05:36] (1251520 MB) -PASS -- TEST hafs_regional_atm_ocn_intel [07:57, 06:48] (936692 MB) -PASS -- TEST hafs_regional_atm_wav_intel [15:12, 14:16] (962932 MB) -PASS -- TEST hafs_regional_atm_ocn_wav_intel [16:25, 15:19] (978004 MB) -PASS -- TEST hafs_regional_1nest_atm_intel [06:32, 05:44] (592264 MB) -PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [09:06, 07:55] (604044 MB) -PASS -- TEST hafs_global_1nest_atm_intel [03:21, 02:51] (432520 MB) -PASS -- TEST hafs_global_multiple_4nests_atm_intel [10:07, 08:21] (545828 MB) -PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [04:49, 04:11] (602192 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [04:44, 04:00] (605608 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [05:47, 05:02] (658084 MB) -PASS -- TEST hafs_global_storm_following_1nest_atm_intel [01:31, 01:11] (449916 MB) - -PASS -- COMPILE hafsw_debug_intel [04:30, 04:30](1465 warnings,1502 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [13:06, 12:18] (638468 MB) - -PASS -- COMPILE hafsw_faster_intel [10:30, 10:30],8 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [16:30, 15:37] (756252 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [16:12, 15:12] (837748 MB) - -PASS -- COMPILE hafs_mom6w_intel [10:16, 10:15],7 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [11:27, 10:01] (819308 MB) - -PASS -- COMPILE hafs_all_intel [09:52, 09:52],8 remarks) -PASS -- TEST hafs_regional_docn_intel [08:00, 07:07] (918244 MB) -PASS -- TEST hafs_regional_docn_oisst_intel [08:03, 07:08] (892412 MB) -PASS -- TEST hafs_regional_datm_cdeps_intel [12:38, 12:02] (1351648 MB) - -PASS -- COMPILE datm_cdeps_intel [06:37, 06:36],2 remarks) -PASS -- TEST datm_cdeps_control_cfsr_intel [02:36, 02:30] (1154124 MB) -PASS -- TEST datm_cdeps_restart_cfsr_intel [01:30, 01:24] (1107604 MB) -PASS -- TEST datm_cdeps_control_gefs_intel [02:12, 02:07] (1018128 MB) -PASS -- TEST datm_cdeps_iau_gefs_intel [02:14, 02:10] (1017836 MB) -PASS -- TEST datm_cdeps_stochy_gefs_intel [02:14, 02:10] (1017872 MB) -PASS -- TEST datm_cdeps_ciceC_cfsr_intel [02:32, 02:27] (1153992 MB) -PASS -- TEST datm_cdeps_bulk_cfsr_intel [03:06, 02:59] (1117476 MB) -PASS -- TEST datm_cdeps_bulk_gefs_intel [02:16, 02:10] (1014620 MB) -PASS -- TEST datm_cdeps_mx025_cfsr_intel [05:43, 05:02] (1155016 MB) -PASS -- TEST datm_cdeps_mx025_gefs_intel [05:42, 04:59] (1150552 MB) -PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [02:20, 02:15] (1151884 MB) -PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [03:27, 03:22] (2444872 MB) -PASS -- TEST datm_cdeps_gfs_intel [04:16, 04:10] (2434180 MB) - -PASS -- COMPILE datm_cdeps_debug_intel [03:59, 03:58](2 warnings,2 remarks) -PASS -- TEST datm_cdeps_debug_cfsr_intel [05:21, 05:16] (1077740 MB) - -PASS -- COMPILE datm_cdeps_faster_intel [06:04, 06:04],2 remarks) -PASS -- TEST datm_cdeps_control_cfsr_faster_intel [02:29, 02:24] (1161204 MB) - -PASS -- COMPILE datm_cdeps_land_intel [00:50, 00:49],1 remarks) -PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:18, 00:58] (330172 MB) -PASS -- TEST datm_cdeps_lnd_era5_intel [01:14, 00:55] (574464 MB) -PASS -- TEST datm_cdeps_lnd_era5_rst_intel [00:48, 00:34] (575864 MB) - -PASS -- COMPILE atm_ds2s_docn_pcice_intel [09:28, 09:28],3 remarks) -PASS -- TEST atm_ds2s_docn_pcice_intel [05:08, 04:26] (2009340 MB) - -PASS -- COMPILE atm_ds2s_docn_dice_intel [09:01, 09:01],1 remarks) - -PASS -- COMPILE atml_intel [09:10, 09:10](8 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_sbs_intel [06:53, 05:54] (1891808 MB) -PASS -- TEST control_p8_atmlnd_intel [06:44, 05:47] (1896252 MB) -PASS -- TEST control_restart_p8_atmlnd_intel [03:35, 03:05] (1130496 MB) - -PASS -- COMPILE atml_debug_intel [05:09, 05:09](880 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_debug_intel [06:56, 06:00] (1926048 MB) - -PASS -- COMPILE atmw_intel [10:00, 09:59],8 remarks) -PASS -- TEST atmwav_control_noaero_p8_intel [02:28, 01:47] (1933244 MB) - -PASS -- COMPILE atmaero_intel [09:25, 09:25],1 remarks) -PASS -- TEST atmaero_control_p8_intel [04:32, 03:51] (2000772 MB) -PASS -- TEST atmaero_control_p8_rad_intel [05:20, 04:38] (1794868 MB) -PASS -- TEST atmaero_control_p8_rad_micro_intel [05:13, 04:40] (1799496 MB) - -PASS -- COMPILE atmaq_debug_intel [04:22, 04:22](882 warnings,6 remarks) -PASS -- TEST regional_atmaq_debug_intel [18:46, 17:30] (4579644 MB) - -PASS -- COMPILE atm_gnu [04:58, 04:57] -PASS -- TEST control_c48_gnu [12:10, 11:41] (1522012 MB) -PASS -- TEST control_stochy_gnu [02:44, 02:31] (719600 MB) -PASS -- TEST control_ras_gnu [04:07, 03:55] (721840 MB) -PASS -- TEST control_p8_gnu [04:59, 04:14] (1718952 MB) -PASS -- TEST control_p8_ugwpv1_gnu [04:47, 04:08] (1718420 MB) -PASS -- TEST control_flake_gnu [04:47, 04:36] (799048 MB) - -PASS -- COMPILE rrfs_gnu [04:06, 04:06] -PASS -- TEST rap_control_gnu [08:42, 08:03] (1072444 MB) -PASS -- TEST rap_decomp_gnu [08:41, 08:01] (1072968 MB) -PASS -- TEST rap_2threads_gnu [07:58, 07:22] (1113052 MB) -PASS -- TEST rap_restart_gnu [04:55, 04:07] (878704 MB) -PASS -- TEST rap_sfcdiff_gnu [09:03, 08:27] (1077724 MB) -PASS -- TEST rap_sfcdiff_decomp_gnu [09:08, 08:33] (1071920 MB) -PASS -- TEST rap_sfcdiff_restart_gnu [06:38, 06:06] (876924 MB) -PASS -- TEST hrrr_control_gnu [05:05, 04:23] (1061160 MB) -PASS -- TEST hrrr_control_noqr_gnu [04:52, 04:21] (1127308 MB) -PASS -- TEST hrrr_control_2threads_gnu [04:35, 03:54] (1013980 MB) -PASS -- TEST hrrr_control_decomp_gnu [04:52, 04:15] (1062664 MB) -PASS -- TEST hrrr_control_restart_gnu [02:43, 02:22] (877672 MB) -PASS -- TEST hrrr_control_restart_noqr_gnu [02:29, 02:10] (926992 MB) -PASS -- TEST rrfs_v1beta_gnu [08:42, 08:02] (1072884 MB) - -PASS -- COMPILE atm_dyn32_debug_gnu [05:45, 05:45] -PASS -- TEST control_diag_debug_gnu [01:49, 01:20] (1617920 MB) -PASS -- TEST regional_debug_gnu [07:15, 06:50] (1143976 MB) -PASS -- TEST rap_control_debug_gnu [02:21, 02:13] (1086324 MB) -PASS -- TEST hrrr_control_debug_gnu [02:08, 02:00] (1077604 MB) -PASS -- TEST hrrr_gf_debug_gnu [02:33, 02:18] (1083148 MB) -PASS -- TEST hrrr_c3_debug_gnu [02:30, 02:17] (1084532 MB) -PASS -- TEST rap_diag_debug_gnu [02:35, 02:19] (1258784 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [03:21, 03:13] (1083160 MB) -PASS -- TEST rap_progcld_thompson_debug_gnu [02:18, 02:07] (1085696 MB) -PASS -- TEST rrfs_v1beta_debug_gnu [02:14, 02:06] (1081336 MB) -PASS -- TEST control_ras_debug_gnu [01:29, 01:21] (715124 MB) -PASS -- TEST control_stochy_debug_gnu [01:42, 01:33] (712120 MB) -PASS -- TEST control_debug_p8_gnu [01:55, 01:25] (1693712 MB) -PASS -- TEST rap_flake_debug_gnu [02:24, 02:14] (1088464 MB) -PASS -- TEST rap_clm_lake_debug_gnu [02:21, 02:12] (1087968 MB) -PASS -- TEST gnv1_c96_no_nest_debug_gnu [04:03, 03:27] (1087860 MB) - -PASS -- COMPILE wam_debug_gnu [02:36, 02:36] -PASS -- TEST control_wam_debug_gnu [06:02, 05:37] (1554940 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_gnu [04:16, 04:16] -PASS -- TEST rap_control_dyn32_phy32_gnu [08:32, 07:55] (952204 MB) -PASS -- TEST hrrr_control_dyn32_phy32_gnu [04:57, 04:11] (943832 MB) -PASS -- TEST rap_2threads_dyn32_phy32_gnu [07:36, 06:57] (965484 MB) -PASS -- TEST hrrr_control_2threads_dyn32_phy32_gnu [04:18, 03:33] (877348 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [04:44, 04:01] (940144 MB) -PASS -- TEST rap_restart_dyn32_phy32_gnu [06:38, 05:54] (855396 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [02:35, 02:13] (853108 MB) -PASS -- TEST conus13km_control_gnu [03:08, 02:32] (1254652 MB) -PASS -- TEST conus13km_2threads_gnu [01:43, 01:16] (1165044 MB) -PASS -- TEST conus13km_restart_mismatch_gnu [02:03, 01:36] (920716 MB) - -PASS -- COMPILE atm_dyn64_phy32_gnu [08:49, 08:49] -PASS -- TEST rap_control_dyn64_phy32_gnu [05:17, 04:51] (985380 MB) - -PASS -- COMPILE atm_dyn32_phy32_debug_gnu [07:00, 06:59] -PASS -- TEST rap_control_debug_dyn32_phy32_gnu [02:20, 02:04] (973112 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [02:12, 01:58] (959660 MB) -PASS -- TEST conus13km_debug_gnu [06:04, 05:29] (1273204 MB) -PASS -- TEST conus13km_debug_qr_gnu [06:19, 05:50] (948064 MB) -PASS -- TEST conus13km_debug_2threads_gnu [03:44, 03:17] (1185476 MB) -PASS -- TEST conus13km_radar_tten_debug_gnu [05:55, 05:21] (1342552 MB) - -PASS -- COMPILE atm_dyn64_phy32_debug_gnu [08:17, 08:16] -PASS -- TEST rap_control_dyn64_phy32_debug_gnu [02:21, 02:07] (999504 MB) - -PASS -- COMPILE s2swa_gnu [19:27, 19:26] -PASS -- COMPILE s2s_gnu [18:07, 18:06] -PASS -- TEST cpld_control_nowave_noaero_p8_gnu [15:16, 14:28] (2736576 MB) - -PASS -- COMPILE s2swa_debug_gnu [06:12, 06:12] -PASS -- COMPILE s2sw_pdlib_gnu [19:39, 19:38] -PASS -- TEST cpld_control_pdlib_p8_gnu [40:40, 39:51] (3072508 MB) - -PASS -- COMPILE s2sw_pdlib_debug_gnu [03:33, 03:33] -PASS -- TEST cpld_debug_pdlib_p8_gnu [15:29, 14:42] (3026256 MB) - -PASS -- COMPILE datm_cdeps_gnu [15:02, 15:02] -PASS -- TEST datm_cdeps_control_cfsr_gnu [03:44, 03:36] (772020 MB) - -PASS -- COMPILE atm_fbh_intel [08:10, 08:10](3 warnings,8 remarks) -PASS -- TEST cpld_regional_atm_fbh_intel [15:36, 15:21] (1063208 MB) - - -SYNOPSIS: -Starting Date/Time: 2024-10-29 16:31:21 -Ending Date/Time: 2024-10-30 07:43:38 -Total Time: 15h:12m:17s -Compiles Completed: 48/58 -Tests Completed: 244/245 - -UFSWM hash used in testing: -454eb51f3a0d590b77b8aefd9e8fa6755534b32e - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) - 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) - 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 99091f9742670bdebd84bd13f17b9115457d64dd FV3 (heads/develop) + 99091f9742670bdebd84bd13f17b9115457d64dd FV3 (heads/develop-13-g99091f9) 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) f3eeb3442775b7239d98e3d09acc6d4f1d42233e FV3/ccpp/physics (EP4-889-gf3eeb344) @@ -821,25 +38,380 @@ 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-20241028 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_596774 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20241031 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_524998 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-r) - USE ROCOTO -PASS -- COMPILE 's2sw_intel' [11:33, 11:33] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:20, 10:30](2107 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [09:56, 09:52] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:50, 07:10](2032 MB) +PASS -- COMPILE 's2swa_32bit_intel' [16:57, 16:57] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:24, 13:38](2139 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:34, 24:34] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [14:28, 13:38](1983 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:36, 14:40](2286 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:51, 07:50](1344 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:00, 15:06](1902 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:45, 24:45] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [13:30, 13:01](1989 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 08:11] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:01, 25:09](1976 MB) + +PASS -- COMPILE 's2swa_intel' [17:03, 17:03] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [14:51, 13:57](2207 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:03, 14:07](2204 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:46, 08:00](1983 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:17, 14:19](2222 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:18, 09:21](1730 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [17:29, 16:38](2553 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:59, 14:16](2201 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:01, 12:15](2093 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:21, 14:31](2208 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [16:56, 15:30](2971 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [07:43, 05:57](2920 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [28:02, 21:56](3818 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:54, 09:34](3639 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:42, 07:03](2107 MB) + +PASS -- COMPILE 's2sw_intel' [10:38, 10:38] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:20, 14:39](2012 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:48, 11:01](2100 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:34, 05:34] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [20:34, 19:28](2229 MB) + +PASS -- COMPILE 's2sw_debug_intel' [04:53, 04:53] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:59, 08:22](2036 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [09:43, 09:43] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:59, 04:05](2057 MB) + +PASS -- COMPILE 's2s_intel' [09:40, 09:40] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [06:25, 05:56](3038 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:07, 03:24](3023 MB) +PASS -- TEST 'cpld_restart_c48_intel' [01:39, 01:22](2472 MB) + +PASS -- COMPILE 's2swa_faster_intel' [12:12, 12:12] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [14:29, 13:34](2210 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:59, 18:58] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:36, 22:51](2075 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:28, 11:24](1412 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:37, 25:49](1994 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:02, 06:02] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:14, 26:31](2007 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:03, 12:03] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:04, 02:50](723 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:03, 02:41](1588 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:13, 02:47](1601 MB) +PASS -- TEST 'control_latlon_intel' [02:59, 02:43](1603 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:11, 02:42](1595 MB) +PASS -- TEST 'control_c48_intel' [18:34, 18:07](1706 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:37, 10:17](825 MB) +PASS -- TEST 'control_c192_intel' [10:55, 10:23](1779 MB) +PASS -- TEST 'control_c384_intel' [16:17, 15:10](2011 MB) +PASS -- TEST 'control_c384gdas_intel' [10:35, 08:56](1500 MB) +PASS -- TEST 'control_stochy_intel' [01:40, 01:28](666 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:12, 00:57](534 MB) +PASS -- TEST 'control_lndp_intel' [02:53, 02:02](675 MB) +PASS -- TEST 'control_iovr4_intel' [02:57, 02:20](650 MB) +PASS -- TEST 'control_iovr5_intel' [02:29, 02:14](666 MB) +PASS -- TEST 'control_p8_intel' [04:29, 03:49](1885 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:31, 02:43](1911 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:32, 03:43](1883 MB) +PASS -- TEST 'control_restart_p8_intel' [03:08, 02:27](1156 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:33, 03:46](1870 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:23, 01:47](1192 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:55, 03:18](1865 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:45, 03:05](1960 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:19, 07:49](1876 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:09, 04:21](1963 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:22, 03:27](1890 MB) +PASS -- TEST 'merra2_thompson_intel' [04:35, 03:38](1891 MB) +PASS -- TEST 'regional_control_intel' [06:14, 05:48](1187 MB) +PASS -- TEST 'regional_restart_intel' [02:51, 02:37](1159 MB) +PASS -- TEST 'regional_decomp_intel' [05:46, 05:23](1179 MB) +PASS -- TEST 'regional_2threads_intel' [04:05, 03:32](1150 MB) +PASS -- TEST 'regional_noquilt_intel' [04:53, 04:29](1513 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:02, 04:36](1189 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:05, 04:41](1194 MB) +PASS -- TEST 'regional_wofs_intel' [09:16, 08:48](2086 MB) + +PASS -- COMPILE 'rrfs_intel' [12:06, 12:06] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:22, 06:39](1202 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:48, 04:10](1409 MB) +PASS -- TEST 'rap_decomp_intel' [07:36, 06:59](1145 MB) +PASS -- TEST 'rap_2threads_intel' [07:04, 06:20](1361 MB) +PASS -- TEST 'rap_restart_intel' [04:06, 03:34](1111 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:26, 06:42](1219 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:44, 07:03](1135 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:08, 06:24](1180 MB) +PASS -- TEST 'hrrr_control_intel' [04:08, 03:29](1075 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:11, 03:34](1041 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [09:09, 08:24](1107 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:12, 01:56](1031 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:22, 06:35](1194 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:38, 08:23](1997 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:15, 08:00](2163 MB) + +PASS -- COMPILE 'csawmg_intel' [11:43, 11:43] +PASS -- TEST 'control_csawmg_intel' [06:39, 06:14](1044 MB) +PASS -- TEST 'control_ras_intel' [03:05, 02:58](802 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:08, 04:08] +PASS -- TEST 'control_csawmg_gnu' [07:54, 07:33](1058 MB) + +PASS -- COMPILE 'wam_intel' [11:25, 11:25] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [10:26, 09:49](1661 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:38, 13:37] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:20, 03:30](1898 MB) +PASS -- TEST 'regional_control_faster_intel' [06:16, 05:52](1195 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:32, 09:31] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:30, 02:00](1628 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:34, 01:57](1616 MB) +PASS -- TEST 'control_stochy_debug_intel' [02:50, 02:35](836 MB) +PASS -- TEST 'control_lndp_debug_intel' [02:39, 02:27](833 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:07, 04:40](1147 MB) +PASS -- TEST 'control_ras_debug_intel' [02:37, 02:25](848 MB) +PASS -- TEST 'control_diag_debug_intel' [03:09, 02:34](1686 MB) +PASS -- TEST 'control_debug_p8_intel' [03:40, 03:03](1915 MB) +PASS -- TEST 'regional_debug_intel' [15:56, 15:26](1169 MB) +PASS -- TEST 'rap_control_debug_intel' [04:23, 04:08](1224 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:20, 04:05](1215 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:18, 04:08](1223 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:37, 04:18](1226 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:22, 04:13](1218 MB) +PASS -- TEST 'rap_diag_debug_intel' [04:52, 04:30](1310 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:34, 04:24](1220 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:50, 04:34](1229 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:32, 04:18](1228 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:30, 04:16](1224 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:26, 04:12](1228 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:30, 04:16](1222 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:13, 07:01](1217 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:16, 04:05](1217 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:06, 04:57](1228 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:35, 04:19](1227 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:47, 07:02](1227 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:39, 04:39] +PASS -- TEST 'control_csawmg_debug_gnu' [03:37, 03:18](1038 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:33, 04:33] ( 837 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:27, 09:26] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:40, 04:02](1208 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:55, 06:17](1152 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:57, 03:10](1027 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:36, 05:59](1273 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:14, 08:08](1031 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:11, 03:29](979 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:31, 04:50](1112 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:10, 01:51](950 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:24, 09:24] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:21, 01:46](1280 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:17, 00:50](1181 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:38, 01:06](1140 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:01, 09:01] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:16, 03:51](1069 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:43, 04:42] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:14, 04:59](1106 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:26, 04:11](1093 MB) +PASS -- TEST 'conus13km_debug_intel' [12:32, 11:58](1334 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [12:25, 11:59](992 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [07:57, 07:28](1252 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:15, 11:47](1414 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:57, 03:57] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:49, 04:36](1153 MB) + +PASS -- COMPILE 'hafsw_intel' [10:40, 10:40] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:42, 05:44](857 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:47, 05:28](1264 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:45, 06:43](928 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:32, 14:35](956 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:26, 15:17](972 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:26, 06:48](596 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:35, 07:24](607 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:53, 03:23](433 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:45, 08:08](551 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:39, 04:07](605 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:23, 04:25](609 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:42, 04:57](657 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:30, 01:13](452 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:01, 07:01] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:38, 11:55](632 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:39, 17:39] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:51, 15:12](731 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:41, 16:49](827 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:44, 13:43] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:05, 10:39](813 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:19, 13:18] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:41, 08:49](920 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:08, 07:12](897 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:19, 16:43](1341 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:52, 06:52] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:10, 03:03](1151 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:51, 01:46](1096 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:57, 02:51](1017 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:58, 02:50](1023 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:56, 02:52](1018 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:59, 02:54](1142 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:22, 03:17](1147 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:11, 04:06](1023 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:52, 05:11](1170 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:46, 05:06](1149 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:24, 03:21](1141 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:11, 03:04](2451 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:13, 03:08](2395 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:40, 03:40] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:22, 09:16](1069 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:03, 06:03] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:15, 03:08](1153 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [00:49, 00:49] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:15, 00:57](331 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:09, 00:56](572 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:58, 00:37](568 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:26, 16:25] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:30, 03:52](2028 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:57, 08:57] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:28, 07:50](2032 MB) + +PASS -- COMPILE 'atml_intel' [16:13, 16:13] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:26, 06:23](1882 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:32, 06:31](1893 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:45, 03:47](1152 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:38, 07:38] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:55, 05:04](1932 MB) + +PASS -- COMPILE 'atmw_intel' [10:02, 10:01] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:20, 01:40](1938 MB) + +PASS -- COMPILE 'atmaero_intel' [09:37, 09:37] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:46, 03:58](2007 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:31, 05:47](1785 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:53, 08:55](1804 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [03:54, 03:54] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [19:17, 17:54](4538 MB) + +PASS -- COMPILE 'atm_gnu' [04:12, 04:12] +PASS -- TEST 'control_c48_gnu' [21:28, 20:42](1521 MB) +PASS -- TEST 'control_stochy_gnu' [02:33, 02:22](719 MB) +PASS -- TEST 'control_ras_gnu' [04:08, 03:57](721 MB) +PASS -- TEST 'control_p8_gnu' [04:59, 04:17](1722 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:43, 04:06](1700 MB) +PASS -- TEST 'control_flake_gnu' [04:51, 04:39](811 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:35, 04:35] +PASS -- TEST 'rap_control_gnu' [09:04, 08:22](1072 MB) +PASS -- TEST 'rap_decomp_gnu' [11:32, 10:53](1071 MB) +PASS -- TEST 'rap_2threads_gnu' [08:04, 07:28](1110 MB) +PASS -- TEST 'rap_restart_gnu' [04:44, 04:10](878 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:49, 11:11](1071 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:03, 08:23](1071 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:07, 08:25](877 MB) +PASS -- TEST 'hrrr_control_gnu' [05:10, 04:23](1059 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:12, 04:31](1127 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:37, 03:55](1018 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [04:42, 04:19](1058 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [05:03, 04:29](898 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:14, 02:50](923 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [08:37, 07:49](1074 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [05:53, 05:53] +PASS -- TEST 'control_diag_debug_gnu' [02:04, 01:37](1620 MB) +PASS -- TEST 'regional_debug_gnu' [07:19, 06:56](1100 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:25, 02:13](1094 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:18, 02:08](1084 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:58, 02:45](1088 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:30, 02:19](1094 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:22, 03:04](1263 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:26, 03:11](1089 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:37, 02:23](1093 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:20, 02:10](1085 MB) +PASS -- TEST 'control_ras_debug_gnu' [01:25, 01:16](722 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:06, 01:56](724 MB) +PASS -- TEST 'control_debug_p8_gnu' [01:51, 01:24](1699 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:31, 02:19](1091 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [02:39, 02:27](1096 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:20, 04:44](1093 MB) + +PASS -- COMPILE 'wam_debug_gnu' [06:52, 06:52] +PASS -- TEST 'control_wam_debug_gnu' [07:57, 07:29](1549 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [09:09, 09:09] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:22, 07:44](952 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:49, 03:58](942 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:24, 06:51](963 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:39, 03:50](889 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:09, 05:24](939 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:49, 06:01](857 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:16, 02:54](853 MB) +PASS -- TEST 'conus13km_control_gnu' [03:20, 02:43](1257 MB) +PASS -- TEST 'conus13km_2threads_gnu' [01:45, 01:10](1164 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:10, 01:37](923 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [16:49, 16:48] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:18, 04:58](980 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [12:13, 12:12] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:16, 02:04](969 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:17, 02:04](958 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:28, 06:57](1271 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [06:27, 05:52](961 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [03:43, 03:17](1181 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [05:54, 05:23](1337 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [14:07, 14:06] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:23, 02:10](995 MB) + +PASS -- COMPILE 's2swa_gnu' [22:19, 22:19] + +PASS -- COMPILE 's2s_gnu' [28:44, 28:42] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [16:54, 16:01](2708 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [06:42, 06:42] + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:00, 18:00] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [41:10, 40:23](3040 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:26, 04:25] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:29, 14:43](2914 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [17:07, 17:07] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:45, 05:39](758 MB) + +PASS -- COMPILE 'atm_fbh_intel' [08:51, 08:50] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [28:26, 28:04](1082 MB) SYNOPSIS: -Starting Date/Time: 20241030 07:46:02 -Ending Date/Time: 20241030 08:18:31 -Total Time: 00h:32m:30s -Compiles Completed: 2/2 -Tests Completed: 2/2 +Starting Date/Time: 20241101 08:16:24 +Ending Date/Time: 20241101 13:19:00 +Total Time: 05h:03m:08s +Compiles Completed: 58/58 +Tests Completed: 245/245 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index fee89b261d..e8f117b264 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -20191d85286242c7e38a3ddada32e7c03e4452f5 +50c915d559ecbbc39d288ac9da24860f225597f1 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 99091f9742670bdebd84bd13f17b9115457d64dd FV3 (heads/develop) + 99091f9742670bdebd84bd13f17b9115457d64dd FV3 (heads/develop-13-g99091f9) 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) f3eeb3442775b7239d98e3d09acc6d4f1d42233e FV3/ccpp/physics (EP4-889-gf3eeb344) @@ -38,263 +38,261 @@ 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-20241028 -COMPARISON DIRECTORY: /lfs5/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_2497585 +BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20241031 +COMPARISON DIRECTORY: /lfs5/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_3078376 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: h-nems +* (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [57:21, 43:22] ( 1 warnings 1380 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:12, 13:23](2015 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [08:26, 53:51] ( 1 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [23:04, 20:43](1890 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:14, 21:47](2002 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [14:09, 09:53](1138 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:03, 23:48](1844 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [03:24, 48:55] ( 1 warnings 1424 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [21:49, 20:11](1880 MB) - -PASS -- COMPILE 's2swa_intel' [58:21, 43:49] ( 1 warnings 1399 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [20:09, 16:49](2073 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:25, 16:44](2069 MB) -PASS -- TEST 'cpld_restart_p8_intel' [14:18, 08:55](1715 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [20:10, 16:55](2084 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [15:17, 09:03](1745 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [19:08, 16:00](2321 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [20:04, 17:01](2067 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [17:15, 13:58](2013 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [20:22, 16:48](2071 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:14, 09:25](2033 MB) - -PASS -- COMPILE 's2sw_intel' [55:21, 41:22] ( 1 warnings 1284 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:24, 09:28](1915 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [20:37, 14:20](1962 MB) - -PASS -- COMPILE 's2swa_debug_intel' [12:12, 06:22] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [30:20, 27:35](2098 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:12, 06:08] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [14:02, 11:19](1926 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [40:23, 37:19] ( 1010 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:20, 05:28](1962 MB) - -PASS -- COMPILE 's2s_intel' [40:22, 38:27] ( 1 warnings 1033 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [12:50, 10:17](3016 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:47, 03:02](3004 MB) -PASS -- TEST 'cpld_restart_c48_intel' [07:49, 01:45](2462 MB) - -PASS -- COMPILE 's2swa_faster_intel' [35:34, 32:48] ( 1 warnings 1615 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [18:25, 15:59](2061 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [50:20, 48:23] ( 1 warnings 1344 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [36:09, 33:41](1927 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [20:17, 16:54](1141 MB) +PASS -- COMPILE 's2swa_32bit_intel' [45:20, 43:27] ( 1 warnings 1380 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:17, 13:08](2024 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [51:21, 49:48] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [32:05, 20:49](1892 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:17, 22:14](1995 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:03, 09:58](1123 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [34:01, 23:48](1854 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [50:21, 49:14] ( 1 warnings 1424 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [29:51, 20:12](1884 MB) + +PASS -- COMPILE 's2swa_intel' [45:20, 43:21] ( 1 warnings 1399 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [19:16, 16:34](2070 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [24:22, 16:34](2066 MB) +PASS -- TEST 'cpld_restart_p8_intel' [13:18, 08:55](1724 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [19:17, 16:42](2082 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [13:18, 09:00](1742 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [18:10, 15:52](2326 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [24:13, 16:48](2055 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [16:22, 13:48](2009 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [23:28, 16:37](2072 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [18:13, 09:07](2018 MB) + +PASS -- COMPILE 's2sw_intel' [43:19, 41:36] ( 1 warnings 1284 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [12:10, 09:18](1908 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:23, 14:10](1977 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:20] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [39:23, 27:34](2095 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:10, 05:54] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [22:05, 11:22](1939 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [39:15, 37:26] ( 1010 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:18, 05:34](1970 MB) + +PASS -- COMPILE 's2s_intel' [44:17, 38:30] ( 1 warnings 1033 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [12:52, 10:18](3012 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:51, 03:02](3011 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:46, 01:45](2462 MB) + +PASS -- COMPILE 's2swa_faster_intel' [44:26, 33:15] ( 1 warnings 1615 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [25:24, 16:00](2057 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [59:19, 47:45] ( 1 warnings 1344 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [36:34, 33:48](1918 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [19:19, 16:52](1126 MB) FAILED: TEST TIMED OUT -- TEST 'cpld_mpi_pdlib_p8_intel' [, ]( MB) -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:48] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [47:24, 38:59](1928 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [46:24, 38:23] ( 1 warnings 1116 remarks ) -PASS -- TEST 'control_flake_intel' [06:30, 04:21](646 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [07:03, 04:22](1535 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:05, 04:38](1549 MB) -PASS -- TEST 'control_latlon_intel' [07:01, 04:24](1539 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:09, 04:30](1530 MB) -PASS -- TEST 'control_c48_intel' [21:10, 18:20](1698 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:37, 10:12](828 MB) -PASS -- TEST 'control_c192_intel' [19:19, 15:59](1693 MB) -PASS -- TEST 'control_c384_intel' [26:15, 22:57](1813 MB) -PASS -- TEST 'control_c384gdas_intel' [17:59, 13:15](991 MB) -PASS -- TEST 'control_stochy_intel' [04:29, 02:09](599 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:27, 01:14](438 MB) -PASS -- TEST 'control_lndp_intel' [04:29, 02:02](609 MB) -PASS -- TEST 'control_iovr4_intel' [05:31, 03:16](602 MB) -PASS -- TEST 'control_iovr5_intel' [05:31, 03:17](609 MB) -PASS -- TEST 'control_p8_intel' [07:22, 04:57](1824 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:28, 04:09](1844 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:11, 04:54](1834 MB) -PASS -- TEST 'control_restart_p8_intel' [04:51, 02:37](1046 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:16, 04:51](1820 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:55, 02:33](1073 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:14, 05:05](1817 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:12, 04:43](1907 MB) -PASS -- TEST 'control_p8_lndp_intel' [11:08, 08:46](1826 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:16, 05:24](1901 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:20, 04:00](1845 MB) -PASS -- TEST 'merra2_thompson_intel' [07:11, 04:20](1849 MB) -PASS -- TEST 'regional_control_intel' [09:58, 07:11](1004 MB) -PASS -- TEST 'regional_restart_intel' [05:36, 03:47](1004 MB) -PASS -- TEST 'regional_decomp_intel' [09:58, 07:36](1006 MB) -PASS -- TEST 'regional_2threads_intel' [06:58, 04:33](1007 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [10:07, 07:10](1004 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:36, 07:03](1007 MB) - -PASS -- COMPILE 'rrfs_intel' [36:16, 34:55] ( 3 warnings 1092 remarks ) -PASS -- TEST 'rap_control_intel' [12:41, 10:10](986 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:09, 05:30](1161 MB) -PASS -- TEST 'rap_decomp_intel' [12:41, 10:39](981 MB) -PASS -- TEST 'rap_2threads_intel' [11:49, 09:42](1074 MB) -PASS -- TEST 'rap_restart_intel' [08:45, 05:18](985 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:45, 10:09](991 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:45, 10:47](980 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:47, 07:38](987 MB) -PASS -- TEST 'hrrr_control_intel' [07:44, 05:13](983 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:44, 05:26](975 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:51, 04:49](1044 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:28, 02:43](916 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:00, 10:03](981 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [15:34, 13:24](1941 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:33, 13:04](1929 MB) - -PASS -- COMPILE 'csawmg_intel' [36:16, 35:06] ( 1091 remarks ) -PASS -- TEST 'control_csawmg_intel' [09:39, 08:03](967 MB) -PASS -- TEST 'control_ras_intel' [06:23, 04:19](668 MB) - -PASS -- COMPILE 'wam_intel' [37:15, 35:50] ( 994 remarks ) -PASS -- TEST 'control_wam_intel' [17:44, 14:16](1611 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [39:15, 37:38] ( 1294 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:59, 03:36](1840 MB) -PASS -- TEST 'regional_control_faster_intel' [09:46, 06:29](998 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 08:35] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:47, 02:46](1567 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:49, 02:57](1563 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:26, 03:53](776 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:26, 03:31](777 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:42, 05:30](1088 MB) -PASS -- TEST 'control_ras_debug_intel' [05:26, 03:32](783 MB) -PASS -- TEST 'control_diag_debug_intel' [05:48, 03:23](1629 MB) -PASS -- TEST 'control_debug_p8_intel' [05:48, 03:18](1860 MB) -PASS -- TEST 'regional_debug_intel' [23:44, 22:01](1024 MB) -PASS -- TEST 'rap_control_debug_intel' [08:29, 06:17](1162 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:28, 06:07](1164 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:28, 06:13](1161 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:28, 06:15](1166 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:29, 06:16](1162 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:39, 06:33](1247 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:28, 06:23](1164 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:28, 06:22](1160 MB) -PASS -- TEST 'rap_lndp_debug_intel' [11:27, 06:16](1167 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:29, 06:12](1165 MB) -PASS -- TEST 'rap_noah_debug_intel' [10:26, 06:04](1167 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [10:25, 06:11](1164 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:25, 10:04](1165 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [09:26, 06:08](1158 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [10:29, 07:24](1173 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:27, 06:07](1164 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:46, 10:38](1168 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:11, 05:02] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [19:53, 16:31](1642 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:13, 30:37] ( 3 warnings 1026 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [14:05, 05:14](1046 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [16:38, 08:11](900 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [13:36, 04:24](864 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [16:38, 07:56](945 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [12:41, 04:04](899 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [13:36, 04:41](856 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:41, 06:09](894 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:27, 02:19](842 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [37:13, 32:05] ( 3 warnings 1199 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:48, 02:47](1097 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:40, 01:12](1044 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:39, 01:31](1014 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [33:14, 31:34] ( 3 warnings 1046 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:50, 05:25](902 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:12, 05:16] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:26, 06:03](1034 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:30, 05:57](1035 MB) -PASS -- TEST 'conus13km_debug_intel' [19:57, 17:39](1152 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:54, 17:52](864 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:50, 10:17](1097 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:50, 17:45](1221 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:11, 05:06] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:24, 06:08](1080 MB) - -PASS -- COMPILE 'hafsw_intel' [42:16, 40:48] ( 1 warnings 1418 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:13, 06:55](699 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:30, 06:18](1061 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:30, 09:11](754 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:22, 16:06](770 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:37, 17:40](805 MB) -PASS -- TEST 'gnv1_nested_intel' [09:42, 06:15](1669 MB) - -PASS -- COMPILE 'hafs_all_intel' [38:16, 36:20] ( 1265 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:25, 08:35](755 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:28, 08:36](738 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [17:12, 08:20] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:23, 03:36](1090 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:22, 02:09](1041 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:24, 03:30](934 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:24, 03:34](931 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:24, 03:34](937 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:23, 03:35](1062 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:22, 03:36](1071 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:22, 03:30](936 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:13, 07:38](906 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:14, 07:37](851 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:20, 03:37](1059 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:23, 05:01](2432 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:23, 05:06](2422 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 03:33] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:21, 08:08](1017 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:13, 08:09] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [06:23, 03:32](1072 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:11, 01:41] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:32, 01:18](237 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:26, 01:09](261 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:29, 00:40](262 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [39:14, 36:55] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:07, 04:49](1907 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [38:17, 36:16] ( 1 warnings 1020 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'atm_ds2s_docn_dice_intel' [, ]( MB) - -PASS -- COMPILE 'atml_intel' [40:15, 38:00] ( 8 warnings 1157 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [17:19, 05:45](1855 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [17:20, 05:41](1857 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:44, 03:15](1063 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:11, 06:18] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:13, 07:17](1884 MB) - -PASS -- COMPILE 'atmw_intel' [39:15, 37:44] ( 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:56, 02:18](1853 MB) - -PASS -- COMPILE 'atmaero_intel' [38:19, 36:18] ( 1098 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:58, 05:14](1926 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:00, 06:18](1709 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:52, 06:28](1726 MB) - -PASS -- COMPILE 'atm_fbh_intel' [33:18, 31:23] ( 3 warnings 996 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [50:42, 15:14](1021 MB) +PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:14, 06:00] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [43:20, 38:54](1927 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [42:18, 37:54] ( 1 warnings 1116 remarks ) +PASS -- TEST 'control_flake_intel' [06:29, 04:21](652 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [07:03, 04:25](1544 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:05, 04:40](1544 MB) +PASS -- TEST 'control_latlon_intel' [07:01, 04:23](1542 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:10, 04:31](1545 MB) +PASS -- TEST 'control_c48_intel' [21:12, 18:16](1702 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [12:34, 10:15](829 MB) +PASS -- TEST 'control_c192_intel' [18:20, 16:00](1695 MB) +PASS -- TEST 'control_c384_intel' [26:19, 23:02](1814 MB) +PASS -- TEST 'control_c384gdas_intel' [17:59, 13:17](1006 MB) +PASS -- TEST 'control_stochy_intel' [04:28, 02:09](599 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:26, 01:15](439 MB) +PASS -- TEST 'control_lndp_intel' [03:29, 02:03](602 MB) +PASS -- TEST 'control_iovr4_intel' [05:32, 03:16](601 MB) +PASS -- TEST 'control_iovr5_intel' [05:32, 03:16](600 MB) +PASS -- TEST 'control_p8_intel' [07:20, 04:57](1835 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:24, 04:15](1801 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:10, 04:51](1820 MB) +PASS -- TEST 'control_restart_p8_intel' [04:51, 02:36](1047 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:17, 04:51](1828 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:54, 02:34](1077 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:14, 04:58](1816 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:13, 04:45](1914 MB) +PASS -- TEST 'control_p8_lndp_intel' [11:08, 08:48](1833 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:18, 05:23](1897 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:16, 04:14](1845 MB) +PASS -- TEST 'merra2_thompson_intel' [07:10, 04:34](1849 MB) +PASS -- TEST 'regional_control_intel' [08:59, 06:59](999 MB) +PASS -- TEST 'regional_restart_intel' [05:40, 03:49](1011 MB) +PASS -- TEST 'regional_decomp_intel' [09:59, 07:21](1007 MB) +PASS -- TEST 'regional_2threads_intel' [06:59, 04:16](996 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:05, 07:03](1004 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:35, 07:11](1005 MB) + +PASS -- COMPILE 'rrfs_intel' [36:14, 34:59] ( 3 warnings 1092 remarks ) +PASS -- TEST 'rap_control_intel' [12:44, 10:11](987 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:15, 05:30](1174 MB) +PASS -- TEST 'rap_decomp_intel' [12:44, 10:41](985 MB) +PASS -- TEST 'rap_2threads_intel' [11:45, 09:43](1066 MB) +PASS -- TEST 'rap_restart_intel' [07:45, 05:15](978 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:45, 10:06](986 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:45, 10:46](981 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:45, 07:35](996 MB) +PASS -- TEST 'hrrr_control_intel' [07:42, 05:14](986 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:42, 05:25](975 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:47, 04:48](1045 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:26, 02:43](914 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:57, 10:04](983 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [15:32, 13:17](1933 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:32, 12:46](1932 MB) + +PASS -- COMPILE 'csawmg_intel' [37:14, 35:11] ( 1091 remarks ) +PASS -- TEST 'control_csawmg_intel' [09:34, 08:07](963 MB) +PASS -- TEST 'control_ras_intel' [06:20, 04:22](671 MB) + +PASS -- COMPILE 'wam_intel' [37:14, 35:40] ( 994 remarks ) +PASS -- TEST 'control_wam_intel' [16:49, 14:17](1618 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [39:18, 37:30] ( 1294 remarks ) +PASS -- TEST 'control_p8_faster_intel' [09:51, 03:35](1836 MB) +PASS -- TEST 'regional_control_faster_intel' [08:38, 06:34](1006 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:13, 08:11] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:48, 02:43](1568 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:54, 02:41](1566 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:27, 03:47](773 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:27, 03:23](776 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:44, 05:27](1084 MB) +PASS -- TEST 'control_ras_debug_intel' [05:27, 03:25](781 MB) +PASS -- TEST 'control_diag_debug_intel' [05:49, 03:21](1636 MB) +PASS -- TEST 'control_debug_p8_intel' [05:48, 03:20](1859 MB) +PASS -- TEST 'regional_debug_intel' [23:47, 22:01](1044 MB) +PASS -- TEST 'rap_control_debug_intel' [08:29, 06:16](1160 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:29, 06:06](1159 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:29, 06:10](1159 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:28, 06:14](1166 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:29, 06:13](1162 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:39, 06:30](1244 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:29, 06:18](1164 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:29, 06:20](1158 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:29, 06:16](1163 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:26, 06:09](1163 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:25, 06:02](1155 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:25, 06:05](1166 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:26, 09:59](1159 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:26, 06:07](1157 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:30, 07:19](1168 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:26, 06:07](1165 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:47, 10:41](1165 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 05:03] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:54, 16:32](1648 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:15, 30:44] ( 3 warnings 1026 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:01, 05:06](1037 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [14:41, 08:13](900 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:41, 04:20](875 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [18:44, 07:51](943 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:35, 03:58](906 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [12:39, 04:37](857 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:42, 06:16](895 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:27, 02:19](837 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [33:18, 32:01] ( 3 warnings 1199 remarks ) +PASS -- TEST 'conus13km_control_intel' [07:59, 02:39](1094 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:40, 01:14](1041 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:40, 01:29](1008 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [33:15, 31:26] ( 3 warnings 1046 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:50, 05:26](904 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:11, 05:14] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [15:27, 06:00](1039 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [15:28, 05:51](1041 MB) +PASS -- TEST 'conus13km_debug_intel' [28:02, 17:37](1150 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [28:02, 17:43](842 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [16:54, 10:20](1087 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [27:55, 17:45](1218 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:11, 05:08] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [16:26, 06:09](1086 MB) + +PASS -- COMPILE 'hafsw_intel' [44:19, 40:49] ( 1 warnings 1418 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [12:19, 07:17](702 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [12:31, 06:12](1063 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [21:41, 09:05](757 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [28:28, 16:13](786 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [29:50, 18:07](807 MB) +PASS -- TEST 'gnv1_nested_intel' [19:18, 06:17](1675 MB) + +PASS -- COMPILE 'hafs_all_intel' [39:16, 36:24] ( 1265 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [17:35, 08:28](753 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [18:36, 08:48](738 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [12:13, 07:05] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:24, 03:31](1082 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:22, 02:09](1038 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:24, 03:27](939 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:22, 03:41](931 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:24, 03:33](937 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:24, 03:34](1071 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:24, 03:35](1071 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:24, 03:27](928 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:17, 07:40](901 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:15, 07:31](849 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:21, 03:34](1075 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:24, 05:01](2379 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:24, 05:11](2409 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:12, 03:20] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [11:22, 08:10](1025 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:12, 08:14] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:20, 03:32](1073 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:12, 01:50] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:34, 01:22](239 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:27, 01:09](262 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:26, 00:41](262 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [39:16, 37:04] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [14:04, 04:48](1910 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [38:13, 36:20] ( 1 warnings 1020 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [20:08, 10:30](1897 MB) + +PASS -- COMPILE 'atml_intel' [40:20, 38:07] ( 8 warnings 1157 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:08, 05:45](1855 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:08, 05:50](1856 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:47, 03:12](1049 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:11, 06:28] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [21:47, 07:19](1876 MB) + +PASS -- COMPILE 'atmw_intel' [44:21, 37:26] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:56, 02:22](1856 MB) + +PASS -- COMPILE 'atmaero_intel' [43:17, 36:11] ( 1098 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:57, 05:12](1928 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:57, 06:15](1706 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:49, 06:20](1716 MB) + +PASS -- COMPILE 'atm_fbh_intel' [33:15, 31:20] ( 3 warnings 996 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [16:37, 15:09](1006 MB) SYNOPSIS: -Starting Date/Time: 20241029 11:57:17 -Ending Date/Time: 20241029 17:16:17 -Total Time: 05h:19m:33s +Starting Date/Time: 20241101 20:55:51 +Ending Date/Time: 20241102 01:27:29 +Total Time: 04h:32m:12s Compiles Completed: 37/37 -Tests Completed: 163/165 +Tests Completed: 164/165 Failed Tests: * TEST cpld_mpi_pdlib_p8_intel: FAILED: TEST TIMED OUT --- LOG: /lfs5/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_2497585/cpld_mpi_pdlib_p8_intel/err -* TEST atm_ds2s_docn_dice_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/UFS-RT-TESTs/rt-2425/tests/logs/log_jet/run_atm_ds2s_docn_dice_intel.log +-- LOG: /lfs5/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_3078376/cpld_mpi_pdlib_p8_intel/err NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -307,7 +305,7 @@ Result: FAILURE ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -454eb51f3a0d590b77b8aefd9e8fa6755534b32e +50c915d559ecbbc39d288ac9da24860f225597f1 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -317,7 +315,7 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 99091f9742670bdebd84bd13f17b9115457d64dd FV3 (heads/develop) + 99091f9742670bdebd84bd13f17b9115457d64dd FV3 (heads/develop-13-g99091f9) 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) f3eeb3442775b7239d98e3d09acc6d4f1d42233e FV3/ccpp/physics (EP4-889-gf3eeb344) @@ -344,30 +342,23 @@ 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-20241028 -COMPARISON DIRECTORY: /lfs5/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_3560233 +BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20241031 +COMPARISON DIRECTORY: /lfs5/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_1043419 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2sw_intel' [43:17, 41:49] ( 1 warnings 1284 remarks ) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [17:39, 14:12](1982 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [38:16, 36:18] ( 1 warnings 1020 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [13:06, 10:24](1905 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [49:19, 47:56] ( 1 warnings 1344 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [36:16, 33:49](1906 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [19:09, 16:55](1137 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [42:11, 39:37](1906 MB) +PASS -- COMPILE 's2sw_pdlib_intel' [48:18, 46:58] ( 1 warnings 1344 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [36:38, 33:50](1926 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [42:12, 39:37](1904 MB) SYNOPSIS: -Starting Date/Time: 20241029 19:55:09 -Ending Date/Time: 20241029 22:04:19 -Total Time: 02h:09m:20s -Compiles Completed: 3/3 -Tests Completed: 5/5 +Starting Date/Time: 20241104 00:12:32 +Ending Date/Time: 20241104 02:21:00 +Total Time: 02h:08m:40s +Compiles Completed: 1/1 +Tests Completed: 2/2 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 295802d867..9b4d5d8796 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ -====START OF orion REGRESSION TESTING LOG==== +====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -454eb51f3a0d590b77b8aefd9e8fa6755534b32e +50c915d559ecbbc39d288ac9da24860f225597f1 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 99091f9742670bdebd84bd13f17b9115457d64dd FV3 (heads/develop) + 99091f9742670bdebd84bd13f17b9115457d64dd FV3 (heads/develop-13-g99091f9) 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) f3eeb3442775b7239d98e3d09acc6d4f1d42233e FV3/ccpp/physics (EP4-889-gf3eeb344) @@ -31,302 +31,305 @@ Submodule hashes used in testing: 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-20241028 -COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_185120 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241031 +COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_430160 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-r) - USE ROCOTO - -PASS -- COMPILE s2swa_32bit_intel [16:24, 16:24](1 warnings,10 remarks) -PASS -- TEST cpld_control_p8_mixedmode_intel [27:26, 26:10] (2080528 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_intel [19:31, 19:31](1 warnings,10 remarks) -PASS -- TEST cpld_control_gfsv17_intel [19:39, 18:24] (1948288 MB) -PASS -- TEST cpld_control_gfsv17_iau_intel [20:55, 19:07] (2117840 MB) -PASS -- TEST cpld_restart_gfsv17_intel [10:51, 09:05] (1234540 MB) -PASS -- TEST cpld_mpi_gfsv17_intel [21:55, 20:28] (1869744 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [20:22, 20:22](1 warnings,10 remarks) -PASS -- TEST cpld_control_sfs_intel [18:43, 18:05] (1939904 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [08:57, 08:57](1523 warnings,2000 remarks) -PASS -- TEST cpld_debug_gfsv17_intel [31:47, 30:23] (1932544 MB) - -PASS -- COMPILE s2swa_intel [17:30, 17:30](1 warnings,10 remarks) -PASS -- TEST cpld_control_p8_intel [28:19, 27:01] (2140716 MB) -PASS -- TEST cpld_control_p8.v2.sfc_intel [27:11, 25:59] (2137376 MB) -PASS -- TEST cpld_restart_p8_intel [15:26, 14:17] (1802904 MB) -PASS -- TEST cpld_control_qr_p8_intel [28:45, 27:28] (2163280 MB) -PASS -- TEST cpld_restart_qr_p8_intel [15:25, 14:10] (1697324 MB) -PASS -- TEST cpld_2threads_p8_intel [25:10, 24:05] (2427012 MB) -PASS -- TEST cpld_decomp_p8_intel [27:16, 26:20] (2120040 MB) -PASS -- TEST cpld_mpi_p8_intel [23:18, 22:02] (2040468 MB) -PASS -- TEST cpld_control_ciceC_p8_intel [26:59, 25:42] (2148532 MB) -PASS -- TEST cpld_control_c192_p8_intel [17:59, 16:03] (2700724 MB) -PASS -- TEST cpld_restart_c192_p8_intel [11:31, 08:55] (2707112 MB) -PASS -- TEST cpld_bmark_p8_intel [27:27, 22:03] (3674560 MB) -PASS -- TEST cpld_restart_bmark_p8_intel [18:15, 11:21] (3489436 MB) -PASS -- TEST cpld_s2sa_p8_intel [09:15, 08:10] (2078064 MB) - -PASS -- COMPILE s2sw_intel [16:40, 16:40](1 warnings,10 remarks) -PASS -- TEST cpld_control_noaero_p8_intel [26:57, 25:59] (1974608 MB) -PASS -- TEST cpld_control_nowave_noaero_p8_intel [12:46, 11:46] (2056020 MB) - -PASS -- COMPILE s2swa_debug_intel [10:09, 10:09](1413 warnings,1230 remarks) -PASS -- TEST cpld_debug_p8_intel [23:52, 22:44] (2177676 MB) - -PASS -- COMPILE s2sw_debug_intel [07:55, 07:55](1413 warnings,1230 remarks) -PASS -- TEST cpld_debug_noaero_p8_intel [10:21, 09:26] (1997948 MB) - -PASS -- COMPILE s2s_aoflux_intel [14:44, 14:44],3 remarks) -PASS -- TEST cpld_control_noaero_p8_agrid_intel [06:02, 04:55] (2019512 MB) - -PASS -- COMPILE s2s_intel [15:14, 15:14](1 warnings,3 remarks) -PASS -- TEST cpld_control_c48_intel [11:08, 10:26] (3038052 MB) -PASS -- TEST cpld_warmstart_c48_intel [03:35, 02:55] (3017520 MB) -PASS -- TEST cpld_restart_c48_intel [02:16, 01:35] (2470352 MB) - -PASS -- COMPILE s2swa_faster_intel [18:22, 18:22](1 warnings,10 remarks) -PASS -- TEST cpld_control_p8_faster_intel [28:29, 27:20] (2149132 MB) - -PASS -- COMPILE s2sw_pdlib_intel [20:31, 20:31](1 warnings,10 remarks) -PASS -- TEST cpld_control_pdlib_p8_intel [29:39, 28:45] (2006448 MB) -PASS -- TEST cpld_restart_pdlib_p8_intel [15:22, 14:35] (1259924 MB) -PASS -- TEST cpld_mpi_pdlib_p8_intel [33:48, 32:53] (1936484 MB) - -PASS -- COMPILE s2sw_pdlib_debug_intel [07:19, 07:19](1523 warnings,2000 remarks) -PASS -- TEST cpld_debug_pdlib_p8_intel [35:31, 34:38] (1963992 MB) - -PASS -- COMPILE atm_dyn32_intel [14:35, 14:35](1 warnings,1 remarks) -PASS -- TEST control_flake_intel [03:55, 03:43] (687596 MB) -PASS -- TEST control_CubedSphereGrid_intel [04:04, 03:34] (1571908 MB) -PASS -- TEST control_CubedSphereGrid_parallel_intel [04:13, 03:45] (1579072 MB) -PASS -- TEST control_latlon_intel [03:54, 03:33] (1573844 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_intel [04:32, 03:44] (1579216 MB) -PASS -- TEST control_c48_intel [19:27, 18:47] (1708440 MB) -PASS -- TEST control_c48.v2.sfc_intel [10:09, 09:42] (837160 MB) -PASS -- TEST control_c192_intel [14:03, 13:14] (1733000 MB) -PASS -- TEST control_c384_intel [19:54, 18:26] (1978792 MB) -PASS -- TEST control_c384gdas_intel [12:15, 10:01] (1327408 MB) -PASS -- TEST control_stochy_intel [02:03, 01:50] (638724 MB) -PASS -- TEST control_stochy_restart_intel [01:25, 01:04] (472928 MB) -PASS -- TEST control_lndp_intel [01:50, 01:41] (643700 MB) -PASS -- TEST control_iovr4_intel [02:58, 02:42] (642916 MB) -PASS -- TEST control_iovr5_intel [02:53, 02:43] (638148 MB) -PASS -- TEST control_p8_intel [05:02, 04:11] (1868940 MB) -PASS -- TEST control_p8.v2.sfc_intel [04:45, 03:44] (1877864 MB) -PASS -- TEST control_p8_ugwpv1_intel [05:13, 04:08] (1871664 MB) -PASS -- TEST control_restart_p8_intel [03:05, 02:20] (1092960 MB) -PASS -- TEST control_noqr_p8_intel [05:01, 04:04] (1850968 MB) -PASS -- TEST control_restart_noqr_p8_intel [03:33, 02:34] (1121332 MB) -PASS -- TEST control_decomp_p8_intel [05:14, 04:10] (1856096 MB) -PASS -- TEST control_2threads_p8_intel [05:13, 04:24] (1943704 MB) -PASS -- TEST control_p8_lndp_intel [07:41, 07:18] (1858748 MB) -PASS -- TEST control_p8_rrtmgp_intel [05:52, 04:55] (1939344 MB) -PASS -- TEST control_p8_mynn_intel [04:58, 03:38] (1884936 MB) -PASS -- TEST merra2_thompson_intel [05:12, 03:54] (1872624 MB) -PASS -- TEST regional_control_intel [07:18, 06:38] (1066884 MB) -PASS -- TEST regional_restart_intel [04:03, 03:37] (1070232 MB) -PASS -- TEST regional_decomp_intel [07:18, 06:52] (1068720 MB) -PASS -- TEST regional_2threads_intel [05:40, 05:14] (1060268 MB) -PASS -- TEST regional_noquilt_intel [06:56, 06:30] (1377872 MB) -PASS -- TEST regional_netcdf_parallel_intel [06:56, 06:31] (1072144 MB) -PASS -- TEST regional_2dwrtdecomp_intel [06:46, 06:26] (1072592 MB) -PASS -- TEST regional_wofs_intel [08:18, 07:58] (1892968 MB) - -PASS -- COMPILE rrfs_intel [13:42, 13:42](3 warnings,9 remarks) -PASS -- TEST rap_control_intel [09:41, 08:33] (1048204 MB) -PASS -- TEST regional_spp_sppt_shum_skeb_intel [06:00, 05:16] (1249620 MB) -PASS -- TEST rap_decomp_intel [09:46, 08:45] (1017816 MB) -PASS -- TEST rap_2threads_intel [09:39, 08:37] (1144900 MB) -PASS -- TEST rap_restart_intel [05:36, 04:25] (1034972 MB) -PASS -- TEST rap_sfcdiff_intel [09:17, 08:12] (1054600 MB) -PASS -- TEST rap_sfcdiff_decomp_intel [09:44, 08:42] (1013960 MB) -PASS -- TEST rap_sfcdiff_restart_intel [07:24, 06:17] (1059764 MB) -PASS -- TEST hrrr_control_intel [05:16, 04:19] (1025876 MB) -PASS -- TEST hrrr_control_decomp_intel [05:29, 04:25] (1018276 MB) -PASS -- TEST hrrr_control_2threads_intel [10:36, 09:34] (1081092 MB) -PASS -- TEST hrrr_control_restart_intel [02:32, 02:20] (943140 MB) -PASS -- TEST rrfs_v1beta_intel [09:14, 08:20] (1045116 MB) -PASS -- TEST rrfs_v1nssl_intel [10:00, 09:44] (1975064 MB) -PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [09:51, 09:35] (2007216 MB) - -PASS -- COMPILE csawmg_intel [13:02, 13:02] -PASS -- TEST control_csawmg_intel [07:07, 06:41] (1013428 MB) -PASS -- TEST control_ras_intel [03:39, 03:31] (714928 MB) - -PASS -- COMPILE wam_intel [10:56, 10:56],1 remarks) -PASS -- TEST control_wam_intel [13:14, 12:43] (1646984 MB) - -PASS -- COMPILE atm_faster_dyn32_intel [10:56, 10:56],1 remarks) -PASS -- TEST control_p8_faster_intel [04:24, 03:21] (1870608 MB) -PASS -- TEST regional_control_faster_intel [06:51, 06:26] (1080472 MB) - -PASS -- COMPILE atm_debug_dyn32_intel [07:50, 07:50](882 warnings,9 remarks) -PASS -- TEST control_CubedSphereGrid_debug_intel [02:53, 02:21] (1598820 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [02:45, 02:15] (1606704 MB) -PASS -- TEST control_stochy_debug_intel [03:15, 03:06] (815860 MB) -PASS -- TEST control_lndp_debug_intel [03:00, 02:51] (812256 MB) -PASS -- TEST control_csawmg_debug_intel [04:44, 04:24] (1114180 MB) -PASS -- TEST control_ras_debug_intel [03:05, 02:55] (826172 MB) -PASS -- TEST control_diag_debug_intel [03:18, 02:49] (1673192 MB) -PASS -- TEST control_debug_p8_intel [03:15, 02:49] (1883116 MB) -PASS -- TEST regional_debug_intel [18:58, 18:30] (1090568 MB) -PASS -- TEST rap_control_debug_intel [05:12, 05:02] (1194716 MB) -PASS -- TEST hrrr_control_debug_intel [05:08, 04:58] (1197456 MB) -PASS -- TEST hrrr_gf_debug_intel [05:08, 04:55] (1203852 MB) -PASS -- TEST hrrr_c3_debug_intel [05:09, 04:56] (1201216 MB) -PASS -- TEST rap_unified_drag_suite_debug_intel [05:24, 05:09] (1202512 MB) -PASS -- TEST rap_diag_debug_intel [05:28, 05:07] (1284552 MB) -PASS -- TEST rap_cires_ugwp_debug_intel [05:17, 05:07] (1202700 MB) -PASS -- TEST rap_unified_ugwp_debug_intel [05:16, 05:06] (1201300 MB) -PASS -- TEST rap_lndp_debug_intel [05:18, 05:08] (1204948 MB) -PASS -- TEST rap_progcld_thompson_debug_intel [05:15, 05:04] (1198764 MB) -PASS -- TEST rap_noah_debug_intel [05:00, 04:50] (1199084 MB) -PASS -- TEST rap_sfcdiff_debug_intel [05:02, 04:51] (1196812 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [08:03, 07:53] (1200264 MB) -PASS -- TEST rrfs_v1beta_debug_intel [05:06, 04:52] (1196152 MB) -PASS -- TEST rap_clm_lake_debug_intel [06:14, 06:01] (1198800 MB) -PASS -- TEST rap_flake_debug_intel [05:15, 05:02] (1200684 MB) -PASS -- TEST gnv1_c96_no_nest_debug_intel [09:53, 08:46] (1198060 MB) - -PASS -- COMPILE wam_debug_intel [07:04, 07:04](837 warnings,1 remarks) -PASS -- TEST control_wam_debug_intel [14:42, 14:10] (1671236 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_intel [13:04, 13:04](3 warnings,8 remarks) -PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [05:42, 04:59] (1128820 MB) -PASS -- TEST rap_control_dyn32_phy32_intel [08:10, 07:13] (990348 MB) -PASS -- TEST hrrr_control_dyn32_phy32_intel [05:09, 03:48] (908964 MB) -PASS -- TEST rap_2threads_dyn32_phy32_intel [08:32, 07:29] (1065284 MB) -PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [10:08, 08:43] (937576 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [04:42, 03:56] (887492 MB) -PASS -- TEST rap_restart_dyn32_phy32_intel [06:32, 05:27] (974200 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [02:32, 02:00] (873400 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [13:13, 13:13](3 warnings,8 remarks) -PASS -- TEST conus13km_control_intel [03:14, 02:38] (1162800 MB) -PASS -- TEST conus13km_2threads_intel [01:43, 01:12] (1106304 MB) -PASS -- TEST conus13km_restart_mismatch_intel [02:01, 01:31] (1062568 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_intel [13:16, 13:16](3 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_intel [05:06, 04:34] (960140 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [06:12, 06:12](785 warnings,8 remarks) -PASS -- TEST rap_control_debug_dyn32_phy32_intel [05:11, 04:55] (1079184 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [05:03, 04:50] (1071480 MB) -PASS -- TEST conus13km_debug_intel [14:05, 13:32] (1231400 MB) -PASS -- TEST conus13km_debug_qr_intel [14:03, 13:38] (923536 MB) -PASS -- TEST conus13km_debug_2threads_intel [08:24, 08:01] (1164676 MB) -PASS -- TEST conus13km_radar_tten_debug_intel [14:03, 13:35] (1293220 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [12:43, 12:43](785 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_debug_intel [05:11, 05:01] (1134856 MB) - -PASS -- COMPILE hafsw_intel [15:17, 15:17](1 warnings,9 remarks) -PASS -- TEST hafs_regional_atm_intel [07:09, 06:07] (735328 MB) -PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [06:51, 06:29] (1105684 MB) -PASS -- TEST hafs_regional_atm_ocn_intel [08:52, 07:36] (808112 MB) -PASS -- TEST hafs_regional_atm_wav_intel [25:09, 24:04] (840636 MB) -PASS -- TEST hafs_regional_atm_ocn_wav_intel [29:53, 28:32] (867168 MB) -PASS -- TEST hafs_regional_1nest_atm_intel [08:02, 07:12] (497844 MB) -PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [09:52, 08:38] (516888 MB) -PASS -- TEST hafs_global_1nest_atm_intel [04:15, 03:31] (372176 MB) -PASS -- TEST hafs_global_multiple_4nests_atm_intel [11:49, 09:43] (483212 MB) -PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [05:34, 04:50] (521440 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [05:17, 04:27] (529192 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [06:38, 05:49] (570956 MB) -PASS -- TEST hafs_global_storm_following_1nest_atm_intel [01:54, 01:33] (400332 MB) -PASS -- TEST gnv1_nested_intel [06:20, 04:25] (1712168 MB) - -PASS -- COMPILE hafsw_debug_intel [07:06, 07:06](1465 warnings,1502 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [14:36, 13:43] (580276 MB) - -PASS -- COMPILE hafsw_faster_intel [15:33, 15:33],8 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [14:00, 12:55] (660152 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [14:22, 13:15] (714924 MB) - -PASS -- COMPILE hafs_mom6w_intel [15:01, 15:01],7 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [10:15, 08:52] (703896 MB) - -PASS -- COMPILE hafs_all_intel [20:49, 20:49],8 remarks) -PASS -- TEST hafs_regional_docn_intel [08:41, 07:36] (805844 MB) -PASS -- TEST hafs_regional_docn_oisst_intel [08:42, 07:37] (795744 MB) -PASS -- TEST hafs_regional_datm_cdeps_intel [17:00, 16:17] (1204108 MB) - -PASS -- COMPILE datm_cdeps_intel [09:32, 09:31],2 remarks) -PASS -- TEST datm_cdeps_control_cfsr_intel [03:06, 02:59] (1157664 MB) -PASS -- TEST datm_cdeps_restart_cfsr_intel [02:01, 01:53] (1104244 MB) -PASS -- TEST datm_cdeps_control_gefs_intel [02:58, 02:50] (1022084 MB) -PASS -- TEST datm_cdeps_iau_gefs_intel [03:02, 02:53] (1016672 MB) -PASS -- TEST datm_cdeps_stochy_gefs_intel [03:07, 03:00] (1005108 MB) -PASS -- TEST datm_cdeps_ciceC_cfsr_intel [03:05, 02:57] (1154516 MB) -PASS -- TEST datm_cdeps_bulk_cfsr_intel [03:06, 02:58] (1149476 MB) -PASS -- TEST datm_cdeps_bulk_gefs_intel [02:57, 02:50] (1019796 MB) -PASS -- TEST datm_cdeps_mx025_cfsr_intel [07:28, 06:36] (1016632 MB) -PASS -- TEST datm_cdeps_mx025_gefs_intel [07:23, 06:31] (1000896 MB) -PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [03:02, 02:58] (1151916 MB) -PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [04:27, 04:19] (2396808 MB) -PASS -- TEST datm_cdeps_gfs_intel [04:31, 04:23] (2393840 MB) - -PASS -- COMPILE datm_cdeps_debug_intel [05:12, 05:12](2 warnings,2 remarks) -PASS -- TEST datm_cdeps_debug_cfsr_intel [06:40, 06:30] (1078396 MB) - -PASS -- COMPILE datm_cdeps_faster_intel [08:20, 08:20],2 remarks) -PASS -- TEST datm_cdeps_control_cfsr_faster_intel [03:03, 02:57] (1147824 MB) - -PASS -- COMPILE datm_cdeps_land_intel [01:25, 01:25],1 remarks) -PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:22, 01:02] (255152 MB) -PASS -- TEST datm_cdeps_lnd_era5_intel [01:11, 00:53] (325144 MB) -PASS -- TEST datm_cdeps_lnd_era5_rst_intel [00:50, 00:35] (321824 MB) - -PASS -- COMPILE atm_ds2s_docn_pcice_intel [13:40, 13:40],3 remarks) -PASS -- TEST atm_ds2s_docn_pcice_intel [05:10, 04:15] (1969272 MB) - -PASS -- COMPILE atm_ds2s_docn_dice_intel [20:13, 14:17](1 warnings,1 remarks) -PASS -- TEST atm_ds2s_docn_dice_intel [13:20, 09:13] (1968132 MB) - -PASS -- COMPILE atml_intel [14:46, 14:46](8 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_sbs_intel [06:14, 04:56] (1856404 MB) -PASS -- TEST control_p8_atmlnd_intel [06:10, 04:52] (1864464 MB) -PASS -- TEST control_restart_p8_atmlnd_intel [03:26, 02:48] (1074680 MB) - -PASS -- COMPILE atml_debug_intel [07:40, 07:40](880 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_debug_intel [07:08, 05:51] (1893832 MB) - -PASS -- COMPILE atmw_intel [13:34, 13:34],8 remarks) -PASS -- TEST atmwav_control_noaero_p8_intel [03:18, 02:11] (1896056 MB) - -PASS -- COMPILE atmaero_intel [13:03, 13:03],1 remarks) -PASS -- TEST atmaero_control_p8_intel [05:34, 04:36] (1975420 MB) -PASS -- TEST atmaero_control_p8_rad_intel [06:28, 05:24] (1766680 MB) -PASS -- TEST atmaero_control_p8_rad_micro_intel [06:27, 05:29] (1762344 MB) - -PASS -- COMPILE atmaq_debug_intel [06:06, 06:06](882 warnings,6 remarks) -PASS -- TEST regional_atmaq_debug_intel [22:29, 20:52] (4482168 MB) - -PASS -- COMPILE atm_fbh_intel [12:07, 12:07](3 warnings,8 remarks) -PASS -- TEST cpld_regional_atm_fbh_intel [15:54, 15:38] (1082444 MB) - +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [18:11, 16:20] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [28:50, 25:34](2090 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 20:02] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:52, 18:16](1948 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:18, 19:09](2126 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:04, 08:59](1223 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:49, 20:22](1862 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 19:32] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:47, 17:40](1949 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:11, 08:18] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [33:48, 30:40](1936 MB) + +PASS -- COMPILE 's2swa_intel' [18:11, 16:40] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [29:46, 26:21](2143 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [28:52, 26:07](2145 MB) +PASS -- TEST 'cpld_restart_p8_intel' [16:47, 13:26](1806 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [29:46, 26:19](2149 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [16:47, 14:06](1697 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [26:46, 23:46](2426 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [29:45, 26:20](2122 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [24:44, 22:00](2043 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [29:53, 26:36](2137 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:30, 16:22](2708 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:58, 08:43](2703 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [27:39, 19:37](3681 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:45, 11:21](3495 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:36, 08:14](2077 MB) + +PASS -- COMPILE 's2sw_intel' [17:11, 15:59] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [28:21, 25:23](1971 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:32, 11:54](2060 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:11, 08:18] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [24:26, 22:07](2174 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:11, 07:46] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:09, 09:09](1994 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:11, 14:29] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:11, 04:52](2031 MB) + +PASS -- COMPILE 's2s_intel' [17:11, 15:43] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [11:03, 08:39](3027 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:03, 02:58](3001 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:09, 02:04](2470 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:11, 17:34] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [29:29, 26:52](2150 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 19:30] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [31:15, 28:18](2016 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [18:25, 15:24](1252 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:18, 32:52](1932 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:11, 07:53] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [37:16, 34:37](1967 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:11, 13:32] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:27, 03:42](693 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:45, 03:31](1567 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:50, 03:35](1578 MB) +PASS -- TEST 'control_latlon_intel' [05:39, 03:33](1566 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:49, 03:33](1577 MB) +PASS -- TEST 'control_c48_intel' [16:48, 14:46](1705 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:32, 08:10](833 MB) +PASS -- TEST 'control_c192_intel' [14:53, 13:06](1734 MB) +PASS -- TEST 'control_c384_intel' [20:07, 16:39](1981 MB) +PASS -- TEST 'control_c384gdas_intel' [13:41, 10:02](1336 MB) +PASS -- TEST 'control_stochy_intel' [03:24, 01:50](643 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:54, 01:05](476 MB) +PASS -- TEST 'control_lndp_intel' [03:20, 01:44](642 MB) +PASS -- TEST 'control_iovr4_intel' [04:23, 02:43](634 MB) +PASS -- TEST 'control_iovr5_intel' [04:21, 02:43](640 MB) +PASS -- TEST 'control_p8_intel' [07:16, 04:12](1863 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:17, 03:29](1876 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:31, 04:02](1866 MB) +PASS -- TEST 'control_restart_p8_intel' [05:06, 02:34](1075 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:24, 04:03](1852 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:39, 02:19](1126 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:15, 04:10](1852 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:15, 04:22](1942 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:45, 07:26](1865 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:24, 04:55](1937 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:22, 03:31](1883 MB) +PASS -- TEST 'merra2_thompson_intel' [06:38, 03:52](1874 MB) +PASS -- TEST 'regional_control_intel' [08:47, 06:36](1079 MB) +PASS -- TEST 'regional_restart_intel' [05:38, 03:35](1063 MB) +PASS -- TEST 'regional_decomp_intel' [08:35, 06:53](1067 MB) +PASS -- TEST 'regional_2threads_intel' [06:35, 04:50](1071 MB) +PASS -- TEST 'regional_noquilt_intel' [08:41, 06:33](1377 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:47, 06:36](1073 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:35, 06:34](1064 MB) +PASS -- TEST 'regional_wofs_intel' [09:41, 08:01](1895 MB) + +PASS -- COMPILE 'rrfs_intel' [15:11, 13:22] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:21, 08:28](1050 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:04, 05:18](1246 MB) +PASS -- TEST 'rap_decomp_intel' [10:54, 08:40](1013 MB) +PASS -- TEST 'rap_2threads_intel' [11:13, 08:40](1145 MB) +PASS -- TEST 'rap_restart_intel' [07:41, 04:22](1029 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:07, 08:23](1050 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:56, 08:41](1016 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:28, 06:19](1066 MB) +PASS -- TEST 'hrrr_control_intel' [07:21, 04:26](1021 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:59, 04:29](1013 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:58, 04:14](1086 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:38, 02:23](946 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:20, 08:23](1040 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:25, 09:53](1975 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:23, 09:33](2021 MB) + +PASS -- COMPILE 'csawmg_intel' [15:11, 13:17] +PASS -- TEST 'control_csawmg_intel' [08:39, 06:38](1015 MB) +PASS -- TEST 'control_ras_intel' [05:20, 03:30](718 MB) + +PASS -- COMPILE 'wam_intel' [14:11, 12:37] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:45, 12:49](1651 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:10, 13:16] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:25, 03:18](1873 MB) +PASS -- TEST 'regional_control_faster_intel' [08:40, 06:16](1055 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:10, 09:46] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:52, 02:21](1598 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:56, 02:14](1600 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:26, 03:05](813 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:26, 02:51](815 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:43, 04:21](1115 MB) +PASS -- TEST 'control_ras_debug_intel' [04:27, 02:48](823 MB) +PASS -- TEST 'control_diag_debug_intel' [04:53, 02:52](1675 MB) +PASS -- TEST 'control_debug_p8_intel' [04:53, 02:47](1890 MB) +PASS -- TEST 'regional_debug_intel' [19:48, 17:24](1089 MB) +PASS -- TEST 'rap_control_debug_intel' [06:29, 05:00](1202 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:31, 04:50](1190 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:28, 04:58](1199 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:24, 05:01](1201 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:25, 05:03](1199 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:36, 05:08](1292 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:27, 05:07](1198 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:27, 05:07](1201 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:26, 05:04](1208 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:26, 05:01](1197 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:20, 04:56](1198 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:21, 04:56](1204 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:25, 08:06](1201 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:55](1192 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:27, 05:56](1203 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:22, 05:02](1202 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:27, 08:39](1205 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:11, 06:13] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:47, 13:07](1682 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 12:15] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:10, 04:57](1127 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:10, 07:12](984 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:14, 03:50](916 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:51, 07:31](1060 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:03, 03:47](934 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:43, 03:56](890 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:29, 05:25](971 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:08, 02:03](872 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 12:33] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:55, 02:35](1159 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:43, 01:11](1110 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:52, 01:28](1065 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:24] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:44, 04:38](964 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:10, 06:39] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:20, 04:53](1075 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:20, 04:46](1078 MB) +PASS -- TEST 'conus13km_debug_intel' [15:48, 13:44](1226 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:57, 13:55](922 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:45, 08:04](1178 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:48, 14:25](1320 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:10, 06:16] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:25, 05:01](1133 MB) + +PASS -- COMPILE 'hafsw_intel' [17:10, 15:26] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:17, 06:00](744 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:33, 06:32](1114 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:34, 07:43](814 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [27:19, 24:45](843 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [31:21, 28:37](873 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:01, 07:09](498 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:28, 08:34](507 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:02, 03:32](375 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:25, 09:42](478 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:55, 04:45](525 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:01, 04:30](520 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:56, 05:53](572 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:31, 01:34](398 MB) +PASS -- TEST 'gnv1_nested_intel' [08:14, 04:19](1723 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:10, 07:28] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:04, 13:27](582 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:10, 14:38] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:13, 12:53](658 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:08, 13:03](724 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:10, 14:35] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:27, 08:44](705 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:10, 13:51] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:18, 07:34](812 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:10, 07:38](801 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:55, 16:21](1203 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [12:10, 10:40] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:59](1151 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:52](1105 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:54](1011 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:16, 02:53](1023 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:16, 02:54](1022 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:16, 02:58](1148 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 02:58](1147 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:49](1019 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:18, 06:36](1011 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:10, 06:32](1004 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 02:55](1151 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:17, 04:23](2459 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:21, 04:25](2390 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:10, 05:29] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 06:29](1064 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:10, 07:37] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:16, 02:59](1152 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:18] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:30, 01:02](256 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:57](333 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:29, 00:37](321 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:46] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:29, 00:40](560 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:34, 00:21](444 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:10, 13:27] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:12, 04:08](1971 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:10, 12:54] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:02, 08:53](1969 MB) + +PASS -- COMPILE 'atml_intel' [15:11, 13:31] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:32, 04:52](1861 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:28, 04:52](1870 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:53, 02:49](1066 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:11, 07:49] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:26, 06:00](1891 MB) + +PASS -- COMPILE 'atmw_intel' [15:10, 13:57] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:20, 02:15](1898 MB) + +PASS -- COMPILE 'atmaero_intel' [15:10, 13:33] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:12, 04:44](1965 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:13, 05:27](1757 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:15, 05:27](1771 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:10, 06:17] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [25:06, 21:46](4482 MB) + +PASS -- COMPILE 'atm_fbh_intel' [13:10, 12:03] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:30, 13:48](1074 MB) SYNOPSIS: -Starting Date/Time: 2024-10-29 17:32:00 -Ending Date/Time: 2024-10-30 12:58:15 -Total Time: 19h:26m:15s -Compiles Completed: 42/42 -Tests Completed: 186/186 - +Starting Date/Time: 20241101 08:15:45 +Ending Date/Time: 20241101 10:05:04 +Total Time: 01h:49m:57s +Compiles Completed: 43/43 +Tests Completed: 188/188 NOTES: -A file test_changes.list was generated but is empty. -If you are using this log as a pull request verification, please commit test_changes.list. +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. Result: SUCCESS -====END OF orion REGRESSION TESTING LOG==== +====END OF ORION REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 4e5df4ef05..0d4df4fbb0 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -28e0f98fc73229c8005bc8300b29230d804edac1 +50c915d559ecbbc39d288ac9da24860f225597f1 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 99091f9742670bdebd84bd13f17b9115457d64dd FV3 (heads/develop) + 99091f9742670bdebd84bd13f17b9115457d64dd FV3 (heads/develop-13-g99091f9) 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) f3eeb3442775b7239d98e3d09acc6d4f1d42233e FV3/ccpp/physics (EP4-889-gf3eeb344) @@ -38,311 +38,241 @@ 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-20241028 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3146 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241031 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116313 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [15:31, 11:29] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:44, 03:17](3085 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:31, 12:04] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [08:44, 03:22](1811 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [46:29, 02:50](1846 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [45:50, 02:45](972 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [08:45, 03:05](1783 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [15:31, 11:37] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [08:44, 01:52](1809 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:23, 05:19] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [14:53, 03:10](1841 MB) - -PASS -- COMPILE 's2swa_intel' [15:31, 11:40] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:44, 02:32](3115 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:44, 02:41](3115 MB) -PASS -- TEST 'cpld_restart_p8_intel' [49:03, 02:58](3043 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:44, 02:25](3136 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [49:06, 02:47](3062 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [08:44, 02:29](3356 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:44, 02:26](3113 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:45, 02:20](3055 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:44, 02:37](3121 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [08:53, 06:24](4110 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [36:46, 04:54](4252 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:44, 02:02](3094 MB) - -PASS -- COMPILE 's2sw_intel' [14:30, 10:56] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:45, 02:19](1829 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:45, 02:56](1888 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [14:28, 10:25] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:47, 02:13](1881 MB) - -PASS -- COMPILE 's2s_intel' [14:29, 10:17] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:45, 02:08](2859 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [09:45, 01:57](2871 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:38, 02:19](2279 MB) - -PASS -- COMPILE 's2swa_faster_intel' [20:42, 16:19] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [03:34, 03:04](3121 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [15:31, 11:35] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [08:44, 02:03](1832 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [37:49, 02:33](978 MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_mpi_pdlib_p8_intel' [, ]( MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:25, 05:16] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [07:27, 02:26](1845 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:24, 09:42] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [58:22, 02:15](568 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [58:22, 02:02](1464 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [58:22, 02:04](1474 MB) -PASS -- TEST 'control_latlon_intel' [58:22, 02:00](1468 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [58:22, 02:07](1469 MB) -PASS -- TEST 'control_c48_intel' [58:21, 02:16](1568 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [58:21, 01:42](689 MB) -PASS -- TEST 'control_c192_intel' [58:22, 01:54](1594 MB) -PASS -- TEST 'control_c384_intel' [57:30, 03:24](1882 MB) -PASS -- TEST 'control_c384gdas_intel' [56:08, 03:46](1068 MB) -PASS -- TEST 'control_stochy_intel' [53:46, 01:50](524 MB) -PASS -- TEST 'control_stochy_restart_intel' [49:13, 01:41](326 MB) -PASS -- TEST 'control_lndp_intel' [52:40, 01:24](524 MB) -PASS -- TEST 'control_iovr4_intel' [52:33, 01:34](516 MB) -PASS -- TEST 'control_iovr5_intel' [52:29, 01:35](520 MB) -PASS -- TEST 'control_p8_intel' [52:27, 02:15](1760 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [51:56, 02:55](1764 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [51:46, 02:24](1761 MB) -PASS -- TEST 'control_restart_p8_intel' [45:36, 02:37](907 MB) -PASS -- TEST 'control_noqr_p8_intel' [51:44, 01:58](1751 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [45:34, 02:32](919 MB) -PASS -- TEST 'control_decomp_p8_intel' [51:38, 01:51](1749 MB) -PASS -- TEST 'control_2threads_p8_intel' [50:35, 02:14](1839 MB) -PASS -- TEST 'control_p8_lndp_intel' [50:05, 02:22](1760 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [49:23, 02:32](1808 MB) -PASS -- TEST 'control_p8_mynn_intel' [49:14, 02:39](1764 MB) -PASS -- TEST 'merra2_thompson_intel' [49:08, 03:30](1761 MB) -PASS -- TEST 'regional_control_intel' [48:48, 01:35](843 MB) -PASS -- TEST 'regional_restart_intel' [40:59, 02:13](841 MB) -PASS -- TEST 'regional_decomp_intel' [48:44, 01:18](844 MB) -PASS -- TEST 'regional_2threads_intel' [48:28, 01:50](892 MB) -PASS -- TEST 'regional_noquilt_intel' [48:00, 02:09](1165 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [47:48, 02:04](836 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [45:31, 01:48](839 MB) -PASS -- TEST 'regional_wofs_intel' [45:31, 01:58](1566 MB) - -PASS -- COMPILE 'rrfs_intel' [11:25, 08:54] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [45:15, 02:44](903 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [45:12, 01:33](1046 MB) -PASS -- TEST 'rap_decomp_intel' [45:09, 02:35](902 MB) -PASS -- TEST 'rap_2threads_intel' [44:20, 02:31](983 MB) -PASS -- TEST 'rap_restart_intel' [34:21, 02:09](772 MB) -PASS -- TEST 'rap_sfcdiff_intel' [44:14, 03:26](902 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [44:12, 03:24](905 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [32:24, 02:27](773 MB) -PASS -- TEST 'hrrr_control_intel' [43:12, 03:17](898 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [42:37, 02:52](903 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [42:36, 02:37](976 MB) -PASS -- TEST 'hrrr_control_restart_intel' [35:21, 01:58](728 MB) -PASS -- TEST 'rrfs_v1beta_intel' [42:16, 02:51](898 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [42:06, 01:51](1853 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [41:51, 02:07](1842 MB) - -PASS -- COMPILE 'csawmg_intel' [10:24, 08:13] -PASS -- TEST 'control_csawmg_intel' [59:20, 02:16](858 MB) -PASS -- TEST 'control_ras_intel' [59:20, 01:42](554 MB) - -PASS -- COMPILE 'wam_intel' [12:27, 08:25] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [41:17, 02:30](1553 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:27, 08:31] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [41:02, 03:03](1764 MB) -PASS -- TEST 'regional_control_faster_intel' [40:13, 01:20](840 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:26, 07:37] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [40:04, 01:37](1492 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [40:04, 01:32](1492 MB) -PASS -- TEST 'control_stochy_debug_intel' [40:03, 01:53](697 MB) -PASS -- TEST 'control_lndp_debug_intel' [39:58, 02:08](698 MB) -PASS -- TEST 'control_csawmg_debug_intel' [38:17, 01:57](999 MB) -PASS -- TEST 'control_ras_debug_intel' [37:58, 01:27](705 MB) -PASS -- TEST 'control_diag_debug_intel' [37:05, 02:12](1558 MB) -PASS -- TEST 'control_debug_p8_intel' [37:05, 02:16](1794 MB) -PASS -- TEST 'regional_debug_intel' [35:55, 02:05](881 MB) -PASS -- TEST 'rap_control_debug_intel' [35:44, 01:27](1083 MB) -PASS -- TEST 'hrrr_control_debug_intel' [35:11, 01:48](1073 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [35:09, 01:45](1076 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [34:21, 01:43](1076 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [34:20, 01:36](1078 MB) -PASS -- TEST 'rap_diag_debug_intel' [34:15, 02:30](1165 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [34:15, 01:38](1079 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [34:09, 01:34](1078 MB) -PASS -- TEST 'rap_lndp_debug_intel' [34:05, 01:37](1078 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [34:01, 01:33](1078 MB) -PASS -- TEST 'rap_noah_debug_intel' [33:27, 01:39](1074 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [33:26, 01:30](1074 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [32:30, 01:23](1072 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [32:24, 01:31](1068 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [31:49, 01:49](1074 MB) -PASS -- TEST 'rap_flake_debug_intel' [31:19, 01:31](1077 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [30:40, 02:51](1084 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:22, 04:40] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [00:21, 02:19](1581 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:26, 08:08] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [30:22, 01:57](909 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [30:11, 02:43](778 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [30:09, 03:02](776 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [30:03, 02:41](834 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [29:22, 02:20](827 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [28:10, 02:44](776 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [21:07, 02:14](674 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [23:23, 01:47](660 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:24, 08:22] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [27:46, 02:01](987 MB) -PASS -- TEST 'conus13km_2threads_intel' [22:39, 01:34](985 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [21:52, 02:07](859 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:24, 08:17] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [27:22, 02:08](807 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 04:39] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [27:19, 01:54](951 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [26:37, 01:55](954 MB) -PASS -- TEST 'conus13km_debug_intel' [26:35, 01:43](1039 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [26:32, 01:26](707 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [26:32, 01:41](1041 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:30, 01:29](1104 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:21, 04:42] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [26:14, 01:51](985 MB) - -PASS -- COMPILE 'hafsw_intel' [12:31, 10:17] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [26:04, 02:51](597 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [25:50, 01:58](946 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [25:45, 02:36](644 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [25:28, 03:09](666 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:59, 03:18](694 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [24:54, 01:54](378 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [23:59, 02:49](391 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [23:49, 01:55](278 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [23:17, 03:41](361 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [23:13, 01:52](399 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [23:12, 02:13](410 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [21:43, 02:23](478 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [21:27, 01:54](312 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:19, 05:01] ( 1447 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [20:31, 01:48](504 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:28, 09:52] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [19:28, 02:38](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:01, 01:56](702 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:27, 09:56] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [19:00, 02:40](702 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:28, 09:29] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [18:32, 03:10](640 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:53, 02:17](619 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:44, 01:54](878 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:28, 10:09] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [16:03, 02:17](1820 MB) - -PASS -- COMPILE 'atml_intel' [11:30, 09:42] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [07:20, 05:41] ( 866 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [10:24, 08:43] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [16:00, 01:59](3009 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [15:42, 02:45](2898 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [15:39, 02:33](2906 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:20, 04:32] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [15:28, 02:43](4380 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:30, 12:14] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [22:51, 02:43](3084 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:28, 12:06] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:53, 03:20](1814 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [01:24, 03:19](1814 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [01:24, 02:56](978 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:54, 02:52](1789 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:30, 11:59] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [23:51, 02:07](1808 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:22, 05:16] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [30:00, 03:06](1840 MB) + +PASS -- COMPILE 's2swa_intel' [13:30, 11:54] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [23:51, 02:29](3117 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [23:51, 02:53](3119 MB) +PASS -- TEST 'cpld_restart_p8_intel' [04:01, 02:12](3043 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [23:51, 02:29](3134 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [04:01, 02:08](3054 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [23:51, 02:48](3357 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [23:51, 02:43](3115 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [23:52, 02:05](3056 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [23:51, 02:49](3118 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [24:00, 05:15](4108 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [54:50, 05:26](4254 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [23:51, 02:34](3097 MB) + +PASS -- COMPILE 's2sw_intel' [12:27, 10:46] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [24:54, 02:08](1821 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [24:54, 02:48](1877 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:28, 10:16] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [24:53, 02:46](1877 MB) + +PASS -- COMPILE 's2s_intel' [12:28, 10:15] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [24:52, 01:59](2859 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [24:52, 01:42](2864 MB) +PASS -- TEST 'cpld_restart_c48_intel' [19:51, 01:29](2289 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:33, 15:15] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [19:48, 02:12](3120 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:30, 11:41] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:50, 02:53](1825 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [51:43, 02:23](998 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [50:41, 02:11](1794 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:25, 05:17] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:35, 02:08](1848 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:34, 09:31] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [10:08, 02:26](568 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [08:47, 01:47](1465 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:24, 01:57](1475 MB) +PASS -- TEST 'control_latlon_intel' [07:08, 02:00](1465 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:01, 02:03](1468 MB) +PASS -- TEST 'control_c48_intel' [06:52, 02:23](1563 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:47, 01:37](690 MB) +PASS -- TEST 'control_c192_intel' [06:48, 02:00](1583 MB) +PASS -- TEST 'control_c384_intel' [06:44, 03:09](1882 MB) +PASS -- TEST 'control_c384gdas_intel' [05:34, 03:44](1071 MB) +PASS -- TEST 'control_stochy_intel' [04:57, 01:21](521 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:21, 02:10](330 MB) +PASS -- TEST 'control_lndp_intel' [04:07, 01:26](521 MB) +PASS -- TEST 'control_iovr4_intel' [04:07, 01:34](517 MB) +PASS -- TEST 'control_iovr5_intel' [04:07, 01:37](518 MB) +PASS -- TEST 'control_p8_intel' [04:01, 02:08](1756 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:54, 02:56](1756 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:54, 02:19](1751 MB) +PASS -- TEST 'control_restart_p8_intel' [57:37, 02:39](906 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:45, 02:01](1762 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [57:37, 02:53](918 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:45, 01:57](1755 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:28, 02:40](1837 MB) +PASS -- TEST 'control_p8_lndp_intel' [03:20, 01:51](1753 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [02:56, 03:00](1806 MB) +PASS -- TEST 'control_p8_mynn_intel' [02:32, 02:55](1762 MB) +PASS -- TEST 'merra2_thompson_intel' [01:11, 02:42](1756 MB) +PASS -- TEST 'regional_control_intel' [01:06, 02:09](828 MB) +PASS -- TEST 'regional_restart_intel' [53:14, 01:56](835 MB) +PASS -- TEST 'regional_decomp_intel' [00:33, 02:01](835 MB) +PASS -- TEST 'regional_2threads_intel' [59:31, 02:13](891 MB) +PASS -- TEST 'regional_noquilt_intel' [59:29, 02:00](1167 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [59:22, 01:42](843 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [59:04, 01:37](837 MB) +PASS -- TEST 'regional_wofs_intel' [57:43, 01:29](1571 MB) + +PASS -- COMPILE 'rrfs_intel' [10:32, 08:53] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [14:19, 02:21](901 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [14:20, 01:50](1049 MB) +PASS -- TEST 'rap_decomp_intel' [14:19, 02:15](902 MB) +PASS -- TEST 'rap_2threads_intel' [14:19, 02:54](992 MB) +PASS -- TEST 'rap_restart_intel' [57:37, 02:29](773 MB) +PASS -- TEST 'rap_sfcdiff_intel' [14:19, 02:50](902 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:19, 02:21](900 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [57:24, 02:42](773 MB) +PASS -- TEST 'hrrr_control_intel' [14:19, 03:04](900 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [14:19, 02:57](899 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [13:38, 02:54](974 MB) +PASS -- TEST 'hrrr_control_restart_intel' [57:21, 02:04](727 MB) +PASS -- TEST 'rrfs_v1beta_intel' [57:14, 02:58](894 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [56:43, 02:14](1857 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [56:09, 02:05](1848 MB) + +PASS -- COMPILE 'csawmg_intel' [10:32, 08:17] +PASS -- TEST 'control_csawmg_intel' [14:20, 01:21](858 MB) +PASS -- TEST 'control_ras_intel' [14:20, 01:41](555 MB) + +PASS -- COMPILE 'wam_intel' [12:25, 08:21] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [56:03, 02:18](1539 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:26, 08:29] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [55:24, 02:29](1755 MB) +PASS -- TEST 'regional_control_faster_intel' [54:27, 01:43](842 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:25, 07:32] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [54:26, 02:02](1488 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [53:38, 02:20](1502 MB) +PASS -- TEST 'control_stochy_debug_intel' [53:07, 02:15](698 MB) +PASS -- TEST 'control_lndp_debug_intel' [53:07, 01:30](694 MB) +PASS -- TEST 'control_csawmg_debug_intel' [52:40, 02:11](1002 MB) +PASS -- TEST 'control_ras_debug_intel' [52:30, 01:31](704 MB) +PASS -- TEST 'control_diag_debug_intel' [51:45, 02:14](1558 MB) +PASS -- TEST 'control_debug_p8_intel' [49:38, 01:53](1785 MB) +PASS -- TEST 'regional_debug_intel' [49:34, 01:54](880 MB) +PASS -- TEST 'rap_control_debug_intel' [49:29, 02:17](1078 MB) +PASS -- TEST 'hrrr_control_debug_intel' [49:15, 01:40](1074 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [49:03, 01:45](1075 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [49:03, 01:41](1077 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [48:23, 02:12](1076 MB) +PASS -- TEST 'rap_diag_debug_intel' [48:14, 02:18](1161 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [47:55, 01:22](1081 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [47:49, 02:15](1077 MB) +PASS -- TEST 'rap_lndp_debug_intel' [45:47, 01:35](1080 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [45:42, 01:42](1080 MB) +PASS -- TEST 'rap_noah_debug_intel' [45:37, 01:47](1071 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [44:25, 01:51](1080 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [43:38, 01:56](1073 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [43:30, 01:27](1073 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [43:27, 01:24](1074 MB) +PASS -- TEST 'rap_flake_debug_intel' [43:25, 01:21](1078 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [42:57, 02:49](1082 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:21, 04:49] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:32, 02:14](1581 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:25, 08:09] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [42:27, 01:57](911 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [42:24, 02:21](781 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [41:41, 03:04](782 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [40:55, 02:12](841 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [40:37, 02:42](833 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [40:19, 02:20](776 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [32:03, 02:44](674 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [33:54, 01:56](660 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:25, 08:20] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [39:57, 01:29](987 MB) +PASS -- TEST 'conus13km_2threads_intel' [35:06, 02:08](990 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [34:54, 02:17](859 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:23, 08:17] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [39:53, 02:17](809 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:56] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [38:31, 01:28](951 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [38:22, 01:47](951 MB) +PASS -- TEST 'conus13km_debug_intel' [38:21, 02:20](1036 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [38:15, 02:03](710 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [37:54, 01:27](1039 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [37:44, 01:39](1104 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:33] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [37:24, 01:50](985 MB) + +PASS -- COMPILE 'hafsw_intel' [11:25, 10:05] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [37:20, 02:46](598 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [37:19, 01:44](943 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [37:14, 02:41](647 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [37:08, 03:18](671 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [36:56, 02:58](694 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [34:08, 02:29](395 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [33:59, 03:17](439 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [33:56, 02:02](407 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [33:59, 03:12](362 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [33:52, 02:06](403 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [33:04, 02:34](400 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [32:51, 02:12](471 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [31:54, 01:52](315 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:21, 05:20] ( 1447 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [31:04, 02:08](526 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:28, 09:47] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [30:49, 02:27](506 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [30:46, 02:19](700 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:30, 09:57] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [30:18, 02:47](703 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:30, 09:22] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [30:04, 02:59](643 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [29:48, 02:56](613 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [29:20, 01:31](878 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:29, 10:08] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [28:22, 02:12](1825 MB) + +PASS -- COMPILE 'atml_intel' [11:28, 09:45] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [08:28, 05:40] ( 866 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [10:26, 08:41] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [28:08, 02:52](3010 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [27:37, 02:09](2892 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [27:28, 02:18](2907 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:27, 04:28] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [27:19, 02:14](4381 MB) SYNOPSIS: -Starting Date/Time: 20241031 14:35:23 -Ending Date/Time: 20241031 16:31:48 -Total Time: 01h:57m:13s +Starting Date/Time: 20241101 21:22:09 +Ending Date/Time: 20241101 23:02:12 +Total Time: 01h:41m:04s Compiles Completed: 33/33 -Tests Completed: 155/156 -Failed Tests: -* TEST cpld_mpi_pdlib_p8_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/dpsarmie/ufs-weather-model/tests/logs/log_wcoss2/run_cpld_mpi_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 WCOSS2 REGRESSION TESTING LOG==== -====START OF WCOSS2 REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -358449cfff384a09cdf27f90139d02cf9f0a9074 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) - 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) - 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 99091f9742670bdebd84bd13f17b9115457d64dd FV3 (heads/develop) - 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) - b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - f3eeb3442775b7239d98e3d09acc6d4f1d42233e FV3/ccpp/physics (EP4-889-gf3eeb344) - 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: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241028 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_222071 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: GFS-DEV -* (-n) - RUN SINGLE TEST: cpld_mpi_pdlib_p8 -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2sw_pdlib_intel' [13:33, 11:43] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [37:36, 02:24](1826 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [06:52, 01:45](1795 MB) - -SYNOPSIS: -Starting Date/Time: 20241031 17:08:50 -Ending Date/Time: 20241031 18:33:25 -Total Time: 01h:24m:52s -Compiles Completed: 1/1 -Tests Completed: 2/2 +Tests Completed: 156/156 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/test_changes.list b/tests/test_changes.list index 2e6b76033d..f1f310d6ec 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,37 +1,154 @@ -cpld_control_p8_mixedmode intel -cpld_control_gfsv17 intel -cpld_control_gfsv17_iau intel -cpld_restart_gfsv17 intel -cpld_mpi_gfsv17 intel -cpld_control_sfs intel -cpld_debug_gfsv17 intel -cpld_control_p8 intel -cpld_control_p8.v2.sfc intel -cpld_restart_p8 intel -cpld_control_qr_p8 intel -cpld_restart_qr_p8 intel -cpld_2threads_p8 intel -cpld_decomp_p8 intel -cpld_mpi_p8 intel -cpld_control_ciceC_p8 intel -cpld_control_c192_p8 intel -cpld_restart_c192_p8 intel -cpld_bmark_p8 intel -cpld_restart_bmark_p8 intel -cpld_s2sa_p8 intel -cpld_control_noaero_p8 intel -cpld_control_nowave_noaero_p8 intel -cpld_debug_p8 intel -cpld_debug_noaero_p8 intel -cpld_control_c48 intel -cpld_warmstart_c48 intel -cpld_restart_c48 intel -cpld_control_p8_faster intel -cpld_control_pdlib_p8 intel -cpld_restart_pdlib_p8 intel -cpld_mpi_pdlib_p8 intel -cpld_debug_pdlib_p8 intel -atm_ds2s_docn_dice intel -cpld_control_nowave_noaero_p8 gnu -cpld_control_pdlib_p8 gnu -cpld_debug_pdlib_p8 gnu +atm_ds2s_docn_pcice intel +atmaero_control_p8 intel +atmaero_control_p8_rad intel +atmaero_control_p8_rad_micro intel +atmwav_control_noaero_p8 intel +control_CubedSphereGrid_debug intel +control_CubedSphereGrid intel +control_CubedSphereGrid_parallel intel +control_c48.v2.sfc intel +control_c48 gnu +control_csawmg_debug gnu +control_csawmg_debug intel +control_csawmg gnu +control_csawmg intel +control_debug_p8 gnu +control_debug_p8 intel +control_diag_debug gnu +control_diag_debug intel +control_flake gnu +control_flake intel +control_latlon intel +control_lndp_debug intel +control_p8_atmlnd_debug intel +control_p8_atmlnd intel +control_p8_atmlnd_sbs intel +control_p8_faster intel +control_p8 gnu +control_p8_ugwpv1 gnu +control_ras_debug gnu +control_ras_debug intel +control_ras gnu +control_ras intel +control_stochy_debug gnu +control_stochy_debug intel +control_stochy gnu +control_wam_debug gnu +control_wam intel +control_wrtGauss_netcdf_parallel_debug intel +control_wrtGauss_netcdf_parallel intel +conus13km_control gnu +conus13km_control intel +conus13km_debug_2threads gnu +conus13km_debug_2threads intel +conus13km_debug gnu +conus13km_debug intel +conus13km_debug_qr gnu +conus13km_debug_qr intel +conus13km_radar_tten_debug gnu +conus13km_radar_tten_debug intel +cpld_2threads_p8 intel +cpld_bmark_p8 intel +cpld_control_c192_p8 intel +cpld_control_c48 intel +cpld_control_ciceC_p8 intel +cpld_control_gfsv17 intel +cpld_control_noaero_p8_agrid intel +cpld_control_noaero_p8 intel +cpld_control_nowave_noaero_p8 gnu +cpld_control_nowave_noaero_p8 intel +cpld_control_p8.v2.sfc intel +cpld_control_p8 intel +cpld_control_p8_mixedmode intel +cpld_control_pdlib_p8 gnu +cpld_control_qr_p8 intel +cpld_control_sfs intel +cpld_debug_gfsv17 intel +cpld_debug_noaero_p8 intel +cpld_debug_p8 intel +cpld_debug_pdlib_p8 gnu +cpld_decomp_p8 intel +cpld_mpi_gfsv17 intel +cpld_mpi_p8 intel +cpld_regional_atm_fbh intel +cpld_s2sa_p8 intel +cpld_warmstart_c48 intel +gnv1_c96_no_nest_debug gnu +gnv1_c96_no_nest_debug intel +hafs_global_1nest_atm intel +hafs_global_multiple_4nests_atm intel +hafs_global_storm_following_1nest_atm intel +hafs_regional_1nest_atm intel +hafs_regional_atm intel +hafs_regional_atm_ocn intel +hafs_regional_atm_ocn_wav intel +hafs_regional_atm_thompson_gfdlsf intel +hafs_regional_atm_wav intel +hafs_regional_docn intel +hafs_regional_docn_oisst intel +hafs_regional_specified_moving_1nest_atm intel +hafs_regional_storm_following_1nest_atm intel +hafs_regional_storm_following_1nest_atm_ocn_debug intel +hafs_regional_storm_following_1nest_atm_ocn intel +hafs_regional_storm_following_1nest_atm_ocn_wav_inline intel +hafs_regional_storm_following_1nest_atm_ocn_wav intel +hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 intel +hafs_regional_telescopic_2nests_atm intel +hrrr_c3_debug gnu +hrrr_c3_debug intel +hrrr_control_2threads_dyn32_phy32 intel +hrrr_control_debug_dyn32_phy32 gnu +hrrr_control_debug_dyn32_phy32 intel +hrrr_control_debug gnu +hrrr_control_debug intel +hrrr_control_decomp_dyn32_phy32 gnu +hrrr_control_decomp_dyn32_phy32 intel +hrrr_control_decomp gnu +hrrr_control_dyn32_phy32 gnu +hrrr_control_dyn32_phy32 intel +hrrr_control gnu +hrrr_control_noqr gnu +hrrr_gf_debug gnu +hrrr_gf_debug intel +rap_2threads_dyn32_phy32 gnu +rap_2threads_dyn32_phy32 intel +rap_2threads gnu +rap_cires_ugwp_debug intel +rap_clm_lake_debug gnu +rap_clm_lake_debug intel +rap_control_debug_dyn32_phy32 gnu +rap_control_debug_dyn32_phy32 intel +rap_control_debug gnu +rap_control_debug intel +rap_control_dyn32_phy32 gnu +rap_control_dyn32_phy32 intel +rap_control_dyn64_phy32_debug gnu +rap_control_dyn64_phy32_debug intel +rap_control_dyn64_phy32 gnu +rap_control_dyn64_phy32 intel +rap_control gnu +rap_decomp gnu +rap_diag_debug gnu +rap_diag_debug intel +rap_flake_debug gnu +rap_flake_debug intel +rap_lndp_debug intel +rap_noah_debug intel +rap_noah_sfcdiff_cires_ugwp_debug gnu +rap_noah_sfcdiff_cires_ugwp_debug intel +rap_progcld_thompson_debug gnu +rap_progcld_thompson_debug intel +rap_sfcdiff_debug intel +rap_sfcdiff_decomp gnu +rap_sfcdiff gnu +rap_unified_drag_suite_debug intel +rap_unified_ugwp_debug intel +regional_atmaq_debug intel +regional_control_faster intel +regional_debug gnu +regional_debug intel +regional_spp_sppt_shum_skeb_dyn32_phy32 intel +rrfs_v1beta_debug gnu +rrfs_v1beta_debug intel +rrfs_v1beta gnu +rrfs_v1nssl_nohailnoccn intel diff --git a/tests/tests/cpld_control_pdlib_p8 b/tests/tests/cpld_control_pdlib_p8 index ab41e06f89..2403cd5113 100644 --- a/tests/tests/cpld_control_pdlib_p8 +++ b/tests/tests/cpld_control_pdlib_p8 @@ -109,6 +109,10 @@ if [[ $MACHINE_ID = orion ]] || [[ $RT_COMPILER = gnu ]]; then WLCLK=50 fi +if [[ $MACHINE_ID = jet ]]; then + WLCLK=50 +fi + export K_SPLIT=4 export N_SPLIT=5 diff --git a/tests/tests/cpld_control_sfs b/tests/tests/cpld_control_sfs index 91cfb35945..0cefb39256 100644 --- a/tests/tests/cpld_control_sfs +++ b/tests/tests/cpld_control_sfs @@ -88,6 +88,9 @@ fi export K_SPLIT=2 export N_SPLIT=5 +export NUDGE_QV=.false. +export VTDM4=0.05 + # HR4 GFSv17 GWD update export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. diff --git a/tests/tests/cpld_mpi_pdlib_p8 b/tests/tests/cpld_mpi_pdlib_p8 index 9bf46f5600..ed6d54b1a4 100644 --- a/tests/tests/cpld_mpi_pdlib_p8 +++ b/tests/tests/cpld_mpi_pdlib_p8 @@ -114,7 +114,7 @@ export N_SPLIT=5 export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -if [[ $MACHINE_ID = hera ]] || [[ $MACHINE_ID = orion ]]; then +if [[ $MACHINE_ID = hera ]] || [[ $MACHINE_ID = orion ]] || [[ $MACHINE_ID = jet ]]; then WLCLK=50 fi if [[ $MACHINE_ID = wcoss2 ]]; then From 058f07361b7f53a76e4cbb057aaebbbefffd34e5 Mon Sep 17 00:00:00 2001 From: Dusan Jovic <48258889+DusanJovic-NOAA@users.noreply.github.com> Date: Fri, 8 Nov 2024 14:47:57 -0500 Subject: [PATCH 08/24] Enable some of the intel llvm tests in rt conf + Second reconciliation PR from production/RRFS.v1 #2481 (#2458) * UFSWM - Enable some of the intel llvm tests in rt conf * UFSWM - Second reconciliation PR from production/RRFS.v1 related to FV3 unused and optional variables * FV3 - Second reconciliation PR from production/RRFS.v1 related to FV3 unused and optional variables * ccpp-physics - Second reconciliation PR from production/RRFS.v1 related to FV3 unused and optional variables --------- Co-authored-by: Grant Firl --- FV3 | 2 +- modulefiles/ufs_gaea.intel.lua | 2 +- modulefiles/ufs_gaea.intelllvm.lua | 11 +- modulefiles/ufs_hera.intelllvm.lua | 2 +- modulefiles/ufs_hercules.intelllvm.lua | 2 +- modulefiles/ufs_orion.intelllvm.lua | 2 +- tests/logs/RegressionTests_gaea.log | 578 +++++++++--------- tests/logs/RegressionTests_hera.log | 748 ++++++++++++------------ tests/logs/RegressionTests_hercules.log | 746 +++++++++++------------ tests/logs/RegressionTests_jet.log | 566 ++++++++---------- tests/logs/RegressionTests_orion.log | 572 +++++++++--------- tests/rt.conf | 99 +++- tests/rt_intelllvm.conf | 31 +- tests/test_changes.list | 164 +----- 14 files changed, 1694 insertions(+), 1831 deletions(-) diff --git a/FV3 b/FV3 index bd785e50f9..49967251b8 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit bd785e50f90985fb1330e36852297af38293415b +Subproject commit 49967251b83255bdac7ac2f9626d2714e8b83d07 diff --git a/modulefiles/ufs_gaea.intel.lua b/modulefiles/ufs_gaea.intel.lua index 8e8525c21e..834c8fc41f 100644 --- a/modulefiles/ufs_gaea.intel.lua +++ b/modulefiles/ufs_gaea.intel.lua @@ -1,5 +1,5 @@ help([[ - This module loads libraries required for building and running UFS Weather Model + This module loads libraries required for building and running UFS Weather Model on the NOAA RDHPC machine Gaea C5 using Intel-2023.1.0. ]]) diff --git a/modulefiles/ufs_gaea.intelllvm.lua b/modulefiles/ufs_gaea.intelllvm.lua index f91a712d27..01d8585454 100644 --- a/modulefiles/ufs_gaea.intelllvm.lua +++ b/modulefiles/ufs_gaea.intelllvm.lua @@ -1,16 +1,16 @@ help([[ - This module loads libraries required for building and running UFS Weather Model + 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") +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" +stack_intel_ver=os.getenv("stack_intel_ver") or "2023.2.0" load(pathJoin("stack-intel", stack_intel_ver)) -stack_cray_mpich_ver=os.getenv("stack_cray_mpich_ver") or "8.1.25" +stack_cray_mpich_ver=os.getenv("stack_cray_mpich_ver") or "8.1.28" load(pathJoin("stack-cray-mpich", stack_cray_mpich_ver)) stack_python_ver=os.getenv("stack_python_ver") or "3.10.13" @@ -27,8 +27,7 @@ load(pathJoin("nccmp", nccmp_ver)) unload("darshan-runtime") unload("cray-libsci") -unload("intel-classic/2023.1.0") -load("intel-oneapi/2023.1.0") +load("intel-classic/2023.2.0") setenv("I_MPI_CC", "icx") setenv("I_MPI_CXX", "icpx") diff --git a/modulefiles/ufs_hera.intelllvm.lua b/modulefiles/ufs_hera.intelllvm.lua index 49e9f2b4a9..7dfdd61ace 100644 --- a/modulefiles/ufs_hera.intelllvm.lua +++ b/modulefiles/ufs_hera.intelllvm.lua @@ -2,7 +2,7 @@ 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") +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_hercules.intelllvm.lua b/modulefiles/ufs_hercules.intelllvm.lua index 5fb97a59fc..2d5627b417 100644 --- a/modulefiles/ufs_hercules.intelllvm.lua +++ b/modulefiles/ufs_hercules.intelllvm.lua @@ -2,7 +2,7 @@ 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") +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_orion.intelllvm.lua b/modulefiles/ufs_orion.intelllvm.lua index 81f6a07b52..b464ca44c8 100644 --- a/modulefiles/ufs_orion.intelllvm.lua +++ b/modulefiles/ufs_orion.intelllvm.lua @@ -2,7 +2,7 @@ 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") +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)) diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index f84378cb31..7b7c810e3d 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -50c915d559ecbbc39d288ac9da24860f225597f1 +a825b5db2bab633240c281e478989d144055db41 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 99091f9742670bdebd84bd13f17b9115457d64dd FV3 (heads/develop-13-g99091f9) - 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) + 1947bad314f3c54594828964efc8938596965891 FV3 (remotes/origin/rrfsv1-to-ufs/dev2) + e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - f3eeb3442775b7239d98e3d09acc6d4f1d42233e FV3/ccpp/physics (EP4-889-gf3eeb344) + 0678f44c137957033d357b2168b40fb5ab029be6 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5338-g0678f44c) 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 @@ -39,292 +39,304 @@ 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-20241031 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_2275031 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_1514204 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [16:11, 14:31] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:05, 13:01](3181 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 19:05] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [16:58, 13:47](1910 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:24, 14:47](1939 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:54, 06:47](1074 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:34, 15:22](1872 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 19:25] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:39, 13:43](1900 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:11, 10:50] ( 1528 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [30:08, 27:32](1926 MB) - -PASS -- COMPILE 's2swa_intel' [18:15, 16:43] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [20:15, 15:35](3213 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:16, 15:46](3206 MB) -PASS -- TEST 'cpld_restart_p8_intel' [12:30, 09:09](3138 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [20:16, 15:36](3236 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [11:21, 08:50](3157 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [16:35, 13:40](3462 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [20:16, 15:23](3206 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [15:38, 13:04](3156 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [20:16, 15:40](3213 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:03, 10:05](3485 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:48, 07:02](3593 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [24:44, 19:07](4251 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:31, 11:57](4349 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:35, 09:35](3185 MB) - -PASS -- COMPILE 's2sw_intel' [16:11, 14:47] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [11:03, 08:28](1907 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:09, 13:38](1973 MB) - -PASS -- COMPILE 's2swa_debug_intel' [11:10, 09:14] ( 1418 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [25:00, 22:14](3272 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:10, 09:03] ( 1418 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:51, 08:57](1937 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [14:11, 12:35] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:50, 05:10](1966 MB) - -PASS -- COMPILE 's2s_intel' [16:11, 14:34] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [07:48, 05:34](2870 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:55, 02:21](2880 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:41, 01:02](2293 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:11, 15:48] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [19:37, 15:31](3217 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 19:19] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [26:59, 24:48](1915 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:58, 12:30](1089 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [31:57, 28:50](1893 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:11, 09:22] ( 1528 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:25, 32:11](1937 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:11, 11:27] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:01, 04:02](656 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [07:19, 03:12](1547 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:18, 03:20](1562 MB) -PASS -- TEST 'control_latlon_intel' [07:02, 03:16](1555 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:25, 03:46](1559 MB) -PASS -- TEST 'control_c48_intel' [13:26, 10:36](1573 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:48, 05:45](695 MB) -PASS -- TEST 'control_c192_intel' [15:18, 11:16](1682 MB) -PASS -- TEST 'control_c384_intel' [27:33, 23:39](1967 MB) -PASS -- TEST 'control_c384gdas_intel' [18:47, 14:36](1174 MB) -PASS -- TEST 'control_stochy_intel' [04:47, 02:14](609 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:23, 01:01](415 MB) -PASS -- TEST 'control_lndp_intel' [03:22, 01:43](606 MB) -PASS -- TEST 'control_iovr4_intel' [04:21, 02:33](609 MB) -PASS -- TEST 'control_iovr5_intel' [04:22, 02:32](609 MB) -PASS -- TEST 'control_p8_intel' [05:46, 03:43](1852 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:11, 03:16](1844 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:58, 03:43](1848 MB) -PASS -- TEST 'control_restart_p8_intel' [03:51, 02:06](996 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:02, 03:43](1843 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:45, 01:56](1005 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:00, 03:43](1842 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:00, 03:18](1925 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:41, 06:09](1850 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:56, 04:13](1899 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:43, 03:22](1849 MB) -PASS -- TEST 'merra2_thompson_intel' [05:45, 03:35](1848 MB) -PASS -- TEST 'regional_control_intel' [06:30, 04:41](847 MB) -PASS -- TEST 'regional_restart_intel' [04:29, 02:45](846 MB) -PASS -- TEST 'regional_decomp_intel' [06:31, 04:49](843 MB) -PASS -- TEST 'regional_2threads_intel' [04:46, 03:00](981 MB) -PASS -- TEST 'regional_noquilt_intel' [06:49, 04:35](1171 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:53, 04:52](847 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:31, 04:40](845 MB) -PASS -- TEST 'regional_wofs_intel' [08:34, 06:33](1571 MB) - -PASS -- COMPILE 'rrfs_intel' [15:11, 13:15] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:41, 06:47](988 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:59, 04:04](1146 MB) -PASS -- TEST 'rap_decomp_intel' [08:38, 07:01](990 MB) -PASS -- TEST 'rap_2threads_intel' [08:39, 06:17](1068 MB) -PASS -- TEST 'rap_restart_intel' [05:47, 03:49](868 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:43, 06:58](988 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:49, 07:13](987 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:42, 04:54](869 MB) -PASS -- TEST 'hrrr_control_intel' [06:11, 03:47](986 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:35, 03:49](984 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:38, 03:05](1063 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:41, 01:53](820 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:40, 07:00](983 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:22, 08:56](1944 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:22, 08:41](1934 MB) - -PASS -- COMPILE 'csawmg_intel' [13:11, 11:46] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [08:32, 06:38](944 MB) -PASS -- TEST 'control_ras_intel' [05:24, 03:29](647 MB) - -PASS -- COMPILE 'wam_intel' [15:11, 13:09] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:17, 11:44](1639 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:11, 11:15] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:47, 03:18](1847 MB) -PASS -- TEST 'regional_control_faster_intel' [06:30, 04:27](841 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [13:10, 11:25] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:39, 02:55](1578 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:44, 03:07](1582 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:21, 03:38](783 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:22, 03:03](784 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:26, 04:25](1085 MB) -PASS -- TEST 'control_ras_debug_intel' [04:22, 03:05](790 MB) -PASS -- TEST 'control_diag_debug_intel' [04:31, 02:55](1639 MB) -PASS -- TEST 'control_debug_p8_intel' [04:31, 03:06](1876 MB) -PASS -- TEST 'regional_debug_intel' [17:28, 16:01](884 MB) -PASS -- TEST 'rap_control_debug_intel' [07:26, 05:09](1165 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:28, 04:59](1157 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:29, 05:13](1164 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 05:04](1162 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:25, 05:03](1164 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:55, 05:21](1248 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:59, 05:06](1166 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:57, 05:05](1166 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:59, 05:02](1165 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:01, 05:00](1166 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:00, 04:48](1159 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:58, 05:05](1162 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:25, 08:08](1158 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:03, 04:55](1161 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:21, 06:07](1165 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:24, 05:10](1163 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:37, 08:36](1168 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:11, 08:19] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:51, 13:58](1668 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 10:58] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:05, 03:45](1020 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:35, 06:04](863 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:54, 03:21](862 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:33, 05:14](919 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:43, 02:45](911 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:33, 03:43](860 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:59, 04:12](770 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:29, 01:42](743 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 11:51] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:57, 02:00](1070 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:00, 00:59](1058 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:59, 01:20](948 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 12:03] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:39, 04:24](895 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:14, 07:09] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:21, 05:22](1039 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:21, 05:23](1040 MB) -PASS -- TEST 'conus13km_debug_intel' [15:56, 13:57](1120 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:29, 14:12](798 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:42, 07:57](1111 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:39, 13:38](1190 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:10, 07:58] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:48, 05:06](1070 MB) - -PASS -- COMPILE 'hafsw_intel' [16:11, 14:34] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:30, 05:04](713 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:50, 04:20](1065 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:38, 07:35](743 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:19, 11:36](779 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:35, 12:54](798 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:07, 05:22](469 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:44, 06:33](498 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:53, 02:45](398 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:01, 07:32](486 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:43, 03:43](507 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:53, 03:32](507 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:58, 04:34](588 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:32, 01:31](426 MB) -PASS -- TEST 'gnv1_nested_intel' [10:28, 05:54](1705 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:10, 08:05] ( 1470 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:57, 12:52](611 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [15:11, 13:27] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:57, 07:37](631 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:05, 07:42](808 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:11, 13:15] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:08, 06:05](811 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:11, 12:23] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [14:05, 06:14](735 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:05, 06:18](714 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [29:10, 20:08](891 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [12:15, 10:11] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [11:22, 02:37](763 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:24, 01:34](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [10:21, 02:29](645 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [10:22, 02:31](640 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [10:21, 02:31](643 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [10:21, 02:37](763 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [09:23, 02:38](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [09:21, 02:29](643 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:04, 06:13](692 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:55, 06:13](671 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [07:20, 02:37](751 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:21, 04:41](2030 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [09:23, 04:40](2032 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:18, 06:21] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:24, 05:32](748 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [12:11, 10:07] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:22, 02:37](762 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:41] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:41, 01:58](324 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:36, 01:33](461 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:31, 00:57](461 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:12, 02:04] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:48, 00:36](447 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:45, 00:21](252 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:12, 12:12] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:14, 04:09](1916 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 10:57] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:01, 08:51](1899 MB) - -PASS -- COMPILE 'atml_intel' [13:11, 11:33] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:07, 07:02](1873 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:01, 07:16](1872 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:39, 04:55](1023 MB) - -PASS -- COMPILE 'atml_debug_intel' [10:13, 08:58] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:57, 06:35](1909 MB) - -PASS -- COMPILE 'atmw_intel' [14:11, 13:05] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:49, 02:23](1880 MB) - -PASS -- COMPILE 'atmaero_intel' [14:11, 12:12] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:52, 06:28](3099 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:01, 06:56](2988 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:45, 07:19](2991 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [10:15, 08:42] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [21:20, 18:14](4443 MB) - -PASS -- COMPILE 'atm_fbh_intel' [13:11, 11:55] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [12:25, 09:32](799 MB) +PASS -- COMPILE 's2swa_32bit_intel' [17:14, 15:24] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:16, 12:41](3182 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:12, 20:24] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:56, 13:55](1896 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [35:03, 14:25](1929 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [24:51, 06:53](1063 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:56, 15:09](1874 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:14, 19:23] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:45, 14:04](1896 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:11, 09:09] ( 1528 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:53, 27:11](1930 MB) + +PASS -- COMPILE 's2swa_intel' [18:15, 16:12] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [20:20, 15:55](3216 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:47, 15:58](3212 MB) +PASS -- TEST 'cpld_restart_p8_intel' [24:29, 08:54](3140 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [21:30, 15:57](3236 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [24:10, 08:58](3159 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [16:51, 13:46](3461 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [19:37, 15:44](3210 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [16:51, 13:19](3156 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [21:34, 16:00](3217 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:35, 10:12](3489 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [28:43, 06:50](3599 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [35:57, 19:19](4253 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [27:19, 12:03](4354 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:37, 09:35](3187 MB) + +PASS -- COMPILE 's2sw_intel' [15:14, 13:44] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:04, 07:40](1912 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:03, 12:43](1966 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:11, 09:08] ( 1418 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [25:03, 22:22](3267 MB) + +PASS -- COMPILE 's2sw_debug_intel' [11:11, 09:31] ( 1418 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:58, 08:59](1942 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:13, 13:20] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:24, 05:21](1973 MB) + +PASS -- COMPILE 's2s_intel' [16:11, 14:30] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:48, 05:33](2865 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:49, 02:16](2880 MB) +PASS -- TEST 'cpld_restart_c48_intel' [05:48, 00:59](2296 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:12, 15:30] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [22:27, 15:44](3210 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:13, 18:43] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [46:57, 24:49](1922 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [22:53, 13:01](1103 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [39:58, 29:25](1894 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:12, 09:24] ( 1528 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [42:56, 31:18](1940 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:12, 14:08] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [16:22, 03:42](655 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [21:41, 03:16](1550 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [21:44, 03:18](1560 MB) +PASS -- TEST 'control_latlon_intel' [21:40, 03:10](1561 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [20:46, 03:20](1560 MB) +PASS -- TEST 'control_c48_intel' [26:46, 09:59](1572 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [21:13, 05:51](694 MB) +PASS -- TEST 'control_c192_intel' [26:00, 11:16](1679 MB) +PASS -- TEST 'control_c384_intel' [38:33, 23:33](1970 MB) +PASS -- TEST 'control_c384gdas_intel' [32:25, 14:35](1166 MB) +PASS -- TEST 'control_stochy_intel' [16:23, 01:50](612 MB) +PASS -- TEST 'control_stochy_restart_intel' [14:24, 01:35](416 MB) +PASS -- TEST 'control_lndp_intel' [18:22, 01:51](609 MB) +PASS -- TEST 'control_iovr4_intel' [19:23, 02:37](609 MB) +PASS -- TEST 'control_iovr5_intel' [20:24, 03:08](609 MB) +PASS -- TEST 'control_p8_intel' [21:47, 04:14](1848 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [21:58, 03:28](1841 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [21:48, 04:12](1843 MB) +PASS -- TEST 'control_restart_p8_intel' [12:40, 02:10](1000 MB) +PASS -- TEST 'control_noqr_p8_intel' [22:15, 03:42](1846 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [13:40, 02:28](1007 MB) +PASS -- TEST 'control_decomp_p8_intel' [22:06, 03:46](1842 MB) +PASS -- TEST 'control_2threads_p8_intel' [20:42, 03:12](1924 MB) +PASS -- TEST 'control_p8_lndp_intel' [22:36, 06:20](1850 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [21:39, 04:05](1897 MB) +PASS -- TEST 'control_p8_mynn_intel' [18:50, 03:19](1857 MB) +PASS -- TEST 'merra2_thompson_intel' [16:38, 04:18](1847 MB) +PASS -- TEST 'regional_control_intel' [07:31, 05:10](844 MB) +PASS -- TEST 'regional_restart_intel' [04:30, 02:36](846 MB) +PASS -- TEST 'regional_decomp_intel' [07:29, 05:25](850 MB) +PASS -- TEST 'regional_2threads_intel' [06:48, 02:56](973 MB) +PASS -- TEST 'regional_noquilt_intel' [06:30, 04:33](1169 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:33, 04:42](846 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:27, 04:38](848 MB) +PASS -- TEST 'regional_wofs_intel' [08:26, 06:17](1570 MB) + +PASS -- COMPILE 'rrfs_intel' [13:16, 11:59] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [20:14, 07:15](993 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [17:58, 04:01](1148 MB) +PASS -- TEST 'rap_decomp_intel' [13:51, 07:18](989 MB) +PASS -- TEST 'rap_2threads_intel' [11:02, 06:04](1072 MB) +PASS -- TEST 'rap_restart_intel' [13:36, 03:28](868 MB) +PASS -- TEST 'rap_sfcdiff_intel' [20:15, 07:05](990 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:51, 07:16](989 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [15:38, 04:58](868 MB) +PASS -- TEST 'hrrr_control_intel' [07:47, 03:42](986 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [10:30, 03:52](992 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:48, 03:06](1066 MB) +PASS -- TEST 'hrrr_control_restart_intel' [11:25, 01:54](820 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:49, 06:54](985 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:35, 08:48](1949 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [21:23, 08:32](1936 MB) + +PASS -- COMPILE 'csawmg_intel' [14:12, 13:08] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [15:27, 06:39](951 MB) +PASS -- TEST 'control_ras_intel' [12:21, 03:25](648 MB) + +PASS -- COMPILE 'wam_intel' [14:11, 12:54] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [24:15, 11:54](1640 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:12, 11:47] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [14:41, 03:08](1840 MB) +PASS -- TEST 'regional_control_faster_intel' [06:30, 04:27](842 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:11, 11:38] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [14:36, 02:37](1577 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [14:42, 02:36](1589 MB) +PASS -- TEST 'control_stochy_debug_intel' [14:22, 03:11](784 MB) +PASS -- TEST 'control_lndp_debug_intel' [13:22, 02:50](782 MB) +PASS -- TEST 'control_csawmg_debug_intel' [16:28, 04:54](1084 MB) +PASS -- TEST 'control_ras_debug_intel' [14:22, 03:34](789 MB) +PASS -- TEST 'control_diag_debug_intel' [13:33, 02:54](1641 MB) +PASS -- TEST 'control_debug_p8_intel' [14:29, 02:49](1867 MB) +PASS -- TEST 'regional_debug_intel' [27:45, 15:58](885 MB) +PASS -- TEST 'rap_control_debug_intel' [16:20, 05:04](1163 MB) +PASS -- TEST 'hrrr_control_debug_intel' [16:20, 04:56](1157 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [16:21, 05:08](1159 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [17:26, 05:02](1161 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [17:22, 05:07](1163 MB) +PASS -- TEST 'rap_diag_debug_intel' [17:27, 05:32](1248 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [17:20, 05:03](1163 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [16:22, 05:17](1163 MB) +PASS -- TEST 'rap_lndp_debug_intel' [15:21, 05:06](1161 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [15:21, 05:11](1166 MB) +PASS -- TEST 'rap_noah_debug_intel' [15:19, 05:11](1160 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [15:21, 05:11](1165 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [17:47, 08:06](1159 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [14:20, 05:23](1157 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [14:22, 06:09](1166 MB) +PASS -- TEST 'rap_flake_debug_intel' [14:24, 05:29](1166 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [19:28, 09:02](1165 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:11, 07:11] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [23:54, 14:13](1661 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 10:20] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [13:55, 04:10](1021 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [15:36, 06:21](865 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [12:34, 03:27](866 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [13:36, 05:23](924 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [12:31, 02:44](916 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [13:33, 03:26](863 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [13:23, 04:12](773 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [10:26, 01:53](747 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 12:49] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [11:53, 02:05](1068 MB) +PASS -- TEST 'conus13km_2threads_intel' [08:42, 01:01](1059 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [09:48, 01:38](942 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 11:15] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [14:37, 04:16](895 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:11, 08:49] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [12:21, 04:59](1037 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [12:19, 04:52](1037 MB) +PASS -- TEST 'conus13km_debug_intel' [21:43, 13:36](1122 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:57, 13:54](797 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [14:47, 07:53](1112 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:51, 14:13](1189 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:11, 08:14] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [15:21, 05:23](1063 MB) + +PASS -- COMPILE 'hafsw_intel' [15:14, 14:07] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [16:04, 05:43](711 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [14:27, 05:10](1064 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [18:35, 08:16](743 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [19:59, 11:50](772 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:16, 12:52](798 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:50, 05:22](474 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [16:13, 06:34](500 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [11:47, 02:43](398 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [16:38, 07:29](487 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [11:45, 03:41](507 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:49, 03:33](508 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [12:51, 04:35](585 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [10:33, 01:31](426 MB) +PASS -- TEST 'gnv1_nested_intel' [13:52, 05:17](1699 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:12, 07:56] ( 1470 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [21:48, 13:32](615 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:16, 14:15] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:56, 08:06](632 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:36, 08:20](807 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:15, 15:27] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:06, 06:29](808 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:12, 14:52] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [16:33, 06:10](736 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [18:04, 06:12](718 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [31:06, 20:01](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [12:11, 10:55] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [14:49, 02:36](764 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:24, 01:35](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [13:47, 02:28](642 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [14:11, 02:30](643 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [13:49, 02:30](641 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [12:49, 02:36](763 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [12:48, 02:37](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [12:48, 02:28](642 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [15:51, 06:13](693 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [14:15, 06:09](674 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [10:50, 02:37](751 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [11:21, 04:39](2032 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [11:21, 04:42](2032 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:15, 06:22] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [11:20, 05:31](736 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:13, 11:31] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [08:19, 02:36](763 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:48] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [07:35, 01:33](314 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [07:32, 01:05](462 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:18, 00:52](461 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [05:11, 03:52] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [07:37, 00:34](450 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [03:46, 00:38](256 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:12, 13:10] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [10:45, 04:00](1905 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:11, 11:49] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [13:44, 08:29](1900 MB) + +PASS -- COMPILE 'atml_intel' [15:12, 13:50] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:49, 07:36](1877 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [12:47, 07:53](1876 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:28, 04:45](1025 MB) + +PASS -- COMPILE 'atml_debug_intel' [11:15, 09:25] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:43, 07:04](1909 MB) + +PASS -- COMPILE 'atmw_intel' [15:13, 13:20] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:37, 02:54](1882 MB) + +PASS -- COMPILE 'atmaero_intel' [14:17, 12:12] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:45, 06:27](3097 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:44, 07:21](2987 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:58, 06:50](2997 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:15, 07:44] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [25:51, 18:11](4439 MB) + +PASS -- COMPILE 'atm_fbh_intel' [12:12, 10:45] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [12:00, 09:29](795 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [20:11, 19:06] +PASS -- TEST 'cpld_control_gfsv17_intelllvm' [17:21, 13:56](1908 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [10:11, 08:50] +PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [30:18, 27:38](1924 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [23:14, 21:56] +PASS -- TEST 'cpld_control_sfs_intelllvm' [15:57, 13:41](1900 MB) + +PASS -- COMPILE 's2swa_intelllvm' [17:11, 15:22] +PASS -- TEST 'cpld_control_p8_intelllvm' [18:17, 15:38](3214 MB) SYNOPSIS: -Starting Date/Time: 20241101 09:50:53 -Ending Date/Time: 20241101 11:31:57 -Total Time: 01h:42m:04s -Compiles Completed: 43/43 -Tests Completed: 188/188 +Starting Date/Time: 20241106 19:51:30 +Ending Date/Time: 20241106 22:23:12 +Total Time: 02h:32m:33s +Compiles Completed: 47/47 +Tests Completed: 192/192 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 5c4b7af873..3ddf04baf1 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -50c915d559ecbbc39d288ac9da24860f225597f1 +7db9d8898499f1fde77381853ea17f3bfcadb7a7 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 99091f9742670bdebd84bd13f17b9115457d64dd FV3 (heads/develop-13-g99091f9) + 1947bad314f3c54594828964efc8938596965891 FV3 (remotes/origin/rrfsv1-to-ufs/dev2) 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) @@ -27,382 +27,388 @@ 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-20241031 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264162 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_250409 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [15:11, 12:59] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:11, 10:28](3294 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 16:10] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:57, 16:41](1969 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:17, 17:33](2154 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:09, 08:02](1270 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:54, 18:48](1860 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:11, 16:11] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [22:42, 16:26](1968 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:10, 06:04] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:02, 25:49](1928 MB) - -PASS -- COMPILE 's2swa_intel' [15:11, 13:01] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [17:13, 13:02](3350 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [22:18, 13:22](3320 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:17, 06:52](3260 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [17:13, 12:52](3370 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [11:17, 06:59](3267 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [21:07, 12:17](3616 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [23:07, 13:38](3290 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [19:09, 10:22](3223 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [22:19, 12:47](3355 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [19:08, 10:13](3517 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:01, 06:21](3620 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [28:44, 15:53](4296 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:27, 09:47](4381 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:12, 07:19](3312 MB) - -PASS -- COMPILE 's2sw_intel' [14:11, 11:30] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:57, 07:37](1957 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:02, 11:07](2046 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:10, 06:28] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [25:15, 22:17](3399 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:10, 05:57] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:06, 08:55](1963 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:11, 10:58] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:04, 04:27](2040 MB) - -PASS -- COMPILE 's2s_intel' [13:11, 11:13] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:40, 07:45](3033 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:42, 02:24](3024 MB) -PASS -- TEST 'cpld_restart_c48_intel' [07:50, 01:25](2475 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:12, 17:34] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [20:12, 12:26](3345 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:12, 15:38] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:07, 27:18](2013 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [25:25, 13:37](1257 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [44:14, 31:47](1927 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:11, 06:09] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [38:58, 30:40](1906 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:11, 10:31] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:24, 03:25](702 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:43, 03:29](1583 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:49, 03:26](1588 MB) -PASS -- TEST 'control_latlon_intel' [05:40, 03:19](1589 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:47, 03:21](1583 MB) -PASS -- TEST 'control_c48_intel' [13:44, 11:25](1730 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:25, 06:18](851 MB) -PASS -- TEST 'control_c192_intel' [15:00, 12:07](1752 MB) -PASS -- TEST 'control_c384_intel' [24:10, 13:58](1976 MB) -PASS -- TEST 'control_c384gdas_intel' [21:12, 08:15](1381 MB) -PASS -- TEST 'control_stochy_intel' [03:21, 01:45](651 MB) -PASS -- TEST 'control_stochy_restart_intel' [07:25, 01:01](498 MB) -PASS -- TEST 'control_lndp_intel' [08:21, 01:40](657 MB) -PASS -- TEST 'control_iovr4_intel' [07:22, 02:32](645 MB) -PASS -- TEST 'control_iovr5_intel' [07:22, 02:33](648 MB) -PASS -- TEST 'control_p8_intel' [08:47, 03:40](1879 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [08:55, 03:09](1889 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [08:46, 03:35](1876 MB) -PASS -- TEST 'control_restart_p8_intel' [03:45, 02:03](1123 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:48, 03:41](1873 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:52, 01:59](1164 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:43, 03:47](1863 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:45, 03:32](1957 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:39, 06:33](1875 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:49, 04:00](1947 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:47, 03:08](1887 MB) -PASS -- TEST 'merra2_thompson_intel' [05:44, 03:22](1889 MB) -PASS -- TEST 'regional_control_intel' [07:34, 05:21](1087 MB) -PASS -- TEST 'regional_restart_intel' [10:36, 02:58](1076 MB) -PASS -- TEST 'regional_decomp_intel' [07:32, 05:38](1090 MB) -PASS -- TEST 'regional_2threads_intel' [05:31, 03:26](1084 MB) -PASS -- TEST 'regional_noquilt_intel' [07:36, 05:15](1386 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:38, 05:16](1093 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:31, 05:27](1093 MB) -PASS -- TEST 'regional_wofs_intel' [08:32, 07:01](1897 MB) - -PASS -- COMPILE 'rrfs_intel' [12:11, 10:12] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:42, 07:57](1100 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:22, 04:15](1248 MB) -PASS -- TEST 'rap_decomp_intel' [10:36, 08:15](1032 MB) -PASS -- TEST 'rap_2threads_intel' [09:36, 07:37](1167 MB) -PASS -- TEST 'rap_restart_intel' [08:44, 04:08](1097 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:39, 07:52](1096 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:34, 08:13](1038 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:45, 05:55](1123 MB) -PASS -- TEST 'hrrr_control_intel' [05:41, 04:00](1043 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:37, 04:13](1023 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:37, 03:50](1096 MB) -PASS -- TEST 'hrrr_control_restart_intel' [07:29, 02:15](990 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:45, 07:50](1097 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:27, 09:32](1983 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:24, 09:12](2052 MB) - -PASS -- COMPILE 'csawmg_intel' [11:11, 09:38] -PASS -- TEST 'control_csawmg_intel' [11:35, 06:20](1018 MB) -PASS -- TEST 'control_ras_intel' [10:23, 03:21](746 MB) - -PASS -- COMPILE 'csawmg_gnu' [06:11, 04:06] -PASS -- TEST 'control_csawmg_gnu' [11:36, 08:28](750 MB) - -PASS -- COMPILE 'wam_intel' [11:11, 09:43] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [17:44, 11:16](1659 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:10] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [10:53, 02:48](1886 MB) -PASS -- TEST 'regional_control_faster_intel' [11:44, 04:52](1079 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [14:11, 07:56] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [08:44, 02:10](1609 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:45, 02:13](1608 MB) -PASS -- TEST 'control_stochy_debug_intel' [09:22, 03:01](823 MB) -PASS -- TEST 'control_lndp_debug_intel' [08:23, 02:44](827 MB) -PASS -- TEST 'control_csawmg_debug_intel' [09:35, 04:14](1139 MB) -PASS -- TEST 'control_ras_debug_intel' [08:23, 02:45](833 MB) -PASS -- TEST 'control_diag_debug_intel' [07:47, 02:44](1679 MB) -PASS -- TEST 'control_debug_p8_intel' [06:41, 02:33](1908 MB) -PASS -- TEST 'regional_debug_intel' [20:37, 17:07](1101 MB) -PASS -- TEST 'rap_control_debug_intel' [08:24, 04:52](1207 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:24, 04:49](1203 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:23, 04:49](1204 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 04:52](1211 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:23, 05:02](1217 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:39, 05:16](1300 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:22, 04:59](1213 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:22, 05:01](1212 MB) -PASS -- TEST 'rap_lndp_debug_intel' [09:24, 04:54](1212 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [09:22, 05:00](1208 MB) -PASS -- TEST 'rap_noah_debug_intel' [13:25, 04:53](1215 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [13:23, 04:59](1210 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [16:24, 07:53](1211 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [16:24, 04:52](1203 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [17:25, 05:46](1212 MB) -PASS -- TEST 'rap_flake_debug_intel' [16:25, 04:56](1210 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [20:47, 08:29](1216 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [10:11, 04:28] -PASS -- TEST 'control_csawmg_debug_gnu' [13:37, 02:11](716 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:10, 04:45] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [24:46, 13:01](1684 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:13, 09:36] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [15:06, 04:03](1119 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [18:02, 06:42](1055 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [14:41, 03:30](983 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [16:44, 06:25](1080 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [12:47, 03:14](953 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [13:36, 03:40](926 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:01, 04:56](1029 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:33, 02:00](928 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:13, 09:36] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [11:57, 02:07](1194 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:56, 00:57](1109 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:50, 01:13](1092 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:13, 09:41] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [13:45, 04:20](973 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:10, 04:46] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [13:26, 04:58](1081 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [12:24, 04:42](1088 MB) -PASS -- TEST 'conus13km_debug_intel' [20:51, 13:34](1231 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:47, 13:45](923 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [14:41, 07:47](1158 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:40, 13:40](1292 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:48] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:26, 04:57](1140 MB) - -PASS -- COMPILE 'hafsw_intel' [17:12, 11:24] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:28, 04:53](732 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:36, 06:28](1102 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:30, 07:08](817 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:32, 13:20](839 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:45, 15:00](865 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:24, 05:42](489 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:29, 06:52](507 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:59, 02:50](368 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:50, 07:38](479 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:56, 03:55](519 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:13, 03:46](521 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:56, 04:25](574 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:33, 01:16](396 MB) -PASS -- TEST 'gnv1_nested_intel' [07:41, 04:05](1726 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [12:13, 05:14] ( 1465 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:57, 12:53](582 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [18:11, 10:56] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:17, 08:47](624 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:15, 08:56](791 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [17:12, 11:04] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:30, 06:29](714 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:11, 10:38] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:07, 06:32](811 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:38, 06:45](794 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:06, 16:29](1213 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:10, 06:22] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:22, 02:44](1153 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:39](1110 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:37](1038 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:21, 02:41](1028 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:41](1027 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:21, 02:44](1154 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:19, 02:44](1167 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:32, 02:40](1022 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:32, 06:28](1063 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:27, 06:23](1070 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:44](1166 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:23, 04:09](2468 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:20, 04:11](2405 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 03:20] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:20, 06:13](1086 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:33] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:21, 02:43](1149 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:01] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:36, 00:52](263 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:36, 00:55](325 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:40, 00:37](323 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:19] -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:45, 00:33](555 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:41, 00:20](458 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:13, 10:24] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:04, 03:47](1986 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:12, 09:59] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:09, 08:05](1979 MB) - -PASS -- COMPILE 'atml_intel' [12:12, 10:32] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:09, 04:25](1855 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:05, 04:28](1863 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:51, 02:32](1096 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:11, 06:01] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:04, 05:43](1879 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 10:14] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:55, 01:56](1924 MB) - -PASS -- COMPILE 'atmaero_intel' [13:11, 10:16] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:26, 04:14](3197 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:15, 04:58](3095 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:56, 04:57](3105 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:12, 05:07] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_gnu' [06:13, 04:10] -PASS -- TEST 'control_c48_gnu' [11:56, 09:21](1506 MB) -PASS -- TEST 'control_stochy_gnu' [05:26, 03:29](487 MB) -PASS -- TEST 'control_ras_gnu' [06:26, 04:58](496 MB) -PASS -- TEST 'control_p8_gnu' [08:05, 05:19](1451 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [07:59, 05:16](1452 MB) -PASS -- TEST 'control_flake_gnu' [12:30, 10:29](534 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:13, 04:07] -PASS -- TEST 'rap_control_gnu' [13:40, 11:40](807 MB) -PASS -- TEST 'rap_decomp_gnu' [14:05, 11:41](804 MB) -PASS -- TEST 'rap_2threads_gnu' [12:43, 10:38](917 MB) -PASS -- TEST 'rap_restart_gnu' [08:11, 05:53](572 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [14:09, 11:21](842 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:49, 11:34](805 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [11:00, 08:33](572 MB) -PASS -- TEST 'hrrr_control_gnu' [07:45, 05:52](804 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:44, 05:52](826 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [07:45, 05:20](907 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:40, 05:53](805 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [05:36, 03:12](555 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:37, 03:06](648 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [13:48, 11:28](805 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:13, 06:34] -PASS -- TEST 'control_diag_debug_gnu' [03:55, 01:34](1267 MB) -PASS -- TEST 'regional_debug_gnu' [12:40, 10:55](736 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:26, 02:26](816 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:25, 02:25](812 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:24, 02:29](821 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:25, 02:29](820 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:46, 02:42](900 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:27, 03:52](815 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:23, 02:32](815 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:24, 02:29](812 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:22, 01:33](453 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:23, 01:39](446 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:46, 01:34](1427 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:29, 02:31](821 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:29, 02:49](815 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [07:06, 04:07](820 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:12, 02:21] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 03:55] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [12:33, 10:13](700 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:37, 05:15](694 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [11:39, 09:34](738 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:39, 04:50](734 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:42, 05:46](686 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:52, 07:24](545 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:40, 02:43](528 MB) -PASS -- TEST 'conus13km_control_gnu' [06:01, 03:15](862 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:50, 06:04](865 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:51, 01:55](555 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:12, 09:11] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:44, 06:15](720 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:17] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:26, 02:30](704 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:39, 02:29](701 MB) -PASS -- TEST 'conus13km_debug_gnu' [09:55, 06:50](886 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [09:55, 06:46](570 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [10:53, 08:20](883 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:48, 06:50](949 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:28] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:27, 02:39](723 MB) - -PASS -- COMPILE 's2swa_gnu' [17:13, 15:32] - -PASS -- COMPILE 's2s_gnu' [17:13, 15:11] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [22:14, 19:25](1474 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:05] - -PASS -- COMPILE 's2sw_pdlib_gnu' [18:12, 15:21] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [35:10, 32:41](1445 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [06:11, 02:57] - -PASS -- COMPILE 'datm_cdeps_gnu' [16:11, 14:52] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:21, 03:21](689 MB) - -PASS -- COMPILE 'atm_fbh_intel' [11:11, 09:28] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:35, 11:34](1086 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:14, 12:52] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:13, 10:43](3293 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:15, 16:12] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:02, 17:35](1960 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:16, 18:28](2121 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:08, 08:25](1274 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:59, 19:50](1872 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:15, 16:16] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:48, 17:12](1962 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 05:57] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:03, 26:20](1922 MB) + +PASS -- COMPILE 's2swa_intel' [14:15, 13:01] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:14, 13:00](3355 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:24, 13:09](3341 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:23, 07:07](3258 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:14, 13:04](3363 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:23, 07:07](3277 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [16:14, 12:32](3628 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:14, 13:03](3341 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:13, 10:36](3218 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:19, 15:14](3336 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:07, 10:24](3525 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:49, 06:25](3624 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [23:43, 15:33](4294 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:03, 09:25](4375 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:11, 07:30](3301 MB) + +PASS -- COMPILE 's2sw_intel' [13:14, 11:55] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:58, 07:51](1978 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:07, 11:02](2068 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:11, 05:55] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [25:16, 22:46](3385 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:35] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:02, 09:22](2006 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:14, 11:38] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:02, 04:29](2030 MB) + +PASS -- COMPILE 's2s_intel' [13:14, 11:43] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:45, 07:58](3043 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:44, 02:31](3030 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:42, 01:25](2480 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:12, 16:42] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [15:17, 12:27](3348 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:12, 15:42] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:12, 27:59](2008 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:12, 14:01](1275 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:05, 32:53](1924 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:12, 05:47] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:05, 30:38](1959 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:10, 10:39] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:28, 03:21](700 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:44, 03:14](1587 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:47, 03:15](1591 MB) +PASS -- TEST 'control_latlon_intel' [05:37, 03:12](1578 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:44, 03:15](1585 MB) +PASS -- TEST 'control_c48_intel' [13:41, 11:39](1714 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:25, 06:38](846 MB) +PASS -- TEST 'control_c192_intel' [13:53, 12:06](1755 MB) +PASS -- TEST 'control_c384_intel' [16:45, 13:40](1982 MB) +PASS -- TEST 'control_c384gdas_intel' [12:03, 08:07](1378 MB) +PASS -- TEST 'control_stochy_intel' [03:22, 01:40](655 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:23, 00:59](490 MB) +PASS -- TEST 'control_lndp_intel' [03:21, 01:34](652 MB) +PASS -- TEST 'control_iovr4_intel' [04:25, 02:29](650 MB) +PASS -- TEST 'control_iovr5_intel' [04:22, 02:30](651 MB) +PASS -- TEST 'control_p8_intel' [05:56, 03:40](1878 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:58, 03:03](1886 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:49, 03:35](1878 MB) +PASS -- TEST 'control_restart_p8_intel' [03:42, 02:03](1121 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:45, 03:37](1866 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:51, 02:05](1148 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:46, 03:42](1857 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:42, 03:31](1956 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:41, 06:39](1877 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:47, 04:10](1952 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:51, 03:04](1892 MB) +PASS -- TEST 'merra2_thompson_intel' [05:50, 03:22](1889 MB) +PASS -- TEST 'regional_control_intel' [07:33, 05:25](1091 MB) +PASS -- TEST 'regional_restart_intel' [04:32, 02:54](1084 MB) +PASS -- TEST 'regional_decomp_intel' [07:30, 05:45](1081 MB) +PASS -- TEST 'regional_2threads_intel' [05:31, 03:22](1087 MB) +PASS -- TEST 'regional_noquilt_intel' [07:34, 05:21](1386 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:35, 05:23](1079 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:33, 05:23](1088 MB) +PASS -- TEST 'regional_wofs_intel' [08:34, 06:52](1899 MB) + +PASS -- COMPILE 'rrfs_intel' [12:10, 10:09] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:43, 07:51](1092 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:03, 04:07](1240 MB) +PASS -- TEST 'rap_decomp_intel' [10:34, 08:10](1037 MB) +PASS -- TEST 'rap_2threads_intel' [09:32, 07:25](1166 MB) +PASS -- TEST 'rap_restart_intel' [05:41, 04:05](1107 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:40, 07:46](1097 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:36, 08:10](1034 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:41, 05:53](1125 MB) +PASS -- TEST 'hrrr_control_intel' [05:41, 03:58](1032 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:31, 04:05](1025 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:32, 03:40](1100 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:25, 02:11](995 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:46, 07:48](1084 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:23, 09:34](1979 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:23, 09:16](2063 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 09:53] +PASS -- TEST 'control_csawmg_intel' [08:47, 06:17](1013 MB) +PASS -- TEST 'control_ras_intel' [05:24, 03:18](743 MB) + +PASS -- COMPILE 'wam_intel' [11:10, 10:02] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:51, 11:21](1665 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:10, 10:11] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:47, 02:46](1889 MB) +PASS -- TEST 'regional_control_faster_intel' [06:33, 04:58](1093 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 07:47] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:47, 02:18](1600 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:50, 02:11](1611 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:23, 03:04](828 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:23, 02:49](817 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:42, 04:19](1127 MB) +PASS -- TEST 'control_ras_debug_intel' [04:24, 02:50](828 MB) +PASS -- TEST 'control_diag_debug_intel' [04:51, 02:46](1681 MB) +PASS -- TEST 'control_debug_p8_intel' [04:39, 02:39](1891 MB) +PASS -- TEST 'regional_debug_intel' [19:34, 18:07](1097 MB) +PASS -- TEST 'rap_control_debug_intel' [07:23, 05:09](1216 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:26, 04:59](1200 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:21, 05:00](1211 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:20, 05:01](1209 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 05:05](1207 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:34, 05:21](1286 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 05:08](1203 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:21, 05:10](1215 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:21, 05:08](1213 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:20, 04:58](1210 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:21, 04:53](1217 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:20, 05:09](1211 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:21, 08:13](1208 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:21, 04:56](1210 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:23, 05:58](1217 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:21, 05:01](1217 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:37, 08:50](1208 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:10, 04:23] +PASS -- TEST 'control_csawmg_debug_gnu' [04:52, 02:26](721 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 04:34] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:56, 13:28](1669 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:00] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:05, 03:55](1118 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:39, 06:38](1031 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:36, 03:26](987 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:31, 06:14](1092 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:31, 03:22](950 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:31, 03:46](938 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:39, 04:55](1023 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:26, 01:51](922 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:10, 10:12] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:54, 02:02](1188 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:43, 00:51](1110 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:43, 01:13](1093 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 10:16] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:43, 04:21](997 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:39] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:20, 05:02](1087 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:21, 04:52](1080 MB) +PASS -- TEST 'conus13km_debug_intel' [16:47, 14:43](1243 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:44, 14:22](938 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:41, 07:59](1154 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:41, 14:56](1294 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:28] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:24, 05:01](1147 MB) + +PASS -- COMPILE 'hafsw_intel' [13:11, 11:36] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:16, 05:05](719 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:31, 05:50](1093 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:26, 06:58](811 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:15, 13:44](839 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:26, 15:23](875 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:03, 05:34](482 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:19, 06:45](503 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:44, 02:41](364 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:12, 07:17](463 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:49, 03:41](518 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:57, 03:31](515 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:52, 04:07](573 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:12](390 MB) +PASS -- TEST 'gnv1_nested_intel' [06:39, 04:01](1747 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:12, 04:59] ( 1465 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:48, 13:17](559 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:20] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:58, 08:54](662 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:01, 09:00](687 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 11:37] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:28, 06:34](722 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:11, 10:42] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:17, 06:34](811 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:15, 06:38](797 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:53, 16:33](1210 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:25] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:17, 02:47](1156 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:40](1123 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:15, 02:43](1027 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:41](1017 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:16, 02:45](1021 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:16, 02:43](1150 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:15, 02:47](1150 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:15, 02:43](1038 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:17, 06:15](1059 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:15, 06:15](1042 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 02:44](1160 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:17, 04:00](2498 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:17, 03:56](2456 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:13] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:16, 06:24](1088 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:13, 06:37] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:16, 02:44](1138 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:58] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:28, 00:45](262 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:46](329 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:23, 00:33](323 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:22] +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:31, 00:29](568 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:30, 00:16](465 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:10, 10:27] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:58, 03:42](1979 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 10:19] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:53, 07:58](1979 MB) + +PASS -- COMPILE 'atml_intel' [12:10, 10:51] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:54, 04:27](1854 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:53, 04:22](1834 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:42, 02:29](1088 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:11, 05:32] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:49, 06:01](1870 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 10:41] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:46, 01:54](1913 MB) + +PASS -- COMPILE 'atmaero_intel' [12:10, 10:35] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:55, 04:12](3178 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:53, 04:57](3087 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:42, 05:02](3086 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:37] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_fbh_intel' [11:10, 09:39] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:25, 11:57](1079 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:11, 06:42] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:35, 08:27](1041 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:10, 06:36] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:37, 04:57](972 MB) + +PASS -- COMPILE 'atm_gnu' [06:11, 04:39] +PASS -- TEST 'control_c48_gnu' [11:40, 09:35](1507 MB) +PASS -- TEST 'control_stochy_gnu' [05:19, 03:32](459 MB) +PASS -- TEST 'control_ras_gnu' [06:20, 04:57](502 MB) +PASS -- TEST 'control_p8_gnu' [07:52, 05:17](1448 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [07:47, 05:10](1449 MB) +PASS -- TEST 'control_flake_gnu' [12:22, 10:29](535 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:11, 04:07] +PASS -- TEST 'rap_control_gnu' [13:30, 11:28](814 MB) +PASS -- TEST 'rap_decomp_gnu' [13:29, 11:41](809 MB) +PASS -- TEST 'rap_2threads_gnu' [12:34, 10:28](917 MB) +PASS -- TEST 'rap_restart_gnu' [07:39, 05:48](568 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:34, 11:20](839 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:31, 11:41](840 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:38, 08:26](573 MB) +PASS -- TEST 'hrrr_control_gnu' [07:33, 05:54](838 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:29, 05:52](826 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [07:32, 05:21](907 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:30, 05:55](838 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:25, 03:00](558 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:24, 02:56](652 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [13:41, 11:09](808 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 03:51] +PASS -- TEST 'control_csawmg_gnu' [10:32, 08:45](738 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:34] +PASS -- TEST 'control_diag_debug_gnu' [03:41, 01:38](1268 MB) +PASS -- TEST 'regional_debug_gnu' [13:34, 11:26](737 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:20, 02:42](815 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:21, 02:37](810 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:20, 02:42](815 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:19, 02:41](816 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:32, 02:52](900 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:20, 04:11](815 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:20, 02:41](820 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:20, 02:40](814 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:20, 01:34](449 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:21, 01:43](447 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:41, 01:35](1408 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:20, 02:45](818 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:21, 02:52](816 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:35, 04:27](824 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:22] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:04] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:29, 09:52](701 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:28, 05:14](697 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:33, 09:00](742 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:32, 04:47](738 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:27, 05:19](695 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:34, 07:23](548 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:24, 02:39](528 MB) +PASS -- TEST 'conus13km_control_gnu' [05:51, 03:18](865 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:40, 05:50](859 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:40, 01:49](560 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:37] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:36, 05:49](723 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:30] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:22, 02:38](714 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:21, 02:33](704 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:52, 07:03](877 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:50, 06:58](570 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [09:42, 07:52](872 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:38, 07:00](950 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:12, 06:31] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:21, 02:35](739 MB) + +PASS -- COMPILE 's2swa_gnu' [18:12, 16:23] + +PASS -- COMPILE 's2s_gnu' [17:12, 15:55] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [21:02, 19:01](1512 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:07] + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:11, 16:26] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [32:54, 30:46](1454 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:49] + +PASS -- COMPILE 'datm_cdeps_gnu' [17:12, 15:33] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:16, 03:05](692 MB) SYNOPSIS: -Starting Date/Time: 20241101 13:15:16 -Ending Date/Time: 20241101 15:27:45 -Total Time: 02h:12m:47s -Compiles Completed: 59/59 -Tests Completed: 246/246 +Starting Date/Time: 20241106 16:20:47 +Ending Date/Time: 20241106 18:17:24 +Total Time: 01h:56m:54s +Compiles Completed: 61/61 +Tests Completed: 248/248 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 00065053c4..c3a6b0a078 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7 +1,7 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -50c915d559ecbbc39d288ac9da24860f225597f1 +7db9d8898499f1fde77381853ea17f3bfcadb7a7 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 99091f9742670bdebd84bd13f17b9115457d64dd FV3 (heads/develop-13-g99091f9) - 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) + 1947bad314f3c54594828964efc8938596965891 FV3 (remotes/origin/rrfsv1-to-ufs/dev2) + e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - f3eeb3442775b7239d98e3d09acc6d4f1d42233e FV3/ccpp/physics (EP4-889-gf3eeb344) + 0678f44c137957033d357b2168b40fb5ab029be6 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5338-g0678f44c) 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 @@ -39,379 +39,385 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20241031 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_524998 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_3515789 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-r) - USE ROCOTO -PASS -- COMPILE 's2swa_32bit_intel' [16:57, 16:57] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:24, 13:38](2139 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:34, 24:34] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [14:28, 13:38](1983 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:36, 14:40](2286 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:51, 07:50](1344 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:00, 15:06](1902 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:45, 24:45] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [13:30, 13:01](1989 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 08:11] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:01, 25:09](1976 MB) - -PASS -- COMPILE 's2swa_intel' [17:03, 17:03] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [14:51, 13:57](2207 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:03, 14:07](2204 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:46, 08:00](1983 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [15:17, 14:19](2222 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:18, 09:21](1730 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [17:29, 16:38](2553 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:59, 14:16](2201 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:01, 12:15](2093 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:21, 14:31](2208 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:56, 15:30](2971 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [07:43, 05:57](2920 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [28:02, 21:56](3818 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:54, 09:34](3639 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:42, 07:03](2107 MB) - -PASS -- COMPILE 's2sw_intel' [10:38, 10:38] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:20, 14:39](2012 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:48, 11:01](2100 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:34, 05:34] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [20:34, 19:28](2229 MB) - -PASS -- COMPILE 's2sw_debug_intel' [04:53, 04:53] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:59, 08:22](2036 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [09:43, 09:43] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:59, 04:05](2057 MB) - -PASS -- COMPILE 's2s_intel' [09:40, 09:40] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [06:25, 05:56](3038 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:07, 03:24](3023 MB) -PASS -- TEST 'cpld_restart_c48_intel' [01:39, 01:22](2472 MB) - -PASS -- COMPILE 's2swa_faster_intel' [12:12, 12:12] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [14:29, 13:34](2210 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:59, 18:58] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:36, 22:51](2075 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:28, 11:24](1412 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:37, 25:49](1994 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:02, 06:02] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:14, 26:31](2007 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:03, 12:03] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:04, 02:50](723 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:03, 02:41](1588 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:13, 02:47](1601 MB) -PASS -- TEST 'control_latlon_intel' [02:59, 02:43](1603 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:11, 02:42](1595 MB) -PASS -- TEST 'control_c48_intel' [18:34, 18:07](1706 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:37, 10:17](825 MB) -PASS -- TEST 'control_c192_intel' [10:55, 10:23](1779 MB) -PASS -- TEST 'control_c384_intel' [16:17, 15:10](2011 MB) -PASS -- TEST 'control_c384gdas_intel' [10:35, 08:56](1500 MB) -PASS -- TEST 'control_stochy_intel' [01:40, 01:28](666 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:12, 00:57](534 MB) -PASS -- TEST 'control_lndp_intel' [02:53, 02:02](675 MB) -PASS -- TEST 'control_iovr4_intel' [02:57, 02:20](650 MB) -PASS -- TEST 'control_iovr5_intel' [02:29, 02:14](666 MB) -PASS -- TEST 'control_p8_intel' [04:29, 03:49](1885 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:31, 02:43](1911 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:32, 03:43](1883 MB) -PASS -- TEST 'control_restart_p8_intel' [03:08, 02:27](1156 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:33, 03:46](1870 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:23, 01:47](1192 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:55, 03:18](1865 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:45, 03:05](1960 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:19, 07:49](1876 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:09, 04:21](1963 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:22, 03:27](1890 MB) -PASS -- TEST 'merra2_thompson_intel' [04:35, 03:38](1891 MB) -PASS -- TEST 'regional_control_intel' [06:14, 05:48](1187 MB) -PASS -- TEST 'regional_restart_intel' [02:51, 02:37](1159 MB) -PASS -- TEST 'regional_decomp_intel' [05:46, 05:23](1179 MB) -PASS -- TEST 'regional_2threads_intel' [04:05, 03:32](1150 MB) -PASS -- TEST 'regional_noquilt_intel' [04:53, 04:29](1513 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:02, 04:36](1189 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:05, 04:41](1194 MB) -PASS -- TEST 'regional_wofs_intel' [09:16, 08:48](2086 MB) - -PASS -- COMPILE 'rrfs_intel' [12:06, 12:06] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [07:22, 06:39](1202 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:48, 04:10](1409 MB) -PASS -- TEST 'rap_decomp_intel' [07:36, 06:59](1145 MB) -PASS -- TEST 'rap_2threads_intel' [07:04, 06:20](1361 MB) -PASS -- TEST 'rap_restart_intel' [04:06, 03:34](1111 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:26, 06:42](1219 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:44, 07:03](1135 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:08, 06:24](1180 MB) -PASS -- TEST 'hrrr_control_intel' [04:08, 03:29](1075 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:11, 03:34](1041 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [09:09, 08:24](1107 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:12, 01:56](1031 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:22, 06:35](1194 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:38, 08:23](1997 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:15, 08:00](2163 MB) - -PASS -- COMPILE 'csawmg_intel' [11:43, 11:43] -PASS -- TEST 'control_csawmg_intel' [06:39, 06:14](1044 MB) -PASS -- TEST 'control_ras_intel' [03:05, 02:58](802 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:08, 04:08] -PASS -- TEST 'control_csawmg_gnu' [07:54, 07:33](1058 MB) - -PASS -- COMPILE 'wam_intel' [11:25, 11:25] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [10:26, 09:49](1661 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:38, 13:37] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:20, 03:30](1898 MB) -PASS -- TEST 'regional_control_faster_intel' [06:16, 05:52](1195 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:32, 09:31] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:30, 02:00](1628 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:34, 01:57](1616 MB) -PASS -- TEST 'control_stochy_debug_intel' [02:50, 02:35](836 MB) -PASS -- TEST 'control_lndp_debug_intel' [02:39, 02:27](833 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:07, 04:40](1147 MB) -PASS -- TEST 'control_ras_debug_intel' [02:37, 02:25](848 MB) -PASS -- TEST 'control_diag_debug_intel' [03:09, 02:34](1686 MB) -PASS -- TEST 'control_debug_p8_intel' [03:40, 03:03](1915 MB) -PASS -- TEST 'regional_debug_intel' [15:56, 15:26](1169 MB) -PASS -- TEST 'rap_control_debug_intel' [04:23, 04:08](1224 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:20, 04:05](1215 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:18, 04:08](1223 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:37, 04:18](1226 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:22, 04:13](1218 MB) -PASS -- TEST 'rap_diag_debug_intel' [04:52, 04:30](1310 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:34, 04:24](1220 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:50, 04:34](1229 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:32, 04:18](1228 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:30, 04:16](1224 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:26, 04:12](1228 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:30, 04:16](1222 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:13, 07:01](1217 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:16, 04:05](1217 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:06, 04:57](1228 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:35, 04:19](1227 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:47, 07:02](1227 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:39, 04:39] -PASS -- TEST 'control_csawmg_debug_gnu' [03:37, 03:18](1038 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:33, 04:33] ( 837 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:27, 09:26] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:40, 04:02](1208 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:55, 06:17](1152 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:57, 03:10](1027 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:36, 05:59](1273 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:14, 08:08](1031 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:11, 03:29](979 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:31, 04:50](1112 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:10, 01:51](950 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:24, 09:24] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:21, 01:46](1280 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:17, 00:50](1181 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:38, 01:06](1140 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:01, 09:01] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:16, 03:51](1069 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:43, 04:42] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:14, 04:59](1106 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:26, 04:11](1093 MB) -PASS -- TEST 'conus13km_debug_intel' [12:32, 11:58](1334 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [12:25, 11:59](992 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [07:57, 07:28](1252 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:15, 11:47](1414 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:57, 03:57] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:49, 04:36](1153 MB) - -PASS -- COMPILE 'hafsw_intel' [10:40, 10:40] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:42, 05:44](857 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:47, 05:28](1264 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:45, 06:43](928 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:32, 14:35](956 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:26, 15:17](972 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:26, 06:48](596 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:35, 07:24](607 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:53, 03:23](433 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:45, 08:08](551 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:39, 04:07](605 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:23, 04:25](609 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:42, 04:57](657 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:30, 01:13](452 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:01, 07:01] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:38, 11:55](632 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:39, 17:39] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:51, 15:12](731 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:41, 16:49](827 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:44, 13:43] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:05, 10:39](813 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:19, 13:18] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:41, 08:49](920 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:08, 07:12](897 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:19, 16:43](1341 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:52, 06:52] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:10, 03:03](1151 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:51, 01:46](1096 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:57, 02:51](1017 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:58, 02:50](1023 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:56, 02:52](1018 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:59, 02:54](1142 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:22, 03:17](1147 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:11, 04:06](1023 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:52, 05:11](1170 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:46, 05:06](1149 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:24, 03:21](1141 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:11, 03:04](2451 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:13, 03:08](2395 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:40, 03:40] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:22, 09:16](1069 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:03, 06:03] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:15, 03:08](1153 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [00:49, 00:49] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:15, 00:57](331 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:09, 00:56](572 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:58, 00:37](568 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:26, 16:25] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:30, 03:52](2028 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:57, 08:57] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:28, 07:50](2032 MB) - -PASS -- COMPILE 'atml_intel' [16:13, 16:13] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:26, 06:23](1882 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:32, 06:31](1893 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:45, 03:47](1152 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:38, 07:38] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:55, 05:04](1932 MB) - -PASS -- COMPILE 'atmw_intel' [10:02, 10:01] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:20, 01:40](1938 MB) - -PASS -- COMPILE 'atmaero_intel' [09:37, 09:37] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:46, 03:58](2007 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:31, 05:47](1785 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:53, 08:55](1804 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [03:54, 03:54] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [19:17, 17:54](4538 MB) - -PASS -- COMPILE 'atm_gnu' [04:12, 04:12] -PASS -- TEST 'control_c48_gnu' [21:28, 20:42](1521 MB) -PASS -- TEST 'control_stochy_gnu' [02:33, 02:22](719 MB) -PASS -- TEST 'control_ras_gnu' [04:08, 03:57](721 MB) -PASS -- TEST 'control_p8_gnu' [04:59, 04:17](1722 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:43, 04:06](1700 MB) -PASS -- TEST 'control_flake_gnu' [04:51, 04:39](811 MB) - -PASS -- COMPILE 'rrfs_gnu' [04:35, 04:35] -PASS -- TEST 'rap_control_gnu' [09:04, 08:22](1072 MB) -PASS -- TEST 'rap_decomp_gnu' [11:32, 10:53](1071 MB) -PASS -- TEST 'rap_2threads_gnu' [08:04, 07:28](1110 MB) -PASS -- TEST 'rap_restart_gnu' [04:44, 04:10](878 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:49, 11:11](1071 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:03, 08:23](1071 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:07, 08:25](877 MB) -PASS -- TEST 'hrrr_control_gnu' [05:10, 04:23](1059 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:12, 04:31](1127 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:37, 03:55](1018 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [04:42, 04:19](1058 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [05:03, 04:29](898 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:14, 02:50](923 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:37, 07:49](1074 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [05:53, 05:53] -PASS -- TEST 'control_diag_debug_gnu' [02:04, 01:37](1620 MB) -PASS -- TEST 'regional_debug_gnu' [07:19, 06:56](1100 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:25, 02:13](1094 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:18, 02:08](1084 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:58, 02:45](1088 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:30, 02:19](1094 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:22, 03:04](1263 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:26, 03:11](1089 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:37, 02:23](1093 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:20, 02:10](1085 MB) -PASS -- TEST 'control_ras_debug_gnu' [01:25, 01:16](722 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:06, 01:56](724 MB) -PASS -- TEST 'control_debug_p8_gnu' [01:51, 01:24](1699 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:31, 02:19](1091 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [02:39, 02:27](1096 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:20, 04:44](1093 MB) - -PASS -- COMPILE 'wam_debug_gnu' [06:52, 06:52] -PASS -- TEST 'control_wam_debug_gnu' [07:57, 07:29](1549 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [09:09, 09:09] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:22, 07:44](952 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:49, 03:58](942 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:24, 06:51](963 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:39, 03:50](889 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:09, 05:24](939 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:49, 06:01](857 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:16, 02:54](853 MB) -PASS -- TEST 'conus13km_control_gnu' [03:20, 02:43](1257 MB) -PASS -- TEST 'conus13km_2threads_gnu' [01:45, 01:10](1164 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:10, 01:37](923 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [16:49, 16:48] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:18, 04:58](980 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [12:13, 12:12] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:16, 02:04](969 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:17, 02:04](958 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:28, 06:57](1271 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:27, 05:52](961 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [03:43, 03:17](1181 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [05:54, 05:23](1337 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [14:07, 14:06] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:23, 02:10](995 MB) - -PASS -- COMPILE 's2swa_gnu' [22:19, 22:19] - -PASS -- COMPILE 's2s_gnu' [28:44, 28:42] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [16:54, 16:01](2708 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [06:42, 06:42] - -PASS -- COMPILE 's2sw_pdlib_gnu' [18:00, 18:00] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [41:10, 40:23](3040 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:26, 04:25] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:29, 14:43](2914 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [17:07, 17:07] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:45, 05:39](758 MB) - -PASS -- COMPILE 'atm_fbh_intel' [08:51, 08:50] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [28:26, 28:04](1082 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:48, 11:48] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:40, 14:50](2145 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:08, 16:07] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [16:09, 14:40](2001 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:49, 14:29](2303 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [07:59, 06:41](1350 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:41, 15:51](1906 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:07, 16:06] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [14:46, 14:12](1991 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:29, 06:29] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:30, 25:27](1968 MB) + +PASS -- COMPILE 's2swa_intel' [12:05, 12:05] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [19:21, 18:19](2199 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:26, 15:32](2200 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:44, 07:31](1954 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [17:36, 16:18](2226 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:15, 07:54](1734 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [17:05, 16:16](2546 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:54, 14:02](2180 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:33, 12:41](2097 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:04, 14:01](2215 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:00, 17:24](2976 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [08:14, 06:02](2916 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [25:02, 19:40](3841 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:52, 09:39](3639 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:25, 07:35](2099 MB) + +PASS -- COMPILE 's2sw_intel' [11:39, 11:38] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [14:17, 13:10](2019 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:18, 10:24](2108 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:34, 06:34] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [20:20, 19:19](2227 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:25, 06:24] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:54, 08:44](2048 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [09:41, 09:41] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:00, 04:09](2065 MB) + +PASS -- COMPILE 's2s_intel' [09:42, 09:42] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [06:46, 06:05](3025 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [02:26, 01:51](3014 MB) +PASS -- TEST 'cpld_restart_c48_intel' [01:50, 01:06](2469 MB) + +PASS -- COMPILE 's2swa_faster_intel' [12:27, 12:27] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [14:30, 13:35](2213 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [15:33, 15:33] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:15, 22:28](2074 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:52, 11:18](1416 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:17, 25:25](1989 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:05, 04:04] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:20, 27:35](2012 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:31, 09:31] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:04, 02:54](708 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:20, 02:52](1589 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:23, 02:50](1596 MB) +PASS -- TEST 'control_latlon_intel' [03:05, 02:45](1589 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:19, 02:45](1601 MB) +PASS -- TEST 'control_c48_intel' [16:18, 15:43](1710 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:15, 09:01](842 MB) +PASS -- TEST 'control_c192_intel' [10:53, 10:19](1754 MB) +PASS -- TEST 'control_c384_intel' [13:52, 12:28](2012 MB) +PASS -- TEST 'control_c384gdas_intel' [09:19, 07:45](1503 MB) +PASS -- TEST 'control_stochy_intel' [01:38, 01:27](663 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:12, 00:57](548 MB) +PASS -- TEST 'control_lndp_intel' [01:41, 01:28](666 MB) +PASS -- TEST 'control_iovr4_intel' [02:26, 02:12](658 MB) +PASS -- TEST 'control_iovr5_intel' [02:24, 02:12](666 MB) +PASS -- TEST 'control_p8_intel' [03:51, 03:09](1884 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:35, 02:42](1896 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:55, 03:10](1889 MB) +PASS -- TEST 'control_restart_p8_intel' [02:34, 01:55](1152 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:51, 03:08](1872 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:36, 01:55](1208 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:57, 03:12](1883 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:07, 03:30](1961 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:21, 05:47](1877 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:33, 03:37](1970 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:23, 02:42](1894 MB) +PASS -- TEST 'merra2_thompson_intel' [04:01, 03:03](1898 MB) +PASS -- TEST 'regional_control_intel' [05:02, 04:43](1199 MB) +PASS -- TEST 'regional_restart_intel' [03:01, 02:38](1168 MB) +PASS -- TEST 'regional_decomp_intel' [05:18, 04:56](1183 MB) +PASS -- TEST 'regional_2threads_intel' [03:31, 03:11](1151 MB) +PASS -- TEST 'regional_noquilt_intel' [04:47, 04:28](1517 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:11, 04:40](1195 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:08, 04:43](1183 MB) +PASS -- TEST 'regional_wofs_intel' [06:24, 06:00](2064 MB) + +PASS -- COMPILE 'rrfs_intel' [08:20, 08:20] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:21, 06:46](1179 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:19, 03:46](1361 MB) +PASS -- TEST 'rap_decomp_intel' [07:40, 07:02](1143 MB) +PASS -- TEST 'rap_2threads_intel' [06:59, 06:22](1361 MB) +PASS -- TEST 'rap_restart_intel' [04:24, 03:36](1122 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:31, 06:55](1184 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:56, 07:21](1132 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:13, 06:25](1182 MB) +PASS -- TEST 'hrrr_control_intel' [04:22, 03:45](1078 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:26, 03:51](1034 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [03:46, 03:10](1103 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:23, 02:04](1022 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:12, 06:34](1195 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:43, 09:32](1996 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:29, 09:19](2183 MB) + +PASS -- COMPILE 'csawmg_intel' [08:53, 08:53] +PASS -- TEST 'control_csawmg_intel' [06:10, 05:41](1042 MB) +PASS -- TEST 'control_ras_intel' [03:12, 03:01](852 MB) + +PASS -- COMPILE 'wam_intel' [09:06, 09:06] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [10:25, 09:51](1658 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [08:47, 08:46] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:47, 03:00](1901 MB) +PASS -- TEST 'regional_control_faster_intel' [04:48, 04:22](1187 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:30, 06:30] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:51, 02:19](1615 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:26, 01:50](1612 MB) +PASS -- TEST 'control_stochy_debug_intel' [02:48, 02:36](838 MB) +PASS -- TEST 'control_lndp_debug_intel' [02:36, 02:24](838 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:08, 03:41](1142 MB) +PASS -- TEST 'control_ras_debug_intel' [02:35, 02:25](844 MB) +PASS -- TEST 'control_diag_debug_intel' [02:56, 02:21](1688 MB) +PASS -- TEST 'control_debug_p8_intel' [02:47, 02:14](1906 MB) +PASS -- TEST 'regional_debug_intel' [15:08, 14:45](1141 MB) +PASS -- TEST 'rap_control_debug_intel' [04:26, 04:15](1223 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:28, 04:12](1212 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:19, 04:09](1227 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:37, 04:26](1218 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:26, 04:17](1227 MB) +PASS -- TEST 'rap_diag_debug_intel' [04:51, 04:30](1310 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:26, 04:16](1227 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:27, 04:18](1225 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:23, 04:11](1228 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:24, 05:15](1222 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:16, 04:08](1218 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:21, 04:10](1217 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [06:53, 06:41](1229 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:11, 04:02](1224 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:17, 05:03](1224 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:26, 04:12](1224 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:50, 07:08](1229 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [03:57, 03:57] +PASS -- TEST 'control_csawmg_debug_gnu' [02:26, 02:01](1037 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:43, 03:42] ( 837 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:00, 08:00] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:26, 03:53](1272 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:07, 05:30](1142 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:39, 02:55](1028 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:48, 05:10](1291 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:27, 02:42](1030 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:50, 03:05](992 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:36, 04:09](1095 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [01:51, 01:43](941 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:34, 08:33] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:19, 01:49](1288 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:23, 00:51](1189 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:45, 01:17](1141 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:33, 08:33] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:48, 04:28](1083 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:46, 03:46] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:43, 05:34](1104 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:32, 04:12](1095 MB) +PASS -- TEST 'conus13km_debug_intel' [12:23, 11:49](1334 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [12:41, 12:06](1000 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:03, 07:25](1243 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:19, 11:42](1406 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:46, 03:45] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:07, 04:51](1156 MB) + +PASS -- COMPILE 'hafsw_intel' [10:40, 10:39] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:02, 07:05](853 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:12, 06:55](1267 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:52, 06:46](915 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:24, 14:18](946 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:43, 15:32](959 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:38, 05:57](591 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:24, 07:17](608 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:15, 02:45](435 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:01, 09:13](555 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:22, 03:57](609 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:22, 03:44](604 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:43, 05:50](669 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:31, 01:12](441 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:21, 04:20] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:03, 12:21](634 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [18:42, 18:42] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [16:47, 15:50](739 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:11, 17:18](836 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:58, 17:58] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:03, 10:43](803 MB) + +PASS -- COMPILE 'hafs_all_intel' [18:05, 18:05] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [06:41, 05:48](944 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:55, 06:55](908 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:13, 16:34](1346 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:48, 10:48] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:26, 02:19](1121 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:29, 01:21](1097 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:24, 02:15](1015 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:16, 02:11](1016 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:39, 02:32](1021 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:16, 02:10](1157 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:20, 02:14](1160 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:09, 02:05](1022 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:52, 05:11](1163 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:47, 05:04](1155 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:20, 02:16](1159 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:06, 03:01](2466 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:11, 04:06](2465 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:23, 06:22] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:41, 08:36](1071 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [05:37, 05:37] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:20, 02:16](1151 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:01, 01:01] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 01:10](339 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:22, 01:05](572 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:56, 00:41](570 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:04, 09:04] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:08, 03:25](2027 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:37, 08:37] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:21, 07:41](2037 MB) + +PASS -- COMPILE 'atml_intel' [16:34, 16:33] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:46, 07:41](1897 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:07, 07:12](1895 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:20, 03:45](1138 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:27, 08:27] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:49, 06:42](1923 MB) + +PASS -- COMPILE 'atmw_intel' [16:58, 16:57] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:50, 02:50](1931 MB) + +PASS -- COMPILE 'atmaero_intel' [08:44, 08:44] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:04, 04:19](1991 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:47, 04:52](1803 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:24, 04:49](1790 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [03:32, 03:32] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [18:54, 17:34](4542 MB) + +PASS -- COMPILE 'atm_fbh_intel' [08:07, 08:07] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:10, 09:57](1071 MB) + +PASS -- COMPILE 'datm_cdeps_intelllvm' [10:12, 10:12] +PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [03:03, 02:58](1140 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [03:09, 03:09] +PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [10:55, 10:51](1073 MB) + +PASS -- COMPILE 'atm_gnu' [07:39, 07:39] +PASS -- TEST 'control_c48_gnu' [14:35, 13:51](1521 MB) +PASS -- TEST 'control_stochy_gnu' [02:33, 02:25](723 MB) +PASS -- TEST 'control_ras_gnu' [04:03, 03:50](721 MB) +PASS -- TEST 'control_p8_gnu' [04:59, 04:11](1718 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:56, 04:12](1722 MB) +PASS -- TEST 'control_flake_gnu' [06:13, 05:59](799 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:03, 04:03] +PASS -- TEST 'rap_control_gnu' [11:58, 11:19](1071 MB) +PASS -- TEST 'rap_decomp_gnu' [11:24, 10:41](1077 MB) +PASS -- TEST 'rap_2threads_gnu' [10:37, 09:55](1129 MB) +PASS -- TEST 'rap_restart_gnu' [08:25, 07:29](879 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:55, 13:14](1071 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [14:55, 14:00](1072 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:45, 08:02](875 MB) +PASS -- TEST 'hrrr_control_gnu' [06:36, 05:28](1062 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:36, 05:37](1127 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:46, 04:40](1032 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:46, 05:42](1059 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:26, 03:09](874 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:13, 02:54](925 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [12:21, 11:09](1066 MB) + +PASS -- COMPILE 'csawmg_gnu' [06:41, 06:41] +PASS -- TEST 'control_csawmg_gnu' [07:47, 07:23](1058 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [05:39, 05:39] +PASS -- TEST 'control_diag_debug_gnu' [02:07, 01:39](1617 MB) +PASS -- TEST 'regional_debug_gnu' [10:41, 10:14](1122 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:20, 02:10](1089 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:29, 02:16](1081 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:29, 02:13](1084 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:11, 02:01](1086 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:08, 02:55](1259 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:22, 03:11](1085 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:09, 02:00](1090 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:11, 02:02](1084 MB) +PASS -- TEST 'control_ras_debug_gnu' [01:55, 01:44](723 MB) +PASS -- TEST 'control_stochy_debug_gnu' [01:43, 01:32](714 MB) +PASS -- TEST 'control_debug_p8_gnu' [01:55, 01:23](1698 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:11, 02:03](1089 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [02:33, 02:20](1094 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:34, 04:48](1095 MB) + +PASS -- COMPILE 'wam_debug_gnu' [02:50, 02:50] +PASS -- TEST 'control_wam_debug_gnu' [07:29, 07:01](1554 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:14, 04:14] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:33, 07:55](951 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:53, 04:09](949 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:30, 08:53](986 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:51, 04:46](887 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:59, 04:14](941 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:14, 07:45](855 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:24, 02:15](854 MB) +PASS -- TEST 'conus13km_control_gnu' [03:06, 02:34](1254 MB) +PASS -- TEST 'conus13km_2threads_gnu' [01:41, 01:16](1168 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:11, 01:42](923 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:54, 08:53] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:11, 04:46](979 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:03, 06:02] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:08, 01:59](967 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:25, 02:11](962 MB) +PASS -- TEST 'conus13km_debug_gnu' [06:20, 05:45](1275 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [06:45, 06:10](949 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [04:31, 03:58](1180 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:19, 05:49](1344 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:06, 08:06] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:24, 02:10](998 MB) + +PASS -- COMPILE 's2swa_gnu' [18:01, 18:01] + +PASS -- COMPILE 's2s_gnu' [17:18, 17:18] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [15:36, 14:43](2737 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [03:57, 03:57] + +PASS -- COMPILE 's2sw_pdlib_gnu' [16:00, 16:00] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [40:46, 40:02](2903 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:21, 04:21] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:31, 14:40](3042 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [15:36, 15:36] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [02:27, 02:21](775 MB) SYNOPSIS: -Starting Date/Time: 20241101 08:16:24 -Ending Date/Time: 20241101 13:19:00 -Total Time: 05h:03m:08s -Compiles Completed: 58/58 -Tests Completed: 245/245 +Starting Date/Time: 20241106 10:21:24 +Ending Date/Time: 20241106 15:37:46 +Total Time: 05h:16m:59s +Compiles Completed: 60/60 +Tests Completed: 247/247 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index e8f117b264..4946db1fcb 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -50c915d559ecbbc39d288ac9da24860f225597f1 +7db9d8898499f1fde77381853ea17f3bfcadb7a7 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 99091f9742670bdebd84bd13f17b9115457d64dd FV3 (heads/develop-13-g99091f9) - 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) + 1947bad314f3c54594828964efc8938596965891 FV3 (remotes/origin/rrfsv1-to-ufs/dev2) + e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - f3eeb3442775b7239d98e3d09acc6d4f1d42233e FV3/ccpp/physics (EP4-889-gf3eeb344) + 0678f44c137957033d357b2168b40fb5ab029be6 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5338-g0678f44c) 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 @@ -39,326 +39,258 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20241031 -COMPARISON DIRECTORY: /lfs5/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_3078376 +COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_833289 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic +* (-a) - HPC PROJECT ACCOUNT: h-nems +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [45:20, 43:27] ( 1 warnings 1380 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:17, 13:08](2024 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [51:21, 49:48] ( 1 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [32:05, 20:49](1892 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:17, 22:14](1995 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:03, 09:58](1123 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [34:01, 23:48](1854 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [50:21, 49:14] ( 1 warnings 1424 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [29:51, 20:12](1884 MB) - -PASS -- COMPILE 's2swa_intel' [45:20, 43:21] ( 1 warnings 1399 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [19:16, 16:34](2070 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [24:22, 16:34](2066 MB) -PASS -- TEST 'cpld_restart_p8_intel' [13:18, 08:55](1724 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [19:17, 16:42](2082 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [13:18, 09:00](1742 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [18:10, 15:52](2326 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [24:13, 16:48](2055 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [16:22, 13:48](2009 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [23:28, 16:37](2072 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [18:13, 09:07](2018 MB) - -PASS -- COMPILE 's2sw_intel' [43:19, 41:36] ( 1 warnings 1284 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [12:10, 09:18](1908 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:23, 14:10](1977 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:20] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [39:23, 27:34](2095 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:10, 05:54] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [22:05, 11:22](1939 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [39:15, 37:26] ( 1010 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:18, 05:34](1970 MB) - -PASS -- COMPILE 's2s_intel' [44:17, 38:30] ( 1 warnings 1033 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [12:52, 10:18](3012 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:51, 03:02](3011 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:46, 01:45](2462 MB) - -PASS -- COMPILE 's2swa_faster_intel' [44:26, 33:15] ( 1 warnings 1615 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [25:24, 16:00](2057 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [59:19, 47:45] ( 1 warnings 1344 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [36:34, 33:48](1918 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [19:19, 16:52](1126 MB) -FAILED: TEST TIMED OUT -- TEST 'cpld_mpi_pdlib_p8_intel' [, ]( MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:14, 06:00] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [43:20, 38:54](1927 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [42:18, 37:54] ( 1 warnings 1116 remarks ) -PASS -- TEST 'control_flake_intel' [06:29, 04:21](652 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [07:03, 04:25](1544 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:05, 04:40](1544 MB) -PASS -- TEST 'control_latlon_intel' [07:01, 04:23](1542 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:10, 04:31](1545 MB) -PASS -- TEST 'control_c48_intel' [21:12, 18:16](1702 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:34, 10:15](829 MB) -PASS -- TEST 'control_c192_intel' [18:20, 16:00](1695 MB) -PASS -- TEST 'control_c384_intel' [26:19, 23:02](1814 MB) -PASS -- TEST 'control_c384gdas_intel' [17:59, 13:17](1006 MB) -PASS -- TEST 'control_stochy_intel' [04:28, 02:09](599 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:26, 01:15](439 MB) -PASS -- TEST 'control_lndp_intel' [03:29, 02:03](602 MB) -PASS -- TEST 'control_iovr4_intel' [05:32, 03:16](601 MB) -PASS -- TEST 'control_iovr5_intel' [05:32, 03:16](600 MB) -PASS -- TEST 'control_p8_intel' [07:20, 04:57](1835 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:24, 04:15](1801 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:10, 04:51](1820 MB) -PASS -- TEST 'control_restart_p8_intel' [04:51, 02:36](1047 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:17, 04:51](1828 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:54, 02:34](1077 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:14, 04:58](1816 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:13, 04:45](1914 MB) -PASS -- TEST 'control_p8_lndp_intel' [11:08, 08:48](1833 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:18, 05:23](1897 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:16, 04:14](1845 MB) -PASS -- TEST 'merra2_thompson_intel' [07:10, 04:34](1849 MB) -PASS -- TEST 'regional_control_intel' [08:59, 06:59](999 MB) -PASS -- TEST 'regional_restart_intel' [05:40, 03:49](1011 MB) -PASS -- TEST 'regional_decomp_intel' [09:59, 07:21](1007 MB) -PASS -- TEST 'regional_2threads_intel' [06:59, 04:16](996 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:05, 07:03](1004 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:35, 07:11](1005 MB) - -PASS -- COMPILE 'rrfs_intel' [36:14, 34:59] ( 3 warnings 1092 remarks ) -PASS -- TEST 'rap_control_intel' [12:44, 10:11](987 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:15, 05:30](1174 MB) -PASS -- TEST 'rap_decomp_intel' [12:44, 10:41](985 MB) -PASS -- TEST 'rap_2threads_intel' [11:45, 09:43](1066 MB) -PASS -- TEST 'rap_restart_intel' [07:45, 05:15](978 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:45, 10:06](986 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:45, 10:46](981 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:45, 07:35](996 MB) -PASS -- TEST 'hrrr_control_intel' [07:42, 05:14](986 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:42, 05:25](975 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:47, 04:48](1045 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:26, 02:43](914 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:57, 10:04](983 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [15:32, 13:17](1933 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:32, 12:46](1932 MB) - -PASS -- COMPILE 'csawmg_intel' [37:14, 35:11] ( 1091 remarks ) -PASS -- TEST 'control_csawmg_intel' [09:34, 08:07](963 MB) -PASS -- TEST 'control_ras_intel' [06:20, 04:22](671 MB) - -PASS -- COMPILE 'wam_intel' [37:14, 35:40] ( 994 remarks ) -PASS -- TEST 'control_wam_intel' [16:49, 14:17](1618 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [39:18, 37:30] ( 1294 remarks ) -PASS -- TEST 'control_p8_faster_intel' [09:51, 03:35](1836 MB) -PASS -- TEST 'regional_control_faster_intel' [08:38, 06:34](1006 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:13, 08:11] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:48, 02:43](1568 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:54, 02:41](1566 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:27, 03:47](773 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:27, 03:23](776 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:44, 05:27](1084 MB) -PASS -- TEST 'control_ras_debug_intel' [05:27, 03:25](781 MB) -PASS -- TEST 'control_diag_debug_intel' [05:49, 03:21](1636 MB) -PASS -- TEST 'control_debug_p8_intel' [05:48, 03:20](1859 MB) -PASS -- TEST 'regional_debug_intel' [23:47, 22:01](1044 MB) -PASS -- TEST 'rap_control_debug_intel' [08:29, 06:16](1160 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:29, 06:06](1159 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:29, 06:10](1159 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:28, 06:14](1166 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:29, 06:13](1162 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:39, 06:30](1244 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:29, 06:18](1164 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:29, 06:20](1158 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:29, 06:16](1163 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:26, 06:09](1163 MB) -PASS -- TEST 'rap_noah_debug_intel' [08:25, 06:02](1155 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:25, 06:05](1166 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:26, 09:59](1159 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:26, 06:07](1157 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:30, 07:19](1168 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:26, 06:07](1165 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:47, 10:41](1165 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:11, 05:03] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:54, 16:32](1648 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:15, 30:44] ( 3 warnings 1026 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:01, 05:06](1037 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [14:41, 08:13](900 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:41, 04:20](875 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [18:44, 07:51](943 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:35, 03:58](906 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [12:39, 04:37](857 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:42, 06:16](895 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:27, 02:19](837 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [33:18, 32:01] ( 3 warnings 1199 remarks ) -PASS -- TEST 'conus13km_control_intel' [07:59, 02:39](1094 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:40, 01:14](1041 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:40, 01:29](1008 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [33:15, 31:26] ( 3 warnings 1046 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:50, 05:26](904 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:11, 05:14] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [15:27, 06:00](1039 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [15:28, 05:51](1041 MB) -PASS -- TEST 'conus13km_debug_intel' [28:02, 17:37](1150 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [28:02, 17:43](842 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [16:54, 10:20](1087 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [27:55, 17:45](1218 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:11, 05:08] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [16:26, 06:09](1086 MB) - -PASS -- COMPILE 'hafsw_intel' [44:19, 40:49] ( 1 warnings 1418 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [12:19, 07:17](702 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [12:31, 06:12](1063 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [21:41, 09:05](757 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [28:28, 16:13](786 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [29:50, 18:07](807 MB) -PASS -- TEST 'gnv1_nested_intel' [19:18, 06:17](1675 MB) - -PASS -- COMPILE 'hafs_all_intel' [39:16, 36:24] ( 1265 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [17:35, 08:28](753 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [18:36, 08:48](738 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [12:13, 07:05] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:24, 03:31](1082 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:22, 02:09](1038 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:24, 03:27](939 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:22, 03:41](931 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:24, 03:33](937 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:24, 03:34](1071 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:24, 03:35](1071 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:24, 03:27](928 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:17, 07:40](901 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:15, 07:31](849 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:21, 03:34](1075 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:24, 05:01](2379 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:24, 05:11](2409 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:12, 03:20] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [11:22, 08:10](1025 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:12, 08:14] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:20, 03:32](1073 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:12, 01:50] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:34, 01:22](239 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:27, 01:09](262 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:26, 00:41](262 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [39:16, 37:04] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [14:04, 04:48](1910 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [38:13, 36:20] ( 1 warnings 1020 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [20:08, 10:30](1897 MB) - -PASS -- COMPILE 'atml_intel' [40:20, 38:07] ( 8 warnings 1157 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:08, 05:45](1855 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:08, 05:50](1856 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:47, 03:12](1049 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:11, 06:28] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [21:47, 07:19](1876 MB) - -PASS -- COMPILE 'atmw_intel' [44:21, 37:26] ( 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:56, 02:22](1856 MB) - -PASS -- COMPILE 'atmaero_intel' [43:17, 36:11] ( 1098 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:57, 05:12](1928 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:57, 06:15](1706 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:49, 06:20](1716 MB) - -PASS -- COMPILE 'atm_fbh_intel' [33:15, 31:20] ( 3 warnings 996 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [16:37, 15:09](1006 MB) +PASS -- COMPILE 's2swa_32bit_intel' [45:17, 43:35] ( 1 warnings 1380 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [29:27, 13:14](2002 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:17, 47:54] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [57:22, 20:57](1888 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:24, 21:55](2044 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:09, 10:35](1139 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [00:11, 23:50](1855 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [50:17, 49:02] ( 1 warnings 1424 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [58:04, 20:18](1882 MB) + +PASS -- COMPILE 's2swa_intel' [46:17, 44:09] ( 1 warnings 1399 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [56:20, 16:38](2056 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [56:40, 16:45](2062 MB) +PASS -- TEST 'cpld_restart_p8_intel' [16:17, 09:03](1714 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [46:21, 16:36](2087 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [26:20, 09:05](1742 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [34:11, 15:50](2318 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [46:12, 16:52](2032 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [17:26, 13:52](1983 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [35:36, 16:48](2061 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [48:27, 09:13](2025 MB) + +PASS -- COMPILE 's2sw_intel' [43:17, 41:40] ( 1 warnings 1284 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [13:30, 09:16](1909 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [32:47, 14:13](1979 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:12, 06:11] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [04:40, 27:39](2092 MB) + +PASS -- COMPILE 's2sw_debug_intel' [22:13, 05:57] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [32:16, 11:23](1929 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [59:16, 30:35] ( 1010 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:23, 05:36](1965 MB) + +PASS -- COMPILE 's2s_intel' [14:21, 38:14] ( 1 warnings 1033 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [21:04, 10:18](3014 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [14:02, 03:02](3013 MB) +PASS -- TEST 'cpld_restart_c48_intel' [10:55, 01:48](2461 MB) + +PASS -- COMPILE 's2swa_faster_intel' [10:28, 32:45] ( 1 warnings 1615 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [32:02, 16:13](2063 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:28, 48:40] ( 1 warnings 1344 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [50:29, 31:26](1923 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [32:49, 17:24](1127 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [55:38, 40:04](1899 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [32:14, 05:11] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [49:17, 39:02](1933 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [47:19, 37:41] ( 1 warnings 1116 remarks ) +PASS -- TEST 'control_flake_intel' [07:44, 04:33](645 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [12:39, 04:25](1540 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:41, 04:40](1544 MB) +PASS -- TEST 'control_latlon_intel' [12:35, 04:26](1544 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:43, 04:39](1542 MB) +PASS -- TEST 'control_c48_intel' [26:37, 18:15](1700 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [18:51, 10:22](826 MB) +PASS -- TEST 'control_c192_intel' [18:51, 15:58](1684 MB) +PASS -- TEST 'control_c384_intel' [31:50, 23:07](1816 MB) +PASS -- TEST 'control_c384gdas_intel' [23:33, 13:25](1002 MB) +PASS -- TEST 'control_stochy_intel' [05:38, 02:20](606 MB) +PASS -- TEST 'control_stochy_restart_intel' [05:29, 01:18](431 MB) +PASS -- TEST 'control_lndp_intel' [05:39, 02:12](600 MB) +PASS -- TEST 'control_iovr4_intel' [06:47, 03:28](597 MB) +PASS -- TEST 'control_iovr5_intel' [06:42, 03:25](604 MB) +PASS -- TEST 'control_p8_intel' [08:57, 04:56](1830 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [14:10, 04:01](1843 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:50, 04:50](1836 MB) +PASS -- TEST 'control_restart_p8_intel' [42:30, 02:55](1055 MB) +PASS -- TEST 'control_noqr_p8_intel' [12:53, 04:51](1817 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [38:24, 02:50](1074 MB) +PASS -- TEST 'control_decomp_p8_intel' [08:48, 04:59](1822 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:51, 04:42](1915 MB) +PASS -- TEST 'control_p8_lndp_intel' [11:41, 08:47](1832 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [14:56, 05:13](1898 MB) +PASS -- TEST 'control_p8_mynn_intel' [12:55, 04:15](1849 MB) +PASS -- TEST 'merra2_thompson_intel' [07:48, 04:30](1837 MB) +PASS -- TEST 'regional_control_intel' [15:23, 07:14](1001 MB) +PASS -- TEST 'regional_restart_intel' [36:59, 04:04](996 MB) +PASS -- TEST 'regional_decomp_intel' [15:21, 07:32](1004 MB) +PASS -- TEST 'regional_2threads_intel' [07:22, 04:34](998 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [15:42, 07:09](1001 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [14:38, 07:04](1004 MB) + +PASS -- COMPILE 'rrfs_intel' [48:15, 34:56] ( 3 warnings 1092 remarks ) +PASS -- TEST 'rap_control_intel' [51:54, 10:17](983 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:10, 05:31](1166 MB) +PASS -- TEST 'rap_decomp_intel' [52:52, 10:54](977 MB) +PASS -- TEST 'rap_2threads_intel' [51:13, 09:53](1075 MB) +PASS -- TEST 'rap_restart_intel' [02:01, 05:44](979 MB) +PASS -- TEST 'rap_sfcdiff_intel' [51:01, 10:18](992 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [51:57, 10:49](985 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:04, 08:05](995 MB) +PASS -- TEST 'hrrr_control_intel' [46:55, 05:19](984 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [46:51, 05:29](975 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [45:55, 04:57](1047 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:46, 03:18](908 MB) +PASS -- TEST 'rrfs_v1beta_intel' [51:04, 10:11](980 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [53:42, 13:32](1930 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [50:44, 13:12](1928 MB) + +PASS -- COMPILE 'csawmg_intel' [45:17, 34:45] ( 1091 remarks ) +PASS -- TEST 'control_csawmg_intel' [35:00, 08:23](963 MB) +PASS -- TEST 'control_ras_intel' [31:34, 04:38](672 MB) + +PASS -- COMPILE 'wam_intel' [45:18, 35:36] ( 994 remarks ) +PASS -- TEST 'control_wam_intel' [34:26, 14:49](1618 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [45:16, 37:34] ( 1294 remarks ) +PASS -- TEST 'control_p8_faster_intel' [14:30, 04:07](1838 MB) +PASS -- TEST 'regional_control_faster_intel' [17:14, 06:57](1006 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [49:59, 08:33] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [01:57, 03:15](1567 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:02, 03:15](1570 MB) +PASS -- TEST 'control_stochy_debug_intel' [02:46, 04:19](785 MB) +PASS -- TEST 'control_lndp_debug_intel' [02:39, 03:54](796 MB) +PASS -- TEST 'control_csawmg_debug_intel' [03:54, 05:55](1089 MB) +PASS -- TEST 'control_ras_debug_intel' [02:38, 04:00](789 MB) +PASS -- TEST 'control_diag_debug_intel' [01:58, 03:52](1634 MB) +PASS -- TEST 'control_debug_p8_intel' [02:00, 03:47](1856 MB) +PASS -- TEST 'regional_debug_intel' [20:59, 22:29](1012 MB) +PASS -- TEST 'rap_control_debug_intel' [04:46, 06:39](1161 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:46, 06:31](1155 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:45, 06:34](1166 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:45, 06:37](1163 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:38, 06:38](1164 MB) +PASS -- TEST 'rap_diag_debug_intel' [03:55, 06:56](1242 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [02:34, 06:45](1168 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [02:36, 06:45](1165 MB) +PASS -- TEST 'rap_lndp_debug_intel' [01:37, 06:41](1170 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [59:37, 06:38](1167 MB) +PASS -- TEST 'rap_noah_debug_intel' [58:47, 06:29](1161 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [55:37, 06:39](1164 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [46:56, 10:36](1162 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [42:52, 06:38](1175 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [43:54, 08:01](1180 MB) +PASS -- TEST 'rap_flake_debug_intel' [42:52, 06:45](1170 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [47:15, 11:20](1171 MB) + +PASS -- COMPILE 'wam_debug_intel' [31:50, 05:13] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:14, 17:05](1642 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [45:53, 30:49] ( 3 warnings 1026 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [41:29, 05:45](1041 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [44:09, 08:52](894 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [40:02, 04:56](865 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [43:58, 08:43](946 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [38:56, 04:38](903 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [39:04, 05:17](853 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [45:27, 06:27](893 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [45:09, 02:38](838 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [52:47, 32:56] ( 3 warnings 1199 remarks ) +PASS -- TEST 'conus13km_control_intel' [10:16, 03:13](1095 MB) +PASS -- TEST 'conus13km_2threads_intel' [45:30, 01:28](1042 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [45:27, 01:42](1007 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [41:43, 32:13] ( 3 warnings 1046 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [14:14, 06:07](909 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:09, 05:38] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [39:50, 06:35](1041 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [39:50, 06:31](1034 MB) +PASS -- TEST 'conus13km_debug_intel' [51:22, 18:13](1147 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [51:12, 18:15](860 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [44:07, 10:53](1093 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [51:07, 18:16](1216 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:06, 05:44] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [39:43, 06:45](1081 MB) + +PASS -- COMPILE 'hafsw_intel' [16:53, 41:24] ( 1 warnings 1418 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:37, 07:21](703 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:48, 06:50](1069 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:53, 09:40](753 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:40, 16:43](787 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:00, 18:25](805 MB) +PASS -- TEST 'gnv1_nested_intel' [06:10, 06:54](1668 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:29, 36:36] ( 1265 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [20:58, 08:51](751 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [20:58, 08:48](735 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [42:26, 08:42] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [43:09, 03:48](1069 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [07:27, 02:08](1055 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [43:12, 03:42](931 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [43:07, 03:44](939 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [43:09, 03:47](932 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [43:11, 03:48](1062 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [43:09, 03:49](1078 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [43:10, 03:41](935 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [46:55, 07:52](893 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [46:51, 07:57](852 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [43:04, 03:48](1074 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [44:02, 05:29](2427 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [44:02, 05:32](2425 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [11:20, 03:51] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [52:04, 08:26](1032 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [15:23, 08:42] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [43:05, 03:48](1085 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [00:21, 02:11] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:45, 01:18](238 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:40, 01:07](267 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [40:10, 00:56](263 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [41:01, 36:52] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:52, 05:01](1917 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [20:02, 36:31] ( 1 warnings 1020 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [13:23, 10:37](1908 MB) + +PASS -- COMPILE 'atml_intel' [17:04, 38:39] ( 8 warnings 1157 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:18, 05:51](1856 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:20, 05:51](1860 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [22:08, 03:11](1068 MB) + +PASS -- COMPILE 'atml_debug_intel' [45:56, 06:49] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:22, 07:18](1878 MB) + +PASS -- COMPILE 'atmw_intel' [48:01, 37:23] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:09, 02:25](1859 MB) + +PASS -- COMPILE 'atmaero_intel' [40:24, 36:23] ( 1098 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:27, 05:20](1929 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:27, 06:24](1707 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:17, 06:30](1709 MB) + +PASS -- COMPILE 'atm_fbh_intel' [34:17, 31:28] ( 3 warnings 996 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [12:50, 15:22](1019 MB) SYNOPSIS: -Starting Date/Time: 20241101 20:55:51 -Ending Date/Time: 20241102 01:27:29 -Total Time: 04h:32m:12s +Starting Date/Time: 20241106 18:55:04 +Ending Date/Time: 20241108 04:54:37 +Total Time: 10h:00m:42s Compiles Completed: 37/37 -Tests Completed: 164/165 -Failed Tests: -* TEST cpld_mpi_pdlib_p8_intel: FAILED: TEST TIMED OUT --- LOG: /lfs5/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_3078376/cpld_mpi_pdlib_p8_intel/err - -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 JET REGRESSION TESTING LOG==== -====START OF JET REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -50c915d559ecbbc39d288ac9da24860f225597f1 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) - 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) - 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 99091f9742670bdebd84bd13f17b9115457d64dd FV3 (heads/develop-13-g99091f9) - 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) - b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - f3eeb3442775b7239d98e3d09acc6d4f1d42233e FV3/ccpp/physics (EP4-889-gf3eeb344) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) - c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - c7004b658b9dae9fc473d4e6511dfc1cf8e6a7bd WW3 (6.07.1-347-gc7004b65) - 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20241031 -COMPARISON DIRECTORY: /lfs5/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_1043419 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2sw_pdlib_intel' [48:18, 46:58] ( 1 warnings 1344 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [36:38, 33:50](1926 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [42:12, 39:37](1904 MB) - -SYNOPSIS: -Starting Date/Time: 20241104 00:12:32 -Ending Date/Time: 20241104 02:21:00 -Total Time: 02h:08m:40s -Compiles Completed: 1/1 -Tests Completed: 2/2 +Tests Completed: 165/165 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 9b4d5d8796..c3b323b74b 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -50c915d559ecbbc39d288ac9da24860f225597f1 +7db9d8898499f1fde77381853ea17f3bfcadb7a7 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 99091f9742670bdebd84bd13f17b9115457d64dd FV3 (heads/develop-13-g99091f9) - 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) + 1947bad314f3c54594828964efc8938596965891 FV3 (remotes/origin/rrfsv1-to-ufs/dev2) + e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - f3eeb3442775b7239d98e3d09acc6d4f1d42233e FV3/ccpp/physics (EP4-889-gf3eeb344) + 0678f44c137957033d357b2168b40fb5ab029be6 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5338-g0678f44c) 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 @@ -39,292 +39,298 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241031 -COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_430160 +COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_1638035 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [18:11, 16:20] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [28:50, 25:34](2090 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 20:02] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [21:52, 18:16](1948 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:18, 19:09](2126 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:04, 08:59](1223 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:49, 20:22](1862 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 19:32] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:47, 17:40](1949 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:11, 08:18] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [33:48, 30:40](1936 MB) - -PASS -- COMPILE 's2swa_intel' [18:11, 16:40] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [29:46, 26:21](2143 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [28:52, 26:07](2145 MB) -PASS -- TEST 'cpld_restart_p8_intel' [16:47, 13:26](1806 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [29:46, 26:19](2149 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [16:47, 14:06](1697 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [26:46, 23:46](2426 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [29:45, 26:20](2122 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [24:44, 22:00](2043 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [29:53, 26:36](2137 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:30, 16:22](2708 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:58, 08:43](2703 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [27:39, 19:37](3681 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:45, 11:21](3495 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:36, 08:14](2077 MB) - -PASS -- COMPILE 's2sw_intel' [17:11, 15:59] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [28:21, 25:23](1971 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:32, 11:54](2060 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:11, 08:18] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [24:26, 22:07](2174 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:11, 07:46] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:09, 09:09](1994 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:11, 14:29] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:11, 04:52](2031 MB) - -PASS -- COMPILE 's2s_intel' [17:11, 15:43] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [11:03, 08:39](3027 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:03, 02:58](3001 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:09, 02:04](2470 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:11, 17:34] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [29:29, 26:52](2150 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 19:30] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [31:15, 28:18](2016 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [18:25, 15:24](1252 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:18, 32:52](1932 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:11, 07:53] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [37:16, 34:37](1967 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:11, 13:32] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:27, 03:42](693 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:45, 03:31](1567 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:50, 03:35](1578 MB) -PASS -- TEST 'control_latlon_intel' [05:39, 03:33](1566 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:49, 03:33](1577 MB) -PASS -- TEST 'control_c48_intel' [16:48, 14:46](1705 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [09:32, 08:10](833 MB) -PASS -- TEST 'control_c192_intel' [14:53, 13:06](1734 MB) -PASS -- TEST 'control_c384_intel' [20:07, 16:39](1981 MB) -PASS -- TEST 'control_c384gdas_intel' [13:41, 10:02](1336 MB) -PASS -- TEST 'control_stochy_intel' [03:24, 01:50](643 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:54, 01:05](476 MB) -PASS -- TEST 'control_lndp_intel' [03:20, 01:44](642 MB) -PASS -- TEST 'control_iovr4_intel' [04:23, 02:43](634 MB) -PASS -- TEST 'control_iovr5_intel' [04:21, 02:43](640 MB) -PASS -- TEST 'control_p8_intel' [07:16, 04:12](1863 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:17, 03:29](1876 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:31, 04:02](1866 MB) -PASS -- TEST 'control_restart_p8_intel' [05:06, 02:34](1075 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:24, 04:03](1852 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:39, 02:19](1126 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:15, 04:10](1852 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:15, 04:22](1942 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:45, 07:26](1865 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:24, 04:55](1937 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:22, 03:31](1883 MB) -PASS -- TEST 'merra2_thompson_intel' [06:38, 03:52](1874 MB) -PASS -- TEST 'regional_control_intel' [08:47, 06:36](1079 MB) -PASS -- TEST 'regional_restart_intel' [05:38, 03:35](1063 MB) -PASS -- TEST 'regional_decomp_intel' [08:35, 06:53](1067 MB) -PASS -- TEST 'regional_2threads_intel' [06:35, 04:50](1071 MB) -PASS -- TEST 'regional_noquilt_intel' [08:41, 06:33](1377 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:47, 06:36](1073 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:35, 06:34](1064 MB) -PASS -- TEST 'regional_wofs_intel' [09:41, 08:01](1895 MB) - -PASS -- COMPILE 'rrfs_intel' [15:11, 13:22] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [11:21, 08:28](1050 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:04, 05:18](1246 MB) -PASS -- TEST 'rap_decomp_intel' [10:54, 08:40](1013 MB) -PASS -- TEST 'rap_2threads_intel' [11:13, 08:40](1145 MB) -PASS -- TEST 'rap_restart_intel' [07:41, 04:22](1029 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:07, 08:23](1050 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:56, 08:41](1016 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:28, 06:19](1066 MB) -PASS -- TEST 'hrrr_control_intel' [07:21, 04:26](1021 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:59, 04:29](1013 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:58, 04:14](1086 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:38, 02:23](946 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:20, 08:23](1040 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:25, 09:53](1975 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:23, 09:33](2021 MB) - -PASS -- COMPILE 'csawmg_intel' [15:11, 13:17] -PASS -- TEST 'control_csawmg_intel' [08:39, 06:38](1015 MB) -PASS -- TEST 'control_ras_intel' [05:20, 03:30](718 MB) - -PASS -- COMPILE 'wam_intel' [14:11, 12:37] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:45, 12:49](1651 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:10, 13:16] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:25, 03:18](1873 MB) -PASS -- TEST 'regional_control_faster_intel' [08:40, 06:16](1055 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:10, 09:46] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:52, 02:21](1598 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:56, 02:14](1600 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:26, 03:05](813 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:26, 02:51](815 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:43, 04:21](1115 MB) -PASS -- TEST 'control_ras_debug_intel' [04:27, 02:48](823 MB) -PASS -- TEST 'control_diag_debug_intel' [04:53, 02:52](1675 MB) -PASS -- TEST 'control_debug_p8_intel' [04:53, 02:47](1890 MB) -PASS -- TEST 'regional_debug_intel' [19:48, 17:24](1089 MB) -PASS -- TEST 'rap_control_debug_intel' [06:29, 05:00](1202 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:31, 04:50](1190 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:28, 04:58](1199 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:24, 05:01](1201 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:25, 05:03](1199 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:36, 05:08](1292 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:27, 05:07](1198 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:27, 05:07](1201 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:26, 05:04](1208 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:26, 05:01](1197 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:20, 04:56](1198 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:21, 04:56](1204 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:25, 08:06](1201 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:55](1192 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:27, 05:56](1203 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:22, 05:02](1202 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:27, 08:39](1205 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:11, 06:13] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:47, 13:07](1682 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 12:15] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:10, 04:57](1127 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:10, 07:12](984 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:14, 03:50](916 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:51, 07:31](1060 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:03, 03:47](934 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:43, 03:56](890 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:29, 05:25](971 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:08, 02:03](872 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 12:33] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:55, 02:35](1159 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:43, 01:11](1110 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:52, 01:28](1065 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:24] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:44, 04:38](964 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:10, 06:39] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:20, 04:53](1075 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:20, 04:46](1078 MB) -PASS -- TEST 'conus13km_debug_intel' [15:48, 13:44](1226 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:57, 13:55](922 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:45, 08:04](1178 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:48, 14:25](1320 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:10, 06:16] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:25, 05:01](1133 MB) - -PASS -- COMPILE 'hafsw_intel' [17:10, 15:26] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:17, 06:00](744 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:33, 06:32](1114 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:34, 07:43](814 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [27:19, 24:45](843 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [31:21, 28:37](873 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:01, 07:09](498 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:28, 08:34](507 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:02, 03:32](375 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:25, 09:42](478 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:55, 04:45](525 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:01, 04:30](520 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:56, 05:53](572 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:31, 01:34](398 MB) -PASS -- TEST 'gnv1_nested_intel' [08:14, 04:19](1723 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:10, 07:28] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:04, 13:27](582 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:10, 14:38] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:13, 12:53](658 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:08, 13:03](724 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:10, 14:35] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:27, 08:44](705 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:10, 13:51] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:18, 07:34](812 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:10, 07:38](801 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:55, 16:21](1203 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [12:10, 10:40] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:59](1151 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:52](1105 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:54](1011 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:16, 02:53](1023 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:16, 02:54](1022 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:16, 02:58](1148 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 02:58](1147 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:49](1019 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:18, 06:36](1011 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:10, 06:32](1004 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 02:55](1151 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:17, 04:23](2459 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:21, 04:25](2390 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:10, 05:29] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 06:29](1064 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:10, 07:37] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:16, 02:59](1152 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:18] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:30, 01:02](256 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:57](333 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:29, 00:37](321 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:46] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:29, 00:40](560 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:34, 00:21](444 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:10, 13:27] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:12, 04:08](1971 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:10, 12:54] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:02, 08:53](1969 MB) - -PASS -- COMPILE 'atml_intel' [15:11, 13:31] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:32, 04:52](1861 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:28, 04:52](1870 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:53, 02:49](1066 MB) - -PASS -- COMPILE 'atml_debug_intel' [09:11, 07:49] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:26, 06:00](1891 MB) - -PASS -- COMPILE 'atmw_intel' [15:10, 13:57] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:20, 02:15](1898 MB) - -PASS -- COMPILE 'atmaero_intel' [15:10, 13:33] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:12, 04:44](1965 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:13, 05:27](1757 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:15, 05:27](1771 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:10, 06:17] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [25:06, 21:46](4482 MB) - -PASS -- COMPILE 'atm_fbh_intel' [13:10, 12:03] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:30, 13:48](1074 MB) +PASS -- COMPILE 's2swa_32bit_intel' [20:11, 18:26] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [29:28, 26:29](2076 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:11, 22:31] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:41, 18:11](1949 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:20, 18:53](2134 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:18, 09:03](1231 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:43, 20:22](1864 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:11, 21:12] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:42, 17:32](1951 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:11, 08:35] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [33:36, 30:23](1923 MB) + +PASS -- COMPILE 's2swa_intel' [18:11, 16:45] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [29:45, 26:26](2146 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [28:42, 26:05](2138 MB) +PASS -- TEST 'cpld_restart_p8_intel' [16:44, 14:09](1796 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [28:32, 26:04](2163 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [16:47, 13:57](1693 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [26:33, 23:49](2467 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [28:32, 25:52](2138 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [24:38, 22:05](2034 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [29:45, 26:19](2142 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:27, 16:07](2705 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:59, 08:24](2704 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [27:14, 19:27](3675 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:03, 11:03](3511 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:27, 08:03](2073 MB) + +PASS -- COMPILE 's2sw_intel' [17:11, 15:42] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [28:05, 25:45](1971 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:12, 11:56](2052 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:10, 08:00] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [25:25, 22:19](2171 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:10, 07:27] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:10, 09:31](2002 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:11, 14:19] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:11, 05:09](2029 MB) + +PASS -- COMPILE 's2s_intel' [17:11, 15:39] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:57, 08:37](3029 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:56, 03:07](3015 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:53, 02:01](2466 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:11, 17:32] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [30:32, 27:42](2142 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 19:47] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [31:03, 28:45](2012 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:22, 14:40](1261 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:10, 32:50](1931 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:11, 07:44] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [37:08, 34:24](1953 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:11, 13:25] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:25, 03:41](686 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:45, 03:32](1570 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:49, 03:34](1580 MB) +PASS -- TEST 'control_latlon_intel' [05:39, 03:31](1566 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:49, 03:34](1575 MB) +PASS -- TEST 'control_c48_intel' [16:46, 14:41](1699 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:32, 08:14](840 MB) +PASS -- TEST 'control_c192_intel' [15:52, 13:11](1734 MB) +PASS -- TEST 'control_c384_intel' [20:02, 16:38](1984 MB) +PASS -- TEST 'control_c384gdas_intel' [13:37, 09:58](1335 MB) +PASS -- TEST 'control_stochy_intel' [03:24, 01:49](646 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:35, 01:04](473 MB) +PASS -- TEST 'control_lndp_intel' [03:26, 01:42](639 MB) +PASS -- TEST 'control_iovr4_intel' [04:26, 02:49](633 MB) +PASS -- TEST 'control_iovr5_intel' [04:29, 02:45](638 MB) +PASS -- TEST 'control_p8_intel' [07:04, 04:14](1869 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:11, 03:36](1875 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:30, 04:08](1867 MB) +PASS -- TEST 'control_restart_p8_intel' [05:17, 02:20](1090 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:19, 04:07](1852 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:19, 02:19](1106 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:13, 04:12](1860 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:58, 04:26](1945 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:40, 07:19](1862 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:35, 04:57](1932 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:27, 03:33](1884 MB) +PASS -- TEST 'merra2_thompson_intel' [06:39, 03:51](1883 MB) +PASS -- TEST 'regional_control_intel' [08:35, 06:40](1075 MB) +PASS -- TEST 'regional_restart_intel' [05:35, 03:35](1076 MB) +PASS -- TEST 'regional_decomp_intel' [08:36, 06:53](1067 MB) +PASS -- TEST 'regional_2threads_intel' [06:45, 04:43](1072 MB) +PASS -- TEST 'regional_noquilt_intel' [08:44, 06:31](1380 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:44, 06:32](1074 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:44, 06:32](1076 MB) +PASS -- TEST 'regional_wofs_intel' [09:40, 07:59](1893 MB) + +PASS -- COMPILE 'rrfs_intel' [12:11, 10:40] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:59, 08:30](1039 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:55, 05:15](1255 MB) +PASS -- TEST 'rap_decomp_intel' [10:58, 08:46](1012 MB) +PASS -- TEST 'rap_2threads_intel' [10:58, 08:41](1156 MB) +PASS -- TEST 'rap_restart_intel' [07:35, 04:25](1027 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:59, 08:14](1037 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:59, 08:42](1019 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:33, 06:17](1071 MB) +PASS -- TEST 'hrrr_control_intel' [06:56, 04:22](1013 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:56, 04:26](1011 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:56, 04:13](1088 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:40, 02:17](943 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:18, 08:22](1044 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:25, 09:55](1974 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:27, 09:32](2004 MB) + +PASS -- COMPILE 'csawmg_intel' [13:11, 12:06] +PASS -- TEST 'control_csawmg_intel' [08:42, 06:41](1012 MB) +PASS -- TEST 'control_ras_intel' [05:24, 03:30](720 MB) + +PASS -- COMPILE 'wam_intel' [14:11, 12:41] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:44, 12:49](1643 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:10, 13:14] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:22, 03:20](1877 MB) +PASS -- TEST 'regional_control_faster_intel' [08:41, 06:15](1061 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:10, 09:57] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:43, 02:15](1597 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:43, 02:16](1600 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:20, 03:08](805 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:21, 02:49](818 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:35, 04:24](1116 MB) +PASS -- TEST 'control_ras_debug_intel' [04:23, 02:50](818 MB) +PASS -- TEST 'control_diag_debug_intel' [04:48, 02:48](1666 MB) +PASS -- TEST 'control_debug_p8_intel' [04:44, 02:47](1897 MB) +PASS -- TEST 'regional_debug_intel' [19:45, 17:28](1085 MB) +PASS -- TEST 'rap_control_debug_intel' [06:25, 04:55](1195 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:27, 04:57](1195 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:25, 04:59](1205 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 04:58](1203 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:25, 04:58](1206 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:32, 05:16](1285 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 05:06](1201 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:21, 05:06](1191 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:23, 05:04](1205 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 05:03](1203 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:06, 04:53](1194 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:05, 04:57](1201 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:21, 08:08](1196 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:28, 04:58](1192 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:29, 06:00](1206 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:23, 04:52](1196 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:20, 08:32](1207 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:11, 06:02] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:42, 13:34](1683 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:11, 13:52] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:59, 04:59](1118 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:13, 07:12](992 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:36, 03:49](918 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:51, 07:27](1064 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:07, 03:44](935 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:40, 03:57](893 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:27, 05:24](969 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:27, 02:08](874 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:10, 12:08] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:54, 02:35](1168 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:55, 01:12](1115 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:51, 01:29](1062 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:10, 12:41] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:40, 04:35](968 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:10, 06:28] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:22, 05:06](1081 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:23, 04:46](1077 MB) +PASS -- TEST 'conus13km_debug_intel' [15:48, 13:54](1224 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:06, 13:47](937 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:54, 08:12](1164 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:54, 14:00](1292 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:10, 05:58] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:24, 05:05](1128 MB) + +PASS -- COMPILE 'hafsw_intel' [18:10, 16:22] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:17, 06:02](737 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:26, 06:27](1111 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:24, 07:31](806 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [27:11, 24:50](846 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [31:18, 28:44](868 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:58, 07:07](495 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:28, 08:31](499 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:54, 03:29](376 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:37, 09:51](469 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:55, 04:47](520 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:52, 04:34](524 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:54, 05:41](568 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:28, 01:35](403 MB) +PASS -- TEST 'gnv1_nested_intel' [08:07, 04:18](1715 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:10, 07:07] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:55, 12:59](580 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:10, 14:27] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:59, 12:39](658 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:09, 12:50](717 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:10, 15:04] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:32, 08:42](712 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:10, 13:49] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:18, 07:31](789 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:11, 07:35](789 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:54, 16:23](1200 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:11, 07:46] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 03:00](1151 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:58](1099 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:31](1014 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:54](1010 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:54](1018 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:16, 02:59](1151 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 02:57](1154 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:54](1024 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:05, 06:35](1028 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:00, 06:31](997 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:57](1156 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:18, 03:36](2373 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 04:21](2447 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:10, 05:57] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:31](1081 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:11, 11:32] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:58](1153 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:24] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:34, 01:02](255 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:55](324 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:29, 00:37](319 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:40] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:29, 00:37](564 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:36, 00:21](445 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:11, 13:21] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:11, 04:11](1966 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:10, 12:56] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [10:58, 08:38](1970 MB) + +PASS -- COMPILE 'atml_intel' [17:11, 15:39] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:32, 04:50](1863 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:25, 04:55](1864 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:53, 02:48](1074 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:10, 07:18] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:28, 05:54](1885 MB) + +PASS -- COMPILE 'atmw_intel' [15:11, 13:35] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:14, 02:14](1897 MB) + +PASS -- COMPILE 'atmaero_intel' [14:10, 13:05] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:13, 04:41](1969 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:11, 05:23](1747 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:01, 05:29](1768 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:10, 06:05] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [24:59, 21:12](4494 MB) + +PASS -- COMPILE 'atm_fbh_intel' [13:10, 11:49] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:28, 14:07](1074 MB) + +PASS -- COMPILE 'hafsw_intelllvm' [09:11, 08:04] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [10:05, 07:57](576 MB) + +PASS -- COMPILE 'hafsw_debug_intelllvm' [06:10, 04:58] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [21:58, 19:39](561 MB) SYNOPSIS: -Starting Date/Time: 20241101 08:15:45 -Ending Date/Time: 20241101 10:05:04 -Total Time: 01h:49m:57s -Compiles Completed: 43/43 -Tests Completed: 188/188 +Starting Date/Time: 20241106 11:32:35 +Ending Date/Time: 20241106 13:20:15 +Total Time: 01h:48m:16s +Compiles Completed: 45/45 +Tests Completed: 190/190 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/rt.conf b/tests/rt.conf index 7798c120c5..bc6d089904 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -19,7 +19,10 @@ # 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. -### Intel Tests ### +############################# +### Intel (Classic) Tests ### +############################# + ### S2S tests ### COMPILE | s2swa_32bit | intel | -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 | @@ -146,12 +149,9 @@ COMPILE | csawmg | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v1 RUN | control_csawmg | - noaacloud | baseline | RUN | control_ras | - noaacloud | baseline | -COMPILE | csawmg | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras | + hera hercules | fv3 | -RUN | control_csawmg | + hera hercules | baseline | - # Run WAM test in REPRO mode to avoid numerical instability in the deep atmosphere COMPILE | wam | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMULTI_GASES=ON | - noaacloud | fv3 | -RUN | control_wam | - noaacloud | baseline | +RUN | control_wam | - noaacloud | baseline | COMPILE | atm_faster_dyn32 | intel | -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 | @@ -190,10 +190,10 @@ COMPILE | atm_debug_dyn32 | gnu | -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES= RUN | control_csawmg_debug | + hera hercules | baseline | COMPILE | wam_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | - noaacloud | fv3 | -RUN | control_wam_debug | - noaacloud hercules | baseline | +RUN | control_wam_debug | - noaacloud hercules | baseline | ### 32-bit physics tests ### -COMPILE | rrfs_dyn32_phy32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON | - noaacloud | fv3 | +COMPILE | rrfs_dyn32_phy32 | intel | -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 | @@ -213,21 +213,21 @@ RUN | conus13km_restart_mismatch | - noaacloud # RUN | conus13km_decomp | - noaacloud | | conus13km_control COMPILE | rrfs_dyn64_phy32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON | - noaacloud | fv3 | -RUN | rap_control_dyn64_phy32 | - noaacloud | baseline | +RUN | rap_control_dyn64_phy32 | - noaacloud | baseline | COMPILE | rrfs_dyn32_phy32_debug | intel | -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 | +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 | | +# RUN | conus13km_debug_decomp | - noaacloud | | COMPILE | rrfs_dyn64_phy32_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON | - noaacloud | fv3 | -RUN | rap_control_dyn64_phy32_debug | - noaacloud | baseline | +RUN | rap_control_dyn64_phy32_debug | - noaacloud | baseline | ### HAFS tests ### COMPILE | hafsw | intel | -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 | @@ -327,9 +327,59 @@ RUN | atmaero_control_p8_rad_micro | - noaacloud #RUN | regional_atmaq | - jet s4 | baseline | COMPILE | atmaq_debug | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON | - jet noaacloud s4 | fv3 | -RUN | regional_atmaq_debug | - hera jet s4 noaacloud | baseline | +RUN | regional_atmaq_debug | - hera jet s4 noaacloud | baseline | + +### ATM-FBH test ### +COMPILE | atm_fbh | intel | -DAPP=ATMF -DCCPP_SUITES=FV3_HRRR -D32BIT=ON | - wcoss2 noaacloud acorn | fv3 | +RUN | cpld_regional_atm_fbh | - wcoss2 noaacloud acorn | baseline | + + + +############################# +### Intel (LLVM) Tests ###### +############################# + + +# Coupled gfs17 tests on Gaea +COMPILE | s2swa_32bit_pdlib | intelllvm | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON | + gaea | fv3 | +RUN | cpld_control_gfsv17 | + gaea | baseline | + +COMPILE | s2swa_32bit_pdlib_debug | intelllvm | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON | + gaea | fv3 | +RUN | cpld_debug_gfsv17 | + gaea | baseline | + +COMPILE | s2swa_32bit_pdlib_sfs | intelllvm | -DAPP=S2SWA -D32BIT=ON -DHYDRO=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON | + gaea | fv3 | +RUN | cpld_control_sfs | + gaea | baseline | + +COMPILE | s2swa | intelllvm | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 | + gaea | fv3 | +RUN | cpld_control_p8 | + gaea | baseline | + +# Regional RRFS tests on Hera +COMPILE | rrfs_dyn32_phy32 | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_RAP -D32BIT=ON -DCCPP_32BIT=ON | + hera | fv3 | +RUN | rap_control_dyn32_phy32 | + hera | baseline | + +COMPILE | rrfs_dyn64_phy32 | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_RAP -DCCPP_32BIT=ON | + hera | fv3 | +RUN | rap_control_dyn64_phy32 | + hera | baseline | + +# HAFS tests on Orion +COMPILE | hafsw | intelllvm | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON | + orion | fv3 | +RUN | hafs_regional_storm_following_1nest_atm_ocn | + orion | baseline | + +COMPILE | hafsw_debug | intelllvm | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON | + orion | fv3 | +RUN | hafs_regional_storm_following_1nest_atm_ocn_debug | + orion | baseline | + +# DATM/CDEPS tests on Hercules +COMPILE | datm_cdeps | intelllvm | -DAPP=NG-GODAS | + hercules | fv3 | +RUN | datm_cdeps_control_cfsr | + hercules | baseline | + +COMPILE | datm_cdeps_debug | intelllvm | -DAPP=NG-GODAS -DDEBUG=ON | + hercules | fv3 | +RUN | datm_cdeps_debug_cfsr | + hercules | baseline | + + + +############################# +### Gnu Tests ############### +############################# -### GNU TESTS ### ### CCPP PROD tests ### COMPILE | atm | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 | + hera hercules | fv3 | RUN | control_c48 | + hera hercules | baseline | @@ -355,6 +405,9 @@ RUN | hrrr_control_restart | + hera hercules RUN | hrrr_control_restart_noqr | + hera hercules | | hrrr_control_noqr RUN | rrfs_v1beta | + hera hercules | baseline | +COMPILE | csawmg | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras | + hera hercules | fv3 | +RUN | control_csawmg | + hera hercules | baseline | + ### CCPP DEBUG tests ### # Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) COMPILE | atm_dyn32_debug | gnu | -DAPP=ATM -D32BIT=ON -DDEBUG=ON | + hera hercules | fv3 | @@ -375,10 +428,8 @@ RUN | rap_flake_debug | + hera hercules RUN | rap_clm_lake_debug | + hera hercules | baseline | RUN | gnv1_c96_no_nest_debug | + hera hercules | baseline | - COMPILE | wam_debug | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | + hera hercules | fv3 | -RUN | control_wam_debug | + hercules | baseline | - +RUN | control_wam_debug | + hercules | baseline | ### 32-bit physics tests ### COMPILE | rrfs_dyn32_phy32 | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON | + hera hercules | fv3 | @@ -429,12 +480,8 @@ COMPILE | s2sw_pdlib | gnu | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugw RUN | cpld_control_pdlib_p8 | + hera hercules | baseline | COMPILE | s2sw_pdlib_debug | gnu | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON | + hera hercules | fv3 | -RUN | cpld_debug_pdlib_p8 | + hercules | baseline | +RUN | cpld_debug_pdlib_p8 | + hercules | baseline | ### CDEPS Data Atmosphere test ### COMPILE | datm_cdeps | gnu | -DAPP=NG-GODAS | + hera hercules | fv3 | RUN | datm_cdeps_control_cfsr | + hera hercules | baseline | - -### ATM-FBH test ### -COMPILE | atm_fbh | intel | -DAPP=ATMF -DCCPP_SUITES=FV3_HRRR -D32BIT=ON | - wcoss2 noaacloud acorn | fv3 | -RUN | cpld_regional_atm_fbh | - wcoss2 noaacloud acorn | baseline | diff --git a/tests/rt_intelllvm.conf b/tests/rt_intelllvm.conf index cd3069555b..c22ae38008 100644 --- a/tests/rt_intelllvm.conf +++ b/tests/rt_intelllvm.conf @@ -36,9 +36,9 @@ COMPILE | s2swa_32bit_pdlib_sfs | intelllvm | -DAPP=S2SWA -D32BIT=ON -DHYDRO=ON 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 | +RUN | cpld_debug_gfsv17 | - noaacloud jet | baseline | -COMPILE | s2swa | intelllvm | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | +COMPILE | s2swa | intelllvm | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 | | fv3 | RUN | cpld_control_p8 | - noaacloud | baseline | RUN | cpld_control_p8.v2.sfc | - noaacloud | baseline | RUN | cpld_restart_p8 | - noaacloud | | cpld_control_p8 @@ -56,35 +56,35 @@ RUN | cpld_restart_bmark_p8 | - s4 jet acorn noaaclo # Aerosol, no Wave RUN | cpld_s2sa_p8 | - noaacloud | baseline | -COMPILE | s2sw | intelllvm | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | +COMPILE | s2sw | intelllvm | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 | | 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 | +COMPILE | s2swa_debug | intelllvm | -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 | - 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 | +COMPILE | s2sw_debug | intelllvm | -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 | - 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 | +COMPILE | s2s | intelllvm | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 | | 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 | +COMPILE | s2swa_faster | intelllvm | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -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 | +COMPILE | s2sw_pdlib | intelllvm | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -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 | +COMPILE | s2sw_pdlib_debug | intelllvm | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON | - noaacloud | fv3 | RUN | cpld_debug_pdlib_p8 | - noaacloud | baseline | ### ATM tests ### @@ -125,11 +125,6 @@ RUN | regional_netcdf_parallel | - acorn 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 | @@ -160,7 +155,7 @@ RUN | control_p8_faster | - noaacloud 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 | +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_v17_p8_ugwpv1,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 | - noaacloud | fv3 | RUN | control_CubedSphereGrid_debug | - noaacloud | baseline | RUN | control_wrtGauss_netcdf_parallel_debug | - noaacloud | baseline | RUN | control_stochy_debug | - noaacloud | baseline | @@ -321,4 +316,8 @@ RUN | atmaero_control_p8_rad_micro | - noaacloud #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 | +RUN | regional_atmaq_debug | - jet s4 noaacloud | baseline | + +### ATM-FBH test ### +COMPILE | atm_fbh | intelllvm | -DAPP=ATMF -DCCPP_SUITES=FV3_HRRR -D32BIT=ON | - wcoss2 noaacloud acorn | fv3 | +RUN | cpld_regional_atm_fbh | - wcoss2 noaacloud acorn | baseline | diff --git a/tests/test_changes.list b/tests/test_changes.list index f1f310d6ec..29080e02a9 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,154 +1,10 @@ -atm_ds2s_docn_pcice intel -atmaero_control_p8 intel -atmaero_control_p8_rad intel -atmaero_control_p8_rad_micro intel -atmwav_control_noaero_p8 intel -control_CubedSphereGrid_debug intel -control_CubedSphereGrid intel -control_CubedSphereGrid_parallel intel -control_c48.v2.sfc intel -control_c48 gnu -control_csawmg_debug gnu -control_csawmg_debug intel -control_csawmg gnu -control_csawmg intel -control_debug_p8 gnu -control_debug_p8 intel -control_diag_debug gnu -control_diag_debug intel -control_flake gnu -control_flake intel -control_latlon intel -control_lndp_debug intel -control_p8_atmlnd_debug intel -control_p8_atmlnd intel -control_p8_atmlnd_sbs intel -control_p8_faster intel -control_p8 gnu -control_p8_ugwpv1 gnu -control_ras_debug gnu -control_ras_debug intel -control_ras gnu -control_ras intel -control_stochy_debug gnu -control_stochy_debug intel -control_stochy gnu -control_wam_debug gnu -control_wam intel -control_wrtGauss_netcdf_parallel_debug intel -control_wrtGauss_netcdf_parallel intel -conus13km_control gnu -conus13km_control intel -conus13km_debug_2threads gnu -conus13km_debug_2threads intel -conus13km_debug gnu -conus13km_debug intel -conus13km_debug_qr gnu -conus13km_debug_qr intel -conus13km_radar_tten_debug gnu -conus13km_radar_tten_debug intel -cpld_2threads_p8 intel -cpld_bmark_p8 intel -cpld_control_c192_p8 intel -cpld_control_c48 intel -cpld_control_ciceC_p8 intel -cpld_control_gfsv17 intel -cpld_control_noaero_p8_agrid intel -cpld_control_noaero_p8 intel -cpld_control_nowave_noaero_p8 gnu -cpld_control_nowave_noaero_p8 intel -cpld_control_p8.v2.sfc intel -cpld_control_p8 intel -cpld_control_p8_mixedmode intel -cpld_control_pdlib_p8 gnu -cpld_control_qr_p8 intel -cpld_control_sfs intel -cpld_debug_gfsv17 intel -cpld_debug_noaero_p8 intel -cpld_debug_p8 intel -cpld_debug_pdlib_p8 gnu -cpld_decomp_p8 intel -cpld_mpi_gfsv17 intel -cpld_mpi_p8 intel -cpld_regional_atm_fbh intel -cpld_s2sa_p8 intel -cpld_warmstart_c48 intel -gnv1_c96_no_nest_debug gnu -gnv1_c96_no_nest_debug intel -hafs_global_1nest_atm intel -hafs_global_multiple_4nests_atm intel -hafs_global_storm_following_1nest_atm intel -hafs_regional_1nest_atm intel -hafs_regional_atm intel -hafs_regional_atm_ocn intel -hafs_regional_atm_ocn_wav intel -hafs_regional_atm_thompson_gfdlsf intel -hafs_regional_atm_wav intel -hafs_regional_docn intel -hafs_regional_docn_oisst intel -hafs_regional_specified_moving_1nest_atm intel -hafs_regional_storm_following_1nest_atm intel -hafs_regional_storm_following_1nest_atm_ocn_debug intel -hafs_regional_storm_following_1nest_atm_ocn intel -hafs_regional_storm_following_1nest_atm_ocn_wav_inline intel -hafs_regional_storm_following_1nest_atm_ocn_wav intel -hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 intel -hafs_regional_telescopic_2nests_atm intel -hrrr_c3_debug gnu -hrrr_c3_debug intel -hrrr_control_2threads_dyn32_phy32 intel -hrrr_control_debug_dyn32_phy32 gnu -hrrr_control_debug_dyn32_phy32 intel -hrrr_control_debug gnu -hrrr_control_debug intel -hrrr_control_decomp_dyn32_phy32 gnu -hrrr_control_decomp_dyn32_phy32 intel -hrrr_control_decomp gnu -hrrr_control_dyn32_phy32 gnu -hrrr_control_dyn32_phy32 intel -hrrr_control gnu -hrrr_control_noqr gnu -hrrr_gf_debug gnu -hrrr_gf_debug intel -rap_2threads_dyn32_phy32 gnu -rap_2threads_dyn32_phy32 intel -rap_2threads gnu -rap_cires_ugwp_debug intel -rap_clm_lake_debug gnu -rap_clm_lake_debug intel -rap_control_debug_dyn32_phy32 gnu -rap_control_debug_dyn32_phy32 intel -rap_control_debug gnu -rap_control_debug intel -rap_control_dyn32_phy32 gnu -rap_control_dyn32_phy32 intel -rap_control_dyn64_phy32_debug gnu -rap_control_dyn64_phy32_debug intel -rap_control_dyn64_phy32 gnu -rap_control_dyn64_phy32 intel -rap_control gnu -rap_decomp gnu -rap_diag_debug gnu -rap_diag_debug intel -rap_flake_debug gnu -rap_flake_debug intel -rap_lndp_debug intel -rap_noah_debug intel -rap_noah_sfcdiff_cires_ugwp_debug gnu -rap_noah_sfcdiff_cires_ugwp_debug intel -rap_progcld_thompson_debug gnu -rap_progcld_thompson_debug intel -rap_sfcdiff_debug intel -rap_sfcdiff_decomp gnu -rap_sfcdiff gnu -rap_unified_drag_suite_debug intel -rap_unified_ugwp_debug intel -regional_atmaq_debug intel -regional_control_faster intel -regional_debug gnu -regional_debug intel -regional_spp_sppt_shum_skeb_dyn32_phy32 intel -rrfs_v1beta_debug gnu -rrfs_v1beta_debug intel -rrfs_v1beta gnu -rrfs_v1nssl_nohailnoccn intel +cpld_control_gfsv17 intelllvm +cpld_debug_gfsv17 intelllvm +cpld_control_sfs intelllvm +cpld_control_p8 intelllvm +rap_control_dyn32_phy32 intelllvm +rap_control_dyn64_phy32 intelllvm +hafs_regional_storm_following_1nest_atm_ocn intelllvm +hafs_regional_storm_following_1nest_atm_ocn_debug intelllvm +datm_cdeps_control_cfsr intelllvm +datm_cdeps_debug_cfsr intelllvm From 29c2703c715ebdb47bbd4bcc811db340eae530e5 Mon Sep 17 00:00:00 2001 From: Cameron Book <43379611+ulmononian@users.noreply.github.com> Date: Tue, 12 Nov 2024 13:08:12 -0800 Subject: [PATCH 09/24] Add developmental test cases: idealized baroclinic wave and 2020 July CAPE cases + https://github.com/ufs-community/ufs-weather-model/pull/2459 (#2461) * UFSWM - Add tests-dev ATM-only idealized dry baroclinic wave test and a 2020 July CAPE case * UFSWM - Update modulefile to support Rocky 8 on CSPs, with ParallelWorks --------- Co-authored-by: Wei Huang Co-authored-by: Jong Kim --- modulefiles/ufs_noaacloud.intel.lua | 20 +- tests-dev/baseline_setup.yaml | 18 +- tests-dev/create_log.py | 153 ++- tests-dev/create_xml.py | 6 +- tests-dev/logs/RegressionTests_hera.log | 764 +++++------ tests-dev/logs/RegressionTests_hercules.log | 833 ++++++------ tests-dev/logs/RegressionTests_jet.log | 303 +++++ tests-dev/logs/RegressionTests_orion.log | 344 +++++ .../machine_config/machine_derecho.config | 3 - .../machine_config/machine_noaacloud.config | 11 +- tests-dev/machine_config/machine_orion.config | 4 +- tests-dev/test_cases/exp_conf/2020_CAPE.IN | 176 +++ .../test_cases/exp_conf/baroclinic_wave.IN | 178 +++ .../test_cases/parm/baroclinic_wave.nml.IN | 386 ++++++ tests-dev/test_cases/tests/2020_CAPE | 53 + tests-dev/test_cases/tests/baroclinic_wave | 57 + tests-dev/ufs_test.sh | 24 +- tests-dev/ufs_test.yaml | 630 ++++++---- tests-dev/ufs_test_utils.py | 26 +- tests/compile.sh | 3 + tests/fv3_conf/fv3_slurm.IN_noaacloud | 16 +- tests/logs/RegressionTests_noaacloud.log | 1117 ++--------------- tests/module-setup.sh | 2 +- tests/rt.sh | 2 +- tests/test_changes.list | 11 +- 25 files changed, 3010 insertions(+), 2130 deletions(-) create mode 100644 tests-dev/logs/RegressionTests_jet.log create mode 100644 tests-dev/logs/RegressionTests_orion.log create mode 100644 tests-dev/test_cases/exp_conf/2020_CAPE.IN create mode 100644 tests-dev/test_cases/exp_conf/baroclinic_wave.IN create mode 100644 tests-dev/test_cases/parm/baroclinic_wave.nml.IN create mode 100644 tests-dev/test_cases/tests/2020_CAPE create mode 100644 tests-dev/test_cases/tests/baroclinic_wave diff --git a/modulefiles/ufs_noaacloud.intel.lua b/modulefiles/ufs_noaacloud.intel.lua index ef03025c14..658d9a65f0 100644 --- a/modulefiles/ufs_noaacloud.intel.lua +++ b/modulefiles/ufs_noaacloud.intel.lua @@ -4,23 +4,27 @@ loads UFS Model prerequisites for NOAA Parallelworks/Intel prepend_path("MODULEPATH", "/contrib/spack-stack-rocky8/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core") prepend_path("MODULEPATH", "/apps/modules/modulefiles") -prepend_path("PATH", "/contrib/EPIC/bin") -load("gnu") -load("stack-intel") -load("stack-intel-oneapi-mpi") -stack_intel_ver=os.getenv("stack_intel_ver") or "2021.10.0" +gnu_ver=os.getenv("gnu_ver") or "" +load(pathJoin("gnu", gnu_ver)) + +stack_intel_ver=os.getenv("stack_intel_ver") or "" load(pathJoin("stack-intel", stack_intel_ver)) -stack_impi_ver=os.getenv("stack_impi_ver") or "2021.10.0" -load(pathJoin("stack-intel-oneapi-mpi", stack_impi_ver)) -unload("gnu") +stack_intel_oneapi_mpi_ver=os.getenv("stack_intel_oneapi_mpi_ver") or "" +load(pathJoin("stack-intel-oneapi-mpi", stack_intel_oneapi_mpi_ver)) + +gnu_ver=os.getenv("gnu_ver") or "" +unload(pathJoin("gnu", gnu_ver)) cmake_ver=os.getenv("cmake_ver") or "3.23.1" load(pathJoin("cmake", cmake_ver)) load("ufs_common") +nccmp_ver=os.getenv("nccmp_ver") or "1.9.0.1" +load(pathJoin("nccmp", nccmp_ver)) + setenv("CC", "mpiicc") setenv("CXX", "mpiicpc") setenv("FC", "mpiifort") diff --git a/tests-dev/baseline_setup.yaml b/tests-dev/baseline_setup.yaml index 18acbf67c5..5cea75996f 100644 --- a/tests-dev/baseline_setup.yaml +++ b/tests-dev/baseline_setup.yaml @@ -54,15 +54,15 @@ jet: QUEUE: batch COMPILE_QUEUE: batch PARTITION: xjet - dprefix: /mnt/lfs4/HFIP/hfv3gfs/${USER} - DISKNM: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT - STMP: /mnt/lfs4/HFIP/hfv3gfs/${USER}/RT_BASELINE - PTMP: /mnt/lfs4/HFIP/hfv3gfs/${USER}/RT_RUNDIRS + dprefix: /lfs5/HFIP/hfv3gfs/${USER} + DISKNM: /lfs5/HFIP/hfv3gfs/role.epic/RT + STMP: /lfs5/HFIP/hfv3gfs/${USER}/RT_BASELINE + PTMP: /lfs5/HFIP/hfv3gfs/${USER}/RT_RUNDIRS RUNDIR_ROOT: SCHEDULER: slurm - INPUTDATA_ROOT: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/input-data-20240501 - INPUTDATA_ROOT_WW3: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/input-data-20240501/WW3_input_data_20240214 - INPUTDATA_ROOT_BMIC: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/BM_IC-20220207 + INPUTDATA_ROOT: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/input-data-20240501 + INPUTDATA_ROOT_WW3: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/input-data-20240501/WW3_input_data_20240214 + INPUTDATA_ROOT_BMIC: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/BM_IC-20220207 derecho: QUEUE: main COMPILE_QUEUE: main @@ -82,8 +82,8 @@ noaacloud: PARTITION: dprefix: /lustre DISKNM: /contrib/ufs-weather-model/RT - STMP: /lustre/stmp4 - PTMP: /lustre/stmp2 + STMP: /lustre/stmp + PTMP: /lustre/stmp RUNDIR_ROOT: SCHEDULER: slurm INPUTDATA_ROOT: /contrib/ufs-weather-model/RT/NEMSfv3gfs/input-data-20240501 diff --git a/tests-dev/create_log.py b/tests-dev/create_log.py index 6dfee1cbf4..642be7691b 100644 --- a/tests-dev/create_log.py +++ b/tests-dev/create_log.py @@ -3,10 +3,27 @@ import subprocess import yaml from datetime import datetime +#import datetime from ufs_test_utils import get_testcase, write_logfile, delete_files, machine_check_off +def get_timestamps(path): + """Obtain experiment starting and ending time marks through file timestamps + + Args: + path (str): experiment log directory + Returns: + str: experiment starting and ending time strings + """ + dir_list = os.listdir(path) + dt = [] + for f in dir_list: + m_time = os.path.getmtime(path+f) + dt.append(datetime.fromtimestamp(m_time)) + dtsort=sorted(dt) + return str(dtsort[0]),str(dtsort[-1]) + def finish_log(): - """Collects regression test results and generates log file. + """Collect regression test results and generate log file. """ UFS_TEST_YAML = str(os.getenv('UFS_TEST_YAML')) PATHRT = os.getenv('PATHRT') @@ -40,40 +57,46 @@ def finish_log(): COMPILE_ID = apps COMPILE_LOG = 'compile_'+COMPILE_ID+'.log' COMPILE_LOG_TIME ='compile_'+COMPILE_ID+'_timestamp.txt' - with open('./logs/log_'+MACHINE_ID+'/'+COMPILE_LOG) as f: - if "[100%] Linking Fortran executable" in f.read(): - COMPILE_PASS += 1 - f.seek(0) - for line in f: - if 'export RUNDIR_ROOT=' in line: - RUNDIR_ROOT=line.split("=")[1] - break - compile_err = RUNDIR_ROOT.strip('\n')+'/compile_'+COMPILE_ID+'/err' - with open(compile_err) as ferr: - contents = ferr.read() - count_warning = contents.count(": warning #") - count_remarks = contents.count(": remark #") - ferr.close() - warning_log = "" - if count_warning > 0: - warning_log = "("+str(count_warning)+" warnings" - if count_remarks > 0: - warning_log+= ","+str(count_remarks)+" remarks)" - flog = open('./logs/log_'+MACHINE_ID+'/'+COMPILE_LOG_TIME) - timing_data = flog.read() - first_line = timing_data.split('\n', 1)[0] - etime = int(first_line.split(",")[4].strip()) - int(first_line.split(",")[1].strip()) - btime = int(first_line.split(",")[3].strip()) - int(first_line.split(",")[2].strip()) - etime_min, etime_sec = divmod(int(etime), 60) - etime_min = f"{etime_min:02}"; etime_sec = f"{etime_sec:02}" - btime_min, btime_sec = divmod(int(btime), 60) - btime_min = f"{btime_min:02}"; btime_sec = f"{btime_sec:02}" - time_log = " ["+etime_min+':'+etime_sec+', '+btime_min+':'+btime_sec+"]" - flog.close() - compile_log = "PASS -- COMPILE "+COMPILE_ID+time_log+warning_log+"\n" - else: - compile_log = "FAIL -- COMPILE "+COMPILE_ID+"\n" - f.close() + COMPILE_CHECK1 ='Compile '+COMPILE_ID+' Completed' + COMPILE_CHECK2 ='[100%] Linking Fortran executable' + try: + with open('./logs/log_'+MACHINE_ID+'/'+COMPILE_LOG) as f: + if COMPILE_CHECK1 in f.read() or COMPILE_CHECK2 in f.read(): + COMPILE_PASS += 1 + f.seek(0) + for line in f: + if 'export RUNDIR_ROOT=' in line: + RUNDIR_ROOT=line.split("=")[1] + break + compile_err = RUNDIR_ROOT.strip('\n')+'/compile_'+COMPILE_ID+'/err' + with open(compile_err) as ferr: + contents = ferr.read() + count_warning = contents.count(": warning #") + count_remarks = contents.count(": remark #") + ferr.close() + warning_log = "" + if count_warning > 0: + warning_log = "("+str(count_warning)+" warnings" + if count_remarks > 0: + warning_log+= ","+str(count_remarks)+" remarks)" + flog = open('./logs/log_'+MACHINE_ID+'/'+COMPILE_LOG_TIME) + timing_data = flog.read() + first_line = timing_data.split('\n', 1)[0] + etime = int(first_line.split(",")[4].strip()) - int(first_line.split(",")[1].strip()) + btime = int(first_line.split(",")[3].strip()) - int(first_line.split(",")[2].strip()) + etime_min, etime_sec = divmod(int(etime), 60) + etime_min = f"{etime_min:02}"; etime_sec = f"{etime_sec:02}" + btime_min, btime_sec = divmod(int(btime), 60) + btime_min = f"{btime_min:02}"; btime_sec = f"{btime_sec:02}" + time_log = " ["+etime_min+':'+etime_sec+', '+btime_min+':'+btime_sec+"]" + flog.close() + compile_log = "PASS -- COMPILE "+COMPILE_ID+time_log+warning_log+"\n" + else: + compile_log = "FAIL -- COMPILE "+COMPILE_ID+"\n" + f.close() + except FileNotFoundError: + compile_log = "FAIL -- COMPILE "+COMPILE_ID+"\n" + print('./logs/log_'+MACHINE_ID+'/'+COMPILE_LOG+': does not exist') run_logs += compile_log else: PASS_TESTS = True @@ -94,47 +117,49 @@ def finish_log(): PASS_CHECK = 'Test '+TEST_ID+' PASS' MAXS_CHECK = 'The maximum resident set size (KB)' pass_flag = False - create_dep_flag = False - if (CREATE_BASELINE == 'true' and not DEP_RUN == ""): - create_dep_flag = True - if not create_dep_flag: + try: with open('./logs/log_'+MACHINE_ID+'/'+TEST_LOG) as f: if PASS_CHECK in f.read(): pass_flag = True - f.close() - if pass_flag: - f = open('./logs/log_'+MACHINE_ID+'/'+TEST_LOG_TIME) - timing_data = f.read() - first_line = timing_data.split('\n', 1)[0] - etime = str(int(first_line.split(",")[4].strip()) - int(first_line.split(",")[1].strip())) - rtime = str(int(first_line.split(",")[3].strip()) - int(first_line.split(",")[2].strip())) - etime_min, etime_sec = divmod(int(etime), 60) - etime_min = f"{etime_min:02}"; etime_sec = f"{etime_sec:02}" - rtime_min, rtime_sec = divmod(int(rtime), 60) - rtime_min = f"{rtime_min:02}"; rtime_sec = f"{rtime_sec:02}" - time_log = " ["+etime_min+':'+etime_sec+', '+rtime_min+':'+rtime_sec+"]" - f.close() - with open('./logs/log_'+MACHINE_ID+'/'+TEST_LOG) as f: - if pass_flag : + f.close() + except FileNotFoundError: + print('./logs/log_'+MACHINE_ID+'/'+TEST_LOG+': does not exist') + if pass_flag: + f = open('./logs/log_'+MACHINE_ID+'/'+TEST_LOG_TIME) + timing_data = f.read() + first_line = timing_data.split('\n', 1)[0] + etime = str(int(first_line.split(",")[4].strip()) - int(first_line.split(",")[1].strip())) + rtime = str(int(first_line.split(",")[3].strip()) - int(first_line.split(",")[2].strip())) + etime_min, etime_sec = divmod(int(etime), 60) + etime_min = f"{etime_min:02}"; etime_sec = f"{etime_sec:02}" + rtime_min, rtime_sec = divmod(int(rtime), 60) + rtime_min = f"{rtime_min:02}"; rtime_sec = f"{rtime_sec:02}" + time_log = " ["+etime_min+':'+etime_sec+', '+rtime_min+':'+rtime_sec+"]" + f.close() + if pass_flag : + with open('./logs/log_'+MACHINE_ID+'/'+TEST_LOG) as f: rtlog_file = f.readlines() for line in rtlog_file: if MAXS_CHECK in line: memsize= line.split('=')[1].strip() test_log = 'PASS -- TEST '+TEST_ID+time_log+' ('+memsize+' MB)\n' PASS_NR += 1 - else: - test_log = 'FAIL -- TEST '+TEST_ID+'\n' - failed_list.append(TEST_NAME+' '+RT_COMPILER) - FAIL_NR += 1 - run_logs += test_log - f.close() + f.close() + else: + test_log = 'FAIL -- TEST '+TEST_ID+'\n' + failed_list.append(TEST_NAME+' '+RT_COMPILER) + FAIL_NR += 1 + run_logs += test_log run_logs += '\n' write_logfile(filename, "a", output=run_logs) - TEST_START_TIME = os.getenv('TEST_START_TIME') - TEST_END_TIME = os.getenv('TEST_END_TIME') - start_time = datetime.strptime(TEST_START_TIME, "%Y%m%d %H:%M:%S") - end_time = datetime.strptime(TEST_END_TIME, "%Y%m%d %H:%M:%S") + TEST_START_TIME, TEST_END_TIME = get_timestamps('./logs/log_'+MACHINE_ID+'/') + + clean_START_TIME= TEST_START_TIME.split('.')[0] + start_time = datetime.strptime(clean_START_TIME, "%Y-%m-%d %H:%M:%S") + clean_END_TIME= TEST_END_TIME.split('.')[0] + end_time = datetime.strptime(clean_END_TIME, "%Y-%m-%d %H:%M:%S") + hours, remainder= divmod((end_time - start_time).total_seconds(), 3600) minutes, seconds= divmod(remainder, 60) hours = int(hours); minutes=int(minutes); seconds =int(seconds) diff --git a/tests-dev/create_xml.py b/tests-dev/create_xml.py index a7462c70bf..b9133b7938 100644 --- a/tests-dev/create_xml.py +++ b/tests-dev/create_xml.py @@ -32,6 +32,7 @@ def rocoto_create_entries(RTPWD,MACHINE_ID,INPUTDATA_ROOT,INPUTDATA_ROOT_WW3,INP + ]> @@ -195,6 +196,7 @@ def write_runtest_env(): export INPUTDATA_ROOT={INPUTDATA_ROOT} export INPUTDATA_ROOT_WW3={INPUTDATA_ROOT_WW3} export INPUTDATA_ROOT_BMIC={INPUTDATA_ROOT_BMIC} +export INPUTDATA_LM4={INPUTDATA_ROOT}/LM4_input_data export PATHRT={PATHRT} export PATHTR={PATHTR} export NEW_BASELINE={NEW_BASELINE} @@ -216,8 +218,8 @@ def write_runtest_env(): export RTVERBOSE=false """ if ( MACHINE_ID == 'jet' ): - runtest_envs+="export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH" - runtest_envs+="export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages" + runtest_envs += f"export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH\n" + runtest_envs += f"export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages\n" with open(filename,"w+") as f: f.writelines(runtest_envs) diff --git a/tests-dev/logs/RegressionTests_hera.log b/tests-dev/logs/RegressionTests_hera.log index 9cec2a7896..70410a7d83 100644 --- a/tests-dev/logs/RegressionTests_hera.log +++ b/tests-dev/logs/RegressionTests_hera.log @@ -1,31 +1,34 @@ ====START OF hera REGRESSION TESTING LOG==== UFSWM hash used in testing: -5e659f10e5df1f1d1b5eda1c0706927953108f7e +f2d689ee6551f64d5b0dce283191fdc5ac171f3d Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) + 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 49967251b83255bdac7ac2f9626d2714e8b83d07 FV3 (heads/develop) + e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) + b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) + 002a886eeb14979a6811f89e885d2968cbfd9b70 FV3/ccpp/physics (EP4-893-g002a886e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) + 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd +-529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + c7004b658b9dae9fc473d4e6511dfc1cf8e6a7bd WW3 (6.07.1-347-gc7004b65) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) NOTES: @@ -34,377 +37,392 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240724 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_852179 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241031 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_454162 UFS_TEST.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-r) - USE ROCOTO -PASS -- COMPILE s2swa_32bit_intel [13:57, 13:55](1 warnings,8 remarks) -PASS -- TEST cpld_control_p8_mixedmode_intel [06:54, 05:59] (3275484 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_intel [16:22, 16:20](1 warnings,8 remarks) -PASS -- TEST cpld_control_gfsv17_intel [18:07, 17:19] (1995288 MB) -PASS -- TEST cpld_control_gfsv17_iau_intel [19:10, 18:10] (2156140 MB) -PASS -- TEST cpld_restart_gfsv17_intel [09:22, 08:21] (1244284 MB) -PASS -- TEST cpld_mpi_gfsv17_intel [20:10, 19:27] (1853500 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [16:26, 16:24](1 warnings,8 remarks) -PASS -- TEST cpld_control_sfs_intel [17:29, 16:57] (1937068 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [05:41, 05:40](1525 warnings,1998 remarks) -PASS -- TEST cpld_debug_gfsv17_intel [23:50, 23:02] (1923896 MB) - -PASS -- COMPILE s2swa_intel [13:57, 13:55],8 remarks) -PASS -- TEST cpld_control_p8_intel [06:58, 05:59] (3332484 MB) -PASS -- TEST cpld_control_p8.v2.sfc_intel [07:38, 06:36] (3319044 MB) -PASS -- TEST cpld_restart_p8_intel [04:46, 03:45] (3253540 MB) -PASS -- TEST cpld_control_qr_p8_intel [07:03, 06:08] (3334096 MB) -PASS -- TEST cpld_restart_qr_p8_intel [04:46, 03:35] (3289136 MB) -PASS -- TEST cpld_2threads_p8_intel [06:20, 05:30] (3626160 MB) -PASS -- TEST cpld_decomp_p8_intel [06:54, 06:04] (3323856 MB) -PASS -- TEST cpld_mpi_p8_intel [06:00, 05:13] (3191556 MB) -PASS -- TEST cpld_control_ciceC_p8_intel [06:55, 05:58] (3325868 MB) -PASS -- TEST cpld_control_c192_p8_intel [12:06, 10:18] (3515648 MB) -PASS -- TEST cpld_restart_c192_p8_intel [09:03, 06:38] (3634720 MB) -PASS -- TEST cpld_bmark_p8_intel [16:51, 10:24] (4265404 MB) -PASS -- TEST cpld_restart_bmark_p8_intel [13:55, 06:10] (4366120 MB) -PASS -- TEST cpld_s2sa_p8_intel [06:19, 05:23] (3315468 MB) - -PASS -- COMPILE s2sw_intel [13:12, 13:10],8 remarks) -PASS -- TEST cpld_control_noaero_p8_intel [05:47, 04:54] (1990872 MB) -PASS -- TEST cpld_control_nowave_noaero_p8_intel [05:24, 04:28] (2056176 MB) - -PASS -- COMPILE s2swa_debug_intel [05:44, 05:43](1450 warnings,1228 remarks) -PASS -- TEST cpld_debug_p8_intel [09:43, 08:48] (3359844 MB) - -PASS -- COMPILE s2sw_debug_intel [05:16, 05:15](1450 warnings,1228 remarks) -PASS -- TEST cpld_debug_noaero_p8_intel [06:59, 06:01] (1989136 MB) - -PASS -- COMPILE s2s_aoflux_intel [12:33, 12:32],1 remarks) -PASS -- TEST cpld_control_noaero_p8_agrid_intel [05:17, 04:22] (2043880 MB) - -PASS -- COMPILE s2s_intel [12:34, 12:33],1 remarks) -PASS -- TEST cpld_control_c48_intel [09:32, 08:56] (3108564 MB) -PASS -- TEST cpld_warmstart_c48_intel [03:14, 02:38] (3095072 MB) -PASS -- TEST cpld_restart_c48_intel [02:06, 01:31] (2521764 MB) - -PASS -- COMPILE s2swa_faster_intel [17:43, 17:42],8 remarks) -PASS -- TEST cpld_control_p8_faster_intel [06:31, 05:32] (3329308 MB) - -PASS -- COMPILE s2sw_pdlib_intel [16:11, 16:11],8 remarks) -PASS -- TEST cpld_control_pdlib_p8_intel [18:28, 17:36] (2001816 MB) -PASS -- TEST cpld_restart_pdlib_p8_intel [09:26, 08:25] (1268892 MB) -PASS -- TEST cpld_mpi_pdlib_p8_intel [20:58, 20:01] (1914436 MB) - -PASS -- COMPILE s2sw_pdlib_debug_intel [05:21, 05:20](1560 warnings,1998 remarks) -PASS -- TEST cpld_debug_pdlib_p8_intel [25:39, 24:52] (1945360 MB) - -PASS -- COMPILE atm_dyn32_intel [11:51, 11:50](1 warnings,1 remarks) -PASS -- TEST control_flake_intel [03:40, 03:24] (709940 MB) -PASS -- TEST control_CubedSphereGrid_intel [03:27, 02:58] (1602864 MB) -PASS -- TEST control_CubedSphereGrid_parallel_intel [03:33, 03:00] (1603592 MB) -PASS -- TEST control_latlon_intel [03:22, 02:54] (1604196 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_intel [03:29, 02:56] (1605116 MB) -PASS -- TEST control_c48_intel [08:03, 07:34] (1766076 MB) -PASS -- TEST control_c48.v2.sfc_intel [07:02, 06:32] (874424 MB) -PASS -- TEST control_c192_intel [11:19, 10:33] (1733616 MB) -PASS -- TEST control_c384_intel [11:55, 10:23] (2009184 MB) -PASS -- TEST control_c384gdas_intel [10:14, 07:52] (1404820 MB) -PASS -- TEST control_stochy_intel [01:53, 01:37] (662192 MB) -PASS -- TEST control_stochy_restart_intel [01:16, 00:59] (512280 MB) -PASS -- TEST control_lndp_intel [01:47, 01:33] (668412 MB) -PASS -- TEST control_iovr4_intel [03:11, 02:55] (659672 MB) -PASS -- TEST control_iovr5_intel [03:09, 02:55] (659496 MB) -PASS -- TEST control_p8_intel [04:05, 03:19] (1897244 MB) -PASS -- TEST control_p8.v2.sfc_intel [04:00, 03:10] (1896492 MB) -PASS -- TEST control_p8_ugwpv1_intel [03:44, 03:04] (1879792 MB) -PASS -- TEST control_restart_p8_intel [02:22, 01:45] (1142152 MB) -PASS -- TEST control_noqr_p8_intel [03:38, 03:04] (1874324 MB) -PASS -- TEST control_restart_noqr_p8_intel [02:20, 01:44] (1161668 MB) -PASS -- TEST control_decomp_p8_intel [03:43, 03:10] (1852628 MB) -PASS -- TEST control_2threads_p8_intel [03:27, 02:54] (1984284 MB) -PASS -- TEST control_p8_lndp_intel [05:57, 05:26] (1876244 MB) -PASS -- TEST control_p8_rrtmgp_intel [04:45, 04:07] (1950676 MB) -PASS -- TEST control_p8_mynn_intel [03:52, 03:09] (1901556 MB) -PASS -- TEST merra2_thompson_intel [04:11, 03:33] (1889680 MB) -PASS -- TEST regional_control_intel [05:58, 05:27] (1094840 MB) -PASS -- TEST regional_restart_intel [03:24, 03:00] (1099188 MB) -PASS -- TEST regional_decomp_intel [06:15, 05:48] (1096988 MB) -PASS -- TEST regional_2threads_intel [03:52, 03:27] (1094616 MB) -PASS -- TEST regional_noquilt_intel [05:42, 05:16] (1396724 MB) -PASS -- TEST regional_netcdf_parallel_intel [05:52, 05:27] (1101484 MB) -PASS -- TEST regional_2dwrtdecomp_intel [05:45, 05:21] (1105076 MB) -PASS -- TEST regional_wofs_intel [07:24, 06:55] (1897552 MB) - -PASS -- COMPILE rrfs_intel [11:25, 11:23](3 warnings,9 remarks) -PASS -- TEST rap_control_intel [08:12, 07:44] (1113888 MB) -PASS -- TEST regional_spp_sppt_shum_skeb_intel [05:02, 04:11] (1303848 MB) -PASS -- TEST rap_decomp_intel [08:40, 08:09] (1045768 MB) -PASS -- TEST rap_2threads_intel [07:53, 07:25] (1186000 MB) -PASS -- TEST rap_restart_intel [04:32, 04:01] (1105316 MB) -PASS -- TEST rap_sfcdiff_intel [08:18, 07:44] (1112948 MB) -PASS -- TEST rap_sfcdiff_decomp_intel [08:36, 08:09] (1033808 MB) -PASS -- TEST rap_sfcdiff_restart_intel [06:20, 05:48] (1137476 MB) -PASS -- TEST hrrr_control_intel [04:26, 03:58] (1041044 MB) -PASS -- TEST hrrr_control_decomp_intel [04:38, 04:13] (1031336 MB) -PASS -- TEST hrrr_control_2threads_intel [04:03, 03:39] (1116748 MB) -PASS -- TEST hrrr_control_restart_intel [02:30, 02:10] (999008 MB) -PASS -- TEST rrfs_v1beta_intel [08:07, 07:35] (1103292 MB) -PASS -- TEST rrfs_v1nssl_intel [09:37, 09:22] (1976260 MB) -PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [09:20, 09:04] (2071088 MB) - -PASS -- COMPILE csawmg_intel [10:28, 10:26] -PASS -- TEST control_csawmg_intel [06:36, 06:09] (1021928 MB) -PASS -- TEST control_ras_intel [03:27, 03:15] (750380 MB) - -PASS -- COMPILE csawmg_gnu [04:22, 04:20] -PASS -- TEST control_csawmg_gnu [08:54, 08:26] (750412 MB) - -PASS -- COMPILE wam_intel [10:34, 10:33],1 remarks) -PASS -- TEST control_wam_intel [11:23, 10:50] (1665804 MB) - -PASS -- COMPILE atm_faster_dyn32_intel [14:47, 14:46],1 remarks) -PASS -- TEST control_p8_faster_intel [03:30, 02:52] (1877100 MB) -PASS -- TEST regional_control_faster_intel [05:15, 04:51] (1091668 MB) - -PASS -- COMPILE atm_debug_dyn32_intel [06:39, 06:37](884 warnings,9 remarks) -PASS -- TEST control_CubedSphereGrid_debug_intel [03:16, 02:47] (1604436 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [03:12, 02:38] (1623716 MB) -PASS -- TEST control_stochy_debug_intel [03:21, 03:06] (833528 MB) -PASS -- TEST control_lndp_debug_intel [03:11, 02:55] (832248 MB) -PASS -- TEST control_csawmg_debug_intel [04:42, 04:19] (1155312 MB) -PASS -- TEST control_ras_debug_intel [03:08, 02:55] (844692 MB) -PASS -- TEST control_diag_debug_intel [03:26, 02:52] (1668648 MB) -PASS -- TEST control_debug_p8_intel [03:42, 03:13] (1889836 MB) -PASS -- TEST regional_debug_intel [18:09, 17:43] (1103940 MB) -PASS -- TEST rap_control_debug_intel [05:11, 04:58] (1218676 MB) -PASS -- TEST hrrr_control_debug_intel [05:16, 05:01] (1213800 MB) -PASS -- TEST hrrr_gf_debug_intel [05:17, 05:04] (1217072 MB) -PASS -- TEST hrrr_c3_debug_intel [05:17, 05:05] (1171408 MB) -PASS -- TEST rap_unified_drag_suite_debug_intel [05:18, 05:05] (1213252 MB) -PASS -- TEST rap_diag_debug_intel [05:37, 05:11] (1306372 MB) -PASS -- TEST rap_cires_ugwp_debug_intel [05:21, 05:09] (1221840 MB) -PASS -- TEST rap_unified_ugwp_debug_intel [05:20, 05:07] (1222464 MB) -PASS -- TEST rap_lndp_debug_intel [05:13, 04:59] (1222344 MB) -PASS -- TEST rap_progcld_thompson_debug_intel [05:21, 05:06] (1219020 MB) -PASS -- TEST rap_noah_debug_intel [05:03, 04:48] (1218732 MB) -PASS -- TEST rap_sfcdiff_debug_intel [05:16, 05:04] (1211628 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [08:22, 08:07] (1220132 MB) -PASS -- TEST rrfs_v1beta_debug_intel [05:16, 05:03] (1224268 MB) -PASS -- TEST rap_clm_lake_debug_intel [06:21, 06:06] (1216008 MB) -PASS -- TEST rap_flake_debug_intel [05:13, 04:57] (1221016 MB) -PASS -- TEST gnv1_c96_no_nest_debug_intel [09:09, 08:41] (1229176 MB) - -PASS -- COMPILE atm_debug_dyn32_gnu [04:54, 04:53] -PASS -- TEST control_csawmg_debug_gnu [02:53, 02:23] (737988 MB) - -PASS -- COMPILE wam_debug_intel [03:59, 03:58](839 warnings,1 remarks) -PASS -- TEST control_wam_debug_intel [14:14, 13:35] (1691584 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_intel [10:30, 10:30](3 warnings,8 remarks) -PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [04:40, 03:52] (1169156 MB) -PASS -- TEST rap_control_dyn32_phy32_intel [06:53, 06:28] (1058076 MB) -PASS -- TEST hrrr_control_dyn32_phy32_intel [03:49, 03:23] (989796 MB) -PASS -- TEST rap_2threads_dyn32_phy32_intel [06:28, 06:05] (1097024 MB) -PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [03:37, 03:10] (964200 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [04:06, 03:41] (927508 MB) -PASS -- TEST rap_restart_dyn32_phy32_intel [05:24, 04:53] (1037848 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [02:11, 01:53] (928612 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [13:59, 13:58](3 warnings,8 remarks) -PASS -- TEST conus13km_control_intel [02:46, 02:06] (1214948 MB) -PASS -- TEST conus13km_2threads_intel [01:27, 00:55] (1125956 MB) -PASS -- TEST conus13km_restart_mismatch_intel [01:57, 01:23] (1113700 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_intel [10:39, 10:39](3 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_intel [04:42, 04:12] (988812 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [04:07, 04:06](787 warnings,8 remarks) -PASS -- TEST rap_control_debug_dyn32_phy32_intel [05:12, 04:59] (1094828 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [05:09, 04:52] (1102540 MB) -PASS -- TEST conus13km_debug_intel [15:11, 14:37] (1250436 MB) -PASS -- TEST conus13km_debug_qr_intel [15:23, 14:52] (946604 MB) -PASS -- TEST conus13km_debug_2threads_intel [10:16, 09:45] (1163920 MB) -PASS -- TEST conus13km_radar_tten_debug_intel [15:08, 14:38] (1306500 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [04:07, 04:06](787 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_debug_intel [05:44, 05:27] (1141900 MB) - -PASS -- COMPILE hafsw_intel [12:30, 12:30](1 warnings,8 remarks) -PASS -- TEST hafs_regional_atm_intel [06:04, 04:59] (742632 MB) -PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [06:06, 05:47] (1111736 MB) -PASS -- TEST hafs_regional_atm_ocn_intel [08:02, 06:53] (848972 MB) -PASS -- TEST hafs_regional_atm_wav_intel [14:31, 13:24] (871644 MB) -PASS -- TEST hafs_regional_atm_ocn_wav_intel [16:33, 15:18] (885820 MB) -PASS -- TEST hafs_regional_1nest_atm_intel [06:15, 05:28] (503956 MB) -PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [07:49, 06:41] (523248 MB) -PASS -- TEST hafs_global_1nest_atm_intel [03:15, 02:41] (376832 MB) -PASS -- TEST hafs_global_multiple_4nests_atm_intel [08:52, 07:07] (486708 MB) -PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [04:24, 03:51] (533848 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [04:17, 03:36] (530244 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [04:52, 04:09] (594000 MB) -PASS -- TEST hafs_global_storm_following_1nest_atm_intel [01:27, 01:08] (409712 MB) -PASS -- TEST gnv1_nested_intel [05:17, 04:01] (1744792 MB) - -PASS -- COMPILE hafsw_debug_intel [04:38, 04:37](1467 warnings,1501 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [13:59, 13:11] (595672 MB) - -PASS -- COMPILE hafsw_faster_intel [16:34, 16:33],7 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [09:29, 08:41] (684072 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [09:46, 08:50] (749224 MB) - -PASS -- COMPILE hafs_mom6w_intel [12:27, 12:25],7 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [07:14, 06:24] (742820 MB) - -PASS -- COMPILE hafs_all_intel [11:44, 11:43],7 remarks) -PASS -- TEST hafs_regional_docn_intel [07:30, 06:29] (837364 MB) -PASS -- TEST hafs_regional_docn_oisst_intel [07:31, 06:28] (807508 MB) -PASS -- TEST hafs_regional_datm_cdeps_intel [16:49, 16:08] (1222660 MB) - -PASS -- COMPILE datm_cdeps_intel [06:40, 06:39] -PASS -- TEST datm_cdeps_control_cfsr_intel [02:53, 02:44] (1147328 MB) -PASS -- TEST datm_cdeps_restart_cfsr_intel [01:53, 01:43] (1099196 MB) -PASS -- TEST datm_cdeps_control_gefs_intel [02:42, 02:35] (1024148 MB) -PASS -- TEST datm_cdeps_iau_gefs_intel [03:00, 02:42] (1033352 MB) -PASS -- TEST datm_cdeps_stochy_gefs_intel [02:46, 02:39] (1024528 MB) -PASS -- TEST datm_cdeps_ciceC_cfsr_intel [02:54, 02:42] (1160140 MB) -PASS -- TEST datm_cdeps_bulk_cfsr_intel [02:57, 02:46] (1168368 MB) -PASS -- TEST datm_cdeps_bulk_gefs_intel [02:47, 02:40] (1022220 MB) -PASS -- TEST datm_cdeps_mx025_cfsr_intel [07:57, 06:39] (1070768 MB) -PASS -- TEST datm_cdeps_mx025_gefs_intel [07:58, 06:39] (1042496 MB) -PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [02:48, 02:41] (1160968 MB) -PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [04:10, 04:02] (2452188 MB) -PASS -- TEST datm_cdeps_gfs_intel [04:14, 04:03] (2496684 MB) - -PASS -- COMPILE datm_cdeps_debug_intel [03:20, 03:19](2 warnings -PASS -- TEST datm_cdeps_debug_cfsr_intel [06:28, 06:20] (1093840 MB) - -PASS -- COMPILE datm_cdeps_faster_intel [06:38, 06:37] -PASS -- TEST datm_cdeps_control_cfsr_faster_intel [03:04, 02:53] (1148448 MB) - -PASS -- COMPILE datm_cdeps_land_intel [01:12, 01:12],1 remarks) -PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:12, 00:49] (260324 MB) -PASS -- TEST datm_cdeps_lnd_era5_intel [01:09, 00:51] (328172 MB) -PASS -- TEST datm_cdeps_lnd_era5_rst_intel [00:46, 00:30] (321732 MB) - -PASS -- COMPILE atm_ds2s_docn_pcice_intel [11:21, 11:19],1 remarks) -PASS -- TEST atm_ds2s_docn_pcice_intel [04:35, 03:42] (1970100 MB) - -PASS -- COMPILE atm_ds2s_docn_dice_intel [11:08, 11:05],1 remarks) -PASS -- TEST atm_ds2s_docn_dice_intel [04:31, 03:35] (1954524 MB) - -PASS -- COMPILE atml_intel [12:25, 12:24](8 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_sbs_intel [05:14, 04:21] (1851548 MB) -PASS -- TEST control_p8_atmlnd_intel [05:08, 04:22] (1879560 MB) -PASS -- TEST control_restart_p8_atmlnd_intel [03:04, 02:26] (1106320 MB) - -PASS -- COMPILE atml_debug_intel [05:01, 05:00](882 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_debug_intel [06:47, 05:51] (1891340 MB) - -PASS -- COMPILE atmw_intel [11:32, 11:31],8 remarks) -PASS -- TEST atmwav_control_noaero_p8_intel [02:34, 01:55] (1906440 MB) - -PASS -- COMPILE atmaero_intel [11:23, 11:22],1 remarks) -PASS -- TEST atmaero_control_p8_intel [04:53, 04:09] (3182560 MB) -PASS -- TEST atmaero_control_p8_rad_intel [05:38, 04:54] (3084264 MB) -PASS -- TEST atmaero_control_p8_rad_micro_intel [06:26, 05:41] (3044004 MB) - -PASS -- COMPILE atmaq_debug_intel [04:16, 04:15](884 warnings,6 remarks) -PASS -- TEST regional_atmaq_debug_intel [23:00, 21:09] (4478468 MB) - -PASS -- COMPILE atm_gnu [04:45, 04:43] -PASS -- TEST control_c48_gnu [11:43, 11:12] (1539040 MB) -PASS -- TEST control_stochy_gnu [03:34, 03:18] (505064 MB) -PASS -- TEST control_ras_gnu [05:01, 04:46] (514472 MB) -PASS -- TEST control_p8_gnu [05:40, 04:51] (1463300 MB) -PASS -- TEST control_p8_ugwpv1_gnu [05:31, 04:47] (1463428 MB) -PASS -- TEST control_flake_gnu [10:25, 10:10] (549156 MB) - -PASS -- COMPILE rrfs_gnu [04:42, 04:40] -PASS -- TEST rap_control_gnu [11:15, 10:48] (816436 MB) -PASS -- TEST rap_decomp_gnu [11:18, 10:54] (851764 MB) -PASS -- TEST rap_2threads_gnu [10:12, 09:46] (932332 MB) -PASS -- TEST rap_restart_gnu [06:01, 05:28] (578728 MB) -PASS -- TEST rap_sfcdiff_gnu [11:21, 10:47] (814476 MB) -PASS -- TEST rap_sfcdiff_decomp_gnu [11:32, 11:06] (813696 MB) -PASS -- TEST rap_sfcdiff_restart_gnu [08:37, 08:01] (582772 MB) -PASS -- TEST hrrr_control_gnu [05:59, 05:31] (814048 MB) -PASS -- TEST hrrr_control_noqr_gnu [05:59, 05:31] (799468 MB) -PASS -- TEST hrrr_control_2threads_gnu [05:24, 04:59] (921020 MB) -PASS -- TEST hrrr_control_decomp_gnu [06:01, 05:32] (850092 MB) -PASS -- TEST hrrr_control_restart_gnu [03:12, 02:51] (566496 MB) -PASS -- TEST hrrr_control_restart_noqr_gnu [03:10, 02:48] (656112 MB) -PASS -- TEST rrfs_v1beta_gnu [11:05, 10:27] (813500 MB) - -PASS -- COMPILE atm_dyn32_debug_gnu [07:53, 07:52] -PASS -- TEST control_diag_debug_gnu [02:17, 01:40] (1275460 MB) -PASS -- TEST regional_debug_gnu [11:22, 10:54] (748640 MB) -PASS -- TEST rap_control_debug_gnu [02:56, 02:41] (825548 MB) -PASS -- TEST hrrr_control_debug_gnu [02:57, 02:39] (816988 MB) -PASS -- TEST hrrr_gf_debug_gnu [02:58, 02:41] (824812 MB) -PASS -- TEST hrrr_c3_debug_gnu [02:54, 02:41] (828356 MB) -PASS -- TEST rap_diag_debug_gnu [03:16, 02:50] (911492 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [04:23, 04:07] (825672 MB) -PASS -- TEST rap_progcld_thompson_debug_gnu [02:53, 02:38] (825244 MB) -PASS -- TEST rrfs_v1beta_debug_gnu [03:02, 02:38] (818684 MB) -PASS -- TEST control_ras_debug_gnu [01:49, 01:35] (456872 MB) -PASS -- TEST control_stochy_debug_gnu [02:02, 01:45] (452296 MB) -PASS -- TEST control_debug_p8_gnu [02:26, 01:48] (1442360 MB) -PASS -- TEST rap_flake_debug_gnu [02:58, 02:42] (820440 MB) -PASS -- TEST rap_clm_lake_debug_gnu [03:16, 03:00] (821680 MB) -PASS -- TEST gnv1_c96_no_nest_debug_gnu [04:50, 04:21] (832912 MB) - -PASS -- COMPILE wam_debug_gnu [03:19, 03:18] - -PASS -- COMPILE rrfs_dyn32_phy32_gnu [04:55, 04:54] -PASS -- TEST rap_control_dyn32_phy32_gnu [09:51, 09:21] (707504 MB) -PASS -- TEST hrrr_control_dyn32_phy32_gnu [05:25, 04:58] (710952 MB) -PASS -- TEST rap_2threads_dyn32_phy32_gnu [09:08, 08:38] (753076 MB) -PASS -- TEST hrrr_control_2threads_dyn32_phy32_gnu [04:56, 04:30] (745716 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [05:31, 05:03] (707868 MB) -PASS -- TEST rap_restart_dyn32_phy32_gnu [07:30, 06:59] (553380 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [02:57, 02:32] (536668 MB) -PASS -- TEST conus13km_control_gnu [03:59, 03:13] (878456 MB) -PASS -- TEST conus13km_2threads_gnu [06:44, 06:06] (882028 MB) -PASS -- TEST conus13km_restart_mismatch_gnu [02:22, 01:48] (555420 MB) - -PASS -- COMPILE atm_dyn64_phy32_gnu [10:58, 10:57] -PASS -- TEST rap_control_dyn64_phy32_gnu [06:11, 05:39] (738904 MB) - -PASS -- COMPILE atm_dyn32_phy32_debug_gnu [07:43, 07:42] -PASS -- TEST rap_control_debug_dyn32_phy32_gnu [02:54, 02:37] (714828 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [02:48, 02:31] (714776 MB) -PASS -- TEST conus13km_debug_gnu [07:47, 07:09] (893464 MB) -PASS -- TEST conus13km_debug_qr_gnu [07:38, 06:58] (582268 MB) -PASS -- TEST conus13km_debug_2threads_gnu [07:56, 07:26] (900368 MB) -PASS -- TEST conus13km_radar_tten_debug_gnu [07:37, 07:08] (960144 MB) - -PASS -- COMPILE atm_dyn64_phy32_debug_gnu [07:41, 07:40] -PASS -- TEST rap_control_dyn64_phy32_debug_gnu [02:53, 02:39] (734672 MB) - -PASS -- COMPILE s2swa_gnu [16:44, 16:43] -PASS -- COMPILE s2s_gnu [15:45, 15:44] -PASS -- TEST cpld_control_nowave_noaero_p8_gnu [08:31, 07:29] (1536368 MB) - -PASS -- COMPILE s2swa_debug_gnu [03:24, 03:23] +PASS -- COMPILE s2swa_32bit_intel [13:10, 13:09](1 warnings,8 remarks) +PASS -- TEST cpld_control_p8_mixedmode_intel [11:30, 10:35] (3317784 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_intel [16:22, 16:21](1 warnings,8 remarks) +PASS -- TEST cpld_control_gfsv17_intel [18:42, 17:53] (1957392 MB) +PASS -- TEST cpld_control_gfsv17_iau_intel [19:32, 18:31] (2130556 MB) +PASS -- TEST cpld_restart_gfsv17_intel [09:29, 08:31] (1261920 MB) +PASS -- TEST cpld_mpi_gfsv17_intel [20:42, 19:54] (1860868 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [16:07, 16:06](1 warnings,8 remarks) +PASS -- TEST cpld_control_sfs_intel [18:03, 17:29] (1978276 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [05:44, 05:43](1523 warnings,1998 remarks) +PASS -- TEST cpld_debug_gfsv17_intel [27:14, 26:25] (1926868 MB) + +PASS -- COMPILE s2swa_intel [13:09, 13:08](1 warnings,8 remarks) +PASS -- TEST cpld_control_p8_intel [13:54, 12:58] (3324168 MB) +PASS -- TEST cpld_control_p8.v2.sfc_intel [14:03, 13:07] (3337444 MB) +PASS -- TEST cpld_restart_p8_intel [08:05, 07:02] (3258636 MB) +PASS -- TEST cpld_control_qr_p8_intel [13:58, 13:01] (3366012 MB) +PASS -- TEST cpld_restart_qr_p8_intel [08:12, 07:06] (3281508 MB) +PASS -- TEST cpld_2threads_p8_intel [13:13, 12:20] (3637392 MB) +PASS -- TEST cpld_decomp_p8_intel [13:50, 13:04] (3328844 MB) +PASS -- TEST cpld_mpi_p8_intel [11:34, 10:39] (3210484 MB) +PASS -- TEST cpld_control_ciceC_p8_intel [13:56, 13:00] (3339928 MB) +PASS -- TEST cpld_control_c192_p8_intel [12:05, 10:23] (3521864 MB) +PASS -- TEST cpld_restart_c192_p8_intel [08:51, 06:28] (3617208 MB) +PASS -- TEST cpld_bmark_p8_intel [22:10, 16:01] (4285360 MB) +PASS -- TEST cpld_restart_bmark_p8_intel [18:00, 09:24] (4363836 MB) +PASS -- TEST cpld_s2sa_p8_intel [08:21, 07:29] (3312640 MB) + +PASS -- COMPILE s2sw_intel [12:12, 12:11](1 warnings,8 remarks) +PASS -- TEST cpld_control_noaero_p8_intel [08:47, 07:58] (1957128 MB) +PASS -- TEST cpld_control_nowave_noaero_p8_intel [11:54, 11:00] (2042996 MB) + +PASS -- COMPILE s2swa_debug_intel [05:47, 05:46](1413 warnings,1228 remarks) +PASS -- TEST cpld_debug_p8_intel [23:16, 22:19] (3405880 MB) + +PASS -- COMPILE s2sw_debug_intel [05:31, 05:30](1413 warnings,1228 remarks) +PASS -- TEST cpld_debug_noaero_p8_intel [10:22, 09:28] (2009080 MB) + +PASS -- COMPILE s2s_aoflux_intel [11:24, 11:23],1 remarks) +PASS -- TEST cpld_control_noaero_p8_agrid_intel [05:18, 04:25] (2009052 MB) + +PASS -- COMPILE s2s_intel [11:43, 11:42](1 warnings,1 remarks) +PASS -- TEST cpld_control_c48_intel [08:16, 07:45] (3037340 MB) +PASS -- TEST cpld_warmstart_c48_intel [02:50, 02:18] (3025504 MB) +PASS -- TEST cpld_restart_c48_intel [01:53, 01:19] (2478320 MB) + +PASS -- COMPILE s2swa_faster_intel [17:14, 17:13](1 warnings,8 remarks) +PASS -- TEST cpld_control_p8_faster_intel [13:25, 12:27] (3322952 MB) + +PASS -- COMPILE s2sw_pdlib_intel [15:56, 15:56](1 warnings,8 remarks) +PASS -- TEST cpld_control_pdlib_p8_intel [29:04, 28:15] (1990480 MB) +PASS -- TEST cpld_restart_pdlib_p8_intel [15:04, 13:58] (1275344 MB) +PASS -- TEST cpld_mpi_pdlib_p8_intel [33:40, 32:50] (1935116 MB) + +PASS -- COMPILE s2sw_pdlib_debug_intel [05:54, 05:54](1523 warnings,1998 remarks) +PASS -- TEST cpld_debug_pdlib_p8_intel [30:54, 30:08] (1946868 MB) + +PASS -- COMPILE atm_dyn32_intel [10:40, 10:39](1 warnings,1 remarks) +PASS -- TEST 2020_CAPE_intel [06:49, 06:38] (859104 MB) +PASS -- TEST baroclinic_wave_intel [06:07, 05:02] (1487880 MB) +PASS -- TEST control_flake_intel [03:37, 03:21] (702836 MB) +PASS -- TEST control_CubedSphereGrid_intel [03:48, 03:18] (1582512 MB) +PASS -- TEST control_CubedSphereGrid_parallel_intel [03:55, 03:21] (1587900 MB) +PASS -- TEST control_latlon_intel [03:46, 03:17] (1555096 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_intel [03:45, 03:14] (1581608 MB) +PASS -- TEST control_c48_intel [12:10, 11:42] (1720732 MB) +PASS -- TEST control_c48.v2.sfc_intel [06:51, 06:38] (851420 MB) +PASS -- TEST control_c192_intel [12:51, 12:03] (1706936 MB) +PASS -- TEST control_c384_intel [15:28, 13:47] (1985220 MB) +PASS -- TEST control_c384gdas_intel [10:35, 08:21] (1372500 MB) +PASS -- TEST control_stochy_intel [01:53, 01:38] (654376 MB) +PASS -- TEST control_stochy_restart_intel [01:31, 01:01] (500652 MB) +PASS -- TEST control_lndp_intel [01:51, 01:35] (655072 MB) +PASS -- TEST control_iovr4_intel [02:48, 02:30] (649700 MB) +PASS -- TEST control_iovr5_intel [02:48, 02:31] (648924 MB) +PASS -- TEST control_p8_intel [04:26, 03:43] (1886424 MB) +PASS -- TEST control_p8.v2.sfc_intel [03:54, 03:08] (1889208 MB) +PASS -- TEST control_p8_ugwpv1_intel [04:16, 03:37] (1863708 MB) +PASS -- TEST control_restart_p8_intel [02:44, 02:06] (1125100 MB) +PASS -- TEST control_noqr_p8_intel [04:17, 03:41] (1877096 MB) +PASS -- TEST control_restart_noqr_p8_intel [02:46, 02:02] (1166916 MB) +PASS -- TEST control_decomp_p8_intel [04:24, 03:48] (1868888 MB) +PASS -- TEST control_2threads_p8_intel [04:06, 03:33] (1954436 MB) +PASS -- TEST control_p8_lndp_intel [07:16, 06:44] (1857320 MB) +PASS -- TEST control_p8_rrtmgp_intel [04:51, 04:13] (1953868 MB) +PASS -- TEST control_p8_mynn_intel [03:55, 03:09] (1897456 MB) +PASS -- TEST merra2_thompson_intel [04:03, 03:25] (1884636 MB) +PASS -- TEST regional_control_intel [05:49, 05:24] (1089708 MB) +PASS -- TEST regional_restart_intel [03:24, 02:57] (1079256 MB) +PASS -- TEST regional_decomp_intel [06:08, 05:43] (1078316 MB) +PASS -- TEST regional_2threads_intel [04:00, 03:28] (1078124 MB) +PASS -- TEST regional_noquilt_intel [05:49, 05:22] (1389952 MB) +PASS -- TEST regional_netcdf_parallel_intel [05:52, 05:24] (1087332 MB) +PASS -- TEST regional_2dwrtdecomp_intel [05:52, 05:22] (1083848 MB) +PASS -- TEST regional_wofs_intel [07:27, 06:59] (1902944 MB) + +PASS -- COMPILE rrfs_intel [10:24, 10:23](3 warnings,9 remarks) +PASS -- TEST rap_control_intel [08:23, 07:51] (1101128 MB) +PASS -- TEST regional_spp_sppt_shum_skeb_intel [05:01, 04:13] (1249680 MB) +PASS -- TEST rap_decomp_intel [08:39, 08:13] (1030776 MB) +PASS -- TEST rap_2threads_intel [07:53, 07:26] (1162928 MB) +PASS -- TEST rap_restart_intel [04:41, 04:03] (1101340 MB) +PASS -- TEST rap_sfcdiff_intel [08:18, 07:49] (1093532 MB) +PASS -- TEST rap_sfcdiff_decomp_intel [08:38, 08:09] (1035708 MB) +PASS -- TEST rap_sfcdiff_restart_intel [06:32, 05:54] (1121252 MB) +PASS -- TEST hrrr_control_intel [04:42, 04:10] (1024796 MB) +PASS -- TEST hrrr_control_decomp_intel [04:41, 04:09] (1024304 MB) +PASS -- TEST hrrr_control_2threads_intel [04:08, 03:43] (1094908 MB) +PASS -- TEST hrrr_control_restart_intel [02:33, 02:11] (995672 MB) +PASS -- TEST rrfs_v1beta_intel [08:19, 07:44] (1094336 MB) +PASS -- TEST rrfs_v1nssl_intel [09:56, 09:35] (1974348 MB) +PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [09:28, 09:10] (2061176 MB) + +PASS -- COMPILE csawmg_intel [09:59, 09:58] +PASS -- TEST control_csawmg_intel [06:42, 06:14] (1018472 MB) +PASS -- TEST control_ras_intel [03:33, 03:19] (742780 MB) + +PASS -- COMPILE wam_intel [10:09, 10:07],1 remarks) +PASS -- TEST control_wam_intel [12:02, 11:24] (1659012 MB) + +PASS -- COMPILE atm_faster_dyn32_intel [10:30, 10:28],1 remarks) +PASS -- TEST control_p8_faster_intel [03:34, 02:51] (1881924 MB) +PASS -- TEST regional_control_faster_intel [05:35, 05:01] (1090696 MB) + +PASS -- COMPILE atm_debug_dyn32_intel [08:09, 08:08](882 warnings,9 remarks) +PASS -- TEST control_CubedSphereGrid_debug_intel [02:56, 02:21] (1588428 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [02:56, 02:20] (1603936 MB) +PASS -- TEST control_stochy_debug_intel [03:35, 03:17] (833228 MB) +PASS -- TEST control_lndp_debug_intel [03:10, 02:55] (832908 MB) +PASS -- TEST control_csawmg_debug_intel [05:02, 04:32] (1136916 MB) +PASS -- TEST control_ras_debug_intel [03:17, 03:03] (837468 MB) +PASS -- TEST control_diag_debug_intel [03:36, 02:55] (1686996 MB) +PASS -- TEST control_debug_p8_intel [03:15, 02:43] (1893608 MB) +PASS -- TEST regional_debug_intel [17:50, 17:17] (1096720 MB) +PASS -- TEST rap_control_debug_intel [05:20, 05:04] (1212708 MB) +PASS -- TEST hrrr_control_debug_intel [05:15, 04:57] (1201416 MB) +PASS -- TEST hrrr_gf_debug_intel [05:20, 05:04] (1218240 MB) +PASS -- TEST hrrr_c3_debug_intel [05:35, 05:21] (1215000 MB) +PASS -- TEST rap_unified_drag_suite_debug_intel [05:21, 05:07] (1221380 MB) +PASS -- TEST rap_diag_debug_intel [06:02, 05:28] (1296364 MB) +PASS -- TEST rap_cires_ugwp_debug_intel [05:43, 05:26] (1213688 MB) +PASS -- TEST rap_unified_ugwp_debug_intel [05:35, 05:18] (1211856 MB) +PASS -- TEST rap_lndp_debug_intel [05:36, 05:19] (1216568 MB) +PASS -- TEST rap_progcld_thompson_debug_intel [05:19, 05:04] (1211588 MB) +PASS -- TEST rap_noah_debug_intel [05:30, 05:12] (1215124 MB) +PASS -- TEST rap_sfcdiff_debug_intel [05:28, 05:11] (1210684 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [08:43, 08:23] (1211052 MB) +PASS -- TEST rrfs_v1beta_debug_intel [05:19, 05:03] (1210360 MB) +PASS -- TEST rap_clm_lake_debug_intel [06:38, 06:20] (1209768 MB) +PASS -- TEST rap_flake_debug_intel [05:28, 05:11] (1217524 MB) +PASS -- TEST gnv1_c96_no_nest_debug_intel [09:40, 08:59] (1213324 MB) + +PASS -- COMPILE atm_debug_dyn32_gnu [04:29, 04:28] +PASS -- TEST control_csawmg_debug_gnu [02:58, 02:28] (721988 MB) + +PASS -- COMPILE wam_debug_intel [04:48, 04:47](837 warnings,1 remarks) +PASS -- TEST control_wam_debug_intel [14:48, 14:01] (1647624 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_intel [10:13, 10:12](3 warnings,8 remarks) +PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [05:03, 04:08] (1125764 MB) +PASS -- TEST rap_control_dyn32_phy32_intel [07:04, 06:33] (1048748 MB) +PASS -- TEST hrrr_control_dyn32_phy32_intel [04:03, 03:31] (982704 MB) +PASS -- TEST rap_2threads_dyn32_phy32_intel [06:46, 06:18] (1076680 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [03:43, 03:13] (963916 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [04:02, 03:38] (927648 MB) +PASS -- TEST rap_restart_dyn32_phy32_intel [05:33, 04:58] (1033672 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [02:14, 01:53] (925820 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [10:13, 10:11](3 warnings,8 remarks) +PASS -- TEST conus13km_control_intel [02:55, 02:06] (1186804 MB) +PASS -- TEST conus13km_2threads_intel [01:45, 01:02] (1097620 MB) +PASS -- TEST conus13km_restart_mismatch_intel [01:59, 01:19] (1096268 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_intel [10:14, 10:13](3 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_intel [04:55, 04:16] (976524 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [04:51, 04:50](785 warnings,8 remarks) +PASS -- TEST rap_control_debug_dyn32_phy32_intel [05:26, 05:12] (1089144 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [05:19, 05:03] (1078632 MB) +PASS -- TEST conus13km_debug_intel [15:10, 14:21] (1237480 MB) +PASS -- TEST conus13km_debug_qr_intel [15:10, 14:26] (935592 MB) +PASS -- TEST conus13km_debug_2threads_intel [08:45, 08:09] (1162052 MB) +PASS -- TEST conus13km_radar_tten_debug_intel [14:42, 14:07] (1300948 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [04:50, 04:49](785 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_debug_intel [05:18, 05:04] (1151004 MB) + +PASS -- COMPILE hafsw_intel [11:37, 11:36](1 warnings,8 remarks) +PASS -- TEST hafs_regional_atm_intel [06:23, 05:14] (721192 MB) +PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [07:19, 06:51] (1095328 MB) +PASS -- TEST hafs_regional_atm_ocn_intel [08:40, 07:22] (812748 MB) +PASS -- TEST hafs_regional_atm_wav_intel [15:09, 13:59] (846228 MB) +PASS -- TEST hafs_regional_atm_ocn_wav_intel [17:04, 15:38] (868492 MB) +PASS -- TEST hafs_regional_1nest_atm_intel [06:31, 05:41] (492604 MB) +PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [08:12, 07:00] (507444 MB) +PASS -- TEST hafs_global_1nest_atm_intel [03:27, 02:49] (365216 MB) +PASS -- TEST hafs_global_multiple_4nests_atm_intel [10:14, 07:45] (465524 MB) +PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [04:29, 03:53] (519988 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [04:27, 03:43] (521444 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [05:05, 04:16] (570212 MB) +PASS -- TEST hafs_global_storm_following_1nest_atm_intel [01:32, 01:11] (397892 MB) +PASS -- TEST gnv1_nested_intel [05:37, 04:13] (1705680 MB) + +PASS -- COMPILE hafsw_debug_intel [05:28, 05:27](1465 warnings,1501 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [14:01, 13:12] (586896 MB) + +PASS -- COMPILE hafsw_faster_intel [11:19, 11:18],7 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [10:04, 09:09] (641276 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [10:18, 09:18] (728436 MB) + +PASS -- COMPILE hafs_mom6w_intel [11:51, 11:50],7 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [08:18, 06:45] (719760 MB) + +PASS -- COMPILE hafs_all_intel [11:08, 11:07],7 remarks) +PASS -- TEST hafs_regional_docn_intel [08:11, 07:05] (816940 MB) +PASS -- TEST hafs_regional_docn_oisst_intel [08:27, 07:16] (793984 MB) +PASS -- TEST hafs_regional_datm_cdeps_intel [17:10, 16:28] (1218568 MB) + +PASS -- COMPILE datm_cdeps_intel [06:49, 06:48] +PASS -- TEST datm_cdeps_control_cfsr_intel [03:04, 02:54] (1135728 MB) +PASS -- TEST datm_cdeps_restart_cfsr_intel [01:58, 01:42] (1104204 MB) +PASS -- TEST datm_cdeps_control_gefs_intel [02:58, 02:48] (1026148 MB) +PASS -- TEST datm_cdeps_iau_gefs_intel [03:09, 03:00] (1025708 MB) +PASS -- TEST datm_cdeps_stochy_gefs_intel [02:58, 02:47] (1018316 MB) +PASS -- TEST datm_cdeps_ciceC_cfsr_intel [03:08, 02:58] (1150284 MB) +PASS -- TEST datm_cdeps_bulk_cfsr_intel [03:04, 02:55] (1159516 MB) +PASS -- TEST datm_cdeps_bulk_gefs_intel [02:50, 02:41] (1027196 MB) +PASS -- TEST datm_cdeps_mx025_cfsr_intel [07:44, 06:31] (1071044 MB) +PASS -- TEST datm_cdeps_mx025_gefs_intel [07:25, 06:20] (1041660 MB) +PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [02:57, 02:49] (1135368 MB) +PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [04:10, 04:00] (2506364 MB) +PASS -- TEST datm_cdeps_gfs_intel [04:14, 04:03] (2513316 MB) + +PASS -- COMPILE datm_cdeps_debug_intel [03:23, 03:23](2 warnings +PASS -- TEST datm_cdeps_debug_cfsr_intel [06:54, 06:44] (1072348 MB) + +PASS -- COMPILE datm_cdeps_faster_intel [06:48, 06:47] +PASS -- TEST datm_cdeps_control_cfsr_faster_intel [02:59, 02:50] (1138860 MB) + +PASS -- COMPILE datm_cdeps_land_intel [01:11, 01:10],1 remarks) +PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:08, 00:46] (263608 MB) +PASS -- TEST datm_cdeps_lnd_era5_intel [01:09, 00:53] (325140 MB) +PASS -- TEST datm_cdeps_lnd_era5_rst_intel [00:44, 00:30] (329204 MB) + +PASS -- COMPILE datm_cdeps_lm4_intel [01:19, 01:19] +PASS -- TEST datm_cdeps_lm4_gswp3_intel [00:52, 00:32] (567508 MB) +PASS -- TEST datm_cdeps_lm4_gswp3_rst_intel [00:42, 00:19] (454664 MB) + +PASS -- COMPILE atm_ds2s_docn_pcice_intel [10:50, 10:48],1 remarks) +PASS -- TEST atm_ds2s_docn_pcice_intel [04:49, 03:58] (1972556 MB) + +PASS -- COMPILE atm_ds2s_docn_dice_intel [10:33, 10:31](1 warnings,1 remarks) +PASS -- TEST atm_ds2s_docn_dice_intel [09:05, 08:14] (1982928 MB) + +PASS -- COMPILE atml_intel [11:11, 11:10](8 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_sbs_intel [05:18, 04:29] (1839752 MB) +PASS -- TEST control_p8_atmlnd_intel [05:19, 04:29] (1842324 MB) +PASS -- TEST control_restart_p8_atmlnd_intel [03:19, 02:38] (1095400 MB) + +PASS -- COMPILE atml_debug_intel [06:03, 06:02](880 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_debug_intel [06:49, 05:58] (1870948 MB) + +PASS -- COMPILE atmw_intel [10:53, 10:53],8 remarks) +PASS -- TEST atmwav_control_noaero_p8_intel [02:39, 01:59] (1904504 MB) + +PASS -- COMPILE atmaero_intel [10:41, 10:40],1 remarks) +PASS -- TEST atmaero_control_p8_intel [05:02, 04:16] (3180436 MB) +PASS -- TEST atmaero_control_p8_rad_intel [05:53, 05:06] (3071960 MB) +PASS -- TEST atmaero_control_p8_rad_micro_intel [05:52, 05:02] (3104208 MB) + +PASS -- COMPILE atmaq_debug_intel [04:59, 04:58](882 warnings,6 remarks) + +PASS -- COMPILE atm_fbh_intel [09:53, 09:53](3 warnings,8 remarks) +PASS -- TEST cpld_regional_atm_fbh_intel [12:08, 11:51] (1070988 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_intelllvm [06:53, 06:52](5 warnings +PASS -- TEST rap_control_dyn32_phy32_intelllvm [08:57, 08:26] (1047336 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_intelllvm [06:39, 06:38](5 warnings +PASS -- TEST rap_control_dyn64_phy32_intelllvm [05:32, 04:58] (977780 MB) + +PASS -- COMPILE atm_gnu [04:30, 04:29] +PASS -- TEST 2020_CAPE_gnu [11:44, 11:33] (728876 MB) +PASS -- TEST baroclinic_wave_gnu [11:21, 10:20] (962148 MB) +PASS -- TEST control_c48_gnu [10:09, 09:34] (1508744 MB) +PASS -- TEST control_stochy_gnu [03:50, 03:33] (493536 MB) +PASS -- TEST control_ras_gnu [05:21, 05:01] (500640 MB) +PASS -- TEST control_p8_gnu [06:18, 05:21] (1453992 MB) +PASS -- TEST control_p8_ugwpv1_gnu [05:56, 05:13] (1454088 MB) +PASS -- TEST control_flake_gnu [10:47, 10:32] (537420 MB) + +PASS -- COMPILE rrfs_gnu [04:29, 04:28] +PASS -- TEST rap_control_gnu [11:52, 11:22] (812340 MB) +PASS -- TEST rap_decomp_gnu [12:05, 11:38] (807456 MB) +PASS -- TEST rap_2threads_gnu [10:58, 10:27] (925008 MB) +PASS -- TEST rap_restart_gnu [06:35, 05:54] (575764 MB) +PASS -- TEST rap_sfcdiff_gnu [12:06, 11:29] (812636 MB) +PASS -- TEST rap_sfcdiff_decomp_gnu [12:12, 11:37] (806676 MB) +PASS -- TEST rap_sfcdiff_restart_gnu [09:16, 08:31] (577804 MB) +PASS -- TEST hrrr_control_gnu [06:23, 05:55] (810392 MB) +PASS -- TEST hrrr_control_noqr_gnu [06:23, 05:52] (830828 MB) +PASS -- TEST hrrr_control_2threads_gnu [05:42, 05:20] (907960 MB) +PASS -- TEST hrrr_control_decomp_gnu [06:15, 05:53] (841024 MB) +PASS -- TEST hrrr_control_restart_gnu [03:35, 03:07] (561264 MB) +PASS -- TEST hrrr_control_restart_noqr_gnu [03:30, 03:00] (650604 MB) +PASS -- TEST rrfs_v1beta_gnu [11:42, 11:07] (804816 MB) + +PASS -- COMPILE csawmg_gnu [03:52, 03:51] +PASS -- TEST control_csawmg_gnu [09:07, 08:37] (746052 MB) + +PASS -- COMPILE atm_dyn32_debug_gnu [06:34, 06:33] +PASS -- TEST control_diag_debug_gnu [02:16, 01:45] (1270876 MB) +PASS -- TEST regional_debug_gnu [11:34, 11:06] (753144 MB) +PASS -- TEST rap_control_debug_gnu [02:54, 02:41] (829548 MB) +PASS -- TEST hrrr_control_debug_gnu [02:51, 02:38] (817900 MB) +PASS -- TEST hrrr_gf_debug_gnu [02:58, 02:42] (825588 MB) +PASS -- TEST hrrr_c3_debug_gnu [02:55, 02:40] (820180 MB) +PASS -- TEST rap_diag_debug_gnu [03:25, 02:57] (904356 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [04:26, 04:10] (818016 MB) +PASS -- TEST rap_progcld_thompson_debug_gnu [03:06, 02:52] (823460 MB) +PASS -- TEST rrfs_v1beta_debug_gnu [02:57, 02:42] (819252 MB) +PASS -- TEST control_ras_debug_gnu [01:52, 01:38] (455860 MB) +PASS -- TEST control_stochy_debug_gnu [01:57, 01:44] (447536 MB) +PASS -- TEST control_debug_p8_gnu [02:14, 01:42] (1427028 MB) +PASS -- TEST rap_flake_debug_gnu [02:57, 02:42] (820132 MB) +PASS -- TEST rap_clm_lake_debug_gnu [03:05, 02:51] (825700 MB) +PASS -- TEST gnv1_c96_no_nest_debug_gnu [04:55, 04:27] (822924 MB) + +PASS -- COMPILE wam_debug_gnu [02:27, 02:25] + +PASS -- COMPILE rrfs_dyn32_phy32_gnu [04:10, 04:09] +PASS -- TEST rap_control_dyn32_phy32_gnu [10:17, 09:50] (696556 MB) +PASS -- TEST hrrr_control_dyn32_phy32_gnu [05:38, 05:15] (693260 MB) +PASS -- TEST rap_2threads_dyn32_phy32_gnu [09:29, 09:04] (741420 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_gnu [05:11, 04:44] (744556 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [05:44, 05:18] (693264 MB) +PASS -- TEST rap_restart_dyn32_phy32_gnu [07:59, 07:19] (549440 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [03:06, 02:39] (534208 MB) +PASS -- TEST conus13km_control_gnu [03:59, 03:12] (868928 MB) +PASS -- TEST conus13km_2threads_gnu [06:02, 05:29] (871316 MB) +PASS -- TEST conus13km_restart_mismatch_gnu [02:25, 01:49] (550128 MB) + +PASS -- COMPILE atm_dyn64_phy32_gnu [09:47, 09:46] +PASS -- TEST rap_control_dyn64_phy32_gnu [06:27, 05:56] (721192 MB) + +PASS -- COMPILE atm_dyn32_phy32_debug_gnu [06:37, 06:37] +PASS -- TEST rap_control_debug_dyn32_phy32_gnu [02:53, 02:38] (709736 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [02:49, 02:33] (704188 MB) +PASS -- TEST conus13km_debug_gnu [07:38, 06:59] (880968 MB) +PASS -- TEST conus13km_debug_qr_gnu [07:51, 07:16] (570624 MB) +PASS -- TEST conus13km_debug_2threads_gnu [08:16, 07:42] (885280 MB) +PASS -- TEST conus13km_radar_tten_debug_gnu [07:40, 07:05] (948688 MB) + +PASS -- COMPILE atm_dyn64_phy32_debug_gnu [06:36, 06:35] +PASS -- TEST rap_control_dyn64_phy32_debug_gnu [03:04, 02:50] (726468 MB) + +PASS -- COMPILE s2swa_gnu [16:31, 16:30] +PASS -- COMPILE s2s_gnu [15:56, 15:55] +PASS -- TEST cpld_control_nowave_noaero_p8_gnu [20:03, 18:59] (1507008 MB) + +PASS -- COMPILE s2swa_debug_gnu [03:07, 03:06] PASS -- COMPILE s2sw_pdlib_gnu [16:15, 16:14] -PASS -- TEST cpld_control_pdlib_p8_gnu [20:46, 19:54] (1458072 MB) +PASS -- TEST cpld_control_pdlib_p8_gnu [32:09, 31:10] (1448308 MB) -PASS -- COMPILE s2sw_pdlib_debug_gnu [03:13, 03:12] -PASS -- TEST cpld_debug_pdlib_p8_gnu [14:31, 13:36] (1451368 MB) +PASS -- COMPILE s2sw_pdlib_debug_gnu [02:57, 02:56] -PASS -- COMPILE datm_cdeps_gnu [15:42, 15:41] -PASS -- TEST datm_cdeps_control_cfsr_gnu [03:16, 03:06] (682964 MB) +PASS -- COMPILE datm_cdeps_gnu [15:35, 15:33] +PASS -- TEST datm_cdeps_control_cfsr_gnu [03:21, 03:12] (693868 MB) SYNOPSIS: -Starting Date/Time: 20240727 20:11:02 -Ending Date/Time: 20240728 00:59:44 -Total Time: 04h:48m:42s -Compiles Completed: 57/57 -Tests Completed: 245/245 +Starting Date/Time: 2024-11-11 22:51:04 +Ending Date/Time: 2024-11-12 04:00:52 +Total Time: 05h:09m:48s +Compiles Completed: 61/61 +Tests Completed: 252/252 NOTES: diff --git a/tests-dev/logs/RegressionTests_hercules.log b/tests-dev/logs/RegressionTests_hercules.log index cae5c403c8..6f53f528f3 100644 --- a/tests-dev/logs/RegressionTests_hercules.log +++ b/tests-dev/logs/RegressionTests_hercules.log @@ -1,31 +1,34 @@ ====START OF hercules REGRESSION TESTING LOG==== UFSWM hash used in testing: -17a83e2be289181af20ba9fec4ce683393447809 +e366ec57380a76f1da3be0364eb0473762a1cf9d Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) + 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 49967251b83255bdac7ac2f9626d2714e8b83d07 FV3 (heads/develop) + e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) + b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) + 002a886eeb14979a6811f89e885d2968cbfd9b70 FV3/ccpp/physics (EP4-893-g002a886e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) + 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd +-529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + c7004b658b9dae9fc473d4e6511dfc1cf8e6a7bd WW3 (6.07.1-347-gc7004b65) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) NOTES: @@ -34,376 +37,456 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /work2/noaa/epic/nandoam/stmp/hercules/nandoam/FV3_RT/rt_543959 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20241031 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/jongkim/FV3_RT/rt_3031060 UFS_TEST.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-r) - USE ROCOTO -PASS -- COMPILE s2swa_32bit_intel [10:14, 10:13](1 warnings,10 remarks) -PASS -- TEST cpld_control_p8_mixedmode_intel [08:21, 07:40] (2129484 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_intel [15:43, 15:42](1 warnings,10 remarks) -PASS -- TEST cpld_control_gfsv17_intel [14:09, 13:33] (2005816 MB) -PASS -- TEST cpld_control_gfsv17_iau_intel [15:05, 14:01] (2293032 MB) -PASS -- TEST cpld_restart_gfsv17_intel [07:00, 06:31] (1328388 MB) -PASS -- TEST cpld_mpi_gfsv17_intel [15:42, 14:57] (1914440 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [17:07, 17:07](1 warnings,10 remarks) -PASS -- TEST cpld_control_sfs_intel [13:19, 13:04] (1998772 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [04:12, 04:11](1525 warnings,2000 remarks) -PASS -- TEST cpld_debug_gfsv17_intel [21:53, 21:05] (1975984 MB) - -PASS -- COMPILE s2swa_intel [11:05, 11:04],10 remarks) -PASS -- TEST cpld_control_p8_intel [08:37, 07:52] (2191088 MB) -PASS -- TEST cpld_control_p8.v2.sfc_intel [08:25, 07:42] (2186660 MB) -PASS -- TEST cpld_restart_p8_intel [05:05, 04:25] (1991300 MB) -PASS -- TEST cpld_control_qr_p8_intel [08:28, 07:42] (2220256 MB) -PASS -- TEST cpld_restart_qr_p8_intel [05:15, 04:25] (1742124 MB) -PASS -- TEST cpld_2threads_p8_intel [09:28, 08:59] (2544432 MB) -PASS -- TEST cpld_decomp_p8_intel [08:13, 07:36] (2175668 MB) -PASS -- TEST cpld_mpi_p8_intel [07:02, 06:23] (2098072 MB) -PASS -- TEST cpld_control_ciceC_p8_intel [08:19, 07:37] (2189656 MB) -PASS -- TEST cpld_control_c192_p8_intel [16:51, 15:43] (2970344 MB) -PASS -- TEST cpld_restart_c192_p8_intel [07:24, 05:47] (2929308 MB) -PASS -- TEST cpld_bmark_p8_intel [12:59, 08:57] (3813308 MB) -PASS -- TEST cpld_restart_bmark_p8_intel [11:32, 05:32] (3641116 MB) -PASS -- TEST cpld_s2sa_p8_intel [05:31, 05:02] (2159060 MB) - -PASS -- COMPILE s2sw_intel [10:22, 10:22],10 remarks) -PASS -- TEST cpld_control_noaero_p8_intel [07:52, 07:19] (2019944 MB) -PASS -- TEST cpld_control_nowave_noaero_p8_intel [04:55, 04:24] (2090540 MB) - -PASS -- COMPILE s2swa_debug_intel [05:33, 05:32](1450 warnings,1230 remarks) -PASS -- TEST cpld_debug_p8_intel [09:09, 08:25] (2211636 MB) - -PASS -- COMPILE s2sw_debug_intel [05:08, 05:08](1450 warnings,1230 remarks) -PASS -- TEST cpld_debug_noaero_p8_intel [05:48, 05:14] (2054848 MB) - -PASS -- COMPILE s2s_aoflux_intel [09:18, 09:18],3 remarks) -PASS -- TEST cpld_control_noaero_p8_agrid_intel [05:39, 04:59] (2076360 MB) - -PASS -- COMPILE s2s_intel [08:47, 08:47],3 remarks) -PASS -- TEST cpld_control_c48_intel [10:27, 10:01] (3112160 MB) -PASS -- TEST cpld_warmstart_c48_intel [02:56, 02:31] (3083164 MB) -PASS -- TEST cpld_restart_c48_intel [01:41, 01:27] (2547716 MB) - -PASS -- COMPILE s2swa_faster_intel [15:23, 15:23],10 remarks) -PASS -- TEST cpld_control_p8_faster_intel [08:57, 08:11] (2183292 MB) - -PASS -- COMPILE s2sw_pdlib_intel [18:10, 18:10],10 remarks) -PASS -- TEST cpld_control_pdlib_p8_intel [14:16, 13:42] (2036988 MB) -PASS -- TEST cpld_restart_pdlib_p8_intel [07:18, 06:44] (1389792 MB) -PASS -- TEST cpld_mpi_pdlib_p8_intel [15:54, 15:14] (1967980 MB) - -PASS -- COMPILE s2sw_pdlib_debug_intel [05:25, 05:25](1560 warnings,2000 remarks) -PASS -- TEST cpld_debug_pdlib_p8_intel [23:00, 22:22] (2023460 MB) - -PASS -- COMPILE atm_dyn32_intel [09:30, 09:30](1 warnings,1 remarks) -PASS -- TEST control_flake_intel [03:46, 03:34] (714964 MB) -PASS -- TEST control_CubedSphereGrid_intel [03:04, 02:39] (1610580 MB) -PASS -- TEST control_CubedSphereGrid_parallel_intel [03:04, 02:34] (1617392 MB) -PASS -- TEST control_latlon_intel [02:42, 02:25] (1604492 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_intel [02:53, 02:30] (1613924 MB) -PASS -- TEST control_c48_intel [07:12, 06:53] (1745244 MB) -PASS -- TEST control_c48.v2.sfc_intel [06:08, 05:56] (861908 MB) -PASS -- TEST control_c192_intel [09:34, 09:08] (1755128 MB) -PASS -- TEST control_c384_intel [10:31, 09:30] (2053240 MB) -PASS -- TEST control_c384gdas_intel [11:00, 09:39] (1529356 MB) -PASS -- TEST control_stochy_intel [01:52, 01:44] (662764 MB) -PASS -- TEST control_stochy_restart_intel [01:17, 01:03] (543352 MB) -PASS -- TEST control_lndp_intel [01:45, 01:35] (690228 MB) -PASS -- TEST control_iovr4_intel [02:45, 02:37] (670316 MB) -PASS -- TEST control_iovr5_intel [02:45, 02:38] (663084 MB) -PASS -- TEST control_p8_intel [03:12, 02:38] (1909624 MB) -PASS -- TEST control_p8.v2.sfc_intel [03:14, 02:38] (1911236 MB) -PASS -- TEST control_p8_ugwpv1_intel [03:11, 02:34] (1898624 MB) -PASS -- TEST control_restart_p8_intel [02:01, 01:34] (1171084 MB) -PASS -- TEST control_noqr_p8_intel [03:01, 02:34] (1908472 MB) -PASS -- TEST control_restart_noqr_p8_intel [01:54, 01:31] (1216572 MB) -PASS -- TEST control_decomp_p8_intel [03:10, 02:40] (1888532 MB) -PASS -- TEST control_2threads_p8_intel [02:58, 02:28] (1986460 MB) -PASS -- TEST control_p8_lndp_intel [04:50, 04:33] (1909972 MB) -PASS -- TEST control_p8_rrtmgp_intel [04:11, 03:36] (1976124 MB) -PASS -- TEST control_p8_mynn_intel [03:13, 02:41] (1917140 MB) -PASS -- TEST merra2_thompson_intel [03:36, 02:56] (1919508 MB) -PASS -- TEST regional_control_intel [05:00, 04:41] (1201416 MB) -PASS -- TEST regional_restart_intel [02:49, 02:36] (1174616 MB) -PASS -- TEST regional_decomp_intel [05:17, 04:57] (1196052 MB) -PASS -- TEST regional_2threads_intel [03:16, 03:02] (1158360 MB) -PASS -- TEST regional_noquilt_intel [04:46, 04:31] (1527012 MB) -PASS -- TEST regional_netcdf_parallel_intel [05:13, 04:47] (1207656 MB) -PASS -- TEST regional_2dwrtdecomp_intel [05:00, 04:39] (1198288 MB) -PASS -- TEST regional_wofs_intel [07:37, 07:17] (2088288 MB) - -PASS -- COMPILE rrfs_intel [07:26, 07:26](3 warnings,9 remarks) -PASS -- TEST rap_control_intel [07:12, 06:39] (1213496 MB) -PASS -- TEST regional_spp_sppt_shum_skeb_intel [04:00, 03:28] (1408956 MB) -PASS -- TEST rap_decomp_intel [07:28, 06:56] (1153196 MB) -PASS -- TEST rap_2threads_intel [06:48, 06:10] (1369584 MB) -PASS -- TEST rap_restart_intel [03:56, 03:28] (1160520 MB) -PASS -- TEST rap_sfcdiff_intel [07:12, 06:39] (1228628 MB) -PASS -- TEST rap_sfcdiff_decomp_intel [07:28, 06:57] (1167808 MB) -PASS -- TEST rap_sfcdiff_restart_intel [05:30, 05:02] (1219400 MB) -PASS -- TEST hrrr_control_intel [03:59, 03:26] (1102540 MB) -PASS -- TEST hrrr_control_decomp_intel [04:10, 03:35] (1056660 MB) -PASS -- TEST hrrr_control_2threads_intel [08:53, 08:15] (1124332 MB) -PASS -- TEST hrrr_control_restart_intel [02:13, 01:58] (1042628 MB) -PASS -- TEST rrfs_v1beta_intel [07:02, 06:27] (1204596 MB) -PASS -- TEST rrfs_v1nssl_intel [07:46, 07:37] (2004728 MB) -PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [07:38, 07:26] (2178328 MB) - -PASS -- COMPILE csawmg_intel [07:01, 07:01] -PASS -- TEST control_csawmg_intel [06:32, 06:14] (1059284 MB) -PASS -- TEST control_ras_intel [03:04, 02:55] (860612 MB) - -PASS -- COMPILE csawmg_gnu [03:50, 03:50] -PASS -- TEST control_csawmg_gnu [07:20, 06:58] (1071576 MB) - -PASS -- COMPILE wam_intel [07:30, 07:30],1 remarks) -PASS -- TEST control_wam_intel [10:49, 10:06] (1681804 MB) - -PASS -- COMPILE atm_faster_dyn32_intel [14:01, 14:01],1 remarks) -PASS -- TEST control_p8_faster_intel [02:59, 02:24] (1906392 MB) -PASS -- TEST regional_control_faster_intel [05:26, 05:09] (1192036 MB) - -PASS -- COMPILE atm_debug_dyn32_intel [05:20, 05:19](884 warnings,9 remarks) -PASS -- TEST control_CubedSphereGrid_debug_intel [02:46, 02:20] (1644528 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [02:40, 02:15] (1638648 MB) -PASS -- TEST control_stochy_debug_intel [02:49, 02:36] (843852 MB) -PASS -- TEST control_lndp_debug_intel [02:26, 02:18] (842612 MB) -PASS -- TEST control_csawmg_debug_intel [03:48, 03:36] (1164396 MB) -PASS -- TEST control_ras_debug_intel [02:26, 02:19] (851764 MB) -PASS -- TEST control_diag_debug_intel [02:42, 02:20] (1701584 MB) -PASS -- TEST control_debug_p8_intel [02:55, 02:37] (1938140 MB) -PASS -- TEST regional_debug_intel [16:40, 16:25] (1161000 MB) -PASS -- TEST rap_control_debug_intel [04:05, 03:59] (1238112 MB) -PASS -- TEST hrrr_control_debug_intel [04:24, 04:15] (1231056 MB) -PASS -- TEST hrrr_gf_debug_intel [04:12, 04:05] (1238764 MB) -PASS -- TEST hrrr_c3_debug_intel [04:13, 04:07] (1244492 MB) -PASS -- TEST rap_unified_drag_suite_debug_intel [04:20, 04:13] (1233992 MB) -PASS -- TEST rap_diag_debug_intel [04:28, 04:16] (1311912 MB) -PASS -- TEST rap_cires_ugwp_debug_intel [04:24, 04:18] (1241964 MB) -PASS -- TEST rap_unified_ugwp_debug_intel [04:37, 04:23] (1237336 MB) -PASS -- TEST rap_lndp_debug_intel [04:22, 04:07] (1232572 MB) -PASS -- TEST rap_progcld_thompson_debug_intel [04:21, 04:10] (1237704 MB) -PASS -- TEST rap_noah_debug_intel [04:07, 04:00] (1234280 MB) -PASS -- TEST rap_sfcdiff_debug_intel [04:17, 04:09] (1236752 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [07:10, 07:00] (1230752 MB) -PASS -- TEST rrfs_v1beta_debug_intel [04:16, 04:05] (1239552 MB) -PASS -- TEST rap_clm_lake_debug_intel [05:25, 05:13] (1230492 MB) -PASS -- TEST rap_flake_debug_intel [04:10, 04:02] (1230676 MB) -PASS -- TEST gnv1_c96_no_nest_debug_intel [07:52, 07:16] (1239252 MB) - -PASS -- COMPILE atm_debug_dyn32_gnu [05:43, 05:43] -PASS -- TEST control_csawmg_debug_gnu [02:08, 01:54] (1062516 MB) - -PASS -- COMPILE wam_debug_intel [03:33, 03:33](839 warnings,1 remarks) - -PASS -- COMPILE rrfs_dyn32_phy32_intel [07:17, 07:17](3 warnings,8 remarks) -PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [04:06, 03:33] (1268824 MB) -PASS -- TEST rap_control_dyn32_phy32_intel [07:41, 07:06] (1179780 MB) -PASS -- TEST hrrr_control_dyn32_phy32_intel [04:21, 03:34] (1053716 MB) -PASS -- TEST rap_2threads_dyn32_phy32_intel [06:31, 06:00] (1297048 MB) -PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [03:49, 03:04] (1049296 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [04:33, 03:51] (1007912 MB) -PASS -- TEST rap_restart_dyn32_phy32_intel [05:53, 05:17] (1135840 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [02:11, 01:53] (959756 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [11:47, 11:46](3 warnings,8 remarks) -PASS -- TEST conus13km_control_intel [02:08, 01:44] (1320540 MB) -PASS -- TEST conus13km_2threads_intel [01:04, 00:45] (1211848 MB) -PASS -- TEST conus13km_restart_mismatch_intel [01:23, 01:03] (1156444 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_intel [07:41, 07:41](3 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_intel [04:00, 03:43] (1070280 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [03:35, 03:35](787 warnings,8 remarks) -PASS -- TEST rap_control_debug_dyn32_phy32_intel [04:17, 04:09] (1120284 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [04:03, 03:54] (1109828 MB) -PASS -- TEST conus13km_debug_intel [13:12, 12:45] (1362828 MB) -PASS -- TEST conus13km_debug_qr_intel [13:34, 13:11] (1012732 MB) -PASS -- TEST conus13km_debug_2threads_intel [08:39, 08:24] (1259788 MB) -PASS -- TEST conus13km_radar_tten_debug_intel [12:56, 12:37] (1433524 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [03:29, 03:29](787 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_debug_intel [04:21, 04:14] (1158140 MB) - -PASS -- COMPILE hafsw_intel [10:40, 10:40](1 warnings,9 remarks) -PASS -- TEST hafs_regional_atm_intel [06:05, 05:15] (871548 MB) -PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [05:04, 04:51] (1266756 MB) -PASS -- TEST hafs_regional_atm_ocn_intel [07:26, 06:24] (947688 MB) -PASS -- TEST hafs_regional_atm_wav_intel [14:45, 13:54] (989996 MB) -PASS -- TEST hafs_regional_atm_ocn_wav_intel [16:06, 15:02] (1015140 MB) -PASS -- TEST hafs_regional_1nest_atm_intel [05:57, 05:24] (611612 MB) -PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [07:54, 06:55] (627516 MB) -PASS -- TEST hafs_global_1nest_atm_intel [02:59, 02:34] (442256 MB) -PASS -- TEST hafs_global_multiple_4nests_atm_intel [08:56, 07:33] (554560 MB) -PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [04:20, 03:51] (626152 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [04:07, 03:35] (617620 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [05:26, 04:46] (685628 MB) -PASS -- TEST hafs_global_storm_following_1nest_atm_intel [01:25, 01:09] (455740 MB) - -PASS -- COMPILE hafsw_debug_intel [03:38, 03:38](1467 warnings,1502 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [14:05, 13:37] (687668 MB) - -PASS -- COMPILE hafsw_faster_intel [15:37, 15:36],8 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [16:45, 16:06] (765496 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [16:41, 15:57] (851620 MB) - -PASS -- COMPILE hafs_mom6w_intel [11:18, 11:17],7 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [10:51, 10:08] (823680 MB) - -PASS -- COMPILE hafs_all_intel [09:56, 09:56],8 remarks) -PASS -- TEST hafs_regional_docn_intel [06:16, 05:24] (935040 MB) -PASS -- TEST hafs_regional_docn_oisst_intel [06:24, 05:34] (940492 MB) -PASS -- TEST hafs_regional_datm_cdeps_intel [16:58, 16:25] (1343520 MB) - -PASS -- COMPILE datm_cdeps_intel [05:17, 05:17],2 remarks) -PASS -- TEST datm_cdeps_control_cfsr_intel [02:14, 02:09] (1153520 MB) -PASS -- TEST datm_cdeps_restart_cfsr_intel [01:24, 01:18] (1096412 MB) -PASS -- TEST datm_cdeps_control_gefs_intel [03:02, 02:57] (1017844 MB) -PASS -- TEST datm_cdeps_iau_gefs_intel [02:11, 02:07] (1021472 MB) -PASS -- TEST datm_cdeps_stochy_gefs_intel [02:12, 02:06] (1021720 MB) -PASS -- TEST datm_cdeps_ciceC_cfsr_intel [03:10, 03:04] (1121116 MB) -PASS -- TEST datm_cdeps_bulk_cfsr_intel [02:11, 02:07] (1160100 MB) -PASS -- TEST datm_cdeps_bulk_gefs_intel [02:06, 02:02] (1021784 MB) -PASS -- TEST datm_cdeps_mx025_cfsr_intel [05:27, 04:56] (1174944 MB) -PASS -- TEST datm_cdeps_mx025_gefs_intel [05:22, 04:50] (1162748 MB) -PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [02:12, 02:08] (1123180 MB) -PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [04:13, 04:06] (2360116 MB) -PASS -- TEST datm_cdeps_gfs_intel [04:08, 04:01] (2429888 MB) - -PASS -- COMPILE datm_cdeps_debug_intel [03:07, 03:07](2 warnings,2 remarks) -PASS -- TEST datm_cdeps_debug_cfsr_intel [05:10, 05:05] (1063444 MB) - -PASS -- COMPILE datm_cdeps_faster_intel [05:19, 05:19],2 remarks) -PASS -- TEST datm_cdeps_control_cfsr_faster_intel [02:15, 02:07] (1171280 MB) - -PASS -- COMPILE datm_cdeps_land_intel [00:46, 00:46],1 remarks) -PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:06, 00:50] (334496 MB) -PASS -- TEST datm_cdeps_lnd_era5_intel [01:03, 00:49] (572520 MB) -PASS -- TEST datm_cdeps_lnd_era5_rst_intel [00:41, 00:31] (571540 MB) - -PASS -- COMPILE atm_ds2s_docn_pcice_intel [07:43, 07:43],3 remarks) -PASS -- TEST atm_ds2s_docn_pcice_intel [04:17, 03:38] (2015268 MB) - -PASS -- COMPILE atm_ds2s_docn_dice_intel [08:55, 08:54],1 remarks) -PASS -- TEST atm_ds2s_docn_dice_intel [04:52, 04:12] (1988396 MB) - -PASS -- COMPILE atml_intel [09:41, 09:41](8 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_sbs_intel [07:57, 07:07] (1903416 MB) -PASS -- TEST control_p8_atmlnd_intel [07:32, 06:42] (1902872 MB) -PASS -- TEST control_restart_p8_atmlnd_intel [03:50, 03:19] (1146648 MB) - -PASS -- COMPILE atml_debug_intel [04:18, 04:17](882 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_debug_intel [06:27, 05:42] (1936600 MB) - -PASS -- COMPILE atmw_intel [09:38, 09:38],8 remarks) -PASS -- TEST atmwav_control_noaero_p8_intel [02:36, 01:54] (1954912 MB) - -PASS -- COMPILE atmaero_intel [07:34, 07:33],1 remarks) -PASS -- TEST atmaero_control_p8_intel [05:22, 04:47] (2030936 MB) -PASS -- TEST atmaero_control_p8_rad_intel [05:07, 04:29] (1803268 MB) -PASS -- TEST atmaero_control_p8_rad_micro_intel [05:00, 04:31] (1822764 MB) - -PASS -- COMPILE atmaq_debug_intel [03:09, 03:08](884 warnings,6 remarks) -PASS -- TEST regional_atmaq_debug_intel [17:49, 16:42] (4563588 MB) - -PASS -- COMPILE atm_gnu [04:18, 04:17] -PASS -- TEST control_c48_gnu [09:41, 09:16] (1555776 MB) -PASS -- TEST control_stochy_gnu [02:50, 02:39] (731092 MB) -PASS -- TEST control_ras_gnu [03:57, 03:46] (737984 MB) -PASS -- TEST control_p8_gnu [04:34, 03:53] (1729072 MB) -PASS -- TEST control_p8_ugwpv1_gnu [04:26, 03:52] (1757840 MB) -PASS -- TEST control_flake_gnu [04:44, 04:32] (820784 MB) - -PASS -- COMPILE rrfs_gnu [04:09, 04:09] -PASS -- TEST rap_control_gnu [08:20, 07:46] (1089052 MB) -PASS -- TEST rap_decomp_gnu [08:31, 07:57] (1093316 MB) -PASS -- TEST rap_2threads_gnu [07:44, 07:08] (1149416 MB) -PASS -- TEST rap_restart_gnu [04:40, 03:58] (885348 MB) -PASS -- TEST rap_sfcdiff_gnu [08:25, 07:48] (1083964 MB) -PASS -- TEST rap_sfcdiff_decomp_gnu [08:33, 07:56] (1083656 MB) -PASS -- TEST rap_sfcdiff_restart_gnu [06:40, 05:55] (884976 MB) -PASS -- TEST hrrr_control_gnu [04:35, 03:59] (1076288 MB) -PASS -- TEST hrrr_control_noqr_gnu [04:31, 04:01] (1135484 MB) -PASS -- TEST hrrr_control_2threads_gnu [07:28, 06:49] (1047856 MB) -PASS -- TEST hrrr_control_decomp_gnu [04:38, 04:02] (1070560 MB) -PASS -- TEST hrrr_control_restart_gnu [02:27, 02:06] (883068 MB) -PASS -- TEST hrrr_control_restart_noqr_gnu [02:27, 02:06] (934272 MB) -PASS -- TEST rrfs_v1beta_gnu [08:47, 08:02] (1094156 MB) - -PASS -- COMPILE atm_dyn32_debug_gnu [07:50, 07:50] -PASS -- TEST control_diag_debug_gnu [01:48, 01:23] (1632584 MB) -PASS -- TEST regional_debug_gnu [07:07, 06:45] (1117388 MB) -PASS -- TEST rap_control_debug_gnu [02:15, 02:02] (1109016 MB) -PASS -- TEST hrrr_control_debug_gnu [02:15, 02:03] (1095784 MB) -PASS -- TEST hrrr_gf_debug_gnu [02:17, 02:04] (1104804 MB) -PASS -- TEST hrrr_c3_debug_gnu [02:17, 02:02] (1104648 MB) -PASS -- TEST rap_diag_debug_gnu [02:32, 02:11] (1277556 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [03:32, 03:23] (1102024 MB) -PASS -- TEST rap_progcld_thompson_debug_gnu [02:11, 01:58] (1110572 MB) -PASS -- TEST rrfs_v1beta_debug_gnu [02:11, 02:02] (1100628 MB) -PASS -- TEST control_ras_debug_gnu [01:28, 01:18] (731496 MB) -PASS -- TEST control_stochy_debug_gnu [01:31, 01:20] (728128 MB) -PASS -- TEST control_debug_p8_gnu [01:54, 01:32] (1711472 MB) -PASS -- TEST rap_flake_debug_gnu [02:15, 02:05] (1107168 MB) -PASS -- TEST rap_clm_lake_debug_gnu [02:28, 02:20] (1108844 MB) -PASS -- TEST gnv1_c96_no_nest_debug_gnu [04:06, 03:29] (1109808 MB) - -PASS -- COMPILE wam_debug_gnu [02:35, 02:35] -PASS -- TEST control_wam_debug_gnu [05:52, 05:26] (1576324 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_gnu [03:57, 03:57] -PASS -- TEST rap_control_dyn32_phy32_gnu [08:00, 07:27] (965284 MB) -PASS -- TEST hrrr_control_dyn32_phy32_gnu [04:38, 03:57] (958072 MB) -PASS -- TEST rap_2threads_dyn32_phy32_gnu [07:13, 06:42] (975416 MB) -PASS -- TEST hrrr_control_2threads_dyn32_phy32_gnu [16:29, 15:45] (891176 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [04:37, 03:55] (952988 MB) -PASS -- TEST rap_restart_dyn32_phy32_gnu [06:09, 05:42] (861924 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [02:23, 02:04] (857836 MB) -PASS -- TEST conus13km_control_gnu [02:56, 02:33] (1267340 MB) -PASS -- TEST conus13km_2threads_gnu [01:29, 01:10] (1179252 MB) -PASS -- TEST conus13km_restart_mismatch_gnu [01:53, 01:29] (932556 MB) - -PASS -- COMPILE atm_dyn64_phy32_gnu [10:33, 10:33] -PASS -- TEST rap_control_dyn64_phy32_gnu [04:57, 04:33] (990892 MB) - -PASS -- COMPILE atm_dyn32_phy32_debug_gnu [07:51, 07:50] -PASS -- TEST rap_control_debug_dyn32_phy32_gnu [02:21, 02:09] (978076 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [02:23, 02:10] (972500 MB) -PASS -- TEST conus13km_debug_gnu [06:33, 06:06] (1295040 MB) -PASS -- TEST conus13km_debug_qr_gnu [06:33, 06:07] (962368 MB) -PASS -- TEST conus13km_debug_2threads_gnu [04:01, 03:39] (1200568 MB) -PASS -- TEST conus13km_radar_tten_debug_gnu [06:27, 06:03] (1356340 MB) - -PASS -- COMPILE atm_dyn64_phy32_debug_gnu [07:53, 07:53] -PASS -- TEST rap_control_dyn64_phy32_debug_gnu [02:09, 02:02] (1007056 MB) - -PASS -- COMPILE s2swa_gnu [16:40, 16:39] -PASS -- COMPILE s2s_gnu [15:48, 15:48] -PASS -- TEST cpld_control_nowave_noaero_p8_gnu [05:31, 04:51] (3081940 MB) - -PASS -- COMPILE s2swa_debug_gnu [03:23, 03:22] -PASS -- COMPILE s2sw_pdlib_gnu [15:58, 15:57] -PASS -- TEST cpld_control_pdlib_p8_gnu [26:28, 25:52] (3032616 MB) - -PASS -- COMPILE s2sw_pdlib_debug_gnu [03:24, 03:24] -PASS -- TEST cpld_debug_pdlib_p8_gnu [12:32, 11:56] (2907888 MB) - -PASS -- COMPILE datm_cdeps_gnu [14:30, 14:30] -PASS -- TEST datm_cdeps_control_cfsr_gnu [02:19, 02:14] (773052 MB) +PASS -- COMPILE s2swa_32bit_intel [12:07, 12:07](1 warnings,10 remarks) +PASS -- TEST cpld_control_p8_mixedmode_intel [15:55, 15:02] (2121320 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_intel [17:36, 17:36](1 warnings,10 remarks) +PASS -- TEST cpld_control_gfsv17_intel [15:09, 14:21] (1993720 MB) +PASS -- TEST cpld_control_gfsv17_iau_intel [15:08, 14:09] (2279928 MB) +PASS -- TEST cpld_restart_gfsv17_intel [07:52, 06:46] (1342232 MB) +PASS -- TEST cpld_mpi_gfsv17_intel [17:06, 16:12] (1901796 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [16:41, 16:41](1 warnings,10 remarks) +PASS -- TEST cpld_control_sfs_intel [14:41, 14:05] (1980552 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [05:31, 05:31](1523 warnings,2000 remarks) +PASS -- TEST cpld_debug_gfsv17_intel [25:35, 24:42] (1974300 MB) + +PASS -- COMPILE s2swa_intel [12:20, 12:20](1 warnings,10 remarks) +PASS -- TEST cpld_control_p8_intel [16:19, 15:20] (2200652 MB) +PASS -- TEST cpld_control_p8.v2.sfc_intel [15:40, 14:49] (2203192 MB) +PASS -- TEST cpld_restart_p8_intel [08:36, 07:37] (1965204 MB) +PASS -- TEST cpld_control_qr_p8_intel [15:44, 14:45] (2227252 MB) +PASS -- TEST cpld_restart_qr_p8_intel [08:56, 07:55] (1736324 MB) +PASS -- TEST cpld_2threads_p8_intel [17:58, 17:09] (2549816 MB) +PASS -- TEST cpld_decomp_p8_intel [15:32, 14:40] (2194140 MB) +PASS -- TEST cpld_mpi_p8_intel [14:50, 13:42] (2093952 MB) +PASS -- TEST cpld_control_ciceC_p8_intel [14:55, 14:02] (2196184 MB) +PASS -- TEST cpld_control_c192_p8_intel [16:44, 15:17] (2974816 MB) +PASS -- TEST cpld_restart_c192_p8_intel [08:53, 06:47] (2898528 MB) +PASS -- TEST cpld_bmark_p8_intel [21:58, 16:43] (3830504 MB) +PASS -- TEST cpld_restart_bmark_p8_intel [16:37, 09:41] (3650540 MB) +PASS -- TEST cpld_s2sa_p8_intel [07:45, 07:06] (2111084 MB) + +PASS -- COMPILE s2sw_intel [11:59, 11:59](1 warnings,10 remarks) +PASS -- TEST cpld_control_noaero_p8_intel [14:00, 13:16] (2001968 MB) +PASS -- TEST cpld_control_nowave_noaero_p8_intel [12:11, 11:24] (2101160 MB) + +PASS -- COMPILE s2swa_debug_intel [06:29, 06:28](1413 warnings,1230 remarks) +PASS -- TEST cpld_debug_p8_intel [20:46, 19:28] (2224852 MB) + +PASS -- COMPILE s2sw_debug_intel [06:12, 06:11](1413 warnings,1230 remarks) +PASS -- TEST cpld_debug_noaero_p8_intel [10:17, 09:30] (2042708 MB) + +PASS -- COMPILE s2s_aoflux_intel [11:53, 11:53],3 remarks) +PASS -- TEST cpld_control_noaero_p8_agrid_intel [04:49, 04:05] (2066800 MB) + +PASS -- COMPILE s2s_intel [10:17, 10:16](1 warnings,3 remarks) +PASS -- TEST cpld_control_c48_intel [06:41, 06:06] (3032344 MB) +PASS -- TEST cpld_warmstart_c48_intel [02:32, 01:58] (3020720 MB) +PASS -- TEST cpld_restart_c48_intel [01:32, 01:08] (2474336 MB) + +PASS -- COMPILE s2swa_faster_intel [12:33, 12:33](1 warnings,10 remarks) +PASS -- TEST cpld_control_p8_faster_intel [14:30, 13:34] (2196124 MB) + +PASS -- COMPILE s2sw_pdlib_intel [19:05, 19:04](1 warnings,10 remarks) +PASS -- TEST cpld_control_pdlib_p8_intel [23:35, 22:47] (2075224 MB) +PASS -- TEST cpld_restart_pdlib_p8_intel [14:17, 13:10] (1411136 MB) +PASS -- TEST cpld_mpi_pdlib_p8_intel [28:26, 27:15] (2014236 MB) + +PASS -- COMPILE s2sw_pdlib_debug_intel [04:58, 04:58](1523 warnings,2000 remarks) +PASS -- TEST cpld_debug_pdlib_p8_intel [28:39, 27:50] (2015580 MB) + +PASS -- COMPILE atm_dyn32_intel [09:36, 09:36](1 warnings,1 remarks) +PASS -- TEST 2020_CAPE_intel [06:07, 06:00] (843192 MB) +PASS -- TEST baroclinic_wave_intel [05:36, 04:39] (1636164 MB) +PASS -- TEST control_flake_intel [03:06, 02:56] (717376 MB) +PASS -- TEST control_CubedSphereGrid_intel [03:05, 02:44] (1588836 MB) +PASS -- TEST control_CubedSphereGrid_parallel_intel [03:19, 02:54] (1600296 MB) +PASS -- TEST control_latlon_intel [03:09, 02:48] (1582196 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_intel [03:58, 03:23] (1604960 MB) +PASS -- TEST control_c48_intel [10:57, 10:29] (1713268 MB) +PASS -- TEST control_c48.v2.sfc_intel [06:12, 05:59] (839372 MB) +PASS -- TEST control_c192_intel [11:15, 10:37] (1783120 MB) +PASS -- TEST control_c384_intel [13:56, 12:33] (2021680 MB) +PASS -- TEST control_c384gdas_intel [09:36, 07:50] (1507608 MB) +PASS -- TEST control_stochy_intel [01:44, 01:33] (664612 MB) +PASS -- TEST control_stochy_restart_intel [01:12, 00:54] (529900 MB) +PASS -- TEST control_lndp_intel [02:07, 01:53] (669116 MB) +PASS -- TEST control_iovr4_intel [02:29, 02:15] (658356 MB) +PASS -- TEST control_iovr5_intel [02:32, 02:18] (665808 MB) +PASS -- TEST control_p8_intel [04:11, 03:27] (1886168 MB) +PASS -- TEST control_p8.v2.sfc_intel [04:11, 03:16] (1899096 MB) +PASS -- TEST control_p8_ugwpv1_intel [04:06, 03:20] (1886672 MB) +PASS -- TEST control_restart_p8_intel [03:29, 02:46] (1140044 MB) +PASS -- TEST control_noqr_p8_intel [04:34, 03:49] (1873368 MB) +PASS -- TEST control_restart_noqr_p8_intel [02:51, 02:04] (1207920 MB) +PASS -- TEST control_decomp_p8_intel [04:01, 03:19] (1870144 MB) +PASS -- TEST control_2threads_p8_intel [03:50, 03:07] (1960612 MB) +PASS -- TEST control_p8_lndp_intel [07:07, 06:39] (1884048 MB) +PASS -- TEST control_p8_rrtmgp_intel [05:06, 04:16] (1977040 MB) +PASS -- TEST control_p8_mynn_intel [04:25, 03:36] (1914724 MB) +PASS -- TEST merra2_thompson_intel [04:27, 03:32] (1893124 MB) +PASS -- TEST regional_control_intel [05:55, 05:37] (1187268 MB) +PASS -- TEST regional_restart_intel [03:48, 03:13] (1165108 MB) +PASS -- TEST regional_decomp_intel [05:26, 05:00] (1187288 MB) +PASS -- TEST regional_2threads_intel [03:34, 03:15] (1148128 MB) +PASS -- TEST regional_noquilt_intel [06:08, 05:45] (1518992 MB) +PASS -- TEST regional_netcdf_parallel_intel [05:56, 05:23] (1186260 MB) +PASS -- TEST regional_2dwrtdecomp_intel [06:38, 06:10] (1193988 MB) +PASS -- TEST regional_wofs_intel [07:12, 06:49] (2064644 MB) + +PASS -- COMPILE rrfs_intel [09:02, 09:02](3 warnings,9 remarks) +PASS -- TEST rap_control_intel [07:22, 06:43] (1190088 MB) +PASS -- TEST regional_spp_sppt_shum_skeb_intel [04:25, 03:51] (1355024 MB) +PASS -- TEST rap_decomp_intel [07:50, 07:08] (1129020 MB) +PASS -- TEST rap_2threads_intel [07:29, 06:50] (1357192 MB) +PASS -- TEST rap_restart_intel [04:24, 03:36] (1131308 MB) +PASS -- TEST rap_sfcdiff_intel [07:35, 06:53] (1187860 MB) +PASS -- TEST rap_sfcdiff_decomp_intel [07:43, 07:07] (1149060 MB) +PASS -- TEST rap_sfcdiff_restart_intel [06:03, 05:17] (1189924 MB) +PASS -- TEST hrrr_control_intel [04:25, 03:39] (1078336 MB) +PASS -- TEST hrrr_control_decomp_intel [06:16, 05:28] (1028960 MB) +PASS -- TEST hrrr_control_2threads_intel [08:12, 07:30] (1099628 MB) +PASS -- TEST hrrr_control_restart_intel [02:30, 02:06] (1008008 MB) +PASS -- TEST rrfs_v1beta_intel [07:31, 06:49] (1218400 MB) +PASS -- TEST rrfs_v1nssl_intel [10:04, 09:53] (2003572 MB) +PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [10:35, 10:14] (2194008 MB) + +PASS -- COMPILE csawmg_intel [08:36, 08:35] +PASS -- TEST control_csawmg_intel [07:50, 07:17] (1041212 MB) +PASS -- TEST control_ras_intel [04:26, 04:16] (808368 MB) + +PASS -- COMPILE wam_intel [11:09, 11:08],1 remarks) +PASS -- TEST control_wam_intel [10:32, 10:00] (1655424 MB) + +PASS -- COMPILE atm_faster_dyn32_intel [09:20, 09:20],1 remarks) +PASS -- TEST control_p8_faster_intel [04:11, 03:22] (1886116 MB) +PASS -- TEST regional_control_faster_intel [04:44, 04:24] (1177052 MB) + +PASS -- COMPILE atm_debug_dyn32_intel [06:57, 06:57](882 warnings,9 remarks) +PASS -- TEST control_CubedSphereGrid_debug_intel [02:53, 02:14] (1626976 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [02:55, 02:13] (1622924 MB) +PASS -- TEST control_stochy_debug_intel [02:52, 02:41] (837104 MB) +PASS -- TEST control_lndp_debug_intel [02:39, 02:27] (842060 MB) +PASS -- TEST control_csawmg_debug_intel [04:43, 04:25] (1147044 MB) +PASS -- TEST control_ras_debug_intel [02:30, 02:22] (851412 MB) +PASS -- TEST control_diag_debug_intel [03:30, 02:58] (1697532 MB) +PASS -- TEST control_debug_p8_intel [03:55, 03:15] (1915232 MB) +PASS -- TEST regional_debug_intel [16:13, 15:44] (1147312 MB) +PASS -- TEST rap_control_debug_intel [04:27, 04:19] (1219508 MB) +PASS -- TEST hrrr_control_debug_intel [04:25, 04:11] (1230572 MB) +PASS -- TEST hrrr_gf_debug_intel [04:21, 04:08] (1227508 MB) +PASS -- TEST hrrr_c3_debug_intel [04:31, 04:20] (1221360 MB) +PASS -- TEST rap_unified_drag_suite_debug_intel [04:40, 04:31] (1211324 MB) +PASS -- TEST rap_diag_debug_intel [04:54, 04:36] (1316512 MB) +PASS -- TEST rap_cires_ugwp_debug_intel [04:25, 04:14] (1221064 MB) +PASS -- TEST rap_unified_ugwp_debug_intel [04:27, 04:14] (1228344 MB) +PASS -- TEST rap_lndp_debug_intel [04:22, 04:12] (1230004 MB) +PASS -- TEST rap_progcld_thompson_debug_intel [04:21, 04:12] (1218816 MB) +PASS -- TEST rap_noah_debug_intel [04:25, 04:14] (1223324 MB) +PASS -- TEST rap_sfcdiff_debug_intel [04:27, 04:16] (1227852 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [07:03, 06:52] (1223592 MB) +PASS -- TEST rrfs_v1beta_debug_intel [04:35, 04:24] (1207808 MB) +PASS -- TEST rap_clm_lake_debug_intel [05:18, 05:06] (1222388 MB) +PASS -- TEST rap_flake_debug_intel [04:36, 04:26] (1225796 MB) +PASS -- TEST gnv1_c96_no_nest_debug_intel [07:53, 07:13] (1232908 MB) + +PASS -- COMPILE atm_debug_dyn32_gnu [04:51, 04:51] +PASS -- TEST control_csawmg_debug_gnu [03:22, 02:58] (1038340 MB) + +PASS -- COMPILE wam_debug_intel [03:56, 03:54](837 warnings,1 remarks) + +PASS -- COMPILE rrfs_dyn32_phy32_intel [08:28, 08:27](3 warnings,8 remarks) +PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [04:11, 03:34] (1230524 MB) +PASS -- TEST rap_control_dyn32_phy32_intel [06:14, 05:30] (1140256 MB) +PASS -- TEST hrrr_control_dyn32_phy32_intel [03:48, 02:55] (1010384 MB) +PASS -- TEST rap_2threads_dyn32_phy32_intel [05:58, 05:21] (1285588 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [04:29, 03:31] (1031684 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [03:57, 03:10] (999640 MB) +PASS -- TEST rap_restart_dyn32_phy32_intel [04:56, 04:16] (1096464 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [02:02, 01:43] (951524 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [09:01, 09:00](3 warnings,8 remarks) +PASS -- TEST conus13km_control_intel [02:17, 01:47] (1283856 MB) +PASS -- TEST conus13km_2threads_intel [01:37, 01:07] (1186908 MB) +PASS -- TEST conus13km_restart_mismatch_intel [01:36, 01:08] (1143128 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_intel [08:36, 08:36](3 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_intel [04:57, 04:34] (1085536 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [03:38, 03:38](785 warnings,8 remarks) +PASS -- TEST rap_control_debug_dyn32_phy32_intel [04:33, 04:24] (1103936 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [04:33, 04:24] (1095476 MB) +PASS -- TEST conus13km_debug_intel [12:32, 11:58] (1337168 MB) +PASS -- TEST conus13km_debug_qr_intel [13:24, 12:54] (1006060 MB) +PASS -- TEST conus13km_debug_2threads_intel [07:51, 07:24] (1240008 MB) +PASS -- TEST conus13km_radar_tten_debug_intel [12:23, 11:57] (1415152 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [04:13, 04:12](785 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_debug_intel [05:00, 04:46] (1163384 MB) + +PASS -- COMPILE hafsw_intel [11:07, 11:07](1 warnings,9 remarks) +PASS -- TEST hafs_regional_atm_intel [06:58, 05:47] (851316 MB) +PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [05:55, 05:38] (1249172 MB) +PASS -- TEST hafs_regional_atm_ocn_intel [07:36, 06:32] (937224 MB) +PASS -- TEST hafs_regional_atm_wav_intel [15:02, 14:04] (972068 MB) +PASS -- TEST hafs_regional_atm_ocn_wav_intel [16:42, 15:31] (965564 MB) +PASS -- TEST hafs_regional_1nest_atm_intel [06:14, 05:35] (595528 MB) +PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [08:10, 07:03] (605764 MB) +PASS -- TEST hafs_global_1nest_atm_intel [03:13, 02:43] (433112 MB) +PASS -- TEST hafs_global_multiple_4nests_atm_intel [11:12, 09:27] (543568 MB) +PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [04:32, 03:59] (603908 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [04:20, 03:42] (603768 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [05:45, 05:01] (657216 MB) +PASS -- TEST hafs_global_storm_following_1nest_atm_intel [01:29, 01:11] (454096 MB) + +PASS -- COMPILE hafsw_debug_intel [05:16, 05:15](1465 warnings,1502 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [12:47, 12:02] (637488 MB) + +PASS -- COMPILE hafsw_faster_intel [10:29, 10:29],8 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [16:45, 15:56] (707580 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [16:25, 15:42] (841776 MB) + +PASS -- COMPILE hafs_mom6w_intel [10:47, 10:46],7 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [11:19, 09:56] (809884 MB) + +PASS -- COMPILE hafs_all_intel [10:09, 10:08],8 remarks) +PASS -- TEST hafs_regional_docn_intel [06:47, 05:51] (930464 MB) +PASS -- TEST hafs_regional_docn_oisst_intel [07:42, 06:44] (896824 MB) +PASS -- TEST hafs_regional_datm_cdeps_intel [17:12, 16:37] (1341972 MB) + +PASS -- COMPILE datm_cdeps_intel [05:55, 05:54],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_intel [03:03, 02:58] (1123672 MB) +PASS -- TEST datm_cdeps_restart_cfsr_intel [01:53, 01:47] (1095976 MB) +PASS -- TEST datm_cdeps_control_gefs_intel [03:13, 03:07] (1008380 MB) +PASS -- TEST datm_cdeps_iau_gefs_intel [02:15, 02:09] (1016516 MB) +PASS -- TEST datm_cdeps_stochy_gefs_intel [02:57, 02:50] (1017932 MB) +PASS -- TEST datm_cdeps_ciceC_cfsr_intel [02:17, 02:13] (1165048 MB) +PASS -- TEST datm_cdeps_bulk_cfsr_intel [02:46, 02:41] (1145800 MB) +PASS -- TEST datm_cdeps_bulk_gefs_intel [03:06, 03:01] (1018328 MB) +PASS -- TEST datm_cdeps_mx025_cfsr_intel [05:40, 04:59] (1154656 MB) +PASS -- TEST datm_cdeps_mx025_gefs_intel [05:43, 05:00] (1163156 MB) +PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [03:34, 03:30] (1161572 MB) +PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [04:03, 03:57] (2341584 MB) +PASS -- TEST datm_cdeps_gfs_intel [03:57, 03:52] (2332872 MB) + +PASS -- COMPILE datm_cdeps_debug_intel [03:58, 03:57](2 warnings,2 remarks) +PASS -- TEST datm_cdeps_debug_cfsr_intel [09:45, 09:39] (1069316 MB) + +PASS -- COMPILE datm_cdeps_faster_intel [06:09, 06:08],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_faster_intel [02:21, 02:16] (1143344 MB) + +PASS -- COMPILE datm_cdeps_land_intel [00:45, 00:44],1 remarks) +PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:24, 01:00] (328588 MB) +PASS -- TEST datm_cdeps_lnd_era5_intel [01:11, 00:57] (572416 MB) +PASS -- TEST datm_cdeps_lnd_era5_rst_intel [00:51, 00:35] (574064 MB) + +PASS -- COMPILE atm_ds2s_docn_pcice_intel [10:19, 10:19],3 remarks) +PASS -- TEST atm_ds2s_docn_pcice_intel [04:52, 04:12] (2029852 MB) + +PASS -- COMPILE atm_ds2s_docn_dice_intel [08:47, 08:47](1 warnings,1 remarks) +PASS -- TEST atm_ds2s_docn_dice_intel [09:31, 08:54] (2028276 MB) + +PASS -- COMPILE atml_intel [09:13, 09:12](8 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_sbs_intel [06:55, 05:58] (1891992 MB) +PASS -- TEST control_p8_atmlnd_intel [07:48, 06:54] (1894880 MB) +PASS -- TEST control_restart_p8_atmlnd_intel [03:40, 03:16] (1141312 MB) + +PASS -- COMPILE atml_debug_intel [04:46, 04:45](880 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_debug_intel [06:32, 05:34] (1925180 MB) + +PASS -- COMPILE atmw_intel [09:42, 09:42],8 remarks) +PASS -- TEST atmwav_control_noaero_p8_intel [02:52, 02:10] (1934736 MB) + +PASS -- COMPILE atmaero_intel [08:59, 08:59],1 remarks) +PASS -- TEST atmaero_control_p8_intel [05:46, 05:04] (2002744 MB) +PASS -- TEST atmaero_control_p8_rad_intel [05:47, 05:06] (1780620 MB) +PASS -- TEST atmaero_control_p8_rad_micro_intel [06:54, 06:24] (1791616 MB) + +PASS -- COMPILE atmaq_debug_intel [03:56, 03:56](882 warnings,6 remarks) +PASS -- TEST regional_atmaq_debug_intel [18:28, 17:14] (4528948 MB) + +PASS -- COMPILE atm_fbh_intel [08:09, 08:08](3 warnings,8 remarks) +PASS -- TEST cpld_regional_atm_fbh_intel [10:54, 10:41] (1077832 MB) + +PASS -- COMPILE datm_cdeps_intelllvm [10:54, 10:54] +PASS -- TEST datm_cdeps_control_cfsr_intelllvm [03:35, 03:32] (1120268 MB) + +PASS -- COMPILE datm_cdeps_debug_intelllvm [02:16, 02:16](2 warnings +PASS -- TEST datm_cdeps_debug_cfsr_intelllvm [06:08, 06:04] (1071564 MB) + +PASS -- COMPILE atm_gnu [04:41, 04:41] +PASS -- TEST 2020_CAPE_gnu [10:45, 10:35] (836236 MB) +PASS -- TEST baroclinic_wave_gnu [10:26, 09:32] (1279948 MB) +PASS -- TEST control_c48_gnu [08:56, 08:18] (1515420 MB) +PASS -- TEST control_stochy_gnu [02:42, 02:31] (719316 MB) +PASS -- TEST control_ras_gnu [04:00, 03:49] (721756 MB) +PASS -- TEST control_p8_gnu [04:57, 04:14] (1721144 MB) +PASS -- TEST control_p8_ugwpv1_gnu [04:50, 04:13] (1699752 MB) +PASS -- TEST control_flake_gnu [04:51, 04:42] (807268 MB) + +PASS -- COMPILE rrfs_gnu [04:40, 04:40] +PASS -- TEST rap_control_gnu [11:21, 10:46] (1072760 MB) +PASS -- TEST rap_decomp_gnu [11:37, 10:56] (1069520 MB) +PASS -- TEST rap_2threads_gnu [10:39, 10:06] (1129848 MB) +PASS -- TEST rap_restart_gnu [08:03, 07:14] (878384 MB) +PASS -- TEST rap_sfcdiff_gnu [11:16, 10:42] (1071408 MB) +PASS -- TEST rap_sfcdiff_decomp_gnu [15:05, 14:29] (1082948 MB) +PASS -- TEST rap_sfcdiff_restart_gnu [08:49, 08:05] (878080 MB) +PASS -- TEST hrrr_control_gnu [06:25, 05:45] (1061232 MB) +PASS -- TEST hrrr_control_noqr_gnu [06:07, 05:34] (1125876 MB) +PASS -- TEST hrrr_control_decomp_gnu [06:01, 05:20] (1059288 MB) +PASS -- TEST hrrr_control_restart_gnu [03:29, 03:13] (879228 MB) +PASS -- TEST hrrr_control_restart_noqr_gnu [03:25, 03:07] (924644 MB) +PASS -- TEST rrfs_v1beta_gnu [14:01, 13:21] (1070656 MB) + +PASS -- COMPILE csawmg_gnu [04:06, 04:06] +PASS -- TEST control_csawmg_gnu [11:25, 10:58] (1077980 MB) + +PASS -- COMPILE atm_dyn32_debug_gnu [06:02, 06:02] +PASS -- TEST control_diag_debug_gnu [01:53, 01:27] (1615656 MB) +PASS -- TEST regional_debug_gnu [07:33, 07:12] (1122436 MB) +PASS -- TEST rap_control_debug_gnu [02:14, 02:07] (1089884 MB) +PASS -- TEST hrrr_control_debug_gnu [02:10, 01:59] (1080440 MB) +PASS -- TEST hrrr_gf_debug_gnu [02:15, 02:05] (1090184 MB) +PASS -- TEST hrrr_c3_debug_gnu [02:07, 01:59] (1085224 MB) +PASS -- TEST rap_diag_debug_gnu [02:26, 02:12] (1258572 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [03:19, 03:10] (1086864 MB) +PASS -- TEST rap_progcld_thompson_debug_gnu [02:57, 02:48] (1086936 MB) +PASS -- TEST rrfs_v1beta_debug_gnu [02:11, 02:03] (1084532 MB) +PASS -- TEST control_ras_debug_gnu [01:27, 01:20] (718640 MB) +PASS -- TEST control_stochy_debug_gnu [01:30, 01:22] (718132 MB) +PASS -- TEST control_debug_p8_gnu [01:57, 01:34] (1695716 MB) +PASS -- TEST rap_flake_debug_gnu [02:16, 02:07] (1087700 MB) +PASS -- TEST rap_clm_lake_debug_gnu [03:06, 02:58] (1094276 MB) +PASS -- TEST gnv1_c96_no_nest_debug_gnu [03:56, 03:21] (1097536 MB) + +PASS -- COMPILE wam_debug_gnu [03:02, 03:01] +PASS -- TEST control_wam_debug_gnu [05:42, 05:17] (1557828 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_gnu [04:21, 04:21] +PASS -- TEST rap_control_dyn32_phy32_gnu [08:49, 08:16] (955720 MB) +PASS -- TEST hrrr_control_dyn32_phy32_gnu [04:49, 04:04] (940400 MB) +PASS -- TEST rap_2threads_dyn32_phy32_gnu [09:25, 08:51] (960200 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_gnu [05:12, 04:28] (889096 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [04:50, 04:05] (940308 MB) +PASS -- TEST rap_restart_dyn32_phy32_gnu [06:55, 06:13] (853548 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [02:24, 02:13] (853700 MB) +PASS -- TEST conus13km_control_gnu [03:11, 02:37] (1254360 MB) +PASS -- TEST conus13km_2threads_gnu [01:43, 01:11] (1162252 MB) +PASS -- TEST conus13km_restart_mismatch_gnu [02:45, 02:01] (920816 MB) + +PASS -- COMPILE atm_dyn64_phy32_gnu [08:44, 08:44] +PASS -- TEST rap_control_dyn64_phy32_gnu [05:06, 04:41] (986472 MB) + +PASS -- COMPILE atm_dyn32_phy32_debug_gnu [08:23, 08:23] +PASS -- TEST rap_control_debug_dyn32_phy32_gnu [02:15, 02:05] (969872 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [02:45, 02:36] (960824 MB) +PASS -- TEST conus13km_debug_gnu [06:14, 05:46] (1273656 MB) +PASS -- TEST conus13km_debug_qr_gnu [06:53, 06:21] (948148 MB) +PASS -- TEST conus13km_debug_2threads_gnu [04:15, 03:54] (1179028 MB) +PASS -- TEST conus13km_radar_tten_debug_gnu [06:26, 05:53] (1340448 MB) + +PASS -- COMPILE atm_dyn64_phy32_debug_gnu [08:00, 08:00] +PASS -- TEST rap_control_dyn64_phy32_debug_gnu [02:30, 02:19] (993788 MB) + +PASS -- COMPILE s2swa_gnu [16:23, 16:23] +PASS -- COMPILE s2s_gnu [15:43, 15:42] +PASS -- TEST cpld_control_nowave_noaero_p8_gnu [15:21, 14:28] (3066252 MB) + +PASS -- COMPILE s2swa_debug_gnu [03:42, 03:42] +PASS -- COMPILE s2sw_pdlib_gnu [15:04, 15:04] +PASS -- TEST cpld_control_pdlib_p8_gnu [41:27, 40:51] (2864608 MB) + +PASS -- COMPILE s2sw_pdlib_debug_gnu [03:42, 03:42] +PASS -- TEST cpld_debug_pdlib_p8_gnu [15:34, 14:47] (2906548 MB) + +PASS -- COMPILE datm_cdeps_gnu [15:02, 15:02] +PASS -- TEST datm_cdeps_control_cfsr_gnu [03:58, 03:53] (754516 MB) SYNOPSIS: -Starting Date/Time: 20240801 11:12:36 -Ending Date/Time: 20240801 15:37:09 -Total Time: 04h:24m:33s -Compiles Completed: 57/57 -Tests Completed: 244/244 +Starting Date/Time: 2024-11-10 18:39:10 +Ending Date/Time: 2024-11-10 23:49:36 +Total Time: 05h:10m:26s +Compiles Completed: 60/60 +Tests Completed: 250/251 + + +NOTES: +A file test_changes.list was generated but is empty. +If you are using this log as a pull request verification, please commit test_changes.list. + +Result: SUCCESS + +====END OF hercules REGRESSION TESTING LOG==== +====START OF hercules REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +e366ec57380a76f1da3be0364eb0473762a1cf9d + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) + 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 49967251b83255bdac7ac2f9626d2714e8b83d07 FV3 (heads/develop) + e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) + b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) + 002a886eeb14979a6811f89e885d2968cbfd9b70 FV3/ccpp/physics (EP4-893-g002a886e) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + c7004b658b9dae9fc473d4e6511dfc1cf8e6a7bd WW3 (6.07.1-347-gc7004b65) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20241031 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/jongkim/FV3_RT/rt_3309029 + +UFS_TEST.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-r) - USE ROCOTO + +PASS -- COMPILE rrfs_gnu [04:53, 04:52] +PASS -- TEST hrrr_control_gnu [06:14, 05:33] (1061804 MB) +PASS -- TEST hrrr_control_2threads_gnu [05:21, 04:59] (1014824 MB) +PASS -- TEST hrrr_control_decomp_gnu [06:01, 05:20] (1061408 MB) +PASS -- TEST hrrr_control_restart_gnu [03:20, 03:01] (879384 MB) + + +SYNOPSIS: +Starting Date/Time: 2024-11-10 18:39:10 +Ending Date/Time: 2024-11-11 09:47:25 +Total Time: 15h:08m:15s +Compiles Completed: 1/1 +Tests Completed: 4/4 NOTES: diff --git a/tests-dev/logs/RegressionTests_jet.log b/tests-dev/logs/RegressionTests_jet.log new file mode 100644 index 0000000000..08a57bffca --- /dev/null +++ b/tests-dev/logs/RegressionTests_jet.log @@ -0,0 +1,303 @@ +====START OF jet REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +ee291dddb429760ba057303024e7936126227735 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) + 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 49967251b83255bdac7ac2f9626d2714e8b83d07 FV3 (heads/develop) + e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) + b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) + 002a886eeb14979a6811f89e885d2968cbfd9b70 FV3/ccpp/physics (EP4-893-g002a886e) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + c7004b658b9dae9fc473d4e6511dfc1cf8e6a7bd WW3 (6.07.1-347-gc7004b65) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20241031 +COMPARISON DIRECTORY: /lfs5/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_3641822 + +UFS_TEST.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-r) - USE ROCOTO + +PASS -- COMPILE s2swa_32bit_intel [43:45, 43:45](1 warnings,1380 remarks) +PASS -- TEST cpld_control_p8_mixedmode_intel [14:09, 13:16] (1990480 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_intel [49:58, 49:58](1 warnings,1427 remarks) +PASS -- TEST cpld_control_gfsv17_intel [21:32, 20:42] (1888972 MB) +PASS -- TEST cpld_control_gfsv17_iau_intel [23:22, 22:26] (2018384 MB) +PASS -- TEST cpld_restart_gfsv17_intel [10:46, 09:58] (1139772 MB) +PASS -- TEST cpld_mpi_gfsv17_intel [24:42, 23:53] (1853124 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [53:52, 53:52](1 warnings,1424 remarks) +PASS -- TEST cpld_control_sfs_intel [20:57, 20:17] (1863476 MB) + +PASS -- COMPILE s2swa_intel [44:16, 44:16](1 warnings,1399 remarks) +PASS -- TEST cpld_control_p8_intel [17:45, 16:44] (2041940 MB) +PASS -- TEST cpld_control_p8.v2.sfc_intel [17:46, 16:44] (2022176 MB) +PASS -- TEST cpld_restart_p8_intel [09:56, 08:55] (1710032 MB) +PASS -- TEST cpld_control_qr_p8_intel [17:43, 16:45] (2053628 MB) +PASS -- TEST cpld_restart_qr_p8_intel [10:01, 08:59] (1736672 MB) +PASS -- TEST cpld_2threads_p8_intel [16:45, 15:50] (2327892 MB) +PASS -- TEST cpld_decomp_p8_intel [17:45, 16:50] (2059284 MB) +PASS -- TEST cpld_mpi_p8_intel [14:45, 13:44] (1995464 MB) +PASS -- TEST cpld_control_ciceC_p8_intel [17:45, 16:38] (2035760 MB) +PASS -- TEST cpld_s2sa_p8_intel [10:09, 09:14] (1993348 MB) + +PASS -- COMPILE s2sw_intel [41:33, 41:33](1 warnings,1284 remarks) +PASS -- TEST cpld_control_noaero_p8_intel [10:05, 09:15] (1900756 MB) +PASS -- TEST cpld_control_nowave_noaero_p8_intel [15:06, 14:13] (1967656 MB) + +PASS -- COMPILE s2swa_debug_intel [06:06, 06:06](1413 warnings,1228 remarks) +PASS -- TEST cpld_debug_p8_intel [28:45, 27:39] (2042128 MB) + +PASS -- COMPILE s2sw_debug_intel [05:58, 05:57](1413 warnings,1228 remarks) +PASS -- TEST cpld_debug_noaero_p8_intel [12:13, 11:22] (1925480 MB) + +PASS -- COMPILE s2s_aoflux_intel [37:25, 37:25],1010 remarks) +PASS -- TEST cpld_control_noaero_p8_agrid_intel [06:40, 05:35] (1939360 MB) + +PASS -- COMPILE s2s_intel [38:03, 38:03](1 warnings,1033 remarks) +PASS -- TEST cpld_control_c48_intel [10:49, 10:16] (3011596 MB) +PASS -- TEST cpld_warmstart_c48_intel [03:31, 02:58] (3001508 MB) +PASS -- TEST cpld_restart_c48_intel [02:10, 01:41] (2449704 MB) + +PASS -- COMPILE s2swa_faster_intel [92:58, 92:58](1 warnings,1615 remarks) +PASS -- TEST cpld_control_p8_faster_intel [16:55, 16:00] (2017696 MB) + +PASS -- COMPILE s2sw_pdlib_intel [48:14, 48:14](1 warnings,1344 remarks) +PASS -- TEST cpld_control_pdlib_p8_intel [34:31, 33:45] (1932584 MB) +PASS -- TEST cpld_restart_pdlib_p8_intel [17:44, 16:49] (1138508 MB) +PASS -- TEST cpld_mpi_pdlib_p8_intel [40:17, 39:29] (1881392 MB) + +PASS -- COMPILE s2sw_pdlib_debug_intel [05:57, 05:56](1523 warnings,1998 remarks) +PASS -- TEST cpld_debug_pdlib_p8_intel [39:25, 38:52] (1911980 MB) + +PASS -- COMPILE atm_dyn32_intel [37:20, 37:20](1 warnings,1116 remarks) +PASS -- TEST 2020_CAPE_intel [10:22, 10:12] (833524 MB) +PASS -- TEST baroclinic_wave_intel [07:32, 06:19] (1339204 MB) +PASS -- TEST control_flake_intel [04:36, 04:21] (646900 MB) +PASS -- TEST control_CubedSphereGrid_intel [04:44, 04:12] (1535184 MB) +PASS -- TEST control_CubedSphereGrid_parallel_intel [05:04, 04:33] (1542756 MB) +PASS -- TEST control_latlon_intel [04:39, 04:15] (1509984 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_intel [04:53, 04:19] (1543020 MB) +PASS -- TEST control_c48_intel [18:34, 18:04] (1701392 MB) +PASS -- TEST control_c48.v2.sfc_intel [10:26, 10:10] (830460 MB) +PASS -- TEST control_c192_intel [16:36, 16:00] (1679576 MB) +PASS -- TEST control_c384_intel [24:28, 23:02] (1783312 MB) +PASS -- TEST control_c384gdas_intel [15:23, 13:15] (990120 MB) +PASS -- TEST control_stochy_intel [02:20, 02:06] (602592 MB) +PASS -- TEST control_stochy_restart_intel [01:26, 01:15] (429200 MB) +PASS -- TEST control_lndp_intel [02:14, 01:59] (607496 MB) +PASS -- TEST control_iovr4_intel [03:25, 03:12] (600160 MB) +PASS -- TEST control_iovr5_intel [03:28, 03:15] (596736 MB) +PASS -- TEST control_p8_intel [05:29, 04:47] (1820236 MB) +PASS -- TEST control_p8.v2.sfc_intel [04:38, 03:56] (1830204 MB) +PASS -- TEST control_p8_ugwpv1_intel [05:13, 04:38] (1788456 MB) +PASS -- TEST control_restart_p8_intel [03:07, 02:38] (1056824 MB) +PASS -- TEST control_noqr_p8_intel [05:12, 04:37] (1806504 MB) +PASS -- TEST control_restart_noqr_p8_intel [03:05, 02:33] (1068320 MB) +PASS -- TEST control_decomp_p8_intel [05:21, 04:47] (1813536 MB) +PASS -- TEST control_2threads_p8_intel [05:03, 04:30] (1910184 MB) +PASS -- TEST control_p8_lndp_intel [09:06, 08:35] (1816624 MB) +PASS -- TEST control_p8_rrtmgp_intel [05:49, 05:13] (1873836 MB) +PASS -- TEST control_p8_mynn_intel [04:38, 03:59] (1844180 MB) +PASS -- TEST merra2_thompson_intel [04:55, 04:20] (1843332 MB) +PASS -- TEST regional_control_intel [07:36, 07:13] (1001184 MB) +PASS -- TEST regional_restart_intel [04:07, 03:43] (1006740 MB) +PASS -- TEST regional_decomp_intel [07:49, 07:27] (1000896 MB) +PASS -- TEST regional_2threads_intel [04:44, 04:21] (979708 MB) +PASS -- TEST regional_netcdf_parallel_intel [07:35, 07:07] (1006392 MB) +PASS -- TEST regional_2dwrtdecomp_intel [07:27, 07:02] (1000040 MB) + +PASS -- COMPILE rrfs_intel [34:54, 34:54](3 warnings,1092 remarks) +PASS -- TEST rap_control_intel [10:25, 09:59] (980228 MB) +PASS -- TEST regional_spp_sppt_shum_skeb_intel [06:20, 05:30] (1178756 MB) +PASS -- TEST rap_decomp_intel [11:08, 10:41] (980740 MB) +PASS -- TEST rap_2threads_intel [10:06, 09:34] (1081032 MB) +PASS -- TEST rap_restart_intel [05:38, 05:11] (977360 MB) +PASS -- TEST rap_sfcdiff_intel [10:25, 09:59] (986684 MB) +PASS -- TEST rap_sfcdiff_decomp_intel [11:11, 10:44] (981604 MB) +PASS -- TEST rap_sfcdiff_restart_intel [07:59, 07:31] (993144 MB) +PASS -- TEST hrrr_control_intel [05:34, 05:06] (981944 MB) +PASS -- TEST hrrr_control_decomp_intel [05:40, 05:16] (980316 MB) +PASS -- TEST hrrr_control_2threads_intel [05:07, 04:42] (1047344 MB) +PASS -- TEST hrrr_control_restart_intel [02:58, 02:45] (914384 MB) +PASS -- TEST rrfs_v1beta_intel [10:35, 10:01] (984868 MB) +PASS -- TEST rrfs_v1nssl_intel [13:29, 13:14] (1929308 MB) +PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [13:06, 12:52] (1931152 MB) + +PASS -- COMPILE csawmg_intel [35:01, 35:01],1091 remarks) +PASS -- TEST control_csawmg_intel [08:32, 08:06] (963104 MB) +PASS -- TEST control_ras_intel [04:31, 04:22] (665476 MB) + +PASS -- COMPILE wam_intel [35:33, 35:33],994 remarks) +PASS -- TEST control_wam_intel [14:46, 14:15] (1582984 MB) + +PASS -- COMPILE atm_faster_dyn32_intel [37:34, 37:34],1294 remarks) +PASS -- TEST control_p8_faster_intel [04:18, 03:40] (1829944 MB) +PASS -- TEST regional_control_faster_intel [06:53, 06:30] (1003744 MB) + +PASS -- COMPILE atm_debug_dyn32_intel [08:19, 08:19](882 warnings,9 remarks) +PASS -- TEST control_CubedSphereGrid_debug_intel [03:17, 02:43] (1567092 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [03:15, 02:41] (1566212 MB) +PASS -- TEST control_stochy_debug_intel [03:56, 03:45] (776980 MB) +PASS -- TEST control_lndp_debug_intel [03:39, 03:25] (775904 MB) +PASS -- TEST control_csawmg_debug_intel [05:47, 05:22] (1083840 MB) +PASS -- TEST control_ras_debug_intel [03:33, 03:23] (779992 MB) +PASS -- TEST control_diag_debug_intel [03:50, 03:21] (1635516 MB) +PASS -- TEST control_debug_p8_intel [03:46, 03:16] (1854852 MB) +PASS -- TEST regional_debug_intel [22:24, 21:58] (1035008 MB) +PASS -- TEST rap_control_debug_intel [06:21, 06:09] (1165424 MB) +PASS -- TEST hrrr_control_debug_intel [06:17, 05:59] (1160500 MB) +PASS -- TEST hrrr_gf_debug_intel [06:15, 06:03] (1165208 MB) +PASS -- TEST hrrr_c3_debug_intel [06:23, 06:10] (1163396 MB) +PASS -- TEST rap_unified_drag_suite_debug_intel [06:21, 06:06] (1170372 MB) +PASS -- TEST rap_diag_debug_intel [06:49, 06:24] (1241080 MB) +PASS -- TEST rap_cires_ugwp_debug_intel [06:30, 06:15] (1164028 MB) +PASS -- TEST rap_unified_ugwp_debug_intel [06:26, 06:13] (1161464 MB) +PASS -- TEST rap_lndp_debug_intel [06:23, 06:09] (1168484 MB) +PASS -- TEST rap_progcld_thompson_debug_intel [06:19, 06:06] (1164048 MB) +PASS -- TEST rap_noah_debug_intel [06:12, 05:59] (1159768 MB) +PASS -- TEST rap_sfcdiff_debug_intel [06:19, 06:07] (1162956 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [10:11, 10:00] (1160244 MB) +PASS -- TEST rrfs_v1beta_debug_intel [06:23, 06:04] (1156404 MB) +PASS -- TEST rap_clm_lake_debug_intel [07:44, 07:26] (1167400 MB) +PASS -- TEST rap_flake_debug_intel [06:28, 06:09] (1169280 MB) +PASS -- TEST gnv1_c96_no_nest_debug_intel [11:13, 10:41] (1171328 MB) + +PASS -- COMPILE wam_debug_intel [05:16, 05:15](837 warnings,1 remarks) +PASS -- TEST control_wam_debug_intel [17:06, 16:33] (1638676 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_intel [30:51, 30:51](3 warnings,1026 remarks) +PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [06:03, 05:14] (1044596 MB) +PASS -- TEST rap_control_dyn32_phy32_intel [08:36, 08:15] (897916 MB) +PASS -- TEST hrrr_control_dyn32_phy32_intel [04:42, 04:20] (864332 MB) +PASS -- TEST rap_2threads_dyn32_phy32_intel [08:18, 07:53] (939920 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [04:26, 04:01] (911368 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [04:51, 04:30] (853636 MB) +PASS -- TEST rap_restart_dyn32_phy32_intel [06:25, 06:09] (888508 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [02:31, 02:18] (838156 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [32:18, 32:18](3 warnings,1199 remarks) +PASS -- TEST conus13km_control_intel [03:15, 02:37] (1091112 MB) +PASS -- TEST conus13km_2threads_intel [01:43, 01:11] (1029764 MB) +PASS -- TEST conus13km_restart_mismatch_intel [01:59, 01:27] (1015356 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_intel [31:12, 31:12](3 warnings,1046 remarks) +PASS -- TEST rap_control_dyn64_phy32_intel [05:55, 05:23] (904808 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [05:05, 05:05](785 warnings,8 remarks) +PASS -- TEST rap_control_debug_dyn32_phy32_intel [06:18, 06:02] (1042488 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [06:03, 05:53] (1036664 MB) +PASS -- TEST conus13km_debug_intel [18:12, 17:36] (1145660 MB) +PASS -- TEST conus13km_debug_qr_intel [18:17, 17:42] (854832 MB) +PASS -- TEST conus13km_debug_2threads_intel [10:44, 10:12] (1082412 MB) +PASS -- TEST conus13km_radar_tten_debug_intel [18:11, 17:39] (1217284 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [05:01, 05:00](785 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_debug_intel [06:23, 06:08] (1074836 MB) + +PASS -- COMPILE hafsw_intel [39:51, 39:51](1 warnings,1418 remarks) +PASS -- TEST hafs_regional_atm_intel [07:54, 06:43] (696796 MB) +PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [06:19, 05:58] (1071008 MB) +PASS -- TEST hafs_regional_atm_ocn_intel [10:23, 08:59] (749000 MB) +PASS -- TEST hafs_regional_atm_wav_intel [17:19, 16:06] (787020 MB) +PASS -- TEST hafs_regional_atm_ocn_wav_intel [19:12, 17:48] (970000 MB) +PASS -- TEST gnv1_nested_intel [07:49, 06:22] (1662692 MB) + +PASS -- COMPILE hafs_all_intel [36:05, 36:05],1265 remarks) +PASS -- TEST hafs_regional_docn_intel [09:37, 08:24] (755092 MB) +PASS -- TEST hafs_regional_docn_oisst_intel [09:42, 08:28] (732976 MB) + +PASS -- COMPILE datm_cdeps_intel [08:20, 08:20],67 remarks) +PASS -- TEST datm_cdeps_control_cfsr_intel [03:42, 03:32] (1058740 MB) +PASS -- TEST datm_cdeps_restart_cfsr_intel [02:17, 02:07] (1046088 MB) +PASS -- TEST datm_cdeps_control_gefs_intel [03:37, 03:29] (946120 MB) +PASS -- TEST datm_cdeps_iau_gefs_intel [03:38, 03:29] (940936 MB) +PASS -- TEST datm_cdeps_stochy_gefs_intel [03:40, 03:32] (933744 MB) +PASS -- TEST datm_cdeps_ciceC_cfsr_intel [03:41, 03:33] (1077904 MB) +PASS -- TEST datm_cdeps_bulk_cfsr_intel [03:38, 03:31] (1057216 MB) +PASS -- TEST datm_cdeps_bulk_gefs_intel [03:31, 03:25] (928124 MB) +PASS -- TEST datm_cdeps_mx025_cfsr_intel [08:43, 07:41] (897020 MB) +PASS -- TEST datm_cdeps_mx025_gefs_intel [08:38, 07:40] (855128 MB) +PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [03:41, 03:34] (1061480 MB) +PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [05:07, 04:59] (2430272 MB) +PASS -- TEST datm_cdeps_gfs_intel [05:35, 05:26] (2358980 MB) + +PASS -- COMPILE datm_cdeps_debug_intel [03:26, 03:26](2 warnings +PASS -- TEST datm_cdeps_debug_cfsr_intel [08:11, 08:04] (1031228 MB) + +PASS -- COMPILE datm_cdeps_faster_intel [08:14, 08:14],70 remarks) +PASS -- TEST datm_cdeps_control_cfsr_faster_intel [03:42, 03:34] (1067548 MB) + +PASS -- COMPILE datm_cdeps_land_intel [01:49, 01:49],60 remarks) +PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:41, 01:16] (249168 MB) +PASS -- TEST datm_cdeps_lnd_era5_intel [01:21, 01:06] (264144 MB) +PASS -- TEST datm_cdeps_lnd_era5_rst_intel [01:00, 00:41] (263824 MB) + +PASS -- COMPILE atm_ds2s_docn_pcice_intel [36:50, 36:50],1015 remarks) +PASS -- TEST atm_ds2s_docn_pcice_intel [05:36, 04:48] (1893124 MB) + +PASS -- COMPILE atm_ds2s_docn_dice_intel [36:12, 36:12](1 warnings,1020 remarks) +PASS -- TEST atm_ds2s_docn_dice_intel [11:12, 10:27] (1900696 MB) + +PASS -- COMPILE atml_intel [37:26, 37:26](8 warnings,1157 remarks) +PASS -- TEST control_p8_atmlnd_sbs_intel [06:33, 05:46] (1833248 MB) +PASS -- TEST control_p8_atmlnd_intel [06:35, 05:48] (1841868 MB) +PASS -- TEST control_restart_p8_atmlnd_intel [03:38, 03:13] (1068320 MB) + +PASS -- COMPILE atml_debug_intel [06:17, 06:16](880 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_debug_intel [08:02, 07:15] (1858244 MB) + +PASS -- COMPILE atmw_intel [36:45, 36:45],1260 remarks) +PASS -- TEST atmwav_control_noaero_p8_intel [02:56, 02:20] (1831388 MB) + +PASS -- COMPILE atmaero_intel [36:06, 36:06],1098 remarks) +PASS -- TEST atmaero_control_p8_intel [06:02, 05:15] (1920684 MB) +PASS -- TEST atmaero_control_p8_rad_intel [07:03, 06:18] (1708912 MB) +PASS -- TEST atmaero_control_p8_rad_micro_intel [06:54, 06:20] (1718584 MB) + +PASS -- COMPILE atm_fbh_intel [31:25, 31:24](3 warnings,996 remarks) +PASS -- TEST cpld_regional_atm_fbh_intel [15:36, 15:17] (1021048 MB) + + +SYNOPSIS: +Starting Date/Time: 2024-11-11 19:37:32 +Ending Date/Time: 2024-11-12 00:26:55 +Total Time: 04h:49m:23s +Compiles Completed: 37/37 +Tests Completed: 167/167 + + +NOTES: +A file test_changes.list was generated but is empty. +If you are using this log as a pull request verification, please commit test_changes.list. + +Result: SUCCESS + +====END OF jet REGRESSION TESTING LOG==== diff --git a/tests-dev/logs/RegressionTests_orion.log b/tests-dev/logs/RegressionTests_orion.log new file mode 100644 index 0000000000..4257167ddc --- /dev/null +++ b/tests-dev/logs/RegressionTests_orion.log @@ -0,0 +1,344 @@ +====START OF orion REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +f2d689ee6551f64d5b0dce283191fdc5ac171f3d + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) + 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 49967251b83255bdac7ac2f9626d2714e8b83d07 FV3 (heads/develop) + e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) + b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) + 002a886eeb14979a6811f89e885d2968cbfd9b70 FV3/ccpp/physics (EP4-893-g002a886e) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + c7004b658b9dae9fc473d4e6511dfc1cf8e6a7bd WW3 (6.07.1-347-gc7004b65) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241031 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/jongkim/FV3_RT/rt_162545 + +UFS_TEST.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-r) - USE ROCOTO + +PASS -- COMPILE s2swa_32bit_intel [17:59, 17:59](1 warnings,10 remarks) +PASS -- TEST cpld_control_p8_mixedmode_intel [27:23, 26:06] (2067132 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_intel [20:58, 20:58](1 warnings,10 remarks) +PASS -- TEST cpld_control_gfsv17_intel [19:23, 18:05] (1946440 MB) +PASS -- TEST cpld_control_gfsv17_iau_intel [20:29, 18:52] (2133476 MB) +PASS -- TEST cpld_restart_gfsv17_intel [10:38, 08:41] (1234392 MB) +PASS -- TEST cpld_mpi_gfsv17_intel [21:47, 20:18] (1878904 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [19:46, 19:46](1 warnings,10 remarks) +PASS -- TEST cpld_control_sfs_intel [18:18, 17:38] (1942452 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [08:46, 08:46](1523 warnings,2000 remarks) +PASS -- TEST cpld_debug_gfsv17_intel [32:09, 30:40] (1931476 MB) + +PASS -- COMPILE s2swa_intel [17:56, 17:56](1 warnings,10 remarks) +PASS -- TEST cpld_control_p8_intel [27:34, 26:17] (2136544 MB) +PASS -- TEST cpld_control_p8.v2.sfc_intel [27:24, 26:06] (2137784 MB) +PASS -- TEST cpld_restart_p8_intel [15:28, 13:58] (1800456 MB) +PASS -- TEST cpld_control_qr_p8_intel [27:25, 26:04] (2159820 MB) +PASS -- TEST cpld_restart_qr_p8_intel [15:29, 13:52] (1691552 MB) +PASS -- TEST cpld_2threads_p8_intel [25:00, 23:50] (2428940 MB) +PASS -- TEST cpld_decomp_p8_intel [27:31, 26:19] (2128040 MB) +PASS -- TEST cpld_mpi_p8_intel [23:08, 21:56] (2039144 MB) +PASS -- TEST cpld_control_ciceC_p8_intel [27:45, 26:27] (2138356 MB) +PASS -- TEST cpld_control_c192_p8_intel [18:32, 16:28] (2705312 MB) +PASS -- TEST cpld_restart_c192_p8_intel [11:32, 08:41] (2699076 MB) +PASS -- TEST cpld_bmark_p8_intel [27:59, 21:20] (3717752 MB) +PASS -- TEST cpld_restart_bmark_p8_intel [21:49, 13:00] (3492276 MB) +PASS -- TEST cpld_s2sa_p8_intel [09:03, 08:01] (2079280 MB) + +PASS -- COMPILE s2sw_intel [17:03, 17:03](1 warnings,10 remarks) +PASS -- TEST cpld_control_noaero_p8_intel [26:31, 25:32] (1968592 MB) +PASS -- TEST cpld_control_nowave_noaero_p8_intel [13:00, 11:43] (2045176 MB) + +PASS -- COMPILE s2swa_debug_intel [08:56, 08:56](1413 warnings,1230 remarks) +PASS -- TEST cpld_debug_p8_intel [24:12, 23:02] (2168904 MB) + +PASS -- COMPILE s2sw_debug_intel [08:21, 08:21](1413 warnings,1230 remarks) +PASS -- TEST cpld_debug_noaero_p8_intel [10:05, 09:12] (1995164 MB) + +PASS -- COMPILE s2s_aoflux_intel [14:55, 14:55],3 remarks) +PASS -- TEST cpld_control_noaero_p8_agrid_intel [05:56, 04:44] (2035076 MB) + +PASS -- COMPILE s2s_intel [14:31, 14:31](1 warnings,3 remarks) +PASS -- TEST cpld_control_c48_intel [09:56, 09:12] (3031844 MB) +PASS -- TEST cpld_warmstart_c48_intel [03:45, 02:54] (3016984 MB) +PASS -- TEST cpld_restart_c48_intel [02:39, 01:48] (2465036 MB) + +PASS -- COMPILE s2swa_faster_intel [17:43, 17:43](1 warnings,10 remarks) +PASS -- TEST cpld_control_p8_faster_intel [28:16, 27:00] (2146100 MB) + +PASS -- COMPILE s2sw_pdlib_intel [19:17, 19:17](1 warnings,10 remarks) +PASS -- TEST cpld_control_pdlib_p8_intel [29:55, 28:52] (2011100 MB) +PASS -- TEST cpld_restart_pdlib_p8_intel [15:30, 14:18] (1259216 MB) +PASS -- TEST cpld_mpi_pdlib_p8_intel [33:47, 32:50] (1929132 MB) + +PASS -- COMPILE s2sw_pdlib_debug_intel [07:49, 07:49](1523 warnings,2000 remarks) +PASS -- TEST cpld_debug_pdlib_p8_intel [35:59, 34:56] (1971680 MB) + +PASS -- COMPILE atm_dyn32_intel [14:44, 14:44](1 warnings,1 remarks) +PASS -- TEST 2020_CAPE_intel [11:00, 10:47] (842668 MB) +PASS -- TEST baroclinic_wave_intel [06:37, 05:20] (1442060 MB) +PASS -- TEST control_flake_intel [04:07, 03:48] (687348 MB) +PASS -- TEST control_CubedSphereGrid_intel [04:11, 03:35] (1572992 MB) +PASS -- TEST control_CubedSphereGrid_parallel_intel [04:24, 03:43] (1583912 MB) +PASS -- TEST control_latlon_intel [04:14, 03:42] (1572188 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_intel [04:22, 03:37] (1577936 MB) +PASS -- TEST control_c48_intel [19:36, 18:57] (1709120 MB) +PASS -- TEST control_c48.v2.sfc_intel [08:42, 08:20] (838296 MB) +PASS -- TEST control_c192_intel [13:57, 13:11] (1747320 MB) +PASS -- TEST control_c384_intel [18:29, 16:42] (1986020 MB) +PASS -- TEST control_c384gdas_intel [12:34, 10:24] (1324940 MB) +PASS -- TEST control_stochy_intel [02:02, 01:50] (644964 MB) +PASS -- TEST control_stochy_restart_intel [01:34, 01:08] (466856 MB) +PASS -- TEST control_lndp_intel [01:53, 01:43] (643860 MB) +PASS -- TEST control_iovr4_intel [03:03, 02:44] (633644 MB) +PASS -- TEST control_iovr5_intel [03:02, 02:45] (638396 MB) +PASS -- TEST control_p8_intel [05:04, 04:01] (1859748 MB) +PASS -- TEST control_p8.v2.sfc_intel [04:28, 03:25] (1876776 MB) +PASS -- TEST control_p8_ugwpv1_intel [05:12, 04:00] (1864988 MB) +PASS -- TEST control_restart_p8_intel [03:20, 02:21] (1091188 MB) +PASS -- TEST control_noqr_p8_intel [04:59, 04:00] (1866940 MB) +PASS -- TEST control_restart_noqr_p8_intel [03:08, 02:14] (1119524 MB) +PASS -- TEST control_decomp_p8_intel [05:10, 04:05] (1858508 MB) +PASS -- TEST control_2threads_p8_intel [05:16, 04:10] (1936084 MB) +PASS -- TEST control_p8_lndp_intel [07:49, 07:13] (1867920 MB) +PASS -- TEST control_p8_rrtmgp_intel [06:03, 04:49] (1937204 MB) +PASS -- TEST control_p8_mynn_intel [04:29, 03:25] (1885132 MB) +PASS -- TEST merra2_thompson_intel [05:09, 03:49] (1882200 MB) +PASS -- TEST regional_control_intel [06:55, 06:30] (1071568 MB) +PASS -- TEST regional_restart_intel [04:05, 03:33] (1075924 MB) +PASS -- TEST regional_decomp_intel [07:16, 06:49] (1073912 MB) +PASS -- TEST regional_2threads_intel [05:15, 04:40] (1061940 MB) +PASS -- TEST regional_noquilt_intel [06:55, 06:24] (1376596 MB) +PASS -- TEST regional_netcdf_parallel_intel [07:09, 06:35] (1078052 MB) +PASS -- TEST regional_2dwrtdecomp_intel [07:00, 06:32] (1076612 MB) +PASS -- TEST regional_wofs_intel [08:32, 08:03] (1895012 MB) + +PASS -- COMPILE rrfs_intel [13:18, 13:18](3 warnings,9 remarks) +PASS -- TEST rap_control_intel [09:39, 08:29] (1051472 MB) +PASS -- TEST regional_spp_sppt_shum_skeb_intel [06:02, 05:16] (1248052 MB) +PASS -- TEST rap_decomp_intel [09:58, 08:53] (1012080 MB) +PASS -- TEST rap_2threads_intel [09:48, 08:46] (1148916 MB) +PASS -- TEST rap_restart_intel [05:25, 04:28] (1032428 MB) +PASS -- TEST rap_sfcdiff_intel [09:46, 08:40] (1040780 MB) +PASS -- TEST rap_sfcdiff_decomp_intel [15:12, 13:28] (1016928 MB) +PASS -- TEST rap_sfcdiff_restart_intel [07:41, 06:22] (1071260 MB) +PASS -- TEST hrrr_control_intel [05:32, 04:23] (1021948 MB) +PASS -- TEST hrrr_control_decomp_intel [05:38, 04:30] (1012364 MB) +PASS -- TEST hrrr_control_2threads_intel [10:46, 09:39] (1090260 MB) +PASS -- TEST hrrr_control_restart_intel [02:48, 02:22] (935264 MB) +PASS -- TEST rrfs_v1beta_intel [09:53, 08:40] (1046272 MB) +PASS -- TEST rrfs_v1nssl_intel [10:10, 09:52] (1976456 MB) +PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [09:57, 09:38] (2015172 MB) + +PASS -- COMPILE csawmg_intel [13:07, 13:07] +PASS -- TEST control_csawmg_intel [07:04, 06:34] (1013272 MB) +PASS -- TEST control_ras_intel [03:44, 03:30] (710216 MB) + +PASS -- COMPILE wam_intel [12:35, 12:35],1 remarks) +PASS -- TEST control_wam_intel [13:28, 12:48] (1651120 MB) + +PASS -- COMPILE atm_faster_dyn32_intel [12:49, 12:49],1 remarks) +PASS -- TEST control_p8_faster_intel [04:27, 03:14] (1873884 MB) +PASS -- TEST regional_control_faster_intel [06:51, 06:20] (1071948 MB) + +PASS -- COMPILE atm_debug_dyn32_intel [10:20, 10:20](882 warnings,9 remarks) +PASS -- TEST control_CubedSphereGrid_debug_intel [03:03, 02:27] (1604596 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [02:49, 02:13] (1599944 MB) +PASS -- TEST control_stochy_debug_intel [03:34, 03:24] (815416 MB) +PASS -- TEST control_lndp_debug_intel [02:59, 02:45] (814980 MB) +PASS -- TEST control_csawmg_debug_intel [05:35, 05:12] (1130096 MB) +PASS -- TEST control_ras_debug_intel [02:58, 02:44] (820868 MB) +PASS -- TEST control_diag_debug_intel [03:30, 02:52] (1667804 MB) +PASS -- TEST control_debug_p8_intel [03:25, 02:46] (1894056 MB) +PASS -- TEST regional_debug_intel [17:49, 17:20] (1104144 MB) +PASS -- TEST rap_control_debug_intel [05:13, 05:03] (1205172 MB) +PASS -- TEST hrrr_control_debug_intel [05:04, 04:50] (1195544 MB) +PASS -- TEST hrrr_gf_debug_intel [05:16, 04:59] (1202256 MB) +PASS -- TEST hrrr_c3_debug_intel [05:20, 05:04] (1203716 MB) +PASS -- TEST rap_unified_drag_suite_debug_intel [05:18, 05:03] (1197088 MB) +PASS -- TEST rap_diag_debug_intel [05:45, 05:22] (1281912 MB) +PASS -- TEST rap_cires_ugwp_debug_intel [05:15, 05:00] (1205128 MB) +PASS -- TEST rap_unified_ugwp_debug_intel [05:17, 05:06] (1194504 MB) +PASS -- TEST rap_lndp_debug_intel [05:11, 04:58] (1203736 MB) +PASS -- TEST rap_progcld_thompson_debug_intel [05:09, 04:59] (1204164 MB) +PASS -- TEST rap_noah_debug_intel [05:12, 04:58] (1196508 MB) +PASS -- TEST rap_sfcdiff_debug_intel [05:10, 04:58] (1199964 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [08:14, 08:01] (1197072 MB) +PASS -- TEST rrfs_v1beta_debug_intel [05:13, 05:00] (1199272 MB) +PASS -- TEST rap_clm_lake_debug_intel [06:21, 06:09] (1209328 MB) +PASS -- TEST rap_flake_debug_intel [05:15, 05:00] (1205448 MB) +PASS -- TEST gnv1_c96_no_nest_debug_intel [09:39, 08:31] (1198888 MB) + +PASS -- COMPILE wam_debug_intel [07:17, 07:17](837 warnings,1 remarks) +PASS -- TEST control_wam_debug_intel [13:37, 13:02] (1675124 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_intel [13:14, 13:14](3 warnings,8 remarks) +PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [05:45, 05:02] (1126100 MB) +PASS -- TEST rap_control_dyn32_phy32_intel [08:11, 07:11] (995944 MB) +PASS -- TEST hrrr_control_dyn32_phy32_intel [05:17, 03:51] (911108 MB) +PASS -- TEST rap_2threads_dyn32_phy32_intel [08:26, 07:28] (1065612 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [10:11, 08:45] (941096 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [05:18, 03:55] (886264 MB) +PASS -- TEST rap_restart_dyn32_phy32_intel [06:38, 05:27] (960132 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [02:37, 02:04] (874296 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [13:11, 13:11](3 warnings,8 remarks) +PASS -- TEST conus13km_control_intel [03:08, 02:31] (1164968 MB) +PASS -- TEST conus13km_2threads_intel [01:43, 01:09] (1106228 MB) +PASS -- TEST conus13km_restart_mismatch_intel [02:10, 01:34] (1061984 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_intel [12:45, 12:45](3 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_intel [05:08, 04:37] (970332 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [06:40, 06:40](785 warnings,8 remarks) +PASS -- TEST rap_control_debug_dyn32_phy32_intel [05:10, 04:55] (1080712 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [05:08, 04:50] (1071808 MB) +PASS -- TEST conus13km_debug_intel [15:11, 14:32] (1228576 MB) +PASS -- TEST conus13km_debug_qr_intel [14:45, 14:06] (932656 MB) +PASS -- TEST conus13km_debug_2threads_intel [08:38, 07:59] (1164064 MB) +PASS -- TEST conus13km_radar_tten_debug_intel [14:10, 13:32] (1295492 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [06:19, 06:19](785 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_debug_intel [05:22, 05:04] (1124940 MB) + +PASS -- COMPILE hafsw_intel [15:00, 15:00](1 warnings,9 remarks) +PASS -- TEST hafs_regional_atm_intel [07:55, 06:47] (731352 MB) +PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [07:27, 07:02] (1117576 MB) +PASS -- TEST hafs_regional_atm_ocn_intel [09:36, 08:12] (811228 MB) +PASS -- TEST hafs_regional_atm_wav_intel [26:25, 25:13] (843108 MB) +PASS -- TEST hafs_regional_atm_ocn_wav_intel [30:13, 28:49] (862804 MB) +PASS -- TEST hafs_regional_1nest_atm_intel [08:39, 07:46] (494556 MB) +PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [10:48, 09:28] (502696 MB) +PASS -- TEST hafs_global_1nest_atm_intel [04:29, 03:44] (376628 MB) +PASS -- TEST hafs_global_multiple_4nests_atm_intel [13:20, 11:00] (480448 MB) +PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [06:07, 05:21] (520728 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [05:52, 05:01] (524796 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [07:27, 06:31] (563252 MB) +PASS -- TEST hafs_global_storm_following_1nest_atm_intel [02:10, 01:44] (401656 MB) +PASS -- TEST gnv1_nested_intel [06:50, 04:39] (1714116 MB) + +PASS -- COMPILE hafsw_debug_intel [07:34, 07:34](1465 warnings,1502 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [15:02, 14:04] (580736 MB) + +PASS -- COMPILE hafsw_faster_intel [14:42, 14:42],8 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [14:25, 13:32] (657748 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [14:36, 13:23] (680848 MB) + +PASS -- COMPILE hafs_mom6w_intel [15:25, 15:25],7 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [10:55, 09:13] (702068 MB) + +PASS -- COMPILE hafs_all_intel [14:22, 14:22],8 remarks) +PASS -- TEST hafs_regional_docn_intel [09:25, 08:14] (816388 MB) +PASS -- TEST hafs_regional_docn_oisst_intel [09:17, 08:07] (794164 MB) +PASS -- TEST hafs_regional_datm_cdeps_intel [17:13, 16:28] (1203184 MB) + +PASS -- COMPILE datm_cdeps_intel [07:53, 07:53],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_intel [03:10, 03:01] (1151072 MB) +PASS -- TEST datm_cdeps_restart_cfsr_intel [02:08, 01:56] (1102468 MB) +PASS -- TEST datm_cdeps_control_gefs_intel [03:05, 02:55] (1021820 MB) +PASS -- TEST datm_cdeps_iau_gefs_intel [03:04, 02:54] (1020200 MB) +PASS -- TEST datm_cdeps_stochy_gefs_intel [03:01, 02:53] (1015876 MB) +PASS -- TEST datm_cdeps_ciceC_cfsr_intel [02:47, 02:36] (1150072 MB) +PASS -- TEST datm_cdeps_bulk_cfsr_intel [02:52, 02:43] (1152932 MB) +PASS -- TEST datm_cdeps_bulk_gefs_intel [02:43, 02:34] (1014320 MB) +PASS -- TEST datm_cdeps_mx025_cfsr_intel [07:50, 06:48] (1023680 MB) +PASS -- TEST datm_cdeps_mx025_gefs_intel [07:50, 06:47] (1007332 MB) +PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [03:04, 02:58] (1137652 MB) +PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [04:34, 04:25] (2455456 MB) +PASS -- TEST datm_cdeps_gfs_intel [04:42, 04:32] (2456876 MB) + +PASS -- COMPILE datm_cdeps_debug_intel [05:17, 05:17](2 warnings,2 remarks) +PASS -- TEST datm_cdeps_debug_cfsr_intel [06:37, 06:28] (1078768 MB) + +PASS -- COMPILE datm_cdeps_faster_intel [07:28, 07:28],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_faster_intel [03:08, 02:59] (1158948 MB) + +PASS -- COMPILE datm_cdeps_land_intel [01:20, 01:19],1 remarks) +PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:54, 01:29] (254332 MB) +PASS -- TEST datm_cdeps_lnd_era5_intel [01:33, 01:13] (323048 MB) +PASS -- TEST datm_cdeps_lnd_era5_rst_intel [01:03, 00:46] (323792 MB) + +PASS -- COMPILE datm_cdeps_lm4_intel [02:00, 02:00](12 warnings +PASS -- TEST datm_cdeps_lm4_gswp3_intel [01:11, 00:48] (562812 MB) +PASS -- TEST datm_cdeps_lm4_gswp3_rst_intel [00:49, 00:24] (444312 MB) + +PASS -- COMPILE atm_ds2s_docn_pcice_intel [13:30, 13:30],3 remarks) +PASS -- TEST atm_ds2s_docn_pcice_intel [05:10, 04:05] (1972912 MB) + +PASS -- COMPILE atm_ds2s_docn_dice_intel [13:53, 13:53](1 warnings,1 remarks) +PASS -- TEST atm_ds2s_docn_dice_intel [09:37, 08:37] (1972640 MB) + +PASS -- COMPILE atml_intel [14:30, 14:30](8 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_sbs_intel [08:12, 06:50] (1863164 MB) +PASS -- TEST control_p8_atmlnd_intel [08:16, 06:53] (1862168 MB) +PASS -- TEST control_restart_p8_atmlnd_intel [04:34, 03:47] (1061736 MB) + +PASS -- COMPILE atml_debug_intel [08:18, 08:18](880 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_debug_intel [07:46, 06:24] (1891252 MB) + +PASS -- COMPILE atmw_intel [13:53, 13:53],8 remarks) +PASS -- TEST atmwav_control_noaero_p8_intel [03:16, 02:06] (1894340 MB) + +PASS -- COMPILE atmaero_intel [13:15, 13:14],1 remarks) +PASS -- TEST atmaero_control_p8_intel [05:43, 04:37] (1973876 MB) +PASS -- TEST atmaero_control_p8_rad_intel [06:32, 05:23] (1751104 MB) +PASS -- TEST atmaero_control_p8_rad_micro_intel [06:27, 05:32] (1764488 MB) + +PASS -- COMPILE atmaq_debug_intel [06:17, 06:17](882 warnings,6 remarks) +PASS -- TEST regional_atmaq_debug_intel [23:09, 21:26] (4489792 MB) + +PASS -- COMPILE atm_fbh_intel [12:16, 12:16](3 warnings,8 remarks) +PASS -- TEST cpld_regional_atm_fbh_intel [14:44, 14:27] (1078596 MB) + +PASS -- COMPILE hafsw_intelllvm [08:03, 08:03],7 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intelllvm [09:45, 08:47] (572880 MB) + +PASS -- COMPILE hafsw_debug_intelllvm [04:54, 04:54](1141 warnings,1490 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm [20:58, 20:07] (563404 MB) + + +SYNOPSIS: +Starting Date/Time: 2024-11-11 16:51:16 +Ending Date/Time: 2024-11-11 22:57:49 +Total Time: 06h:06m:33s +Compiles Completed: 45/45 +Tests Completed: 192/192 + + +NOTES: +A file test_changes.list was generated but is empty. +If you are using this log as a pull request verification, please commit test_changes.list. + +Result: SUCCESS + +====END OF orion REGRESSION TESTING LOG==== diff --git a/tests-dev/machine_config/machine_derecho.config b/tests-dev/machine_config/machine_derecho.config index 0896f7aa1c..6c873db434 100644 --- a/tests-dev/machine_config/machine_derecho.config +++ b/tests-dev/machine_config/machine_derecho.config @@ -7,9 +7,6 @@ module load rocoto module use -a /glade/work/epicufsrt/conda/modulefiles.derecho module load anaconda/23.7.4 -cp fv3_conf/fv3_qsub.IN_derecho fv3_conf/fv3_qsub.IN -cp fv3_conf/compile_qsub.IN_derecho fv3_conf/compile_qsub.IN - ROCOTORUN=/glade/work/epicufsrt/contrib/derecho/rocoto/bin/rocotorun ROCOTOSTAT=/glade/work/epicufsrt/contrib/derecho/rocoto/bin/rocotostat ROCOTOCOMPLETE=/glade/work/epicufsrt/contrib/derecho/rocoto/bin/rocotocomplete diff --git a/tests-dev/machine_config/machine_noaacloud.config b/tests-dev/machine_config/machine_noaacloud.config index 31333c256e..8fe15f8f66 100644 --- a/tests-dev/machine_config/machine_noaacloud.config +++ b/tests-dev/machine_config/machine_noaacloud.config @@ -3,11 +3,14 @@ set -eux export PATH=/contrib/EPIC/bin:${PATH} module use /apps/modules/modulefiles -module load rocoto/1.3.3 +module use /contrib/EPIC/rocoto/modulefiles -ROCOTORUN=/apps/rocoto/1.3.3/bin/rocotorun -ROCOTOSTAT=/apps/rocoto/1.3.3/bin/rocotostat -ROCOTOCOMPLETE=/apps/rocoto/1.3.3/bin/rocotocomplete +module load intelpython/2023.2.0 +module load rocoto/1.3.7 + +ROCOTORUN=/contrib/EPIC/rocoto/1.3.7/bin/rocotorun +ROCOTOSTAT=/contrib/EPIC/rocoto/1.3.7/bin/rocotostat +ROCOTOCOMPLETE=/contrib/EPIC/rocoto/1.3.7/bin/rocotocomplete ROCOTO_SCHEDULER=slurm export ROCOTORUN export ROCOTOSTAT diff --git a/tests-dev/machine_config/machine_orion.config b/tests-dev/machine_config/machine_orion.config index 09487fa9ab..5c0b3d8388 100644 --- a/tests-dev/machine_config/machine_orion.config +++ b/tests-dev/machine_config/machine_orion.config @@ -2,7 +2,9 @@ set -eux module load gcc/12.2.0 -module load python/3.10.8 +#module load python/3.10.8 +module use -a /work/noaa/epic/conda/modulefiles.orion +module load anaconda/23.7.4 module load contrib ruby/3.2.3 rocoto/1.3.7 ROCOTORUN=/apps/contrib/rocoto/1.3.7/bin/rocotorun diff --git a/tests-dev/test_cases/exp_conf/2020_CAPE.IN b/tests-dev/test_cases/exp_conf/2020_CAPE.IN new file mode 100644 index 0000000000..bd2b05efaf --- /dev/null +++ b/tests-dev/test_cases/exp_conf/2020_CAPE.IN @@ -0,0 +1,176 @@ +rm -fr INPUT RESTART +if [ $NPX = 97 ]; then + inputdir=FV3_input_data +elif [ $NPX = 49 ]; then + inputdir=FV3_input_data48 +elif [ $NPX = 193 ]; then + inputdir=FV3_input_data192 +elif [ $NPX = 385 ]; then + inputdir=FV3_input_data384 +elif [ $NPX = 769 ]; then + inputdir=FV3_input_data768 +fi + +echo "inputdir=$inputdir,NPX=$NPX,NESTED=$NESTED" + +OPNREQ_TEST=${OPNREQ_TEST:-false} +V2_SFC_FILE=${V2_SFC_FILE:-false} +HSD_CASE=${HSD_CASE:-false} +SUFFIX=${RT_SUFFIX} +if [ $WARM_START = .false. ]; then + mkdir INPUT RESTART + if [ "$NESTED" = .true. ]; then + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_nested/* ./INPUT/. + elif [ "$V2_SFC_FILE" = "true" ]; then + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_v2_sfc/* ./INPUT/. + elif [ "$HSD_CASE" = "true" ]; then + cp -r @[INPUTDATA_ROOT]/HSD_input_data/${inputdir}/INPUT_L127_v2_sfc/* ./INPUT/. + else + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_gfsv17/* ./INPUT/. + fi +else + mkdir INPUT RESTART + + if [[ ${OPNREQ_TEST} == true ]]; then + SUFFIX=${BL_SUFFIX} + fi + + # WAVE restart file for ATMW ORT tests + if [[ $CPLWAV == .true. ]]; then + if [[ $med_model == cmeps ]] && [[ $RUNTYPE == continue ]]; then + # CMEPS restart and pointer files + RFILE=ufs.atmw.cpl.r.${RESTART_FILE_SUFFIX_SECS}.nc + cp ../${DEP_RUN}${SUFFIX}/RESTART/${RFILE} . + ls -1 ${RFILE}>rpointer.cpl + fi + RFILE=ufs.atmw.ww3.r.${RESTART_FILE_SUFFIX_SECS} + cp ../${DEP_RUN}${SUFFIX}/${RFILE} . + fi + + if [ $MODEL_INITIALIZATION = "false" ]; then + #read_inc and iau tests restart from fh=24 + CURRDIR=`pwd` + FILEDIR=${CURRDIR}/../${DEP_RUN}${SUFFIX}/RESTART + else + #for warm start from initialization time + FILEDIR=@[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_GDAS + fi + + if [[ ${IAU_OFFSET} != 0 ]] || [[ $READ_INCREMENT = .true. ]]; then + + if [ $MODEL_INITIALIZATION = "false" ]; then + cp ${FILEDIR}/../INPUT/fv3_increment.nc INPUT/. + cp ${FILEDIR}/../INPUT/grid_spec.nc INPUT/. + cp ${FILEDIR}/../INPUT/*_grid.tile*.nc INPUT/. + cp ${FILEDIR}/../INPUT/oro_data.tile*.nc INPUT/. + else + cp ${FILEDIR}/fv_increment*.nc INPUT/. + cp ${FILEDIR}/grid_spec.nc INPUT/. + cp ${FILEDIR}/*_grid.tile*.nc INPUT/. + cp ${FILEDIR}/oro_data.tile*.nc INPUT/. + fi + cp ${FILEDIR}/coupler.res INPUT/. + cp ${FILEDIR}/fv_core.res.* INPUT/. + cp ${FILEDIR}/fv_srf_wnd.res.* INPUT/. + cp ${FILEDIR}/fv_tracer.* INPUT/. + cp ${FILEDIR}/phy_data.* INPUT/. + cp ${FILEDIR}/sfc_data.* INPUT/. + else + #restart test start from fh FHROT + cp -r ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.* ./INPUT + rm -f INPUT/fv_core.res.* + rm -f INPUT/fv_srf_wnd.res.* + rm -f INPUT/fv_tracer.res.* + rm -f INPUT/phy_data.* + rm -f INPUT/sfc_data.* + cp ${FILEDIR}/../INPUT/grid_spec.nc INPUT/. + cp ${FILEDIR}/../INPUT/*_grid.tile*.nc INPUT/. + cp ${FILEDIR}/../INPUT/oro_data*.nc INPUT/. + for RFILE in ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do + [ -e $RFILE ] || exit 1 + RFILE_OLD=$(basename $RFILE) + RFILE_NEW="${RFILE_OLD//${RESTART_FILE_PREFIX}./}" + cp $RFILE INPUT/${RFILE_NEW} + done + fi +fi + +if [ $TILEDFIX = .true. ]; then + if [ $CPLLND == .true. ]; then + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/@[ATMRES]*.nc INPUT/. + else + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/@[ATMRES]*.nc . + fi + cp @[INPUTDATA_ROOT]/FV3_fix/global_glacier.2x2.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/global_maxice.2x2.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/RTGSST.1982.2012.monthly.clim.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/global_snoclim.1.875.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/IMS-NIC.blended.ice.monthly.clim.grb . + cp @[INPUTDATA_ROOT]/${inputdir}/@[FNSMCC] . + cp @[INPUTDATA_ROOT]/${inputdir}/@[FNMSKH_control] . +else + cp @[INPUTDATA_ROOT]/${inputdir}/*grb . +fi + +if [ $CPLWAV = .true. ]; then + if [ $WW3_MULTIGRID = 'true' ]; then + cp @[INPUTDATA_ROOT_WW3]/mod_def.pointsatmw mod_def.points + cp @[INPUTDATA_ROOT_WW3]/@[WW3_MODDEF] . + cp @[INPUTDATA_ROOT_WW3]/rmp_src* . + else + cp @[INPUTDATA_ROOT_WW3]/@[WW3_MODDEF] mod_def.ww3 + cp @[INPUTDATA_ROOT_WW3]/@[MESH_WAV] . + fi +fi + +#inline post +if [[ $POSTAPP = 'global' ]]; then + cp ${PATHRT}/parm/@[POST_ITAG] itag + cp ${PATHRT}/parm/@[POSTXCONFIG] postxconfig-NT.txt + cp ${PATHRT}/parm/@[POSTXCONFIG_FH00] postxconfig-NT_FH00.txt + cp ${PATHRT}/parm/params_grib2_tbl_new params_grib2_tbl_new +fi + +#rrtmgp +if [ $DO_RRTMGP = .true. ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data_RRTMGP/* . +fi + +#merra2 +if [ $USE_MERRA2 = .true. ]; then + for n in 01 02 03 04 05 06 07 08 09 10 11 12; do + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2_y14_24/merra2_1423_${n}.nc aeroclim.m${n}.nc + done + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat +fi + +#rad_c_gocart +if [ $IAER = 2011 ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat +fi +#ugwpv1 +if [ $DO_UGWP_V1 = .true. ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data/ugwp_c384_tau.nc ./ugwp_limb_tau.nc +fi + +#Thompson +if [ $IMP_PHYSICS = 8 ]; then + cp @[INPUTDATA_ROOT]/FV3_fix/qr_acr_qsV2.dat . + cp @[INPUTDATA_ROOT]/FV3_fix/qr_acr_qgV2.dat . + cp @[INPUTDATA_ROOT]/FV3_fix/freezeH2O.dat . + cp @[INPUTDATA_ROOT]/FV3_fix/CCN_ACTIVATE.BIN . +fi + +#prognostic aerosols +if [ $CPLCHM = .true. ]; then + cp ${PATHRT}/parm/gocart/*.rc . + ln -sf @[INPUTDATA_ROOT]/GOCART/p8/ExtData . +fi diff --git a/tests-dev/test_cases/exp_conf/baroclinic_wave.IN b/tests-dev/test_cases/exp_conf/baroclinic_wave.IN new file mode 100644 index 0000000000..e1c7ead15d --- /dev/null +++ b/tests-dev/test_cases/exp_conf/baroclinic_wave.IN @@ -0,0 +1,178 @@ +rm -fr INPUT RESTART +if [ $NPX = 97 ]; then + inputdir=FV3_input_data +elif [ $NPX = 49 ]; then + inputdir=FV3_input_data48 +elif [ $NPX = 193 ]; then + inputdir=FV3_input_data192 +elif [ $NPX = 385 ]; then + inputdir=FV3_input_data384 +elif [ $NPX = 769 ]; then + inputdir=FV3_input_data768 +fi + +echo "inputdir=$inputdir,NPX=$NPX,NESTED=$NESTED" + +HSD_CASE=${HSD_CASE:-false} +if [ "$HSD_CASE" = "true" ]; then + cp @[INPUTDATA_ROOT]/HSD_input_data/global_hyblev.l128.txt . +fi + +OPNREQ_TEST=${OPNREQ_TEST:-false} +V2_SFC_FILE=${V2_SFC_FILE:-false} +SUFFIX=${RT_SUFFIX} +if [ $WARM_START = .false. ]; then + mkdir INPUT RESTART + if [ "$NESTED" = .true. ]; then + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_nested/* ./INPUT/. + elif [ "$V2_SFC_FILE" = "true" ]; then + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_v2_sfc/* ./INPUT/. + else + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_gfsv17/* ./INPUT/. + fi +else + mkdir INPUT RESTART + + if [[ ${OPNREQ_TEST} == true ]]; then + SUFFIX=${BL_SUFFIX} + fi + + # WAVE restart file for ATMW ORT tests + if [[ $CPLWAV == .true. ]]; then + if [[ $med_model == cmeps ]] && [[ $RUNTYPE == continue ]]; then + # CMEPS restart and pointer files + RFILE=ufs.atmw.cpl.r.${RESTART_FILE_SUFFIX_SECS}.nc + cp ../${DEP_RUN}${SUFFIX}/RESTART/${RFILE} . + ls -1 ${RFILE}>rpointer.cpl + fi + RFILE=ufs.atmw.ww3.r.${RESTART_FILE_SUFFIX_SECS} + cp ../${DEP_RUN}${SUFFIX}/${RFILE} . + fi + + if [ $MODEL_INITIALIZATION = "false" ]; then + #read_inc and iau tests restart from fh=24 + CURRDIR=`pwd` + FILEDIR=${CURRDIR}/../${DEP_RUN}${SUFFIX}/RESTART + else + #for warm start from initialiation time + FILEDIR=@[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_GDAS + fi + + if [[ ${IAU_OFFSET} != 0 ]] || [[ $READ_INCREMENT = .true. ]]; then + + if [ $MODEL_INITIALIZATION = "false" ]; then + cp ${FILEDIR}/../INPUT/fv3_increment.nc INPUT/. + cp ${FILEDIR}/../INPUT/grid_spec.nc INPUT/. + cp ${FILEDIR}/../INPUT/*_grid.tile*.nc INPUT/. + cp ${FILEDIR}/../INPUT/oro_data.tile*.nc INPUT/. + else + cp ${FILEDIR}/fv_increment*.nc INPUT/. + cp ${FILEDIR}/grid_spec.nc INPUT/. + cp ${FILEDIR}/*_grid.tile*.nc INPUT/. + cp ${FILEDIR}/oro_data.tile*.nc INPUT/. + fi + cp ${FILEDIR}/coupler.res INPUT/. + cp ${FILEDIR}/fv_core.res.* INPUT/. + cp ${FILEDIR}/fv_srf_wnd.res.* INPUT/. + cp ${FILEDIR}/fv_tracer.* INPUT/. + cp ${FILEDIR}/phy_data.* INPUT/. + cp ${FILEDIR}/sfc_data.* INPUT/. + else + #restart test start from fh FHROT + cp -r ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.* ./INPUT + rm -f INPUT/fv_core.res.* + rm -f INPUT/fv_srf_wnd.res.* + rm -f INPUT/fv_tracer.res.* + rm -f INPUT/phy_data.* + rm -f INPUT/sfc_data.* + cp ${FILEDIR}/../INPUT/grid_spec.nc INPUT/. + cp ${FILEDIR}/../INPUT/*_grid.tile*.nc INPUT/. + cp ${FILEDIR}/../INPUT/oro_data*.nc INPUT/. + for RFILE in ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do + [ -e $RFILE ] || exit 1 + RFILE_OLD=$(basename $RFILE) + RFILE_NEW="${RFILE_OLD//${RESTART_FILE_PREFIX}./}" + cp $RFILE INPUT/${RFILE_NEW} + done + fi +fi + +if [ $TILEDFIX = .true. ]; then + if [ $CPLLND == .true. ]; then + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/@[ATMRES]*.nc INPUT/. + else + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/@[ATMRES]*.nc . + fi + cp @[INPUTDATA_ROOT]/FV3_fix/global_glacier.2x2.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/global_maxice.2x2.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/RTGSST.1982.2012.monthly.clim.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/global_snoclim.1.875.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/IMS-NIC.blended.ice.monthly.clim.grb . + cp @[INPUTDATA_ROOT]/${inputdir}/@[FNSMCC] . + cp @[INPUTDATA_ROOT]/${inputdir}/@[FNMSKH_control] . +else + cp @[INPUTDATA_ROOT]/${inputdir}/*grb . +fi + +if [ $CPLWAV = .true. ]; then + if [ $WW3_MULTIGRID = 'true' ]; then + cp @[INPUTDATA_ROOT_WW3]/mod_def.pointsatmw mod_def.points + cp @[INPUTDATA_ROOT_WW3]/@[WW3_MODDEF] . + cp @[INPUTDATA_ROOT_WW3]/rmp_src* . + else + cp @[INPUTDATA_ROOT_WW3]/@[WW3_MODDEF] mod_def.ww3 + cp @[INPUTDATA_ROOT_WW3]/@[MESH_WAV] . + fi +fi + +#inline post +if [[ $POSTAPP = 'global' ]]; then + cp ${PATHRT}/parm/@[POST_ITAG] itag + cp ${PATHRT}/parm/@[POSTXCONFIG] postxconfig-NT.txt + cp ${PATHRT}/parm/@[POSTXCONFIG_FH00] postxconfig-NT_FH00.txt + cp ${PATHRT}/parm/params_grib2_tbl_new params_grib2_tbl_new +fi + +#rrtmgp +if [ $DO_RRTMGP = .true. ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data_RRTMGP/* . +fi + +#merra2 +if [ $USE_MERRA2 = .true. ]; then + for n in 01 02 03 04 05 06 07 08 09 10 11 12; do + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2_y14_24/merra2_1423_${n}.nc aeroclim.m${n}.nc + done + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat +fi + +#rad_c_gocart +if [ $IAER = 2011 ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat +fi +#ugwpv1 +if [ $DO_UGWP_V1 = .true. ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data/ugwp_c384_tau.nc ./ugwp_limb_tau.nc +fi + +#Thompson +if [ $IMP_PHYSICS = 8 ]; then + cp @[INPUTDATA_ROOT]/FV3_fix/qr_acr_qsV2.dat . + cp @[INPUTDATA_ROOT]/FV3_fix/qr_acr_qgV2.dat . + cp @[INPUTDATA_ROOT]/FV3_fix/freezeH2O.dat . + cp @[INPUTDATA_ROOT]/FV3_fix/CCN_ACTIVATE.BIN . +fi + +#prognostic aerosols +if [ $CPLCHM = .true. ]; then + cp ${PATHRT}/parm/gocart/*.rc . + ln -sf @[INPUTDATA_ROOT]/GOCART/p8/ExtData . +fi diff --git a/tests-dev/test_cases/parm/baroclinic_wave.nml.IN b/tests-dev/test_cases/parm/baroclinic_wave.nml.IN new file mode 100644 index 0000000000..2b96ef620d --- /dev/null +++ b/tests-dev/test_cases/parm/baroclinic_wave.nml.IN @@ -0,0 +1,386 @@ +&atmos_model_nml + blocksize = 32 + chksum_debug = .false. + dycore_only = .true. + ccpp_suite = 'FV3_GFS_v17_p8_ugwpv1' + +/ + +&diag_manager_nml + prepend_date = .false. + max_output_fields = 300 + +/ + +&fms_nml + clock_grain = 'ROUTINE' + domains_stack_size = 16000000 + print_memory_usage = .false. + +/ + +&fms2_io_nml + netcdf_default_format = "netcdf4" +/ + +&fv_core_nml + layout = 4,8 + io_layout = 1,1 + npx = 193 + npy = 193 + ntiles = 6 + npz = 127 + dz_min = 6 + psm_bc = 1 + grid_type = 0 + make_nh = .true. + fv_debug = .false. + range_warn = .true. + reset_eta = .false. + n_sponge = 42 + nudge_qv = .true. + nudge_dz = .false. + tau = 0. + rf_cutoff = 10. + d2_bg_k1 = 0.20 + d2_bg_k2 = 0.04 + kord_tm = -9 + kord_mt = 9 + kord_wz = 9 + kord_tr = 9 + hydrostatic = .false. + phys_hydrostatic = .false. + use_hydro_pressure = .false. + beta = 0. + a_imp = 1. + p_fac = 0.1 + k_split = 2 + n_split = 5 + nwat = 6 + na_init = 0 + d_ext = 0. + dnats = 0 + fv_sg_adj = 450 + d2_bg = 0. + nord = 2 + dddmp = 0.1 + d4_bg = 0.12 + vtdm4 = 0.02 + delt_max = 0.002 + ke_bg = 0. + do_vort_damp = .true. + external_ic = .false. + external_eta = .false. + gfs_phil = .false. + nggps_ic = .false. + fv_eta_file='global_hyblev.l128.txt' + npz_type='input' + mountain = .false. + ncep_ic = .false. + d_con = 1. + hord_mt = 5 + hord_vt = 5 + hord_tm = 5 + hord_dp = -5 + hord_tr = 8 + adjust_dry_mass = .false. + dry_mass=98320.0 + consv_te = 1. + do_sat_adj = .false. + fast_tau_w_sec = 0.2 + consv_am = .false. + fill = .true. + dwind_2d = .false. + print_freq = 6 + warm_start = .false. + no_dycore = .false. + z_tracer = .true. + agrid_vel_rst = .true. + read_increment = .false. + res_latlon_dynamics = "" + +/ + +&external_ic_nml + filtered_terrain = .true. + levp = 128 + gfs_dwinds = .true. + checker_tr = .false. + nt_checker = 0 + +/ + +&gfs_physics_nml + fhzero = 6 + h2o_phys = .true. + ldiag3d = .false. + qdiag3d = .false. + print_diff_pgr = .false. + fhcyc = 0 + use_ufo = .true. + pre_rad = .false. + imp_physics = 8 + iovr = 3 + ltaerosol = .false. + lradar = .true. + ttendlim = -999 + dt_inner = 450 + sedi_semi = .true. + decfl = 10 + oz_phys = .false. + oz_phys_2015 = .true. + lsoil_lsm = 4 + do_mynnedmf = .false. + do_mynnsfclay = .false. + icloud_bl = 1 + bl_mynn_edmf = 1 + bl_mynn_tkeadvect = .true. + bl_mynn_edmf_mom = 1 + do_ugwp = .false. + do_tofd = .false. + gwd_opt = 2 + do_ugwp_v0 = .false. + do_ugwp_v1 = .true. + do_ugwp_v0_orog_only = .false. + do_ugwp_v0_nst_only = .false. + do_gsl_drag_ls_bl = .true. + do_gsl_drag_ss = .true. + do_gsl_drag_tofd = .true. + do_ugwp_v1_orog_only = .false. + min_lakeice = 0.15 + min_seaice = 0.15 + use_cice_alb = .false. + pdfcld = .false. + fhswr = 3600. + fhlwr = 3600. + ialb = 2 + iems = 2 + iaer = 1011 + icliq_sw = 2 + ico2 = 2 + isubc_sw = 2 + isubc_lw = 2 + isol = 2 + lwhtr = .true. + swhtr = .true. + cnvgwd = .true. + shal_cnv = .true. + cal_pre = .false. + redrag = .true. + dspheat = .true. + hybedmf = .false. + satmedmf = .true. + isatmedmf = 1 + lheatstrg = .false. + lseaspray = .true. + random_clds = .false. + trans_trac = .true. + cnvcld = .true. + imfshalcnv = 2 + imfdeepcnv = 2 + progsigma = .true. + betascu = 8.0 + betamcu = 1.0 + betadcu = 2.0 + ras = .false. + cdmbgwd = 10.0,3.5,1.0,1.0 + prslrd0 = 0. + ivegsrc = 1 + isot = 1 + lsoil = 4 + lsm = 2 + iopt_dveg = 4 + iopt_crs = 2 + iopt_btr = 1 + iopt_run = 1 + iopt_sfc = 3 + iopt_frz = 1 + iopt_inf = 1 + iopt_rad = 3 + iopt_alb = 1 + iopt_snf = 4 + iopt_tbot = 2 + iopt_stc = 3 + iopt_trs = 2 + iopt_diag = 1 + debug = .false. + nstf_name = 2,0,0,0,0 + nst_anl = .true. + psautco = 0.0008,0.0005 + prautco = 0.00015,0.00015 + lgfdlmprad = .false. + effr_in = .true. + ldiag_ugwp = .false. + do_RRTMGP = .false. + active_gases = 'h2o_co2_o3_n2o_ch4_o2' + ngases = 6 + lw_file_gas = 'rrtmgp-data-lw-g128-210809.nc' + lw_file_clouds = 'rrtmgp-cloud-optics-coeffs-lw.nc' + sw_file_gas = 'rrtmgp-data-sw-g112-210809.nc' + sw_file_clouds = 'rrtmgp-cloud-optics-coeffs-sw.nc' + rrtmgp_nGptsSW = 112 + rrtmgp_nGptsLW = 128 + rrtmgp_nBandsLW = 16 + rrtmgp_nBandsSW = 14 + doGP_cldoptics_LUT = .false. + doGP_lwscat = .false. + do_sppt = .false. + do_shum = .false. + do_skeb = .false. + frac_grid = .true. + cplchm = .false. + cplflx = .false. + cplice = .false. + cplwav = .false. + cplwav2atm = .false. + do_ca = .true. + ca_global = .false. + ca_sgs = .true. + nca = 1 + ncells = 5 + nlives = 12 + nseed = 1 + nfracseed = 0.5 + nthresh = 18 + ca_trigger = .true. + nspinup = 1 + iseed_ca = 485671814 +/ +&cires_ugwp_nml + knob_ugwp_solver = 2 + knob_ugwp_source = 1,1,0,0 + knob_ugwp_wvspec = 1,25,25,25 + knob_ugwp_azdir = 2,4,4,4 + knob_ugwp_stoch = 0,0,0,0 + knob_ugwp_effac = 1,1,1,1 + knob_ugwp_doaxyz = 1 + knob_ugwp_doheat = 1 + knob_ugwp_dokdis = 2 + knob_ugwp_ndx4lh = 4 + knob_ugwp_version = 1 + knob_ugwp_palaunch = 275.0e2 + knob_ugwp_nslope = 1 + knob_ugwp_lzmax = 15.750e3 + knob_ugwp_lzmin = 0.75e3 + knob_ugwp_lzstar = 2.0e3 + knob_ugwp_taumin = 0.25e-3 + knob_ugwp_tauamp = 1.5e-3 + knob_ugwp_lhmet = 200.0e3 + knob_ugwp_orosolv = 'pss-1986' +/ + +&gfdl_cloud_microphysics_nml + sedi_transport = .true. + do_sedi_heat = .false. + rad_snow = .true. + rad_graupel = .true. + rad_rain = .true. + const_vi = .false. + const_vs = .false. + const_vg = .false. + const_vr = .false. + vi_max = 1. + vs_max = 2. + vg_max = 12. + vr_max = 12. + qi_lim = 1. + prog_ccn = .false. + do_qa = .true. + fast_sat_adj = .true. + tau_l2v = 225. + tau_v2l = 150. + tau_g2v = 900. + rthresh = 10.e-6 ! This is a key parameter for cloud water + dw_land = 0.16 + dw_ocean = 0.10 + ql_gen = 1.0e-3 + ql_mlt = 1.0e-3 + qi0_crt = 8.0E-5 + qs0_crt = 1.0e-3 + tau_i2s = 1000. + c_psaci = 0.05 + c_pgacs = 0.01 + rh_inc = 0.30 + rh_inr = 0.30 + rh_ins = 0.30 + ccn_l = 300. + ccn_o = 100. + c_paut = 0.5 + c_cracw = 0.8 + use_ppm = .false. + use_ccn = .true. + mono_prof = .true. + z_slope_liq = .true. + z_slope_ice = .true. + de_ice = .false. + fix_negative = .true. + icloud_f = 1 + mp_time = 150. + reiflag = 2 + + +/ + +&interpolator_nml + interp_method = 'conserve_great_circle' + +/ + +&namsfc + FNGLAC = @[FNGLAC] + FNMXIC = @[FNMXIC] + FNTSFC = @[FNTSFC] + FNSNOC = @[FNSNOC] + FNZORC = @[FNZORC] + FNALBC = @[FNALBC] + FNALBC2 = @[FNALBC2] + FNAISC = @[FNAISC] + FNTG3C = @[FNTG3C] + FNVEGC = @[FNVEGC] + FNVETC = @[FNVETC] + FNSOTC = @[FNSOTC] + FNSOCC = @[FNSOCC] + FNSMCC = @[FNSMCC] + FNMSKH = @[FNMSKH] + FNTSFA = '' + FNACNA = '' + FNSNOA = '' + FNVMNC = @[FNVMNC] + FNVMXC = @[FNVMXC] + FNSLPC = @[FNSLPC] + FNABSC = @[FNABSC] + LDEBUG = .false. + FSMCL(2) = 99999 + FSMCL(3) = 99999 + FSMCL(4) = 99999 + LANDICE = .false. + FTSFS = 90 + FAISL = 99999 + FAISS = 99999 + FSNOL = 99999 + FSNOS = 99999 + FSICL = 0 + FSICS = 0 + FTSFL = 99999 + FVETL = 99999 + FSOTL = 99999 + FvmnL = 99999 + FvmxL = 99999 + FSLPL = 99999 + FABSL = 99999 + +/ + +&fv_grid_nml + grid_file = 'INPUT/grid_spec.nc' + +/ + +&nam_stochy +/ +&nam_sfcperts +/ + &test_case_nml ! cold start + test_case = 13 +/ + diff --git a/tests-dev/test_cases/tests/2020_CAPE b/tests-dev/test_cases/tests/2020_CAPE new file mode 100644 index 0000000000..7726af7030 --- /dev/null +++ b/tests-dev/test_cases/tests/2020_CAPE @@ -0,0 +1,53 @@ +############################################################################### +# +# 2020 July CAPE Case Study: GFSv16 atmosphere only at C48L127 +# +############################################################################### + +export TEST_DESCR="Compare 2020 July CAPE Case study results with previous trunk version" + +export CNTL_DIR=2020_CAPE + +export LIST_FILES="sfcf000.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf024.nc" + +export_fv3_v16 + +export INPES=1 +export JNPES=1 +export WRTTASK_PER_GROUP=2 +export NPZ=127 +export NPZP=128 +export NPX=49 +export NPY=49 +export DT_ATMOS=1200 +export SYEAR=2020 +export SMONTH=07 +export SDAY=23 +export SHOUR=00 +export RESTART_INTERVAL=0 +export CDMBWD=${CDMBWD_c48} +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.true. +export OUTPUT_FH="6 -1" +export IAER=5111 +export IOVR=3 +export IMO=192 +export JMO=94 + +export FNALBC="'global_snowfree_albedo.bosu.t62.192.94.rg.grb'," +export FNVETC="'global_vegtype.igbp.t62.192.94.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t62.192.94.rg.grb'," +export FNABSC="'global_mxsnoalb.uariz.t62.192.94.rg.grb'," +export FNSMCC_control="'global_soilmgldas.statsgo.t92.192.94.grb'," +export FNMSKH_control="'global_slmask.t62.192.94.grb'," + + +export FV3_RUN=2020_CAPE.IN +export CCPP_SUITE='FV3_GFS_v16' +export INPUT_NML=control.nml.IN +export HSD_CASE=true + diff --git a/tests-dev/test_cases/tests/baroclinic_wave b/tests-dev/test_cases/tests/baroclinic_wave new file mode 100644 index 0000000000..259a075549 --- /dev/null +++ b/tests-dev/test_cases/tests/baroclinic_wave @@ -0,0 +1,57 @@ +############################################################################### +# +# Baroclinic Wave Idealized Test Case (atmosphere only, dycore only) at C192L127 +# +############################################################################### + +export TEST_DESCR="Compare baroclinic wave test case C192L127 results with previous trunk version" + +export CNTL_DIR=baroclinic_wave + +export LIST_FILES="sfcf000.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf024.nc \ + GFSFLX.GrbF00 \ + GFSFLX.GrbF24 \ + GFSPRS.GrbF00 \ + GFSPRS.GrbF24" + +export ATMRES=C192 + +export_fv3 +export_tiled +export_ugwpv1 + +export INPES=4 +export WRTTASK_PER_GROUP=12 +export NPZ=127 +export NPZP=128 +export NPX=193 +export NPY=193 +export SYEAR=2019 +export SMONTH=12 +export SDAY=03 +export SHOUR=00 +export DT_ATMOS=450 +export RESTART_INTERVAL='480 -1' +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.true. +export IAER=5111 +export IOVR=3 +export IMO=768 +export JMO=384 +export IDEFLATE=1 +export ICHUNK2D=768 +export JCHUNK2D=384 +export ICHUNK3D=768 +export JCHUNK3D=384 +export KCHUNK3D=1 +export OUTPUT_FH='0 6 12 18 24' + +export FV3_RUN=baroclinic_wave.IN +export INPUT_NML=baroclinic_wave.nml.IN +export CCPP_SUITE='FV3_GFS_v17_p8_ugwpv1' +export HSD_CASE=true + diff --git a/tests-dev/ufs_test.sh b/tests-dev/ufs_test.sh index 47bc6568c9..a9c5c08201 100755 --- a/tests-dev/ufs_test.sh +++ b/tests-dev/ufs_test.sh @@ -86,6 +86,7 @@ ACCNR=${ACCNR:-""} UFS_TEST_YAML="ufs_test.yaml" export UFS_TEST_YAML LINK_TESTS=false +TEST_TEMP_YAML=false while getopts ":a:b:cl:mn:dwkreohs" opt; do case ${opt} in @@ -95,9 +96,6 @@ while getopts ":a:b:cl:mn:dwkreohs" opt; do b) NEW_BASELINES_FILE=${OPTARG} export NEW_BASELINES_FILE - python -c "import ufs_test_utils; ufs_test_utils.update_testyaml_b()" - UFS_TEST_YAML="ufs_test_temp.yaml" - export UFS_TEST_YAML ;; c) CREATE_BASELINE=true @@ -132,9 +130,7 @@ while getopts ":a:b:cl:mn:dwkreohs" opt; do export SRT_NAME export SRT_COMPILER - python -c "import ufs_test_utils; ufs_test_utils.update_testyaml_n()" - UFS_TEST_YAML="ufs_test_temp.yaml" - export UFS_TEST_YAML + TEST_TEMP_YAML=true ;; d) export delete_rundir=true @@ -193,6 +189,18 @@ else exit 1 fi +if [[ ! ${NEW_BASELINES_FILE} == '' ]]; then + python -c "import ufs_test_utils; ufs_test_utils.update_testyaml_b()" + UFS_TEST_YAML="ufs_test_temp.yaml" + export UFS_TEST_YAML +fi + +if [[ ${TEST_TEMP_YAML} == true ]]; then + python -c "import ufs_test_utils; ufs_test_utils.update_testyaml_n()" + UFS_TEST_YAML="ufs_test_temp.yaml" + export UFS_TEST_YAML +fi + # If -s; link sharable test scripts from tests directory if [[ ${LINK_TESTS} == true ]]; then if ! python -c "import ufs_test_utils; ufs_test_utils.sync_testscripts()" @@ -200,6 +208,10 @@ if [[ ${LINK_TESTS} == true ]]; then echo "*** error: python sync_testscripts! ***" exit 1 fi + + cp "${PATHRT}"/test_cases/tests/* "${PATHRT}"/tests + cp "${PATHRT}"/test_cases/exp_conf/* "${PATHRT}"/fv3_conf + cp "${PATHRT}"/test_cases/parm/* "${PATHRT}"/parm fi #Check to error out if incompatible options are chosen together diff --git a/tests-dev/ufs_test.yaml b/tests-dev/ufs_test.yaml index cfd80ab693..ea8e50df69 100644 --- a/tests-dev/ufs_test.yaml +++ b/tests-dev/ufs_test.yaml @@ -3,546 +3,626 @@ s2swa_32bit_intel: compiler: 'intel' option: '-DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1' tests: - - cpld_control_p8_mixedmode: {'project':['daily'],'turnoff':['noaacloud']} + - cpld_control_p8_mixedmode: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} s2swa_32bit_pdlib_intel: build: compiler: 'intel' option: '-DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON' turnoff: ['noaacloud'] tests: - - cpld_control_gfsv17: {'project':['daily'],'turnoff':['noaacloud']} -# - cpld_control_gfsv17_iau: {'project':['daily'],'turnoff':['noaacloud']} - - cpld_restart_gfsv17: {'project':['daily'],'dependency':'cpld_control_gfsv17','turnoff':['noaacloud']} - - cpld_mpi_gfsv17: {'project':['daily'],'dependency':'cpld_control_gfsv17','turnoff':['noaacloud']} + - cpld_control_gfsv17: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - cpld_control_gfsv17_iau: {'project':['regression'],'dependency':'cpld_control_gfsv17','turnoff':['noaacloud']} + - cpld_restart_gfsv17: {'project':['regression'],'dependency':'cpld_control_gfsv17','turnoff':['noaacloud']} + - cpld_mpi_gfsv17: {'project':['regression'],'turnoff':['noaacloud']} s2swa_32bit_pdlib_sfs_intel: build: compiler: 'intel' option: '-DAPP=S2SWA -D32BIT=ON -DHYDRO=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON' turnoff: ['noaacloud'] tests: - - cpld_control_sfs: {'project':['daily'],'turnoff':['noaacloud']} + - cpld_control_sfs: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} s2swa_32bit_pdlib_debug_intel: build: compiler: 'intel' option: '-DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON' turnoff: ['noaacloud','jet'] tests: - - cpld_debug_gfsv17: {'project':['daily'],'turnoff':['noaacloud','jet']} + - cpld_debug_gfsv17: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud','jet']} s2swa_intel: build: compiler: 'intel' - option: '-DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' - tests: - - cpld_control_p8: {'project':['daily'],'turnoff':['noaacloud']} - - cpld_control_p8.v2.sfc: {'project':['daily'],'turnoff':['noaacloud']} - - cpld_restart_p8: {'project':['daily'],'dependency':'cpld_control_p8','turnoff':['noaacloud']} - - cpld_control_qr_p8: {'project':['daily'],'dependency':'cpld_control_p8','turnoff':['noaacloud']} - - cpld_restart_qr_p8: {'project':['daily'],'dependency':'cpld_control_p8','turnoff':['noaacloud']} - - cpld_2threads_p8: {'project':['daily'],'dependency':'cpld_control_p8','turnoff':['noaacloud']} - - cpld_decomp_p8: {'project':['daily'],'dependency':'cpld_control_p8','turnoff':['noaacloud']} - - cpld_mpi_p8: {'project':['daily'],'dependency':'cpld_control_p8','turnoff':['noaacloud']} - - cpld_control_ciceC_p8: {'project':['daily'],'turnoff':['noaacloud']} - - cpld_control_c192_p8: {'project':['daily'],'turnoff':['wcoss2','jet','acorn','s4','noaacloud']} - - cpld_restart_c192_p8: {'project':['daily'],'dependency':'cpld_control_c192_p8','turnoff':['wcoss2','jet','acorn','s4','noaacloud']} - - cpld_bmark_p8: {'project':['daily'],'turnoff':['s4','jet','acorn','noaacloud']} - - cpld_restart_bmark_p8: {'project':['daily'],'dependency':'cpld_bmark_p8','turnoff':['s4','jet','acorn','noaacloud']} - - cpld_s2sa_p8: {'project':['daily'],'turnoff':['noaacloud']} + option: '-DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1' + tests: + - cpld_control_p8: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - cpld_control_p8.v2.sfc: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - cpld_restart_p8: {'project':['regression'],'dependency':'cpld_control_p8','turnoff':['noaacloud']} + - cpld_control_qr_p8: {'project':['regression'],'turnoff':['noaacloud']} + - cpld_restart_qr_p8: {'project':['regression'],'dependency':'cpld_control_qr_p8','turnoff':['noaacloud']} + - cpld_2threads_p8: {'project':['regression'],'turnoff':['noaacloud']} + - cpld_decomp_p8: {'project':['regression'],'turnoff':['noaacloud']} + - cpld_mpi_p8: {'project':['regression'],'turnoff':['noaacloud']} + - cpld_control_ciceC_p8: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - cpld_control_c192_p8: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2','jet','acorn','s4','noaacloud']} + - cpld_restart_c192_p8: {'project':['regression'],'dependency':'cpld_control_c192_p8','turnoff':['wcoss2','jet','acorn','s4','noaacloud']} + - cpld_bmark_p8: {'project':['regression'],'baseline': 'True','turnoff':['s4','jet','acorn','noaacloud']} + - cpld_restart_bmark_p8: {'project':['regression'],'dependency':'cpld_bmark_p8','turnoff':['s4','jet','acorn','noaacloud']} + - cpld_s2sa_p8: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} s2sw_intel: build: compiler: 'intel' - option: '-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' + option: '-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1' tests: - - cpld_control_noaero_p8: {'project':['daily']} - - cpld_control_nowave_noaero_p8: {'project':['daily'],'turnoff':['noaacloud']} + - cpld_control_noaero_p8: {'project':['regression'],'baseline': 'True'} + - cpld_control_nowave_noaero_p8: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} s2swa_debug_intel: build: compiler: 'intel' - option: '-DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' + option: '-DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1' turnoff: ['wcoss2','noaacloud','acorn'] tests: - - cpld_debug_p8: {'project':['daily'],'turnoff':['wcoss2','acorn','noaacloud']} + - cpld_debug_p8: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2','acorn','noaacloud']} s2sw_debug_intel: build: compiler: 'intel' - option: '-DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' + option: '-DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1' turnoff: ['wcoss2','noaacloud','acorn'] tests: - - cpld_debug_noaero_p8: {'project':['daily'],'turnoff':['wcoss2','acorn','noaacloud']} + - cpld_debug_noaero_p8: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2','acorn','noaacloud']} s2s_aoflux_intel: build: compiler: 'intel' option: '-DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON' tests: - - cpld_control_noaero_p8_agrid: {'project':['daily']} + - cpld_control_noaero_p8_agrid: {'project':['regression'],'baseline': 'True'} s2s_intel: build: compiler: 'intel' - option: '-DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' + option: '-DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1' tests: - - cpld_control_c48: {'project':['daily']} - - cpld_warmstart_c48: {'project':['daily'],'turnoff':['noaacloud']} - - cpld_restart_c48: {'project':['daily'],'dependency':'cpld_warmstart_c48','turnoff':['noaacloud']} + - cpld_control_c48: {'project':['regression'],'baseline': 'True'} + - cpld_warmstart_c48: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - cpld_restart_c48: {'project':['regression'],'dependency':'cpld_warmstart_c48','turnoff':['noaacloud']} s2swa_faster_intel: build: compiler: 'intel' - option: '-DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON' + option: '-DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DFASTER=ON' turnoff: ['noaacloud'] tests: - - cpld_control_p8_faster: {'project':['daily'],'turnoff':['noaacloud']} + - cpld_control_p8_faster: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} s2sw_pdlib_intel: build: compiler: 'intel' - option: '-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON' + option: '-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON' turnoff: ['noaacloud'] tests: - - cpld_control_pdlib_p8: {'project':['daily'],'turnoff':['noaacloud']} - - cpld_restart_pdlib_p8: {'project':['daily'],'dependency':'cpld_control_pdlib_p8','turnoff':['noaacloud']} - - cpld_mpi_pdlib_p8: {'project':['daily'],'dependency':'cpld_control_pdlib_p8','turnoff':['noaacloud']} + - cpld_control_pdlib_p8: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - cpld_restart_pdlib_p8: {'project':['regression'],'dependency':'cpld_control_pdlib_p8','turnoff':['noaacloud']} + - cpld_mpi_pdlib_p8: {'project':['regression'],'dependency':'cpld_control_pdlib_p8','turnoff':['noaacloud']} s2sw_pdlib_debug_intel: build: compiler: 'intel' - option: '-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON' + option: '-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON' turnoff: ['noaacloud'] tests: - - cpld_debug_pdlib_p8: {'project':['daily'],'turnoff':['noaacloud']} + - cpld_debug_pdlib_p8: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} atm_dyn32_intel: build: compiler: 'intel' option: '-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON' tests: - - control_flake: {'project':['daily']} - - control_CubedSphereGrid: {'project':['daily']} - - control_CubedSphereGrid_parallel: {'project':['daily'],'turnoff':['noaacloud']} - - control_latlon: {'project':['daily'],'turnoff':['noaacloud']} - - control_wrtGauss_netcdf_parallel: {'project':['daily'],'turnoff':['noaacloud']} - - control_c48: {'project':['daily'],'turnoff':['noaacloud']} - - control_c48.v2.sfc: {'project':['daily'],'turnoff':['noaacloud']} - - control_c192: {'project':['daily'],'turnoff':['noaacloud']} - - control_c384: {'project':['daily'],'turnoff':['noaacloud']} - - control_c384gdas: {'project':['daily'],'turnoff':['noaacloud']} - - control_stochy: {'project':['daily'],'turnoff':['noaacloud']} - - control_stochy_restart: {'project':['daily'],'dependency':'control_stochy','turnoff':['noaacloud']} - - control_lndp: {'project':['daily'],'turnoff':['noaacloud']} - - control_iovr4: {'project':['daily'],'turnoff':['noaacloud']} - - control_iovr5: {'project':['daily'],'turnoff':['noaacloud']} - - control_p8: {'project':['daily'],'turnoff':['noaacloud']} - - control_p8.v2.sfc: {'project':['daily'],'turnoff':['noaacloud']} - - control_p8_ugwpv1: {'project':['daily'],'turnoff':['noaacloud']} - - control_restart_p8: {'project':['daily'],'dependency':'control_p8','turnoff':['noaacloud']} - - control_noqr_p8: {'project':['daily'],'dependency':'control_p8','turnoff':['noaacloud']} - - control_restart_noqr_p8: {'project':['daily'],'dependency':'control_p8','turnoff':['noaacloud']} - - control_decomp_p8: {'project':['daily'],'dependency':'control_p8','turnoff':['noaacloud']} - - control_2threads_p8: {'project':['daily'],'dependency':'control_p8','turnoff':['noaacloud']} - - control_p8_lndp: {'project':['daily'],'turnoff':['noaacloud']} - - control_p8_rrtmgp: {'project':['daily'],'turnoff':['noaacloud']} - - control_p8_mynn: {'project':['daily'],'turnoff':['noaacloud']} - - merra2_thompson: {'project':['daily'],'turnoff':['noaacloud']} - - regional_control: {'project':['daily'],'turnoff':['noaacloud']} - - regional_restart: {'project':['daily'],'dependency':'regional_control','turnoff':['noaacloud']} - - regional_decomp: {'project':['daily'],'dependency':'regional_control','turnoff':['noaacloud']} - - regional_2threads: {'project':['daily'],'dependency':'regional_control','turnoff':['derecho','noaacloud']} - - regional_noquilt: {'project':['daily'],'turnoff':['jet','s4']} - - regional_netcdf_parallel: {'project':['daily'],'turnoff':['acorn']} - - regional_2dwrtdecomp: {'project':['daily'],'dependency':'regional_control','turnoff':['acorn']} - - regional_wofs: {'project':['daily'],'turnoff':['jet','s4']} -ifi_intel: - build: - compiler: 'intel' - option: '-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON' - turnon: ['acorn'] - tests: - - regional_ifi_control: {'project':['daily'],'turnon':['acorn']} - - regional_ifi_decomp: {'project':['daily'],'dependency':'regional_ifi_control','turnon':['acorn']} - - regional_ifi_2threads: {'project':['daily'],'dependency':'regional_ifi_control','turnon':['acorn']} + - 2020_CAPE: {'project':['test_case'],'baseline': 'True'} + - baroclinic_wave: {'project':['test_case'],'baseline': 'True'} + - control_flake: {'project':['regression'],'baseline': 'True'} + - control_CubedSphereGrid: {'project':['regression'],'baseline': 'True'} + - control_CubedSphereGrid_parallel: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_latlon: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_wrtGauss_netcdf_parallel: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_c48: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_c48.v2.sfc: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_c192: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_c384: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_c384gdas: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_stochy: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_stochy_restart: {'project':['regression'],'dependency':'control_stochy','turnoff':['noaacloud']} + - control_lndp: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_iovr4: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_iovr5: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_p8: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_p8.v2.sfc: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_p8_ugwpv1: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_restart_p8: {'project':['regression'],'dependency':'control_p8','turnoff':['noaacloud']} + - control_noqr_p8: {'project':['regression'],'turnoff':['noaacloud']} + - control_restart_noqr_p8: {'project':['regression'],'dependency':'control_noqr_p8','turnoff':['noaacloud']} + - control_decomp_p8: {'project':['regression'],'turnoff':['noaacloud']} + - control_2threads_p8: {'project':['regression'],'turnoff':['noaacloud']} + - control_p8_lndp: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_p8_rrtmgp: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_p8_mynn: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - merra2_thompson: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - regional_control: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - regional_restart: {'project':['regression'],'dependency':'regional_control','turnoff':['noaacloud']} + - regional_decomp: {'project':['regression'],'turnoff':['noaacloud']} + - regional_2threads: {'project':['regression'],'turnoff':['derecho','noaacloud']} + - regional_noquilt: {'project':['regression'],'baseline': 'True','turnoff':['jet','s4']} + - regional_netcdf_parallel: {'project':['regression'],'baseline': 'True','turnoff':['acorn']} + - regional_2dwrtdecomp: {'project':['regression'],'turnoff':['acorn']} + - regional_wofs: {'project':['regression'],'baseline': 'True','turnoff':['jet','s4']} rrfs_intel: build: compiler: 'intel' option: '-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON' tests: - - rap_control: {'project':['daily']} - - regional_spp_sppt_shum_skeb: {'project':['daily']} - - rap_decomp: {'project':['daily'],'dependency':'rap_control','turnoff':['noaacloud']} - - rap_2threads: {'project':['daily'],'dependency':'rap_control','turnoff':['noaacloud']} - - rap_restart: {'project':['daily'],'dependency':'rap_control','turnoff':['noaacloud']} - - rap_sfcdiff: {'project':['daily'],'turnoff':['noaacloud']} - - rap_sfcdiff_decomp: {'project':['daily'],'dependency':'rap_sfcdiff','turnoff':['noaacloud']} - - rap_sfcdiff_restart: {'project':['daily'],'dependency':'rap_sfcdiff','turnoff':['noaacloud']} - - hrrr_control: {'project':['daily'],'turnoff':['noaacloud']} - - hrrr_control_decomp: {'project':['daily'],'dependency':'hrrr_control','turnoff':['noaacloud']} - - hrrr_control_2threads: {'project':['daily'],'dependency':'hrrr_control','turnoff':['noaacloud']} - - hrrr_control_restart: {'project':['daily'],'dependency':'hrrr_control','turnoff':['noaacloud']} - - rrfs_v1beta: {'project':['daily'],'turnoff':['noaacloud']} - - rrfs_v1nssl: {'project':['daily'],'turnoff':['noaacloud']} - - rrfs_v1nssl_nohailnoccn: {'project':['daily'],'turnoff':['noaacloud']} + - rap_control: {'project':['regression'],'baseline': 'True'} + - regional_spp_sppt_shum_skeb: {'project':['regression'],'baseline': 'True'} + - rap_decomp: {'project':['regression'],'turnoff':['noaacloud']} + - rap_2threads: {'project':['regression'],'turnoff':['noaacloud']} + - rap_restart: {'project':['regression'],'dependency':'rap_control','turnoff':['noaacloud']} + - rap_sfcdiff: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - rap_sfcdiff_decomp: {'project':['regression'],'turnoff':['noaacloud']} + - rap_sfcdiff_restart: {'project':['regression'],'dependency':'rap_sfcdiff','turnoff':['noaacloud']} + - hrrr_control: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - hrrr_control_decomp: {'project':['regression'],'turnoff':['noaacloud']} + - hrrr_control_2threads: {'project':['regression'],'turnoff':['noaacloud']} + - hrrr_control_restart: {'project':['regression'],'dependency':'hrrr_control','turnoff':['noaacloud']} + - rrfs_v1beta: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - rrfs_v1nssl: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - rrfs_v1nssl_nohailnoccn: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} csawmg_intel: build: compiler: 'intel' option: '-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras' turnoff: ['noaacloud'] tests: - - control_csawmg: {'project':['daily'],'turnoff':['noaacloud']} - - control_ras: {'project':['daily'],'turnoff':['noaacloud']} -csawmg_gnu: - build: - compiler: 'gnu' - option: '-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras' - turnon: ['hera','hercules'] - tests: - - control_csawmg: {'project':['daily'],'turnon':['hera','hercules']} + - control_csawmg: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_ras: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} wam_intel: build: compiler: 'intel' option: '-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMULTI_GASES=ON' turnoff: ['noaacloud'] tests: - - control_wam: {'project':['daily'],'turnoff':['noaacloud']} + - control_wam: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} atm_faster_dyn32_intel: build: compiler: 'intel' option: '-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON' tests: - - control_p8_faster: {'project':['daily'],'turnoff':['noaacloud']} - - regional_control_faster: {'project':['daily'],'turnoff':['noaacloud']} + - control_p8_faster: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - regional_control_faster: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} atm_debug_dyn32_intel: build: compiler: 'intel' - option: '-DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1' + option: '-DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1' turnoff: ['noaacloud'] tests: - - control_CubedSphereGrid_debug: {'project':['daily'],'turnoff':['noaacloud']} - - control_wrtGauss_netcdf_parallel_debug: {'project':['daily'],'turnoff':['noaacloud']} - - control_stochy_debug: {'project':['daily'],'turnoff':['noaacloud']} - - control_lndp_debug: {'project':['daily'],'turnoff':['noaacloud']} - - control_csawmg_debug: {'project':['daily'],'turnoff':['noaacloud']} - - control_ras_debug: {'project':['daily'],'turnoff':['noaacloud']} - - control_diag_debug: {'project':['daily'],'turnoff':['noaacloud']} - - control_debug_p8: {'project':['daily'],'turnoff':['noaacloud']} - - regional_debug: {'project':['daily'],'turnoff':['noaacloud']} - - rap_control_debug: {'project':['daily'],'turnoff':['noaacloud']} - - hrrr_control_debug: {'project':['daily'],'turnoff':['noaacloud']} - - hrrr_gf_debug: {'project':['daily'],'turnoff':['noaacloud']} - - hrrr_c3_debug: {'project':['daily'],'turnoff':['noaacloud']} - - rap_unified_drag_suite_debug: {'project':['daily'],'dependency':'rap_control_debug','turnoff':['noaacloud']} - - rap_diag_debug: {'project':['daily'],'turnoff':['noaacloud']} - - rap_cires_ugwp_debug: {'project':['daily'],'turnoff':['noaacloud']} - - rap_unified_ugwp_debug: {'project':['daily'],'dependency':'rap_cires_ugwp_debug','turnoff':['noaacloud']} - - rap_lndp_debug: {'project':['daily'],'turnoff':['noaacloud']} - - rap_progcld_thompson_debug: {'project':['daily'],'turnoff':['noaacloud']} - - rap_noah_debug: {'project':['daily'],'turnoff':['noaacloud']} - - rap_sfcdiff_debug: {'project':['daily'],'turnoff':['noaacloud']} - - rap_noah_sfcdiff_cires_ugwp_debug: {'project':['daily'],'turnoff':['noaacloud']} - - rrfs_v1beta_debug: {'project':['daily'],'turnoff':['noaacloud']} - - rap_clm_lake_debug: {'project':['daily'],'turnoff':['noaacloud']} - - rap_flake_debug: {'project':['daily'],'turnoff':['noaacloud']} - - gnv1_c96_no_nest_debug: {'project':['daily'],'turnoff':['noaacloud']} + - control_CubedSphereGrid_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_wrtGauss_netcdf_parallel_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_stochy_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_lndp_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_csawmg_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_ras_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_diag_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_debug_p8: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - regional_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - rap_control_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - hrrr_control_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - hrrr_gf_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - hrrr_c3_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - rap_unified_drag_suite_debug: {'project':['regression'],'turnoff':['noaacloud']} + - rap_diag_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - rap_cires_ugwp_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - rap_unified_ugwp_debug: {'project':['regression'],'turnoff':['noaacloud']} + - rap_lndp_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - rap_progcld_thompson_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - rap_noah_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - rap_sfcdiff_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - rap_noah_sfcdiff_cires_ugwp_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - rrfs_v1beta_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - rap_clm_lake_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - rap_flake_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - gnv1_c96_no_nest_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} atm_debug_dyn32_gnu: build: compiler: 'gnu' option: '-DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1' turnon: ['hera','hercules'] tests: - - control_csawmg_debug: {'project':['daily'],'turnon':['hera','hercules']} + - control_csawmg_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} wam_debug_intel: build: compiler: 'intel' option: '-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON' turnoff: ['noaacloud'] tests: - - control_wam_debug: {'project':['daily'],'turnoff':['noaacloud','hercules']} + - control_wam_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud','hercules']} rrfs_dyn32_phy32_intel: build: compiler: 'intel' option: '-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON' turnoff: ['noaacloud'] tests: - - regional_spp_sppt_shum_skeb_dyn32_phy32: {'project':['daily'],'turnoff':['noaacloud']} - - rap_control_dyn32_phy32: {'project':['daily'],'turnoff':['noaacloud']} - - hrrr_control_dyn32_phy32: {'project':['daily'],'turnoff':['noaacloud']} - - rap_2threads_dyn32_phy32: {'project':['daily'],'dependency':'rap_control_dyn32_phy32','turnoff':['noaacloud']} - - hrrr_control_2threads_dyn32_phy32: {'project':['daily'],'dependency':'hrrr_control_dyn32_phy32','turnoff':['noaacloud']} - - hrrr_control_decomp_dyn32_phy32: {'project':['daily'],'dependency':'hrrr_control_dyn32_phy32','turnoff':['noaacloud']} - - rap_restart_dyn32_phy32: {'project':['daily'],'dependency':'rap_control_dyn32_phy32','turnoff':['noaacloud']} - - hrrr_control_restart_dyn32_phy32: {'project':['daily'],'dependency':'hrrr_control_dyn32_phy32','turnoff':['noaacloud']} + - regional_spp_sppt_shum_skeb_dyn32_phy32: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - rap_control_dyn32_phy32: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - hrrr_control_dyn32_phy32: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - rap_2threads_dyn32_phy32: {'project':['regression'],'turnoff':['noaacloud']} + - hrrr_control_2threads_dyn32_phy32: {'project':['regression'],'turnoff':['noaacloud']} + - hrrr_control_decomp_dyn32_phy32: {'project':['regression'],'turnoff':['noaacloud']} + - rap_restart_dyn32_phy32: {'project':['regression'],'dependency':'rap_control_dyn32_phy32','turnoff':['noaacloud']} + - hrrr_control_restart_dyn32_phy32: {'project':['regression'],'dependency':'hrrr_control_dyn32_phy32','turnoff':['noaacloud']} rrfs_dyn32_phy32_faster_intel: build: compiler: 'intel' option: '-DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON' turnoff: ['noaacloud'] tests: - - conus13km_control: {'project':['daily'],'turnoff':['noaacloud']} - - conus13km_2threads: {'project':['daily'],'dependency':'conus13km_control','turnoff':['noaacloud']} - - conus13km_restart_mismatch: {'project':['daily'],'dependency':'conus13km_control','turnoff':['noaacloud']} + - conus13km_control: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - conus13km_2threads: {'project':['regression'],'dependency':'conus13km_control','turnoff':['noaacloud']} + - conus13km_restart_mismatch: {'project':['regression'],'dependency':'conus13km_control','turnoff':['noaacloud']} rrfs_dyn64_phy32_intel: build: compiler: 'intel' option: '-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON' turnoff: ['noaacloud'] tests: - - rap_control_dyn64_phy32: {'project':['daily'],'turnoff':['noaacloud']} + - rap_control_dyn64_phy32: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} rrfs_dyn32_phy32_debug_intel: build: compiler: 'intel' option: '-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON' turnoff: ['noaacloud'] tests: - - rap_control_debug_dyn32_phy32: {'project':['daily'],'turnoff':['noaacloud']} - - hrrr_control_debug_dyn32_phy32: {'project':['daily'],'turnoff':['noaacloud']} - - conus13km_debug: {'project':['daily'],'turnoff':['noaacloud']} - - conus13km_debug_qr: {'project':['daily'],'dependency':'conus13km_debug','turnoff':['noaacloud']} - - conus13km_debug_2threads: {'project':['daily'],'dependency':'conus13km_debug','turnoff':['noaacloud']} - - conus13km_radar_tten_debug: {'project':['daily'],'turnoff':['noaacloud']} + - rap_control_debug_dyn32_phy32: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - hrrr_control_debug_dyn32_phy32: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - conus13km_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - conus13km_debug_qr: {'project':['regression'],'turnoff':['noaacloud']} + - conus13km_debug_2threads: {'project':['regression'],'turnoff':['noaacloud']} + - conus13km_radar_tten_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} rrfs_dyn64_phy32_debug_intel: build: compiler: 'intel' option: '-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON' turnoff: ['noaacloud'] tests: - - rap_control_dyn64_phy32_debug: {'project':['daily'],'turnoff':['noaacloud']} + - rap_control_dyn64_phy32_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} hafsw_intel: build: compiler: 'intel' option: '-DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON' tests: - - hafs_regional_atm: {'project':['daily']} - - hafs_regional_atm_thompson_gfdlsf: {'project':['daily']} - - hafs_regional_atm_ocn: {'project':['daily']} - - hafs_regional_atm_wav: {'project':['daily']} - - hafs_regional_atm_ocn_wav: {'project':['daily'],'turnoff':['noaacloud']} - - hafs_regional_1nest_atm: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} - - hafs_regional_telescopic_2nests_atm: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} - - hafs_global_1nest_atm: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} - - hafs_global_multiple_4nests_atm: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} - - hafs_regional_specified_moving_1nest_atm: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} - - hafs_regional_storm_following_1nest_atm: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} - - hafs_regional_storm_following_1nest_atm_ocn: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} - - hafs_global_storm_following_1nest_atm: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} - - gnv1_nested: {'project':['daily'],'turnoff':['hercules','wcoss2','s4','noaacloud']} + - hafs_regional_atm: {'project':['regression'],'baseline': 'True'} + - hafs_regional_atm_thompson_gfdlsf: {'project':['regression'],'baseline': 'True'} + - hafs_regional_atm_ocn: {'project':['regression'],'baseline': 'True'} + - hafs_regional_atm_wav: {'project':['regression'],'baseline': 'True'} + - hafs_regional_atm_ocn_wav: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - hafs_regional_1nest_atm: {'project':['regression'],'baseline': 'True','turnoff':['jet','s4','noaacloud']} + - hafs_regional_telescopic_2nests_atm: {'project':['regression'],'baseline': 'True','turnoff':['jet','s4','noaacloud']} + - hafs_global_1nest_atm: {'project':['regression'],'baseline': 'True','turnoff':['jet','s4','noaacloud']} + - hafs_global_multiple_4nests_atm: {'project':['regression'],'baseline': 'True','turnoff':['jet','s4','noaacloud']} + - hafs_regional_specified_moving_1nest_atm: {'project':['regression'],'baseline': 'True','turnoff':['jet','s4','noaacloud']} + - hafs_regional_storm_following_1nest_atm: {'project':['regression'],'baseline': 'True','turnoff':['jet','s4','noaacloud']} + - hafs_regional_storm_following_1nest_atm_ocn: {'project':['regression'],'baseline': 'True','turnoff':['jet','s4','noaacloud']} + - hafs_global_storm_following_1nest_atm: {'project':['regression'],'baseline': 'True','turnoff':['jet','s4','noaacloud']} + - gnv1_nested: {'project':['regression'],'baseline': 'True','turnoff':['hercules','wcoss2','s4','noaacloud']} hafsw_debug_intel: build: compiler: 'intel' option: '-DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON' turnoff: ['jet','noaacloud','s4'] tests: - - hafs_regional_storm_following_1nest_atm_ocn_debug: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} + - hafs_regional_storm_following_1nest_atm_ocn_debug: {'project':['regression'],'baseline': 'True','turnoff':['jet','s4','noaacloud']} hafsw_faster_intel: build: compiler: 'intel' option: '-DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON' turnoff: ['jet','noaacloud','s4'] tests: - - hafs_regional_storm_following_1nest_atm_ocn_wav: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} - - hafs_regional_storm_following_1nest_atm_ocn_wav_inline: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} + - hafs_regional_storm_following_1nest_atm_ocn_wav: {'project':['regression'],'baseline': 'True','turnoff':['jet','s4','noaacloud']} + - hafs_regional_storm_following_1nest_atm_ocn_wav_inline: {'project':['regression'],'baseline': 'True','turnoff':['jet','s4','noaacloud']} hafs_mom6w_intel: build: compiler: 'intel' option: '-DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON' turnoff: ['jet','noaacloud','s4'] tests: - - hafs_regional_storm_following_1nest_atm_ocn_wav_mom6: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} + - hafs_regional_storm_following_1nest_atm_ocn_wav_mom6: {'project':['regression'],'baseline': 'True','turnoff':['jet','s4','noaacloud']} hafs_all_intel: build: compiler: 'intel' option: '-DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON' turnoff: ['noaacloud'] tests: - - hafs_regional_docn: {'project':['daily'],'turnoff':['noaacloud']} - - hafs_regional_docn_oisst: {'project':['daily'],'turnoff':['noaacloud']} - - hafs_regional_datm_cdeps: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} + - hafs_regional_docn: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - hafs_regional_docn_oisst: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - hafs_regional_datm_cdeps: {'project':['regression'],'baseline': 'True','turnoff':['jet','s4','noaacloud']} datm_cdeps_intel: build: compiler: 'intel' option: '-DAPP=NG-GODAS' turnoff: ['wcoss2'] tests: - - datm_cdeps_control_cfsr: {'project':['daily'],'turnoff':['wcoss2']} - - datm_cdeps_restart_cfsr: {'project':['daily'],'dependency':'datm_cdeps_control_cfsr','turnoff':['wcoss2','noaacloud']} - - datm_cdeps_control_gefs: {'project':['daily'],'turnoff':['wcoss2']} - - datm_cdeps_iau_gefs: {'project':['daily'],'turnoff':['wcoss2']} - - datm_cdeps_stochy_gefs: {'project':['daily'],'turnoff':['wcoss2']} - - datm_cdeps_ciceC_cfsr: {'project':['daily'],'turnoff':['wcoss2','noaacloud']} - - datm_cdeps_bulk_cfsr: {'project':['daily'],'turnoff':['wcoss2','noaacloud']} - - datm_cdeps_bulk_gefs: {'project':['daily'],'turnoff':['wcoss2','noaacloud']} - - datm_cdeps_mx025_cfsr: {'project':['daily'],'turnoff':['wcoss2','noaacloud']} - - datm_cdeps_mx025_gefs: {'project':['daily'],'turnoff':['wcoss2','noaacloud']} - - datm_cdeps_multiple_files_cfsr: {'project':['daily'],'dependency':'datm_cdeps_control_cfsr','turnoff':['wcoss2','noaacloud']} - - datm_cdeps_3072x1536_cfsr: {'project':['daily'],'turnoff':['wcoss2','noaacloud']} - - datm_cdeps_gfs: {'project':['daily'],'turnoff':['wcoss2','noaacloud']} + - datm_cdeps_control_cfsr: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2']} + - datm_cdeps_restart_cfsr: {'project':['regression'],'dependency':'datm_cdeps_control_cfsr','turnoff':['wcoss2','noaacloud']} + - datm_cdeps_control_gefs: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2']} + - datm_cdeps_iau_gefs: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2']} + - datm_cdeps_stochy_gefs: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2']} + - datm_cdeps_ciceC_cfsr: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2','noaacloud']} + - datm_cdeps_bulk_cfsr: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2','noaacloud']} + - datm_cdeps_bulk_gefs: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2','noaacloud']} + - datm_cdeps_mx025_cfsr: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2','noaacloud']} + - datm_cdeps_mx025_gefs: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2','noaacloud']} + - datm_cdeps_multiple_files_cfsr: {'project':['regression'],'turnoff':['wcoss2','noaacloud']} + - datm_cdeps_3072x1536_cfsr: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2','noaacloud']} + - datm_cdeps_gfs: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2','noaacloud']} datm_cdeps_debug_intel: build: compiler: 'intel' option: '-DAPP=NG-GODAS -DDEBUG=ON' turnoff: ['wcoss2','acorn','noaacloud'] tests: - - datm_cdeps_debug_cfsr: {'project':['daily'],'turnoff':['wcoss2','acorn','noaacloud']} + - datm_cdeps_debug_cfsr: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2','acorn','noaacloud']} datm_cdeps_faster_intel: build: compiler: 'intel' option: '-DAPP=NG-GODAS -DFASTER=ON' turnoff: ['wcoss2'] tests: - - datm_cdeps_control_cfsr_faster: {'project':['daily'],'turnoff':['wcoss2']} + - datm_cdeps_control_cfsr_faster: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2']} datm_cdeps_land_intel: build: compiler: 'intel' option: '-DAPP=LND' turnoff: ['wcoss2'] tests: - - datm_cdeps_lnd_gswp3: {'project':['daily'],'turnoff':['wcoss2']} - - datm_cdeps_lnd_era5: {'project':['daily'],'turnoff':['wcoss2']} - - datm_cdeps_lnd_era5_rst: {'project':['daily'],'dependency':'datm_cdeps_lnd_era5','turnoff':['wcoss2','noaacloud']} + - datm_cdeps_lnd_gswp3: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2']} + - datm_cdeps_lnd_era5: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2']} + - datm_cdeps_lnd_era5_rst: {'project':['regression'],'dependency':'datm_cdeps_lnd_era5','turnoff':['wcoss2','noaacloud']} +datm_cdeps_lm4_intel: + build: + compiler: 'intel' + option: '-DAPP=LND-LM4' + turnon: ['hera','orion','gaea'] + tests: + - datm_cdeps_lm4_gswp3: {'project':['regression'],'baseline': 'True','turnon':['hera','orion','gaea']} + - datm_cdeps_lm4_gswp3_rst: {'project':['regression'],'dependency':'datm_cdeps_lm4_gswp3','turnon':['hera','orion','gaea']} atm_ds2s_docn_pcice_intel: build: compiler: 'intel' option: '-DAPP=ATM_DS2S-PCICE -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' tests: - - atm_ds2s_docn_pcice: {'project':['daily'],'turnoff':['noaacloud']} + - atm_ds2s_docn_pcice: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} atm_ds2s_docn_dice_intel: build: compiler: 'intel' - option: '-DAPP=ATM_DS2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' + option: '-DAPP=ATM_DS2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1' turnoff: ['wcoss2','acorn'] tests: - - atm_ds2s_docn_dice: {'project':['daily'],'dependency':'cpld_control_nowave_noaero_p8','turnoff':['noaacloud','wcoss2','acorn']} + - atm_ds2s_docn_dice: {'project':['regression'],'dependency':'cpld_control_nowave_noaero_p8','turnoff':['noaacloud','wcoss2','acorn']} atml_intel: build: compiler: 'intel' option: '-DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON' tests: - - control_p8_atmlnd_sbs: {'project':['daily'],'turnoff':['noaacloud','wcoss2']} - - control_p8_atmlnd: {'project':['daily'],'turnoff':['noaacloud','wcoss2']} - - control_restart_p8_atmlnd: {'project':['daily'],'dependency':'control_p8_atmlnd','turnoff':['noaacloud','wcoss2']} + - control_p8_atmlnd_sbs: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud','wcoss2']} + - control_p8_atmlnd: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud','wcoss2']} + - control_restart_p8_atmlnd: {'project':['regression'],'dependency':'control_p8_atmlnd','turnoff':['noaacloud','wcoss2']} atml_debug_intel: build: compiler: 'intel' option: '-DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DDEBUG=ON' tests: - - control_p8_atmlnd_debug: {'project':['daily'],'turnoff':['noaacloud','wcoss2']} + - control_p8_atmlnd_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud','wcoss2']} atmw_intel: build: compiler: 'intel' option: '-DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON' turnoff: ['wcoss2'] tests: - - atmwav_control_noaero_p8: {'project':['daily'],'turnoff':['wcoss2']} + - atmwav_control_noaero_p8: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2']} atmaero_intel: build: compiler: 'intel' option: '-DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON' turnoff: ['noaacloud'] tests: - - atmaero_control_p8: {'project':['daily'],'turnoff':['noaacloud']} - - atmaero_control_p8_rad: {'project':['daily'],'turnoff':['noaacloud']} - - atmaero_control_p8_rad_micro: {'project':['daily'],'turnoff':['noaacloud']} + - atmaero_control_p8: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - atmaero_control_p8_rad: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - atmaero_control_p8_rad_micro: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} atmaq_debug_intel: build: compiler: 'intel' option: '-DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON' turnoff: ['jet','noaacloud','s4'] tests: - - regional_atmaq_debug: {'project':['daily'],'turnoff':['hera','jet','s4','noaacloud']} + - regional_atmaq_debug: {'project':['regression'],'baseline': 'True','turnoff':['hera','jet','s4','noaacloud']} +atm_fbh_intel: + build: + compiler: 'intel' + option: '-DAPP=ATMF -DCCPP_SUITES=FV3_HRRR -D32BIT=ON' + turnoff: ['wcoss2','noaacloud','acorn'] + tests: + - cpld_regional_atm_fbh: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2','noaacloud','acorn']} +s2swa_32bit_pdlib_intelllvm: + build: + compiler: 'intelllvm' + option: '-DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON' + turnon: ['gaea'] + tests: + - cpld_control_gfsv17: {'project':['regression'],'baseline': 'True','turnon':['gaea']} +s2swa_32bit_pdlib_debug_intelllvm: + build: + compiler: 'intelllvm' + option: '-DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON' + turnon: ['gaea'] + tests: + - cpld_debug_gfsv17: {'project':['regression'],'baseline': 'True','turnon':['gaea']} +s2swa_32bit_pdlib_sfs_intelllvm: + build: + compiler: 'intelllvm' + option: '-DAPP=S2SWA -D32BIT=ON -DHYDRO=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON' + turnon: ['gaea'] + tests: + - cpld_control_sfs: {'project':['regression'],'baseline': 'True','turnon':['gaea']} +s2swa_intelllvm: + build: + compiler: 'intelllvm' + option: '-DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1' + turnon: ['gaea'] + tests: + - cpld_control_p8: {'project':['regression'],'baseline': 'True','turnon':['gaea']} +rrfs_dyn32_phy32_intelllvm: + build: + compiler: 'intelllvm' + option: '-DAPP=ATM -DCCPP_SUITES=FV3_RAP -D32BIT=ON -DCCPP_32BIT=ON' + turnon: ['hera'] + tests: + - rap_control_dyn32_phy32: {'project':['regression'],'baseline': 'True','turnon':['hera']} +rrfs_dyn64_phy32_intelllvm: + build: + compiler: 'intelllvm' + option: '-DAPP=ATM -DCCPP_SUITES=FV3_RAP -DCCPP_32BIT=ON' + turnon: ['hera'] + tests: + - rap_control_dyn64_phy32: {'project':['regression'],'baseline': 'True','turnon':['hera']} +hafsw_intelllvm: + build: + compiler: 'intelllvm' + option: '-DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON' + turnon: ['orion'] + tests: + - hafs_regional_storm_following_1nest_atm_ocn: {'project':['regression'],'baseline': 'True','turnon':['orion']} +hafsw_debug_intelllvm: + build: + compiler: 'intelllvm' + option: '-DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON' + turnon: ['orion'] + tests: + - hafs_regional_storm_following_1nest_atm_ocn_debug: {'project':['regression'],'baseline': 'True','turnon':['orion']} +datm_cdeps_intelllvm: + build: + compiler: 'intelllvm' + option: '-DAPP=NG-GODAS' + turnon: ['hercules'] + tests: + - datm_cdeps_control_cfsr: {'project':['regression'],'baseline': 'True','turnon':['hercules']} +datm_cdeps_debug_intelllvm: + build: + compiler: 'intelllvm' + option: '-DAPP=NG-GODAS -DDEBUG=ON' + turnon: ['hercules'] + tests: + - datm_cdeps_debug_cfsr: {'project':['regression'],'baseline': 'True','turnon':['hercules']} atm_gnu: build: compiler: 'gnu' option: '-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1' turnon: ['hera','hercules'] tests: - - control_c48: {'project':['daily'],'turnon':['hera','hercules']} - - control_stochy: {'project':['daily'],'turnon':['hera','hercules']} - - control_ras: {'project':['daily'],'turnon':['hera','hercules']} - - control_p8: {'project':['daily'],'turnon':['hera','hercules']} - - control_p8_ugwpv1: {'project':['daily'],'turnon':['hera','hercules']} - - control_flake: {'project':['daily'],'turnon':['hera','hercules']} + - 2020_CAPE: {'project':['test_case'], 'baseline': 'True','turnon':['hera','hercules']} + - baroclinic_wave: {'project':['test_case'], 'baseline': 'True','turnon':['hera','hercules']} + - control_c48: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - control_stochy: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - control_ras: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - control_p8: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - control_p8_ugwpv1: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - control_flake: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} rrfs_gnu: build: compiler: 'gnu' option: '-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON' turnon: ['hera','hercules'] tests: - - rap_control: {'project':['daily'],'turnon':['hera','hercules']} - - rap_decomp: {'project':['daily'],'dependency':'rap_control','turnon':['hera','hercules']} - - rap_2threads: {'project':['daily'],'dependency':'rap_control','turnon':['hera','hercules']} - - rap_restart: {'project':['daily'],'dependency':'rap_control','turnon':['hera','hercules']} - - rap_sfcdiff: {'project':['daily'],'turnon':['hera','hercules']} - - rap_sfcdiff_decomp: {'project':['daily'],'dependency':'rap_sfcdiff','turnon':['hera','hercules']} - - rap_sfcdiff_restart: {'project':['daily'],'dependency':'rap_sfcdiff','turnon':['hera','hercules']} - - hrrr_control: {'project':['daily'],'turnon':['hera','hercules']} - - hrrr_control_noqr: {'project':['daily'],'dependency':'hrrr_control','turnon':['hera','hercules']} - - hrrr_control_2threads: {'project':['daily'],'dependency':'hrrr_control','turnon':['hera','hercules']} - - hrrr_control_decomp: {'project':['daily'],'dependency':'hrrr_control','turnon':['hera','hercules']} - - hrrr_control_restart: {'project':['daily'],'dependency':'hrrr_control','turnon':['hera','hercules']} - - hrrr_control_restart_noqr: {'project':['daily'],'dependency':'hrrr_control','turnon':['hera','hercules']} - - rrfs_v1beta: {'project':['daily'],'turnon':['hera','hercules']} + - rap_control: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - rap_decomp: {'project':['regression'],'turnon':['hera','hercules']} + - rap_2threads: {'project':['regression'],'turnon':['hera','hercules']} + - rap_restart: {'project':['regression'],'dependency':'rap_control','turnon':['hera','hercules']} + - rap_sfcdiff: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - rap_sfcdiff_decomp: {'project':['regression'],'turnon':['hera','hercules']} + - rap_sfcdiff_restart: {'project':['regression'],'dependency':'rap_sfcdiff','turnon':['hera','hercules']} + - hrrr_control: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - hrrr_control_noqr: {'project':['regression'],'turnon':['hera','hercules']} + - hrrr_control_2threads: {'project':['regression'],'dependency':'hrrr_control','turnon':['hera','hercules']} + - hrrr_control_decomp: {'project':['regression'],'dependency':'hrrr_control','turnon':['hera','hercules']} + - hrrr_control_restart: {'project':['regression'],'dependency':'hrrr_control','turnon':['hera','hercules']} + - hrrr_control_restart_noqr: {'project':['regression'],'dependency':'hrrr_control_noqr','turnon':['hera','hercules']} + - rrfs_v1beta: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} +csawmg_gnu: + build: + compiler: 'gnu' + option: '-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras' + turnon: ['hera','hercules'] + tests: + - control_csawmg: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} atm_dyn32_debug_gnu: build: compiler: 'gnu' option: '-DAPP=ATM -D32BIT=ON -DDEBUG=ON' turnon: ['hera','hercules'] tests: - - control_diag_debug: {'project':['daily'],'turnon':['hera','hercules']} - - regional_debug: {'project':['daily'],'turnon':['hera','hercules']} - - rap_control_debug: {'project':['daily'],'turnon':['hera','hercules']} - - hrrr_control_debug: {'project':['daily'],'turnon':['hera','hercules']} - - hrrr_gf_debug: {'project':['daily'],'turnon':['hera','hercules']} - - hrrr_c3_debug: {'project':['daily'],'turnon':['hera','hercules']} - - rap_diag_debug: {'project':['daily'],'turnon':['hera','hercules']} - - rap_noah_sfcdiff_cires_ugwp_debug: {'project':['daily'],'turnon':['hera','hercules']} - - rap_progcld_thompson_debug: {'project':['daily'],'turnon':['hera','hercules']} - - rrfs_v1beta_debug: {'project':['daily'],'turnon':['hera','hercules']} - - control_ras_debug: {'project':['daily'],'turnon':['hera','hercules']} - - control_stochy_debug: {'project':['daily'],'turnon':['hera','hercules']} - - control_debug_p8: {'project':['daily'],'turnon':['hera','hercules']} - - rap_flake_debug: {'project':['daily'],'turnon':['hera','hercules']} - - rap_clm_lake_debug: {'project':['daily'],'turnon':['hera','hercules']} - - gnv1_c96_no_nest_debug: {'project':['daily'],'turnon':['hera','hercules']} + - control_diag_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - regional_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - rap_control_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - hrrr_control_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - hrrr_gf_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - hrrr_c3_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - rap_diag_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - rap_noah_sfcdiff_cires_ugwp_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - rap_progcld_thompson_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - rrfs_v1beta_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - control_ras_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - control_stochy_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - control_debug_p8: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - rap_flake_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - rap_clm_lake_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - gnv1_c96_no_nest_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} wam_debug_gnu: build: compiler: 'gnu' option: '-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON' turnon: ['hera','hercules'] tests: - - control_wam_debug: {'project':['daily'],'turnon':['hercules']} + - control_wam_debug: {'project':['regression'],'baseline': 'True','turnon':['hercules']} rrfs_dyn32_phy32_gnu: build: compiler: 'gnu' option: '-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON' turnon: ['hera','hercules'] tests: - - rap_control_dyn32_phy32: {'project':['daily'],'turnon':['hera','hercules']} - - hrrr_control_dyn32_phy32: {'project':['daily'],'turnon':['hera','hercules']} - - rap_2threads_dyn32_phy32: {'project':['daily'],'dependency':'rap_control_dyn32_phy32','turnon':['hera','hercules']} - - hrrr_control_2threads_dyn32_phy32: {'project':['daily'],'dependency':'hrrr_control_dyn32_phy32','turnon':['hera','hercules']} - - hrrr_control_decomp_dyn32_phy32: {'project':['daily'],'dependency':'hrrr_control_dyn32_phy32','turnon':['hera','hercules']} - - rap_restart_dyn32_phy32: {'project':['daily'],'dependency':'rap_control_dyn32_phy32','turnon':['hera','hercules']} - - hrrr_control_restart_dyn32_phy32: {'project':['daily'],'dependency':'hrrr_control_dyn32_phy32','turnon':['hera','hercules']} - - conus13km_control: {'project':['daily'],'turnon':['hera','hercules']} - - conus13km_2threads: {'project':['daily'],'dependency':'conus13km_control','turnon':['hera','hercules']} - - conus13km_restart_mismatch: {'project':['daily'],'dependency':'conus13km_control','turnon':['hera','hercules']} + - rap_control_dyn32_phy32: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - hrrr_control_dyn32_phy32: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - rap_2threads_dyn32_phy32: {'project':['regression'],'turnon':['hera','hercules']} + - hrrr_control_2threads_dyn32_phy32: {'project':['regression'],'turnon':['hera','hercules']} + - hrrr_control_decomp_dyn32_phy32: {'project':['regression'],'turnon':['hera','hercules']} + - rap_restart_dyn32_phy32: {'project':['regression'],'dependency':'rap_control_dyn32_phy32','turnon':['hera','hercules']} + - hrrr_control_restart_dyn32_phy32: {'project':['regression'],'dependency':'hrrr_control_dyn32_phy32','turnon':['hera','hercules']} + - conus13km_control: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - conus13km_2threads: {'project':['regression'],'dependency':'conus13km_control','turnon':['hera','hercules']} + - conus13km_restart_mismatch: {'project':['regression'],'dependency':'conus13km_control','turnon':['hera','hercules']} atm_dyn64_phy32_gnu: build: compiler: 'gnu' option: '-DAPP=ATM -DCCPP_32BIT=ON' turnon: ['hera','hercules'] tests: - - rap_control_dyn64_phy32: {'project':['daily'],'turnon':['hera','hercules']} + - rap_control_dyn64_phy32: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} atm_dyn32_phy32_debug_gnu: build: compiler: 'gnu' option: '-DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON' turnon: ['hera','hercules'] tests: - - rap_control_debug_dyn32_phy32: {'project':['daily'],'turnon':['hera','hercules']} - - hrrr_control_debug_dyn32_phy32: {'project':['daily'],'turnon':['hera','hercules']} - - conus13km_debug: {'project':['daily'],'turnon':['hera','hercules']} - - conus13km_debug_qr: {'project':['daily'],'dependency':'conus13km_debug','turnon':['hera','hercules']} - - conus13km_debug_2threads: {'project':['daily'],'dependency':'conus13km_debug','turnon':['hera','hercules']} - - conus13km_radar_tten_debug: {'project':['daily'],'turnon':['hera','hercules']} + - rap_control_debug_dyn32_phy32: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - hrrr_control_debug_dyn32_phy32: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - conus13km_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - conus13km_debug_qr: {'project':['regression'],'turnon':['hera','hercules']} + - conus13km_debug_2threads: {'project':['regression'],'turnon':['hera','hercules']} + - conus13km_radar_tten_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} atm_dyn64_phy32_debug_gnu: build: compiler: 'gnu' option: '-DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON' turnon: ['hera','hercules'] tests: - - rap_control_dyn64_phy32_debug: {'project':['daily'],'turnon':['hera','hercules']} + - rap_control_dyn64_phy32_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} s2swa_gnu: build: compiler: 'gnu' @@ -551,10 +631,10 @@ s2swa_gnu: s2s_gnu: build: compiler: 'gnu' - option: '-DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' + option: '-DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1' turnon: ['hera','hercules'] tests: - - cpld_control_nowave_noaero_p8: {'project':['daily'],'turnon':['hera','hercules']} + - cpld_control_nowave_noaero_p8: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} s2swa_debug_gnu: build: compiler: 'gnu' @@ -563,21 +643,21 @@ s2swa_debug_gnu: s2sw_pdlib_gnu: build: compiler: 'gnu' - option: '-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON' + option: '-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON' turnon: ['hera','hercules'] tests: - - cpld_control_pdlib_p8: {'project':['daily'],'turnon':['hera','hercules']} + - cpld_control_pdlib_p8: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} s2sw_pdlib_debug_gnu: build: compiler: 'gnu' - option: '-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON' + option: '-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON' turnon: ['hera','hercules'] tests: - - cpld_debug_pdlib_p8: {'project':['daily'],'turnon':['hercules']} + - cpld_debug_pdlib_p8: {'project':['regression'],'baseline': 'True','turnon':['hercules']} datm_cdeps_gnu: build: compiler: 'gnu' option: '-DAPP=NG-GODAS' turnon: ['hera','hercules'] tests: - - datm_cdeps_control_cfsr: {'project':['daily'],'turnon':['hera','hercules']} + - datm_cdeps_control_cfsr: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} diff --git a/tests-dev/ufs_test_utils.py b/tests-dev/ufs_test_utils.py index dafefea0a5..1439d60fb9 100644 --- a/tests-dev/ufs_test_utils.py +++ b/tests-dev/ufs_test_utils.py @@ -16,7 +16,7 @@ def update_testyaml(input_list): new_yaml = {} yaml_item_count = None with open(UFS_TEST_YAML, 'r') as file_yaml: - rt_yaml = yaml.load(file_yaml)#, Loader=yaml.FullLoader) + rt_yaml = yaml.full_load(file_yaml) for apps, jobs in rt_yaml.items(): app_temp = None build_temp = None @@ -164,18 +164,25 @@ def create_yaml(): if line.startswith("RUN"): # RUN line build = parse_line(line) test = build[1] + baseline_creation = True machine = build[2] - baseline = f"'{build[3]}'" + baseline = build[3] depend = build[4] + if depend: + baseline_creation = False + if baseline and depend: + baseline_creation = False + if not baseline and not depend: + baseline_creation = False if (machine.find('-') != -1): off_machine = machine.replace("-", "").strip() off_machine = string_clean(off_machine) if (machine.find('+') != -1): on_machine = machine.replace("+", "").strip() on_machine = string_clean(on_machine) - tests = f" - {test}: {{'project':['daily']" - if baseline.isalnum(): - tests += f",'baseline': {baseline}" + tests = f" - {test}: {{'project':['daily']" + if baseline_creation: + tests += f",'baseline': 'True'" if depend and depend.strip(): tests += f",'dependency':'{depend}'" if not (off_machine is None): @@ -209,6 +216,15 @@ def sync_testscripts(): wfile.close() else: os.symlink(src_name, dst_name) + + dst_conf= dst +'/'+ 'build_conf' + src_conf= dst +'/'+ 'fv3_conf' + if os.path.exists(dst_conf): + for name in os.listdir(dst_conf): + src_name= src_conf +'/'+ name + dst_name= dst_conf +'/'+ name + shutil.copyfile(dst_name, src_name) + #subprocess.call(['chmod', '755', src_name]) def machine_check_off(machine_id, val): """Checks turned-off machine from YAML configuration diff --git a/tests/compile.sh b/tests/compile.sh index 99b9919f25..dd8f91ced1 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -63,7 +63,10 @@ case ${MACHINE_ID} in # Activate lua environment for gaea c5 if [[ ${MACHINE_ID} == gaea ]]; then module reset + elif [[ ${MACHINE_ID} == hercules ]]; then + module purge fi + # Load fv3 module module use "${PATHTR}/modulefiles" modulefile="ufs_${MACHINE_ID}.${RT_COMPILER}" diff --git a/tests/fv3_conf/fv3_slurm.IN_noaacloud b/tests/fv3_conf/fv3_slurm.IN_noaacloud index a85e084160..345f992b0f 100644 --- a/tests/fv3_conf/fv3_slurm.IN_noaacloud +++ b/tests/fv3_conf/fv3_slurm.IN_noaacloud @@ -12,11 +12,14 @@ set -eux echo -n " $( date +%s )," > job_timestamp.txt set +x -MACHINE_ID=noaacloud -module use $( pwd -P ) -module use /contrib/EPIC/spack-stack/spack-stack-1.3.0/envs/unified-dev/install/modulefiles/Core -module load stack-intel/2021.3.0 stack-intel-oneapi-mpi/2021.3.0 -module load ufs-weather-model-env/unified-dev +export MACHINE_ID=noaacloud +source ./module-setup.sh +if [[ ! -d modulefiles ]]; then + mkdir modulefiles + mv *.lua modulefiles +fi +module use modulefiles +module load modules.fv3 module list set -x @@ -46,7 +49,8 @@ if [ "${JOB_SHOULD_FAIL:-NO}" = WHEN_RUNNING ] ; then false fi -srun --mpi=pmi2 --label -n @[TASKS] ./fv3.exe +srun --mpi=pmi2 --label -n @[TASKS] ${PWD}/fv3.exe + echo "Model ended: " `date` echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/logs/RegressionTests_noaacloud.log b/tests/logs/RegressionTests_noaacloud.log index 2e84cdbe8c..06db26b502 100644 --- a/tests/logs/RegressionTests_noaacloud.log +++ b/tests/logs/RegressionTests_noaacloud.log @@ -1,991 +1,134 @@ -Wed Sep 13 18:53:13 UTC 2023 -Start Regression test +====START OF NOAACLOUD REGRESSION TESTING LOG==== -Testing UFSWM Hash: 181bed7dc89e0cf7792a108741ce12c0192b2245 -Testing With Submodule Hashes: +UFSWM hash used in testing: +e366ec57380a76f1da3be0364eb0473762a1cf9d + +Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 2ed3c05c3c515eb70af3a726ff392283af97c4a5 CICE-interface/CICE (CICE6.0.0-442-g2ed3c05) - c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) + 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 9b5825b7a6c0c07a3d936d0222917677209a07f0 FV3 (heads/develop) - 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) - 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) - 59c554a12df3a04e0402ce5f17bb32cbbac193b2 WW3 (6.07.1-341-g59c554a1) - 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atmaq_faster_intel elapsed time 628 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 592 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_intel elapsed time 677 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 618 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 634 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 615 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_faster_intel elapsed time 187 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 187 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 59 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 640 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 644 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 648 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 654 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 717 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 705 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Thu Sep 14 12:45:30 UTC 2023 -Start Regression test - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_12325/cpld_control_noaero_p8_intel -Checking test 001 cpld_control_noaero_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 235.067933 - 0: The maximum resident set size (KB) = 1819976 - -Test 001 cpld_control_noaero_p8_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_gfsv17_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_12325/cpld_control_gfsv17_intel -Checking test 002 cpld_control_gfsv17_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 194.486526 - 0: The maximum resident set size (KB) = 1780520 - -Test 002 cpld_control_gfsv17_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_12325/datm_cdeps_control_cfsr_intel -Checking test 003 datm_cdeps_control_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 140.720050 - 0: The maximum resident set size (KB) = 1254256 - -Test 003 datm_cdeps_control_cfsr_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_gefs_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_12325/datm_cdeps_control_gefs_intel -Checking test 004 datm_cdeps_control_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 145.725806 - 0: The maximum resident set size (KB) = 1137660 - -Test 004 datm_cdeps_control_gefs_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_iau_gefs_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_12325/datm_cdeps_iau_gefs_intel -Checking test 005 datm_cdeps_iau_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 138.806743 - 0: The maximum resident set size (KB) = 1139260 - -Test 005 datm_cdeps_iau_gefs_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_stochy_gefs_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_12325/datm_cdeps_stochy_gefs_intel -Checking test 006 datm_cdeps_stochy_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 136.898247 - 0: The maximum resident set size (KB) = 1135528 - -Test 006 datm_cdeps_stochy_gefs_intel PASS - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/atmwav_control_noaero_p8_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_13056/atmwav_control_noaero_p8_intel -Checking test 001 atmwav_control_noaero_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK - Comparing 20210322.180000.out_pnt.ww3 .........OK - Comparing 20210322.180000.out_grd.ww3 .........OK - Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - - 0: The total amount of wall time = 89.786822 - 0: The maximum resident set size (KB) = 1740024 - -Test 007 atmwav_control_noaero_p8_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_atmwav_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_13056/control_atmwav_intel -Checking test 002 control_atmwav_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing 20210322.180000.restart.glo_1deg .........OK - - 0: The total amount of wall time = 80.879828 - 0: The maximum resident set size (KB) = 760744 - -Test 008 control_atmwav_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_13056/regional_atmaq_intel -Checking test 003 regional_atmaq_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK - Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc .........OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.phy_data.nc .........OK - Comparing RESTART/20190801.180000.sfc_data.nc .........OK - - 0: The total amount of wall time = 570.936950 - 0: The maximum resident set size (KB) = 5440640 - -Test 009 regional_atmaq_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_faster_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_13056/regional_atmaq_faster_intel -Checking test 004 regional_atmaq_faster_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK - Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc .........OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.phy_data.nc .........OK - Comparing RESTART/20190801.180000.sfc_data.nc .........OK - - 0: The total amount of wall time = 461.022740 - 0: The maximum resident set size (KB) = 5443032 - -Test 010 regional_atmaq_faster_intel PASS - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_c384_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_27559/control_c384_intel -Checking test 001 control_c384_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 458.101623 - 0: The maximum resident set size (KB) = 1510240 - -Test 011 control_c384_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_latlon_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_16411/control_latlon_intel -Checking test 001 control_latlon_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 116.591935 - 0: The maximum resident set size (KB) = 739644 - -Test 012 control_latlon_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_lndp_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_10694/control_lndp_intel -Checking test 001 control_lndp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 74.577322 - 0: The maximum resident set size (KB) = 744616 - -Test 013 control_lndp_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_p8_lndp_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_29229/control_p8_lndp_intel -Checking test 001 control_p8_lndp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing sfcf048.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing atmf048.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSFLX.GrbF48 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing GFSPRS.GrbF48 .........OK - - 0: The total amount of wall time = 270.886762 - 0: The maximum resident set size (KB) = 1711908 - -Test 014 control_p8_lndp_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_29775/control_stochy_intel -Checking test 001 control_stochy_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 79.032013 - 0: The maximum resident set size (KB) = 745464 - -Test 015 control_stochy_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_18036/regional_control_intel -Checking test 001 regional_control_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 256.592547 - 0: The maximum resident set size (KB) = 1189296 - -Test 016 regional_control_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_noquilt_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/regional_noquilt_intel -Checking test 001 regional_noquilt_intel results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - - 0: The total amount of wall time = 254.564088 - 0: The maximum resident set size (KB) = 1456300 - -Test 017 regional_noquilt_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_flake_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_27499/control_flake_intel -Checking test 002 control_flake_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 263.335844 - 0: The maximum resident set size (KB) = 791788 - -Test 018 control_flake_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_iovr4_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_10694/control_iovr4_intel -Checking test 002 control_iovr4_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 118.289092 - 0: The maximum resident set size (KB) = 738932 - -Test 019 control_iovr4_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_16411/control_wrtGauss_netcdf_parallel_intel -Checking test 002 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 118.455093 - 0: The maximum resident set size (KB) = 738948 - -Test 020 control_wrtGauss_netcdf_parallel_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_netcdf_parallel_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/regional_netcdf_parallel_intel -Checking test 002 regional_netcdf_parallel_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - - 0: The total amount of wall time = 315.339534 - 0: The maximum resident set size (KB) = 1189296 - -Test 021 regional_netcdf_parallel_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_c48_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_16411/control_c48_intel -Checking test 003 control_c48_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0: The total amount of wall time = 355.289641 -0: The maximum resident set size (KB) = 725172 - -Test 022 control_c48_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_27499/control_CubedSphereGrid_intel -Checking test 003 control_CubedSphereGrid_intel results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - - 0: The total amount of wall time = 156.608547 - 0: The maximum resident set size (KB) = 740744 - -Test 023 control_CubedSphereGrid_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_iovr5_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_10694/control_iovr5_intel -Checking test 003 control_iovr5_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 180.745637 - 0: The maximum resident set size (KB) = 740216 - -Test 024 control_iovr5_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/regional_2dwrtdecomp_intel -Checking test 003 regional_2dwrtdecomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 258.266724 - 0: The maximum resident set size (KB) = 1189112 - -Test 025 regional_2dwrtdecomp_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/fv3_regional_wofs_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/regional_wofs_intel -Checking test 004 regional_wofs_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 317.986202 - 0: The maximum resident set size (KB) = 997696 - -Test 026 regional_wofs_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/rap_control_intel -Checking test 005 rap_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 376.232736 - 0: The maximum resident set size (KB) = 1313760 - -Test 027 rap_control_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/regional_spp_sppt_shum_skeb_intel -Checking test 006 regional_spp_sppt_shum_skeb_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - - 0: The total amount of wall time = 259.976109 - 0: The maximum resident set size (KB) = 1358860 - -Test 028 regional_spp_sppt_shum_skeb_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/rrfs_v1beta_intel -Checking test 007 rrfs_v1beta_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 367.928558 - 0: The maximum resident set size (KB) = 1275508 - -Test 029 rrfs_v1beta_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/rrfs_v1nssl_intel -Checking test 008 rrfs_v1nssl_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 451.901667 - 0: The maximum resident set size (KB) = 878300 - -Test 030 rrfs_v1nssl_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_nohailnoccn_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/rrfs_v1nssl_nohailnoccn_intel -Checking test 009 rrfs_v1nssl_nohailnoccn_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 434.283032 - 0: The maximum resident set size (KB) = 986664 - -Test 031 rrfs_v1nssl_nohailnoccn_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_control_faster_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/regional_control_faster_intel -Checking test 010 regional_control_faster_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 236.396016 - 0: The maximum resident set size (KB) = 1188316 - -Test 032 regional_control_faster_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/hafs_regional_atm_intel -Checking test 011 hafs_regional_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - - 0: The total amount of wall time = 217.543716 - 0: The maximum resident set size (KB) = 1363136 - -Test 033 hafs_regional_atm_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 012 hafs_regional_atm_thompson_gfdlsf_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - - 0: The total amount of wall time = 332.106259 - 0: The maximum resident set size (KB) = 1696880 - -Test 034 hafs_regional_atm_thompson_gfdlsf_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/hafs_regional_atm_ocn_intel -Checking test 013 hafs_regional_atm_ocn_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 342.702251 - 0: The maximum resident set size (KB) = 1492844 - -Test 035 hafs_regional_atm_ocn_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_wav_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/hafs_regional_atm_wav_intel -Checking test 014 hafs_regional_atm_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 646.352130 - 0: The maximum resident set size (KB) = 1507564 - -Test 036 hafs_regional_atm_wav_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_faster_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/datm_cdeps_control_cfsr_faster_intel -Checking test 015 datm_cdeps_control_cfsr_faster_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 140.076360 - 0: The maximum resident set size (KB) = 1268896 - -Test 037 datm_cdeps_control_cfsr_faster_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/datm_cdeps_lnd_gswp3_intel -Checking test 016 datm_cdeps_lnd_gswp3_intel results .... - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - - 0: The total amount of wall time = 12.440630 - 0: The maximum resident set size (KB) = 401492 - -Test 038 datm_cdeps_lnd_gswp3_intel PASS + 49967251b83255bdac7ac2f9626d2714e8b83d07 FV3 (heads/develop) + e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) + b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) + 002a886eeb14979a6811f89e885d2968cbfd9b70 FV3/ccpp/physics (EP4-893-g002a886e) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + c7004b658b9dae9fc473d4e6511dfc1cf8e6a7bd WW3 (6.07.1-347-gc7004b65) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20241031 +COMPARISON DIRECTORY: /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_1252814 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: root +* (-l) - USE CONFIG FILE: rt.conf +* (-r) - USE ROCOTO + +PASS -- COMPILE 's2swa_32bit_intel' [29:42, 29:43] ( 6 warnings 10 remarks ) + +PASS -- COMPILE 's2swa_intel' [29:06, 29:07] ( 6 warnings 10 remarks ) + +PASS -- COMPILE 's2sw_intel' [29:42, 29:43] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [20:37, 19:07](1922 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:28, 12:28] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:34, 04:17](1974 MB) + +PASS -- COMPILE 's2s_intel' [12:38, 12:38] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [16:26, 15:04](2995 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:31, 11:31] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:16, 03:02](658 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:11, 02:58](1537 MB) +PASS -- TEST 'control_latlon_intel' [04:20, 02:54](1541 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:08, 02:53](1536 MB) +PASS -- TEST 'control_c48_intel' [27:49, 27:38](1680 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [19:00, 18:57](815 MB) +PASS -- TEST 'control_c384_intel' [16:19, 14:15](2020 MB) +PASS -- TEST 'control_stochy_intel' [01:35, 01:26](615 MB) +PASS -- TEST 'control_lndp_intel' [01:34, 01:22](615 MB) +PASS -- TEST 'control_iovr4_intel' [02:15, 02:13](611 MB) +PASS -- TEST 'control_iovr5_intel' [02:24, 02:11](612 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:08, 06:03](1833 MB) +PASS -- TEST 'regional_control_intel' [06:15, 05:06](1034 MB) +PASS -- TEST 'regional_noquilt_intel' [06:07, 04:53](1343 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:57, 04:52](1037 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:04, 04:52](1036 MB) +PASS -- TEST 'regional_wofs_intel' [07:33, 06:17](1844 MB) + +PASS -- COMPILE 'rrfs_intel' [10:59, 10:58] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:11, 06:58](1030 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:57, 04:13](1249 MB) +PASS -- TEST 'rrfs_v1beta_intel' [06:54, 06:50](1021 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:58, 08:45](1944 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:26, 08:24](2001 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:08, 11:08] ( 5 warnings 1 remarks ) +PASS -- TEST 'regional_control_faster_intel' [04:40, 04:30](1037 MB) + +PASS -- COMPILE 'hafsw_intel' [12:12, 12:12] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [05:31, 05:00](763 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:00, 05:29](1138 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:43, 06:39](810 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [26:15, 25:45](835 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:53, 06:53] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:32, 02:29](113723201130 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:26, 02:23](993 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:31, 02:26](989 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:30, 02:27](990 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:56, 09:56] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:30, 02:27](1131 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:03, 01:03] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:04, 01:09](284 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:30, 00:55](326 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:30, 10:30] ( 5 warnings 3 remarks ) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:11, 10:11] ( 6 warnings 1 remarks ) + +PASS -- COMPILE 'atml_intel' [11:35, 11:35] ( 13 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [05:55, 05:55] ( 885 warnings 2 remarks ) + +PASS -- COMPILE 'atmw_intel' [11:15, 11:15] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:06, 01:49](1862 MB) + +SYNOPSIS: +Starting Date/Time: 20241111 14:16:39 +Ending Date/Time: 20241111 15:29:32 +Total Time: 01h:12m:59s +Compiles Completed: 17/17 +Tests Completed: 38/38 + +NOTES: +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: SUCCESS -REGRESSION TEST WAS SUCCESSFUL -Wed Sep 13 20:40:38 UTC 2023 -Elapsed time: 01h:47m:26s. Have a nice day! +====END OF NOAACLOUD REGRESSION TESTING LOG==== diff --git a/tests/module-setup.sh b/tests/module-setup.sh index cd606178f6..5bbba3e465 100755 --- a/tests/module-setup.sh +++ b/tests/module-setup.sh @@ -47,7 +47,7 @@ elif [[ ${MACHINE_ID} = wcoss2 || ${MACHINE_ID} = acorn ]] ; then elif [[ ${MACHINE_ID} = derecho ]] ; then # We are on NCAR Derecho if ( ! eval module help > /dev/null 2>&1 ) ; then - source /usr/share/lmod/lmod/init/bash + source /glade/u/apps/derecho/23.09/spack/opt/spack/lmod/8.7.24/gcc/7.5.0/c645/lmod/lmod/init/bash fi module purge diff --git a/tests/rt.sh b/tests/rt.sh index 48a65436be..672c876e53 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -955,7 +955,7 @@ case ${MACHINE_ID} in module use /apps/modules/modulefiles if [[ "${ROCOTO:-false}" == true ]] ; then - module load rocoto/1.3.3 + module load rocoto/1.3.7 ROCOTO_SCHEDULER=slurm fi diff --git a/tests/test_changes.list b/tests/test_changes.list index 29080e02a9..8b13789179 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,10 +1 @@ -cpld_control_gfsv17 intelllvm -cpld_debug_gfsv17 intelllvm -cpld_control_sfs intelllvm -cpld_control_p8 intelllvm -rap_control_dyn32_phy32 intelllvm -rap_control_dyn64_phy32 intelllvm -hafs_regional_storm_following_1nest_atm_ocn intelllvm -hafs_regional_storm_following_1nest_atm_ocn_debug intelllvm -datm_cdeps_control_cfsr intelllvm -datm_cdeps_debug_cfsr intelllvm + From 6b0f516557811eac82c17b852efb82a35892b022 Mon Sep 17 00:00:00 2001 From: Denise Worthen Date: Thu, 14 Nov 2024 16:17:34 -0500 Subject: [PATCH 10/24] Update WW3 for PIO/netCDF restarts (#2445) * UFSWM - add PIO settings to WAV attributes in ufs.configure templates * UFSWM - update ww3_shel.nml to allow for the ice field to be written to the restart file when required (i.e, waves in the slow loop) * UFSWM - add WW3 restart files to comparison lists * WW3 - Add netCDF PIO capability for restarts and run-time history --- WW3 | 2 +- tests/bl_date.conf | 2 +- tests/default_vars.sh | 37 +- tests/fv3_conf/control_run.IN | 2 +- tests/fv3_conf/cpld_control_run.IN | 2 +- tests/logs/RegressionTests_gaea.log | 670 +++++++++------- tests/logs/RegressionTests_hera.log | 755 +++++++++--------- tests/logs/RegressionTests_hercules.log | 755 +++++++++--------- tests/logs/RegressionTests_jet.log | 494 ++++++------ tests/logs/RegressionTests_orion.log | 577 ++++++------- tests/logs/RegressionTests_wcoss2.log | 462 +++++------ tests/parm/ufs.configure.atm_lnd.IN | 1 - tests/parm/ufs.configure.atmw.IN | 10 +- tests/parm/ufs.configure.hafs_atm_docn.IN | 1 - tests/parm/ufs.configure.hafs_atm_ocn.IN | 1 - tests/parm/ufs.configure.hafs_atm_ocn_wav.IN | 11 +- .../ufs.configure.hafs_atm_ocn_wav_inline.IN | 11 +- .../ufs.configure.hafs_atm_ocn_wav_mom6.IN | 11 +- tests/parm/ufs.configure.hafs_atm_wav.IN | 11 +- tests/parm/ufs.configure.s2sw.IN | 10 +- tests/parm/ufs.configure.s2sw_esmf.IN | 10 +- tests/parm/ufs.configure.s2sw_fast_esmf.IN | 10 +- tests/parm/ufs.configure.s2swa.IN | 10 +- tests/parm/ufs.configure.s2swa_esmf.IN | 10 +- tests/parm/ufs.configure.s2swa_fast_esmf.IN | 10 +- tests/parm/ww3_shel.nml.IN | 2 +- tests/test_changes.list | 36 +- tests/tests/atmwav_control_noaero_p8 | 12 +- tests/tests/cpld_2threads_p8 | 1 + tests/tests/cpld_bmark_p8 | 1 + tests/tests/cpld_control_c192_p8 | 1 + tests/tests/cpld_control_ciceC_p8 | 1 + tests/tests/cpld_control_gfsv17 | 3 + tests/tests/cpld_control_gfsv17_iau | 3 + tests/tests/cpld_control_noaero_p8 | 1 + tests/tests/cpld_control_p8 | 1 + tests/tests/cpld_control_p8.v2.sfc | 1 + tests/tests/cpld_control_p8_faster | 1 + tests/tests/cpld_control_p8_mixedmode | 1 + tests/tests/cpld_control_pdlib_p8 | 4 + tests/tests/cpld_control_qr_p8 | 1 + tests/tests/cpld_control_sfs | 5 +- tests/tests/cpld_debug_gfsv17 | 3 + tests/tests/cpld_debug_noaero_p8 | 1 + tests/tests/cpld_debug_p8 | 1 + tests/tests/cpld_debug_pdlib_p8 | 3 +- tests/tests/cpld_decomp_p8 | 1 + tests/tests/cpld_mpi_gfsv17 | 3 + tests/tests/cpld_mpi_p8 | 1 + tests/tests/cpld_mpi_pdlib_p8 | 1 + tests/tests/cpld_restart_bmark_p8 | 1 + tests/tests/cpld_restart_c192_p8 | 1 + tests/tests/cpld_restart_gfsv17 | 3 + tests/tests/cpld_restart_p8 | 1 + tests/tests/cpld_restart_pdlib_p8 | 1 + tests/tests/cpld_restart_qr_p8 | 1 + tests/tests/hafs_regional_atm_ocn_wav | 6 +- tests/tests/hafs_regional_atm_wav | 2 +- 58 files changed, 2128 insertions(+), 1852 deletions(-) diff --git a/WW3 b/WW3 index c7004b658b..abe1e79e8d 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit c7004b658b9dae9fc473d4e6511dfc1cf8e6a7bd +Subproject commit abe1e79e8d4241178e5d31fac1c90b8cef2ee551 diff --git a/tests/bl_date.conf b/tests/bl_date.conf index bc20d96dc3..bdff6bd00e 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20241031 +export BL_DATE=20241112 diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 737f186342..4b46ce6aaf 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -742,7 +742,7 @@ export CDMBWD_c768='4.0,0.15,1.0,1.0' # set default export CDMBWD=${CDMBWD_c96} -if [[ ${default_dt_atmos} = 1 ]]; then +if [[ ${default_dt_atmos} = 1 ]]; then export DT_INNER=${DT_INNER_c96} else export DT_INNER=${DT_ATMOS} @@ -1013,7 +1013,7 @@ export WW3_IC5='F' export WW3_MULTIGRID=true export WW3_MODDEF=mod_def.glo_1deg export MESH_WAV=mesh.glo_1deg.nc - +export WW3_RSTFLDS=" " # ATMA export AOD_FRQ=060000 @@ -1081,7 +1081,7 @@ export_ugwpv1() { export LDIAG_UGWP=.false. export KNOB_UGWP_DOKDIS=2 export KNOB_UGWP_NDX4LH=4 - + # Add updated damping and timestep variables case "${ATMRES}" in "C48") @@ -1173,13 +1173,14 @@ export_ugwpv1() { exit 1 ;; esac - + if [[ ${DO_GSL_DRAG_SS} = .true. ]]; then export CDMBGWD=${CDMBGWD_GSL}; fi if [[ ${SEDI_SEMI} = .true. ]]; then export DT_ATMOS=$((DT_ATMOS/2)); fi export DT_INNER=${DT_ATMOS} export default_dt_atmos=0 } - + + # Defaults for the CICE6 model namelist, mx100 export_cice6() { SECS=$((SHOUR*3600)) @@ -1305,7 +1306,18 @@ export_ww3() { export WW3_ICE='C' export WW3_IC1='F' export WW3_IC5='F' - export WW3_user_sets_restname="true" + export WW3_user_histname='false' + export WW3_historync='false' + export WW3_restartnc='true' + export WW3_restart_from_binary='false' + # For default ufs_configure (fast loop), no added fields reqd + export WW3_RSTFLDS=" " + # For either history_nc or restart_nc true + export WW3_PIO_FORMAT='pnetcdf' + export WW3_PIO_STRIDE=4 + export WW3_PIO_IOTASKS=-99 + export WW3_PIO_REARR='box' + export WW3_PIO_ROOT=-99 } export_fire_behavior() { @@ -1412,7 +1424,7 @@ export NY_GLB=320 export NPZ=127 export NPZP=128 -# Use updated omega calculations if +# Use updated omega calculations if # hydrostatic is set to false if [[ "${HYDROSTATIC}" == .false. ]]; then export UPDATE_FULL_OMEGA=.true. @@ -1730,6 +1742,17 @@ export_hafs_regional () export WW3_MODDEF=mod_def.${WW3_DOMAIN} export WW3_ICE='F' export WW3_OUTPARS="WND HS T01 T02 DIR FP DP PHS PTP PDIR UST CHA USP" + export WW3_RSTFLDS=" " + export WW3_user_histname='false' + export WW3_historync='false' + export WW3_restartnc='true' + export WW3_restart_from_binary='false' + # For either history_nc or restart_nc true + export WW3_PIO_FORMAT='pnetcdf' + export WW3_PIO_STRIDE=4 + export WW3_PIO_IOTASKS=-99 + export WW3_PIO_REARR='box' + export WW3_PIO_ROOT=-99 # Set CMEPS component defaults export_cmeps diff --git a/tests/fv3_conf/control_run.IN b/tests/fv3_conf/control_run.IN index 22ae9d58ee..d8be6334f6 100644 --- a/tests/fv3_conf/control_run.IN +++ b/tests/fv3_conf/control_run.IN @@ -40,7 +40,7 @@ else cp ../${DEP_RUN}${SUFFIX}/RESTART/${RFILE} . ls -1 ${RFILE}>rpointer.cpl fi - RFILE=ufs.atmw.ww3.r.${RESTART_FILE_SUFFIX_SECS} + RFILE=ufs.atmw.ww3.r.${RESTART_FILE_SUFFIX_SECS}.nc cp ../${DEP_RUN}${SUFFIX}/${RFILE} . fi diff --git a/tests/fv3_conf/cpld_control_run.IN b/tests/fv3_conf/cpld_control_run.IN index fda28f6d11..8b0c355d66 100644 --- a/tests/fv3_conf/cpld_control_run.IN +++ b/tests/fv3_conf/cpld_control_run.IN @@ -149,7 +149,7 @@ else # WAVE restart file if [[ $CPLWAV == .true. ]]; then - RFILE=ufs.cpld.ww3.r.${RESTART_FILE_SUFFIX_SECS} + RFILE=ufs.cpld.ww3.r.${RESTART_FILE_SUFFIX_SECS}.nc cp ../${DEP_RUN}${SUFFIX}/${RFILE} . fi diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 7b7c810e3d..4d2192d62d 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -a825b5db2bab633240c281e478989d144055db41 +a455d4df714c11207a7361bd79013093ef6e6a31 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1947bad314f3c54594828964efc8938596965891 FV3 (remotes/origin/rrfsv1-to-ufs/dev2) + 49967251b83255bdac7ac2f9626d2714e8b83d07 FV3 (heads/develop) e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 0678f44c137957033d357b2168b40fb5ab029be6 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5338-g0678f44c) + 002a886eeb14979a6811f89e885d2968cbfd9b70 FV3/ccpp/physics (EP4-893-g002a886e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -27,7 +27,7 @@ Submodule hashes used in testing: 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) + 06c20998e59082e79529a8e728c7c3a43a050911 WW3 (6.07.1-385-g06c20998) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,305 +38,385 @@ 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-20241031 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_1514204 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20241112 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_402579 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [17:14, 15:24] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:16, 12:41](3182 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:12, 20:24] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [21:56, 13:55](1896 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [35:03, 14:25](1929 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [24:51, 06:53](1063 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:56, 15:09](1874 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:14, 19:23] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [21:45, 14:04](1896 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:11, 09:09] ( 1528 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:53, 27:11](1930 MB) - -PASS -- COMPILE 's2swa_intel' [18:15, 16:12] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [20:20, 15:55](3216 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:47, 15:58](3212 MB) -PASS -- TEST 'cpld_restart_p8_intel' [24:29, 08:54](3140 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [21:30, 15:57](3236 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [24:10, 08:58](3159 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [16:51, 13:46](3461 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [19:37, 15:44](3210 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [16:51, 13:19](3156 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [21:34, 16:00](3217 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:35, 10:12](3489 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [28:43, 06:50](3599 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [35:57, 19:19](4253 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [27:19, 12:03](4354 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:37, 09:35](3187 MB) - -PASS -- COMPILE 's2sw_intel' [15:14, 13:44] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:04, 07:40](1912 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:03, 12:43](1966 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:11, 09:08] ( 1418 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [25:03, 22:22](3267 MB) - -PASS -- COMPILE 's2sw_debug_intel' [11:11, 09:31] ( 1418 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:58, 08:59](1942 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:13, 13:20] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:24, 05:21](1973 MB) - -PASS -- COMPILE 's2s_intel' [16:11, 14:30] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [07:48, 05:33](2865 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:49, 02:16](2880 MB) -PASS -- TEST 'cpld_restart_c48_intel' [05:48, 00:59](2296 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:12, 15:30] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [22:27, 15:44](3210 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:13, 18:43] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [46:57, 24:49](1922 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [22:53, 13:01](1103 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [39:58, 29:25](1894 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:12, 09:24] ( 1528 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [42:56, 31:18](1940 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:12, 14:08] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [16:22, 03:42](655 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [21:41, 03:16](1550 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [21:44, 03:18](1560 MB) -PASS -- TEST 'control_latlon_intel' [21:40, 03:10](1561 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [20:46, 03:20](1560 MB) -PASS -- TEST 'control_c48_intel' [26:46, 09:59](1572 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [21:13, 05:51](694 MB) -PASS -- TEST 'control_c192_intel' [26:00, 11:16](1679 MB) -PASS -- TEST 'control_c384_intel' [38:33, 23:33](1970 MB) -PASS -- TEST 'control_c384gdas_intel' [32:25, 14:35](1166 MB) -PASS -- TEST 'control_stochy_intel' [16:23, 01:50](612 MB) -PASS -- TEST 'control_stochy_restart_intel' [14:24, 01:35](416 MB) -PASS -- TEST 'control_lndp_intel' [18:22, 01:51](609 MB) -PASS -- TEST 'control_iovr4_intel' [19:23, 02:37](609 MB) -PASS -- TEST 'control_iovr5_intel' [20:24, 03:08](609 MB) -PASS -- TEST 'control_p8_intel' [21:47, 04:14](1848 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [21:58, 03:28](1841 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [21:48, 04:12](1843 MB) -PASS -- TEST 'control_restart_p8_intel' [12:40, 02:10](1000 MB) -PASS -- TEST 'control_noqr_p8_intel' [22:15, 03:42](1846 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [13:40, 02:28](1007 MB) -PASS -- TEST 'control_decomp_p8_intel' [22:06, 03:46](1842 MB) -PASS -- TEST 'control_2threads_p8_intel' [20:42, 03:12](1924 MB) -PASS -- TEST 'control_p8_lndp_intel' [22:36, 06:20](1850 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [21:39, 04:05](1897 MB) -PASS -- TEST 'control_p8_mynn_intel' [18:50, 03:19](1857 MB) -PASS -- TEST 'merra2_thompson_intel' [16:38, 04:18](1847 MB) -PASS -- TEST 'regional_control_intel' [07:31, 05:10](844 MB) -PASS -- TEST 'regional_restart_intel' [04:30, 02:36](846 MB) -PASS -- TEST 'regional_decomp_intel' [07:29, 05:25](850 MB) -PASS -- TEST 'regional_2threads_intel' [06:48, 02:56](973 MB) -PASS -- TEST 'regional_noquilt_intel' [06:30, 04:33](1169 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:33, 04:42](846 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:27, 04:38](848 MB) -PASS -- TEST 'regional_wofs_intel' [08:26, 06:17](1570 MB) - -PASS -- COMPILE 'rrfs_intel' [13:16, 11:59] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [20:14, 07:15](993 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [17:58, 04:01](1148 MB) -PASS -- TEST 'rap_decomp_intel' [13:51, 07:18](989 MB) -PASS -- TEST 'rap_2threads_intel' [11:02, 06:04](1072 MB) -PASS -- TEST 'rap_restart_intel' [13:36, 03:28](868 MB) -PASS -- TEST 'rap_sfcdiff_intel' [20:15, 07:05](990 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:51, 07:16](989 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [15:38, 04:58](868 MB) -PASS -- TEST 'hrrr_control_intel' [07:47, 03:42](986 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [10:30, 03:52](992 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:48, 03:06](1066 MB) -PASS -- TEST 'hrrr_control_restart_intel' [11:25, 01:54](820 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:49, 06:54](985 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:35, 08:48](1949 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [21:23, 08:32](1936 MB) - -PASS -- COMPILE 'csawmg_intel' [14:12, 13:08] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [15:27, 06:39](951 MB) -PASS -- TEST 'control_ras_intel' [12:21, 03:25](648 MB) - -PASS -- COMPILE 'wam_intel' [14:11, 12:54] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [24:15, 11:54](1640 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:12, 11:47] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [14:41, 03:08](1840 MB) -PASS -- TEST 'regional_control_faster_intel' [06:30, 04:27](842 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [13:11, 11:38] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [14:36, 02:37](1577 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [14:42, 02:36](1589 MB) -PASS -- TEST 'control_stochy_debug_intel' [14:22, 03:11](784 MB) -PASS -- TEST 'control_lndp_debug_intel' [13:22, 02:50](782 MB) -PASS -- TEST 'control_csawmg_debug_intel' [16:28, 04:54](1084 MB) -PASS -- TEST 'control_ras_debug_intel' [14:22, 03:34](789 MB) -PASS -- TEST 'control_diag_debug_intel' [13:33, 02:54](1641 MB) -PASS -- TEST 'control_debug_p8_intel' [14:29, 02:49](1867 MB) -PASS -- TEST 'regional_debug_intel' [27:45, 15:58](885 MB) -PASS -- TEST 'rap_control_debug_intel' [16:20, 05:04](1163 MB) -PASS -- TEST 'hrrr_control_debug_intel' [16:20, 04:56](1157 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [16:21, 05:08](1159 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [17:26, 05:02](1161 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [17:22, 05:07](1163 MB) -PASS -- TEST 'rap_diag_debug_intel' [17:27, 05:32](1248 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [17:20, 05:03](1163 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [16:22, 05:17](1163 MB) -PASS -- TEST 'rap_lndp_debug_intel' [15:21, 05:06](1161 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [15:21, 05:11](1166 MB) -PASS -- TEST 'rap_noah_debug_intel' [15:19, 05:11](1160 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [15:21, 05:11](1165 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [17:47, 08:06](1159 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [14:20, 05:23](1157 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [14:22, 06:09](1166 MB) -PASS -- TEST 'rap_flake_debug_intel' [14:24, 05:29](1166 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [19:28, 09:02](1165 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:11, 07:11] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [23:54, 14:13](1661 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 10:20] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [13:55, 04:10](1021 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [15:36, 06:21](865 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [12:34, 03:27](866 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [13:36, 05:23](924 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [12:31, 02:44](916 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [13:33, 03:26](863 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [13:23, 04:12](773 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [10:26, 01:53](747 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 12:49] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [11:53, 02:05](1068 MB) -PASS -- TEST 'conus13km_2threads_intel' [08:42, 01:01](1059 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [09:48, 01:38](942 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 11:15] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [14:37, 04:16](895 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:11, 08:49] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [12:21, 04:59](1037 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [12:19, 04:52](1037 MB) -PASS -- TEST 'conus13km_debug_intel' [21:43, 13:36](1122 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:57, 13:54](797 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [14:47, 07:53](1112 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:51, 14:13](1189 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:11, 08:14] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [15:21, 05:23](1063 MB) - -PASS -- COMPILE 'hafsw_intel' [15:14, 14:07] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [16:04, 05:43](711 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [14:27, 05:10](1064 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [18:35, 08:16](743 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [19:59, 11:50](772 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:16, 12:52](798 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:50, 05:22](474 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [16:13, 06:34](500 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [11:47, 02:43](398 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [16:38, 07:29](487 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [11:45, 03:41](507 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:49, 03:33](508 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [12:51, 04:35](585 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [10:33, 01:31](426 MB) -PASS -- TEST 'gnv1_nested_intel' [13:52, 05:17](1699 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:12, 07:56] ( 1470 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [21:48, 13:32](615 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:16, 14:15] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:56, 08:06](632 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:36, 08:20](807 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [17:15, 15:27] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:06, 06:29](808 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:12, 14:52] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [16:33, 06:10](736 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [18:04, 06:12](718 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [31:06, 20:01](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [12:11, 10:55] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [14:49, 02:36](764 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:24, 01:35](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [13:47, 02:28](642 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [14:11, 02:30](643 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [13:49, 02:30](641 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [12:49, 02:36](763 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [12:48, 02:37](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [12:48, 02:28](642 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [15:51, 06:13](693 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [14:15, 06:09](674 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [10:50, 02:37](751 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [11:21, 04:39](2032 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [11:21, 04:42](2032 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:15, 06:22] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [11:20, 05:31](736 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [13:13, 11:31] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [08:19, 02:36](763 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:48] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [07:35, 01:33](314 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [07:32, 01:05](462 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:18, 00:52](461 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [05:11, 03:52] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [07:37, 00:34](450 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [03:46, 00:38](256 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:12, 13:10] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [10:45, 04:00](1905 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:11, 11:49] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [13:44, 08:29](1900 MB) - -PASS -- COMPILE 'atml_intel' [15:12, 13:50] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:49, 07:36](1877 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [12:47, 07:53](1876 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:28, 04:45](1025 MB) - -PASS -- COMPILE 'atml_debug_intel' [11:15, 09:25] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:43, 07:04](1909 MB) - -PASS -- COMPILE 'atmw_intel' [15:13, 13:20] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:37, 02:54](1882 MB) - -PASS -- COMPILE 'atmaero_intel' [14:17, 12:12] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:45, 06:27](3097 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:44, 07:21](2987 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:58, 06:50](2997 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:15, 07:44] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [25:51, 18:11](4439 MB) - -PASS -- COMPILE 'atm_fbh_intel' [12:12, 10:45] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [12:00, 09:29](795 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [20:11, 19:06] -PASS -- TEST 'cpld_control_gfsv17_intelllvm' [17:21, 13:56](1908 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [10:11, 08:50] -PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [30:18, 27:38](1924 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [23:14, 21:56] -PASS -- TEST 'cpld_control_sfs_intelllvm' [15:57, 13:41](1900 MB) - -PASS -- COMPILE 's2swa_intelllvm' [17:11, 15:22] -PASS -- TEST 'cpld_control_p8_intelllvm' [18:17, 15:38](3214 MB) +PASS -- COMPILE 's2swa_32bit_intel' [22:11, 20:30] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [27:35, 12:43](3184 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 19:18] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [23:06, 15:04](1897 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:14, 14:42](1936 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:12, 06:36](1069 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:22, 15:28](1886 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 19:48] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [25:53, 14:04](1898 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:11, 10:09] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [30:16, 28:00](1935 MB) + +PASS -- COMPILE 's2swa_intel' [16:11, 14:58] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [19:40, 16:35](3215 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:40, 16:30](3212 MB) +PASS -- TEST 'cpld_restart_p8_intel' [15:16, 09:39](3136 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [19:38, 16:41](3236 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [15:18, 09:43](3158 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [17:35, 14:21](3461 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [18:36, 15:52](3205 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [16:34, 13:50](3153 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:38, 16:21](3210 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:37, 10:40](3486 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [19:09, 08:03](3600 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [40:17, 19:22](4253 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:38, 12:05](4343 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [14:05, 10:01](3190 MB) + +PASS -- COMPILE 's2sw_intel' [17:11, 16:01] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:04, 07:51](1912 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [18:06, 12:55](1965 MB) + +PASS -- COMPILE 's2swa_debug_intel' [14:11, 12:22] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [26:18, 23:21](3277 MB) + +PASS -- COMPILE 's2sw_debug_intel' [13:11, 11:56] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:53, 09:03](1948 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:12, 13:24] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:59, 05:12](1972 MB) + +PASS -- COMPILE 's2s_intel' [20:11, 19:01] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:37, 05:33](2875 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [09:37, 01:43](2871 MB) +PASS -- TEST 'cpld_restart_c48_intel' [08:03, 01:02](2286 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:15, 15:11] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [25:34, 16:27](3216 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:11, 20:26] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [31:14, 25:43](1916 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:06, 13:16](1095 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [33:09, 29:54](1897 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:11, 10:30] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [40:04, 30:35](1944 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:13, 12:18] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [09:56, 04:01](655 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [10:05, 03:48](1547 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [10:59, 03:54](1556 MB) +PASS -- TEST 'control_latlon_intel' [10:56, 03:48](1555 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [11:10, 03:51](1562 MB) +PASS -- TEST 'control_c48_intel' [16:02, 09:55](1570 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:45, 05:42](696 MB) +PASS -- TEST 'control_c192_intel' [18:00, 11:45](1684 MB) +PASS -- TEST 'control_c384_intel' [31:30, 24:06](1964 MB) +PASS -- TEST 'control_c384gdas_intel' [23:47, 14:47](1172 MB) +PASS -- TEST 'control_stochy_intel' [08:59, 02:07](608 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:28, 01:12](416 MB) +PASS -- TEST 'control_lndp_intel' [08:22, 02:13](609 MB) +PASS -- TEST 'control_iovr4_intel' [09:28, 03:00](608 MB) +PASS -- TEST 'control_iovr5_intel' [09:21, 03:08](609 MB) +PASS -- TEST 'control_p8_intel' [09:56, 04:28](1848 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [09:02, 03:54](1841 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:07, 04:08](1848 MB) +PASS -- TEST 'control_restart_p8_intel' [04:46, 02:24](997 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:55, 03:55](1842 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:49, 02:24](1003 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:47, 04:09](1832 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:50, 03:29](1925 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:03, 06:56](1850 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:14, 04:53](1898 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:11, 03:57](1848 MB) +PASS -- TEST 'merra2_thompson_intel' [07:01, 04:05](1845 MB) +PASS -- TEST 'regional_control_intel' [08:09, 04:53](847 MB) +PASS -- TEST 'regional_restart_intel' [05:38, 03:09](846 MB) +PASS -- TEST 'regional_decomp_intel' [07:51, 05:15](844 MB) +PASS -- TEST 'regional_2threads_intel' [06:29, 03:13](983 MB) +PASS -- TEST 'regional_noquilt_intel' [06:46, 04:53](1172 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:41, 04:53](843 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:30, 04:43](843 MB) +PASS -- TEST 'regional_wofs_intel' [08:32, 06:59](1570 MB) + +PASS -- COMPILE 'rrfs_intel' [13:13, 11:39] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:48, 06:59](991 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:44, 04:03](1145 MB) +PASS -- TEST 'rap_decomp_intel' [09:36, 07:33](987 MB) +PASS -- TEST 'rap_2threads_intel' [08:40, 06:27](1068 MB) +PASS -- TEST 'rap_restart_intel' [05:46, 03:42](865 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:50, 07:25](990 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:41, 08:01](985 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:43, 04:55](870 MB) +PASS -- TEST 'hrrr_control_intel' [08:06, 04:30](991 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:03, 04:35](987 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:46, 03:20](1065 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:32, 02:06](817 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:26, 07:26](984 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:29, 09:09](1941 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:27, 08:55](1933 MB) + +PASS -- COMPILE 'csawmg_intel' [14:11, 12:14] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [09:21, 06:58](948 MB) +PASS -- TEST 'control_ras_intel' [05:25, 03:40](648 MB) + +PASS -- COMPILE 'wam_intel' [12:10, 10:59] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:01, 11:56](1639 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:11, 13:15] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:55, 03:34](1847 MB) +PASS -- TEST 'regional_control_faster_intel' [06:35, 04:56](854 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [15:11, 13:18] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:34, 03:00](1576 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:46, 03:02](1580 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:25, 03:34](785 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:25, 02:50](783 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:38, 04:23](1082 MB) +PASS -- TEST 'control_ras_debug_intel' [05:18, 02:51](791 MB) +PASS -- TEST 'control_diag_debug_intel' [05:12, 02:56](1641 MB) +PASS -- TEST 'control_debug_p8_intel' [05:04, 02:57](1876 MB) +PASS -- TEST 'regional_debug_intel' [18:30, 16:26](894 MB) +PASS -- TEST 'rap_control_debug_intel' [06:21, 05:06](1162 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:22, 05:03](1155 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:20, 05:08](1156 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:22, 05:09](1161 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:25, 05:16](1161 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:30, 05:30](1247 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:27, 05:25](1161 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:21, 05:32](1161 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:21, 05:36](1160 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:24, 05:31](1162 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:22, 05:27](1159 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:24, 05:28](1163 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:41, 08:05](1158 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:25, 04:55](1155 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:27, 05:52](1161 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:28, 05:13](1162 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:50, 08:35](1169 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:11, 08:43] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:07, 13:15](1663 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 12:56] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:03, 03:53](1016 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:41, 05:59](867 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:41, 03:23](865 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:19, 05:16](925 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:44, 02:42](916 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:34, 03:33](862 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:45, 04:15](772 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:28, 01:41](747 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:49, 10:20] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:07, 02:04](1070 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:53, 01:16](1058 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:52, 01:16](946 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:14, 10:57] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:38, 04:22](898 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:15, 07:10] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:24, 04:55](1039 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:24, 04:51](1034 MB) +PASS -- TEST 'conus13km_debug_intel' [16:11, 13:32](1121 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:02, 13:39](798 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:54, 08:01](1115 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:52, 13:32](1192 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:14, 08:04] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:21, 05:05](1067 MB) + +PASS -- COMPILE 'hafsw_intel' [15:10, 13:37] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:07, 05:04](712 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:30, 04:23](1063 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:21, 07:42](744 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:13, 11:30](775 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:28, 12:42](805 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:03, 05:23](472 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:27, 06:38](497 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:51, 02:55](395 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:20, 08:42](487 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:52, 04:17](507 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:04, 03:30](506 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:07, 04:41](584 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:41, 01:31](425 MB) +PASS -- TEST 'gnv1_nested_intel' [08:58, 05:10](1698 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [13:10, 11:48] ( 1467 warnings 1469 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:02, 13:04](610 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:15, 15:13] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:13, 07:38](627 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:17, 07:50](809 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [20:11, 19:04] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:45, 06:03](807 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:15, 14:23] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:09, 06:17](738 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:08, 06:20](714 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:08, 20:11](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [13:20, 12:05] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 02:37](751 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:22, 01:39](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:33](640 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:24, 02:32](643 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:21, 02:31](640 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:20, 02:37](751 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:20, 02:35](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:20, 02:31](642 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:08, 06:12](693 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:03, 06:10](675 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:24, 02:37](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:26, 04:44](2029 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:23, 04:45](2030 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:14, 06:17] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 05:32](746 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:11, 11:20] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:21, 02:36](763 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:10, 02:36] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:50, 01:38](314 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:48, 01:19](462 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:33, 00:51](461 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [04:10, 02:54] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:53, 00:36](448 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:48, 00:14](252 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:11, 16:01] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:07, 04:07](1908 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:11, 13:52] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:33, 08:39](1903 MB) + +PASS -- COMPILE 'atml_intel' [15:11, 13:52] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:57, 06:59](1875 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:00, 06:56](1874 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:38, 04:31](1025 MB) + +PASS -- COMPILE 'atml_debug_intel' [11:15, 09:17] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:54, 06:36](1892 MB) + +PASS -- COMPILE 'atmw_intel' [14:21, 12:18] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:54, 02:32](1878 MB) + +PASS -- COMPILE 'atmaero_intel' [14:19, 12:29] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:54, 06:07](3098 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:10, 06:37](2988 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:10, 07:00](2994 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [10:11, 08:17] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [21:34, 18:16](4443 MB) + +PASS -- COMPILE 'atm_fbh_intel' [12:11, 11:04] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:33, 09:30](796 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [21:12, 19:22] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_gfsv17_intelllvm' [, ]( MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [15:11, 13:35] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_gfsv17_intelllvm' [, ]( MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [21:17, 19:22] +PASS -- TEST 'cpld_control_sfs_intelllvm' [15:54, 13:32](1895 MB) + +PASS -- COMPILE 's2swa_intelllvm' [17:12, 15:19] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_p8_intelllvm' [, ]( MB) SYNOPSIS: -Starting Date/Time: 20241106 19:51:30 -Ending Date/Time: 20241106 22:23:12 -Total Time: 02h:32m:33s +Starting Date/Time: 20241112 23:10:36 +Ending Date/Time: 20241113 01:34:53 +Total Time: 02h:25m:26s Compiles Completed: 47/47 -Tests Completed: 192/192 +Tests Completed: 189/192 +Failed Tests: +* TEST cpld_control_gfsv17_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2445/ufs-weather-model/tests/logs/log_gaea/run_cpld_control_gfsv17_intelllvm.log +* TEST cpld_debug_gfsv17_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2445/ufs-weather-model/tests/logs/log_gaea/run_cpld_debug_gfsv17_intelllvm.log +* TEST cpld_control_p8_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2445/ufs-weather-model/tests/logs/log_gaea/run_cpld_control_p8_intelllvm.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 GAEA REGRESSION TESTING LOG==== +====START OF GAEA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +a455d4df714c11207a7361bd79013093ef6e6a31 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) + 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 49967251b83255bdac7ac2f9626d2714e8b83d07 FV3 (heads/develop) + e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) + b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) + 002a886eeb14979a6811f89e885d2968cbfd9b70 FV3/ccpp/physics (EP4-893-g002a886e) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + 06c20998e59082e79529a8e728c7c3a43a050911 WW3 (6.07.1-385-g06c20998) + 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: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20241112 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1605522 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [20:12, 18:33] +PASS -- TEST 'cpld_control_gfsv17_intelllvm' [15:50, 13:35](1906 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [10:11, 08:11] +PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [30:03, 27:52](1926 MB) + +PASS -- COMPILE 's2swa_intelllvm' [15:11, 13:57] +PASS -- TEST 'cpld_control_p8_intelllvm' [18:03, 15:27](3218 MB) + +SYNOPSIS: +Starting Date/Time: 20241113 13:58:47 +Ending Date/Time: 20241113 14:40:28 +Total Time: 00h:42m:02s +Compiles Completed: 3/3 +Tests Completed: 3/3 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 3ddf04baf1..f1ffbfc1f5 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -7db9d8898499f1fde77381853ea17f3bfcadb7a7 +a455d4df714c11207a7361bd79013093ef6e6a31 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,13 +9,13 @@ Submodule hashes used in testing: 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1947bad314f3c54594828964efc8938596965891 FV3 (remotes/origin/rrfsv1-to-ufs/dev2) + 49967251b83255bdac7ac2f9626d2714e8b83d07 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) - c7004b658b9dae9fc473d4e6511dfc1cf8e6a7bd WW3 (6.07.1-347-gc7004b65) + 06c20998e59082e79529a8e728c7c3a43a050911 WW3 (6.07.1-385-g06c20998) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -26,387 +26,388 @@ 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-20241031 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_250409 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241112 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_98392 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:14, 12:52] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:13, 10:43](3293 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:15, 16:12] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:02, 17:35](1960 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:16, 18:28](2121 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:08, 08:25](1274 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:59, 19:50](1872 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:15, 16:16] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:48, 17:12](1962 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 05:57] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:03, 26:20](1922 MB) - -PASS -- COMPILE 's2swa_intel' [14:15, 13:01] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:14, 13:00](3355 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:24, 13:09](3341 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:23, 07:07](3258 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:14, 13:04](3363 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:23, 07:07](3277 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [16:14, 12:32](3628 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [16:14, 13:03](3341 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:13, 10:36](3218 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:19, 15:14](3336 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:07, 10:24](3525 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:49, 06:25](3624 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [23:43, 15:33](4294 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:03, 09:25](4375 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:11, 07:30](3301 MB) - -PASS -- COMPILE 's2sw_intel' [13:14, 11:55] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:58, 07:51](1978 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:07, 11:02](2068 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 05:55] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [25:16, 22:46](3385 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:35] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:02, 09:22](2006 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:14, 11:38] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:02, 04:29](2030 MB) - -PASS -- COMPILE 's2s_intel' [13:14, 11:43] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:45, 07:58](3043 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:44, 02:31](3030 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:42, 01:25](2480 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:12, 16:42] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [15:17, 12:27](3348 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:12, 15:42] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:12, 27:59](2008 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:12, 14:01](1275 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:05, 32:53](1924 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:12, 05:47] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:05, 30:38](1959 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:10, 10:39] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:28, 03:21](700 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:44, 03:14](1587 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:47, 03:15](1591 MB) -PASS -- TEST 'control_latlon_intel' [05:37, 03:12](1578 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:44, 03:15](1585 MB) -PASS -- TEST 'control_c48_intel' [13:41, 11:39](1714 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:25, 06:38](846 MB) -PASS -- TEST 'control_c192_intel' [13:53, 12:06](1755 MB) -PASS -- TEST 'control_c384_intel' [16:45, 13:40](1982 MB) -PASS -- TEST 'control_c384gdas_intel' [12:03, 08:07](1378 MB) -PASS -- TEST 'control_stochy_intel' [03:22, 01:40](655 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:23, 00:59](490 MB) -PASS -- TEST 'control_lndp_intel' [03:21, 01:34](652 MB) -PASS -- TEST 'control_iovr4_intel' [04:25, 02:29](650 MB) -PASS -- TEST 'control_iovr5_intel' [04:22, 02:30](651 MB) -PASS -- TEST 'control_p8_intel' [05:56, 03:40](1878 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:58, 03:03](1886 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:49, 03:35](1878 MB) -PASS -- TEST 'control_restart_p8_intel' [03:42, 02:03](1121 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:45, 03:37](1866 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:51, 02:05](1148 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:46, 03:42](1857 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:42, 03:31](1956 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:41, 06:39](1877 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:47, 04:10](1952 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:51, 03:04](1892 MB) -PASS -- TEST 'merra2_thompson_intel' [05:50, 03:22](1889 MB) -PASS -- TEST 'regional_control_intel' [07:33, 05:25](1091 MB) -PASS -- TEST 'regional_restart_intel' [04:32, 02:54](1084 MB) -PASS -- TEST 'regional_decomp_intel' [07:30, 05:45](1081 MB) -PASS -- TEST 'regional_2threads_intel' [05:31, 03:22](1087 MB) -PASS -- TEST 'regional_noquilt_intel' [07:34, 05:21](1386 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:35, 05:23](1079 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:33, 05:23](1088 MB) -PASS -- TEST 'regional_wofs_intel' [08:34, 06:52](1899 MB) - -PASS -- COMPILE 'rrfs_intel' [12:10, 10:09] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:43, 07:51](1092 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:03, 04:07](1240 MB) -PASS -- TEST 'rap_decomp_intel' [10:34, 08:10](1037 MB) -PASS -- TEST 'rap_2threads_intel' [09:32, 07:25](1166 MB) -PASS -- TEST 'rap_restart_intel' [05:41, 04:05](1107 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:40, 07:46](1097 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:36, 08:10](1034 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:41, 05:53](1125 MB) -PASS -- TEST 'hrrr_control_intel' [05:41, 03:58](1032 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:31, 04:05](1025 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:32, 03:40](1100 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:25, 02:11](995 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:46, 07:48](1084 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:23, 09:34](1979 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:23, 09:16](2063 MB) - -PASS -- COMPILE 'csawmg_intel' [11:11, 09:53] -PASS -- TEST 'control_csawmg_intel' [08:47, 06:17](1013 MB) -PASS -- TEST 'control_ras_intel' [05:24, 03:18](743 MB) - -PASS -- COMPILE 'wam_intel' [11:10, 10:02] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:51, 11:21](1665 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:10, 10:11] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:47, 02:46](1889 MB) -PASS -- TEST 'regional_control_faster_intel' [06:33, 04:58](1093 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 07:47] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:47, 02:18](1600 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:50, 02:11](1611 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:23, 03:04](828 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:23, 02:49](817 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:42, 04:19](1127 MB) -PASS -- TEST 'control_ras_debug_intel' [04:24, 02:50](828 MB) -PASS -- TEST 'control_diag_debug_intel' [04:51, 02:46](1681 MB) -PASS -- TEST 'control_debug_p8_intel' [04:39, 02:39](1891 MB) -PASS -- TEST 'regional_debug_intel' [19:34, 18:07](1097 MB) -PASS -- TEST 'rap_control_debug_intel' [07:23, 05:09](1216 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:26, 04:59](1200 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:21, 05:00](1211 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:20, 05:01](1209 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 05:05](1207 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:34, 05:21](1286 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 05:08](1203 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:21, 05:10](1215 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:21, 05:08](1213 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:20, 04:58](1210 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:21, 04:53](1217 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:20, 05:09](1211 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:21, 08:13](1208 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:21, 04:56](1210 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:23, 05:58](1217 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:21, 05:01](1217 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:37, 08:50](1208 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:10, 04:23] -PASS -- TEST 'control_csawmg_debug_gnu' [04:52, 02:26](721 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:11, 04:34] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:56, 13:28](1669 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:00] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:05, 03:55](1118 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:39, 06:38](1031 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:36, 03:26](987 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:31, 06:14](1092 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:31, 03:22](950 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:31, 03:46](938 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:39, 04:55](1023 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:26, 01:51](922 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:10, 10:12] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:54, 02:02](1188 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:43, 00:51](1110 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:43, 01:13](1093 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 10:16] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:43, 04:21](997 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:39] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:20, 05:02](1087 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:21, 04:52](1080 MB) -PASS -- TEST 'conus13km_debug_intel' [16:47, 14:43](1243 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:44, 14:22](938 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:41, 07:59](1154 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:41, 14:56](1294 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:28] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:24, 05:01](1147 MB) - -PASS -- COMPILE 'hafsw_intel' [13:11, 11:36] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:16, 05:05](719 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:31, 05:50](1093 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:26, 06:58](811 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:15, 13:44](839 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:26, 15:23](875 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:03, 05:34](482 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:19, 06:45](503 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:44, 02:41](364 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:12, 07:17](463 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:49, 03:41](518 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:57, 03:31](515 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:52, 04:07](573 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:12](390 MB) -PASS -- TEST 'gnv1_nested_intel' [06:39, 04:01](1747 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:12, 04:59] ( 1465 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:48, 13:17](559 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:20] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:58, 08:54](662 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:01, 09:00](687 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 11:37] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:28, 06:34](722 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:11, 10:42] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:17, 06:34](811 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:15, 06:38](797 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:53, 16:33](1210 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:25] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:17, 02:47](1156 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:40](1123 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:15, 02:43](1027 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:41](1017 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:16, 02:45](1021 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:16, 02:43](1150 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:15, 02:47](1150 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:15, 02:43](1038 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:17, 06:15](1059 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:15, 06:15](1042 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 02:44](1160 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:17, 04:00](2498 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:17, 03:56](2456 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:13] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:16, 06:24](1088 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:13, 06:37] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:16, 02:44](1138 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:58] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:28, 00:45](262 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:46](329 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:23, 00:33](323 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:22] -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:31, 00:29](568 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:30, 00:16](465 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:10, 10:27] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:58, 03:42](1979 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 10:19] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:53, 07:58](1979 MB) - -PASS -- COMPILE 'atml_intel' [12:10, 10:51] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:54, 04:27](1854 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:53, 04:22](1834 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:42, 02:29](1088 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:11, 05:32] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:49, 06:01](1870 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 10:41] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:46, 01:54](1913 MB) - -PASS -- COMPILE 'atmaero_intel' [12:10, 10:35] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:55, 04:12](3178 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:53, 04:57](3087 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:42, 05:02](3086 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:37] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_fbh_intel' [11:10, 09:39] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:25, 11:57](1079 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:11, 06:42] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:35, 08:27](1041 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:10, 06:36] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:37, 04:57](972 MB) - -PASS -- COMPILE 'atm_gnu' [06:11, 04:39] -PASS -- TEST 'control_c48_gnu' [11:40, 09:35](1507 MB) -PASS -- TEST 'control_stochy_gnu' [05:19, 03:32](459 MB) -PASS -- TEST 'control_ras_gnu' [06:20, 04:57](502 MB) -PASS -- TEST 'control_p8_gnu' [07:52, 05:17](1448 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [07:47, 05:10](1449 MB) -PASS -- TEST 'control_flake_gnu' [12:22, 10:29](535 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:11, 04:07] -PASS -- TEST 'rap_control_gnu' [13:30, 11:28](814 MB) -PASS -- TEST 'rap_decomp_gnu' [13:29, 11:41](809 MB) -PASS -- TEST 'rap_2threads_gnu' [12:34, 10:28](917 MB) -PASS -- TEST 'rap_restart_gnu' [07:39, 05:48](568 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [13:34, 11:20](839 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:31, 11:41](840 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:38, 08:26](573 MB) -PASS -- TEST 'hrrr_control_gnu' [07:33, 05:54](838 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:29, 05:52](826 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [07:32, 05:21](907 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:30, 05:55](838 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:25, 03:00](558 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:24, 02:56](652 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [13:41, 11:09](808 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:11, 03:51] -PASS -- TEST 'control_csawmg_gnu' [10:32, 08:45](738 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:34] -PASS -- TEST 'control_diag_debug_gnu' [03:41, 01:38](1268 MB) -PASS -- TEST 'regional_debug_gnu' [13:34, 11:26](737 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:20, 02:42](815 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:21, 02:37](810 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:20, 02:42](815 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:19, 02:41](816 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:32, 02:52](900 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:20, 04:11](815 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:20, 02:41](820 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:20, 02:40](814 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:20, 01:34](449 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:21, 01:43](447 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:41, 01:35](1408 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:20, 02:45](818 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:21, 02:52](816 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:35, 04:27](824 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:22] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:04] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:29, 09:52](701 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:28, 05:14](697 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:33, 09:00](742 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:32, 04:47](738 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:27, 05:19](695 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:34, 07:23](548 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:24, 02:39](528 MB) -PASS -- TEST 'conus13km_control_gnu' [05:51, 03:18](865 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:40, 05:50](859 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:40, 01:49](560 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:37] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:36, 05:49](723 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:30] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:22, 02:38](714 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:21, 02:33](704 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:52, 07:03](877 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:50, 06:58](570 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [09:42, 07:52](872 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:38, 07:00](950 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:12, 06:31] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:21, 02:35](739 MB) - -PASS -- COMPILE 's2swa_gnu' [18:12, 16:23] - -PASS -- COMPILE 's2s_gnu' [17:12, 15:55] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [21:02, 19:01](1512 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:07] - -PASS -- COMPILE 's2sw_pdlib_gnu' [18:11, 16:26] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [32:54, 30:46](1454 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:49] - -PASS -- COMPILE 'datm_cdeps_gnu' [17:12, 15:33] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:16, 03:05](692 MB) +PASS -- COMPILE 's2swa_32bit_intel' [15:14, 13:15] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:17, 12:04](3298 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:14, 16:20] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [35:11, 19:49](1965 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [29:28, 20:51](2150 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [17:26, 08:19](1267 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [38:06, 23:05](1861 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:14, 16:39] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [33:55, 19:18](1943 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:14, 06:29] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:58, 26:45](1920 MB) + +PASS -- COMPILE 's2swa_intel' [15:14, 13:15] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [23:20, 14:35](3335 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [23:25, 14:12](3357 MB) +PASS -- TEST 'cpld_restart_p8_intel' [30:31, 07:25](3256 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [22:17, 14:16](3368 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [31:34, 07:29](3273 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [18:12, 13:36](3626 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [22:15, 14:19](3345 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [16:16, 11:46](3221 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [23:24, 14:22](3357 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [18:12, 10:29](3523 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:50, 06:28](3624 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [39:21, 16:38](4269 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:11, 09:52](4377 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [15:10, 07:39](3312 MB) + +PASS -- COMPILE 's2sw_intel' [14:14, 12:35] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [14:59, 09:12](1989 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [17:06, 11:19](2050 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:13, 06:30] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [25:04, 22:36](3379 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:14, 06:04] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:12, 10:10](2014 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:14, 11:35] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:04, 04:37](2032 MB) + +PASS -- COMPILE 's2s_intel' [13:14, 11:45] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:42, 07:54](3048 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [08:45, 02:28](3039 MB) +PASS -- TEST 'cpld_restart_c48_intel' [11:48, 01:26](2476 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:13, 17:16] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [21:15, 13:37](3343 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:13, 16:01] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [36:05, 28:03](2021 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:43, 13:56](1266 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:17, 33:05](1927 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:12, 05:50] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:11, 30:14](1950 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:13, 10:46] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [08:26, 03:23](702 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [08:40, 03:13](1584 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:44, 03:24](1571 MB) +PASS -- TEST 'control_latlon_intel' [07:34, 03:22](1588 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:43, 03:17](1586 MB) +PASS -- TEST 'control_c48_intel' [13:43, 11:32](1726 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:27, 06:32](850 MB) +PASS -- TEST 'control_c192_intel' [14:56, 12:10](1746 MB) +PASS -- TEST 'control_c384_intel' [37:10, 13:43](1979 MB) +PASS -- TEST 'control_c384gdas_intel' [32:46, 08:21](1383 MB) +PASS -- TEST 'control_stochy_intel' [03:24, 01:41](653 MB) +PASS -- TEST 'control_stochy_restart_intel' [22:37, 01:01](496 MB) +PASS -- TEST 'control_lndp_intel' [04:25, 01:34](657 MB) +PASS -- TEST 'control_iovr4_intel' [05:25, 02:30](650 MB) +PASS -- TEST 'control_iovr5_intel' [04:25, 02:31](651 MB) +PASS -- TEST 'control_p8_intel' [25:05, 03:45](1874 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [25:05, 03:10](1885 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [24:59, 03:42](1878 MB) +PASS -- TEST 'control_restart_p8_intel' [11:55, 02:08](1123 MB) +PASS -- TEST 'control_noqr_p8_intel' [25:53, 03:44](1866 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [10:56, 02:06](1156 MB) +PASS -- TEST 'control_decomp_p8_intel' [26:53, 03:46](1865 MB) +PASS -- TEST 'control_2threads_p8_intel' [25:58, 03:34](1953 MB) +PASS -- TEST 'control_p8_lndp_intel' [28:55, 06:40](1879 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [26:59, 04:13](1954 MB) +PASS -- TEST 'control_p8_mynn_intel' [26:05, 03:11](1895 MB) +PASS -- TEST 'merra2_thompson_intel' [26:03, 03:30](1864 MB) +PASS -- TEST 'regional_control_intel' [29:39, 05:21](1081 MB) +PASS -- TEST 'regional_restart_intel' [16:36, 02:57](1077 MB) +PASS -- TEST 'regional_decomp_intel' [28:36, 05:51](1082 MB) +PASS -- TEST 'regional_2threads_intel' [32:37, 03:32](1083 MB) +PASS -- TEST 'regional_noquilt_intel' [26:40, 05:20](1396 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [32:42, 05:30](1088 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [43:38, 05:22](1091 MB) +PASS -- TEST 'regional_wofs_intel' [42:46, 06:56](1894 MB) + +PASS -- COMPILE 'rrfs_intel' [16:14, 10:24] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [22:48, 07:53](1107 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [18:10, 04:20](1247 MB) +PASS -- TEST 'rap_decomp_intel' [20:51, 08:15](1028 MB) +PASS -- TEST 'rap_2threads_intel' [18:49, 07:25](1166 MB) +PASS -- TEST 'rap_restart_intel' [07:57, 04:08](1099 MB) +PASS -- TEST 'rap_sfcdiff_intel' [01:51, 07:53](1097 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [57:45, 08:17](1043 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:59, 05:57](1124 MB) +PASS -- TEST 'hrrr_control_intel' [52:58, 04:05](1040 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [43:39, 04:07](1026 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [47:45, 03:46](1095 MB) +PASS -- TEST 'hrrr_control_restart_intel' [07:35, 02:12](994 MB) +PASS -- TEST 'rrfs_v1beta_intel' [50:51, 07:52](1090 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [19:29, 09:45](1977 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [19:28, 09:20](2051 MB) + +PASS -- COMPILE 'csawmg_intel' [15:13, 10:08] +PASS -- TEST 'control_csawmg_intel' [15:40, 06:24](1013 MB) +PASS -- TEST 'control_ras_intel' [11:27, 03:25](740 MB) + +PASS -- COMPILE 'wam_intel' [14:13, 10:09] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [19:49, 11:22](1657 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:13, 10:43] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [10:52, 03:01](1888 MB) +PASS -- TEST 'regional_control_faster_intel' [12:39, 05:11](1084 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:11, 07:54] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:46, 02:19](1615 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:49, 02:17](1609 MB) +PASS -- TEST 'control_stochy_debug_intel' [09:26, 03:08](830 MB) +PASS -- TEST 'control_lndp_debug_intel' [09:27, 02:48](832 MB) +PASS -- TEST 'control_csawmg_debug_intel' [10:41, 04:22](1145 MB) +PASS -- TEST 'control_ras_debug_intel' [09:26, 02:51](832 MB) +PASS -- TEST 'control_diag_debug_intel' [10:51, 02:46](1682 MB) +PASS -- TEST 'control_debug_p8_intel' [10:45, 02:42](1887 MB) +PASS -- TEST 'regional_debug_intel' [24:36, 18:24](1100 MB) +PASS -- TEST 'rap_control_debug_intel' [11:26, 05:11](1215 MB) +PASS -- TEST 'hrrr_control_debug_intel' [10:28, 05:06](1209 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [09:27, 05:01](1206 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [09:24, 05:04](1211 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:24, 05:08](1218 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:39, 05:20](1299 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:28, 05:17](1218 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:27, 05:18](1216 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:25, 05:06](1219 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:26, 05:08](1212 MB) +PASS -- TEST 'rap_noah_debug_intel' [11:28, 05:02](1211 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [10:29, 05:03](1210 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:26, 08:14](1205 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [09:28, 04:59](1207 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [11:30, 06:04](1212 MB) +PASS -- TEST 'rap_flake_debug_intel' [10:26, 05:12](1210 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:41, 08:45](1218 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [18:12, 04:23] +PASS -- TEST 'control_csawmg_debug_gnu' [06:45, 02:23](722 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:12, 04:43] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [17:53, 13:37](1687 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:13, 10:10] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:17, 04:01](1122 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:35, 06:37](1042 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:44, 03:29](973 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:39, 06:21](1079 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:36, 03:13](951 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:48, 03:41](913 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:45, 04:57](1022 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:59, 01:52](919 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:12, 10:17] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:57, 02:04](1189 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:42, 01:10](1100 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:48, 01:30](1087 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:13, 10:10] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:45, 04:19](979 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:12, 04:59] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:27, 05:18](1092 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:24, 05:00](1089 MB) +PASS -- TEST 'conus13km_debug_intel' [16:52, 14:30](1236 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:51, 14:26](934 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:45, 08:05](1164 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:42, 14:15](1305 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:11, 04:45] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:24, 05:10](1135 MB) + +PASS -- COMPILE 'hafsw_intel' [16:12, 11:48] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:18, 05:08](715 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:32, 06:17](1097 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:25, 07:24](814 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:26, 15:11](842 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:51, 18:40](864 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:23, 05:50](485 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:43, 07:01](508 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:01, 02:42](368 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:05, 07:20](481 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:53, 03:45](522 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:09, 03:33](522 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:55, 04:10](574 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:10](400 MB) +PASS -- TEST 'gnv1_nested_intel' [06:32, 04:03](1740 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:12, 05:13] ( 1462 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:54, 13:02](581 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:12, 11:25] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:02, 10:15](627 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:09, 10:27](697 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:12, 11:39] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:37, 08:18](681 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:12, 11:06] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [13:16, 06:41](837 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [16:21, 06:44](798 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:58, 16:24](1221 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [31:15, 06:59] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:21, 02:48](1171 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:24, 01:41](1107 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:20, 02:42](1033 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:20, 02:46](1026 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:43](1022 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:19, 02:44](1165 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:20, 02:49](1157 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:20, 02:42](1015 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:31, 06:41](1057 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:25, 06:18](1044 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:47](1158 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:20, 03:56](2472 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:20, 03:58](2515 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [46:17, 03:21] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:19, 06:31](1071 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [49:16, 06:41] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:19, 02:45](1163 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [20:19, 01:12] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:33, 00:47](267 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:26, 00:49](328 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:27, 00:32](322 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [20:18, 01:30] +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:34, 00:33](562 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:34, 00:19](464 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [29:22, 11:02] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:07, 03:48](1975 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [26:20, 10:30] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [10:59, 08:07](1958 MB) + +PASS -- COMPILE 'atml_intel' [26:20, 10:50] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:05, 04:24](1864 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:01, 04:23](1867 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [10:54, 02:30](1097 MB) + +PASS -- COMPILE 'atml_debug_intel' [21:18, 05:54] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:01, 05:54](1877 MB) + +PASS -- COMPILE 'atmw_intel' [24:19, 11:01] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:51, 02:01](1919 MB) + +PASS -- COMPILE 'atmaero_intel' [05:17, 10:43] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:00, 04:12](3198 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:01, 04:58](3095 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:48, 05:02](3104 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [43:14, 04:44] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_fbh_intel' [45:16, 09:51] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:30, 11:48](1087 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [16:12, 06:54] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:41, 08:28](1046 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [16:12, 06:54] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [07:47, 04:59](975 MB) + +PASS -- COMPILE 'atm_gnu' [10:12, 04:32] +PASS -- TEST 'control_c48_gnu' [11:41, 09:27](1511 MB) +PASS -- TEST 'control_stochy_gnu' [06:30, 03:26](497 MB) +PASS -- TEST 'control_ras_gnu' [07:23, 04:53](502 MB) +PASS -- TEST 'control_p8_gnu' [11:55, 05:12](1457 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [12:50, 05:08](1451 MB) +PASS -- TEST 'control_flake_gnu' [18:27, 10:30](540 MB) + +PASS -- COMPILE 'rrfs_gnu' [09:12, 04:30] +PASS -- TEST 'rap_control_gnu' [18:39, 11:28](806 MB) +PASS -- TEST 'rap_decomp_gnu' [18:37, 11:42](813 MB) +PASS -- TEST 'rap_2threads_gnu' [16:43, 10:25](916 MB) +PASS -- TEST 'rap_restart_gnu' [07:58, 05:52](569 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [17:39, 11:30](808 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [16:45, 11:39](806 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [11:04, 08:34](573 MB) +PASS -- TEST 'hrrr_control_gnu' [10:40, 05:55](843 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [13:36, 05:55](821 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [14:37, 05:25](907 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [14:33, 05:56](836 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [05:35, 03:05](557 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:32, 03:03](647 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [19:50, 11:18](836 MB) + +PASS -- COMPILE 'csawmg_gnu' [06:11, 04:00] +PASS -- TEST 'control_csawmg_gnu' [16:46, 08:34](733 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:12, 06:47] +PASS -- TEST 'control_diag_debug_gnu' [09:50, 01:39](1270 MB) +PASS -- TEST 'regional_debug_gnu' [15:41, 11:57](753 MB) +PASS -- TEST 'rap_control_debug_gnu' [09:26, 02:42](823 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [09:25, 02:34](815 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [09:23, 02:40](826 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [09:24, 02:40](823 MB) +PASS -- TEST 'rap_diag_debug_gnu' [09:42, 02:51](906 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [10:25, 04:18](820 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [08:24, 02:42](823 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [08:25, 02:42](815 MB) +PASS -- TEST 'control_ras_debug_gnu' [06:20, 01:36](452 MB) +PASS -- TEST 'control_stochy_debug_gnu' [06:22, 01:46](451 MB) +PASS -- TEST 'control_debug_p8_gnu' [05:38, 01:38](1439 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:27, 02:40](819 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:27, 02:59](819 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:37, 04:22](826 MB) + +PASS -- COMPILE 'wam_debug_gnu' [09:11, 02:31] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [10:11, 04:18] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:39, 09:51](700 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:38, 05:12](692 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [11:38, 08:59](742 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [08:34, 04:45](736 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [08:34, 05:20](692 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:44, 07:14](548 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:32, 02:39](532 MB) +PASS -- TEST 'conus13km_control_gnu' [07:06, 03:12](863 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:48, 05:28](869 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:47, 01:53](558 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [15:12, 10:07] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:42, 05:53](721 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [13:12, 07:13] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:27, 02:36](705 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:31, 02:35](707 MB) +PASS -- TEST 'conus13km_debug_gnu' [11:03, 06:44](884 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [11:01, 06:52](571 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [10:51, 07:43](890 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:50, 06:52](950 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [10:12, 07:13] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [05:25, 02:42](729 MB) + +PASS -- COMPILE 's2swa_gnu' [20:13, 16:56] + +PASS -- COMPILE 's2s_gnu' [19:12, 15:57] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [22:11, 18:56](1508 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [05:12, 03:10] + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:13, 16:08] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [34:23, 30:42](1454 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:12, 02:56] + +PASS -- COMPILE 'datm_cdeps_gnu' [17:13, 15:22] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:19, 03:06](694 MB) SYNOPSIS: -Starting Date/Time: 20241106 16:20:47 -Ending Date/Time: 20241106 18:17:24 -Total Time: 01h:56m:54s +Starting Date/Time: 20241113 04:07:04 +Ending Date/Time: 20241113 07:39:17 +Total Time: 03h:32m:32s Compiles Completed: 61/61 Tests Completed: 248/248 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index c3a6b0a078..b5b8ab641a 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7 +1,7 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -7db9d8898499f1fde77381853ea17f3bfcadb7a7 +a455d4df714c11207a7361bd79013093ef6e6a31 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1947bad314f3c54594828964efc8938596965891 FV3 (remotes/origin/rrfsv1-to-ufs/dev2) + 49967251b83255bdac7ac2f9626d2714e8b83d07 FV3 (heads/develop) e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 0678f44c137957033d357b2168b40fb5ab029be6 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5338-g0678f44c) + 002a886eeb14979a6811f89e885d2968cbfd9b70 FV3/ccpp/physics (EP4-893-g002a886e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -27,7 +27,7 @@ Submodule hashes used in testing: 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) + 06c20998e59082e79529a8e728c7c3a43a050911 WW3 (6.07.1-385-g06c20998) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,384 +38,385 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20241031 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_3515789 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20241112 +COMPARISON DIRECTORY: /work2/noaa/epic/nandoamstmp/hercules/stmp/nandoam/FV3_RT/rt_501024 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-r) - USE ROCOTO - -PASS -- COMPILE 's2swa_32bit_intel' [11:48, 11:48] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:40, 14:50](2145 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:08, 16:07] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [16:09, 14:40](2001 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:49, 14:29](2303 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [07:59, 06:41](1350 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:41, 15:51](1906 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:07, 16:06] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [14:46, 14:12](1991 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:29, 06:29] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:30, 25:27](1968 MB) - -PASS -- COMPILE 's2swa_intel' [12:05, 12:05] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [19:21, 18:19](2199 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:26, 15:32](2200 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:44, 07:31](1954 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [17:36, 16:18](2226 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:15, 07:54](1734 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [17:05, 16:16](2546 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:54, 14:02](2180 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:33, 12:41](2097 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:04, 14:01](2215 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [19:00, 17:24](2976 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [08:14, 06:02](2916 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [25:02, 19:40](3841 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:52, 09:39](3639 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:25, 07:35](2099 MB) - -PASS -- COMPILE 's2sw_intel' [11:39, 11:38] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [14:17, 13:10](2019 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:18, 10:24](2108 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:34, 06:34] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [20:20, 19:19](2227 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:25, 06:24] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:54, 08:44](2048 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [09:41, 09:41] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:00, 04:09](2065 MB) - -PASS -- COMPILE 's2s_intel' [09:42, 09:42] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [06:46, 06:05](3025 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [02:26, 01:51](3014 MB) -PASS -- TEST 'cpld_restart_c48_intel' [01:50, 01:06](2469 MB) - -PASS -- COMPILE 's2swa_faster_intel' [12:27, 12:27] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [14:30, 13:35](2213 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [15:33, 15:33] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:15, 22:28](2074 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:52, 11:18](1416 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:17, 25:25](1989 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:05, 04:04] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:20, 27:35](2012 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:31, 09:31] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:04, 02:54](708 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:20, 02:52](1589 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:23, 02:50](1596 MB) -PASS -- TEST 'control_latlon_intel' [03:05, 02:45](1589 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:19, 02:45](1601 MB) -PASS -- TEST 'control_c48_intel' [16:18, 15:43](1710 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [09:15, 09:01](842 MB) -PASS -- TEST 'control_c192_intel' [10:53, 10:19](1754 MB) -PASS -- TEST 'control_c384_intel' [13:52, 12:28](2012 MB) -PASS -- TEST 'control_c384gdas_intel' [09:19, 07:45](1503 MB) -PASS -- TEST 'control_stochy_intel' [01:38, 01:27](663 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:12, 00:57](548 MB) -PASS -- TEST 'control_lndp_intel' [01:41, 01:28](666 MB) -PASS -- TEST 'control_iovr4_intel' [02:26, 02:12](658 MB) -PASS -- TEST 'control_iovr5_intel' [02:24, 02:12](666 MB) -PASS -- TEST 'control_p8_intel' [03:51, 03:09](1884 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:35, 02:42](1896 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:55, 03:10](1889 MB) -PASS -- TEST 'control_restart_p8_intel' [02:34, 01:55](1152 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:51, 03:08](1872 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:36, 01:55](1208 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:57, 03:12](1883 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:07, 03:30](1961 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:21, 05:47](1877 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:33, 03:37](1970 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:23, 02:42](1894 MB) -PASS -- TEST 'merra2_thompson_intel' [04:01, 03:03](1898 MB) -PASS -- TEST 'regional_control_intel' [05:02, 04:43](1199 MB) -PASS -- TEST 'regional_restart_intel' [03:01, 02:38](1168 MB) -PASS -- TEST 'regional_decomp_intel' [05:18, 04:56](1183 MB) -PASS -- TEST 'regional_2threads_intel' [03:31, 03:11](1151 MB) -PASS -- TEST 'regional_noquilt_intel' [04:47, 04:28](1517 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:11, 04:40](1195 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:08, 04:43](1183 MB) -PASS -- TEST 'regional_wofs_intel' [06:24, 06:00](2064 MB) - -PASS -- COMPILE 'rrfs_intel' [08:20, 08:20] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [07:21, 06:46](1179 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:19, 03:46](1361 MB) -PASS -- TEST 'rap_decomp_intel' [07:40, 07:02](1143 MB) -PASS -- TEST 'rap_2threads_intel' [06:59, 06:22](1361 MB) -PASS -- TEST 'rap_restart_intel' [04:24, 03:36](1122 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:31, 06:55](1184 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:56, 07:21](1132 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:13, 06:25](1182 MB) -PASS -- TEST 'hrrr_control_intel' [04:22, 03:45](1078 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:26, 03:51](1034 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [03:46, 03:10](1103 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:23, 02:04](1022 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:12, 06:34](1195 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:43, 09:32](1996 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:29, 09:19](2183 MB) - -PASS -- COMPILE 'csawmg_intel' [08:53, 08:53] -PASS -- TEST 'control_csawmg_intel' [06:10, 05:41](1042 MB) -PASS -- TEST 'control_ras_intel' [03:12, 03:01](852 MB) - -PASS -- COMPILE 'wam_intel' [09:06, 09:06] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [10:25, 09:51](1658 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [08:47, 08:46] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:47, 03:00](1901 MB) -PASS -- TEST 'regional_control_faster_intel' [04:48, 04:22](1187 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:30, 06:30] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:51, 02:19](1615 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:26, 01:50](1612 MB) -PASS -- TEST 'control_stochy_debug_intel' [02:48, 02:36](838 MB) -PASS -- TEST 'control_lndp_debug_intel' [02:36, 02:24](838 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:08, 03:41](1142 MB) -PASS -- TEST 'control_ras_debug_intel' [02:35, 02:25](844 MB) -PASS -- TEST 'control_diag_debug_intel' [02:56, 02:21](1688 MB) -PASS -- TEST 'control_debug_p8_intel' [02:47, 02:14](1906 MB) -PASS -- TEST 'regional_debug_intel' [15:08, 14:45](1141 MB) -PASS -- TEST 'rap_control_debug_intel' [04:26, 04:15](1223 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:28, 04:12](1212 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:19, 04:09](1227 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:37, 04:26](1218 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:26, 04:17](1227 MB) -PASS -- TEST 'rap_diag_debug_intel' [04:51, 04:30](1310 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:26, 04:16](1227 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:27, 04:18](1225 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:23, 04:11](1228 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:24, 05:15](1222 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:16, 04:08](1218 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:21, 04:10](1217 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [06:53, 06:41](1229 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:11, 04:02](1224 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:17, 05:03](1224 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:26, 04:12](1224 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:50, 07:08](1229 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [03:57, 03:57] -PASS -- TEST 'control_csawmg_debug_gnu' [02:26, 02:01](1037 MB) - -PASS -- COMPILE 'wam_debug_intel' [03:43, 03:42] ( 837 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:00, 08:00] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:26, 03:53](1272 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:07, 05:30](1142 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:39, 02:55](1028 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:48, 05:10](1291 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:27, 02:42](1030 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:50, 03:05](992 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:36, 04:09](1095 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [01:51, 01:43](941 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:34, 08:33] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:19, 01:49](1288 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:23, 00:51](1189 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:45, 01:17](1141 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:33, 08:33] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:48, 04:28](1083 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:46, 03:46] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:43, 05:34](1104 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:32, 04:12](1095 MB) -PASS -- TEST 'conus13km_debug_intel' [12:23, 11:49](1334 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [12:41, 12:06](1000 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:03, 07:25](1243 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:19, 11:42](1406 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:46, 03:45] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:07, 04:51](1156 MB) - -PASS -- COMPILE 'hafsw_intel' [10:40, 10:39] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:02, 07:05](853 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:12, 06:55](1267 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:52, 06:46](915 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:24, 14:18](946 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:43, 15:32](959 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:38, 05:57](591 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:24, 07:17](608 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:15, 02:45](435 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:01, 09:13](555 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:22, 03:57](609 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:22, 03:44](604 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:43, 05:50](669 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:31, 01:12](441 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:21, 04:20] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:03, 12:21](634 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [18:42, 18:42] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [16:47, 15:50](739 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:11, 17:18](836 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [17:58, 17:58] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:03, 10:43](803 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:05, 18:05] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [06:41, 05:48](944 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:55, 06:55](908 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:13, 16:34](1346 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:48, 10:48] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:26, 02:19](1121 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:29, 01:21](1097 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:24, 02:15](1015 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:16, 02:11](1016 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:39, 02:32](1021 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:16, 02:10](1157 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:20, 02:14](1160 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:09, 02:05](1022 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:52, 05:11](1163 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:47, 05:04](1155 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:20, 02:16](1159 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:06, 03:01](2466 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:11, 04:06](2465 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:23, 06:22] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:41, 08:36](1071 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [05:37, 05:37] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:20, 02:16](1151 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:01, 01:01] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 01:10](339 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:22, 01:05](572 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:56, 00:41](570 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:04, 09:04] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:08, 03:25](2027 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:37, 08:37] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:21, 07:41](2037 MB) - -PASS -- COMPILE 'atml_intel' [16:34, 16:33] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:46, 07:41](1897 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:07, 07:12](1895 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:20, 03:45](1138 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:27, 08:27] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:49, 06:42](1923 MB) - -PASS -- COMPILE 'atmw_intel' [16:58, 16:57] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:50, 02:50](1931 MB) - -PASS -- COMPILE 'atmaero_intel' [08:44, 08:44] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:04, 04:19](1991 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:47, 04:52](1803 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:24, 04:49](1790 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [03:32, 03:32] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [18:54, 17:34](4542 MB) - -PASS -- COMPILE 'atm_fbh_intel' [08:07, 08:07] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:10, 09:57](1071 MB) - -PASS -- COMPILE 'datm_cdeps_intelllvm' [10:12, 10:12] -PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [03:03, 02:58](1140 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [03:09, 03:09] -PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [10:55, 10:51](1073 MB) - -PASS -- COMPILE 'atm_gnu' [07:39, 07:39] -PASS -- TEST 'control_c48_gnu' [14:35, 13:51](1521 MB) -PASS -- TEST 'control_stochy_gnu' [02:33, 02:25](723 MB) -PASS -- TEST 'control_ras_gnu' [04:03, 03:50](721 MB) -PASS -- TEST 'control_p8_gnu' [04:59, 04:11](1718 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:56, 04:12](1722 MB) -PASS -- TEST 'control_flake_gnu' [06:13, 05:59](799 MB) - -PASS -- COMPILE 'rrfs_gnu' [04:03, 04:03] -PASS -- TEST 'rap_control_gnu' [11:58, 11:19](1071 MB) -PASS -- TEST 'rap_decomp_gnu' [11:24, 10:41](1077 MB) -PASS -- TEST 'rap_2threads_gnu' [10:37, 09:55](1129 MB) -PASS -- TEST 'rap_restart_gnu' [08:25, 07:29](879 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [13:55, 13:14](1071 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [14:55, 14:00](1072 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:45, 08:02](875 MB) -PASS -- TEST 'hrrr_control_gnu' [06:36, 05:28](1062 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:36, 05:37](1127 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:46, 04:40](1032 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:46, 05:42](1059 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:26, 03:09](874 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:13, 02:54](925 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [12:21, 11:09](1066 MB) - -PASS -- COMPILE 'csawmg_gnu' [06:41, 06:41] -PASS -- TEST 'control_csawmg_gnu' [07:47, 07:23](1058 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [05:39, 05:39] -PASS -- TEST 'control_diag_debug_gnu' [02:07, 01:39](1617 MB) -PASS -- TEST 'regional_debug_gnu' [10:41, 10:14](1122 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:20, 02:10](1089 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:29, 02:16](1081 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:29, 02:13](1084 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:11, 02:01](1086 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:08, 02:55](1259 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:22, 03:11](1085 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:09, 02:00](1090 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:11, 02:02](1084 MB) -PASS -- TEST 'control_ras_debug_gnu' [01:55, 01:44](723 MB) -PASS -- TEST 'control_stochy_debug_gnu' [01:43, 01:32](714 MB) -PASS -- TEST 'control_debug_p8_gnu' [01:55, 01:23](1698 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:11, 02:03](1089 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [02:33, 02:20](1094 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:34, 04:48](1095 MB) - -PASS -- COMPILE 'wam_debug_gnu' [02:50, 02:50] -PASS -- TEST 'control_wam_debug_gnu' [07:29, 07:01](1554 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:14, 04:14] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:33, 07:55](951 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:53, 04:09](949 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:30, 08:53](986 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:51, 04:46](887 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:59, 04:14](941 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:14, 07:45](855 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:24, 02:15](854 MB) -PASS -- TEST 'conus13km_control_gnu' [03:06, 02:34](1254 MB) -PASS -- TEST 'conus13km_2threads_gnu' [01:41, 01:16](1168 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:11, 01:42](923 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:54, 08:53] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:11, 04:46](979 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:03, 06:02] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:08, 01:59](967 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:25, 02:11](962 MB) -PASS -- TEST 'conus13km_debug_gnu' [06:20, 05:45](1275 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:45, 06:10](949 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [04:31, 03:58](1180 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:19, 05:49](1344 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:06, 08:06] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:24, 02:10](998 MB) - -PASS -- COMPILE 's2swa_gnu' [18:01, 18:01] - -PASS -- COMPILE 's2s_gnu' [17:18, 17:18] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [15:36, 14:43](2737 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [03:57, 03:57] - -PASS -- COMPILE 's2sw_pdlib_gnu' [16:00, 16:00] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [40:46, 40:02](2903 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:21, 04:21] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:31, 14:40](3042 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [15:36, 15:36] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [02:27, 02:21](775 MB) +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [14:11, 12:11] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [27:12, 15:13](2133 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 18:12] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [24:13, 17:57](1988 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:31, 18:04](2294 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:25, 06:47](1352 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:19, 19:12](1911 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:11, 18:12] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [22:41, 17:30](1985 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 05:35] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:13, 26:07](1973 MB) + +PASS -- COMPILE 's2swa_intel' [13:11, 11:58] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [28:06, 15:21](2211 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [28:13, 15:39](2207 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:24, 08:03](1966 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [28:09, 15:23](2227 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [12:20, 09:36](1731 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [26:05, 18:36](2560 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [28:06, 15:43](2189 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [17:09, 13:17](2099 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [28:14, 15:45](2215 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [21:43, 17:03](2970 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:14, 06:18](2903 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [27:19, 19:59](3823 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:37, 10:38](3635 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [16:03, 09:34](2105 MB) + +PASS -- COMPILE 's2sw_intel' [13:11, 11:35] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [21:00, 14:34](2020 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [17:08, 11:41](2116 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:24] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [21:01, 19:08](2237 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:25] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:59, 08:54](2048 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:11, 10:17] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:55, 05:54](2065 MB) + +PASS -- COMPILE 's2s_intel' [12:11, 10:33] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:38, 07:27](3024 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:40, 03:01](3015 MB) +PASS -- TEST 'cpld_restart_c48_intel' [09:41, 02:19](2470 MB) + +PASS -- COMPILE 's2swa_faster_intel' [13:11, 12:06] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [21:05, 15:02](2208 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 15:25] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [25:01, 23:06](2072 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:07, 11:53](1418 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:52, 26:42](1995 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:10, 04:33] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:52, 27:36](2005 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:11, 09:09] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:22, 02:57](707 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:30, 02:52](1582 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:34, 02:51](1609 MB) +PASS -- TEST 'control_latlon_intel' [05:28, 02:45](1586 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:36, 02:48](1596 MB) +PASS -- TEST 'control_c48_intel' [13:35, 10:33](1706 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:28, 05:54](829 MB) +PASS -- TEST 'control_c192_intel' [13:40, 10:26](1777 MB) +PASS -- TEST 'control_c384_intel' [21:20, 17:46](2019 MB) +PASS -- TEST 'control_c384gdas_intel' [10:48, 07:22](1485 MB) +PASS -- TEST 'control_stochy_intel' [03:19, 01:27](680 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:29, 00:57](535 MB) +PASS -- TEST 'control_lndp_intel' [03:20, 01:43](667 MB) +PASS -- TEST 'control_iovr4_intel' [03:20, 02:08](653 MB) +PASS -- TEST 'control_iovr5_intel' [03:23, 02:08](660 MB) +PASS -- TEST 'control_p8_intel' [06:47, 04:14](1876 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:55, 03:21](1900 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:51, 04:38](1904 MB) +PASS -- TEST 'control_restart_p8_intel' [04:45, 01:52](1150 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:42, 03:33](1891 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:45, 02:12](1186 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:49, 03:51](1873 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:44, 03:04](1956 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:31, 06:37](1889 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:59, 04:11](1977 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:47, 03:15](1903 MB) +PASS -- TEST 'merra2_thompson_intel' [04:54, 03:05](1898 MB) +PASS -- TEST 'regional_control_intel' [06:27, 04:36](1185 MB) +PASS -- TEST 'regional_restart_intel' [04:27, 02:36](1164 MB) +PASS -- TEST 'regional_decomp_intel' [06:28, 04:51](1180 MB) +PASS -- TEST 'regional_2threads_intel' [04:23, 03:00](1155 MB) +PASS -- TEST 'regional_noquilt_intel' [07:28, 05:07](1522 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:29, 05:11](1192 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:30, 04:42](1189 MB) +PASS -- TEST 'regional_wofs_intel' [08:29, 06:02](2087 MB) + +PASS -- COMPILE 'rrfs_intel' [10:11, 08:58] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:53, 06:47](1176 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:46, 04:01](1327 MB) +PASS -- TEST 'rap_decomp_intel' [08:33, 06:57](1138 MB) +PASS -- TEST 'rap_2threads_intel' [08:34, 06:17](1334 MB) +PASS -- TEST 'rap_restart_intel' [05:57, 03:30](1154 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:48, 06:38](1222 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:33, 07:15](1139 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:53, 06:30](1186 MB) +PASS -- TEST 'hrrr_control_intel' [05:48, 03:27](1064 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:39, 03:32](1047 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:38, 03:12](1108 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:22, 01:53](1019 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:56, 06:45](1209 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [14:22, 12:23](1997 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:21, 11:48](2188 MB) + +PASS -- COMPILE 'csawmg_intel' [10:11, 08:23] +PASS -- TEST 'control_csawmg_intel' [07:26, 05:31](1045 MB) +PASS -- TEST 'control_ras_intel' [04:19, 02:53](819 MB) + +PASS -- COMPILE 'wam_intel' [10:11, 08:48] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:36, 10:12](1652 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:11, 08:57] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:50, 02:55](1903 MB) +PASS -- TEST 'regional_control_faster_intel' [07:29, 05:17](1192 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [12:11, 07:00] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:31, 01:51](1616 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:38, 01:51](1626 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:20, 02:33](844 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:19, 03:09](841 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:24, 04:37](1144 MB) +PASS -- TEST 'control_ras_debug_intel' [04:18, 02:27](846 MB) +PASS -- TEST 'control_diag_debug_intel' [04:31, 02:21](1692 MB) +PASS -- TEST 'control_debug_p8_intel' [04:32, 02:18](1902 MB) +PASS -- TEST 'regional_debug_intel' [16:27, 14:41](1144 MB) +PASS -- TEST 'rap_control_debug_intel' [05:18, 04:02](1233 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:22, 04:07](1223 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:18, 04:09](1235 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:22, 04:01](1225 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:21, 04:02](1232 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:25, 04:21](1303 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:18, 04:09](1231 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:19, 04:14](1226 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:18, 04:09](1239 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:19, 05:13](1232 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:19, 05:07](1229 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:18, 04:05](1221 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:18, 06:42](1226 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:21, 04:03](1219 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:22, 05:00](1222 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:19, 04:09](1227 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:49, 07:01](1234 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [09:11, 04:31] +PASS -- TEST 'control_csawmg_debug_gnu' [05:30, 03:06](1037 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:12, 04:00] ( 837 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:12, 08:31] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:45, 03:16](1240 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:46, 05:21](1124 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:56, 02:55](1032 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:34, 05:15](1240 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:49, 03:27](1017 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:37, 03:04](991 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [14:53, 04:08](1084 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:24, 01:37](962 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:12, 08:33] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:37, 02:04](1293 MB) +PASS -- TEST 'conus13km_2threads_intel' [10:31, 00:55](1185 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [10:32, 01:17](1141 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:12, 08:36] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:32, 04:19](1089 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 03:55] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:17, 04:24](1096 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:18, 04:04](1107 MB) +PASS -- TEST 'conus13km_debug_intel' [13:32, 12:07](1341 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:32, 15:18](999 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:32, 08:17](1236 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:30, 11:41](1406 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:13, 04:11] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:23, 04:42](1166 MB) + +PASS -- COMPILE 'hafsw_intel' [11:12, 09:54] ( 1 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:05, 05:35](842 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:21, 06:31](1246 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:15, 07:40](914 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [20:07, 17:27](927 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:14, 17:04](970 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [15:53, 07:15](592 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [17:17, 09:02](605 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [11:50, 03:38](441 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:58, 09:37](549 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [14:46, 04:47](605 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [13:46, 04:39](604 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:50, 05:13](651 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [11:27, 01:46](460 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:11, 04:29] ( 1462 warnings 1490 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [21:45, 13:13](611 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:11, 10:11] ( 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [28:52, 18:42](750 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [31:01, 18:38](798 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:11, 10:16] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [26:23, 14:17](811 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:11, 09:48] ( 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [16:09, 05:44](919 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [16:07, 05:46](889 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [24:45, 16:27](1343 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:11, 05:40] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [10:19, 02:16](1161 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:20](1113 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [10:16, 02:08](1028 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [10:17, 02:12](1014 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [09:16, 02:12](1019 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [09:17, 02:14](1153 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [09:16, 02:11](1155 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [09:16, 02:06](1020 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:59, 04:58](1162 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:51, 04:55](1146 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [08:14, 02:11](1155 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [09:16, 03:04](2452 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [09:21, 03:08](2406 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:29] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:16, 05:13](1078 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:51] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [08:16, 02:49](1151 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:48] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:27, 01:01](336 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:22, 00:51](572 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:24, 00:32](572 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:11, 09:26] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:53, 04:16](2020 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:11, 08:55] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:40, 08:39](2025 MB) + +PASS -- COMPILE 'atml_intel' [11:11, 09:28] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:00, 06:28](1897 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:58, 06:06](1890 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:40, 03:58](1144 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:11, 04:28] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:01, 06:03](1917 MB) + +PASS -- COMPILE 'atmw_intel' [11:11, 09:53] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:56, 02:51](1934 MB) + +PASS -- COMPILE 'atmaero_intel' [11:12, 08:37] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:47, 05:50](2017 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:47, 04:33](1788 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:44, 06:16](1797 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:11, 03:51] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [20:22, 16:59](4549 MB) + +PASS -- COMPILE 'atm_fbh_intel' [10:12, 08:25] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [14:24, 09:48](1072 MB) + +PASS -- COMPILE 'datm_cdeps_intelllvm' [14:11, 13:00] +PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [05:17, 02:16](1158 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [03:11, 01:42] +PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [10:17, 06:04](1081 MB) + +PASS -- COMPILE 'atm_gnu' [06:11, 04:57] +PASS -- TEST 'control_c48_gnu' [11:37, 07:43](1520 MB) +PASS -- TEST 'control_stochy_gnu' [04:22, 02:23](717 MB) +PASS -- TEST 'control_ras_gnu' [06:20, 03:55](725 MB) +PASS -- TEST 'control_p8_gnu' [07:58, 04:59](1699 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [07:44, 04:52](1716 MB) +PASS -- TEST 'control_flake_gnu' [07:22, 04:42](809 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:11, 04:09] +PASS -- TEST 'rap_control_gnu' [11:34, 08:24](1073 MB) +PASS -- TEST 'rap_decomp_gnu' [10:35, 08:30](1072 MB) +PASS -- TEST 'rap_2threads_gnu' [09:46, 07:30](1129 MB) +PASS -- TEST 'rap_restart_gnu' [07:04, 04:15](876 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [10:47, 08:29](1071 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:33, 08:26](1072 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:56, 06:12](877 MB) +PASS -- TEST 'hrrr_control_gnu' [08:48, 04:27](1061 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [08:35, 04:22](1126 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [08:35, 03:58](1022 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [08:34, 04:21](1058 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:20, 02:19](878 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:20, 02:12](925 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [14:52, 10:43](1066 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:10, 04:07] +PASS -- TEST 'control_csawmg_gnu' [11:25, 07:56](1070 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:10, 07:44] +PASS -- TEST 'control_diag_debug_gnu' [04:28, 01:41](1621 MB) +PASS -- TEST 'regional_debug_gnu' [09:26, 07:52](1121 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:20, 02:07](1091 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:19, 02:37](1081 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:19, 02:15](1097 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [05:18, 02:17](1086 MB) +PASS -- TEST 'rap_diag_debug_gnu' [05:29, 02:12](1263 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:20, 03:16](1087 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [05:20, 02:14](1089 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [05:19, 02:04](1083 MB) +PASS -- TEST 'control_ras_debug_gnu' [04:19, 01:24](722 MB) +PASS -- TEST 'control_stochy_debug_gnu' [04:18, 01:27](718 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:32, 01:52](1694 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:20, 02:06](1093 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:19, 02:11](1091 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:49, 03:46](1093 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:58] +PASS -- TEST 'control_wam_debug_gnu' [07:34, 05:37](1557 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:03] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:31, 10:00](955 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:55, 05:44](940 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:43, 09:05](958 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:58, 04:01](879 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:36, 04:46](940 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:38, 07:04](854 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:23, 02:25](853 MB) +PASS -- TEST 'conus13km_control_gnu' [04:37, 02:47](1255 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:31, 01:12](1161 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:30, 01:36](921 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:12] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:30, 06:25](980 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [09:11, 07:40] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:18, 02:10](970 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:18, 02:03](963 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:31, 06:07](1276 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [09:33, 06:30](968 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [06:28, 04:07](1184 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [11:28, 08:17](1347 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:11, 06:58] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [05:20, 02:12](995 MB) + +PASS -- COMPILE 's2swa_gnu' [20:11, 18:53] + +PASS -- COMPILE 's2s_gnu' [18:11, 16:14] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [18:02, 15:26](2719 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [08:11, 06:43] + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:11, 16:16] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [45:01, 41:58](2884 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [06:11, 04:57] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [17:49, 15:47](3023 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [18:11, 17:08] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:16, 02:24](771 MB) SYNOPSIS: -Starting Date/Time: 20241106 10:21:24 -Ending Date/Time: 20241106 15:37:46 -Total Time: 05h:16m:59s +Starting Date/Time: 20241112 22:08:11 +Ending Date/Time: 20241113 00:26:45 +Total Time: 02h:19m:28s Compiles Completed: 60/60 Tests Completed: 247/247 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 4946db1fcb..4a1cb806aa 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -7db9d8898499f1fde77381853ea17f3bfcadb7a7 +a455d4df714c11207a7361bd79013093ef6e6a31 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1947bad314f3c54594828964efc8938596965891 FV3 (remotes/origin/rrfsv1-to-ufs/dev2) + 49967251b83255bdac7ac2f9626d2714e8b83d07 FV3 (heads/develop) e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 0678f44c137957033d357b2168b40fb5ab029be6 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5338-g0678f44c) + 002a886eeb14979a6811f89e885d2968cbfd9b70 FV3/ccpp/physics (EP4-893-g002a886e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -27,7 +27,7 @@ Submodule hashes used in testing: 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) + 06c20998e59082e79529a8e728c7c3a43a050911 WW3 (6.07.1-385-g06c20998) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,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-20241031 -COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_833289 +BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20241112 +COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1054341 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [45:17, 43:35] ( 1 warnings 1380 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [29:27, 13:14](2002 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:17, 47:54] ( 1 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [57:22, 20:57](1888 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:24, 21:55](2044 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:09, 10:35](1139 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [00:11, 23:50](1855 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [50:17, 49:02] ( 1 warnings 1424 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [58:04, 20:18](1882 MB) - -PASS -- COMPILE 's2swa_intel' [46:17, 44:09] ( 1 warnings 1399 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [56:20, 16:38](2056 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [56:40, 16:45](2062 MB) -PASS -- TEST 'cpld_restart_p8_intel' [16:17, 09:03](1714 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [46:21, 16:36](2087 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [26:20, 09:05](1742 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [34:11, 15:50](2318 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [46:12, 16:52](2032 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [17:26, 13:52](1983 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [35:36, 16:48](2061 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [48:27, 09:13](2025 MB) - -PASS -- COMPILE 's2sw_intel' [43:17, 41:40] ( 1 warnings 1284 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [13:30, 09:16](1909 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [32:47, 14:13](1979 MB) - -PASS -- COMPILE 's2swa_debug_intel' [09:12, 06:11] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [04:40, 27:39](2092 MB) - -PASS -- COMPILE 's2sw_debug_intel' [22:13, 05:57] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [32:16, 11:23](1929 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [59:16, 30:35] ( 1010 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:23, 05:36](1965 MB) - -PASS -- COMPILE 's2s_intel' [14:21, 38:14] ( 1 warnings 1033 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [21:04, 10:18](3014 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [14:02, 03:02](3013 MB) -PASS -- TEST 'cpld_restart_c48_intel' [10:55, 01:48](2461 MB) - -PASS -- COMPILE 's2swa_faster_intel' [10:28, 32:45] ( 1 warnings 1615 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [32:02, 16:13](2063 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:28, 48:40] ( 1 warnings 1344 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [50:29, 31:26](1923 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [32:49, 17:24](1127 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [55:38, 40:04](1899 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [32:14, 05:11] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [49:17, 39:02](1933 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [47:19, 37:41] ( 1 warnings 1116 remarks ) -PASS -- TEST 'control_flake_intel' [07:44, 04:33](645 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [12:39, 04:25](1540 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:41, 04:40](1544 MB) -PASS -- TEST 'control_latlon_intel' [12:35, 04:26](1544 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:43, 04:39](1542 MB) -PASS -- TEST 'control_c48_intel' [26:37, 18:15](1700 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [18:51, 10:22](826 MB) -PASS -- TEST 'control_c192_intel' [18:51, 15:58](1684 MB) -PASS -- TEST 'control_c384_intel' [31:50, 23:07](1816 MB) -PASS -- TEST 'control_c384gdas_intel' [23:33, 13:25](1002 MB) -PASS -- TEST 'control_stochy_intel' [05:38, 02:20](606 MB) -PASS -- TEST 'control_stochy_restart_intel' [05:29, 01:18](431 MB) -PASS -- TEST 'control_lndp_intel' [05:39, 02:12](600 MB) -PASS -- TEST 'control_iovr4_intel' [06:47, 03:28](597 MB) -PASS -- TEST 'control_iovr5_intel' [06:42, 03:25](604 MB) -PASS -- TEST 'control_p8_intel' [08:57, 04:56](1830 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [14:10, 04:01](1843 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:50, 04:50](1836 MB) -PASS -- TEST 'control_restart_p8_intel' [42:30, 02:55](1055 MB) -PASS -- TEST 'control_noqr_p8_intel' [12:53, 04:51](1817 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [38:24, 02:50](1074 MB) -PASS -- TEST 'control_decomp_p8_intel' [08:48, 04:59](1822 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:51, 04:42](1915 MB) -PASS -- TEST 'control_p8_lndp_intel' [11:41, 08:47](1832 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [14:56, 05:13](1898 MB) -PASS -- TEST 'control_p8_mynn_intel' [12:55, 04:15](1849 MB) -PASS -- TEST 'merra2_thompson_intel' [07:48, 04:30](1837 MB) -PASS -- TEST 'regional_control_intel' [15:23, 07:14](1001 MB) -PASS -- TEST 'regional_restart_intel' [36:59, 04:04](996 MB) -PASS -- TEST 'regional_decomp_intel' [15:21, 07:32](1004 MB) -PASS -- TEST 'regional_2threads_intel' [07:22, 04:34](998 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [15:42, 07:09](1001 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [14:38, 07:04](1004 MB) - -PASS -- COMPILE 'rrfs_intel' [48:15, 34:56] ( 3 warnings 1092 remarks ) -PASS -- TEST 'rap_control_intel' [51:54, 10:17](983 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:10, 05:31](1166 MB) -PASS -- TEST 'rap_decomp_intel' [52:52, 10:54](977 MB) -PASS -- TEST 'rap_2threads_intel' [51:13, 09:53](1075 MB) -PASS -- TEST 'rap_restart_intel' [02:01, 05:44](979 MB) -PASS -- TEST 'rap_sfcdiff_intel' [51:01, 10:18](992 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [51:57, 10:49](985 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:04, 08:05](995 MB) -PASS -- TEST 'hrrr_control_intel' [46:55, 05:19](984 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [46:51, 05:29](975 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [45:55, 04:57](1047 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:46, 03:18](908 MB) -PASS -- TEST 'rrfs_v1beta_intel' [51:04, 10:11](980 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [53:42, 13:32](1930 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [50:44, 13:12](1928 MB) - -PASS -- COMPILE 'csawmg_intel' [45:17, 34:45] ( 1091 remarks ) -PASS -- TEST 'control_csawmg_intel' [35:00, 08:23](963 MB) -PASS -- TEST 'control_ras_intel' [31:34, 04:38](672 MB) - -PASS -- COMPILE 'wam_intel' [45:18, 35:36] ( 994 remarks ) -PASS -- TEST 'control_wam_intel' [34:26, 14:49](1618 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [45:16, 37:34] ( 1294 remarks ) -PASS -- TEST 'control_p8_faster_intel' [14:30, 04:07](1838 MB) -PASS -- TEST 'regional_control_faster_intel' [17:14, 06:57](1006 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [49:59, 08:33] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [01:57, 03:15](1567 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:02, 03:15](1570 MB) -PASS -- TEST 'control_stochy_debug_intel' [02:46, 04:19](785 MB) -PASS -- TEST 'control_lndp_debug_intel' [02:39, 03:54](796 MB) -PASS -- TEST 'control_csawmg_debug_intel' [03:54, 05:55](1089 MB) -PASS -- TEST 'control_ras_debug_intel' [02:38, 04:00](789 MB) -PASS -- TEST 'control_diag_debug_intel' [01:58, 03:52](1634 MB) -PASS -- TEST 'control_debug_p8_intel' [02:00, 03:47](1856 MB) -PASS -- TEST 'regional_debug_intel' [20:59, 22:29](1012 MB) -PASS -- TEST 'rap_control_debug_intel' [04:46, 06:39](1161 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:46, 06:31](1155 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:45, 06:34](1166 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:45, 06:37](1163 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:38, 06:38](1164 MB) -PASS -- TEST 'rap_diag_debug_intel' [03:55, 06:56](1242 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [02:34, 06:45](1168 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [02:36, 06:45](1165 MB) -PASS -- TEST 'rap_lndp_debug_intel' [01:37, 06:41](1170 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [59:37, 06:38](1167 MB) -PASS -- TEST 'rap_noah_debug_intel' [58:47, 06:29](1161 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [55:37, 06:39](1164 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [46:56, 10:36](1162 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [42:52, 06:38](1175 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [43:54, 08:01](1180 MB) -PASS -- TEST 'rap_flake_debug_intel' [42:52, 06:45](1170 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [47:15, 11:20](1171 MB) - -PASS -- COMPILE 'wam_debug_intel' [31:50, 05:13] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:14, 17:05](1642 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [45:53, 30:49] ( 3 warnings 1026 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [41:29, 05:45](1041 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [44:09, 08:52](894 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [40:02, 04:56](865 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [43:58, 08:43](946 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [38:56, 04:38](903 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [39:04, 05:17](853 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [45:27, 06:27](893 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [45:09, 02:38](838 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [52:47, 32:56] ( 3 warnings 1199 remarks ) -PASS -- TEST 'conus13km_control_intel' [10:16, 03:13](1095 MB) -PASS -- TEST 'conus13km_2threads_intel' [45:30, 01:28](1042 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [45:27, 01:42](1007 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [41:43, 32:13] ( 3 warnings 1046 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [14:14, 06:07](909 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:09, 05:38] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [39:50, 06:35](1041 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [39:50, 06:31](1034 MB) -PASS -- TEST 'conus13km_debug_intel' [51:22, 18:13](1147 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [51:12, 18:15](860 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [44:07, 10:53](1093 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [51:07, 18:16](1216 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:06, 05:44] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [39:43, 06:45](1081 MB) - -PASS -- COMPILE 'hafsw_intel' [16:53, 41:24] ( 1 warnings 1418 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:37, 07:21](703 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:48, 06:50](1069 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:53, 09:40](753 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:40, 16:43](787 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:00, 18:25](805 MB) -PASS -- TEST 'gnv1_nested_intel' [06:10, 06:54](1668 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:29, 36:36] ( 1265 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [20:58, 08:51](751 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [20:58, 08:48](735 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [42:26, 08:42] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [43:09, 03:48](1069 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [07:27, 02:08](1055 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [43:12, 03:42](931 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [43:07, 03:44](939 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [43:09, 03:47](932 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [43:11, 03:48](1062 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [43:09, 03:49](1078 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [43:10, 03:41](935 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [46:55, 07:52](893 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [46:51, 07:57](852 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [43:04, 03:48](1074 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [44:02, 05:29](2427 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [44:02, 05:32](2425 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [11:20, 03:51] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [52:04, 08:26](1032 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [15:23, 08:42] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [43:05, 03:48](1085 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [00:21, 02:11] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:45, 01:18](238 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:40, 01:07](267 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [40:10, 00:56](263 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [41:01, 36:52] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:52, 05:01](1917 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [20:02, 36:31] ( 1 warnings 1020 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [13:23, 10:37](1908 MB) - -PASS -- COMPILE 'atml_intel' [17:04, 38:39] ( 8 warnings 1157 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:18, 05:51](1856 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:20, 05:51](1860 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [22:08, 03:11](1068 MB) - -PASS -- COMPILE 'atml_debug_intel' [45:56, 06:49] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:22, 07:18](1878 MB) - -PASS -- COMPILE 'atmw_intel' [48:01, 37:23] ( 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:09, 02:25](1859 MB) - -PASS -- COMPILE 'atmaero_intel' [40:24, 36:23] ( 1098 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:27, 05:20](1929 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:27, 06:24](1707 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:17, 06:30](1709 MB) - -PASS -- COMPILE 'atm_fbh_intel' [34:17, 31:28] ( 3 warnings 996 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [12:50, 15:22](1019 MB) +PASS -- COMPILE 's2swa_32bit_intel' [01:26, 43:11] ( 1 warnings 1388 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [32:55, 13:38](2027 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [06:26, 48:39] ( 1 warnings 1435 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [45:46, 24:28](1887 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [35:26, 26:19](2011 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [19:16, 10:01](1140 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [48:41, 27:51](1858 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [11:29, 53:32] ( 1 warnings 1432 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [43:28, 24:14](1881 MB) + +PASS -- COMPILE 's2swa_intel' [01:26, 43:52] ( 1 warnings 1407 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [28:49, 16:59](2068 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [37:01, 16:58](2069 MB) +PASS -- TEST 'cpld_restart_p8_intel' [12:31, 09:00](1707 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [36:48, 16:59](2073 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [32:33, 09:11](1732 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [28:43, 16:31](2331 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [36:47, 17:11](2042 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [25:55, 14:06](2017 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [37:03, 16:57](2060 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [28:45, 09:12](2016 MB) + +PASS -- COMPILE 's2sw_intel' [59:26, 41:24] ( 1 warnings 1292 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [01:32, 09:49](1908 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [28:00, 14:09](1985 MB) + +PASS -- COMPILE 's2swa_debug_intel' [57:19, 06:06] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [03:54, 27:37](2099 MB) + +PASS -- COMPILE 's2sw_debug_intel' [24:32, 05:58] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [19:33, 11:46](1921 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [56:38, 37:22] ( 1010 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [43:20, 05:31](1969 MB) + +PASS -- COMPILE 's2s_intel' [51:38, 37:30] ( 1 warnings 1033 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [17:49, 10:18](3020 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [29:54, 03:02](3010 MB) +PASS -- TEST 'cpld_restart_c48_intel' [09:53, 01:45](2466 MB) + +PASS -- COMPILE 's2swa_faster_intel' [47:48, 32:11] ( 1 warnings 1623 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [44:49, 16:24](2060 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:33, 46:15] ( 1 warnings 1352 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [52:17, 33:23](1922 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [34:21, 16:37](1140 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [47:19, 39:25](1909 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:11, 06:01] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [02:30, 38:34](1939 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [00:25, 37:37] ( 1 warnings 1116 remarks ) +PASS -- TEST 'control_flake_intel' [46:33, 04:43](651 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [45:51, 04:34](1544 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [45:57, 04:41](1546 MB) +PASS -- TEST 'control_latlon_intel' [45:50, 04:33](1535 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [45:58, 04:38](1529 MB) +PASS -- TEST 'control_c48_intel' [33:52, 18:08](1706 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [26:36, 10:14](825 MB) +PASS -- TEST 'control_c192_intel' [58:06, 16:06](1698 MB) +PASS -- TEST 'control_c384_intel' [06:06, 23:26](1817 MB) +PASS -- TEST 'control_c384gdas_intel' [56:53, 13:39](1008 MB) +PASS -- TEST 'control_stochy_intel' [43:34, 02:28](598 MB) +PASS -- TEST 'control_stochy_restart_intel' [18:30, 01:23](438 MB) +PASS -- TEST 'control_lndp_intel' [43:34, 02:22](602 MB) +PASS -- TEST 'control_iovr4_intel' [44:34, 03:35](598 MB) +PASS -- TEST 'control_iovr5_intel' [43:31, 03:35](599 MB) +PASS -- TEST 'control_p8_intel' [43:04, 05:00](1825 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [21:06, 03:54](1835 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [25:02, 04:45](1827 MB) +PASS -- TEST 'control_restart_p8_intel' [16:58, 02:42](1048 MB) +PASS -- TEST 'control_noqr_p8_intel' [19:55, 04:43](1818 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [18:57, 02:33](1072 MB) +PASS -- TEST 'control_decomp_p8_intel' [17:54, 04:53](1822 MB) +PASS -- TEST 'control_2threads_p8_intel' [15:53, 04:37](1910 MB) +PASS -- TEST 'control_p8_lndp_intel' [19:43, 08:37](1831 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [27:54, 05:19](1882 MB) +PASS -- TEST 'control_p8_mynn_intel' [26:53, 04:05](1844 MB) +PASS -- TEST 'merra2_thompson_intel' [25:51, 04:28](1841 MB) +PASS -- TEST 'regional_control_intel' [17:39, 07:15](1013 MB) +PASS -- TEST 'regional_restart_intel' [16:37, 03:51](1001 MB) +PASS -- TEST 'regional_decomp_intel' [13:39, 07:37](997 MB) +PASS -- TEST 'regional_2threads_intel' [20:38, 04:29](1004 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [11:43, 07:08](1006 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [12:34, 07:08](1007 MB) + +PASS -- COMPILE 'rrfs_intel' [36:17, 34:43] ( 3 warnings 1092 remarks ) +PASS -- TEST 'rap_control_intel' [41:56, 10:03](990 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [25:08, 05:55](1170 MB) +PASS -- TEST 'rap_decomp_intel' [42:53, 10:40](982 MB) +PASS -- TEST 'rap_2threads_intel' [41:56, 09:33](1076 MB) +PASS -- TEST 'rap_restart_intel' [20:49, 05:20](980 MB) +PASS -- TEST 'rap_sfcdiff_intel' [41:55, 10:01](983 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [42:56, 10:39](972 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [22:47, 07:40](992 MB) +PASS -- TEST 'hrrr_control_intel' [50:55, 05:26](985 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [50:55, 05:40](976 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [50:01, 05:03](1046 MB) +PASS -- TEST 'hrrr_control_restart_intel' [16:31, 02:53](919 MB) +PASS -- TEST 'rrfs_v1beta_intel' [38:05, 09:52](985 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [41:40, 13:20](1933 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [40:39, 12:51](1933 MB) + +PASS -- COMPILE 'csawmg_intel' [36:18, 34:40] ( 1091 remarks ) +PASS -- TEST 'control_csawmg_intel' [52:54, 08:26](964 MB) +PASS -- TEST 'control_ras_intel' [32:34, 04:21](671 MB) + +PASS -- COMPILE 'wam_intel' [42:18, 35:29] ( 994 remarks ) +PASS -- TEST 'control_wam_intel' [29:55, 14:27](1619 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [56:22, 37:28] ( 1294 remarks ) +PASS -- TEST 'control_p8_faster_intel' [19:53, 03:37](1831 MB) +PASS -- TEST 'regional_control_faster_intel' [22:37, 06:35](1007 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [53:21, 08:42] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [23:46, 02:51](1568 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [22:47, 02:43](1572 MB) +PASS -- TEST 'control_stochy_debug_intel' [24:26, 03:57](774 MB) +PASS -- TEST 'control_lndp_debug_intel' [14:26, 03:30](776 MB) +PASS -- TEST 'control_csawmg_debug_intel' [23:40, 05:32](1089 MB) +PASS -- TEST 'control_ras_debug_intel' [20:32, 03:34](786 MB) +PASS -- TEST 'control_diag_debug_intel' [19:45, 03:30](1631 MB) +PASS -- TEST 'control_debug_p8_intel' [19:45, 03:23](1849 MB) +PASS -- TEST 'regional_debug_intel' [37:43, 22:11](1044 MB) +PASS -- TEST 'rap_control_debug_intel' [21:26, 06:17](1164 MB) +PASS -- TEST 'hrrr_control_debug_intel' [21:34, 06:14](1158 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [18:26, 06:15](1165 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [16:26, 06:16](1163 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [15:27, 06:16](1164 MB) +PASS -- TEST 'rap_diag_debug_intel' [15:39, 06:32](1249 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [14:27, 06:22](1166 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [14:24, 06:21](1163 MB) +PASS -- TEST 'rap_lndp_debug_intel' [14:24, 06:17](1169 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [59:37, 06:32](1166 MB) +PASS -- TEST 'rap_noah_debug_intel' [59:36, 06:28](1162 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [59:34, 06:40](1185 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [03:38, 10:27](1164 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [59:35, 06:27](1167 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [58:35, 07:50](1165 MB) +PASS -- TEST 'rap_flake_debug_intel' [52:36, 06:07](1163 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [56:56, 11:06](1174 MB) + +PASS -- COMPILE 'wam_debug_intel' [47:20, 05:35] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [30:44, 16:37](1635 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [50:17, 30:54] ( 3 warnings 1026 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [51:14, 05:38](1042 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [53:55, 08:36](906 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [49:46, 04:44](866 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [53:50, 08:22](947 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [47:52, 04:27](898 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [47:50, 04:59](855 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [27:28, 06:12](896 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [27:07, 02:20](836 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [00:21, 32:18] ( 3 warnings 1199 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:29, 02:38](1098 MB) +PASS -- TEST 'conus13km_2threads_intel' [27:56, 01:11](1038 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [26:52, 01:27](1008 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [45:17, 31:44] ( 3 warnings 1046 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [56:29, 05:26](907 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [16:11, 05:27] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [48:34, 06:28](1040 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [48:36, 06:20](1035 MB) +PASS -- TEST 'conus13km_debug_intel' [00:08, 18:03](1152 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [58:59, 18:02](857 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [02:01, 10:15](1073 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:09, 17:33](1215 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [22:13, 05:12] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [02:42, 06:12](1084 MB) + +PASS -- COMPILE 'hafsw_intel' [47:17, 39:51] ( 1 warnings 1426 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [13:27, 07:09](700 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [12:36, 06:31](1071 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [39:26, 08:55](757 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [33:45, 15:38](788 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [25:51, 19:24](805 MB) +PASS -- TEST 'gnv1_nested_intel' [23:07, 05:54](1669 MB) + +PASS -- COMPILE 'hafs_all_intel' [34:36, 36:32] ( 1273 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:43, 08:27](752 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:48, 08:34](734 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [03:28, 08:20] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [31:49, 03:35](1073 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [06:27, 02:13](1045 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [29:48, 03:31](941 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [31:49, 03:32](933 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [29:49, 03:34](931 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [31:49, 03:36](1071 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [31:49, 03:37](1073 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [31:49, 03:28](943 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [30:40, 07:41](890 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [38:41, 07:37](851 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [31:46, 03:36](1085 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [27:48, 05:05](2414 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [33:49, 05:07](2370 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:38, 03:23] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [33:28, 08:13](1014 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [58:50, 08:17] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [27:28, 03:37](1071 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [31:34, 01:53] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [27:39, 01:06](236 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [26:35, 01:00](262 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:31, 00:36](261 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [04:31, 36:41] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [02:44, 04:54](1874 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [39:25, 35:58] ( 1 warnings 1020 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:31, 10:32](1903 MB) + +PASS -- COMPILE 'atml_intel' [03:23, 37:28] ( 8 warnings 1157 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [58:33, 05:40](1859 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [58:32, 05:38](1826 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [18:57, 03:02](1066 MB) + +PASS -- COMPILE 'atml_debug_intel' [32:14, 06:19] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:16, 07:11](1884 MB) + +PASS -- COMPILE 'atmw_intel' [59:21, 37:53] ( 1268 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [52:18, 02:34](1856 MB) + +PASS -- COMPILE 'atmaero_intel' [40:17, 36:21] ( 1098 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [47:20, 05:18](1928 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [48:22, 06:23](1708 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [49:14, 06:29](1717 MB) + +PASS -- COMPILE 'atm_fbh_intel' [28:34, 31:28] ( 3 warnings 996 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [57:49, 15:12](1025 MB) SYNOPSIS: -Starting Date/Time: 20241106 18:55:04 -Ending Date/Time: 20241108 04:54:37 -Total Time: 10h:00m:42s +Starting Date/Time: 20241113 03:51:38 +Ending Date/Time: 20241113 23:21:05 +Total Time: 19h:30m:29s Compiles Completed: 37/37 Tests Completed: 165/165 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index c3b323b74b..3840ad427f 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -7db9d8898499f1fde77381853ea17f3bfcadb7a7 +8408059fed3c23317f09beae2012cd072cddcda5 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1947bad314f3c54594828964efc8938596965891 FV3 (remotes/origin/rrfsv1-to-ufs/dev2) + 49967251b83255bdac7ac2f9626d2714e8b83d07 FV3 (heads/develop) e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 0678f44c137957033d357b2168b40fb5ab029be6 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5338-g0678f44c) + 002a886eeb14979a6811f89e885d2968cbfd9b70 FV3/ccpp/physics (EP4-893-g002a886e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -27,7 +27,7 @@ Submodule hashes used in testing: 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) + 06c20998e59082e79529a8e728c7c3a43a050911 WW3 (6.07.1-385-g06c20998) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,297 +38,298 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241031 -COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_1638035 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241112 +COMPARISON DIRECTORY: /work/noaa/epic/nandoam/stmp/orion/stmp/nandoam/FV3_RT/rt_2264543 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [20:11, 18:26] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [29:28, 26:29](2076 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:11, 22:31] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [21:41, 18:11](1949 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:20, 18:53](2134 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:18, 09:03](1231 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:43, 20:22](1864 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:11, 21:12] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:42, 17:32](1951 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:11, 08:35] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [33:36, 30:23](1923 MB) - -PASS -- COMPILE 's2swa_intel' [18:11, 16:45] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [29:45, 26:26](2146 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [28:42, 26:05](2138 MB) -PASS -- TEST 'cpld_restart_p8_intel' [16:44, 14:09](1796 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [28:32, 26:04](2163 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [16:47, 13:57](1693 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [26:33, 23:49](2467 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [28:32, 25:52](2138 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [24:38, 22:05](2034 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [29:45, 26:19](2142 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [19:27, 16:07](2705 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:59, 08:24](2704 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [27:14, 19:27](3675 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:03, 11:03](3511 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:27, 08:03](2073 MB) - -PASS -- COMPILE 's2sw_intel' [17:11, 15:42] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [28:05, 25:45](1971 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:12, 11:56](2052 MB) - -PASS -- COMPILE 's2swa_debug_intel' [09:10, 08:00] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [25:25, 22:19](2171 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:10, 07:27] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:10, 09:31](2002 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:11, 14:19] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:11, 05:09](2029 MB) - -PASS -- COMPILE 's2s_intel' [17:11, 15:39] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:57, 08:37](3029 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:56, 03:07](3015 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:53, 02:01](2466 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:11, 17:32] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [30:32, 27:42](2142 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 19:47] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [31:03, 28:45](2012 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:22, 14:40](1261 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:10, 32:50](1931 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:11, 07:44] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [37:08, 34:24](1953 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:11, 13:25] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:25, 03:41](686 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:45, 03:32](1570 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:49, 03:34](1580 MB) -PASS -- TEST 'control_latlon_intel' [05:39, 03:31](1566 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:49, 03:34](1575 MB) -PASS -- TEST 'control_c48_intel' [16:46, 14:41](1699 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:32, 08:14](840 MB) -PASS -- TEST 'control_c192_intel' [15:52, 13:11](1734 MB) -PASS -- TEST 'control_c384_intel' [20:02, 16:38](1984 MB) -PASS -- TEST 'control_c384gdas_intel' [13:37, 09:58](1335 MB) -PASS -- TEST 'control_stochy_intel' [03:24, 01:49](646 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:35, 01:04](473 MB) -PASS -- TEST 'control_lndp_intel' [03:26, 01:42](639 MB) -PASS -- TEST 'control_iovr4_intel' [04:26, 02:49](633 MB) -PASS -- TEST 'control_iovr5_intel' [04:29, 02:45](638 MB) -PASS -- TEST 'control_p8_intel' [07:04, 04:14](1869 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:11, 03:36](1875 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:30, 04:08](1867 MB) -PASS -- TEST 'control_restart_p8_intel' [05:17, 02:20](1090 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:19, 04:07](1852 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:19, 02:19](1106 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:13, 04:12](1860 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:58, 04:26](1945 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:40, 07:19](1862 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:35, 04:57](1932 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:27, 03:33](1884 MB) -PASS -- TEST 'merra2_thompson_intel' [06:39, 03:51](1883 MB) -PASS -- TEST 'regional_control_intel' [08:35, 06:40](1075 MB) -PASS -- TEST 'regional_restart_intel' [05:35, 03:35](1076 MB) -PASS -- TEST 'regional_decomp_intel' [08:36, 06:53](1067 MB) -PASS -- TEST 'regional_2threads_intel' [06:45, 04:43](1072 MB) -PASS -- TEST 'regional_noquilt_intel' [08:44, 06:31](1380 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:44, 06:32](1074 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:44, 06:32](1076 MB) -PASS -- TEST 'regional_wofs_intel' [09:40, 07:59](1893 MB) - -PASS -- COMPILE 'rrfs_intel' [12:11, 10:40] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:59, 08:30](1039 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:55, 05:15](1255 MB) -PASS -- TEST 'rap_decomp_intel' [10:58, 08:46](1012 MB) -PASS -- TEST 'rap_2threads_intel' [10:58, 08:41](1156 MB) -PASS -- TEST 'rap_restart_intel' [07:35, 04:25](1027 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:59, 08:14](1037 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:59, 08:42](1019 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:33, 06:17](1071 MB) -PASS -- TEST 'hrrr_control_intel' [06:56, 04:22](1013 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:56, 04:26](1011 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:56, 04:13](1088 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:40, 02:17](943 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:18, 08:22](1044 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:25, 09:55](1974 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:27, 09:32](2004 MB) - -PASS -- COMPILE 'csawmg_intel' [13:11, 12:06] -PASS -- TEST 'control_csawmg_intel' [08:42, 06:41](1012 MB) -PASS -- TEST 'control_ras_intel' [05:24, 03:30](720 MB) - -PASS -- COMPILE 'wam_intel' [14:11, 12:41] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:44, 12:49](1643 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:10, 13:14] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:22, 03:20](1877 MB) -PASS -- TEST 'regional_control_faster_intel' [08:41, 06:15](1061 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:10, 09:57] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:43, 02:15](1597 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:43, 02:16](1600 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:20, 03:08](805 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:21, 02:49](818 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:35, 04:24](1116 MB) -PASS -- TEST 'control_ras_debug_intel' [04:23, 02:50](818 MB) -PASS -- TEST 'control_diag_debug_intel' [04:48, 02:48](1666 MB) -PASS -- TEST 'control_debug_p8_intel' [04:44, 02:47](1897 MB) -PASS -- TEST 'regional_debug_intel' [19:45, 17:28](1085 MB) -PASS -- TEST 'rap_control_debug_intel' [06:25, 04:55](1195 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:27, 04:57](1195 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:25, 04:59](1205 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 04:58](1203 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:25, 04:58](1206 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:32, 05:16](1285 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 05:06](1201 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:21, 05:06](1191 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:23, 05:04](1205 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 05:03](1203 MB) -PASS -- TEST 'rap_noah_debug_intel' [08:06, 04:53](1194 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:05, 04:57](1201 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:21, 08:08](1196 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:28, 04:58](1192 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:29, 06:00](1206 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:23, 04:52](1196 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:20, 08:32](1207 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:11, 06:02] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:42, 13:34](1683 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:11, 13:52] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:59, 04:59](1118 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:13, 07:12](992 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:36, 03:49](918 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:51, 07:27](1064 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:07, 03:44](935 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:40, 03:57](893 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:27, 05:24](969 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:27, 02:08](874 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:10, 12:08] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:54, 02:35](1168 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:55, 01:12](1115 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:51, 01:29](1062 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:10, 12:41] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:40, 04:35](968 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:10, 06:28] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:22, 05:06](1081 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:23, 04:46](1077 MB) -PASS -- TEST 'conus13km_debug_intel' [15:48, 13:54](1224 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:06, 13:47](937 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:54, 08:12](1164 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:54, 14:00](1292 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:10, 05:58] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:24, 05:05](1128 MB) - -PASS -- COMPILE 'hafsw_intel' [18:10, 16:22] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:17, 06:02](737 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:26, 06:27](1111 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:24, 07:31](806 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [27:11, 24:50](846 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [31:18, 28:44](868 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:58, 07:07](495 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:28, 08:31](499 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:54, 03:29](376 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:37, 09:51](469 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:55, 04:47](520 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:52, 04:34](524 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:54, 05:41](568 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:28, 01:35](403 MB) -PASS -- TEST 'gnv1_nested_intel' [08:07, 04:18](1715 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:10, 07:07] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:55, 12:59](580 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:10, 14:27] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:59, 12:39](658 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:09, 12:50](717 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:10, 15:04] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:32, 08:42](712 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:10, 13:49] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:18, 07:31](789 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:11, 07:35](789 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:54, 16:23](1200 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:11, 07:46] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 03:00](1151 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:58](1099 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:31](1014 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:54](1010 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:54](1018 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:16, 02:59](1151 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 02:57](1154 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:54](1024 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:05, 06:35](1028 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:00, 06:31](997 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:57](1156 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:18, 03:36](2373 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 04:21](2447 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:10, 05:57] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:31](1081 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [13:11, 11:32] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:58](1153 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:24] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:34, 01:02](255 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:55](324 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:29, 00:37](319 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:40] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:29, 00:37](564 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:36, 00:21](445 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:11, 13:21] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:11, 04:11](1966 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:10, 12:56] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [10:58, 08:38](1970 MB) - -PASS -- COMPILE 'atml_intel' [17:11, 15:39] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:32, 04:50](1863 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:25, 04:55](1864 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:53, 02:48](1074 MB) - -PASS -- COMPILE 'atml_debug_intel' [09:10, 07:18] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:28, 05:54](1885 MB) - -PASS -- COMPILE 'atmw_intel' [15:11, 13:35] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:14, 02:14](1897 MB) - -PASS -- COMPILE 'atmaero_intel' [14:10, 13:05] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:13, 04:41](1969 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:11, 05:23](1747 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:01, 05:29](1768 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:10, 06:05] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [24:59, 21:12](4494 MB) - -PASS -- COMPILE 'atm_fbh_intel' [13:10, 11:49] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:28, 14:07](1074 MB) - -PASS -- COMPILE 'hafsw_intelllvm' [09:11, 08:04] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [10:05, 07:57](576 MB) - -PASS -- COMPILE 'hafsw_debug_intelllvm' [06:10, 04:58] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [21:58, 19:39](561 MB) +PASS -- COMPILE 's2swa_32bit_intel' [19:11, 17:51] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [42:51, 28:06](2080 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 20:27] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [34:56, 23:23](1921 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [46:26, 23:33](2151 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [31:08, 09:06](1212 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [39:01, 27:41](1853 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:11, 21:22] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [31:47, 22:04](1943 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:11, 09:00] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [37:56, 30:42](1930 MB) + +PASS -- COMPILE 's2swa_intel' [19:11, 17:49] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [42:40, 28:20](2147 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [42:52, 28:30](2132 MB) +PASS -- TEST 'cpld_restart_p8_intel' [54:46, 16:06](1786 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [42:40, 28:32](2155 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [53:56, 15:58](1671 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [36:38, 27:25](2442 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [42:40, 28:16](2129 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [32:37, 23:56](2035 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [43:55, 29:37](2112 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [27:37, 18:23](2678 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [44:04, 10:17](2673 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [38:36, 20:45](3671 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [38:34, 11:12](3491 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [16:34, 08:02](2071 MB) + +PASS -- COMPILE 's2sw_intel' [18:11, 16:02] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [37:09, 27:19](1970 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [21:18, 11:48](2056 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:11, 08:48] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [30:52, 22:37](2176 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:11, 08:28] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [17:12, 10:17](1999 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:11, 14:39] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:21, 04:47](2029 MB) + +PASS -- COMPILE 's2s_intel' [17:11, 15:57] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [20:02, 09:35](3015 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [12:59, 02:49](3021 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:04, 01:52](2462 MB) + +PASS -- COMPILE 's2swa_faster_intel' [20:12, 18:28] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [31:35, 28:36](2139 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:11, 20:35] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [38:34, 32:03](2011 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [44:30, 15:35](1239 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [51:13, 34:08](1928 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:11, 07:31] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [45:48, 36:14](1964 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [20:11, 14:33] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [10:26, 03:45](687 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [36:46, 09:22](1564 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [16:13, 03:41](1574 MB) +PASS -- TEST 'control_latlon_intel' [32:38, 06:32](1580 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [43:47, 04:15](1565 MB) +PASS -- TEST 'control_c48_intel' [21:54, 14:46](1706 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [46:42, 08:43](815 MB) +PASS -- TEST 'control_c192_intel' [50:55, 13:14](1740 MB) +PASS -- TEST 'control_c384_intel' [51:51, 16:46](1979 MB) +PASS -- TEST 'control_c384gdas_intel' [44:31, 09:59](1329 MB) +PASS -- TEST 'control_stochy_intel' [34:35, 02:05](623 MB) +PASS -- TEST 'control_stochy_restart_intel' [23:54, 01:04](477 MB) +PASS -- TEST 'control_lndp_intel' [31:29, 01:49](646 MB) +PASS -- TEST 'control_iovr4_intel' [31:30, 02:49](636 MB) +PASS -- TEST 'control_iovr5_intel' [30:32, 02:45](641 MB) +PASS -- TEST 'control_p8_intel' [32:06, 04:48](1847 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [30:22, 03:38](1874 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [29:25, 04:51](1856 MB) +PASS -- TEST 'control_restart_p8_intel' [49:17, 02:28](1095 MB) +PASS -- TEST 'control_noqr_p8_intel' [28:20, 04:05](1860 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [49:30, 02:21](1130 MB) +PASS -- TEST 'control_decomp_p8_intel' [28:14, 04:13](1858 MB) +PASS -- TEST 'control_2threads_p8_intel' [27:24, 04:33](1940 MB) +PASS -- TEST 'control_p8_lndp_intel' [29:50, 07:25](1867 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [48:29, 05:34](1918 MB) +PASS -- TEST 'control_p8_mynn_intel' [26:27, 03:39](1883 MB) +PASS -- TEST 'merra2_thompson_intel' [46:47, 03:53](1882 MB) +PASS -- TEST 'regional_control_intel' [27:43, 06:41](1074 MB) +PASS -- TEST 'regional_restart_intel' [07:36, 03:44](1063 MB) +PASS -- TEST 'regional_decomp_intel' [21:39, 06:56](1068 MB) +PASS -- TEST 'regional_2threads_intel' [18:59, 05:13](1071 MB) +PASS -- TEST 'regional_noquilt_intel' [11:41, 08:24](1364 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:43, 06:40](1072 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [14:35, 08:03](1061 MB) +PASS -- TEST 'regional_wofs_intel' [14:34, 07:52](1890 MB) + +PASS -- COMPILE 'rrfs_intel' [19:11, 14:00] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [56:24, 08:33](1049 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [20:16, 05:17](1242 MB) +PASS -- TEST 'rap_decomp_intel' [24:41, 08:54](1011 MB) +PASS -- TEST 'rap_2threads_intel' [21:21, 09:39](1134 MB) +PASS -- TEST 'rap_restart_intel' [26:53, 04:28](1034 MB) +PASS -- TEST 'rap_sfcdiff_intel' [19:36, 08:26](1047 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [19:28, 08:48](1015 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [51:12, 10:27](1048 MB) +PASS -- TEST 'hrrr_control_intel' [15:09, 04:47](1007 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [15:05, 04:52](1009 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [13:38, 04:17](1078 MB) +PASS -- TEST 'hrrr_control_restart_intel' [19:50, 02:24](942 MB) +PASS -- TEST 'rrfs_v1beta_intel' [18:43, 09:11](1019 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [18:39, 10:36](1958 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [16:41, 09:39](2015 MB) + +PASS -- COMPILE 'csawmg_intel' [14:11, 10:24] +PASS -- TEST 'control_csawmg_intel' [13:36, 07:56](992 MB) +PASS -- TEST 'control_ras_intel' [09:23, 04:11](695 MB) + +PASS -- COMPILE 'wam_intel' [13:11, 10:36] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [18:42, 13:23](1639 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [16:11, 13:03] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:33, 03:53](1859 MB) +PASS -- TEST 'regional_control_faster_intel' [09:41, 06:56](1076 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:11, 10:46] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [10:01, 02:23](1601 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:58, 02:19](1602 MB) +PASS -- TEST 'control_stochy_debug_intel' [09:39, 03:42](777 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:39, 02:52](812 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:48, 04:27](1116 MB) +PASS -- TEST 'control_ras_debug_intel' [04:39, 02:56](815 MB) +PASS -- TEST 'control_diag_debug_intel' [14:56, 03:23](1644 MB) +PASS -- TEST 'control_debug_p8_intel' [13:00, 02:58](1898 MB) +PASS -- TEST 'regional_debug_intel' [25:57, 19:35](1058 MB) +PASS -- TEST 'rap_control_debug_intel' [08:36, 05:02](1199 MB) +PASS -- TEST 'hrrr_control_debug_intel' [09:42, 04:52](1201 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:39, 04:55](1197 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [29:41, 05:03](1201 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [35:44, 05:48](1173 MB) +PASS -- TEST 'rap_diag_debug_intel' [34:55, 05:18](1277 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [26:40, 05:07](1202 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [22:39, 05:06](1196 MB) +PASS -- TEST 'rap_lndp_debug_intel' [22:40, 05:08](1201 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:33, 05:08](1203 MB) +PASS -- TEST 'rap_noah_debug_intel' [30:31, 05:10](1193 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [28:41, 05:41](1172 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [30:38, 08:14](1182 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [26:42, 04:52](1193 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [26:41, 06:03](1203 MB) +PASS -- TEST 'rap_flake_debug_intel' [30:40, 05:05](1201 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [28:45, 10:11](1170 MB) + +PASS -- COMPILE 'wam_debug_intel' [11:11, 07:09] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:38, 13:24](1671 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:10, 13:00] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [31:14, 05:30](1107 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [26:41, 07:14](995 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [24:02, 04:00](918 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [40:38, 07:32](1063 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [16:59, 04:11](918 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [16:45, 04:00](886 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [52:46, 05:30](961 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [40:52, 02:06](873 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:11, 12:54] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [14:26, 02:36](1160 MB) +PASS -- TEST 'conus13km_2threads_intel' [57:51, 01:15](1109 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [56:53, 01:46](1042 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [19:12, 13:45] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [16:16, 04:54](944 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:11, 07:23] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [15:55, 05:33](1045 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [14:56, 04:46](1077 MB) +PASS -- TEST 'conus13km_debug_intel' [20:18, 15:20](1166 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [18:23, 13:56](923 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [04:15, 09:11](1134 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [53:09, 13:57](1290 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:11, 07:07] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [40:59, 05:01](1128 MB) + +PASS -- COMPILE 'hafsw_intel' [19:11, 16:03] ( 1 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [39:41, 06:03](728 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [42:56, 06:34](1112 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [57:00, 07:48](814 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [01:46, 27:45](838 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [13:59, 34:47](874 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [45:29, 07:19](495 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [21:58, 08:37](502 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [20:14, 04:09](355 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [26:37, 10:53](465 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [19:08, 04:50](526 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [18:10, 05:13](509 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [17:15, 06:23](553 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [36:52, 01:38](398 MB) +PASS -- TEST 'gnv1_nested_intel' [52:32, 04:25](1715 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:10, 07:41] ( 1462 warnings 1490 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [25:12, 13:06](584 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:11, 12:53] ( 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [01:27, 15:47](633 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:27, 15:56](701 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [19:13, 13:12] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:43, 11:17](701 MB) + +PASS -- COMPILE 'hafs_all_intel' [19:11, 14:28] ( 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [05:21, 07:41](812 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:19, 08:45](768 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [12:08, 16:28](1198 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [11:10, 09:22] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [57:27, 02:59](1118 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [14:23, 02:04](1098 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [55:23, 03:01](1010 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [54:26, 02:54](1011 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [51:22, 02:55](1019 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [51:23, 03:02](1145 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [50:26, 03:12](1141 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [41:24, 04:24](1009 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [51:13, 08:35](1025 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [58:17, 06:33](1009 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [42:20, 02:58](1146 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [38:22, 04:24](2452 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [48:25, 04:51](2371 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:12, 04:53] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [50:24, 06:31](1077 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [11:12, 08:17] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [50:26, 03:02](1146 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:10, 02:15] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [45:38, 01:18](245 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [47:40, 00:59](318 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [14:30, 00:43](311 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [04:10, 02:16] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [44:35, 00:40](559 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [19:37, 00:19](446 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:11, 15:03] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [17:27, 04:16](1967 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [19:13, 15:57] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [56:15, 10:19](1957 MB) + +PASS -- COMPILE 'atml_intel' [17:12, 15:57] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [50:46, 05:09](1864 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [47:38, 05:10](1865 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [13:01, 02:46](1071 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:15, 06:41] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [46:38, 07:09](1856 MB) + +PASS -- COMPILE 'atmw_intel' [19:12, 13:45] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [24:31, 02:25](1893 MB) + +PASS -- COMPILE 'atmaero_intel' [19:11, 14:43] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [41:21, 04:47](1972 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [32:33, 05:29](1745 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [36:14, 05:33](1757 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [10:18, 06:58] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [52:18, 21:20](4491 MB) + +PASS -- COMPILE 'atm_fbh_intel' [17:10, 14:17] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [26:30, 14:10](1072 MB) + +PASS -- COMPILE 'hafsw_intelllvm' [13:12, 10:46] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [38:17, 08:04](570 MB) + +PASS -- COMPILE 'hafsw_debug_intelllvm' [13:11, 06:58] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [50:19, 19:46](563 MB) SYNOPSIS: -Starting Date/Time: 20241106 11:32:35 -Ending Date/Time: 20241106 13:20:15 -Total Time: 01h:48m:16s +Starting Date/Time: 20241113 16:16:32 +Ending Date/Time: 20241114 03:19:37 +Total Time: 11h:04m:43s Compiles Completed: 45/45 Tests Completed: 190/190 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 0d4df4fbb0..5cb7a8155e 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -50c915d559ecbbc39d288ac9da24860f225597f1 +becb1015decd0062338245cee07a4186c5b8f376 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 99091f9742670bdebd84bd13f17b9115457d64dd FV3 (heads/develop-13-g99091f9) - 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) + 49967251b83255bdac7ac2f9626d2714e8b83d07 FV3 (remotes/origin/HEAD) + e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - f3eeb3442775b7239d98e3d09acc6d4f1d42233e FV3/ccpp/physics (EP4-889-gf3eeb344) + 002a886eeb14979a6811f89e885d2968cbfd9b70 FV3/ccpp/physics (EP4-893-g002a886e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -27,7 +27,7 @@ Submodule hashes used in testing: 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) + 06c20998e59082e79529a8e728c7c3a43a050911 WW3 (6.07.1-385-g06c20998) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,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-20241031 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116313 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241112 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3974207 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:30, 12:14] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [22:51, 02:43](3084 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:28, 12:06] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:53, 03:20](1814 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [01:24, 03:19](1814 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [01:24, 02:56](978 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:54, 02:52](1789 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:30, 11:59] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [23:51, 02:07](1808 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:22, 05:16] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [30:00, 03:06](1840 MB) - -PASS -- COMPILE 's2swa_intel' [13:30, 11:54] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [23:51, 02:29](3117 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [23:51, 02:53](3119 MB) -PASS -- TEST 'cpld_restart_p8_intel' [04:01, 02:12](3043 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [23:51, 02:29](3134 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [04:01, 02:08](3054 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [23:51, 02:48](3357 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [23:51, 02:43](3115 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [23:52, 02:05](3056 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [23:51, 02:49](3118 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [24:00, 05:15](4108 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [54:50, 05:26](4254 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [23:51, 02:34](3097 MB) - -PASS -- COMPILE 's2sw_intel' [12:27, 10:46] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [24:54, 02:08](1821 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [24:54, 02:48](1877 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:28, 10:16] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [24:53, 02:46](1877 MB) - -PASS -- COMPILE 's2s_intel' [12:28, 10:15] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [24:52, 01:59](2859 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [24:52, 01:42](2864 MB) -PASS -- TEST 'cpld_restart_c48_intel' [19:51, 01:29](2289 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:33, 15:15] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [19:48, 02:12](3120 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:30, 11:41] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:50, 02:53](1825 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [51:43, 02:23](998 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [50:41, 02:11](1794 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:25, 05:17] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:35, 02:08](1848 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:34, 09:31] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [10:08, 02:26](568 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [08:47, 01:47](1465 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:24, 01:57](1475 MB) -PASS -- TEST 'control_latlon_intel' [07:08, 02:00](1465 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:01, 02:03](1468 MB) -PASS -- TEST 'control_c48_intel' [06:52, 02:23](1563 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:47, 01:37](690 MB) -PASS -- TEST 'control_c192_intel' [06:48, 02:00](1583 MB) -PASS -- TEST 'control_c384_intel' [06:44, 03:09](1882 MB) -PASS -- TEST 'control_c384gdas_intel' [05:34, 03:44](1071 MB) -PASS -- TEST 'control_stochy_intel' [04:57, 01:21](521 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:21, 02:10](330 MB) -PASS -- TEST 'control_lndp_intel' [04:07, 01:26](521 MB) -PASS -- TEST 'control_iovr4_intel' [04:07, 01:34](517 MB) -PASS -- TEST 'control_iovr5_intel' [04:07, 01:37](518 MB) -PASS -- TEST 'control_p8_intel' [04:01, 02:08](1756 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:54, 02:56](1756 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:54, 02:19](1751 MB) -PASS -- TEST 'control_restart_p8_intel' [57:37, 02:39](906 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:45, 02:01](1762 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [57:37, 02:53](918 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:45, 01:57](1755 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:28, 02:40](1837 MB) -PASS -- TEST 'control_p8_lndp_intel' [03:20, 01:51](1753 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [02:56, 03:00](1806 MB) -PASS -- TEST 'control_p8_mynn_intel' [02:32, 02:55](1762 MB) -PASS -- TEST 'merra2_thompson_intel' [01:11, 02:42](1756 MB) -PASS -- TEST 'regional_control_intel' [01:06, 02:09](828 MB) -PASS -- TEST 'regional_restart_intel' [53:14, 01:56](835 MB) -PASS -- TEST 'regional_decomp_intel' [00:33, 02:01](835 MB) -PASS -- TEST 'regional_2threads_intel' [59:31, 02:13](891 MB) -PASS -- TEST 'regional_noquilt_intel' [59:29, 02:00](1167 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [59:22, 01:42](843 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [59:04, 01:37](837 MB) -PASS -- TEST 'regional_wofs_intel' [57:43, 01:29](1571 MB) - -PASS -- COMPILE 'rrfs_intel' [10:32, 08:53] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [14:19, 02:21](901 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [14:20, 01:50](1049 MB) -PASS -- TEST 'rap_decomp_intel' [14:19, 02:15](902 MB) -PASS -- TEST 'rap_2threads_intel' [14:19, 02:54](992 MB) -PASS -- TEST 'rap_restart_intel' [57:37, 02:29](773 MB) -PASS -- TEST 'rap_sfcdiff_intel' [14:19, 02:50](902 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:19, 02:21](900 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [57:24, 02:42](773 MB) -PASS -- TEST 'hrrr_control_intel' [14:19, 03:04](900 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [14:19, 02:57](899 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [13:38, 02:54](974 MB) -PASS -- TEST 'hrrr_control_restart_intel' [57:21, 02:04](727 MB) -PASS -- TEST 'rrfs_v1beta_intel' [57:14, 02:58](894 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [56:43, 02:14](1857 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [56:09, 02:05](1848 MB) - -PASS -- COMPILE 'csawmg_intel' [10:32, 08:17] -PASS -- TEST 'control_csawmg_intel' [14:20, 01:21](858 MB) -PASS -- TEST 'control_ras_intel' [14:20, 01:41](555 MB) - -PASS -- COMPILE 'wam_intel' [12:25, 08:21] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [56:03, 02:18](1539 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:26, 08:29] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [55:24, 02:29](1755 MB) -PASS -- TEST 'regional_control_faster_intel' [54:27, 01:43](842 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:25, 07:32] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [54:26, 02:02](1488 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [53:38, 02:20](1502 MB) -PASS -- TEST 'control_stochy_debug_intel' [53:07, 02:15](698 MB) -PASS -- TEST 'control_lndp_debug_intel' [53:07, 01:30](694 MB) -PASS -- TEST 'control_csawmg_debug_intel' [52:40, 02:11](1002 MB) -PASS -- TEST 'control_ras_debug_intel' [52:30, 01:31](704 MB) -PASS -- TEST 'control_diag_debug_intel' [51:45, 02:14](1558 MB) -PASS -- TEST 'control_debug_p8_intel' [49:38, 01:53](1785 MB) -PASS -- TEST 'regional_debug_intel' [49:34, 01:54](880 MB) -PASS -- TEST 'rap_control_debug_intel' [49:29, 02:17](1078 MB) -PASS -- TEST 'hrrr_control_debug_intel' [49:15, 01:40](1074 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [49:03, 01:45](1075 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [49:03, 01:41](1077 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [48:23, 02:12](1076 MB) -PASS -- TEST 'rap_diag_debug_intel' [48:14, 02:18](1161 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [47:55, 01:22](1081 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [47:49, 02:15](1077 MB) -PASS -- TEST 'rap_lndp_debug_intel' [45:47, 01:35](1080 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [45:42, 01:42](1080 MB) -PASS -- TEST 'rap_noah_debug_intel' [45:37, 01:47](1071 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [44:25, 01:51](1080 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [43:38, 01:56](1073 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [43:30, 01:27](1073 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [43:27, 01:24](1074 MB) -PASS -- TEST 'rap_flake_debug_intel' [43:25, 01:21](1078 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [42:57, 02:49](1082 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:21, 04:49] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:32, 02:14](1581 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:25, 08:09] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [42:27, 01:57](911 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [42:24, 02:21](781 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [41:41, 03:04](782 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [40:55, 02:12](841 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [40:37, 02:42](833 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [40:19, 02:20](776 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [32:03, 02:44](674 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [33:54, 01:56](660 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:25, 08:20] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [39:57, 01:29](987 MB) -PASS -- TEST 'conus13km_2threads_intel' [35:06, 02:08](990 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [34:54, 02:17](859 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:23, 08:17] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [39:53, 02:17](809 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:56] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [38:31, 01:28](951 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [38:22, 01:47](951 MB) -PASS -- TEST 'conus13km_debug_intel' [38:21, 02:20](1036 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [38:15, 02:03](710 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [37:54, 01:27](1039 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [37:44, 01:39](1104 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:33] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [37:24, 01:50](985 MB) - -PASS -- COMPILE 'hafsw_intel' [11:25, 10:05] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [37:20, 02:46](598 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [37:19, 01:44](943 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [37:14, 02:41](647 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [37:08, 03:18](671 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [36:56, 02:58](694 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [34:08, 02:29](395 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [33:59, 03:17](439 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [33:56, 02:02](407 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [33:59, 03:12](362 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [33:52, 02:06](403 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [33:04, 02:34](400 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [32:51, 02:12](471 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [31:54, 01:52](315 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:21, 05:20] ( 1447 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [31:04, 02:08](526 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:28, 09:47] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [30:49, 02:27](506 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [30:46, 02:19](700 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:30, 09:57] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [30:18, 02:47](703 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:30, 09:22] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [30:04, 02:59](643 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [29:48, 02:56](613 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [29:20, 01:31](878 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:29, 10:08] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [28:22, 02:12](1825 MB) - -PASS -- COMPILE 'atml_intel' [11:28, 09:45] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [08:28, 05:40] ( 866 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [10:26, 08:41] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [28:08, 02:52](3010 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [27:37, 02:09](2892 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [27:28, 02:18](2907 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:27, 04:28] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [27:19, 02:14](4381 MB) +PASS -- COMPILE 's2swa_32bit_intel' [23:38, 21:35] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [48:05, 03:37](3192 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:40, 21:38] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [48:02, 03:55](1909 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:38, 04:00](1938 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [27:14, 04:02](1077 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [48:03, 03:28](1886 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:38, 21:41] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [48:05, 02:08](1910 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:32, 15:59] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [54:11, 03:18](1952 MB) + +PASS -- COMPILE 's2swa_intel' [23:40, 21:34] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [48:02, 02:52](3227 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [48:02, 03:21](3224 MB) +PASS -- TEST 'cpld_restart_p8_intel' [30:09, 03:11](3153 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [48:02, 02:44](3243 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [30:08, 02:30](3171 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [48:02, 03:11](3464 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [48:02, 03:08](3223 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [48:03, 02:51](3165 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [48:02, 03:23](3227 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [48:11, 06:42](4210 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:59, 06:34](4367 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [48:02, 03:00](3198 MB) + +PASS -- COMPILE 's2sw_intel' [22:37, 20:35] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [49:06, 02:54](1919 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [49:06, 03:24](1979 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [20:38, 18:47] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [51:05, 02:55](1985 MB) + +PASS -- COMPILE 's2s_intel' [20:37, 19:19] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [51:04, 02:56](2882 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [51:04, 02:47](2885 MB) +PASS -- TEST 'cpld_restart_c48_intel' [45:30, 01:50](2300 MB) + +PASS -- COMPILE 's2swa_faster_intel' [24:42, 22:49] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [47:01, 02:51](3230 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:40, 20:33] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [49:03, 02:23](1920 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [19:55, 02:53](1093 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:27, 02:52](1899 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:21, 05:15] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [46:50, 02:13](1968 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:27, 09:31] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [37:27, 01:29](662 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [35:59, 01:51](1562 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [33:08, 02:16](1565 MB) +PASS -- TEST 'control_latlon_intel' [33:08, 01:53](1565 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [33:03, 02:03](1566 MB) +PASS -- TEST 'control_c48_intel' [32:51, 02:08](1586 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [32:34, 01:47](707 MB) +PASS -- TEST 'control_c192_intel' [32:18, 01:36](1691 MB) +PASS -- TEST 'control_c384_intel' [31:58, 03:08](1971 MB) +PASS -- TEST 'control_c384gdas_intel' [30:57, 04:02](1171 MB) +PASS -- TEST 'control_stochy_intel' [30:51, 01:57](620 MB) +PASS -- TEST 'control_stochy_restart_intel' [26:14, 01:38](429 MB) +PASS -- TEST 'control_lndp_intel' [30:09, 01:22](622 MB) +PASS -- TEST 'control_iovr4_intel' [30:06, 01:36](612 MB) +PASS -- TEST 'control_iovr5_intel' [30:03, 01:34](617 MB) +PASS -- TEST 'control_p8_intel' [30:03, 02:56](1853 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [29:48, 03:05](1864 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [29:41, 02:49](1852 MB) +PASS -- TEST 'control_restart_p8_intel' [22:41, 03:15](1008 MB) +PASS -- TEST 'control_noqr_p8_intel' [29:39, 02:31](1846 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [22:41, 03:09](1015 MB) +PASS -- TEST 'control_decomp_p8_intel' [29:17, 03:40](1848 MB) +PASS -- TEST 'control_2threads_p8_intel' [29:17, 02:21](1949 MB) +PASS -- TEST 'control_p8_lndp_intel' [29:09, 01:44](1864 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [29:07, 03:32](1912 MB) +PASS -- TEST 'control_p8_mynn_intel' [28:34, 03:27](1858 MB) +PASS -- TEST 'merra2_thompson_intel' [27:55, 03:48](1862 MB) +PASS -- TEST 'regional_control_intel' [26:57, 02:10](859 MB) +PASS -- TEST 'regional_restart_intel' [17:59, 01:16](860 MB) +PASS -- TEST 'regional_decomp_intel' [26:04, 01:14](867 MB) +PASS -- TEST 'regional_2threads_intel' [25:36, 01:55](984 MB) +PASS -- TEST 'regional_noquilt_intel' [25:32, 01:34](1190 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [25:29, 02:05](859 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [25:28, 01:31](858 MB) +PASS -- TEST 'regional_wofs_intel' [24:35, 01:32](1588 MB) + +PASS -- COMPILE 'rrfs_intel' [10:26, 08:50] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [40:38, 02:29](1008 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [40:39, 02:30](1138 MB) +PASS -- TEST 'rap_decomp_intel' [40:38, 02:28](999 MB) +PASS -- TEST 'rap_2threads_intel' [40:38, 03:22](1081 MB) +PASS -- TEST 'rap_restart_intel' [22:42, 03:20](878 MB) +PASS -- TEST 'rap_sfcdiff_intel' [40:38, 03:43](1000 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [40:38, 03:20](998 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [22:41, 03:09](878 MB) +PASS -- TEST 'hrrr_control_intel' [40:38, 03:15](998 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [40:38, 03:14](994 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [40:39, 03:34](1071 MB) +PASS -- TEST 'hrrr_control_restart_intel' [22:31, 01:37](828 MB) +PASS -- TEST 'rrfs_v1beta_intel' [40:38, 03:30](997 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [40:38, 02:21](1956 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [22:25, 01:56](1943 MB) + +PASS -- COMPILE 'csawmg_intel' [09:23, 08:05] +PASS -- TEST 'control_csawmg_intel' [21:46, 01:47](954 MB) +PASS -- TEST 'control_ras_intel' [21:16, 02:15](655 MB) + +PASS -- COMPILE 'wam_intel' [21:42, 20:20] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [20:56, 01:50](1650 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [16:31, 14:28] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [20:38, 03:35](1853 MB) +PASS -- TEST 'regional_control_faster_intel' [19:57, 01:56](848 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [15:37, 13:50] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [19:07, 01:41](1610 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [18:41, 02:08](1604 MB) +PASS -- TEST 'control_stochy_debug_intel' [18:40, 01:48](810 MB) +PASS -- TEST 'control_lndp_debug_intel' [18:15, 01:28](810 MB) +PASS -- TEST 'control_csawmg_debug_intel' [17:57, 02:23](1111 MB) +PASS -- TEST 'control_ras_debug_intel' [17:56, 01:37](814 MB) +PASS -- TEST 'control_diag_debug_intel' [17:49, 02:13](1667 MB) +PASS -- TEST 'control_debug_p8_intel' [17:38, 01:55](1901 MB) +PASS -- TEST 'regional_debug_intel' [17:35, 01:41](926 MB) +PASS -- TEST 'rap_control_debug_intel' [17:30, 01:36](1190 MB) +PASS -- TEST 'hrrr_control_debug_intel' [16:20, 02:06](1182 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [16:20, 02:15](1190 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [16:18, 02:08](1185 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [15:39, 01:48](1196 MB) +PASS -- TEST 'rap_diag_debug_intel' [14:42, 01:36](1276 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [14:08, 02:19](1187 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [13:26, 01:55](1195 MB) +PASS -- TEST 'rap_lndp_debug_intel' [13:21, 01:23](1192 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [13:09, 01:42](1190 MB) +PASS -- TEST 'rap_noah_debug_intel' [12:59, 01:34](1193 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [12:45, 01:38](1187 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:39, 02:19](1187 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [12:33, 02:16](1186 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [12:21, 01:27](1189 MB) +PASS -- TEST 'rap_flake_debug_intel' [12:15, 01:38](1193 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:09, 03:53](1193 MB) + +PASS -- COMPILE 'wam_debug_intel' [12:28, 10:21] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [12:06, 01:58](1687 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:36, 14:01] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:59, 02:25](1013 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:47, 03:05](880 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [11:44, 04:43](874 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:43, 03:32](932 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:54, 04:21](932 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:51, 03:52](874 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [02:15, 03:36](783 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:18, 02:11](760 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:36, 14:01] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [09:42, 01:34](1075 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:28, 01:23](1061 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:58, 02:11](953 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:29, 14:10] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:39, 02:51](899 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:26, 10:42] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:37, 01:56](1067 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:37, 02:02](1063 MB) +PASS -- TEST 'conus13km_debug_intel' [06:56, 02:25](1148 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [06:53, 01:47](838 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [05:37, 01:40](1125 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [05:31, 02:13](1216 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:18, 04:17] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:26, 01:36](1093 MB) + +PASS -- COMPILE 'hafsw_intel' [25:39, 23:46] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [05:13, 02:42](686 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:57, 01:53](1034 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [04:49, 02:45](747 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [04:46, 02:40](769 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [04:43, 03:21](789 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [04:34, 02:50](465 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [03:45, 02:59](480 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:37, 02:27](379 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [02:49, 04:01](450 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [02:18, 02:28](497 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [02:08, 01:56](502 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [02:09, 02:41](563 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [00:28, 02:13](408 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [14:29, 12:18] ( 1444 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [00:06, 02:25](608 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:33, 17:53] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [00:02, 02:36](612 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [00:01, 02:06](787 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:25, 09:52] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [59:37, 02:12](783 MB) + +PASS -- COMPILE 'hafs_all_intel' [19:35, 17:30] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [58:59, 02:56](731 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [57:52, 03:03](709 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [57:38, 01:53](833 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:25, 09:38] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [57:11, 02:05](1916 MB) + +PASS -- COMPILE 'atml_intel' [23:41, 22:13] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [07:20, 05:19] ( 866 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [10:26, 08:27] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [56:23, 03:00](3119 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [56:15, 03:31](2996 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [55:49, 03:20](3008 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:20, 04:18] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [55:28, 02:05](4496 MB) SYNOPSIS: -Starting Date/Time: 20241101 21:22:09 -Ending Date/Time: 20241101 23:02:12 -Total Time: 01h:41m:04s +Starting Date/Time: 20241113 18:46:36 +Ending Date/Time: 20241113 20:32:39 +Total Time: 01h:47m:46s Compiles Completed: 33/33 Tests Completed: 156/156 diff --git a/tests/parm/ufs.configure.atm_lnd.IN b/tests/parm/ufs.configure.atm_lnd.IN index de2991fcac..4210c3bf0f 100644 --- a/tests/parm/ufs.configure.atm_lnd.IN +++ b/tests/parm/ufs.configure.atm_lnd.IN @@ -113,7 +113,6 @@ ALLCOMP_attributes:: stop_option = nhours stop_ymd = -999 read_restart = @[READRESTART] - mediator_present = true orb_eccen = 1.e36 orb_iyear = 2000 orb_iyear_align = 2000 diff --git a/tests/parm/ufs.configure.atmw.IN b/tests/parm/ufs.configure.atmw.IN index bd1c554ecc..3d9caa18e7 100644 --- a/tests/parm/ufs.configure.atmw.IN +++ b/tests/parm/ufs.configure.atmw.IN @@ -35,7 +35,15 @@ WAV_attributes:: Verbosity = 0 OverwriteSlice = false mesh_wav = @[MESH_WAV] - user_sets_restname = true + user_histname = @[WW3_user_histname] + use_historync = @[WW3_historync] + use_restartnc = @[WW3_restartnc] + restart_from_binary = @[WW3_restart_from_binary] + pio_typename = @[WW3_PIO_FORMAT] + pio_numiotasks = @[WW3_PIO_IOTASKS] + pio_stride = @[WW3_PIO_STRIDE] + pio_rearranger = @[WW3_PIO_REARR] + pio_root = @[WW3_PIO_ROOT] :: diff --git a/tests/parm/ufs.configure.hafs_atm_docn.IN b/tests/parm/ufs.configure.hafs_atm_docn.IN index c5d5304eb6..09e469b5b9 100644 --- a/tests/parm/ufs.configure.hafs_atm_docn.IN +++ b/tests/parm/ufs.configure.hafs_atm_docn.IN @@ -99,7 +99,6 @@ ALLCOMP_attributes:: orb_mode = fixed_year orb_mvelp = 1.e36 orb_obliq = 1.e36 - mediator_present = true stop_n = @[FHMAX] stop_option = nhours stop_ymd = -999 diff --git a/tests/parm/ufs.configure.hafs_atm_ocn.IN b/tests/parm/ufs.configure.hafs_atm_ocn.IN index 8b16fd5ef7..91dd787e69 100644 --- a/tests/parm/ufs.configure.hafs_atm_ocn.IN +++ b/tests/parm/ufs.configure.hafs_atm_ocn.IN @@ -128,7 +128,6 @@ ALLCOMP_attributes:: orb_mode = fixed_year orb_mvelp = 1.e36 orb_obliq = 1.e36 - mediator_present = true stop_n = @[FHMAX] stop_option = nhours stop_ymd = -999 diff --git a/tests/parm/ufs.configure.hafs_atm_ocn_wav.IN b/tests/parm/ufs.configure.hafs_atm_ocn_wav.IN index c9cc9d0fe2..9b089d556a 100644 --- a/tests/parm/ufs.configure.hafs_atm_ocn_wav.IN +++ b/tests/parm/ufs.configure.hafs_atm_ocn_wav.IN @@ -86,7 +86,15 @@ WAV_attributes:: OverwriteSlice = false merge_import = .true. mesh_wav = @[MESH_WAV] - user_sets_restname = true + user_histname = @[WW3_user_histname] + use_historync = @[WW3_historync] + use_restartnc = @[WW3_restartnc] + restart_from_binary = @[WW3_restart_from_binary] + pio_typename = @[WW3_PIO_FORMAT] + pio_numiotasks = @[WW3_PIO_IOTASKS] + pio_stride = @[WW3_PIO_STRIDE] + pio_rearranger = @[WW3_PIO_REARR] + pio_root = @[WW3_PIO_ROOT] :: # Run Sequence # @@ -141,7 +149,6 @@ ALLCOMP_attributes:: orb_mode = fixed_year orb_mvelp = 1.e36 orb_obliq = 1.e36 - mediator_present = true stop_n = @[FHMAX] stop_option = nhours stop_ymd = -999 diff --git a/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN b/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN index f1b2bd18ca..47f36bad1f 100644 --- a/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN +++ b/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN @@ -88,7 +88,15 @@ WAV_attributes:: OverwriteSlice = false merge_import = .false. mesh_wav = @[MESH_WAV] - user_sets_restname = true + user_histname = @[WW3_user_histname] + use_historync = @[WW3_historync] + use_restartnc = @[WW3_restartnc] + restart_from_binary = @[WW3_restart_from_binary] + pio_typename = @[WW3_PIO_FORMAT] + pio_numiotasks = @[WW3_PIO_IOTASKS] + pio_stride = @[WW3_PIO_STRIDE] + pio_rearranger = @[WW3_PIO_REARR] + pio_root = @[WW3_PIO_ROOT] :: # Run Sequence # @@ -145,7 +153,6 @@ ALLCOMP_attributes:: orb_mode = fixed_year orb_mvelp = 1.e36 orb_obliq = 1.e36 - mediator_present = true stop_n = @[FHMAX] stop_option = nhours stop_ymd = -999 diff --git a/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN b/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN index 2a57c59cf3..81930e3209 100644 --- a/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN +++ b/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN @@ -74,7 +74,15 @@ WAV_attributes:: OverwriteSlice = false merge_import = .false. mesh_wav = @[MESH_WAV] - user_sets_restname = true + user_histname = @[WW3_user_histname] + use_historync = @[WW3_historync] + use_restartnc = @[WW3_restartnc] + restart_from_binary = @[WW3_restart_from_binary] + pio_typename = @[WW3_PIO_FORMAT] + pio_numiotasks = @[WW3_PIO_IOTASKS] + pio_stride = @[WW3_PIO_STRIDE] + pio_rearranger = @[WW3_PIO_REARR] + pio_root = @[WW3_PIO_ROOT] :: # Run Sequence # @@ -131,7 +139,6 @@ ALLCOMP_attributes:: orb_mode = fixed_year orb_mvelp = 1.e36 orb_obliq = 1.e36 - mediator_present = true stop_n = @[FHMAX] stop_option = nhours stop_ymd = -999 diff --git a/tests/parm/ufs.configure.hafs_atm_wav.IN b/tests/parm/ufs.configure.hafs_atm_wav.IN index 9adfb9ed85..bd0192db36 100644 --- a/tests/parm/ufs.configure.hafs_atm_wav.IN +++ b/tests/parm/ufs.configure.hafs_atm_wav.IN @@ -55,7 +55,15 @@ WAV_attributes:: OverwriteSlice = false merge_import = .true. mesh_wav = @[MESH_WAV] - user_sets_restname = true + user_histname = @[WW3_user_histname] + use_historync = @[WW3_historync] + use_restartnc = @[WW3_restartnc] + restart_from_binary = @[WW3_restart_from_binary] + pio_typename = @[WW3_PIO_FORMAT] + pio_numiotasks = @[WW3_PIO_IOTASKS] + pio_stride = @[WW3_PIO_STRIDE] + pio_rearranger = @[WW3_PIO_REARR] + pio_root = @[WW3_PIO_ROOT] :: # Run Sequence # @@ -103,7 +111,6 @@ ALLCOMP_attributes:: orb_mode = fixed_year orb_mvelp = 1.e36 orb_obliq = 1.e36 - mediator_present = true stop_n = @[FHMAX] stop_option = nhours stop_ymd = -999 diff --git a/tests/parm/ufs.configure.s2sw.IN b/tests/parm/ufs.configure.s2sw.IN index 1ccf32fe09..9ba2a9c2e1 100644 --- a/tests/parm/ufs.configure.s2sw.IN +++ b/tests/parm/ufs.configure.s2sw.IN @@ -62,7 +62,15 @@ WAV_attributes:: Verbosity = 0 OverwriteSlice = false mesh_wav = @[MESH_WAV] - user_sets_restname = @[WW3_user_sets_restname] + user_histname = @[WW3_user_histname] + use_historync = @[WW3_historync] + use_restartnc = @[WW3_restartnc] + restart_from_binary = @[WW3_restart_from_binary] + pio_typename = @[WW3_PIO_FORMAT] + pio_numiotasks = @[WW3_PIO_IOTASKS] + pio_stride = @[WW3_PIO_STRIDE] + pio_rearranger = @[WW3_PIO_REARR] + pio_root = @[WW3_PIO_ROOT] :: # CMEPS warm run sequence diff --git a/tests/parm/ufs.configure.s2sw_esmf.IN b/tests/parm/ufs.configure.s2sw_esmf.IN index a9eed48546..0bfd8dc3d7 100644 --- a/tests/parm/ufs.configure.s2sw_esmf.IN +++ b/tests/parm/ufs.configure.s2sw_esmf.IN @@ -67,7 +67,15 @@ WAV_attributes:: Verbosity = 0 OverwriteSlice = false mesh_wav = @[MESH_WAV] - user_sets_restname = @[WW3_user_sets_restname] + user_histname = @[WW3_user_histname] + use_historync = @[WW3_historync] + use_restartnc = @[WW3_restartnc] + restart_from_binary = @[WW3_restart_from_binary] + pio_typename = @[WW3_PIO_FORMAT] + pio_numiotasks = @[WW3_PIO_IOTASKS] + pio_stride = @[WW3_PIO_STRIDE] + pio_rearranger = @[WW3_PIO_REARR] + pio_root = @[WW3_PIO_ROOT] :: # CMEPS warm run sequence diff --git a/tests/parm/ufs.configure.s2sw_fast_esmf.IN b/tests/parm/ufs.configure.s2sw_fast_esmf.IN index 3d7df9de69..623fab0124 100644 --- a/tests/parm/ufs.configure.s2sw_fast_esmf.IN +++ b/tests/parm/ufs.configure.s2sw_fast_esmf.IN @@ -67,7 +67,15 @@ WAV_attributes:: Verbosity = 0 OverwriteSlice = false mesh_wav = @[MESH_WAV] - user_sets_restname = @[WW3_user_sets_restname] + user_histname = @[WW3_user_histname] + use_historync = @[WW3_historync] + use_restartnc = @[WW3_restartnc] + restart_from_binary = @[WW3_restart_from_binary] + pio_typename = @[WW3_PIO_FORMAT] + pio_numiotasks = @[WW3_PIO_IOTASKS] + pio_stride = @[WW3_PIO_STRIDE] + pio_rearranger = @[WW3_PIO_REARR] + pio_root = @[WW3_PIO_ROOT] :: # CMEPS warm run sequence diff --git a/tests/parm/ufs.configure.s2swa.IN b/tests/parm/ufs.configure.s2swa.IN index a1bb9f95a6..2fa6ac40c3 100644 --- a/tests/parm/ufs.configure.s2swa.IN +++ b/tests/parm/ufs.configure.s2swa.IN @@ -69,7 +69,15 @@ WAV_attributes:: Verbosity = 0 OverwriteSlice = false mesh_wav = @[MESH_WAV] - user_sets_restname = @[WW3_user_sets_restname] + user_histname = @[WW3_user_histname] + use_historync = @[WW3_historync] + use_restartnc = @[WW3_restartnc] + restart_from_binary = @[WW3_restart_from_binary] + pio_typename = @[WW3_PIO_FORMAT] + pio_numiotasks = @[WW3_PIO_IOTASKS] + pio_stride = @[WW3_PIO_STRIDE] + pio_rearranger = @[WW3_PIO_REARR] + pio_root = @[WW3_PIO_ROOT] :: # CMEPS warm run sequence diff --git a/tests/parm/ufs.configure.s2swa_esmf.IN b/tests/parm/ufs.configure.s2swa_esmf.IN index 820da8ee0f..91410741de 100644 --- a/tests/parm/ufs.configure.s2swa_esmf.IN +++ b/tests/parm/ufs.configure.s2swa_esmf.IN @@ -75,7 +75,15 @@ WAV_attributes:: Verbosity = 0 OverwriteSlice = false mesh_wav = @[MESH_WAV] - user_sets_restname = @[WW3_user_sets_restname] + user_histname = @[WW3_user_histname] + use_historync = @[WW3_historync] + use_restartnc = @[WW3_restartnc] + restart_from_binary = @[WW3_restart_from_binary] + pio_typename = @[WW3_PIO_FORMAT] + pio_numiotasks = @[WW3_PIO_IOTASKS] + pio_stride = @[WW3_PIO_STRIDE] + pio_rearranger = @[WW3_PIO_REARR] + pio_root = @[WW3_PIO_ROOT] :: # CMEPS warm run sequence diff --git a/tests/parm/ufs.configure.s2swa_fast_esmf.IN b/tests/parm/ufs.configure.s2swa_fast_esmf.IN index e77f9266bc..5ded338a95 100644 --- a/tests/parm/ufs.configure.s2swa_fast_esmf.IN +++ b/tests/parm/ufs.configure.s2swa_fast_esmf.IN @@ -74,7 +74,15 @@ WAV_attributes:: Verbosity = 0 OverwriteSlice = false mesh_wav = @[MESH_WAV] - user_sets_restname = @[WW3_user_sets_restname] + user_histname = @[WW3_user_histname] + use_historync = @[WW3_historync] + use_restartnc = @[WW3_restartnc] + restart_from_binary = @[WW3_restart_from_binary] + pio_typename = @[WW3_PIO_FORMAT] + pio_numiotasks = @[WW3_PIO_IOTASKS] + pio_stride = @[WW3_PIO_STRIDE] + pio_rearranger = @[WW3_PIO_REARR] + pio_root = @[WW3_PIO_ROOT] :: # CMEPS warm run sequence diff --git a/tests/parm/ww3_shel.nml.IN b/tests/parm/ww3_shel.nml.IN index 4921a6d9ad..fa0b02de1d 100644 --- a/tests/parm/ww3_shel.nml.IN +++ b/tests/parm/ww3_shel.nml.IN @@ -9,6 +9,7 @@ &output_type_nml type%field%list = '@[WW3_OUTPARS]' type%point%file = 'ww3_points.list' + type%restart%extra = '@[WW3_RSTFLDS]' / &output_date_nml @@ -16,5 +17,4 @@ date%field%stride = '@[WW3_DTFLD]' date%point%outffile = '1' date%point%stride = '@[WW3_DTPNT]' - date%restart2%stride = '@[WW3_DT_2_RST]' / diff --git a/tests/test_changes.list b/tests/test_changes.list index 8b13789179..925538e123 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1 +1,35 @@ - +cpld_control_p8_mixedmode intel +cpld_control_gfsv17 intel +cpld_control_gfsv17_iau intel +cpld_restart_gfsv17 intel +cpld_mpi_gfsv17 intel +cpld_debug_gfsv17 intel +cpld_control_p8 intel +cpld_control_p8.v2.sfc intel +cpld_restart_p8 intel +cpld_control_qr_p8 intel +cpld_restart_qr_p8 intel +cpld_2threads_p8 intel +cpld_decomp_p8 intel +cpld_mpi_p8 intel +cpld_control_ciceC_p8 intel +cpld_control_c192_p8 intel +cpld_restart_c192_p8 intel +cpld_bmark_p8 intel +cpld_restart_bmark_p8 intel +cpld_control_noaero_p8 intel +cpld_debug_p8 intel +cpld_debug_noaero_p8 intel +cpld_control_p8_faster intel +cpld_control_pdlib_p8 intel +cpld_restart_pdlib_p8 intel +cpld_mpi_pdlib_p8 intel +cpld_debug_pdlib_p8 intel +hafs_regional_atm_wav intel +hafs_regional_atm_ocn_wav intel +atmwav_control_noaero_p8 intel +cpld_control_pdlib_p8 gnu +cpld_debug_pdlib_p8 gnu +cpld_control_gfsv17 intelllvm +cpld_debug_gfsv17 intelllvm +cpld_control_p8 intelllvm diff --git a/tests/tests/atmwav_control_noaero_p8 b/tests/tests/atmwav_control_noaero_p8 index 19a8523c93..a1d7c8bc42 100644 --- a/tests/tests/atmwav_control_noaero_p8 +++ b/tests/tests/atmwav_control_noaero_p8 @@ -47,7 +47,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc \ 20210322.180000.out_pnt.ww3 \ 20210322.180000.out_grd.ww3 \ - ufs.atmw.ww3.r.2021-03-22-64800" + ufs.atmw.ww3.r.2021-03-22-64800.nc" export_fv3 export_tiled @@ -81,6 +81,16 @@ export wav_model=ww3 export WW3_MULTIGRID=false export WW3_MODDEF=mod_def.glo_1deg export MESH_WAV=mesh.glo_1deg.nc +export WW3_user_histname='false' +export WW3_historync='false' +export WW3_restartnc='true' +export WW3_restart_from_binary='false' +# For either history_nc or restart_nc true +export WW3_PIO_FORMAT='pnetcdf' +export WW3_PIO_STRIDE=4 +export WW3_PIO_IOTASKS=-99 +export WW3_PIO_REARR='box' +export WW3_PIO_ROOT=-99 # ufs.configure export coupling_interval_sec=${DT_ATMOS} diff --git a/tests/tests/cpld_2threads_p8 b/tests/tests/cpld_2threads_p8 index 3a70bc0d2e..21346f4a09 100644 --- a/tests/tests/cpld_2threads_p8 +++ b/tests/tests/cpld_2threads_p8 @@ -54,6 +54,7 @@ export LIST_FILES="sfcf024.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 \ + ufs.cpld.ww3.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " diff --git a/tests/tests/cpld_bmark_p8 b/tests/tests/cpld_bmark_p8 index 6ffd9712bd..cfe693ec7c 100644 --- a/tests/tests/cpld_bmark_p8 +++ b/tests/tests/cpld_bmark_p8 @@ -48,6 +48,7 @@ export LIST_FILES="sfcf006.nc \ RESTART/20130401.060000.MOM.res_3.nc \ RESTART/iced.2013-04-01-21600.nc \ RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc \ + ufs.cpld.ww3.r.2013-04-01-21600.nc \ 20130401.060000.out_pnt.ww3 \ 20130401.060000.out_grd.ww3 " export ATMRES=C384 diff --git a/tests/tests/cpld_control_c192_p8 b/tests/tests/cpld_control_c192_p8 index a5cae9923e..b70352aee0 100644 --- a/tests/tests/cpld_control_c192_p8 +++ b/tests/tests/cpld_control_c192_p8 @@ -53,6 +53,7 @@ export LIST_FILES="sfcf030.tile1.nc \ RESTART/20210323.120000.MOM.res.nc \ RESTART/iced.2021-03-23-43200.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc \ + ufs.cpld.ww3.r.2021-03-23-43200.nc \ 20210323.120000.out_grd.ww3 \ 20210323.120000.out_pnt.ww3 " diff --git a/tests/tests/cpld_control_ciceC_p8 b/tests/tests/cpld_control_ciceC_p8 index 033313329e..07057d8073 100644 --- a/tests/tests/cpld_control_ciceC_p8 +++ b/tests/tests/cpld_control_ciceC_p8 @@ -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 \ + ufs.cpld.ww3.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " export DT_ATMOS=720 diff --git a/tests/tests/cpld_control_gfsv17 b/tests/tests/cpld_control_gfsv17 index 8ea5d20e89..fe6a489aa4 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 \ + ufs.cpld.ww3.r.2021-03-23-21600.nc \ history/iceh.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " @@ -109,6 +110,8 @@ export FIELD_TABLE=field_table_thompson_noaero_tke_progsigma export DIAG_TABLE=diag_table_cpld.IN export INPUT_NML=global_control.nml.IN export UFS_CONFIGURE=ufs.configure.s2sw.IN +# slow loop +export WW3_RSTFLDS="ice" #GFSv17 settings export PROGSIGMA=.true. diff --git a/tests/tests/cpld_control_gfsv17_iau b/tests/tests/cpld_control_gfsv17_iau index 14d80219c7..1a7afd6323 100644 --- a/tests/tests/cpld_control_gfsv17_iau +++ b/tests/tests/cpld_control_gfsv17_iau @@ -45,6 +45,7 @@ export LIST_FILES="sfcf024.nc \ RESTART/20210323.120000.MOM.res.nc \ RESTART/iced.2021-03-23-43200.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc \ + ufs.cpld.ww3.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 \ @@ -112,6 +113,8 @@ export FIELD_TABLE=field_table_thompson_noaero_tke_progsigma export DIAG_TABLE=diag_table_cpld.IN export INPUT_NML=global_control.nml.IN export UFS_CONFIGURE=ufs.configure.s2sw.IN +# slow loop +export WW3_RSTFLDS="ice" #GFSv17 settings export PROGSIGMA=.true. diff --git a/tests/tests/cpld_control_noaero_p8 b/tests/tests/cpld_control_noaero_p8 index 0d2ab926c2..58853ae7d0 100644 --- a/tests/tests/cpld_control_noaero_p8 +++ b/tests/tests/cpld_control_noaero_p8 @@ -65,6 +65,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 \ + ufs.cpld.ww3.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " diff --git a/tests/tests/cpld_control_p8 b/tests/tests/cpld_control_p8 index 4a4641e3d8..f3cb8da89c 100644 --- a/tests/tests/cpld_control_p8 +++ b/tests/tests/cpld_control_p8 @@ -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 \ + ufs.cpld.ww3.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " export DT_ATMOS=720 diff --git a/tests/tests/cpld_control_p8.v2.sfc b/tests/tests/cpld_control_p8.v2.sfc index ea0d95bf74..bc6e073c61 100644 --- a/tests/tests/cpld_control_p8.v2.sfc +++ b/tests/tests/cpld_control_p8.v2.sfc @@ -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 \ + ufs.cpld.ww3.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " diff --git a/tests/tests/cpld_control_p8_faster b/tests/tests/cpld_control_p8_faster index c1a895e3ec..4e972c16aa 100644 --- a/tests/tests/cpld_control_p8_faster +++ b/tests/tests/cpld_control_p8_faster @@ -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 \ + ufs.cpld.ww3.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " diff --git a/tests/tests/cpld_control_p8_mixedmode b/tests/tests/cpld_control_p8_mixedmode index dad84b4660..0d35ba3114 100644 --- a/tests/tests/cpld_control_p8_mixedmode +++ b/tests/tests/cpld_control_p8_mixedmode @@ -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 \ + ufs.cpld.ww3.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " diff --git a/tests/tests/cpld_control_pdlib_p8 b/tests/tests/cpld_control_pdlib_p8 index 2403cd5113..120504e818 100644 --- a/tests/tests/cpld_control_pdlib_p8 +++ b/tests/tests/cpld_control_pdlib_p8 @@ -65,6 +65,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 \ + ufs.cpld.ww3.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " @@ -108,6 +109,9 @@ export FV3_RUN=cpld_control_run.IN if [[ $MACHINE_ID = orion ]] || [[ $RT_COMPILER = gnu ]]; then WLCLK=50 fi +if [[ $MACHINE_ID = hercules && $RT_COMPILER = gnu ]]; then + export WW3_PIO_REARR='box' +fi if [[ $MACHINE_ID = jet ]]; then WLCLK=50 diff --git a/tests/tests/cpld_control_qr_p8 b/tests/tests/cpld_control_qr_p8 index 483bca9a6c..48bb88f2ab 100644 --- a/tests/tests/cpld_control_qr_p8 +++ b/tests/tests/cpld_control_qr_p8 @@ -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 \ + ufs.cpld.ww3.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " export DT_ATMOS=720 diff --git a/tests/tests/cpld_control_sfs b/tests/tests/cpld_control_sfs index 0cefb39256..2a3a4ee617 100644 --- a/tests/tests/cpld_control_sfs +++ b/tests/tests/cpld_control_sfs @@ -15,7 +15,7 @@ export LIST_FILES="sfcf021.nc \ GFSFLX.GrbF24 \ GFSPRS.GrbF21 \ GFSPRS.GrbF24 \ - RESTART/20210323.060000.MOM.res.nc" + RESTART/20210323.060000.MOM.res.nc" export_fv3 export_ugwpv1 @@ -74,8 +74,9 @@ export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export FIELD_TABLE=field_table_thompson_noaero_tke_progsigma export DIAG_TABLE=diag_table_cpld_sfs.IN export INPUT_NML=global_control.nml.IN - export UFS_CONFIGURE=ufs.configure.s2sw.IN +# slow loop +export WW3_RSTFLDS="ice" #GFSv17 settings export PROGSIGMA=.true. diff --git a/tests/tests/cpld_debug_gfsv17 b/tests/tests/cpld_debug_gfsv17 index 9b42af815b..63328b4d97 100644 --- a/tests/tests/cpld_debug_gfsv17 +++ b/tests/tests/cpld_debug_gfsv17 @@ -53,6 +53,7 @@ export LIST_FILES="sfcf003.tile1.nc \ RESTART/20210322.090000.MOM.res.nc \ RESTART/iced.2021-03-22-32400.nc \ RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc \ + ufs.cpld.ww3.r.2021-03-22-32400.nc \ 20210322.090000.out_pnt.ww3 \ 20210322.090000.out_grd.ww3 " export DT_ATMOS=360 @@ -100,6 +101,8 @@ export FIELD_TABLE=field_table_thompson_noaero_tke_progsigma export DIAG_TABLE=diag_table_cpld.IN export INPUT_NML=global_control.nml.IN export UFS_CONFIGURE=ufs.configure.s2sw.IN +# slow loop +export WW3_RSTFLDS="ice" export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_debug_noaero_p8 b/tests/tests/cpld_debug_noaero_p8 index c79ff40d8e..f703ad51cd 100644 --- a/tests/tests/cpld_debug_noaero_p8 +++ b/tests/tests/cpld_debug_noaero_p8 @@ -53,6 +53,7 @@ export LIST_FILES="sfcf003.tile1.nc \ RESTART/20210322.090000.MOM.res.nc \ RESTART/iced.2021-03-22-32400.nc \ RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc \ + ufs.cpld.ww3.r.2021-03-22-32400.nc \ 20210322.090000.out_pnt.ww3 \ 20210322.090000.out_grd.ww3 " diff --git a/tests/tests/cpld_debug_p8 b/tests/tests/cpld_debug_p8 index 7bd9e10f7f..663e21eccf 100644 --- a/tests/tests/cpld_debug_p8 +++ b/tests/tests/cpld_debug_p8 @@ -54,6 +54,7 @@ export LIST_FILES="sfcf003.tile1.nc \ RESTART/20210322.090000.MOM.res.nc \ RESTART/iced.2021-03-22-32400.nc \ RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc \ + ufs.cpld.ww3.r.2021-03-22-32400.nc \ 20210322.090000.out_pnt.ww3 \ 20210322.090000.out_grd.ww3 " diff --git a/tests/tests/cpld_debug_pdlib_p8 b/tests/tests/cpld_debug_pdlib_p8 index 3ce5a4c975..e2d0ea77c7 100644 --- a/tests/tests/cpld_debug_pdlib_p8 +++ b/tests/tests/cpld_debug_pdlib_p8 @@ -53,6 +53,7 @@ export LIST_FILES="sfcf003.tile1.nc \ RESTART/20210322.090000.MOM.res.nc \ RESTART/iced.2021-03-22-32400.nc \ RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc \ + ufs.cpld.ww3.r.2021-03-22-32400.nc \ 20210322.090000.out_pnt.ww3 \ 20210322.090000.out_grd.ww3 " @@ -76,7 +77,7 @@ OCN_tasks=$OCN_tasks_cpl_unstr ICE_tasks=$ICE_tasks_cpl_unstr WAV_tasks=$WAV_tasks_cpl_unstr # bump resources for debug test -WAV_tasks="$(($WAV_tasks_cpl_unstr + 18))" +WAV_tasks="$(($WAV_tasks_cpl_unstr + 30))" OCN_tasks="$((OCN_tasks_cpl_unstr + 16))" export atm_omp_num_threads=$THRD_cpl_unstr diff --git a/tests/tests/cpld_decomp_p8 b/tests/tests/cpld_decomp_p8 index 5c1222e0ce..382960bfc1 100644 --- a/tests/tests/cpld_decomp_p8 +++ b/tests/tests/cpld_decomp_p8 @@ -54,6 +54,7 @@ export LIST_FILES="sfcf024.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 \ + ufs.cpld.ww3.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " diff --git a/tests/tests/cpld_mpi_gfsv17 b/tests/tests/cpld_mpi_gfsv17 index cdb7494ddf..8de9119ba0 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 \ + ufs.cpld.ww3.r.2021-03-23-21600.nc \ history/iceh.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " @@ -115,6 +116,8 @@ export FIELD_TABLE=field_table_thompson_noaero_tke_progsigma export DIAG_TABLE=diag_table_cpld.IN export INPUT_NML=global_control.nml.IN export UFS_CONFIGURE=ufs.configure.s2sw.IN +# slow loop +export WW3_RSTFLDS="ice" #GFSv17 settings export PROGSIGMA=.true. diff --git a/tests/tests/cpld_mpi_p8 b/tests/tests/cpld_mpi_p8 index cb2feba497..8c9244e675 100644 --- a/tests/tests/cpld_mpi_p8 +++ b/tests/tests/cpld_mpi_p8 @@ -54,6 +54,7 @@ export LIST_FILES="sfcf024.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 \ + ufs.cpld.ww3.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " diff --git a/tests/tests/cpld_mpi_pdlib_p8 b/tests/tests/cpld_mpi_pdlib_p8 index ed6d54b1a4..5afb46a3de 100644 --- a/tests/tests/cpld_mpi_pdlib_p8 +++ b/tests/tests/cpld_mpi_pdlib_p8 @@ -65,6 +65,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 \ + ufs.cpld.ww3.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " export DT_ATMOS=720 diff --git a/tests/tests/cpld_restart_bmark_p8 b/tests/tests/cpld_restart_bmark_p8 index 64e12f36f3..1816fb4ee5 100644 --- a/tests/tests/cpld_restart_bmark_p8 +++ b/tests/tests/cpld_restart_bmark_p8 @@ -48,6 +48,7 @@ export LIST_FILES="sfcf006.nc \ RESTART/20130401.060000.MOM.res_3.nc \ RESTART/iced.2013-04-01-21600.nc \ RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc \ + ufs.cpld.ww3.r.2013-04-01-21600.nc \ 20130401.060000.out_pnt.ww3 \ 20130401.060000.out_grd.ww3 " export ATMRES=C384 diff --git a/tests/tests/cpld_restart_c192_p8 b/tests/tests/cpld_restart_c192_p8 index 54c2da4572..662406ba8d 100644 --- a/tests/tests/cpld_restart_c192_p8 +++ b/tests/tests/cpld_restart_c192_p8 @@ -53,6 +53,7 @@ export LIST_FILES="sfcf030.tile1.nc \ RESTART/20210323.120000.MOM.res.nc \ RESTART/iced.2021-03-23-43200.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc \ + ufs.cpld.ww3.r.2021-03-23-43200.nc \ 20210323.120000.out_grd.ww3 \ 20210323.120000.out_pnt.ww3 " diff --git a/tests/tests/cpld_restart_gfsv17 b/tests/tests/cpld_restart_gfsv17 index a42209e229..98d011f61d 100644 --- a/tests/tests/cpld_restart_gfsv17 +++ b/tests/tests/cpld_restart_gfsv17 @@ -55,6 +55,7 @@ export LIST_FILES="sfcf024.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 \ + ufs.cpld.ww3.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " @@ -114,6 +115,8 @@ export FIELD_TABLE=field_table_thompson_noaero_tke_progsigma export DIAG_TABLE=diag_table_cpld.IN export INPUT_NML=global_control.nml.IN export UFS_CONFIGURE=ufs.configure.s2sw.IN +# slow loop +export WW3_RSTFLDS="ice" #GFSv17 settings export PROGSIGMA=.true. diff --git a/tests/tests/cpld_restart_p8 b/tests/tests/cpld_restart_p8 index 55f556d3a5..0409d3d20d 100644 --- a/tests/tests/cpld_restart_p8 +++ b/tests/tests/cpld_restart_p8 @@ -54,6 +54,7 @@ export LIST_FILES="sfcf024.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 \ + ufs.cpld.ww3.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " diff --git a/tests/tests/cpld_restart_pdlib_p8 b/tests/tests/cpld_restart_pdlib_p8 index 151176eda9..8ca61d4e3a 100644 --- a/tests/tests/cpld_restart_pdlib_p8 +++ b/tests/tests/cpld_restart_pdlib_p8 @@ -53,6 +53,7 @@ export LIST_FILES="sfcf024.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 \ + ufs.cpld.ww3.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " export DT_ATMOS=720 diff --git a/tests/tests/cpld_restart_qr_p8 b/tests/tests/cpld_restart_qr_p8 index 943b736809..e1d8b85d16 100644 --- a/tests/tests/cpld_restart_qr_p8 +++ b/tests/tests/cpld_restart_qr_p8 @@ -54,6 +54,7 @@ export LIST_FILES="sfcf024.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 \ + ufs.cpld.ww3.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " diff --git a/tests/tests/hafs_regional_atm_ocn_wav b/tests/tests/hafs_regional_atm_ocn_wav index 5fab96a158..06d6dafccd 100644 --- a/tests/tests/hafs_regional_atm_ocn_wav +++ b/tests/tests/hafs_regional_atm_ocn_wav @@ -14,7 +14,7 @@ export LIST_FILES="atmf006.nc \ archs.2019_241_06.a \ 20190829.060000.out_grd.ww3 \ 20190829.060000.out_pnt.ww3 \ - ufs.hafs.ww3.r.2019-08-29-21600 \ + ufs.hafs.ww3.r.2019-08-29-21600.nc \ ufs.hafs.cpl.r.2019-08-29-21600.nc" export_fv3 @@ -104,3 +104,7 @@ export INPUT_NML=input_regional_hafs.nml.IN export MODEL_CONFIGURE=model_configure_hafs.IN export UFS_CONFIGURE=ufs.configure.hafs_atm_ocn_wav.IN export FV3_RUN="hafs_fv3_run.IN hycom_hat10_run.IN hafs_ww3_run.IN" + +if [[ $MACHINE_ID = orion ]]; then + WLCLK=40 +fi diff --git a/tests/tests/hafs_regional_atm_wav b/tests/tests/hafs_regional_atm_wav index 588af2cc02..114836ca82 100644 --- a/tests/tests/hafs_regional_atm_wav +++ b/tests/tests/hafs_regional_atm_wav @@ -12,7 +12,7 @@ export LIST_FILES="atmf006.nc \ sfcf006.nc \ 20190829.060000.out_grd.ww3 \ 20190829.060000.out_pnt.ww3 \ - ufs.hafs.ww3.r.2019-08-29-21600 \ + ufs.hafs.ww3.r.2019-08-29-21600.nc \ ufs.hafs.cpl.r.2019-08-29-21600.nc" export_fv3 From c0367fdf0885493af6a5446b38eb77405a6230e1 Mon Sep 17 00:00:00 2001 From: "Tseganeh Z. Gichamo" Date: Tue, 19 Nov 2024 09:03:53 -0500 Subject: [PATCH 11/24] Add soil temperature and moisture IAU (#2415) * UFSWM * FV3 * ccpp-physics - Add Incremental Analysis Update (IAU) capability to update soil temperature and moisture for CCPP's NoahMP land model --- FV3 | 2 +- NOAHMP-interface/CMakeLists.txt | 1 + NOAHMP-interface/noahmp | 2 +- tests/logs/RegressionTests_gaea.log | 661 +++++++++----------- tests/logs/RegressionTests_hera.log | 758 +++++++++++------------ tests/logs/RegressionTests_hercules.log | 758 +++++++++++------------ tests/logs/RegressionTests_jet.log | 500 +++++++-------- tests/logs/RegressionTests_orion.log | 580 ++++++++--------- tests/logs/RegressionTests_wcoss2.log | 463 +++++++------- tests/parm/global_control_lnd_iau.nml.IN | 451 ++++++++++++++ tests/rt.conf | 1 + tests/test_changes.list | 36 +- tests/tests/control_c48_lnd_iau | 84 +++ 13 files changed, 2361 insertions(+), 1936 deletions(-) create mode 100644 tests/parm/global_control_lnd_iau.nml.IN create mode 100644 tests/tests/control_c48_lnd_iau diff --git a/FV3 b/FV3 index 49967251b8..8f7cab2f7c 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 49967251b83255bdac7ac2f9626d2714e8b83d07 +Subproject commit 8f7cab2f7c8dbc9929daf2a4a43f4b6ee718f6ed diff --git a/NOAHMP-interface/CMakeLists.txt b/NOAHMP-interface/CMakeLists.txt index f8b6d99ab1..4344c2818f 100644 --- a/NOAHMP-interface/CMakeLists.txt +++ b/NOAHMP-interface/CMakeLists.txt @@ -13,6 +13,7 @@ list(APPEND _noahmp_cap_files noahmp/drivers/nuopc/lnd_comp_kind.F90 # CCPP interface list(APPEND _noahmp_ccpp_files noahmp/drivers/ccpp/noahmpdrv.F90 + noahmp/drivers/ccpp/lnd_iau_mod.F90 noahmp/drivers/ccpp/sfc_diff.f noahmp/drivers/ccpp/machine.F noahmp/drivers/ccpp/noahmp_tables.f90 diff --git a/NOAHMP-interface/noahmp b/NOAHMP-interface/noahmp index 3ac32f0db7..025043d1ad 160000 --- a/NOAHMP-interface/noahmp +++ b/NOAHMP-interface/noahmp @@ -1 +1 @@ -Subproject commit 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 +Subproject commit 025043d1ad662fca05f29f88ddd88ddf46c81882 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 4d2192d62d..6e121f6df0 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -a455d4df714c11207a7361bd79013093ef6e6a31 +df9325ac52a9219e80bc6d448ec0d297b6c8a591 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 49967251b83255bdac7ac2f9626d2714e8b83d07 FV3 (heads/develop) + 2429d661d1758c22935558df75f6b66bd710ac11 FV3 (remotes/origin/feature/lnd_iau) e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 002a886eeb14979a6811f89e885d2968cbfd9b70 FV3/ccpp/physics (EP4-893-g002a886e) + 4343656a098516517257c0913689f70a81579e74 FV3/ccpp/physics (EP4-1045-g4343656a) 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 @@ -26,8 +26,8 @@ Submodule hashes used in testing: 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) - 06c20998e59082e79529a8e728c7c3a43a050911 WW3 (6.07.1-385-g06c20998) + 2363beb39016660a157aac49d073f4e04c68c34d NOAHMP-interface/noahmp (remotes/origin/feature/lnd_iau) + abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -39,384 +39,305 @@ 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-20241112 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_402579 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_128749 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [22:11, 20:30] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [27:35, 12:43](3184 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 19:18] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [23:06, 15:04](1897 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:14, 14:42](1936 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:12, 06:36](1069 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:22, 15:28](1886 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 19:48] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [25:53, 14:04](1898 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:11, 10:09] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [30:16, 28:00](1935 MB) - -PASS -- COMPILE 's2swa_intel' [16:11, 14:58] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [19:40, 16:35](3215 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:40, 16:30](3212 MB) -PASS -- TEST 'cpld_restart_p8_intel' [15:16, 09:39](3136 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [19:38, 16:41](3236 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [15:18, 09:43](3158 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [17:35, 14:21](3461 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [18:36, 15:52](3205 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [16:34, 13:50](3153 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:38, 16:21](3210 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:37, 10:40](3486 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [19:09, 08:03](3600 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [40:17, 19:22](4253 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:38, 12:05](4343 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [14:05, 10:01](3190 MB) - -PASS -- COMPILE 's2sw_intel' [17:11, 16:01] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:04, 07:51](1912 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [18:06, 12:55](1965 MB) - -PASS -- COMPILE 's2swa_debug_intel' [14:11, 12:22] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [26:18, 23:21](3277 MB) - -PASS -- COMPILE 's2sw_debug_intel' [13:11, 11:56] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:53, 09:03](1948 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:12, 13:24] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:59, 05:12](1972 MB) - -PASS -- COMPILE 's2s_intel' [20:11, 19:01] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:37, 05:33](2875 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [09:37, 01:43](2871 MB) -PASS -- TEST 'cpld_restart_c48_intel' [08:03, 01:02](2286 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:15, 15:11] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [25:34, 16:27](3216 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:11, 20:26] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [31:14, 25:43](1916 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:06, 13:16](1095 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [33:09, 29:54](1897 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:11, 10:30] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [40:04, 30:35](1944 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:13, 12:18] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [09:56, 04:01](655 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [10:05, 03:48](1547 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [10:59, 03:54](1556 MB) -PASS -- TEST 'control_latlon_intel' [10:56, 03:48](1555 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [11:10, 03:51](1562 MB) -PASS -- TEST 'control_c48_intel' [16:02, 09:55](1570 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:45, 05:42](696 MB) -PASS -- TEST 'control_c192_intel' [18:00, 11:45](1684 MB) -PASS -- TEST 'control_c384_intel' [31:30, 24:06](1964 MB) -PASS -- TEST 'control_c384gdas_intel' [23:47, 14:47](1172 MB) -PASS -- TEST 'control_stochy_intel' [08:59, 02:07](608 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:28, 01:12](416 MB) -PASS -- TEST 'control_lndp_intel' [08:22, 02:13](609 MB) -PASS -- TEST 'control_iovr4_intel' [09:28, 03:00](608 MB) -PASS -- TEST 'control_iovr5_intel' [09:21, 03:08](609 MB) -PASS -- TEST 'control_p8_intel' [09:56, 04:28](1848 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [09:02, 03:54](1841 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [08:07, 04:08](1848 MB) -PASS -- TEST 'control_restart_p8_intel' [04:46, 02:24](997 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:55, 03:55](1842 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:49, 02:24](1003 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:47, 04:09](1832 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:50, 03:29](1925 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:03, 06:56](1850 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:14, 04:53](1898 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:11, 03:57](1848 MB) -PASS -- TEST 'merra2_thompson_intel' [07:01, 04:05](1845 MB) -PASS -- TEST 'regional_control_intel' [08:09, 04:53](847 MB) -PASS -- TEST 'regional_restart_intel' [05:38, 03:09](846 MB) -PASS -- TEST 'regional_decomp_intel' [07:51, 05:15](844 MB) -PASS -- TEST 'regional_2threads_intel' [06:29, 03:13](983 MB) -PASS -- TEST 'regional_noquilt_intel' [06:46, 04:53](1172 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:41, 04:53](843 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:30, 04:43](843 MB) -PASS -- TEST 'regional_wofs_intel' [08:32, 06:59](1570 MB) - -PASS -- COMPILE 'rrfs_intel' [13:13, 11:39] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:48, 06:59](991 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:44, 04:03](1145 MB) -PASS -- TEST 'rap_decomp_intel' [09:36, 07:33](987 MB) -PASS -- TEST 'rap_2threads_intel' [08:40, 06:27](1068 MB) -PASS -- TEST 'rap_restart_intel' [05:46, 03:42](865 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:50, 07:25](990 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:41, 08:01](985 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:43, 04:55](870 MB) -PASS -- TEST 'hrrr_control_intel' [08:06, 04:30](991 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:03, 04:35](987 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:46, 03:20](1065 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:32, 02:06](817 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:26, 07:26](984 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:29, 09:09](1941 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:27, 08:55](1933 MB) - -PASS -- COMPILE 'csawmg_intel' [14:11, 12:14] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [09:21, 06:58](948 MB) -PASS -- TEST 'control_ras_intel' [05:25, 03:40](648 MB) - -PASS -- COMPILE 'wam_intel' [12:10, 10:59] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:01, 11:56](1639 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:11, 13:15] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:55, 03:34](1847 MB) -PASS -- TEST 'regional_control_faster_intel' [06:35, 04:56](854 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [15:11, 13:18] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:34, 03:00](1576 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:46, 03:02](1580 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:25, 03:34](785 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:25, 02:50](783 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:38, 04:23](1082 MB) -PASS -- TEST 'control_ras_debug_intel' [05:18, 02:51](791 MB) -PASS -- TEST 'control_diag_debug_intel' [05:12, 02:56](1641 MB) -PASS -- TEST 'control_debug_p8_intel' [05:04, 02:57](1876 MB) -PASS -- TEST 'regional_debug_intel' [18:30, 16:26](894 MB) -PASS -- TEST 'rap_control_debug_intel' [06:21, 05:06](1162 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:22, 05:03](1155 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:20, 05:08](1156 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:22, 05:09](1161 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:25, 05:16](1161 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:30, 05:30](1247 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:27, 05:25](1161 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:21, 05:32](1161 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:21, 05:36](1160 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:24, 05:31](1162 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:22, 05:27](1159 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:24, 05:28](1163 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:41, 08:05](1158 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:25, 04:55](1155 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:27, 05:52](1161 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:28, 05:13](1162 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:50, 08:35](1169 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:11, 08:43] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:07, 13:15](1663 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 12:56] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:03, 03:53](1016 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:41, 05:59](867 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:41, 03:23](865 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:19, 05:16](925 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:44, 02:42](916 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:34, 03:33](862 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:45, 04:15](772 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:28, 01:41](747 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:49, 10:20] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:07, 02:04](1070 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:53, 01:16](1058 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:52, 01:16](946 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:14, 10:57] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:38, 04:22](898 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:15, 07:10] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:24, 04:55](1039 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:24, 04:51](1034 MB) -PASS -- TEST 'conus13km_debug_intel' [16:11, 13:32](1121 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:02, 13:39](798 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:54, 08:01](1115 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:52, 13:32](1192 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:14, 08:04] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:21, 05:05](1067 MB) - -PASS -- COMPILE 'hafsw_intel' [15:10, 13:37] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:07, 05:04](712 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:30, 04:23](1063 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:21, 07:42](744 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:13, 11:30](775 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:28, 12:42](805 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:03, 05:23](472 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:27, 06:38](497 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:51, 02:55](395 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:20, 08:42](487 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:52, 04:17](507 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:04, 03:30](506 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:07, 04:41](584 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:41, 01:31](425 MB) -PASS -- TEST 'gnv1_nested_intel' [08:58, 05:10](1698 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [13:10, 11:48] ( 1467 warnings 1469 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:02, 13:04](610 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:15, 15:13] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:13, 07:38](627 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:17, 07:50](809 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [20:11, 19:04] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:45, 06:03](807 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:15, 14:23] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:09, 06:17](738 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:08, 06:20](714 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:08, 20:11](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:20, 12:05] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 02:37](751 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:22, 01:39](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:33](640 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:24, 02:32](643 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:21, 02:31](640 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:20, 02:37](751 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:20, 02:35](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:20, 02:31](642 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:08, 06:12](693 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:03, 06:10](675 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:24, 02:37](763 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:26, 04:44](2029 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:23, 04:45](2030 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:14, 06:17] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 05:32](746 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [13:11, 11:20] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:21, 02:36](763 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:10, 02:36] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:50, 01:38](314 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:48, 01:19](462 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:33, 00:51](461 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [04:10, 02:54] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:53, 00:36](448 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:48, 00:14](252 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:11, 16:01] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:07, 04:07](1908 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:11, 13:52] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:33, 08:39](1903 MB) - -PASS -- COMPILE 'atml_intel' [15:11, 13:52] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:57, 06:59](1875 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:00, 06:56](1874 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:38, 04:31](1025 MB) - -PASS -- COMPILE 'atml_debug_intel' [11:15, 09:17] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:54, 06:36](1892 MB) - -PASS -- COMPILE 'atmw_intel' [14:21, 12:18] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:54, 02:32](1878 MB) - -PASS -- COMPILE 'atmaero_intel' [14:19, 12:29] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:54, 06:07](3098 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:10, 06:37](2988 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:10, 07:00](2994 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [10:11, 08:17] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [21:34, 18:16](4443 MB) - -PASS -- COMPILE 'atm_fbh_intel' [12:11, 11:04] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:33, 09:30](796 MB) +PASS -- COMPILE 's2swa_32bit_intel' [15:11, 14:00] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:05, 11:56](3189 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:11, 18:07] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [17:02, 14:22](1896 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:59, 14:27](1939 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:00, 06:40](1060 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:54, 15:10](1871 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:11, 18:09] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:44, 13:19](1895 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 07:55] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [30:13, 27:44](1934 MB) + +PASS -- COMPILE 's2swa_intel' [15:11, 13:57] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [18:38, 15:37](3213 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:58, 15:22](3214 MB) +PASS -- TEST 'cpld_restart_p8_intel' [12:22, 08:56](3141 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [18:37, 16:06](3235 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:24, 08:47](3160 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [17:20, 13:27](3460 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [18:40, 15:29](3208 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [17:04, 12:39](3157 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:46, 15:26](3215 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:58, 09:50](3489 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:58, 07:33](3599 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [26:49, 19:34](4254 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [26:30, 12:01](4357 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:50, 09:14](3194 MB) + +PASS -- COMPILE 's2sw_intel' [15:11, 13:15] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:34, 07:19](1919 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [17:13, 12:16](1972 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:11, 08:24] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [24:03, 22:04](3262 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:11, 08:51] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:29, 08:59](1944 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:11, 12:24] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:02, 05:09](1964 MB) + +PASS -- COMPILE 's2s_intel' [14:11, 12:27] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:41, 05:33](2871 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:42, 01:42](2881 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:37, 00:59](2292 MB) + +PASS -- COMPILE 's2swa_faster_intel' [15:11, 14:08] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [18:25, 15:18](3215 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:16, 19:15] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:01, 24:58](1923 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [19:03, 12:31](1099 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [34:54, 28:50](1893 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:11, 08:06] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:57, 30:48](1946 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:11, 11:36] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:26, 03:43](652 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:49, 03:15](1551 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:53, 03:16](1566 MB) +PASS -- TEST 'control_latlon_intel' [05:45, 03:15](1553 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:55, 03:17](1560 MB) +PASS -- TEST 'control_c48_intel' [12:54, 09:54](1572 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:27, 05:43](693 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [14:48, 11:21](1575 MB) +PASS -- TEST 'control_c192_intel' [14:40, 11:08](1689 MB) +PASS -- TEST 'control_c384_intel' [25:58, 23:42](1967 MB) +PASS -- TEST 'control_c384gdas_intel' [17:49, 14:36](1173 MB) +PASS -- TEST 'control_stochy_intel' [03:22, 01:48](612 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:21, 01:00](413 MB) +PASS -- TEST 'control_lndp_intel' [03:20, 01:44](608 MB) +PASS -- TEST 'control_iovr4_intel' [04:23, 02:25](605 MB) +PASS -- TEST 'control_iovr5_intel' [04:21, 02:29](607 MB) +PASS -- TEST 'control_p8_intel' [05:48, 03:37](1840 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:12, 03:16](1846 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:55, 03:38](1847 MB) +PASS -- TEST 'control_restart_p8_intel' [05:10, 02:22](1000 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:54, 03:38](1841 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:52, 02:21](1002 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:57, 03:53](1833 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:46, 03:13](1926 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:39, 06:09](1844 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:45, 03:57](1895 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:29, 03:11](1857 MB) +PASS -- TEST 'merra2_thompson_intel' [05:53, 03:33](1843 MB) +PASS -- TEST 'regional_control_intel' [06:28, 04:38](842 MB) +PASS -- TEST 'regional_restart_intel' [10:29, 02:38](842 MB) +PASS -- TEST 'regional_decomp_intel' [07:25, 04:54](851 MB) +PASS -- TEST 'regional_2threads_intel' [05:29, 02:59](973 MB) +PASS -- TEST 'regional_noquilt_intel' [06:47, 04:38](1175 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:43, 04:43](844 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:33, 04:57](845 MB) +PASS -- TEST 'regional_wofs_intel' [10:32, 07:15](1571 MB) + +PASS -- COMPILE 'rrfs_intel' [13:11, 11:20] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:42, 07:38](986 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:44, 03:59](1150 MB) +PASS -- TEST 'rap_decomp_intel' [11:39, 07:16](992 MB) +PASS -- TEST 'rap_2threads_intel' [11:29, 06:21](1072 MB) +PASS -- TEST 'rap_restart_intel' [10:28, 03:29](864 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:47, 07:07](987 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:33, 07:01](989 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:42, 04:59](869 MB) +PASS -- TEST 'hrrr_control_intel' [13:00, 03:53](983 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [11:41, 03:55](981 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [11:40, 03:08](1064 MB) +PASS -- TEST 'hrrr_control_restart_intel' [06:24, 01:56](817 MB) +PASS -- TEST 'rrfs_v1beta_intel' [15:38, 07:16](981 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [17:23, 08:55](1943 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [16:22, 08:36](1932 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 09:41] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:25, 06:35](946 MB) +PASS -- TEST 'control_ras_intel' [05:46, 03:21](648 MB) + +PASS -- COMPILE 'wam_intel' [12:11, 10:19] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [23:00, 12:04](1640 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:27] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [12:47, 03:10](1845 MB) +PASS -- TEST 'regional_control_faster_intel' [11:30, 04:38](837 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [12:15, 10:10] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [12:37, 02:43](1582 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [11:39, 02:40](1582 MB) +PASS -- TEST 'control_stochy_debug_intel' [11:20, 03:08](785 MB) +PASS -- TEST 'control_lndp_debug_intel' [11:22, 02:50](784 MB) +PASS -- TEST 'control_csawmg_debug_intel' [12:32, 04:21](1083 MB) +PASS -- TEST 'control_ras_debug_intel' [11:22, 02:50](791 MB) +PASS -- TEST 'control_diag_debug_intel' [11:44, 02:51](1636 MB) +PASS -- TEST 'control_debug_p8_intel' [09:32, 02:51](1869 MB) +PASS -- TEST 'regional_debug_intel' [23:31, 16:34](888 MB) +PASS -- TEST 'rap_control_debug_intel' [12:23, 05:02](1164 MB) +PASS -- TEST 'hrrr_control_debug_intel' [10:21, 04:57](1158 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [10:21, 05:03](1159 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [10:22, 04:58](1164 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:20, 05:04](1164 MB) +PASS -- TEST 'rap_diag_debug_intel' [11:28, 05:13](1249 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [10:23, 05:05](1171 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:23, 05:09](1164 MB) +PASS -- TEST 'rap_lndp_debug_intel' [10:22, 05:06](1167 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [09:20, 05:09](1163 MB) +PASS -- TEST 'rap_noah_debug_intel' [09:19, 04:53](1162 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:23, 04:58](1166 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:23, 08:08](1160 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [09:19, 04:57](1158 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [11:21, 05:53](1163 MB) +PASS -- TEST 'rap_flake_debug_intel' [10:21, 05:01](1165 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:37, 08:33](1168 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:11, 07:31] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:52, 13:14](1668 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:15, 10:25] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:52, 03:49](1024 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:34, 05:53](867 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:34, 03:19](864 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:57, 05:12](916 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:29, 02:44](916 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:30, 03:30](862 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [40:37, 04:08](773 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [35:26, 01:44](745 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:11, 10:58] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:55, 01:55](1071 MB) +PASS -- TEST 'conus13km_2threads_intel' [36:43, 01:00](1063 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [36:43, 01:16](948 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 10:07] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [10:03, 04:16](895 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:11, 07:58] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [09:00, 05:06](1044 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:59, 04:53](1035 MB) +PASS -- TEST 'conus13km_debug_intel' [16:47, 13:37](1125 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:46, 13:38](799 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [14:43, 07:56](1113 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:42, 13:17](1192 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:11, 08:07] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:20, 05:02](1064 MB) + +PASS -- COMPILE 'hafsw_intel' [16:13, 14:45] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [24:04, 05:01](712 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [24:25, 04:20](1065 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [28:16, 07:32](746 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [40:07, 11:24](770 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [46:19, 12:37](797 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [32:56, 05:19](470 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [44:46, 06:39](499 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [46:45, 02:55](382 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [55:11, 07:29](483 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [50:46, 03:43](507 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [50:54, 03:32](508 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [51:57, 04:35](585 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [49:45, 01:33](424 MB) +PASS -- TEST 'gnv1_nested_intel' [44:27, 05:30](1689 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:11, 08:12] ( 1467 warnings 1469 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [01:54, 12:54](612 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [15:14, 14:04] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [57:59, 07:31](631 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [58:06, 07:44](811 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:40, 13:18] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [55:23, 06:03](807 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:13, 11:41] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [55:05, 06:11](734 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [52:07, 06:17](719 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [34:08, 20:05](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [13:13, 11:39] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [13:20, 02:40](764 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [31:24, 01:37](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [45:20, 02:28](643 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [44:23, 02:29](640 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [40:23, 02:30](642 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [36:22, 02:37](751 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [35:21, 02:37](752 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [31:21, 02:28](642 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [33:50, 06:04](692 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [28:47, 06:10](671 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [21:17, 02:36](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:49, 04:40](2031 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [24:20, 04:42](2030 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:10, 06:29] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [24:20, 05:30](749 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [11:13, 10:07] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [17:22, 02:37](752 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:38] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [14:50, 01:40](323 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [16:31, 01:14](460 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:29, 01:28](461 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [04:14, 02:08] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [13:36, 00:36](449 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:37, 00:18](254 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:11, 12:41] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [19:49, 03:54](1907 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:13, 12:48] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [21:44, 08:17](1901 MB) + +PASS -- COMPILE 'atml_intel' [14:11, 13:03] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [19:52, 07:27](1868 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [17:47, 07:44](1878 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:28, 04:08](1015 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:13, 08:13] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [14:47, 06:04](1911 MB) + +PASS -- COMPILE 'atmw_intel' [13:10, 11:41] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [10:45, 02:09](1877 MB) + +PASS -- COMPILE 'atmaero_intel' [13:11, 11:31] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [12:46, 05:38](3099 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [11:48, 06:08](2989 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [12:46, 06:30](2993 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [10:10, 08:20] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [24:15, 18:12](4432 MB) + +PASS -- COMPILE 'atm_fbh_intel' [12:11, 10:22] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:32, 09:31](795 MB) PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [21:12, 19:22] -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_gfsv17_intelllvm' [, ]( MB) +PASS -- TEST 'cpld_control_gfsv17_intelllvm' [18:57, 13:36](1901 MB) -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [15:11, 13:35] -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_gfsv17_intelllvm' [, ]( MB) +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [11:11, 09:54] +PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [33:55, 28:02](1927 MB) -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [21:17, 19:22] -PASS -- TEST 'cpld_control_sfs_intelllvm' [15:54, 13:32](1895 MB) +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [20:13, 18:18] +PASS -- TEST 'cpld_control_sfs_intelllvm' [20:38, 14:12](1893 MB) -PASS -- COMPILE 's2swa_intelllvm' [17:12, 15:19] -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_p8_intelllvm' [, ]( MB) +PASS -- COMPILE 's2swa_intelllvm' [15:12, 14:06] +PASS -- TEST 'cpld_control_p8_intelllvm' [23:00, 15:50](3213 MB) SYNOPSIS: -Starting Date/Time: 20241112 23:10:36 -Ending Date/Time: 20241113 01:34:53 -Total Time: 02h:25m:26s +Starting Date/Time: 20241116 17:59:08 +Ending Date/Time: 20241116 20:40:14 +Total Time: 02h:43m:19s Compiles Completed: 47/47 -Tests Completed: 189/192 -Failed Tests: -* TEST cpld_control_gfsv17_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2445/ufs-weather-model/tests/logs/log_gaea/run_cpld_control_gfsv17_intelllvm.log -* TEST cpld_debug_gfsv17_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2445/ufs-weather-model/tests/logs/log_gaea/run_cpld_debug_gfsv17_intelllvm.log -* TEST cpld_control_p8_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2445/ufs-weather-model/tests/logs/log_gaea/run_cpld_control_p8_intelllvm.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 GAEA REGRESSION TESTING LOG==== -====START OF GAEA REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -a455d4df714c11207a7361bd79013093ef6e6a31 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) - 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) - 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 49967251b83255bdac7ac2f9626d2714e8b83d07 FV3 (heads/develop) - e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) - b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 002a886eeb14979a6811f89e885d2968cbfd9b70 FV3/ccpp/physics (EP4-893-g002a886e) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) - c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 06c20998e59082e79529a8e728c7c3a43a050911 WW3 (6.07.1-385-g06c20998) - 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: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20241112 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1605522 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-b) - NEW BASELINES FROM FILE: test_changes.list -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [20:12, 18:33] -PASS -- TEST 'cpld_control_gfsv17_intelllvm' [15:50, 13:35](1906 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [10:11, 08:11] -PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [30:03, 27:52](1926 MB) - -PASS -- COMPILE 's2swa_intelllvm' [15:11, 13:57] -PASS -- TEST 'cpld_control_p8_intelllvm' [18:03, 15:27](3218 MB) - -SYNOPSIS: -Starting Date/Time: 20241113 13:58:47 -Ending Date/Time: 20241113 14:40:28 -Total Time: 00h:42m:02s -Compiles Completed: 3/3 -Tests Completed: 3/3 +Tests Completed: 193/193 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 f1ffbfc1f5..b56e05cb05 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -a455d4df714c11207a7361bd79013093ef6e6a31 +e4c6989d0d2b2e3a110ca9e1f426c3c48545cdef Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,13 +9,13 @@ Submodule hashes used in testing: 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 49967251b83255bdac7ac2f9626d2714e8b83d07 FV3 (heads/develop) + 2429d661d1758c22935558df75f6b66bd710ac11 FV3 (remotes/origin/feature/lnd_iau) 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) - 06c20998e59082e79529a8e728c7c3a43a050911 WW3 (6.07.1-385-g06c20998) + 2363beb39016660a157aac49d073f4e04c68c34d NOAHMP-interface/noahmp (v3.7.1-443-g2363beb) + abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -27,389 +27,389 @@ 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-20241112 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_98392 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2576779 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [15:14, 13:15] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:17, 12:04](3298 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:14, 16:20] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [35:11, 19:49](1965 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [29:28, 20:51](2150 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [17:26, 08:19](1267 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [38:06, 23:05](1861 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:14, 16:39] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [33:55, 19:18](1943 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:14, 06:29] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:58, 26:45](1920 MB) - -PASS -- COMPILE 's2swa_intel' [15:14, 13:15] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [23:20, 14:35](3335 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [23:25, 14:12](3357 MB) -PASS -- TEST 'cpld_restart_p8_intel' [30:31, 07:25](3256 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [22:17, 14:16](3368 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [31:34, 07:29](3273 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [18:12, 13:36](3626 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [22:15, 14:19](3345 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [16:16, 11:46](3221 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [23:24, 14:22](3357 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [18:12, 10:29](3523 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:50, 06:28](3624 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [39:21, 16:38](4269 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:11, 09:52](4377 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [15:10, 07:39](3312 MB) - -PASS -- COMPILE 's2sw_intel' [14:14, 12:35] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [14:59, 09:12](1989 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [17:06, 11:19](2050 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:13, 06:30] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [25:04, 22:36](3379 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:14, 06:04] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:12, 10:10](2014 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:14, 11:35] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:04, 04:37](2032 MB) - -PASS -- COMPILE 's2s_intel' [13:14, 11:45] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:42, 07:54](3048 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [08:45, 02:28](3039 MB) -PASS -- TEST 'cpld_restart_c48_intel' [11:48, 01:26](2476 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:13, 17:16] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [21:15, 13:37](3343 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:13, 16:01] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [36:05, 28:03](2021 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:43, 13:56](1266 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:17, 33:05](1927 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:12, 05:50] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:11, 30:14](1950 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:13, 10:46] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [08:26, 03:23](702 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [08:40, 03:13](1584 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:44, 03:24](1571 MB) -PASS -- TEST 'control_latlon_intel' [07:34, 03:22](1588 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:43, 03:17](1586 MB) -PASS -- TEST 'control_c48_intel' [13:43, 11:32](1726 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:27, 06:32](850 MB) -PASS -- TEST 'control_c192_intel' [14:56, 12:10](1746 MB) -PASS -- TEST 'control_c384_intel' [37:10, 13:43](1979 MB) -PASS -- TEST 'control_c384gdas_intel' [32:46, 08:21](1383 MB) -PASS -- TEST 'control_stochy_intel' [03:24, 01:41](653 MB) -PASS -- TEST 'control_stochy_restart_intel' [22:37, 01:01](496 MB) -PASS -- TEST 'control_lndp_intel' [04:25, 01:34](657 MB) -PASS -- TEST 'control_iovr4_intel' [05:25, 02:30](650 MB) -PASS -- TEST 'control_iovr5_intel' [04:25, 02:31](651 MB) -PASS -- TEST 'control_p8_intel' [25:05, 03:45](1874 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [25:05, 03:10](1885 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [24:59, 03:42](1878 MB) -PASS -- TEST 'control_restart_p8_intel' [11:55, 02:08](1123 MB) -PASS -- TEST 'control_noqr_p8_intel' [25:53, 03:44](1866 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [10:56, 02:06](1156 MB) -PASS -- TEST 'control_decomp_p8_intel' [26:53, 03:46](1865 MB) -PASS -- TEST 'control_2threads_p8_intel' [25:58, 03:34](1953 MB) -PASS -- TEST 'control_p8_lndp_intel' [28:55, 06:40](1879 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [26:59, 04:13](1954 MB) -PASS -- TEST 'control_p8_mynn_intel' [26:05, 03:11](1895 MB) -PASS -- TEST 'merra2_thompson_intel' [26:03, 03:30](1864 MB) -PASS -- TEST 'regional_control_intel' [29:39, 05:21](1081 MB) -PASS -- TEST 'regional_restart_intel' [16:36, 02:57](1077 MB) -PASS -- TEST 'regional_decomp_intel' [28:36, 05:51](1082 MB) -PASS -- TEST 'regional_2threads_intel' [32:37, 03:32](1083 MB) -PASS -- TEST 'regional_noquilt_intel' [26:40, 05:20](1396 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [32:42, 05:30](1088 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [43:38, 05:22](1091 MB) -PASS -- TEST 'regional_wofs_intel' [42:46, 06:56](1894 MB) - -PASS -- COMPILE 'rrfs_intel' [16:14, 10:24] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [22:48, 07:53](1107 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [18:10, 04:20](1247 MB) -PASS -- TEST 'rap_decomp_intel' [20:51, 08:15](1028 MB) -PASS -- TEST 'rap_2threads_intel' [18:49, 07:25](1166 MB) -PASS -- TEST 'rap_restart_intel' [07:57, 04:08](1099 MB) -PASS -- TEST 'rap_sfcdiff_intel' [01:51, 07:53](1097 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [57:45, 08:17](1043 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:59, 05:57](1124 MB) -PASS -- TEST 'hrrr_control_intel' [52:58, 04:05](1040 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [43:39, 04:07](1026 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [47:45, 03:46](1095 MB) -PASS -- TEST 'hrrr_control_restart_intel' [07:35, 02:12](994 MB) -PASS -- TEST 'rrfs_v1beta_intel' [50:51, 07:52](1090 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [19:29, 09:45](1977 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [19:28, 09:20](2051 MB) - -PASS -- COMPILE 'csawmg_intel' [15:13, 10:08] -PASS -- TEST 'control_csawmg_intel' [15:40, 06:24](1013 MB) -PASS -- TEST 'control_ras_intel' [11:27, 03:25](740 MB) - -PASS -- COMPILE 'wam_intel' [14:13, 10:09] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [19:49, 11:22](1657 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:13, 10:43] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [10:52, 03:01](1888 MB) -PASS -- TEST 'regional_control_faster_intel' [12:39, 05:11](1084 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:11, 07:54] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:46, 02:19](1615 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:49, 02:17](1609 MB) -PASS -- TEST 'control_stochy_debug_intel' [09:26, 03:08](830 MB) -PASS -- TEST 'control_lndp_debug_intel' [09:27, 02:48](832 MB) -PASS -- TEST 'control_csawmg_debug_intel' [10:41, 04:22](1145 MB) -PASS -- TEST 'control_ras_debug_intel' [09:26, 02:51](832 MB) -PASS -- TEST 'control_diag_debug_intel' [10:51, 02:46](1682 MB) -PASS -- TEST 'control_debug_p8_intel' [10:45, 02:42](1887 MB) -PASS -- TEST 'regional_debug_intel' [24:36, 18:24](1100 MB) -PASS -- TEST 'rap_control_debug_intel' [11:26, 05:11](1215 MB) -PASS -- TEST 'hrrr_control_debug_intel' [10:28, 05:06](1209 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [09:27, 05:01](1206 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [09:24, 05:04](1211 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:24, 05:08](1218 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:39, 05:20](1299 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:28, 05:17](1218 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:27, 05:18](1216 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:25, 05:06](1219 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:26, 05:08](1212 MB) -PASS -- TEST 'rap_noah_debug_intel' [11:28, 05:02](1211 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [10:29, 05:03](1210 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:26, 08:14](1205 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [09:28, 04:59](1207 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [11:30, 06:04](1212 MB) -PASS -- TEST 'rap_flake_debug_intel' [10:26, 05:12](1210 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:41, 08:45](1218 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [18:12, 04:23] -PASS -- TEST 'control_csawmg_debug_gnu' [06:45, 02:23](722 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:12, 04:43] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [17:53, 13:37](1687 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:13, 10:10] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:17, 04:01](1122 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:35, 06:37](1042 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:44, 03:29](973 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:39, 06:21](1079 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:36, 03:13](951 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:48, 03:41](913 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:45, 04:57](1022 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:59, 01:52](919 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:12, 10:17] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:57, 02:04](1189 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:42, 01:10](1100 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:48, 01:30](1087 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:13, 10:10] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:45, 04:19](979 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:12, 04:59] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:27, 05:18](1092 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:24, 05:00](1089 MB) -PASS -- TEST 'conus13km_debug_intel' [16:52, 14:30](1236 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:51, 14:26](934 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:45, 08:05](1164 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:42, 14:15](1305 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:11, 04:45] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:24, 05:10](1135 MB) - -PASS -- COMPILE 'hafsw_intel' [16:12, 11:48] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:18, 05:08](715 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:32, 06:17](1097 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:25, 07:24](814 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:26, 15:11](842 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:51, 18:40](864 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:23, 05:50](485 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:43, 07:01](508 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:01, 02:42](368 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:05, 07:20](481 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:53, 03:45](522 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:09, 03:33](522 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:55, 04:10](574 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:10](400 MB) -PASS -- TEST 'gnv1_nested_intel' [06:32, 04:03](1740 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:12, 05:13] ( 1462 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:54, 13:02](581 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:12, 11:25] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:02, 10:15](627 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:09, 10:27](697 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [17:12, 11:39] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:37, 08:18](681 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:12, 11:06] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [13:16, 06:41](837 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [16:21, 06:44](798 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:58, 16:24](1221 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [31:15, 06:59] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:21, 02:48](1171 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:24, 01:41](1107 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:20, 02:42](1033 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:20, 02:46](1026 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:43](1022 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:19, 02:44](1165 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:20, 02:49](1157 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:20, 02:42](1015 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:31, 06:41](1057 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:25, 06:18](1044 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:47](1158 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:20, 03:56](2472 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:20, 03:58](2515 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [46:17, 03:21] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:19, 06:31](1071 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [49:16, 06:41] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:19, 02:45](1163 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [20:19, 01:12] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:33, 00:47](267 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:26, 00:49](328 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:27, 00:32](322 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [20:18, 01:30] -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:34, 00:33](562 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:34, 00:19](464 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [29:22, 11:02] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:07, 03:48](1975 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [26:20, 10:30] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [10:59, 08:07](1958 MB) - -PASS -- COMPILE 'atml_intel' [26:20, 10:50] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:05, 04:24](1864 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:01, 04:23](1867 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [10:54, 02:30](1097 MB) - -PASS -- COMPILE 'atml_debug_intel' [21:18, 05:54] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:01, 05:54](1877 MB) - -PASS -- COMPILE 'atmw_intel' [24:19, 11:01] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:51, 02:01](1919 MB) - -PASS -- COMPILE 'atmaero_intel' [05:17, 10:43] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:00, 04:12](3198 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:01, 04:58](3095 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:48, 05:02](3104 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [43:14, 04:44] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_fbh_intel' [45:16, 09:51] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:30, 11:48](1087 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [16:12, 06:54] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:41, 08:28](1046 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [16:12, 06:54] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [07:47, 04:59](975 MB) - -PASS -- COMPILE 'atm_gnu' [10:12, 04:32] -PASS -- TEST 'control_c48_gnu' [11:41, 09:27](1511 MB) -PASS -- TEST 'control_stochy_gnu' [06:30, 03:26](497 MB) -PASS -- TEST 'control_ras_gnu' [07:23, 04:53](502 MB) -PASS -- TEST 'control_p8_gnu' [11:55, 05:12](1457 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [12:50, 05:08](1451 MB) -PASS -- TEST 'control_flake_gnu' [18:27, 10:30](540 MB) - -PASS -- COMPILE 'rrfs_gnu' [09:12, 04:30] -PASS -- TEST 'rap_control_gnu' [18:39, 11:28](806 MB) -PASS -- TEST 'rap_decomp_gnu' [18:37, 11:42](813 MB) -PASS -- TEST 'rap_2threads_gnu' [16:43, 10:25](916 MB) -PASS -- TEST 'rap_restart_gnu' [07:58, 05:52](569 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [17:39, 11:30](808 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [16:45, 11:39](806 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [11:04, 08:34](573 MB) -PASS -- TEST 'hrrr_control_gnu' [10:40, 05:55](843 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [13:36, 05:55](821 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [14:37, 05:25](907 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [14:33, 05:56](836 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [05:35, 03:05](557 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:32, 03:03](647 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [19:50, 11:18](836 MB) - -PASS -- COMPILE 'csawmg_gnu' [06:11, 04:00] -PASS -- TEST 'control_csawmg_gnu' [16:46, 08:34](733 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:12, 06:47] -PASS -- TEST 'control_diag_debug_gnu' [09:50, 01:39](1270 MB) -PASS -- TEST 'regional_debug_gnu' [15:41, 11:57](753 MB) -PASS -- TEST 'rap_control_debug_gnu' [09:26, 02:42](823 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [09:25, 02:34](815 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [09:23, 02:40](826 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [09:24, 02:40](823 MB) -PASS -- TEST 'rap_diag_debug_gnu' [09:42, 02:51](906 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [10:25, 04:18](820 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [08:24, 02:42](823 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [08:25, 02:42](815 MB) -PASS -- TEST 'control_ras_debug_gnu' [06:20, 01:36](452 MB) -PASS -- TEST 'control_stochy_debug_gnu' [06:22, 01:46](451 MB) -PASS -- TEST 'control_debug_p8_gnu' [05:38, 01:38](1439 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:27, 02:40](819 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:27, 02:59](819 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:37, 04:22](826 MB) - -PASS -- COMPILE 'wam_debug_gnu' [09:11, 02:31] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [10:11, 04:18] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:39, 09:51](700 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:38, 05:12](692 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [11:38, 08:59](742 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [08:34, 04:45](736 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [08:34, 05:20](692 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:44, 07:14](548 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:32, 02:39](532 MB) -PASS -- TEST 'conus13km_control_gnu' [07:06, 03:12](863 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:48, 05:28](869 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:47, 01:53](558 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [15:12, 10:07] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:42, 05:53](721 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [13:12, 07:13] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:27, 02:36](705 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:31, 02:35](707 MB) -PASS -- TEST 'conus13km_debug_gnu' [11:03, 06:44](884 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [11:01, 06:52](571 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [10:51, 07:43](890 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:50, 06:52](950 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [10:12, 07:13] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [05:25, 02:42](729 MB) - -PASS -- COMPILE 's2swa_gnu' [20:13, 16:56] - -PASS -- COMPILE 's2s_gnu' [19:12, 15:57] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [22:11, 18:56](1508 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [05:12, 03:10] - -PASS -- COMPILE 's2sw_pdlib_gnu' [18:13, 16:08] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [34:23, 30:42](1454 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:12, 02:56] - -PASS -- COMPILE 'datm_cdeps_gnu' [17:13, 15:22] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:19, 03:06](694 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:11, 12:44] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:19, 11:36](3315 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:11, 16:07] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [23:03, 19:49](1976 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:19, 20:43](2195 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:13, 08:12](1270 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:55, 23:04](1875 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:11, 16:20] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:42, 19:13](1965 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 06:01] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:58, 26:22](1939 MB) + +PASS -- COMPILE 's2swa_intel' [14:11, 12:58] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [20:23, 13:59](3342 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:22, 14:05](3345 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:18, 07:31](3249 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [20:23, 14:11](3356 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:18, 07:23](3270 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [16:14, 13:09](3632 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [19:12, 14:09](3340 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:25, 11:37](3218 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [20:28, 13:58](3357 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:07, 10:29](3521 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:34, 06:25](3616 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [24:20, 16:32](4288 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:21, 08:58](4377 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:15, 07:21](3307 MB) + +PASS -- COMPILE 's2sw_intel' [14:11, 12:19] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [12:09, 09:09](1981 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:14, 11:06](2063 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:02] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [27:11, 22:27](3403 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:39] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [14:55, 10:05](1999 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:11, 11:23] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:58, 04:21](2036 MB) + +PASS -- COMPILE 's2s_intel' [13:11, 11:34] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:44, 07:46](3041 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:40, 02:24](3020 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:36, 01:26](2485 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:11, 16:34] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:05, 13:30](3357 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 15:40] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:03, 27:48](2018 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:18, 13:54](1278 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:02, 33:07](1946 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:10, 05:37] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:11, 29:45](1965 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:10, 10:49] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:22, 03:24](700 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:42, 03:13](1587 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:45, 03:17](1587 MB) +PASS -- TEST 'control_latlon_intel' [05:37, 03:14](1587 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:49, 03:14](1584 MB) +PASS -- TEST 'control_c48_intel' [13:42, 11:38](1723 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:26, 06:33](852 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [13:39, 11:34](1724 MB) +PASS -- TEST 'control_c192_intel' [13:53, 11:59](1752 MB) +PASS -- TEST 'control_c384_intel' [16:37, 13:52](1978 MB) +PASS -- TEST 'control_c384gdas_intel' [11:34, 08:04](1374 MB) +PASS -- TEST 'control_stochy_intel' [03:21, 01:40](659 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:28, 00:59](504 MB) +PASS -- TEST 'control_lndp_intel' [03:22, 01:35](658 MB) +PASS -- TEST 'control_iovr4_intel' [04:22, 02:29](653 MB) +PASS -- TEST 'control_iovr5_intel' [04:22, 02:30](655 MB) +PASS -- TEST 'control_p8_intel' [05:47, 03:42](1882 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:52, 03:06](1860 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:51, 03:37](1875 MB) +PASS -- TEST 'control_restart_p8_intel' [03:44, 02:03](1126 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:48, 03:39](1871 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:48, 02:02](1164 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:46, 03:43](1870 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:48, 03:32](1958 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:41, 06:35](1876 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:53, 04:06](1951 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:54, 03:09](1895 MB) +PASS -- TEST 'merra2_thompson_intel' [05:49, 03:24](1888 MB) +PASS -- TEST 'regional_control_intel' [07:32, 05:17](1098 MB) +PASS -- TEST 'regional_restart_intel' [04:33, 02:53](1087 MB) +PASS -- TEST 'regional_decomp_intel' [07:31, 05:37](1091 MB) +PASS -- TEST 'regional_2threads_intel' [05:32, 03:23](1078 MB) +PASS -- TEST 'regional_noquilt_intel' [07:34, 05:18](1389 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:39, 05:16](1084 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:37, 05:24](1090 MB) +PASS -- TEST 'regional_wofs_intel' [08:36, 07:04](1901 MB) + +PASS -- COMPILE 'rrfs_intel' [11:10, 10:04] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:40, 07:52](1103 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:57, 04:07](1246 MB) +PASS -- TEST 'rap_decomp_intel' [10:38, 08:15](1034 MB) +PASS -- TEST 'rap_2threads_intel' [09:34, 07:22](1165 MB) +PASS -- TEST 'rap_restart_intel' [06:40, 04:10](1100 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:39, 07:49](1101 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:36, 08:15](1027 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:43, 05:54](1117 MB) +PASS -- TEST 'hrrr_control_intel' [05:35, 04:00](1035 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:31, 04:07](1030 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:29, 03:41](1102 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:26, 02:09](1002 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:42, 07:44](1093 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:24, 09:32](1984 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:22, 09:14](2059 MB) + +PASS -- COMPILE 'csawmg_intel' [11:10, 09:56] +PASS -- TEST 'control_csawmg_intel' [08:33, 06:13](1017 MB) +PASS -- TEST 'control_ras_intel' [05:19, 03:21](737 MB) + +PASS -- COMPILE 'wam_intel' [11:10, 10:02] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:42, 11:16](1653 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:10, 10:11] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:44, 02:55](1856 MB) +PASS -- TEST 'regional_control_faster_intel' [06:32, 04:52](1087 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 07:26] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:46, 02:14](1598 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:51, 02:14](1616 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:27, 03:09](825 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:25, 02:48](824 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:41, 04:22](1136 MB) +PASS -- TEST 'control_ras_debug_intel' [04:25, 02:56](837 MB) +PASS -- TEST 'control_diag_debug_intel' [04:52, 02:50](1681 MB) +PASS -- TEST 'control_debug_p8_intel' [04:46, 02:36](1896 MB) +PASS -- TEST 'regional_debug_intel' [19:43, 17:51](1104 MB) +PASS -- TEST 'rap_control_debug_intel' [07:24, 05:12](1184 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:20, 04:57](1209 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:21, 04:57](1206 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:21, 05:01](1214 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:22, 05:07](1167 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:32, 05:13](1299 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:23, 05:15](1212 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:20, 05:06](1210 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:21, 05:02](1219 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:21, 05:07](1208 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:21, 05:10](1221 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:21, 05:05](1211 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:21, 08:14](1210 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:24, 05:10](1224 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:21, 05:59](1218 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:22, 05:01](1209 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:37, 08:44](1219 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:10, 04:14] +PASS -- TEST 'control_csawmg_debug_gnu' [04:45, 02:25](719 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:10, 05:00] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:40, 13:40](1678 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:01] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:00, 03:55](1124 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:39, 06:32](1049 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:36, 03:24](979 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:30, 06:12](1081 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:30, 03:12](957 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:32, 03:37](919 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:38, 04:56](1034 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:26, 01:53](921 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:12, 10:07] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:50, 02:02](1189 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:42, 00:52](1105 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:11](1101 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 09:52] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:39, 04:16](977 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:29] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:21, 05:04](1098 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:22, 04:57](1084 MB) +PASS -- TEST 'conus13km_debug_intel' [15:49, 13:56](1231 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:46, 14:08](930 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:40, 07:51](1160 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:41, 14:06](1290 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:38] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:21, 05:03](1146 MB) + +PASS -- COMPILE 'hafsw_intel' [13:11, 11:34] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:11, 05:00](726 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:28, 05:42](1092 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:24, 07:01](811 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:18, 14:49](845 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:30, 18:44](861 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:54, 05:29](484 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:19, 06:46](509 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:41, 02:39](367 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:36, 07:14](465 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:42, 03:40](518 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:47, 03:30](519 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:49, 04:08](574 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:26, 01:13](400 MB) +PASS -- TEST 'gnv1_nested_intel' [06:31, 04:02](1734 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:11, 05:02] ( 1462 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:48, 13:08](583 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:26] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:59, 10:16](622 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:02, 10:17](837 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 11:41] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:29, 08:21](683 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:11, 10:46] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:20, 06:37](822 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:13, 06:38](800 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:53, 16:13](1216 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:37] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 02:46](1164 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:41](1104 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:58](1003 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:42](1030 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:45](1025 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 02:41](1177 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 02:48](1157 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:19, 02:40](1035 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:23, 06:20](1068 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:14, 06:21](1041 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 02:47](1140 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:18, 03:59](2455 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 04:01](2508 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:24] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 06:20](1094 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:55] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:16, 02:46](1163 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:05] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:55](261 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 01:04](327 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:26, 00:33](324 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:22] +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:33, 00:33](569 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:33, 00:18](458 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 10:50] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:02, 03:43](1983 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 10:17] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [10:59, 08:05](1986 MB) + +PASS -- COMPILE 'atml_intel' [12:11, 10:50] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:59, 04:21](1863 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:55, 04:23](1839 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:42, 02:25](1099 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:11, 05:39] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:53, 05:45](1885 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 10:56] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:47, 01:58](1926 MB) + +PASS -- COMPILE 'atmaero_intel' [12:11, 10:21] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:55, 04:08](3192 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:57, 04:59](3091 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:45, 05:01](3107 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:32] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_fbh_intel' [11:11, 09:54] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:29, 11:51](1083 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:11, 06:41] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:37, 08:32](1038 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:11, 06:49] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [07:39, 05:05](975 MB) + +PASS -- COMPILE 'atm_gnu' [06:10, 04:29] +PASS -- TEST 'control_c48_gnu' [11:36, 09:34](1512 MB) +PASS -- TEST 'control_stochy_gnu' [05:22, 03:30](493 MB) +PASS -- TEST 'control_ras_gnu' [07:21, 05:01](496 MB) +PASS -- TEST 'control_p8_gnu' [07:50, 05:14](1446 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [07:47, 05:10](1446 MB) +PASS -- TEST 'control_flake_gnu' [12:23, 10:28](536 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:10, 04:06] +PASS -- TEST 'rap_control_gnu' [13:31, 11:23](808 MB) +PASS -- TEST 'rap_decomp_gnu' [13:30, 11:34](808 MB) +PASS -- TEST 'rap_2threads_gnu' [12:35, 10:24](920 MB) +PASS -- TEST 'rap_restart_gnu' [07:42, 05:46](577 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:37, 11:21](808 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:32, 11:33](807 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:39, 08:29](579 MB) +PASS -- TEST 'hrrr_control_gnu' [07:36, 05:47](806 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:36, 05:49](829 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [07:30, 05:16](911 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:29, 05:53](839 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [05:29, 03:00](559 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:29, 03:00](653 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [13:41, 11:09](804 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:10, 03:50] +PASS -- TEST 'control_csawmg_gnu' [10:33, 08:37](738 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:10, 06:34] +PASS -- TEST 'control_diag_debug_gnu' [03:39, 01:46](1270 MB) +PASS -- TEST 'regional_debug_gnu' [12:34, 10:24](750 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:21, 02:37](821 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:21, 02:33](818 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:20, 02:33](820 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:20, 02:39](818 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:33, 02:51](934 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:21, 04:08](815 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [05:21, 02:43](809 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [05:20, 02:39](817 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:19, 01:37](455 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:19, 01:46](450 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:36, 01:34](1429 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:21, 02:36](821 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:21, 02:56](819 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:33, 04:22](821 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:10, 02:22] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:10, 04:07] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:33, 09:51](696 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:28, 05:12](694 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [11:28, 09:03](741 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:33, 04:45](740 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:27, 05:19](692 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:34, 07:19](550 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:24, 02:39](535 MB) +PASS -- TEST 'conus13km_control_gnu' [05:51, 03:10](863 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:40, 05:30](868 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:41, 01:49](547 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:10, 09:23] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:37, 05:56](719 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:10, 06:29] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:21, 02:31](712 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:21, 02:33](710 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:44, 06:51](885 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:40, 06:55](573 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [09:38, 07:42](883 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:38, 06:48](951 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:10, 06:30] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:23, 02:39](730 MB) + +PASS -- COMPILE 's2swa_gnu' [18:11, 16:39] + +PASS -- COMPILE 's2s_gnu' [17:11, 15:55] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [22:08, 19:05](1490 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:10, 03:03] + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:12, 15:46] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [33:01, 30:43](1447 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 02:54] + +PASS -- COMPILE 'datm_cdeps_gnu' [17:12, 15:39] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:17, 02:59](697 MB) SYNOPSIS: -Starting Date/Time: 20241113 04:07:04 -Ending Date/Time: 20241113 07:39:17 -Total Time: 03h:32m:32s +Starting Date/Time: 20241116 18:43:23 +Ending Date/Time: 20241116 21:04:04 +Total Time: 02h:20m:58s Compiles Completed: 61/61 -Tests Completed: 248/248 +Tests Completed: 249/249 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 b5b8ab641a..010ae22b57 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7 +1,7 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -a455d4df714c11207a7361bd79013093ef6e6a31 +df9325ac52a9219e80bc6d448ec0d297b6c8a591 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 49967251b83255bdac7ac2f9626d2714e8b83d07 FV3 (heads/develop) + 2429d661d1758c22935558df75f6b66bd710ac11 FV3 (remotes/origin/feature/lnd_iau) e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 002a886eeb14979a6811f89e885d2968cbfd9b70 FV3/ccpp/physics (EP4-893-g002a886e) + 4343656a098516517257c0913689f70a81579e74 FV3/ccpp/physics (EP4-1045-g4343656a) 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 @@ -26,8 +26,8 @@ Submodule hashes used in testing: 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) - 06c20998e59082e79529a8e728c7c3a43a050911 WW3 (6.07.1-385-g06c20998) + 2363beb39016660a157aac49d073f4e04c68c34d NOAHMP-interface/noahmp (remotes/origin/feature/lnd_iau) + abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -39,386 +39,386 @@ 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-20241112 -COMPARISON DIRECTORY: /work2/noaa/epic/nandoamstmp/hercules/stmp/nandoam/FV3_RT/rt_501024 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_3968593 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [14:11, 12:11] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [27:12, 15:13](2133 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 18:12] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [24:13, 17:57](1988 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:31, 18:04](2294 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:25, 06:47](1352 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:19, 19:12](1911 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:11, 18:12] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [22:41, 17:30](1985 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 05:35] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:13, 26:07](1973 MB) - -PASS -- COMPILE 's2swa_intel' [13:11, 11:58] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [28:06, 15:21](2211 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [28:13, 15:39](2207 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:24, 08:03](1966 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [28:09, 15:23](2227 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [12:20, 09:36](1731 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [26:05, 18:36](2560 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [28:06, 15:43](2189 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [17:09, 13:17](2099 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [28:14, 15:45](2215 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [21:43, 17:03](2970 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:14, 06:18](2903 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [27:19, 19:59](3823 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:37, 10:38](3635 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [16:03, 09:34](2105 MB) - -PASS -- COMPILE 's2sw_intel' [13:11, 11:35] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [21:00, 14:34](2020 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [17:08, 11:41](2116 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:24] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [21:01, 19:08](2237 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:25] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:59, 08:54](2048 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:11, 10:17] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:55, 05:54](2065 MB) - -PASS -- COMPILE 's2s_intel' [12:11, 10:33] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:38, 07:27](3024 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:40, 03:01](3015 MB) -PASS -- TEST 'cpld_restart_c48_intel' [09:41, 02:19](2470 MB) - -PASS -- COMPILE 's2swa_faster_intel' [13:11, 12:06] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [21:05, 15:02](2208 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 15:25] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [25:01, 23:06](2072 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:07, 11:53](1418 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:52, 26:42](1995 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:10, 04:33] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:52, 27:36](2005 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:11, 09:09] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:22, 02:57](707 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:30, 02:52](1582 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:34, 02:51](1609 MB) -PASS -- TEST 'control_latlon_intel' [05:28, 02:45](1586 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:36, 02:48](1596 MB) -PASS -- TEST 'control_c48_intel' [13:35, 10:33](1706 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:28, 05:54](829 MB) -PASS -- TEST 'control_c192_intel' [13:40, 10:26](1777 MB) -PASS -- TEST 'control_c384_intel' [21:20, 17:46](2019 MB) -PASS -- TEST 'control_c384gdas_intel' [10:48, 07:22](1485 MB) -PASS -- TEST 'control_stochy_intel' [03:19, 01:27](680 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:29, 00:57](535 MB) -PASS -- TEST 'control_lndp_intel' [03:20, 01:43](667 MB) -PASS -- TEST 'control_iovr4_intel' [03:20, 02:08](653 MB) -PASS -- TEST 'control_iovr5_intel' [03:23, 02:08](660 MB) -PASS -- TEST 'control_p8_intel' [06:47, 04:14](1876 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:55, 03:21](1900 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:51, 04:38](1904 MB) -PASS -- TEST 'control_restart_p8_intel' [04:45, 01:52](1150 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:42, 03:33](1891 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:45, 02:12](1186 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:49, 03:51](1873 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:44, 03:04](1956 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:31, 06:37](1889 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:59, 04:11](1977 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:47, 03:15](1903 MB) -PASS -- TEST 'merra2_thompson_intel' [04:54, 03:05](1898 MB) -PASS -- TEST 'regional_control_intel' [06:27, 04:36](1185 MB) -PASS -- TEST 'regional_restart_intel' [04:27, 02:36](1164 MB) -PASS -- TEST 'regional_decomp_intel' [06:28, 04:51](1180 MB) -PASS -- TEST 'regional_2threads_intel' [04:23, 03:00](1155 MB) -PASS -- TEST 'regional_noquilt_intel' [07:28, 05:07](1522 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:29, 05:11](1192 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:30, 04:42](1189 MB) -PASS -- TEST 'regional_wofs_intel' [08:29, 06:02](2087 MB) - -PASS -- COMPILE 'rrfs_intel' [10:11, 08:58] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:53, 06:47](1176 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:46, 04:01](1327 MB) -PASS -- TEST 'rap_decomp_intel' [08:33, 06:57](1138 MB) -PASS -- TEST 'rap_2threads_intel' [08:34, 06:17](1334 MB) -PASS -- TEST 'rap_restart_intel' [05:57, 03:30](1154 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:48, 06:38](1222 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:33, 07:15](1139 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:53, 06:30](1186 MB) -PASS -- TEST 'hrrr_control_intel' [05:48, 03:27](1064 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:39, 03:32](1047 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:38, 03:12](1108 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:22, 01:53](1019 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:56, 06:45](1209 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [14:22, 12:23](1997 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:21, 11:48](2188 MB) - -PASS -- COMPILE 'csawmg_intel' [10:11, 08:23] -PASS -- TEST 'control_csawmg_intel' [07:26, 05:31](1045 MB) -PASS -- TEST 'control_ras_intel' [04:19, 02:53](819 MB) - -PASS -- COMPILE 'wam_intel' [10:11, 08:48] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [12:36, 10:12](1652 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:11, 08:57] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:50, 02:55](1903 MB) -PASS -- TEST 'regional_control_faster_intel' [07:29, 05:17](1192 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [12:11, 07:00] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:31, 01:51](1616 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:38, 01:51](1626 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:20, 02:33](844 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:19, 03:09](841 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:24, 04:37](1144 MB) -PASS -- TEST 'control_ras_debug_intel' [04:18, 02:27](846 MB) -PASS -- TEST 'control_diag_debug_intel' [04:31, 02:21](1692 MB) -PASS -- TEST 'control_debug_p8_intel' [04:32, 02:18](1902 MB) -PASS -- TEST 'regional_debug_intel' [16:27, 14:41](1144 MB) -PASS -- TEST 'rap_control_debug_intel' [05:18, 04:02](1233 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:22, 04:07](1223 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:18, 04:09](1235 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:22, 04:01](1225 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:21, 04:02](1232 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:25, 04:21](1303 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:18, 04:09](1231 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:19, 04:14](1226 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:18, 04:09](1239 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:19, 05:13](1232 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:19, 05:07](1229 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:18, 04:05](1221 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:18, 06:42](1226 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:21, 04:03](1219 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:22, 05:00](1222 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:19, 04:09](1227 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:49, 07:01](1234 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [09:11, 04:31] -PASS -- TEST 'control_csawmg_debug_gnu' [05:30, 03:06](1037 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:12, 04:00] ( 837 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:12, 08:31] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:45, 03:16](1240 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:46, 05:21](1124 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:56, 02:55](1032 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:34, 05:15](1240 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:49, 03:27](1017 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:37, 03:04](991 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [14:53, 04:08](1084 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:24, 01:37](962 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:12, 08:33] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:37, 02:04](1293 MB) -PASS -- TEST 'conus13km_2threads_intel' [10:31, 00:55](1185 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [10:32, 01:17](1141 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:12, 08:36] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:32, 04:19](1089 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 03:55] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:17, 04:24](1096 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:18, 04:04](1107 MB) -PASS -- TEST 'conus13km_debug_intel' [13:32, 12:07](1341 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:32, 15:18](999 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:32, 08:17](1236 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:30, 11:41](1406 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:13, 04:11] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:23, 04:42](1166 MB) - -PASS -- COMPILE 'hafsw_intel' [11:12, 09:54] ( 1 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:05, 05:35](842 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:21, 06:31](1246 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:15, 07:40](914 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [20:07, 17:27](927 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:14, 17:04](970 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [15:53, 07:15](592 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [17:17, 09:02](605 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [11:50, 03:38](441 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:58, 09:37](549 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [14:46, 04:47](605 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [13:46, 04:39](604 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:50, 05:13](651 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [11:27, 01:46](460 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:11, 04:29] ( 1462 warnings 1490 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [21:45, 13:13](611 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [12:11, 10:11] ( 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [28:52, 18:42](750 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [31:01, 18:38](798 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:11, 10:16] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [26:23, 14:17](811 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:11, 09:48] ( 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [16:09, 05:44](919 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [16:07, 05:46](889 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [24:45, 16:27](1343 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:11, 05:40] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [10:19, 02:16](1161 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:20](1113 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [10:16, 02:08](1028 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [10:17, 02:12](1014 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [09:16, 02:12](1019 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [09:17, 02:14](1153 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [09:16, 02:11](1155 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [09:16, 02:06](1020 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:59, 04:58](1162 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:51, 04:55](1146 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [08:14, 02:11](1155 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [09:16, 03:04](2452 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [09:21, 03:08](2406 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:29] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:16, 05:13](1078 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:51] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [08:16, 02:49](1151 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:48] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:27, 01:01](336 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:22, 00:51](572 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:24, 00:32](572 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:11, 09:26] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:53, 04:16](2020 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:11, 08:55] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:40, 08:39](2025 MB) - -PASS -- COMPILE 'atml_intel' [11:11, 09:28] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:00, 06:28](1897 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:58, 06:06](1890 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:40, 03:58](1144 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:11, 04:28] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:01, 06:03](1917 MB) - -PASS -- COMPILE 'atmw_intel' [11:11, 09:53] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:56, 02:51](1934 MB) - -PASS -- COMPILE 'atmaero_intel' [11:12, 08:37] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:47, 05:50](2017 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:47, 04:33](1788 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:44, 06:16](1797 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:11, 03:51] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [20:22, 16:59](4549 MB) - -PASS -- COMPILE 'atm_fbh_intel' [10:12, 08:25] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [14:24, 09:48](1072 MB) - -PASS -- COMPILE 'datm_cdeps_intelllvm' [14:11, 13:00] -PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [05:17, 02:16](1158 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [03:11, 01:42] -PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [10:17, 06:04](1081 MB) - -PASS -- COMPILE 'atm_gnu' [06:11, 04:57] -PASS -- TEST 'control_c48_gnu' [11:37, 07:43](1520 MB) -PASS -- TEST 'control_stochy_gnu' [04:22, 02:23](717 MB) -PASS -- TEST 'control_ras_gnu' [06:20, 03:55](725 MB) -PASS -- TEST 'control_p8_gnu' [07:58, 04:59](1699 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [07:44, 04:52](1716 MB) -PASS -- TEST 'control_flake_gnu' [07:22, 04:42](809 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:11, 04:09] -PASS -- TEST 'rap_control_gnu' [11:34, 08:24](1073 MB) -PASS -- TEST 'rap_decomp_gnu' [10:35, 08:30](1072 MB) -PASS -- TEST 'rap_2threads_gnu' [09:46, 07:30](1129 MB) -PASS -- TEST 'rap_restart_gnu' [07:04, 04:15](876 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [10:47, 08:29](1071 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:33, 08:26](1072 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:56, 06:12](877 MB) -PASS -- TEST 'hrrr_control_gnu' [08:48, 04:27](1061 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [08:35, 04:22](1126 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [08:35, 03:58](1022 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [08:34, 04:21](1058 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:20, 02:19](878 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:20, 02:12](925 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [14:52, 10:43](1066 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:10, 04:07] -PASS -- TEST 'control_csawmg_gnu' [11:25, 07:56](1070 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:10, 07:44] -PASS -- TEST 'control_diag_debug_gnu' [04:28, 01:41](1621 MB) -PASS -- TEST 'regional_debug_gnu' [09:26, 07:52](1121 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:20, 02:07](1091 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:19, 02:37](1081 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:19, 02:15](1097 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [05:18, 02:17](1086 MB) -PASS -- TEST 'rap_diag_debug_gnu' [05:29, 02:12](1263 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:20, 03:16](1087 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [05:20, 02:14](1089 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [05:19, 02:04](1083 MB) -PASS -- TEST 'control_ras_debug_gnu' [04:19, 01:24](722 MB) -PASS -- TEST 'control_stochy_debug_gnu' [04:18, 01:27](718 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:32, 01:52](1694 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:20, 02:06](1093 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:19, 02:11](1091 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:49, 03:46](1093 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:58] -PASS -- TEST 'control_wam_debug_gnu' [07:34, 05:37](1557 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:03] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:31, 10:00](955 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:55, 05:44](940 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:43, 09:05](958 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:58, 04:01](879 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:36, 04:46](940 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:38, 07:04](854 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:23, 02:25](853 MB) -PASS -- TEST 'conus13km_control_gnu' [04:37, 02:47](1255 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:31, 01:12](1161 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:30, 01:36](921 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:12] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:30, 06:25](980 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [09:11, 07:40] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:18, 02:10](970 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:18, 02:03](963 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:31, 06:07](1276 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [09:33, 06:30](968 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [06:28, 04:07](1184 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [11:28, 08:17](1347 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:11, 06:58] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [05:20, 02:12](995 MB) - -PASS -- COMPILE 's2swa_gnu' [20:11, 18:53] - -PASS -- COMPILE 's2s_gnu' [18:11, 16:14] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [18:02, 15:26](2719 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [08:11, 06:43] - -PASS -- COMPILE 's2sw_pdlib_gnu' [18:11, 16:16] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [45:01, 41:58](2884 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [06:11, 04:57] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [17:49, 15:47](3023 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [18:11, 17:08] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:16, 02:24](771 MB) +* (-r) - USE ROCOTO + +PASS -- COMPILE 's2swa_32bit_intel' [12:07, 12:07] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:45, 14:07](2139 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:08, 17:08] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:37, 17:45](1989 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:07, 18:05](2303 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:11, 07:05](1359 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:19, 18:27](1900 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:21, 16:21] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:32, 17:11](1982 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:09, 06:09] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:46, 24:52](1965 MB) + +PASS -- COMPILE 's2swa_intel' [12:17, 12:17] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [14:46, 14:06](2208 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:45, 14:08](2197 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:18, 07:30](1975 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:08, 14:24](2221 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:53, 07:48](1733 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [17:04, 16:34](2553 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:56, 14:13](2192 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:04, 12:16](2094 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:19, 14:34](2197 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [16:50, 15:27](2965 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [07:51, 06:04](2915 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [21:06, 16:24](3814 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:31, 10:25](3641 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:39, 06:56](2105 MB) + +PASS -- COMPILE 's2sw_intel' [11:01, 11:01] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [14:11, 13:38](2011 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:06, 10:32](2108 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:54, 05:54] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [19:54, 19:07](2214 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:37, 05:37] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:28, 07:49](2040 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:21, 10:21] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:43, 04:03](2058 MB) + +PASS -- COMPILE 's2s_intel' [10:32, 10:32] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [06:34, 06:07](3030 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [02:15, 01:48](3009 MB) +PASS -- TEST 'cpld_restart_c48_intel' [01:24, 01:02](2469 MB) + +PASS -- COMPILE 's2swa_faster_intel' [12:49, 12:48] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [15:14, 14:31](2201 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [15:47, 15:47] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:59, 23:17](2061 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:14, 12:18](1429 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:33, 25:57](2004 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:39, 04:38] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:29, 27:52](2012 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:55, 09:55] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:09, 02:57](718 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:09, 02:48](1583 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:12, 02:48](1592 MB) +PASS -- TEST 'control_latlon_intel' [03:08, 02:50](1600 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:19, 02:56](1579 MB) +PASS -- TEST 'control_c48_intel' [11:21, 11:01](1704 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:25, 06:13](833 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [11:15, 10:55](1708 MB) +PASS -- TEST 'control_c192_intel' [11:06, 10:29](1756 MB) +PASS -- TEST 'control_c384_intel' [13:06, 11:59](2002 MB) +PASS -- TEST 'control_c384gdas_intel' [08:55, 07:15](1503 MB) +PASS -- TEST 'control_stochy_intel' [01:35, 01:24](660 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:14, 00:55](526 MB) +PASS -- TEST 'control_lndp_intel' [01:39, 01:29](662 MB) +PASS -- TEST 'control_iovr4_intel' [02:23, 02:10](667 MB) +PASS -- TEST 'control_iovr5_intel' [02:27, 02:14](659 MB) +PASS -- TEST 'control_p8_intel' [04:01, 03:19](1887 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:23, 02:44](1904 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:44, 03:04](1885 MB) +PASS -- TEST 'control_restart_p8_intel' [02:22, 01:50](1145 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:36, 03:02](1869 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:25, 01:49](1221 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:52, 03:14](1865 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:37, 03:00](1961 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:10, 05:45](1886 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:25, 03:42](1969 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:17, 02:40](1901 MB) +PASS -- TEST 'merra2_thompson_intel' [03:43, 02:56](1905 MB) +PASS -- TEST 'regional_control_intel' [04:53, 04:36](1190 MB) +PASS -- TEST 'regional_restart_intel' [02:54, 02:39](1161 MB) +PASS -- TEST 'regional_decomp_intel' [05:12, 04:56](1172 MB) +PASS -- TEST 'regional_2threads_intel' [03:19, 03:02](1142 MB) +PASS -- TEST 'regional_noquilt_intel' [05:08, 04:54](1517 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:16, 04:52](1193 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [04:53, 04:36](1188 MB) +PASS -- TEST 'regional_wofs_intel' [06:13, 05:57](2057 MB) + +PASS -- COMPILE 'rrfs_intel' [09:11, 09:11] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:15, 06:39](1184 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:05, 03:31](1349 MB) +PASS -- TEST 'rap_decomp_intel' [07:36, 06:59](1144 MB) +PASS -- TEST 'rap_2threads_intel' [07:04, 06:25](1360 MB) +PASS -- TEST 'rap_restart_intel' [04:25, 03:37](1124 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:58, 07:21](1225 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:13, 07:36](1144 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:50, 05:55](1209 MB) +PASS -- TEST 'hrrr_control_intel' [04:11, 03:32](1071 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:11, 03:35](1024 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [08:53, 08:02](1109 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:07, 01:58](1030 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:34, 06:45](1197 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:33, 09:21](1998 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:29, 09:17](2199 MB) + +PASS -- COMPILE 'csawmg_intel' [09:03, 09:01] +PASS -- TEST 'control_csawmg_intel' [05:59, 05:41](1052 MB) +PASS -- TEST 'control_ras_intel' [03:20, 03:07](823 MB) + +PASS -- COMPILE 'wam_intel' [08:48, 08:47] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [10:37, 10:07](1660 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:49, 09:48] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:02, 02:23](1892 MB) +PASS -- TEST 'regional_control_faster_intel' [04:40, 04:23](1188 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:28, 09:26] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:18, 01:55](1599 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:17, 01:49](1608 MB) +PASS -- TEST 'control_stochy_debug_intel' [02:48, 02:37](846 MB) +PASS -- TEST 'control_lndp_debug_intel' [02:35, 02:25](839 MB) +PASS -- TEST 'control_csawmg_debug_intel' [03:54, 03:38](1151 MB) +PASS -- TEST 'control_ras_debug_intel' [02:39, 02:28](838 MB) +PASS -- TEST 'control_diag_debug_intel' [02:55, 02:28](1688 MB) +PASS -- TEST 'control_debug_p8_intel' [02:44, 02:16](1925 MB) +PASS -- TEST 'regional_debug_intel' [14:58, 14:40](1149 MB) +PASS -- TEST 'rap_control_debug_intel' [04:24, 04:14](1209 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:16, 04:06](1226 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:23, 04:07](1222 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:17, 04:05](1220 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:16, 04:07](1225 MB) +PASS -- TEST 'rap_diag_debug_intel' [04:36, 04:21](1309 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:22, 04:10](1226 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:22, 04:10](1222 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:18, 04:07](1220 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:22, 04:09](1224 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:14, 04:06](1216 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:23, 04:15](1224 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [06:51, 06:38](1220 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:18, 04:05](1219 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:11, 05:00](1224 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:22, 04:11](1227 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:42, 07:05](1227 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:58, 04:58] +PASS -- TEST 'control_csawmg_debug_gnu' [02:17, 01:56](1038 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:26, 04:26] ( 837 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:09, 09:09] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [03:53, 03:17](1222 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:03, 05:30](1162 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:39, 02:55](1015 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:50, 05:16](1277 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:30, 02:42](1015 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:49, 03:03](974 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:00, 04:14](1085 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [01:59, 01:39](978 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:32, 08:31] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:04, 01:38](1278 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:03, 00:43](1185 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:23, 01:02](1128 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:27, 08:27] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:11, 04:48](1074 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:38, 03:38] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:30, 04:19](1093 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:23, 04:14](1100 MB) +PASS -- TEST 'conus13km_debug_intel' [12:19, 11:59](1342 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [12:40, 12:12](998 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [07:54, 07:34](1241 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:12, 11:48](1393 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:41, 03:41] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:27, 04:10](1166 MB) + +PASS -- COMPILE 'hafsw_intel' [10:32, 10:32] ( 1 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:28, 05:34](841 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:52, 05:36](1247 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:51, 07:49](916 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:20, 14:22](946 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:42, 17:29](969 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:54, 07:19](596 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:17, 09:12](608 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:13, 03:41](439 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:38, 09:46](549 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:36, 05:01](597 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:23, 04:46](597 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:48, 05:04](650 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:57, 01:43](461 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:08, 04:07] ( 1462 warnings 1490 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:35, 13:51](621 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [09:38, 09:38] ( 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [20:04, 19:20](745 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:47, 18:55](800 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:15, 10:15] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:01, 11:45](840 MB) + +PASS -- COMPILE 'hafs_all_intel' [09:32, 09:32] ( 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [06:30, 05:42](911 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:26, 06:33](850 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:07, 16:32](1340 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:52, 06:52] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:45, 02:22](1142 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:38, 01:21](1101 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:11, 02:06](1018 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:08, 02:04](1026 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:10, 02:06](1017 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:14, 02:09](1153 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:17, 02:12](1133 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:14, 02:09](1015 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:29, 04:53](1165 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:26, 04:52](1158 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:13, 02:09](1151 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:05, 02:59](2396 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:09, 03:03](2403 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:41, 03:41] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:08, 05:04](1086 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [05:37, 05:37] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:13, 02:08](1135 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [00:54, 00:54] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:09, 00:53](332 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:01, 00:50](574 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:54, 00:37](575 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:32, 09:32] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:02, 03:22](2013 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [09:16, 09:15] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:39, 08:53](2027 MB) + +PASS -- COMPILE 'atml_intel' [09:41, 09:40] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:31, 07:19](1885 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:03, 06:52](1895 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:56, 04:47](1141 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:00, 05:00] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:30, 05:39](1922 MB) + +PASS -- COMPILE 'atmw_intel' [09:45, 09:45] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:23, 01:44](1935 MB) + +PASS -- COMPILE 'atmaero_intel' [09:18, 09:18] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:15, 04:19](2012 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:07, 05:07](1776 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:38, 04:54](1781 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [03:59, 03:59] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [18:36, 17:15](4558 MB) + +PASS -- COMPILE 'atm_fbh_intel' [08:22, 08:22] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:35, 10:21](1075 MB) + +PASS -- COMPILE 'datm_cdeps_intelllvm' [09:46, 09:44] +PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [03:05, 02:59](1140 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [01:51, 01:51] +PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [06:11, 06:04](1083 MB) + +PASS -- COMPILE 'atm_gnu' [05:33, 05:25] +PASS -- TEST 'control_c48_gnu' [08:39, 08:08](1519 MB) +PASS -- TEST 'control_stochy_gnu' [03:13, 02:55](716 MB) +PASS -- TEST 'control_ras_gnu' [05:11, 04:55](723 MB) +PASS -- TEST 'control_p8_gnu' [06:52, 05:48](1743 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:22, 05:28](1743 MB) +PASS -- TEST 'control_flake_gnu' [06:22, 06:05](802 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:18, 05:10] +PASS -- TEST 'rap_control_gnu' [09:10, 08:30](1071 MB) +PASS -- TEST 'rap_decomp_gnu' [09:06, 08:24](1071 MB) +PASS -- TEST 'rap_2threads_gnu' [08:19, 07:39](1123 MB) +PASS -- TEST 'rap_restart_gnu' [04:48, 04:07](876 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [09:02, 08:17](1069 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:07, 08:23](1067 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:59, 06:18](877 MB) +PASS -- TEST 'hrrr_control_gnu' [05:08, 04:25](1057 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:00, 04:22](1120 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:23, 03:44](1014 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:05, 04:25](1053 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [02:19, 02:10](874 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:27, 02:10](923 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [08:52, 08:03](1064 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:22, 04:22] +PASS -- TEST 'control_csawmg_gnu' [07:38, 07:22](1050 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:41, 06:40] +PASS -- TEST 'control_diag_debug_gnu' [01:36, 01:15](1617 MB) +PASS -- TEST 'regional_debug_gnu' [06:51, 06:34](1106 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:21, 02:11](1082 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:10, 02:01](1076 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:09, 02:02](1080 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:14, 02:03](1083 MB) +PASS -- TEST 'rap_diag_debug_gnu' [02:24, 02:09](1291 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:35, 03:26](1080 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:10, 02:01](1090 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:07, 01:59](1079 MB) +PASS -- TEST 'control_ras_debug_gnu' [01:19, 01:11](715 MB) +PASS -- TEST 'control_stochy_debug_gnu' [01:24, 01:16](716 MB) +PASS -- TEST 'control_debug_p8_gnu' [01:43, 01:20](1693 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:12, 02:00](1084 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [02:22, 02:15](1086 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [03:54, 03:19](1084 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:18, 03:17] +PASS -- TEST 'control_wam_debug_gnu' [05:43, 05:22](1550 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:50, 04:50] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:05, 07:31](950 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:33, 03:52](938 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:22, 06:49](982 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:26, 03:37](885 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:51, 04:07](937 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:33, 05:55](854 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:33, 02:14](853 MB) +PASS -- TEST 'conus13km_control_gnu' [03:07, 02:41](1255 MB) +PASS -- TEST 'conus13km_2threads_gnu' [01:27, 01:07](1160 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [01:50, 01:30](931 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:06, 09:06] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:00, 04:41](978 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:11, 06:06] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:07, 01:59](964 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:08, 01:58](958 MB) +PASS -- TEST 'conus13km_debug_gnu' [06:03, 05:32](1274 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [06:06, 05:39](942 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [03:48, 03:28](1179 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:19, 05:55](1341 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [06:34, 06:33] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:11, 02:03](1002 MB) + +PASS -- COMPILE 's2swa_gnu' [16:55, 16:55] + +PASS -- COMPILE 's2s_gnu' [16:17, 16:17] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [15:30, 14:50](3062 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:23, 04:22] + +PASS -- COMPILE 's2sw_pdlib_gnu' [16:13, 16:12] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [40:18, 39:39](3038 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:39, 03:38] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:48, 15:06](3023 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [15:55, 15:55] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [02:24, 02:19](771 MB) SYNOPSIS: -Starting Date/Time: 20241112 22:08:11 -Ending Date/Time: 20241113 00:26:45 -Total Time: 02h:19m:28s +Starting Date/Time: 20241116 16:59:31 +Ending Date/Time: 20241116 21:52:53 +Total Time: 04h:54m:21s Compiles Completed: 60/60 -Tests Completed: 247/247 +Tests Completed: 248/248 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 4a1cb806aa..22d9eaa3c9 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -a455d4df714c11207a7361bd79013093ef6e6a31 +df9325ac52a9219e80bc6d448ec0d297b6c8a591 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 49967251b83255bdac7ac2f9626d2714e8b83d07 FV3 (heads/develop) + 2429d661d1758c22935558df75f6b66bd710ac11 FV3 (remotes/origin/feature/lnd_iau) e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 002a886eeb14979a6811f89e885d2968cbfd9b70 FV3/ccpp/physics (EP4-893-g002a886e) + 4343656a098516517257c0913689f70a81579e74 FV3/ccpp/physics (EP4-1045-g4343656a) 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 @@ -26,8 +26,8 @@ Submodule hashes used in testing: 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) - 06c20998e59082e79529a8e728c7c3a43a050911 WW3 (6.07.1-385-g06c20998) + 2363beb39016660a157aac49d073f4e04c68c34d NOAHMP-interface/noahmp (remotes/origin/feature/lnd_iau) + abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -39,258 +39,258 @@ 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-20241112 -COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1054341 +COMPARISON DIRECTORY: /lfs5/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_2588667 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: h-nems -* (-l) - USE CONFIG FILE: rt.conf +* (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [01:26, 43:11] ( 1 warnings 1388 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [32:55, 13:38](2027 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [06:26, 48:39] ( 1 warnings 1435 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [45:46, 24:28](1887 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [35:26, 26:19](2011 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [19:16, 10:01](1140 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [48:41, 27:51](1858 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [11:29, 53:32] ( 1 warnings 1432 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [43:28, 24:14](1881 MB) - -PASS -- COMPILE 's2swa_intel' [01:26, 43:52] ( 1 warnings 1407 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [28:49, 16:59](2068 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [37:01, 16:58](2069 MB) -PASS -- TEST 'cpld_restart_p8_intel' [12:31, 09:00](1707 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [36:48, 16:59](2073 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [32:33, 09:11](1732 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [28:43, 16:31](2331 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [36:47, 17:11](2042 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [25:55, 14:06](2017 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [37:03, 16:57](2060 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [28:45, 09:12](2016 MB) - -PASS -- COMPILE 's2sw_intel' [59:26, 41:24] ( 1 warnings 1292 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [01:32, 09:49](1908 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [28:00, 14:09](1985 MB) - -PASS -- COMPILE 's2swa_debug_intel' [57:19, 06:06] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [03:54, 27:37](2099 MB) - -PASS -- COMPILE 's2sw_debug_intel' [24:32, 05:58] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [19:33, 11:46](1921 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [56:38, 37:22] ( 1010 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [43:20, 05:31](1969 MB) - -PASS -- COMPILE 's2s_intel' [51:38, 37:30] ( 1 warnings 1033 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [17:49, 10:18](3020 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [29:54, 03:02](3010 MB) -PASS -- TEST 'cpld_restart_c48_intel' [09:53, 01:45](2466 MB) - -PASS -- COMPILE 's2swa_faster_intel' [47:48, 32:11] ( 1 warnings 1623 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [44:49, 16:24](2060 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:33, 46:15] ( 1 warnings 1352 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [52:17, 33:23](1922 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [34:21, 16:37](1140 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [47:19, 39:25](1909 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:11, 06:01] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [02:30, 38:34](1939 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [00:25, 37:37] ( 1 warnings 1116 remarks ) -PASS -- TEST 'control_flake_intel' [46:33, 04:43](651 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [45:51, 04:34](1544 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [45:57, 04:41](1546 MB) -PASS -- TEST 'control_latlon_intel' [45:50, 04:33](1535 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [45:58, 04:38](1529 MB) -PASS -- TEST 'control_c48_intel' [33:52, 18:08](1706 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [26:36, 10:14](825 MB) -PASS -- TEST 'control_c192_intel' [58:06, 16:06](1698 MB) -PASS -- TEST 'control_c384_intel' [06:06, 23:26](1817 MB) -PASS -- TEST 'control_c384gdas_intel' [56:53, 13:39](1008 MB) -PASS -- TEST 'control_stochy_intel' [43:34, 02:28](598 MB) -PASS -- TEST 'control_stochy_restart_intel' [18:30, 01:23](438 MB) -PASS -- TEST 'control_lndp_intel' [43:34, 02:22](602 MB) -PASS -- TEST 'control_iovr4_intel' [44:34, 03:35](598 MB) -PASS -- TEST 'control_iovr5_intel' [43:31, 03:35](599 MB) -PASS -- TEST 'control_p8_intel' [43:04, 05:00](1825 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [21:06, 03:54](1835 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [25:02, 04:45](1827 MB) -PASS -- TEST 'control_restart_p8_intel' [16:58, 02:42](1048 MB) -PASS -- TEST 'control_noqr_p8_intel' [19:55, 04:43](1818 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [18:57, 02:33](1072 MB) -PASS -- TEST 'control_decomp_p8_intel' [17:54, 04:53](1822 MB) -PASS -- TEST 'control_2threads_p8_intel' [15:53, 04:37](1910 MB) -PASS -- TEST 'control_p8_lndp_intel' [19:43, 08:37](1831 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [27:54, 05:19](1882 MB) -PASS -- TEST 'control_p8_mynn_intel' [26:53, 04:05](1844 MB) -PASS -- TEST 'merra2_thompson_intel' [25:51, 04:28](1841 MB) -PASS -- TEST 'regional_control_intel' [17:39, 07:15](1013 MB) -PASS -- TEST 'regional_restart_intel' [16:37, 03:51](1001 MB) -PASS -- TEST 'regional_decomp_intel' [13:39, 07:37](997 MB) -PASS -- TEST 'regional_2threads_intel' [20:38, 04:29](1004 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [11:43, 07:08](1006 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [12:34, 07:08](1007 MB) - -PASS -- COMPILE 'rrfs_intel' [36:17, 34:43] ( 3 warnings 1092 remarks ) -PASS -- TEST 'rap_control_intel' [41:56, 10:03](990 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [25:08, 05:55](1170 MB) -PASS -- TEST 'rap_decomp_intel' [42:53, 10:40](982 MB) -PASS -- TEST 'rap_2threads_intel' [41:56, 09:33](1076 MB) -PASS -- TEST 'rap_restart_intel' [20:49, 05:20](980 MB) -PASS -- TEST 'rap_sfcdiff_intel' [41:55, 10:01](983 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [42:56, 10:39](972 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [22:47, 07:40](992 MB) -PASS -- TEST 'hrrr_control_intel' [50:55, 05:26](985 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [50:55, 05:40](976 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [50:01, 05:03](1046 MB) -PASS -- TEST 'hrrr_control_restart_intel' [16:31, 02:53](919 MB) -PASS -- TEST 'rrfs_v1beta_intel' [38:05, 09:52](985 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [41:40, 13:20](1933 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [40:39, 12:51](1933 MB) - -PASS -- COMPILE 'csawmg_intel' [36:18, 34:40] ( 1091 remarks ) -PASS -- TEST 'control_csawmg_intel' [52:54, 08:26](964 MB) -PASS -- TEST 'control_ras_intel' [32:34, 04:21](671 MB) - -PASS -- COMPILE 'wam_intel' [42:18, 35:29] ( 994 remarks ) -PASS -- TEST 'control_wam_intel' [29:55, 14:27](1619 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [56:22, 37:28] ( 1294 remarks ) -PASS -- TEST 'control_p8_faster_intel' [19:53, 03:37](1831 MB) -PASS -- TEST 'regional_control_faster_intel' [22:37, 06:35](1007 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [53:21, 08:42] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [23:46, 02:51](1568 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [22:47, 02:43](1572 MB) -PASS -- TEST 'control_stochy_debug_intel' [24:26, 03:57](774 MB) -PASS -- TEST 'control_lndp_debug_intel' [14:26, 03:30](776 MB) -PASS -- TEST 'control_csawmg_debug_intel' [23:40, 05:32](1089 MB) -PASS -- TEST 'control_ras_debug_intel' [20:32, 03:34](786 MB) -PASS -- TEST 'control_diag_debug_intel' [19:45, 03:30](1631 MB) -PASS -- TEST 'control_debug_p8_intel' [19:45, 03:23](1849 MB) -PASS -- TEST 'regional_debug_intel' [37:43, 22:11](1044 MB) -PASS -- TEST 'rap_control_debug_intel' [21:26, 06:17](1164 MB) -PASS -- TEST 'hrrr_control_debug_intel' [21:34, 06:14](1158 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [18:26, 06:15](1165 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [16:26, 06:16](1163 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [15:27, 06:16](1164 MB) -PASS -- TEST 'rap_diag_debug_intel' [15:39, 06:32](1249 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [14:27, 06:22](1166 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [14:24, 06:21](1163 MB) -PASS -- TEST 'rap_lndp_debug_intel' [14:24, 06:17](1169 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [59:37, 06:32](1166 MB) -PASS -- TEST 'rap_noah_debug_intel' [59:36, 06:28](1162 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [59:34, 06:40](1185 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [03:38, 10:27](1164 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [59:35, 06:27](1167 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [58:35, 07:50](1165 MB) -PASS -- TEST 'rap_flake_debug_intel' [52:36, 06:07](1163 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [56:56, 11:06](1174 MB) - -PASS -- COMPILE 'wam_debug_intel' [47:20, 05:35] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [30:44, 16:37](1635 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [50:17, 30:54] ( 3 warnings 1026 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [51:14, 05:38](1042 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [53:55, 08:36](906 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [49:46, 04:44](866 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [53:50, 08:22](947 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [47:52, 04:27](898 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [47:50, 04:59](855 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [27:28, 06:12](896 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [27:07, 02:20](836 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [00:21, 32:18] ( 3 warnings 1199 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:29, 02:38](1098 MB) -PASS -- TEST 'conus13km_2threads_intel' [27:56, 01:11](1038 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [26:52, 01:27](1008 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [45:17, 31:44] ( 3 warnings 1046 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [56:29, 05:26](907 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [16:11, 05:27] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [48:34, 06:28](1040 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [48:36, 06:20](1035 MB) -PASS -- TEST 'conus13km_debug_intel' [00:08, 18:03](1152 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [58:59, 18:02](857 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [02:01, 10:15](1073 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:09, 17:33](1215 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [22:13, 05:12] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [02:42, 06:12](1084 MB) - -PASS -- COMPILE 'hafsw_intel' [47:17, 39:51] ( 1 warnings 1426 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [13:27, 07:09](700 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [12:36, 06:31](1071 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [39:26, 08:55](757 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [33:45, 15:38](788 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [25:51, 19:24](805 MB) -PASS -- TEST 'gnv1_nested_intel' [23:07, 05:54](1669 MB) - -PASS -- COMPILE 'hafs_all_intel' [34:36, 36:32] ( 1273 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:43, 08:27](752 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:48, 08:34](734 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [03:28, 08:20] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [31:49, 03:35](1073 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [06:27, 02:13](1045 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [29:48, 03:31](941 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [31:49, 03:32](933 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [29:49, 03:34](931 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [31:49, 03:36](1071 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [31:49, 03:37](1073 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [31:49, 03:28](943 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [30:40, 07:41](890 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [38:41, 07:37](851 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [31:46, 03:36](1085 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [27:48, 05:05](2414 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [33:49, 05:07](2370 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:38, 03:23] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [33:28, 08:13](1014 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [58:50, 08:17] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [27:28, 03:37](1071 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [31:34, 01:53] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [27:39, 01:06](236 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [26:35, 01:00](262 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:31, 00:36](261 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [04:31, 36:41] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [02:44, 04:54](1874 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [39:25, 35:58] ( 1 warnings 1020 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:31, 10:32](1903 MB) - -PASS -- COMPILE 'atml_intel' [03:23, 37:28] ( 8 warnings 1157 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [58:33, 05:40](1859 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [58:32, 05:38](1826 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [18:57, 03:02](1066 MB) - -PASS -- COMPILE 'atml_debug_intel' [32:14, 06:19] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:16, 07:11](1884 MB) - -PASS -- COMPILE 'atmw_intel' [59:21, 37:53] ( 1268 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [52:18, 02:34](1856 MB) - -PASS -- COMPILE 'atmaero_intel' [40:17, 36:21] ( 1098 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [47:20, 05:18](1928 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [48:22, 06:23](1708 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [49:14, 06:29](1717 MB) - -PASS -- COMPILE 'atm_fbh_intel' [28:34, 31:28] ( 3 warnings 996 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [57:49, 15:12](1025 MB) +PASS -- COMPILE 's2swa_32bit_intel' [45:19, 43:35] ( 1 warnings 1396 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:26, 13:36](2020 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:19, 47:36] ( 1 warnings 1443 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [25:21, 22:46](1882 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:29, 24:00](2000 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:06, 09:39](1138 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:11, 25:52](1844 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [54:19, 52:56] ( 1 warnings 1440 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [23:55, 22:12](1870 MB) + +PASS -- COMPILE 's2swa_intel' [46:19, 44:20] ( 1 warnings 1415 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [19:09, 17:09](2069 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:30, 17:04](2076 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:30, 08:52](1718 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [20:14, 17:11](2081 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:17, 08:59](1739 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [19:05, 16:34](2320 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [20:08, 17:14](2061 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [16:22, 14:03](2019 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:26, 17:06](2072 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:15, 09:13](2018 MB) + +PASS -- COMPILE 's2sw_intel' [43:17, 41:23] ( 1 warnings 1300 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [12:28, 09:49](1916 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:39, 14:02](1978 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:12, 06:14] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [30:27, 27:29](2094 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:59] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [14:03, 11:33](1937 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [39:18, 37:29] ( 1018 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:29, 05:32](1978 MB) + +PASS -- COMPILE 's2s_intel' [39:20, 38:12] ( 1 warnings 1041 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [12:49, 10:17](3004 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:51, 03:01](3011 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:46, 01:45](2458 MB) + +PASS -- COMPILE 's2swa_faster_intel' [34:25, 32:43] ( 1 warnings 1631 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [19:42, 16:18](2059 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [49:22, 47:58] ( 1 warnings 1360 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [35:29, 33:18](1940 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [19:24, 16:22](1124 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [41:19, 39:08](1917 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:50] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:17, 38:41](1933 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [41:17, 39:28] ( 1 warnings 1124 remarks ) +PASS -- TEST 'control_flake_intel' [06:30, 04:24](649 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [07:10, 04:29](1531 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:14, 04:43](1543 MB) +PASS -- TEST 'control_latlon_intel' [07:07, 04:29](1541 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:16, 04:33](1545 MB) +PASS -- TEST 'control_c48_intel' [21:21, 18:19](1696 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [12:39, 10:13](830 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [21:19, 18:13](1704 MB) +PASS -- TEST 'control_c192_intel' [18:21, 16:03](1704 MB) +PASS -- TEST 'control_c384_intel' [26:21, 22:54](1816 MB) +PASS -- TEST 'control_c384gdas_intel' [18:15, 13:18](1003 MB) +PASS -- TEST 'control_stochy_intel' [04:30, 02:10](604 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:29, 01:14](435 MB) +PASS -- TEST 'control_lndp_intel' [03:30, 02:03](604 MB) +PASS -- TEST 'control_iovr4_intel' [05:33, 03:18](602 MB) +PASS -- TEST 'control_iovr5_intel' [05:33, 03:19](606 MB) +PASS -- TEST 'control_p8_intel' [07:27, 05:02](1832 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:33, 04:14](1837 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:19, 04:55](1832 MB) +PASS -- TEST 'control_restart_p8_intel' [04:52, 02:36](1063 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:22, 04:56](1816 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:53, 02:36](1074 MB) +PASS -- TEST 'control_decomp_p8_intel' [08:22, 05:07](1816 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:23, 04:47](1915 MB) +PASS -- TEST 'control_p8_lndp_intel' [11:15, 08:50](1836 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:24, 05:24](1902 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:24, 04:18](1849 MB) +PASS -- TEST 'merra2_thompson_intel' [07:20, 04:38](1845 MB) +PASS -- TEST 'regional_control_intel' [10:03, 07:16](1009 MB) +PASS -- TEST 'regional_restart_intel' [05:37, 03:48](1003 MB) +PASS -- TEST 'regional_decomp_intel' [10:03, 07:44](1008 MB) +PASS -- TEST 'regional_2threads_intel' [07:04, 04:38](987 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [10:10, 07:24](1011 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:41, 07:04](1003 MB) + +PASS -- COMPILE 'rrfs_intel' [37:17, 35:28] ( 3 warnings 1100 remarks ) +PASS -- TEST 'rap_control_intel' [11:51, 10:07](986 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:16, 05:27](1170 MB) +PASS -- TEST 'rap_decomp_intel' [12:45, 10:47](978 MB) +PASS -- TEST 'rap_2threads_intel' [11:51, 09:42](1066 MB) +PASS -- TEST 'rap_restart_intel' [07:41, 05:15](987 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:53, 10:01](987 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:44, 10:44](976 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:44, 07:31](993 MB) +PASS -- TEST 'hrrr_control_intel' [07:42, 05:10](986 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:41, 05:25](979 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:51, 04:49](1045 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:30, 02:46](910 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:04, 10:01](983 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [14:33, 13:04](1934 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:33, 12:58](1930 MB) + +PASS -- COMPILE 'csawmg_intel' [36:14, 35:04] ( 1098 remarks ) +PASS -- TEST 'control_csawmg_intel' [09:42, 08:03](967 MB) +PASS -- TEST 'control_ras_intel' [06:24, 04:19](675 MB) + +PASS -- COMPILE 'wam_intel' [37:15, 35:45] ( 1002 remarks ) +PASS -- TEST 'control_wam_intel' [16:48, 14:15](1612 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [39:20, 37:14] ( 1302 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:58, 03:38](1836 MB) +PASS -- TEST 'regional_control_faster_intel' [08:37, 06:31](1012 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:12, 08:14] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:48, 02:45](1569 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:54, 02:53](1558 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:28, 03:54](774 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:28, 03:31](779 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:46, 05:26](1087 MB) +PASS -- TEST 'control_ras_debug_intel' [05:28, 03:28](782 MB) +PASS -- TEST 'control_diag_debug_intel' [05:52, 03:20](1628 MB) +PASS -- TEST 'control_debug_p8_intel' [05:53, 03:16](1857 MB) +PASS -- TEST 'regional_debug_intel' [23:52, 21:59](1062 MB) +PASS -- TEST 'rap_control_debug_intel' [08:34, 06:16](1161 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:33, 06:09](1155 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:33, 06:16](1163 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:33, 06:19](1159 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:34, 06:17](1164 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:45, 06:38](1247 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:34, 06:23](1166 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:34, 06:23](1159 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:34, 06:18](1165 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:34, 06:18](1165 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:26, 05:59](1158 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:24, 06:05](1168 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:25, 10:06](1157 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:24, 06:04](1158 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:27, 07:20](1161 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:27, 06:08](1164 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:52, 10:38](1173 MB) + +PASS -- COMPILE 'wam_debug_intel' [12:12, 05:17] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:55, 16:32](1648 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [33:17, 30:48] ( 3 warnings 1032 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:07, 05:12](1025 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:49, 08:15](896 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:46, 04:22](869 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:49, 07:54](933 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:46, 04:01](903 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:46, 04:34](851 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:42, 06:10](895 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:26, 02:19](842 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [34:14, 31:58] ( 3 warnings 1206 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:50, 02:39](1093 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:37, 01:11](1041 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:29](1010 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [35:19, 31:25] ( 3 warnings 1052 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:52, 05:26](909 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 05:12] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:30, 06:01](1043 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:33, 05:54](1034 MB) +PASS -- TEST 'conus13km_debug_intel' [20:03, 17:47](1155 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:03, 17:52](859 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:54, 10:16](1101 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:57, 17:45](1214 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:12, 05:09] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:26, 06:08](1084 MB) + +PASS -- COMPILE 'hafsw_intel' [41:15, 39:58] ( 1 warnings 1434 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [13:29, 06:59](697 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [12:40, 06:20](1069 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [16:45, 09:24](753 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [22:38, 16:01](788 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [26:51, 19:29](796 MB) +PASS -- TEST 'gnv1_nested_intel' [09:55, 06:21](1678 MB) + +PASS -- COMPILE 'hafs_all_intel' [38:20, 36:35] ( 1280 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [14:20, 08:47](757 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [15:26, 08:52](725 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [12:12, 08:14] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:23, 03:34](1078 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:21, 02:13](1040 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:24, 03:27](930 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:24, 03:30](933 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:24, 03:32](937 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:24, 03:35](1074 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:24, 03:35](1068 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:23, 03:27](945 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:14, 07:37](894 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:16, 07:34](857 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:20, 03:33](1070 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:23, 04:59](2374 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:24, 05:01](2429 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:12, 03:29] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:24, 08:03](1027 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:12, 08:13] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:35](1056 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [06:11, 01:42] ( 68 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:34, 01:20](243 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:29, 01:05](264 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:41](263 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [41:15, 36:28] ( 1023 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:15, 04:51](1911 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [37:15, 35:57] ( 1 warnings 1028 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [13:07, 10:34](1909 MB) + +PASS -- COMPILE 'atml_intel' [39:15, 37:34] ( 8 warnings 1173 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:13, 05:45](1853 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:13, 05:48](1872 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:47, 03:20](1066 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:11, 06:19] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:18, 07:17](1879 MB) + +PASS -- COMPILE 'atmw_intel' [43:19, 37:51] ( 1276 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:57, 02:28](1855 MB) + +PASS -- COMPILE 'atmaero_intel' [37:16, 36:01] ( 1106 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:06, 05:18](1905 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:02, 06:15](1706 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:50, 06:21](1723 MB) + +PASS -- COMPILE 'atm_fbh_intel' [33:16, 31:40] ( 3 warnings 1003 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:43, 15:17](1019 MB) SYNOPSIS: -Starting Date/Time: 20241113 03:51:38 -Ending Date/Time: 20241113 23:21:05 -Total Time: 19h:30m:29s +Starting Date/Time: 20241117 14:13:50 +Ending Date/Time: 20241117 18:47:40 +Total Time: 04h:34m:23s Compiles Completed: 37/37 -Tests Completed: 165/165 +Tests Completed: 166/166 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 3840ad427f..aaf787e99e 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -8408059fed3c23317f09beae2012cd072cddcda5 +df9325ac52a9219e80bc6d448ec0d297b6c8a591 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 49967251b83255bdac7ac2f9626d2714e8b83d07 FV3 (heads/develop) + 2429d661d1758c22935558df75f6b66bd710ac11 FV3 (remotes/origin/feature/lnd_iau) e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 002a886eeb14979a6811f89e885d2968cbfd9b70 FV3/ccpp/physics (EP4-893-g002a886e) + 4343656a098516517257c0913689f70a81579e74 FV3/ccpp/physics (EP4-1045-g4343656a) 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 @@ -26,8 +26,8 @@ Submodule hashes used in testing: 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) - 06c20998e59082e79529a8e728c7c3a43a050911 WW3 (6.07.1-385-g06c20998) + 2363beb39016660a157aac49d073f4e04c68c34d NOAHMP-interface/noahmp (remotes/origin/feature/lnd_iau) + abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -39,299 +39,299 @@ 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-20241112 -COMPARISON DIRECTORY: /work/noaa/epic/nandoam/stmp/orion/stmp/nandoam/FV3_RT/rt_2264543 +COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_1737430 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, 17:51] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [42:51, 28:06](2080 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 20:27] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [34:56, 23:23](1921 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [46:26, 23:33](2151 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [31:08, 09:06](1212 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [39:01, 27:41](1853 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:11, 21:22] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [31:47, 22:04](1943 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:11, 09:00] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [37:56, 30:42](1930 MB) - -PASS -- COMPILE 's2swa_intel' [19:11, 17:49] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [42:40, 28:20](2147 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [42:52, 28:30](2132 MB) -PASS -- TEST 'cpld_restart_p8_intel' [54:46, 16:06](1786 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [42:40, 28:32](2155 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [53:56, 15:58](1671 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [36:38, 27:25](2442 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [42:40, 28:16](2129 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [32:37, 23:56](2035 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [43:55, 29:37](2112 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [27:37, 18:23](2678 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [44:04, 10:17](2673 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [38:36, 20:45](3671 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [38:34, 11:12](3491 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [16:34, 08:02](2071 MB) - -PASS -- COMPILE 's2sw_intel' [18:11, 16:02] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [37:09, 27:19](1970 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [21:18, 11:48](2056 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:11, 08:48] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [30:52, 22:37](2176 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:11, 08:28] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [17:12, 10:17](1999 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:11, 14:39] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:21, 04:47](2029 MB) - -PASS -- COMPILE 's2s_intel' [17:11, 15:57] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [20:02, 09:35](3015 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [12:59, 02:49](3021 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:04, 01:52](2462 MB) - -PASS -- COMPILE 's2swa_faster_intel' [20:12, 18:28] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [31:35, 28:36](2139 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:11, 20:35] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [38:34, 32:03](2011 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [44:30, 15:35](1239 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [51:13, 34:08](1928 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:11, 07:31] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [45:48, 36:14](1964 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [20:11, 14:33] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [10:26, 03:45](687 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [36:46, 09:22](1564 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [16:13, 03:41](1574 MB) -PASS -- TEST 'control_latlon_intel' [32:38, 06:32](1580 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [43:47, 04:15](1565 MB) -PASS -- TEST 'control_c48_intel' [21:54, 14:46](1706 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [46:42, 08:43](815 MB) -PASS -- TEST 'control_c192_intel' [50:55, 13:14](1740 MB) -PASS -- TEST 'control_c384_intel' [51:51, 16:46](1979 MB) -PASS -- TEST 'control_c384gdas_intel' [44:31, 09:59](1329 MB) -PASS -- TEST 'control_stochy_intel' [34:35, 02:05](623 MB) -PASS -- TEST 'control_stochy_restart_intel' [23:54, 01:04](477 MB) -PASS -- TEST 'control_lndp_intel' [31:29, 01:49](646 MB) -PASS -- TEST 'control_iovr4_intel' [31:30, 02:49](636 MB) -PASS -- TEST 'control_iovr5_intel' [30:32, 02:45](641 MB) -PASS -- TEST 'control_p8_intel' [32:06, 04:48](1847 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [30:22, 03:38](1874 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [29:25, 04:51](1856 MB) -PASS -- TEST 'control_restart_p8_intel' [49:17, 02:28](1095 MB) -PASS -- TEST 'control_noqr_p8_intel' [28:20, 04:05](1860 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [49:30, 02:21](1130 MB) -PASS -- TEST 'control_decomp_p8_intel' [28:14, 04:13](1858 MB) -PASS -- TEST 'control_2threads_p8_intel' [27:24, 04:33](1940 MB) -PASS -- TEST 'control_p8_lndp_intel' [29:50, 07:25](1867 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [48:29, 05:34](1918 MB) -PASS -- TEST 'control_p8_mynn_intel' [26:27, 03:39](1883 MB) -PASS -- TEST 'merra2_thompson_intel' [46:47, 03:53](1882 MB) -PASS -- TEST 'regional_control_intel' [27:43, 06:41](1074 MB) -PASS -- TEST 'regional_restart_intel' [07:36, 03:44](1063 MB) -PASS -- TEST 'regional_decomp_intel' [21:39, 06:56](1068 MB) -PASS -- TEST 'regional_2threads_intel' [18:59, 05:13](1071 MB) -PASS -- TEST 'regional_noquilt_intel' [11:41, 08:24](1364 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:43, 06:40](1072 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [14:35, 08:03](1061 MB) -PASS -- TEST 'regional_wofs_intel' [14:34, 07:52](1890 MB) - -PASS -- COMPILE 'rrfs_intel' [19:11, 14:00] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [56:24, 08:33](1049 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [20:16, 05:17](1242 MB) -PASS -- TEST 'rap_decomp_intel' [24:41, 08:54](1011 MB) -PASS -- TEST 'rap_2threads_intel' [21:21, 09:39](1134 MB) -PASS -- TEST 'rap_restart_intel' [26:53, 04:28](1034 MB) -PASS -- TEST 'rap_sfcdiff_intel' [19:36, 08:26](1047 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [19:28, 08:48](1015 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [51:12, 10:27](1048 MB) -PASS -- TEST 'hrrr_control_intel' [15:09, 04:47](1007 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [15:05, 04:52](1009 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [13:38, 04:17](1078 MB) -PASS -- TEST 'hrrr_control_restart_intel' [19:50, 02:24](942 MB) -PASS -- TEST 'rrfs_v1beta_intel' [18:43, 09:11](1019 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [18:39, 10:36](1958 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [16:41, 09:39](2015 MB) - -PASS -- COMPILE 'csawmg_intel' [14:11, 10:24] -PASS -- TEST 'control_csawmg_intel' [13:36, 07:56](992 MB) -PASS -- TEST 'control_ras_intel' [09:23, 04:11](695 MB) - -PASS -- COMPILE 'wam_intel' [13:11, 10:36] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [18:42, 13:23](1639 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [16:11, 13:03] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:33, 03:53](1859 MB) -PASS -- TEST 'regional_control_faster_intel' [09:41, 06:56](1076 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:11, 10:46] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [10:01, 02:23](1601 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:58, 02:19](1602 MB) -PASS -- TEST 'control_stochy_debug_intel' [09:39, 03:42](777 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:39, 02:52](812 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:48, 04:27](1116 MB) -PASS -- TEST 'control_ras_debug_intel' [04:39, 02:56](815 MB) -PASS -- TEST 'control_diag_debug_intel' [14:56, 03:23](1644 MB) -PASS -- TEST 'control_debug_p8_intel' [13:00, 02:58](1898 MB) -PASS -- TEST 'regional_debug_intel' [25:57, 19:35](1058 MB) -PASS -- TEST 'rap_control_debug_intel' [08:36, 05:02](1199 MB) -PASS -- TEST 'hrrr_control_debug_intel' [09:42, 04:52](1201 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:39, 04:55](1197 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [29:41, 05:03](1201 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [35:44, 05:48](1173 MB) -PASS -- TEST 'rap_diag_debug_intel' [34:55, 05:18](1277 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [26:40, 05:07](1202 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [22:39, 05:06](1196 MB) -PASS -- TEST 'rap_lndp_debug_intel' [22:40, 05:08](1201 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:33, 05:08](1203 MB) -PASS -- TEST 'rap_noah_debug_intel' [30:31, 05:10](1193 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [28:41, 05:41](1172 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [30:38, 08:14](1182 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [26:42, 04:52](1193 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [26:41, 06:03](1203 MB) -PASS -- TEST 'rap_flake_debug_intel' [30:40, 05:05](1201 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [28:45, 10:11](1170 MB) - -PASS -- COMPILE 'wam_debug_intel' [11:11, 07:09] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:38, 13:24](1671 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:10, 13:00] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [31:14, 05:30](1107 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [26:41, 07:14](995 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [24:02, 04:00](918 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [40:38, 07:32](1063 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [16:59, 04:11](918 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [16:45, 04:00](886 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [52:46, 05:30](961 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [40:52, 02:06](873 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:11, 12:54] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [14:26, 02:36](1160 MB) -PASS -- TEST 'conus13km_2threads_intel' [57:51, 01:15](1109 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [56:53, 01:46](1042 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [19:12, 13:45] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [16:16, 04:54](944 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:11, 07:23] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [15:55, 05:33](1045 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [14:56, 04:46](1077 MB) -PASS -- TEST 'conus13km_debug_intel' [20:18, 15:20](1166 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [18:23, 13:56](923 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [04:15, 09:11](1134 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [53:09, 13:57](1290 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:11, 07:07] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [40:59, 05:01](1128 MB) - -PASS -- COMPILE 'hafsw_intel' [19:11, 16:03] ( 1 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [39:41, 06:03](728 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [42:56, 06:34](1112 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [57:00, 07:48](814 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [01:46, 27:45](838 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [13:59, 34:47](874 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [45:29, 07:19](495 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [21:58, 08:37](502 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [20:14, 04:09](355 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [26:37, 10:53](465 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [19:08, 04:50](526 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [18:10, 05:13](509 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [17:15, 06:23](553 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [36:52, 01:38](398 MB) -PASS -- TEST 'gnv1_nested_intel' [52:32, 04:25](1715 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:10, 07:41] ( 1462 warnings 1490 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [25:12, 13:06](584 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [19:11, 12:53] ( 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [01:27, 15:47](633 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:27, 15:56](701 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [19:13, 13:12] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:43, 11:17](701 MB) - -PASS -- COMPILE 'hafs_all_intel' [19:11, 14:28] ( 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [05:21, 07:41](812 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:19, 08:45](768 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [12:08, 16:28](1198 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [11:10, 09:22] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [57:27, 02:59](1118 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [14:23, 02:04](1098 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [55:23, 03:01](1010 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [54:26, 02:54](1011 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [51:22, 02:55](1019 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [51:23, 03:02](1145 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [50:26, 03:12](1141 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [41:24, 04:24](1009 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [51:13, 08:35](1025 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [58:17, 06:33](1009 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [42:20, 02:58](1146 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [38:22, 04:24](2452 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [48:25, 04:51](2371 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:12, 04:53] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [50:24, 06:31](1077 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:12, 08:17] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [50:26, 03:02](1146 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:10, 02:15] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [45:38, 01:18](245 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [47:40, 00:59](318 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [14:30, 00:43](311 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [04:10, 02:16] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [44:35, 00:40](559 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [19:37, 00:19](446 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:11, 15:03] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [17:27, 04:16](1967 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [19:13, 15:57] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [56:15, 10:19](1957 MB) - -PASS -- COMPILE 'atml_intel' [17:12, 15:57] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [50:46, 05:09](1864 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [47:38, 05:10](1865 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [13:01, 02:46](1071 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:15, 06:41] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [46:38, 07:09](1856 MB) - -PASS -- COMPILE 'atmw_intel' [19:12, 13:45] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [24:31, 02:25](1893 MB) - -PASS -- COMPILE 'atmaero_intel' [19:11, 14:43] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [41:21, 04:47](1972 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [32:33, 05:29](1745 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [36:14, 05:33](1757 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [10:18, 06:58] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [52:18, 21:20](4491 MB) - -PASS -- COMPILE 'atm_fbh_intel' [17:10, 14:17] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [26:30, 14:10](1072 MB) - -PASS -- COMPILE 'hafsw_intelllvm' [13:12, 10:46] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [38:17, 08:04](570 MB) - -PASS -- COMPILE 'hafsw_debug_intelllvm' [13:11, 06:58] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [50:19, 19:46](563 MB) +PASS -- COMPILE 's2swa_32bit_intel' [19:10, 17:48] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [26:55, 27:43](2078 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:10, 20:13] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:57, 22:08](1950 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:22, 23:12](2133 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:17, 08:51](1206 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:53, 25:59](1863 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:10, 18:54] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:57, 22:05](1916 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:10, 07:58] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [37:50, 30:38](1923 MB) + +PASS -- COMPILE 's2swa_intel' [18:10, 16:43] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [18:41, 27:04](2143 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [27:57, 27:42](2141 MB) +PASS -- TEST 'cpld_restart_p8_intel' [17:44, 14:40](1791 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [19:52, 27:45](2156 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [20:31, 14:30](1697 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [17:44, 26:28](2397 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [18:37, 27:25](2126 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [41:43, 23:26](2039 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:56, 28:04](2139 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [51:25, 15:55](2706 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [22:07, 09:14](2703 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [01:16, 22:37](3648 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [32:09, 10:58](3493 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [00:41, 10:13](2047 MB) + +PASS -- COMPILE 's2sw_intel' [17:10, 15:21] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [45:09, 26:43](1964 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:20, 11:49](2050 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:10, 07:59] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [29:25, 23:25](2172 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:10, 07:41] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [18:10, 11:56](1958 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:10, 14:23] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:17, 05:45](1975 MB) + +PASS -- COMPILE 's2s_intel' [16:10, 14:40] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [12:56, 08:39](3031 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [06:56, 03:02](3017 MB) +PASS -- TEST 'cpld_restart_c48_intel' [15:03, 01:54](2463 MB) + +PASS -- COMPILE 's2swa_faster_intel' [23:11, 17:01] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [14:43, 28:37](2140 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:11, 18:10] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [12:23, 29:07](2011 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:23, 14:28](1243 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [36:12, 33:35](1925 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:11, 07:27] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:15, 35:08](1938 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [17:10, 13:45] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [47:30, 03:44](693 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [48:05, 03:36](1574 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [48:08, 03:38](1582 MB) +PASS -- TEST 'control_latlon_intel' [49:51, 04:07](1549 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [51:00, 03:40](1567 MB) +PASS -- TEST 'control_c48_intel' [17:55, 15:17](1710 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [50:39, 08:12](832 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [48:54, 14:44](1709 MB) +PASS -- TEST 'control_c192_intel' [42:59, 13:11](1746 MB) +PASS -- TEST 'control_c384_intel' [41:02, 19:03](1975 MB) +PASS -- TEST 'control_c384gdas_intel' [31:44, 11:07](1310 MB) +PASS -- TEST 'control_stochy_intel' [04:25, 01:54](641 MB) +PASS -- TEST 'control_stochy_restart_intel' [13:40, 01:12](459 MB) +PASS -- TEST 'control_lndp_intel' [03:25, 01:51](638 MB) +PASS -- TEST 'control_iovr4_intel' [04:30, 02:50](630 MB) +PASS -- TEST 'control_iovr5_intel' [04:24, 02:45](635 MB) +PASS -- TEST 'control_p8_intel' [07:08, 04:13](1864 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [17:15, 03:28](1877 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [17:25, 04:04](1870 MB) +PASS -- TEST 'control_restart_p8_intel' [12:17, 02:18](1089 MB) +PASS -- TEST 'control_noqr_p8_intel' [17:13, 04:24](1846 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:28, 02:19](1123 MB) +PASS -- TEST 'control_decomp_p8_intel' [17:08, 04:10](1849 MB) +PASS -- TEST 'control_2threads_p8_intel' [17:12, 04:21](1940 MB) +PASS -- TEST 'control_p8_lndp_intel' [18:44, 07:14](1871 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [14:24, 05:13](1921 MB) +PASS -- TEST 'control_p8_mynn_intel' [12:23, 03:53](1870 MB) +PASS -- TEST 'merra2_thompson_intel' [10:43, 03:47](1873 MB) +PASS -- TEST 'regional_control_intel' [12:41, 07:14](1058 MB) +PASS -- TEST 'regional_restart_intel' [05:40, 03:59](1055 MB) +PASS -- TEST 'regional_decomp_intel' [10:38, 06:49](1073 MB) +PASS -- TEST 'regional_2threads_intel' [08:33, 04:38](1059 MB) +PASS -- TEST 'regional_noquilt_intel' [09:38, 06:29](1373 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:41, 06:30](1080 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:38, 06:31](1071 MB) +PASS -- TEST 'regional_wofs_intel' [09:37, 08:00](1894 MB) + +PASS -- COMPILE 'rrfs_intel' [17:10, 13:47] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [15:17, 08:29](1047 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:56, 05:11](1253 MB) +PASS -- TEST 'rap_decomp_intel' [13:03, 08:44](1007 MB) +PASS -- TEST 'rap_2threads_intel' [13:04, 09:17](1137 MB) +PASS -- TEST 'rap_restart_intel' [07:33, 04:23](1026 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:18, 08:23](1037 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:04, 08:41](1003 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:37, 06:17](1061 MB) +PASS -- TEST 'hrrr_control_intel' [07:08, 04:36](1000 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:59, 04:44](994 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:01, 04:13](1075 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:44, 02:22](942 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:18, 08:54](1032 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:24, 10:18](1969 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:25, 10:01](1996 MB) + +PASS -- COMPILE 'csawmg_intel' [15:10, 12:19] +PASS -- TEST 'control_csawmg_intel' [51:48, 07:05](1009 MB) +PASS -- TEST 'control_ras_intel' [48:30, 03:34](712 MB) + +PASS -- COMPILE 'wam_intel' [14:11, 12:30] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [59:52, 14:28](1624 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [19:11, 13:09] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:20, 03:19](1874 MB) +PASS -- TEST 'regional_control_faster_intel' [09:39, 06:56](1054 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [14:11, 09:31] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:45, 02:18](1596 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:43, 02:20](1589 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:23, 03:20](774 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:43](809 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:37, 04:14](1120 MB) +PASS -- TEST 'control_ras_debug_intel' [04:24, 02:48](812 MB) +PASS -- TEST 'control_diag_debug_intel' [04:48, 02:47](1673 MB) +PASS -- TEST 'control_debug_p8_intel' [04:43, 02:44](1896 MB) +PASS -- TEST 'regional_debug_intel' [21:39, 19:20](1052 MB) +PASS -- TEST 'rap_control_debug_intel' [06:23, 05:01](1198 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:26, 04:54](1190 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:22, 05:01](1197 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:21, 05:25](1163 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:26, 04:52](1195 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:38, 05:08](1281 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:23, 05:09](1195 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:23, 05:40](1172 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:24, 04:59](1202 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:21, 05:07](1198 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:21, 05:31](1166 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:21, 04:55](1203 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:22, 07:55](1195 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:23, 05:20](1193 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:26, 05:54](1202 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:25, 04:58](1196 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:31, 09:26](1167 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:10, 06:11] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [58:53, 13:15](1675 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:10, 12:34] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:03, 04:58](1123 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:17, 07:11](978 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:43, 03:48](920 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:55, 07:28](1065 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:13, 04:06](915 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:13, 03:56](889 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [12:34, 05:29](968 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:40, 02:04](859 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:11, 12:33] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:56, 02:49](1138 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:47, 01:12](1109 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [07:45, 01:31](1050 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:11, 13:13] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:48, 04:37](966 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:10, 06:23] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:23, 05:21](1039 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:27, 04:39](1074 MB) +PASS -- TEST 'conus13km_debug_intel' [15:44, 13:39](1228 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:44, 13:34](927 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:39, 08:57](1133 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:39, 15:14](1226 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:10, 06:17] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:29, 04:58](1125 MB) + +PASS -- COMPILE 'hafsw_intel' [22:11, 14:52] ( 1 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:16, 06:20](720 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:25, 07:01](1090 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:24, 08:16](792 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [30:20, 27:05](843 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [37:26, 34:52](862 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:03, 07:11](495 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:32, 08:30](508 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [07:56, 03:31](371 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:30, 09:36](467 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [11:56, 05:21](508 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [10:52, 04:58](506 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:55, 05:41](570 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:31, 01:33](397 MB) +PASS -- TEST 'gnv1_nested_intel' [12:22, 04:35](1705 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [14:10, 07:00] ( 1462 warnings 1490 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:59, 13:21](583 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [27:13, 14:18] ( 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [22:09, 15:15](637 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [22:14, 15:34](719 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [32:11, 15:23] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:30, 11:32](682 MB) + +PASS -- COMPILE 'hafs_all_intel' [38:11, 14:26] ( 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [13:17, 07:27](808 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:12, 08:09](775 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:55, 16:23](1198 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [31:13, 07:53] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:19, 03:01](1135 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [09:20, 01:58](1105 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:18, 02:53](1017 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:19, 02:53](1018 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:17, 02:54](1013 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:17, 03:09](1126 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:19, 02:59](1152 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 03:05](1011 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:08, 06:34](1008 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:05, 06:44](1001 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 02:57](1148 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 04:35](2443 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [13:19, 04:23](2395 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [24:12, 04:30] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [14:19, 06:30](1068 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [33:11, 07:49] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [11:19, 03:14](1144 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [20:11, 01:22] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [09:32, 01:19](245 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [08:25, 00:57](321 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:29, 00:38](318 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [20:12, 01:55] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [08:31, 00:37](565 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [03:31, 00:24](440 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [31:12, 13:41] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [12:12, 04:11](1966 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [25:11, 13:44] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [16:00, 08:44](1976 MB) + +PASS -- COMPILE 'atml_intel' [20:10, 13:59] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [14:32, 06:11](1842 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [14:26, 06:07](1838 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:59, 02:48](1066 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:11, 07:31] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [14:26, 05:48](1893 MB) + +PASS -- COMPILE 'atmw_intel' [18:11, 13:19] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [10:22, 02:17](1896 MB) + +PASS -- COMPILE 'atmaero_intel' [17:11, 13:15] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [12:19, 04:39](1974 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [13:16, 05:26](1756 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [13:03, 06:07](1724 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:11, 06:32] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [27:58, 21:09](4493 MB) + +PASS -- COMPILE 'atm_fbh_intel' [14:10, 12:05] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:29, 14:14](1073 MB) + +PASS -- COMPILE 'hafsw_intelllvm' [10:10, 08:00] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [12:06, 08:03](617 MB) + +PASS -- COMPILE 'hafsw_debug_intelllvm' [10:10, 04:49] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [22:51, 19:34](561 MB) SYNOPSIS: -Starting Date/Time: 20241113 16:16:32 -Ending Date/Time: 20241114 03:19:37 -Total Time: 11h:04m:43s +Starting Date/Time: 20241116 16:56:42 +Ending Date/Time: 20241116 20:00:15 +Total Time: 03h:04m:05s Compiles Completed: 45/45 -Tests Completed: 190/190 +Tests Completed: 191/191 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 5cb7a8155e..99d968b03a 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -becb1015decd0062338245cee07a4186c5b8f376 +8039e2dda4aa47102bbdd66c14d07343fc172513 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 49967251b83255bdac7ac2f9626d2714e8b83d07 FV3 (remotes/origin/HEAD) + 2429d661d1758c22935558df75f6b66bd710ac11 FV3 (remotes/origin/feature/lnd_iau) e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 002a886eeb14979a6811f89e885d2968cbfd9b70 FV3/ccpp/physics (EP4-893-g002a886e) + 4343656a098516517257c0913689f70a81579e74 FV3/ccpp/physics (EP4-1045-g4343656a) 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 @@ -26,8 +26,8 @@ Submodule hashes used in testing: 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) - 06c20998e59082e79529a8e728c7c3a43a050911 WW3 (6.07.1-385-g06c20998) + 2363beb39016660a157aac49d073f4e04c68c34d NOAHMP-interface/noahmp (remotes/origin/feature/lnd_iau) + abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -39,240 +39,241 @@ 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-20241112 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3974207 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106936 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [23:38, 21:35] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [48:05, 03:37](3192 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:40, 21:38] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [48:02, 03:55](1909 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:38, 04:00](1938 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [27:14, 04:02](1077 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [48:03, 03:28](1886 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:38, 21:41] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [48:05, 02:08](1910 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:32, 15:59] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [54:11, 03:18](1952 MB) - -PASS -- COMPILE 's2swa_intel' [23:40, 21:34] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [48:02, 02:52](3227 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [48:02, 03:21](3224 MB) -PASS -- TEST 'cpld_restart_p8_intel' [30:09, 03:11](3153 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [48:02, 02:44](3243 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [30:08, 02:30](3171 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [48:02, 03:11](3464 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [48:02, 03:08](3223 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [48:03, 02:51](3165 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [48:02, 03:23](3227 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [48:11, 06:42](4210 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:59, 06:34](4367 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [48:02, 03:00](3198 MB) - -PASS -- COMPILE 's2sw_intel' [22:37, 20:35] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [49:06, 02:54](1919 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [49:06, 03:24](1979 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [20:38, 18:47] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [51:05, 02:55](1985 MB) - -PASS -- COMPILE 's2s_intel' [20:37, 19:19] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [51:04, 02:56](2882 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [51:04, 02:47](2885 MB) -PASS -- TEST 'cpld_restart_c48_intel' [45:30, 01:50](2300 MB) - -PASS -- COMPILE 's2swa_faster_intel' [24:42, 22:49] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [47:01, 02:51](3230 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:40, 20:33] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [49:03, 02:23](1920 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [19:55, 02:53](1093 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:27, 02:52](1899 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:21, 05:15] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [46:50, 02:13](1968 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:27, 09:31] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [37:27, 01:29](662 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [35:59, 01:51](1562 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [33:08, 02:16](1565 MB) -PASS -- TEST 'control_latlon_intel' [33:08, 01:53](1565 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [33:03, 02:03](1566 MB) -PASS -- TEST 'control_c48_intel' [32:51, 02:08](1586 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [32:34, 01:47](707 MB) -PASS -- TEST 'control_c192_intel' [32:18, 01:36](1691 MB) -PASS -- TEST 'control_c384_intel' [31:58, 03:08](1971 MB) -PASS -- TEST 'control_c384gdas_intel' [30:57, 04:02](1171 MB) -PASS -- TEST 'control_stochy_intel' [30:51, 01:57](620 MB) -PASS -- TEST 'control_stochy_restart_intel' [26:14, 01:38](429 MB) -PASS -- TEST 'control_lndp_intel' [30:09, 01:22](622 MB) -PASS -- TEST 'control_iovr4_intel' [30:06, 01:36](612 MB) -PASS -- TEST 'control_iovr5_intel' [30:03, 01:34](617 MB) -PASS -- TEST 'control_p8_intel' [30:03, 02:56](1853 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [29:48, 03:05](1864 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [29:41, 02:49](1852 MB) -PASS -- TEST 'control_restart_p8_intel' [22:41, 03:15](1008 MB) -PASS -- TEST 'control_noqr_p8_intel' [29:39, 02:31](1846 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [22:41, 03:09](1015 MB) -PASS -- TEST 'control_decomp_p8_intel' [29:17, 03:40](1848 MB) -PASS -- TEST 'control_2threads_p8_intel' [29:17, 02:21](1949 MB) -PASS -- TEST 'control_p8_lndp_intel' [29:09, 01:44](1864 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [29:07, 03:32](1912 MB) -PASS -- TEST 'control_p8_mynn_intel' [28:34, 03:27](1858 MB) -PASS -- TEST 'merra2_thompson_intel' [27:55, 03:48](1862 MB) -PASS -- TEST 'regional_control_intel' [26:57, 02:10](859 MB) -PASS -- TEST 'regional_restart_intel' [17:59, 01:16](860 MB) -PASS -- TEST 'regional_decomp_intel' [26:04, 01:14](867 MB) -PASS -- TEST 'regional_2threads_intel' [25:36, 01:55](984 MB) -PASS -- TEST 'regional_noquilt_intel' [25:32, 01:34](1190 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [25:29, 02:05](859 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [25:28, 01:31](858 MB) -PASS -- TEST 'regional_wofs_intel' [24:35, 01:32](1588 MB) - -PASS -- COMPILE 'rrfs_intel' [10:26, 08:50] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [40:38, 02:29](1008 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [40:39, 02:30](1138 MB) -PASS -- TEST 'rap_decomp_intel' [40:38, 02:28](999 MB) -PASS -- TEST 'rap_2threads_intel' [40:38, 03:22](1081 MB) -PASS -- TEST 'rap_restart_intel' [22:42, 03:20](878 MB) -PASS -- TEST 'rap_sfcdiff_intel' [40:38, 03:43](1000 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [40:38, 03:20](998 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [22:41, 03:09](878 MB) -PASS -- TEST 'hrrr_control_intel' [40:38, 03:15](998 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [40:38, 03:14](994 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [40:39, 03:34](1071 MB) -PASS -- TEST 'hrrr_control_restart_intel' [22:31, 01:37](828 MB) -PASS -- TEST 'rrfs_v1beta_intel' [40:38, 03:30](997 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [40:38, 02:21](1956 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [22:25, 01:56](1943 MB) - -PASS -- COMPILE 'csawmg_intel' [09:23, 08:05] -PASS -- TEST 'control_csawmg_intel' [21:46, 01:47](954 MB) -PASS -- TEST 'control_ras_intel' [21:16, 02:15](655 MB) - -PASS -- COMPILE 'wam_intel' [21:42, 20:20] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [20:56, 01:50](1650 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [16:31, 14:28] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [20:38, 03:35](1853 MB) -PASS -- TEST 'regional_control_faster_intel' [19:57, 01:56](848 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [15:37, 13:50] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [19:07, 01:41](1610 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [18:41, 02:08](1604 MB) -PASS -- TEST 'control_stochy_debug_intel' [18:40, 01:48](810 MB) -PASS -- TEST 'control_lndp_debug_intel' [18:15, 01:28](810 MB) -PASS -- TEST 'control_csawmg_debug_intel' [17:57, 02:23](1111 MB) -PASS -- TEST 'control_ras_debug_intel' [17:56, 01:37](814 MB) -PASS -- TEST 'control_diag_debug_intel' [17:49, 02:13](1667 MB) -PASS -- TEST 'control_debug_p8_intel' [17:38, 01:55](1901 MB) -PASS -- TEST 'regional_debug_intel' [17:35, 01:41](926 MB) -PASS -- TEST 'rap_control_debug_intel' [17:30, 01:36](1190 MB) -PASS -- TEST 'hrrr_control_debug_intel' [16:20, 02:06](1182 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [16:20, 02:15](1190 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [16:18, 02:08](1185 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [15:39, 01:48](1196 MB) -PASS -- TEST 'rap_diag_debug_intel' [14:42, 01:36](1276 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [14:08, 02:19](1187 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [13:26, 01:55](1195 MB) -PASS -- TEST 'rap_lndp_debug_intel' [13:21, 01:23](1192 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [13:09, 01:42](1190 MB) -PASS -- TEST 'rap_noah_debug_intel' [12:59, 01:34](1193 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [12:45, 01:38](1187 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:39, 02:19](1187 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [12:33, 02:16](1186 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [12:21, 01:27](1189 MB) -PASS -- TEST 'rap_flake_debug_intel' [12:15, 01:38](1193 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:09, 03:53](1193 MB) - -PASS -- COMPILE 'wam_debug_intel' [12:28, 10:21] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [12:06, 01:58](1687 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:36, 14:01] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:59, 02:25](1013 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:47, 03:05](880 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [11:44, 04:43](874 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:43, 03:32](932 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:54, 04:21](932 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:51, 03:52](874 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [02:15, 03:36](783 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:18, 02:11](760 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:36, 14:01] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [09:42, 01:34](1075 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:28, 01:23](1061 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:58, 02:11](953 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:29, 14:10] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:39, 02:51](899 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:26, 10:42] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:37, 01:56](1067 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:37, 02:02](1063 MB) -PASS -- TEST 'conus13km_debug_intel' [06:56, 02:25](1148 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [06:53, 01:47](838 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [05:37, 01:40](1125 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [05:31, 02:13](1216 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:18, 04:17] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:26, 01:36](1093 MB) - -PASS -- COMPILE 'hafsw_intel' [25:39, 23:46] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [05:13, 02:42](686 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:57, 01:53](1034 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [04:49, 02:45](747 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [04:46, 02:40](769 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [04:43, 03:21](789 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [04:34, 02:50](465 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [03:45, 02:59](480 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:37, 02:27](379 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [02:49, 04:01](450 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [02:18, 02:28](497 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [02:08, 01:56](502 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [02:09, 02:41](563 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [00:28, 02:13](408 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [14:29, 12:18] ( 1444 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [00:06, 02:25](608 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [19:33, 17:53] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [00:02, 02:36](612 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [00:01, 02:06](787 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:25, 09:52] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [59:37, 02:12](783 MB) - -PASS -- COMPILE 'hafs_all_intel' [19:35, 17:30] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [58:59, 02:56](731 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [57:52, 03:03](709 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [57:38, 01:53](833 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:25, 09:38] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [57:11, 02:05](1916 MB) - -PASS -- COMPILE 'atml_intel' [23:41, 22:13] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [07:20, 05:19] ( 866 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [10:26, 08:27] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [56:23, 03:00](3119 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [56:15, 03:31](2996 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [55:49, 03:20](3008 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:20, 04:18] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [55:28, 02:05](4496 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:35, 11:27] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:23, 03:54](3076 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:36, 12:22] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [12:22, 03:10](1810 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [51:57, 03:47](1830 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [51:33, 03:40](952 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [12:23, 02:46](1778 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:35, 11:36] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [13:23, 02:17](1804 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:22, 05:22] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [19:36, 03:00](1833 MB) + +PASS -- COMPILE 's2swa_intel' [14:37, 12:24] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:22, 02:45](3113 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:22, 03:13](3113 MB) +PASS -- TEST 'cpld_restart_p8_intel' [53:35, 02:22](3044 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:22, 02:12](3140 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [53:37, 02:10](3064 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [12:22, 02:58](3357 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:22, 04:19](3110 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [12:23, 02:43](3061 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:22, 03:13](3117 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [12:31, 06:55](4111 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [40:40, 06:37](4254 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:22, 02:41](3098 MB) + +PASS -- COMPILE 's2sw_intel' [12:30, 11:09] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [14:28, 03:09](1832 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:28, 02:48](1883 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:32, 10:48] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [14:26, 02:50](1887 MB) + +PASS -- COMPILE 's2s_intel' [12:35, 10:24] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [14:23, 02:06](2858 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [14:23, 02:40](2864 MB) +PASS -- TEST 'cpld_restart_c48_intel' [08:14, 02:32](2278 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:40, 16:14] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:18, 02:35](3120 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:35, 11:40] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [13:23, 02:40](1825 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [43:19, 02:53](1001 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [42:45, 02:51](1800 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:14] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [12:15, 02:59](1851 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:26, 09:58] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:00, 02:30](566 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:00, 01:58](1460 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:00, 02:34](1477 MB) +PASS -- TEST 'control_latlon_intel' [03:00, 01:38](1464 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:00, 02:11](1471 MB) +PASS -- TEST 'control_c48_intel' [02:59, 01:37](1569 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [02:59, 02:05](693 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [01:01, 01:49](1572 MB) +PASS -- TEST 'control_c192_intel' [59:40, 01:52](1589 MB) +PASS -- TEST 'control_c384_intel' [58:54, 02:42](1876 MB) +PASS -- TEST 'control_c384gdas_intel' [56:47, 04:14](1078 MB) +PASS -- TEST 'control_stochy_intel' [56:15, 01:51](522 MB) +PASS -- TEST 'control_stochy_restart_intel' [50:45, 01:50](428 MB) +PASS -- TEST 'control_lndp_intel' [55:16, 01:55](522 MB) +PASS -- TEST 'control_iovr4_intel' [55:15, 02:08](520 MB) +PASS -- TEST 'control_iovr5_intel' [54:10, 02:05](521 MB) +PASS -- TEST 'control_p8_intel' [54:09, 02:55](1756 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [54:01, 03:04](1761 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [54:01, 02:41](1757 MB) +PASS -- TEST 'control_restart_p8_intel' [45:35, 03:06](907 MB) +PASS -- TEST 'control_noqr_p8_intel' [53:45, 02:42](1755 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [45:28, 03:05](918 MB) +PASS -- TEST 'control_decomp_p8_intel' [53:17, 02:27](1750 MB) +PASS -- TEST 'control_2threads_p8_intel' [53:15, 02:50](1843 MB) +PASS -- TEST 'control_p8_lndp_intel' [52:58, 02:02](1752 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [52:23, 02:46](1808 MB) +PASS -- TEST 'control_p8_mynn_intel' [52:13, 02:42](1764 MB) +PASS -- TEST 'merra2_thompson_intel' [52:05, 03:29](1760 MB) +PASS -- TEST 'regional_control_intel' [50:24, 01:30](838 MB) +PASS -- TEST 'regional_restart_intel' [42:27, 01:30](843 MB) +PASS -- TEST 'regional_decomp_intel' [50:00, 02:17](838 MB) +PASS -- TEST 'regional_2threads_intel' [49:37, 01:54](895 MB) +PASS -- TEST 'regional_noquilt_intel' [48:33, 01:32](1164 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [48:08, 01:59](834 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [47:53, 01:39](834 MB) +PASS -- TEST 'regional_wofs_intel' [47:09, 01:47](1568 MB) + +PASS -- COMPILE 'rrfs_intel' [11:26, 09:04] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [46:55, 02:56](904 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [46:24, 02:10](1044 MB) +PASS -- TEST 'rap_decomp_intel' [46:18, 02:22](905 MB) +PASS -- TEST 'rap_2threads_intel' [45:47, 02:55](985 MB) +PASS -- TEST 'rap_restart_intel' [35:11, 03:22](775 MB) +PASS -- TEST 'rap_sfcdiff_intel' [45:37, 02:36](902 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [45:37, 02:17](900 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [34:29, 02:22](770 MB) +PASS -- TEST 'hrrr_control_intel' [45:37, 02:40](897 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [44:58, 02:58](903 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [44:41, 02:57](972 MB) +PASS -- TEST 'hrrr_control_restart_intel' [37:45, 02:45](730 MB) +PASS -- TEST 'rrfs_v1beta_intel' [44:01, 02:41](898 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [42:13, 01:43](1851 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [41:46, 02:18](1848 MB) + +PASS -- COMPILE 'csawmg_intel' [10:25, 08:16] +PASS -- TEST 'control_csawmg_intel' [03:57, 02:37](858 MB) +PASS -- TEST 'control_ras_intel' [03:57, 01:59](556 MB) + +PASS -- COMPILE 'wam_intel' [10:25, 08:25] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [41:26, 01:38](1556 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:27, 08:39] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [41:26, 02:51](1763 MB) +PASS -- TEST 'regional_control_faster_intel' [41:09, 02:02](833 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:25, 08:20] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [40:43, 01:51](1492 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [40:27, 01:52](1493 MB) +PASS -- TEST 'control_stochy_debug_intel' [40:06, 01:32](691 MB) +PASS -- TEST 'control_lndp_debug_intel' [39:16, 01:45](698 MB) +PASS -- TEST 'control_csawmg_debug_intel' [39:13, 02:42](997 MB) +PASS -- TEST 'control_ras_debug_intel' [38:38, 02:29](701 MB) +PASS -- TEST 'control_diag_debug_intel' [38:38, 01:58](1553 MB) +PASS -- TEST 'control_debug_p8_intel' [37:46, 02:05](1780 MB) +PASS -- TEST 'regional_debug_intel' [37:15, 01:57](875 MB) +PASS -- TEST 'rap_control_debug_intel' [36:32, 01:57](1078 MB) +PASS -- TEST 'hrrr_control_debug_intel' [36:29, 02:24](1068 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [36:26, 02:07](1073 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [36:26, 02:12](1075 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [36:01, 02:16](1079 MB) +PASS -- TEST 'rap_diag_debug_intel' [35:20, 02:23](1161 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [35:18, 02:31](1077 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [35:11, 01:45](1079 MB) +PASS -- TEST 'rap_lndp_debug_intel' [35:07, 01:47](1083 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [34:59, 01:55](1078 MB) +PASS -- TEST 'rap_noah_debug_intel' [34:35, 01:40](1075 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [34:26, 02:32](1073 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [33:26, 01:54](1075 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [33:17, 02:28](1069 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [32:26, 01:44](1074 MB) +PASS -- TEST 'rap_flake_debug_intel' [31:55, 02:29](1077 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [31:15, 02:24](1080 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:23, 04:44] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [04:58, 01:42](1576 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:25, 08:30] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [30:18, 02:22](911 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [30:06, 02:53](780 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [30:04, 04:03](778 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [29:47, 02:52](836 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [29:22, 03:07](828 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [29:00, 02:23](772 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [20:18, 03:19](676 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [22:00, 02:14](661 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:24, 08:28] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [26:49, 02:38](987 MB) +PASS -- TEST 'conus13km_2threads_intel' [19:39, 01:59](987 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [19:23, 02:39](859 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:30, 08:58] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [26:49, 02:57](807 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:23, 04:49] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [26:47, 01:41](954 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [26:47, 01:39](948 MB) +PASS -- TEST 'conus13km_debug_intel' [26:28, 02:35](1040 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [26:23, 02:26](709 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [26:22, 01:32](1040 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:18, 02:33](1107 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:23, 04:50] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [26:16, 01:34](980 MB) + +PASS -- COMPILE 'hafsw_intel' [14:31, 10:22] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [26:14, 03:02](595 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [26:00, 02:28](939 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [25:39, 03:07](646 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [25:35, 02:56](668 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [25:02, 04:03](687 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [24:49, 02:35](380 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [23:49, 03:36](401 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [23:27, 02:25](283 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [22:50, 03:58](366 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [22:20, 02:54](401 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [21:04, 02:51](402 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [20:42, 02:06](474 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [19:25, 01:41](314 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:26, 05:17] ( 1444 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:38, 02:22](500 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [14:30, 09:54] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:34, 02:31](508 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:17, 02:49](700 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:31, 10:08] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [18:14, 03:17](702 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:31, 09:31] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [17:48, 03:37](637 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:35, 02:33](612 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:07, 02:16](878 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:30, 10:03] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [15:14, 02:32](1816 MB) + +PASS -- COMPILE 'atml_intel' [13:29, 09:54] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [08:22, 06:04] ( 866 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [11:29, 09:06] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [14:29, 03:11](3015 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [14:13, 03:20](2891 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:10, 03:15](2902 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:22, 05:21] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [14:10, 03:20](4375 MB) SYNOPSIS: -Starting Date/Time: 20241113 18:46:36 -Ending Date/Time: 20241113 20:32:39 -Total Time: 01h:47m:46s +Starting Date/Time: 20241118 14:32:45 +Ending Date/Time: 20241118 16:16:55 +Total Time: 01h:44m:54s Compiles Completed: 33/33 -Tests Completed: 156/156 +Tests Completed: 157/157 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/parm/global_control_lnd_iau.nml.IN b/tests/parm/global_control_lnd_iau.nml.IN new file mode 100644 index 0000000000..170230dc63 --- /dev/null +++ b/tests/parm/global_control_lnd_iau.nml.IN @@ -0,0 +1,451 @@ +&atmos_model_nml + blocksize = @[BLOCKSIZE] + chksum_debug = @[CHKSUM_DEBUG] + dycore_only = @[DYCORE_ONLY] + ccpp_suite = '@[CCPP_SUITE]' +/ + +&diag_manager_nml + prepend_date = .false. + max_output_fields = @[MAX_OUTPUT_FIELDS] +/ + +&fms_nml + clock_grain = 'ROUTINE' + domains_stack_size = @[DOMAINS_STACK_SIZE] + print_memory_usage = .false. +/ + +&fms2_io_nml + netcdf_default_format = 'netcdf4' +/ + +&fv_core_nml + layout = @[INPES],@[JNPES] + io_layout = @[IO_LAYOUT] + npx = @[NPX] + npy = @[NPY] + ntiles = @[NTILES] + npz = @[NPZ] + dz_min = @[DZ_MIN] + psm_bc = @[PSM_BC] + grid_type = -1 + make_nh = @[MAKE_NH] + fv_debug = .false. + range_warn = .true. + reset_eta = .false. + n_sponge = @[N_SPONGE] + nudge_qv = @[NUDGE_QV] + nudge_dz = @[NUDGE_DZ] + tau = @[TAU] + fast_tau_w_sec = @[FAST_TAU_W_SEC] + rf_cutoff = @[RF_CUTOFF] + d2_bg_k1 = @[D2_BG_K1] + d2_bg_k2 = @[D2_BG_K2] + kord_tm = @[KORD_TM] + kord_mt = @[KORD_MT] + kord_wz = @[KORD_WZ] + kord_tr = @[KORD_TR] + hydrostatic = @[HYDROSTATIC] + phys_hydrostatic = @[PHYS_HYDROSTATIC] + use_hydro_pressure = @[USE_HYDRO_PRESSURE] + pass_full_omega_to_physics_in_non_hydrostatic_mode = @[UPDATE_FULL_OMEGA] + beta = 0. + a_imp = 1. + p_fac = 0.1 + k_split = @[K_SPLIT] + n_split = @[N_SPLIT] + nwat = @[NWAT] + na_init = @[NA_INIT] + d_ext = 0. + dnats = @[DNATS] + fv_sg_adj = @[FV_SG_ADJ] + d2_bg = 0. + nord = @[NORD] + dddmp = @[DDDMP] + d4_bg = @[D4_BG] + vtdm4 = @[VTDM4] + delt_max = @[DELT_MAX] + ke_bg = 0. + do_vort_damp = @[DO_VORT_DAMP] + external_ic = @[EXTERNAL_IC] + external_eta = @[EXTERNAL_ETA] + gfs_phil = @[GFS_PHIL] + nggps_ic = @[NGGPS_IC] + mountain = @[MOUNTAIN] + ncep_ic = @[NCEP_IC] + d_con = @[D_CON] + hord_mt = @[HORD_MT] + hord_vt = @[HORD_VT] + hord_tm = @[HORD_TM] + hord_dp = @[HORD_DP] + hord_tr = @[HORD_TR] + adjust_dry_mass = @[ADJUST_DRY_MASS] + dry_mass = @[DRY_MASS] + consv_te = @[CONSV_TE] + do_sat_adj = @[DO_SAT_ADJ] + consv_am = .false. + fill = .true. + dwind_2d = .false. + print_freq = @[PRINT_FREQ] + warm_start = @[WARM_START] + no_dycore = @[NO_DYCORE] + z_tracer = .true. + agrid_vel_rst = .true. + read_increment = @[READ_INCREMENT] + res_latlon_dynamics = @[RES_LATLON_DYNAMICS] + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] +/ + +&external_ic_nml + filtered_terrain = @[FILTERED_TERRAIN] + levp = @[NPZP] + gfs_dwinds = @[GFS_DWINDS] + checker_tr = .false. + nt_checker = 0 +/ + +&gfs_physics_nml + fhzero = @[FHZERO] + h2o_phys = .true. + ldiag3d = @[LDIAG3D] + qdiag3d = @[QDIAG3D] + print_diff_pgr = @[PRINT_DIFF_PGR] + fhcyc = @[FHCYC] + use_ufo = @[USE_UFO] + pre_rad = @[PRE_RAD] + imp_physics = @[IMP_PHYSICS] + iovr = @[IOVR] + ltaerosol = @[LTAEROSOL] + lradar = @[LRADAR] + ttendlim = @[TTENDLIM] + dt_inner = @[DT_INNER] + sedi_semi = @[SEDI_SEMI] + decfl = @[DECFL] + oz_phys = @[OZ_PHYS_NEW] + oz_phys_2015 = @[OZ_PHYS_OLD] + lsoil_lsm = @[LSOIL_LSM] + do_mynnedmf = @[DO_MYNNEDMF] + do_mynnsfclay = @[DO_MYNNSFCLAY] + icloud_bl = @[ICLOUD_BL] + bl_mynn_edmf = @[BL_MYNN_EDMF] + bl_mynn_tkeadvect = @[BL_MYNN_TKEADVECT] + bl_mynn_edmf_mom = @[BL_MYNN_EDMF_MOM] + do_ugwp = @[DO_UGWP] + do_tofd = @[DO_TOFD] + gwd_opt = @[GWD_OPT] + do_ugwp_v0 = @[DO_UGWP_V0] + do_ugwp_v1 = @[DO_UGWP_V1] + do_ugwp_v0_orog_only = @[DO_UGWP_V0_OROG_ONLY] + do_ugwp_v0_nst_only = @[DO_UGWP_V0_NST_ONLY] + do_gsl_drag_ls_bl = @[DO_GSL_DRAG_LS_BL] + do_gsl_drag_ss = @[DO_GSL_DRAG_SS] + do_gwd_opt_psl = @[DO_GWD_OPT_PSL] + psl_gwd_dx_factor = @[PSL_GWD_DX_FACTOR] + do_gsl_drag_tofd = @[DO_GSL_DRAG_TOFD] + do_ugwp_v1_orog_only = @[DO_UGWP_V1_OROG_ONLY] + min_lakeice = @[MIN_LAKEICE] + min_seaice = @[MIN_SEAICE] + use_cice_alb = @[USE_CICE_ALB] + pdfcld = @[PDFCLD] + fhswr = @[FHSWR] + fhlwr = @[FHLWR] + ialb = @[IALB] + iems = @[IEMS] + iaer = @[IAER] + icliq_sw = @[ICLIQ_SW] + ico2 = @[ICO2] + isubc_sw = @[ISUBC_SW] + isubc_lw = @[ISUBC_LW] + isol = @[ISOL] + lwhtr = @[LWHTR] + swhtr = @[SWHTR] + cnvgwd = @[CNVGWD] + shal_cnv = @[SHAL_CNV] + cal_pre = @[CAL_PRE] + redrag = @[REDRAG] + dspheat = @[DSPHEAT] + hybedmf = @[HYBEDMF] + satmedmf = @[SATMEDMF] + isatmedmf = @[ISATMEDMF] + lheatstrg = @[LHEATSTRG] + lseaspray = @[LSEASPRAY] + random_clds = @[RANDOM_CLDS] + trans_trac = @[TRANS_TRAC] + cnvcld = @[CNVCLD] + imfshalcnv = @[IMFSHALCNV] + imfdeepcnv = @[IMFDEEPCNV] + progsigma = @[PROGSIGMA] + betascu = @[BETASCU] + betamcu = @[BETAMCU] + betadcu = @[BETADCU] + ras = @[RAS] + cdmbgwd = @[CDMBWD] + prslrd0 = @[PRSLRD0] + ivegsrc = @[IVEGSRC] + isot = @[ISOT] + lsoil = @[LSOIL] + lsm = @[LSM] + iopt_dveg = @[IOPT_DVEG] + iopt_crs = @[IOPT_CRS] + iopt_btr = @[IOPT_BTR] + iopt_run = @[IOPT_RUN] + iopt_sfc = @[IOPT_SFC] + iopt_trs = @[IOPT_TRS] + iopt_diag = @[IOPT_DIAG] + iopt_frz = @[IOPT_FRZ] + iopt_inf = @[IOPT_INF] + iopt_rad = @[IOPT_RAD] + iopt_alb = @[IOPT_ALB] + iopt_snf = @[IOPT_SNF] + iopt_tbot = @[IOPT_TBOT] + iopt_stc = @[IOPT_STC] + debug = @[DEBUG] + nstf_name = @[NSTF_NAME] + nst_anl = @[NST_ANL] + psautco = @[PSAUTCO] + prautco = @[PRAUTCO] + lgfdlmprad = @[LGFDLMPRAD] + effr_in = @[EFFR_IN] + ldiag_ugwp = @[LDIAG_UGWP] + fscav_aero = @[FSCAV_AERO] + do_RRTMGP = @[DO_RRTMGP] + active_gases = @[ACTIVE_GASES] + ngases = @[NGASES] + lw_file_gas = @[LW_FILE_GAS] + lw_file_clouds = @[LW_FILE_CLOUDS] + sw_file_gas = @[SW_FILE_GAS] + sw_file_clouds = @[SW_FILE_CLOUDS] + rrtmgp_nGptsSW = @[RRTMGP_NGPTSSW] + rrtmgp_nGptsLW = @[RRTMGP_NGPTSLW] + rrtmgp_nBandsLW = @[RRTMGP_NBANDSLW] + rrtmgp_nBandsSW = @[RRTMGP_NBANDSSW] + doGP_cldoptics_LUT = @[DOGP_CLDOPTICS_LUT] + doGP_lwscat = @[DOGP_LWSCAT] + doGP_sgs_cnv = @[DOGP_SGS_CNV] + do_sppt = @[DO_SPPT] + do_shum = @[DO_SHUM] + do_skeb = @[DO_SKEB] + iaufhrs = @[IAUFHRS] + iau_delthrs = @[IAU_DELTHRS] + iau_inc_files= @[IAU_INC_FILES] + iau_drymassfixer = .false. + use_med_flux = @[USE_MED_FLUX] + frac_grid = @[FRAC_GRID] + cplchm = @[CPLCHM] + cplflx = @[CPLFLX] + cplice = @[CPLICE] + cplwav = @[CPLWAV] + cplwav2atm = @[CPLWAV2ATM] + cpllnd = @[CPLLND] + cpllnd2atm = @[CPLLND2ATM] + do_ca = @[DO_CA] + ca_global = @[CA_GLOBAL] + ca_sgs = @[CA_SGS] + nca = @[NCA] + ncells = @[NCELLS] + nlives = @[NLIVES] + nseed = @[NSEED] + nfracseed = @[NFRACSEED] + nthresh = @[NTHRESH] + ca_trigger = @[CA_TRIGGER] + nspinup = @[NSPINUP] + iseed_ca = @[ISEED_CA] +@[HIDE_LAND_PERT] lndp_type = @[LNDP_TYPE] +@[HIDE_LAND_PERT] n_var_lndp = @[N_VAR_LNDP] +@[HIDE_NEST] lcnorm = @[LCNORM] +@[HIDE_SPPT] pert_mp = @[PERT_MP] +@[HIDE_SPPT] pert_radtend = @[PERT_RADTEND] +@[HIDE_SPPT] pert_clds = @[PERT_CLDS] +@[HIDE_IAU] iau_inc_files= @[IAU_INC_FILES] +@[HIDE_IAU] iau_drymassfixer = .false. +@[HIDE_IAU] iau_filter_increments = @[IAU_FILTER_INCREMENTS] +/ + +&land_iau_nml + do_land_iau=.true. + land_iau_fhrs=3,6,9 + land_iau_delthrs=6 + land_iau_inc_files='sfc_inc','' + lsoil_incr=3 + land_iau_filter_increments=.false. + land_iau_upd_stc=.true. + land_iau_upd_slc=.true. + land_iau_do_stcsmc_adjustment=.true. + land_iau_min_T_increment=0.0001 +/ + +&cires_ugwp_nml + knob_ugwp_solver = @[KNOB_UGWP_SOLVER] + knob_ugwp_source = @[KNOB_UGWP_SOURCE] + knob_ugwp_wvspec = @[KNOB_UGWP_WVSPEC] + knob_ugwp_azdir = @[KNOB_UGWP_AZDIR] + knob_ugwp_stoch = @[KNOB_UGWP_STOCH] + knob_ugwp_effac = @[KNOB_UGWP_EFFAC] + knob_ugwp_doaxyz = @[KNOB_UGWP_DOAXYZ] + knob_ugwp_doheat = @[KNOB_UGWP_DOHEAT] + knob_ugwp_dokdis = @[KNOB_UGWP_DOKDIS] + knob_ugwp_ndx4lh = @[KNOB_UGWP_NDX4LH] + knob_ugwp_version = @[KNOB_UGWP_VERSION] + ! This is only for UGWP v0 +@[HIDE_UGWPV0] launch_level = @[LAUNCH_LEVEL] + ! These are only for UGWP v1 +@[HIDE_UGWPV1] knob_ugwp_palaunch = @[KNOB_UGWP_PALAUNCH] +@[HIDE_UGWPV1] knob_ugwp_nslope = @[KNOB_UGWP_NSLOPE] +@[HIDE_UGWPV1] knob_ugwp_lzmax = @[KNOB_UGWP_LZMAX] +@[HIDE_UGWPV1] knob_ugwp_lzmin = @[KNOB_UGWP_LZMIN] +@[HIDE_UGWPV1] knob_ugwp_lzstar = @[KNOB_UGWP_LZSTAR] +@[HIDE_UGWPV1] knob_ugwp_taumin = @[KNOB_UGWP_TAUMIN] +@[HIDE_UGWPV1] knob_ugwp_tauamp = @[KNOB_UGWP_TAUAMP] +@[HIDE_UGWPV1] knob_ugwp_lhmet = @[KNOB_UGWP_LHMET] +@[HIDE_UGWPV1] knob_ugwp_orosolv = @[KNOB_UGWP_OROSOLV] +/ + +&gfdl_cloud_microphysics_nml + sedi_transport = .true. + do_sedi_heat = .false. + rad_snow = .true. + rad_graupel = .true. + rad_rain = .true. + const_vi = .false. + const_vs = .false. + const_vg = .false. + const_vr = .false. + vi_max = 1. + vs_max = 2. + vg_max = 12. + vr_max = 12. + qi_lim = 1. + prog_ccn = .false. + do_qa = .true. + fast_sat_adj = .true. + tau_l2v = 225. + tau_v2l = 150. + tau_g2v = 900. + rthresh = 10.e-6 ! This is a key parameter for cloud water + dw_land = 0.16 + dw_ocean = 0.10 + ql_gen = 1.0e-3 + ql_mlt = 1.0e-3 + qi0_crt = 8.0e-5 + qs0_crt = 1.0e-3 + tau_i2s = 1000. + c_psaci = 0.05 + c_pgacs = 0.01 + rh_inc = 0.30 + rh_inr = 0.30 + rh_ins = 0.30 + ccn_l = 300. + ccn_o = 100. + c_paut = 0.5 + c_cracw = 0.8 + use_ppm = .false. + use_ccn = .true. + mono_prof = .true. + z_slope_liq = .true. + z_slope_ice = .true. + de_ice = .false. + fix_negative = .true. + icloud_f = 1 + mp_time = 150. + reiflag = @[REIFLAG] +/ + +&interpolator_nml + interp_method = 'conserve_great_circle' +/ + +&namsfc + FNGLAC = @[FNGLAC] + FNMXIC = @[FNMXIC] + FNTSFC = @[FNTSFC] + FNSNOC = @[FNSNOC] + FNZORC = @[FNZORC] + FNALBC = @[FNALBC] + FNALBC2 = @[FNALBC2] + FNAISC = @[FNAISC] + FNTG3C = @[FNTG3C] + FNVEGC = @[FNVEGC] + FNVETC = @[FNVETC] + FNSOTC = @[FNSOTC] + FNSOCC = @[FNSOCC] + FNSMCC = @[FNSMCC] + FNMSKH = @[FNMSKH] + FNTSFA = '' + FNACNA = '' + FNSNOA = '' + FNVMNC = @[FNVMNC] + FNVMXC = @[FNVMXC] + FNSLPC = @[FNSLPC] + FNABSC = @[FNABSC] + LDEBUG = @[LDEBUG] + FSMCL(2) = 99999 + FSMCL(3) = 99999 + FSMCL(4) = 99999 + LANDICE = @[LANDICE] + FTSFS = @[FTSFS] + FAISL = 99999 + FAISS = 99999 + FSNOL = 99999 + FSNOS = 99999 + FSICL = @[FSICL] + FSICS = @[FSICS] + FTSFL = 99999 + FVETL = 99999 + FSOTL = 99999 + FvmnL = 99999 + FvmxL = 99999 + FSLPL = 99999 + FABSL = 99999 +/ + +&fv_grid_nml + grid_file = 'INPUT/grid_spec.nc' +/ + +&nam_stochy +@[HIDE_SKEB] skeb = @[SKEB] +@[HIDE_SKEB] iseed_skeb = @[ISEED_SKEB] +@[HIDE_SKEB] skeb_tau = @[SKEB_TAU] +@[HIDE_SKEB] skeb_lscale = @[SKEB_LSCALE] +@[HIDE_SKEB] skebnorm = @[SKEBNORM] +@[HIDE_SKEB] skeb_npass = @[SKEB_NPASS] +@[HIDE_SKEB] skeb_vdof = @[SKEB_VDOF] +@[HIDE_SHUM] shum = @[SHUM] +@[HIDE_SHUM] iseed_shum = @[ISEED_SHUM] +@[HIDE_SHUM] shum_tau = @[SHUM_TAU] +@[HIDE_SHUM] shum_lscale = @[SHUM_LSCALE] +@[HIDE_SPPT] sppt = @[SPPT] +@[HIDE_SPPT] iseed_sppt = @[ISEED_SPPT] +@[HIDE_SPPT] sppt_tau = @[SPPT_TAU] +@[HIDE_SPPT] sppt_lscale = @[SPPT_LSCALE] +@[HIDE_SPPT] sppt_logit = @[SPPT_LOGIT] +@[HIDE_SPPT] sppt_sfclimit = @[SPPT_SFCLIMIT] +@[HIDE_SPPT] use_zmtnblck = @[USE_ZMTNBLCK] +@[HIDE_SPPT] pbl_taper = @[PBL_TAPER] +@[HIDE_OCNSPPT] OCNSPPT = @[OCNSPPT] +@[HIDE_OCNSPPT] OCNSPPT_LSCALE = @[OCNSPPT_LSCALE] +@[HIDE_OCNSPPT] OCNSPPT_TAU = @[OCNSPPT_TAU] +@[HIDE_OCNSPPT] ISEED_OCNSPPT =@[ISEED_OCNSPPT] +@[HIDE_EPBL] EPBL = @[EPBL] +@[HIDE_EPBL] EPBL_LSCALE = @[EPBL_LSCALE] +@[HIDE_EPBL] EPBL_TAU = @[EPBL_TAU] +@[HIDE_EPBL] ISEED_EPBL = @[ISEED_EPBL] +/ + +&nam_sfcperts +@[HIDE_LAND_PERT] lndp_type = @[LNDP_TYPE] +@[HIDE_LAND_PERT] lndp_model_type = @[LNDP_MODEL_TYPE] +@[HIDE_LAND_PERT] LNDP_TAU=@[LNDP_TAU] +@[HIDE_LAND_PERT] LNDP_LSCALE=@[LNDP_LSCALE] +@[HIDE_LAND_PERT] ISEED_LNDP=@[ISEED_LNDP] +@[HIDE_LAND_PERT] lndp_var_list = @[LNDP_VAR_LIST] +@[HIDE_LAND_PERT] lndp_prt_list = @[LNDP_PRT_LIST] +/ + +&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'/ diff --git a/tests/rt.conf b/tests/rt.conf index bc6d089904..6c1b30a747 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -99,6 +99,7 @@ RUN | control_latlon | RUN | control_wrtGauss_netcdf_parallel | | baseline | RUN | control_c48 | | baseline | RUN | control_c48.v2.sfc | | baseline | +RUN | control_c48_lnd_iau | | baseline | RUN | control_c192 | - noaacloud | baseline | RUN | control_c384 | | baseline | RUN | control_c384gdas | - noaacloud | baseline | diff --git a/tests/test_changes.list b/tests/test_changes.list index 925538e123..1c5be971bd 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,35 +1 @@ -cpld_control_p8_mixedmode intel -cpld_control_gfsv17 intel -cpld_control_gfsv17_iau intel -cpld_restart_gfsv17 intel -cpld_mpi_gfsv17 intel -cpld_debug_gfsv17 intel -cpld_control_p8 intel -cpld_control_p8.v2.sfc intel -cpld_restart_p8 intel -cpld_control_qr_p8 intel -cpld_restart_qr_p8 intel -cpld_2threads_p8 intel -cpld_decomp_p8 intel -cpld_mpi_p8 intel -cpld_control_ciceC_p8 intel -cpld_control_c192_p8 intel -cpld_restart_c192_p8 intel -cpld_bmark_p8 intel -cpld_restart_bmark_p8 intel -cpld_control_noaero_p8 intel -cpld_debug_p8 intel -cpld_debug_noaero_p8 intel -cpld_control_p8_faster intel -cpld_control_pdlib_p8 intel -cpld_restart_pdlib_p8 intel -cpld_mpi_pdlib_p8 intel -cpld_debug_pdlib_p8 intel -hafs_regional_atm_wav intel -hafs_regional_atm_ocn_wav intel -atmwav_control_noaero_p8 intel -cpld_control_pdlib_p8 gnu -cpld_debug_pdlib_p8 gnu -cpld_control_gfsv17 intelllvm -cpld_debug_gfsv17 intelllvm -cpld_control_p8 intelllvm +control_c48_lnd_iau intel diff --git a/tests/tests/control_c48_lnd_iau b/tests/tests/control_c48_lnd_iau new file mode 100644 index 0000000000..702c908d93 --- /dev/null +++ b/tests/tests/control_c48_lnd_iau @@ -0,0 +1,84 @@ +############################################################################### +# +# global control test: GFSv16 atmosphere only at C48L127 with land IAU +# +############################################################################### + +export TEST_DESCR="Compare global control C48L127 with land IAU results with previous trunk version" + +export CNTL_DIR=control_c48_lnd_iau + +export LIST_FILES="sfcf000.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf024.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" + +export ATMRES=C48 + +export_fv3 +export_tiled +if [[ $RT_COMPILER != gnu ]]; then + export_ugwpv1 + export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 +fi + +export INPES=1 +export JNPES=1 +export WRTTASK_PER_GROUP=2 +export NPZ=127 +export NPZP=128 +export NPX=49 +export NPY=49 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL=0 +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.false. +export OUTPUT_FH="6 -1" +export IAER=5111 +export IOVR=3 +export IMO=192 +export JMO=94 + +export FNSMCC_control="'global_soilmgldas.statsgo.t92.192.94.grb'" +export FNMSKH_control="'global_slmask.t62.192.94.grb'" +export FNSMCC=${FNSMCC_control} +export FNMSKH=${FNMSKH_control} + +export FV3_RUN=control_run.IN +export INPUT_NML=global_control_lnd_iau.nml.IN From 33b3c18774a994b3b05da4489b08f34115adbf48 Mon Sep 17 00:00:00 2001 From: WenMeng-NOAA <48260754+WenMeng-NOAA@users.noreply.github.com> Date: Thu, 21 Nov 2024 13:27:13 -0500 Subject: [PATCH 12/24] Update inline post + Add documentation for HSD cases in tests-dev #2498 (#2489) * UFSWM - Documentation for HSD cases * FV3 - * upp - update upp hash to ce258fca with update inline post interface. --------- Co-authored-by: gspetro-NOAA Co-authored-by: cameronbook --- FV3 | 2 +- doc/UsersGuide/source/BuildingAndRunning.rst | 8 +- doc/UsersGuide/source/CAPE2020.rst | 170 +++ doc/UsersGuide/source/CodeOverview.rst | 2 +- doc/UsersGuide/source/Configurations.rst | 1028 ----------------- doc/UsersGuide/source/FAQ.rst | 2 +- doc/UsersGuide/source/Glossary.rst | 9 + doc/UsersGuide/source/HSD.rst | 32 + doc/UsersGuide/source/HSDcontainer.rst | 381 ++++++ doc/UsersGuide/source/Introduction.rst | 6 +- doc/UsersGuide/source/RTConfigurations.rst | 510 ++++++++ doc/UsersGuide/source/baroclinic_wave.rst | 105 ++ doc/UsersGuide/source/conf.py | 16 + .../source/doc-snippets/clone_hsd.rst | 14 + .../doc-snippets/hsd_baseline_config.rst | 5 + .../source/doc-snippets/hsd_check_results.rst | 21 + .../source/doc-snippets/hsd_data.rst | 6 + .../doc-snippets/hsd_machine_config.rst | 7 + .../source/doc-snippets/hsd_notes.rst | 9 + .../source/doc-snippets/hsd_run_multiple.rst | 11 + .../source/doc-snippets/hsd_run_tests.rst | 26 + doc/UsersGuide/source/index.rst | 3 +- doc/UsersGuide/source/references.bib | 21 + doc/UsersGuide/source/tables/rrfs-rts.csv | 11 - tests-dev/test_cases/utils/README.txt | 18 + tests-dev/test_cases/utils/plot_bcw.sh | 91 ++ tests-dev/test_cases/utils/plot_cape.sh | 265 +++++ tests/bl_date.conf | 2 +- tests/logs/RegressionTests_gaea.log | 595 +++++----- tests/logs/RegressionTests_hera.log | 743 ++++++------ tests/logs/RegressionTests_hercules.log | 761 ++++++------ tests/logs/RegressionTests_jet.log | 503 ++++---- tests/logs/RegressionTests_orion.log | 583 +++++----- tests/logs/RegressionTests_wcoss2.log | 466 ++++---- tests/test_changes.list | 45 +- tests/tests/rap_clm_lake_debug | 1 + 36 files changed, 3603 insertions(+), 2875 deletions(-) create mode 100644 doc/UsersGuide/source/CAPE2020.rst delete mode 100644 doc/UsersGuide/source/Configurations.rst create mode 100644 doc/UsersGuide/source/HSD.rst create mode 100644 doc/UsersGuide/source/HSDcontainer.rst create mode 100644 doc/UsersGuide/source/RTConfigurations.rst create mode 100644 doc/UsersGuide/source/baroclinic_wave.rst create mode 100644 doc/UsersGuide/source/doc-snippets/clone_hsd.rst create mode 100644 doc/UsersGuide/source/doc-snippets/hsd_baseline_config.rst create mode 100644 doc/UsersGuide/source/doc-snippets/hsd_check_results.rst create mode 100644 doc/UsersGuide/source/doc-snippets/hsd_data.rst create mode 100644 doc/UsersGuide/source/doc-snippets/hsd_machine_config.rst create mode 100644 doc/UsersGuide/source/doc-snippets/hsd_notes.rst create mode 100644 doc/UsersGuide/source/doc-snippets/hsd_run_multiple.rst create mode 100644 doc/UsersGuide/source/doc-snippets/hsd_run_tests.rst delete mode 100644 doc/UsersGuide/source/tables/rrfs-rts.csv create mode 100644 tests-dev/test_cases/utils/README.txt create mode 100755 tests-dev/test_cases/utils/plot_bcw.sh create mode 100755 tests-dev/test_cases/utils/plot_cape.sh diff --git a/FV3 b/FV3 index 8f7cab2f7c..71a47292c9 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 8f7cab2f7c8dbc9929daf2a4a43f4b6ee718f6ed +Subproject commit 71a47292c920a41e2a8e6f71abff33059445d14f diff --git a/doc/UsersGuide/source/BuildingAndRunning.rst b/doc/UsersGuide/source/BuildingAndRunning.rst index 02bfb2a846..a1c35b31b6 100644 --- a/doc/UsersGuide/source/BuildingAndRunning.rst +++ b/doc/UsersGuide/source/BuildingAndRunning.rst @@ -452,7 +452,7 @@ Running the Model .. attention:: Although the following discussions are general, users may not be able to execute the script successfully "as is" unless they are on a - `Tier-1 platform `__. + :wm-wiki:`Tier-1 platform `. .. _UsingRegressionTest: @@ -504,8 +504,7 @@ or (2) create a new file (e.g., ``my_rt.conf``), add the tests, and execute ``./ On NOAA RDHPCS ------------------ -On `Tier-1 platforms `__, users can run +On :wm-wiki:`Tier-1 platforms `, users can run regression tests by editing the ``rt.conf`` file and executing: .. code-block:: console @@ -733,8 +732,7 @@ operational requirement test. The only difference is that the ``opnReqTest`` scr The ``tests/opnReqTests`` directory contains opnReqTest-specific lower-level scripts used to set up run configurations. -On `Tier-1 platforms `_, tests can +On :wm-wiki:`Tier-1 platforms `, tests can be run by invoking .. code-block:: console diff --git a/doc/UsersGuide/source/CAPE2020.rst b/doc/UsersGuide/source/CAPE2020.rst new file mode 100644 index 0000000000..821cd4da61 --- /dev/null +++ b/doc/UsersGuide/source/CAPE2020.rst @@ -0,0 +1,170 @@ +.. role:: raw-html(raw) + :format: html + +.. _cape-2020: + +********************* +July 2020 CAPE Case +********************* + +The July 2020 CAPE case is an atmosphere-only forecast run at C48 resolution with 127 vertical levels. It is set to run a 24-hour forecast from 2020-07-23 at 0z using the `FV3_GFS_v16 `_ physics suite and default values from the WM's `default_vars.sh `_ ``export_fv3_v16`` function. + +The original July 2020 CAPE case illustrated a shortcoming of the Global Forecast System (GFS) v16 --- low Convective Available Potential Energy (CAPE) predictions during summertime (:cite:t:`SunEtAl2024`). :cite:t:`SunEtAl2024` (2024) used this case study to investigate the low CAPE bias in the GFS and determined that "the GFS simulates smaller surface latent heat flux and larger surface sensible heat flux than the observations" due to "slightly drier-than-observed soil moisture" within the offline Global Data Assimilation System (GDAS) initial conditions used in the study. This resulted in less latent heat and moisture being fed back to the lower levels of the atmosphere and ultimately changed the overall vertical profile of the atmosphere, which lowered CAPE values relative to the older GFS v15.2. + +The UFS WM and its subcomponents have undergone signficant changes since the original July 2020 CAPE case study was posted and since :cite:t:`SunEtAl2024`'s experiment, so the current GFS v16 CAPE bias may have shifted. However, users may still wish to run this case and then experiment with different (potentially user-generated) initial conditions, a coupled land surface model (LSM), or other factors to explore elements that improve or worsen CAPE bias. Additionally, :cite:t:`SunEtAl2024`'s findings only apply to this case study, so users may wish to expand their research to include other warm-season cases. + +============================================ +Obtaining Data for the July 2020 CAPE Case +============================================ + +.. include:: ./doc-snippets/hsd_data.rst + +.. _chgres-data: + +User-Generated Data +--------------------- + +.. attention:: + + The following instructions apply only to users with access to :term:`HPSS` on :term:`RDHPCS`. In the future, there are plans to expand options for access to raw initial conditions data for other users. + +Users who have access to :term:`HPSS` can generate initial conditions (:term:`ICs`) for a particular forecast case (date) and resolution by downloading the raw GFS data and converting it to the appropriate resolution using the the UFS_UTILS ``gdas_init`` utility. ``gdas_init`` pulls the input data required by ``chgres_cube`` from HPSS and then runs the ``chgres_cube`` utility to create coldstart initial conditions for the desired resolution and number of vertical levels. Users who already have access to raw GFS ICs can use just the ``chgres_cube`` utility to perform the conversion on their existing data. Users may wish to refer to the `UFS_UTILS User's Guide `_ for more information. + +.. note:: + + In order to generate all necessary configuration, data, input, and fix files to run a configuration similar to the July 2020 CAPE case for another date (still C48 resolution), the user first needs to run the base ``ufs_test.sh`` script for the default July 2020 CAPE case as described in :numref:`Section %s `. + +To generate coldstart ICs via the UFS_UTILS ``gdas_init``/``chgres_cube`` utilities on an :term:`RDHPCS` with :term:`HPSS` access (e.g., Hera or Jet), the user can run the following commands: + +.. code-block:: console + + git clone https://github.com/ufs-community/UFS_UTILS.git + cd UFS_UTILS/fix + ./link_fixdirs.sh emc + cd .. + ./build_all.sh + cd util/gdas_init + +where ```` is Hera or Jet. + +Then, users will need to edit the ``config`` file to: + +* Set paths for data extraction and converted files (``EXTRACT_DIR`` and ``OUTDIR``, respectively) +* Set ``yy/mm/dd/hh`` to desired forecast start time +6 hours +* Set ``CDUMP`` to ``gfs`` to generate GFS ICs +* Set ``LEVS`` to 128 +* Set ``EXTRACT_DATA`` to ``yes`` (unless data is already staged in ``EXTRACT_DIR``) +* Set ``CRES_HIRES`` to desired resolution for coldstart files (e.g., ``C192``) + +These variables are documented in more detail in the `UFS_UTILS gdas_init documentation `_. + +In the machine-specific driver (e.g., ``driver.jet.sh``), users will need to set ``PROJECT_CODE`` to an account that the user can use for submitting batch jobs. + +After configuring the utility, users can run the driver script: + +.. code-block:: console + + ./driver..sh + +These steps will (1) pull raw GFS data from HPSS into ``EXTRACT_DIR`` and then (2) convert the raw data to coldstart ICs (placed in ``OUTDIR/gfs.YYYYMMDD/HH/model_data/atmos/input``). The converted coldstart ICs can then be used as input data for certain UFS WM regression tests (RTs) of corresponding model resolution and configuration (e.g., C48 GFS coldstart data in the ``control_c48.v2.sfc`` RT). + +.. note:: + + Note that since 6/4/24, the ``develop`` branch of UFS_UTILS generates only version 2 (v2) surface (sfc) files via ``gdas_init`` and ``chgres_cube``. Therefore, successful integration of the converted coldstart files has only been achieved using the recently added ``v2.sfc`` WM RTs (see e.g., :wm-repo:`control_c48.v2.sfc ` and PRs :wm-repo:`#2005 ` and :wm-repo:`#1977 `). Since the v2 surface files are significantly different from the v1 surface file format, the user may need to re-configure the higher resolution test case to ensure that fix files, physics suite, and other input data used are consistent with v2 surface files. + +.. _run-cape: + +================================= +Running the July 2020 CAPE Case +================================= + +This section explains how to run the July 2020 CAPE case described above using the ``ufs_test.sh`` script. + +Clone the Repository +-------------------- + +.. include:: ./doc-snippets/clone_hsd.rst + +Machine Configuration +----------------------- + +.. include:: ./doc-snippets/hsd_machine_config.rst + +.. _cape-config: + +Test Configuration +---------------------- + +The July 2020 CAPE case can be run as-is without adjusting the configuration. Users may also choose to run a similar configuration for a different date or the same July 2020 CAPE case at a higher resolution. + +Different Date +^^^^^^^^^^^^^^^^ + +Users may choose to run a similar UFS WM configuration for different dates with user-generated :term:`ICs` (see :numref:`Section %s ` for instructions on downloading this data from :term:`HPSS`). In this case, users will need to copy the ``gfs*.nc`` and ``sfc*.nc`` files from ``OUTDIR/gfs.YYYYMMDD/HH/model_data/atmos/input`` into the ``INPUT`` directory of a UFS WM run directory. (The run directory is set in ``create_xml.py`` as ``${PTMP}/${USER}/FV3_RT/rt_${pid}`` for HSD cases.) Note that this will only work when the run directory uses ICs of the same resolution. + +Additionally, users will need to adjust the model start time in the ``model_configure`` file. For example: + +.. code-block:: + + start_year: 2019 + start_month: 06 + start_day: 15 + start_hour: 06 + start_minute: 0 + start_second: 0 + nhours_fcst: 24 + fhrot: 0 + ... + +Different Resolution +^^^^^^^^^^^^^^^^^^^^^^ + +If users choose to run the July 2020 CAPE case at higher resolutions, they can generate GFS ICs at C192, C384, or C768 resolutions following the instructions :ref:`above `. However, they will also need to ensure that the experiment configuration files (i.e., ``${UFS_WM}/tests-dev/test_cases/tests/2020_CAPE`` and ``${UFS_WM}/tests-dev/test_cases/exp_conf/2020_CAPE``), input namelist, physics suites, and ``fv3_conf/*.IN`` file are consistent and configured properly for their desired resolution. Configurations at these higher resolutions are untested, and users can expect to do significant troubleshooting to make them work. + +When changing resolution, it is recommended that users view the :wm-repo:`control_c192 `, :wm-repo:`control_c384 `, or :wm-repo:`control_c768 ` test files as a starting point. Those test files will provide guidance on variable settings and ``model_configure``/input namelist settings. Additionally, users will need to ensure that the ``FV3_RUN`` file (named ``2020_CAPE.IN`` for the 2020_CAPE experiment) points to the correct input data. Users can modify the ``parm/fv3_conf`` files associated with the sample ``control_*`` tests to enable use of v2 surface data (as in the :wm-repo:`control_c48.v2.sfc ` or :wm-repo:`2020_CAPE ` cases). Any new or modified test file, input namelist, or ``*.IN`` file should be placed in the appropriate directory in ``tests-dev/exp_conf`` so that the files are correctly propagated into the ``tests-dev`` directory when invoking the ``-s`` argument with ``ufs_test.sh``. + +.. attention:: + + Although it is *possible* to adjust the July 2020 CAPE case to run at non-default resolutions, this is unsupported functionality. Users may experiment with the capability but will need to commit to significant troubleshooting/experimentation to run the case at those resolutions. + +Baseline Configuration +---------------------- + +.. include:: ./doc-snippets/hsd_baseline_config.rst + +.. _run-2020-cape: + +Running Tests +------------- + +.. include:: ./doc-snippets/hsd_run_tests.rst + +Examples +^^^^^^^^^^ + +A user with access to the ``epic`` account can run the ``2020_CAPE`` test case with the ``intel`` compiler on an :term:`RDHPCS` where they have access using the following command: + +.. code-block:: console + + ./ufs_test.sh -a epic -s -c -k -r -n "2020_CAPE intel" + +Running Multiple Cases +^^^^^^^^^^^^^^^^^^^^^^^^ + +.. include:: ./doc-snippets/hsd_run_multiple.rst + +.. _check-results: + +Checking Results +----------------- + +.. include:: ./doc-snippets/hsd_check_results.rst + +For example, to monitor progress or check results for the ``2020_CAPE_intel`` case, run: + +.. code-block:: console + + tail -f ${UFS_WM}/tests-dev/run_dir/2020_CAPE_intel/err + tail -f ${UFS_WM}/tests-dev/run_dir/2020_CAPE_intel/out + +.. include:: ./doc-snippets/hsd_notes.rst \ No newline at end of file diff --git a/doc/UsersGuide/source/CodeOverview.rst b/doc/UsersGuide/source/CodeOverview.rst index 852186292a..c05263fc06 100644 --- a/doc/UsersGuide/source/CodeOverview.rst +++ b/doc/UsersGuide/source/CodeOverview.rst @@ -31,7 +31,7 @@ Currently, Level 1 (or Tier-1) platforms for regression testing are: * Hercules (Intel/GNU compilers) * AWS Docker container (Intel) -More information is available in the `UFS WM wiki `__. +More information is available in the :wm-wiki:`UFS WM wiki `. Level 2-4 Systems =================== diff --git a/doc/UsersGuide/source/Configurations.rst b/doc/UsersGuide/source/Configurations.rst deleted file mode 100644 index 69d659ffa5..0000000000 --- a/doc/UsersGuide/source/Configurations.rst +++ /dev/null @@ -1,1028 +0,0 @@ -.. |nbsp| unicode:: 0xA0 - :trim: - -.. role:: raw-html(raw) - :format: html - -.. _Configurations: - -************************* -Configurations -************************* - -The UFS Weather Model (WM) can be run in any of several configurations, from a single-component atmospheric -model to a fully coupled model with multiple earth system components (e.g., atmosphere, ocean, sea-ice, land, and -mediator). This chapter documents a few of the currently supported configurations. For a full list of -supported configurations, view the `rt.conf `__ file. - -.. attention:: - - This chapter is a work in progress. There are a multitude of options for configuring the UFS WM, - and this chapter merely details a few supported configurations. It will be expanded over time - to include the full set of configurations supported for WM regression tests (RTs). - -.. _UFS-configurations-documented: - -.. list-table:: *Documented UFS Weather Model Configuration Categories* - :widths: 10 70 - :header-rows: 1 - - * - Configuration Category - - Description - * - :ref:`ATM ` - - Standalone Atmospheric Model (:term:`ATM`) - * - :ref:`ATMW ` - - Coupled :term:`ATM` and :term:`WW3` - * - :ref:`ATMAERO ` - - Coupled :term:`ATM` and :term:`GOCART` - * - :ref:`ATML ` - - Coupled :term:`ATM` and :term:`LND` - * - :ref:`LND ` - - Coupled :term:`CDEPS` - :term:`DATM` - :term:`LND` -:term:`CMEPS` - * - :ref:`RRFS ` - - :term:`ATM` with :term:`data assimilation` - * - :ref:`HAFS ` - - Coupled components may include :term:`CDEPS` - :term:`ATM` - :term:`HYCOM` - :term:`WW3` - :term:`MOM6` - :term:`CMEPS` - -This chapter details the supported build/run options for each supported configuration. -Click on the configuration category in :numref:`Table %s ` -to go to that section. Each configuration category includes sample code for setting ``CMAKE_FLAGS`` and ``CCPP_SUITES``. -Additionally, there is a list of preferred physics suites, examples of ``ufs.configure`` files, -and links to information on other input files required to run the model. - -============ -Background -============ - -Each RT configuration file (located in the ``ufs-weather-model/tests/tests`` -`directory `__) -sets default variables by calling setup functions from ``ufs-weather-model/tests/default_vars.sh`` -(see defaults `here `__). -Then, the RT configuration file sets test-specific variablesthese values will override -the defaults. For example, the ``control_c48`` test file sets a list of files that -it will use, calls the ``export_fv3`` function from ``default_vars.sh``, and then exports -test-specific variables. An excerpt is included below (``...`` indicates omitted lines): - -.. code-block:: console - - export LIST_FILES="sfcf000.nc \ - sfcf024.nc \ - atmf000.nc \ - atmf024.nc \ - RESTART/20210323.060000.coupler.res \ - RESTART/20210323.060000.fv_core.res.nc \ - ... - RESTART/20210323.060000.sfc_data.tile5.nc \ - RESTART/20210323.060000.sfc_data.tile6.nc" - - export_fv3 - - export INPES=1 - export JNPES=1 - export WRTTASK_PER_GROUP=2 - export NPZ=127 - export NPZP=128 - export NPX=49 - export NPY=49 - export DT_ATMOS=1200 - ... - -``default_vars.sh`` contains eight functions that set defaults for different types of tests. :numref:`Table %s ` describes what each function does. - -.. _def-funcs: - -.. list-table:: *default_vars.sh functions* - :widths: 10 70 - :header-rows: 1 - - * - Function Name - - Description - * - export_fv3 - - Set variables to the FV3 default values (first common variables, then model-specific ones). Different machines may have different defaults for some variables. - * - export_cpl - - Set variables to the default values for *coupled* / S2S configurations. - * - export_35d_run - - Set variables to the default values for EMC's weekly coupled benchmark 35d tests (see `rt_35d.conf `__). - * - export_datm_cdeps - - Set variables to the default values for configurations that use the data atmosphere (:term:`DATM`) component. - * - export_hafs_datm_cdeps - - Set variables to the default values for HAFS configurations that use the data atmosphere (DATM) component. - * - export_hafs_docn_cdeps - - Set variables to the default values for HAFS configurations that use the data ocean (:term:`DOCN`) component. - * - export_hafs_regional - - Set variables to the default values for regional HAFS configurations. - * - export_hafs - - Set variables to the default values for HAFS configurations. - -Multiple ``default_vars.sh`` functions may be called in a given test. Values set in one -function will be overridden when the same values are set in a subsequent function. - -The most up-to-date list of ``develop`` branch data required for each test is available in -the `UFS WM RT Data Bucket `__. -Users should click on "Browse Bucket" and navigate to the most recent date (in ``develop-YYYY-MM-DD`` format). -Then, users should select *Intel* or *GNU* based on the compiler used in the test they -want to run and then select the test name to see the required data. - -==================================== -Atmospheric Model Configurations -==================================== - -The atmospheric model configurations all use the UFS WM atmospheric component -and may couple it with other models (e.g., a wave or aerosol model). - -.. _atm-documented: - -ATM - Standalone Atmospheric Model -===================================== - -The standalone atmospheric model (:term:`ATM`) is an :term:`FV3`-based prognostic -atmospheric model that can be used for short- and medium-range research and operational -forecasts. In standalone mode, ``ATM`` is not coupled to any other model. - -Current ATM regression tests cover a wide variety of functionality and involve several -physics tests. :numref:`Table %s ` contains a small selection of ATM-only RTs; -it will be expanded to cover the full range of ATM-only supported configurations in time: - -.. _atm-rts: - -.. list-table:: *ATM regression test descriptions* - :widths: 10 40 10 10 15 5 - :header-rows: 1 - - * - Test Name - - Description - - Physics Suite (see `namelist options `__) - - DT_ATMOS - - Start Date - - Forecast Length (hours) - * - `control_c48 `__ - - Compare global control C48L127 results with previous trunk version - - FV3_GFS_v16 - - 1200 - - 2021-03-22 06:00:00 - - 24 - * - `control_p8 `__ - - Compare global control results with previous trunk version - - FV3_GFS_v17_p8 - - 720 - - 2021-03-22 06:00:00 - - 24 - * - `regional_control `__ - - FV3 regional control (hi-res 3km, small domain) test - - FV3_GFS_v15_thompson_mynn_lam3km - - 1800 - - 2016-10-03 00:00:00 - - 6 - -**Sample** ``CMAKE_FLAGS`` **Setting** - -.. code-block:: console - - export CMAKE_FLAGS="-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON" - -**Supported Physics Suites** - -.. list-table:: *Physics suites used in the ATM configurations above* - :widths: 10 50 - :header-rows: 1 - - * - Physics Suite - - Description - * - FV3_GFS_v16 - - The :term:`CCPP` GFS_v16 physics suite is described in the CCPP documentation `here `__. - * - FV3_GFS_v17_p8 - - The CCPP GFS_v17_p8 physics suite is described in the CCPP documentation `here `__. - * - FV3_GFS_v15_thompson_mynn_lam3km - - The CCPP GFS_v15 physics suite with the Thompson Aerosol-Aware Cloud Microphysics Scheme - (see `here `__) and - Mynn Surface Layer Module (see `here `__) - tailored for a limited area model (LAM) 3-km resolution grid. - -**Additional Information** - -Input files required for ATM configurations can be viewed in :numref:`Section %s ` -or in the `UFS WM RT Data Bucket `__. -Information on ``ufs.configure`` files is available in :numref:`Section %s `, -and a sample ATM ``ufs.configure`` file (``ufs.configure.atm.IN``) is available -`here `__. - -.. _atmw-documented: - -ATMW -======= - -The ATMW configuration couples :term:`ATM` with :term:`WaveWatch III`. -These tests use default values set in the ``export_fv3`` function of ``default_vars.sh``. - -.. list-table:: *ATMW regression test descriptions* - :widths: 50 10 30 50 10 10 10 10 10 - :header-rows: 1 - - * - Test |nbsp| Name |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| - - Description - - General Physics Parameters - - Detailed |nbsp| Physics |nbsp| Parameters |nbsp| (see |nbsp| namelist |nbsp| options `here `__ |nbsp| for variable definitions) - - Start |nbsp| Date |nbsp| |nbsp| |nbsp| |nbsp| - - Fcst Length (hours) - - Output Grid - - Configuration Files - - Other - * - `atmwav_control_noaero_p8 `__ - - Compare global control results with previous trunk version - - **Suite:** CCPP_SUITE="FV3_GFS_v16" :raw-html:`

` - - **Microphysics:** IMP_PHYSICS=8 :raw-html:`

` - - **Time Step:** DT_ATMOS=720 :raw-html:`

` - - - **Set to FALSE:** LHEATSTRG, DO_UGWP_V1, DO_GSL_DRAG_LS_BL, DO_GSL_DRAG_TOFD, DO_UGWP_V1_OROG_ONLY, DO_UGWP_V0_NST_ONLY, LDIAG_UGWP, CA_GLOBAL, LANDICE, LGFDLMPRAD, DO_SAT_ADJ, MULTIGRID, USE_CICE_ALB, DO_RRTMGP :raw-html:`

` - **Set to TRUE:** USE_MERRA2, LSEASPRAY, DO_UGWP_V0, DO_GSL_DRAG_SS, DO_CA, CA_SGS, CA_TRIGGER, TILEDFIX, CPL, CPLWAV, CPLWAV2ATM, FRAC_GRID, WRITE_NSFLIP, DOGP_CLDOPTICS_LUT, DOGP_LWSCAT, DOGP_SGS_CNV, SATMEDMF :raw-html:`

` - **Set to VALUE:** IALB=2, IEMS=2, LSM=2, IOPT_DVEG=4, IOPT_CRS=2, IOPT_RAD=3, IOPT_ALB=1, IOPT_STC=3, IOPT_SFC=3, IOPT_TRS=2, IOPT_DIAG=2, D2_BG_K1=0.20, D2_BG_K2=0.04, PSM_BC=1, DDDMP=0.1, IAER=1011, KNOB_UGWP_VERSION=0, KNOB_UGWP_NSLOPE=1, NCA=1, NCELLS=5, NLIVES=12, NTHRESH=18, NSEED=1, NFRACSEED=0.5, NSPINUP=1, ISEED_CA=12345, FSICL=0, FSICS=0, DNATS=0, DZ_MIN=6, cap_dbug_flag=0, MIN_SEAICE=0.15, - - 2021-03-22 06:00:00 - - 12 - - OUTPUT_GRID=gaussian_grid :raw-html:`

` - **Grid Parameters**: INPES=$INPES_cpl_atmw, JNPES=$JNPES_cpl_atmw, NPZ=127, NPZP=128 - - FIELD_TABLE=field_table_thompson_noaero_tke - DIAG_TABLE=diag_table_p8_template - INPUT_NML=cpld_control.nml.IN - UFS_CONFIGURE=ufs.configure.atmw.IN - FV3_RUN=control_run.IN - - RUNTYPE=startup, med_model=cmeps, atm_model=fv3, wav_model=ww3 - -.. _atmaero-documented: - -ATMAERO -========= - -The ATMAERO configuration couples :term:`ATM` with :term:`GOCART`. -These tests use default values set in the ``export_fv3`` function of ``default_vars.sh``. - -.. attention:: - - Certain physics-related settings are common to all of the supported RRFS configurations. These values are set in each test's configuration file because they differ from the ``default_vars.sh`` values: - - General Physics Parameters: - * **Suite:** CCPP_SUITE= `FV3_GFS_v17_p8 `__ - * **Microphysics:** IMP_PHYSICS=8 - * **Time Step:** DT_ATMOS=720 - - Detailed Physics Parameters: - * **Set to FALSE:** DO_UGWP_V1, DO_GSL_DRAG_LS_BL, DO_GSL_DRAG_TOFD, DO_UGWP_V1_OROG_ONLY, DO_UGWP_V0_NST_ONLY, LDIAG_UGWP, CA_GLOBAL, LANDICE, LGFDLMPRAD, DO_SAT_ADJ, USE_CICE_ALB, DO_RRTMGP - * **Set to TRUE:** WRITE_DOPOST, CPL, CPLCHM, USE_MERRA2, LSEASPRAY, DO_UGWP_V0, DO_GSL_DRAG_SS, DO_CA, CA_SGS, CA_TRIGGER, TILEDFIX, FRAC_GRID, WRITE_NSFLIP, DOGP_CLDOPTICS_LUT, DOGP_LWSCAT, DOGP_SGS_CNV, SATMEDMF - * **Set to VALUE:** NSTF_NAME='2,0,0,0,0', atm_model='fv3', chm_model='gocart', DOMAINS_STACK_SIZE=8000000, IALB=2, IEMS=2, LSM=2, IOPT_DVEG=4, IOPT_CRS=2, IOPT_RAD=3, IOPT_ALB=1, IOPT_STC=3, IOPT_SFC=3, IOPT_TRS=2, IOPT_DIAG=2, D2_BG_K1=0.20, D2_BG_K2=0.04, PSM_BC=1, DDDMP=0.1, GWD_OPT=2, KNOB_UGWP_VERSION=0, KNOB_UGWP_NSLOPE=1, NCA=1, NCELLS=5, NLIVES=12, NTHRESH=18, NSEED=1, NFRACSEED=0.5, NSPINUP=1, ISEED_CA=12345, FSICL=0, FSICS=0, DZ_MIN=6, MIN_SEAICE=0.15 - - The "Detailed Physics Parameters" column in :numref:`Table %s ` details physics settings that differ from both the ``default_vars.sh`` values and these ATMAERO-specific defaults. - -.. _atmaero-rts: - -.. list-table:: *ATMAERO regression test descriptions* - :widths: 50 10 50 10 10 10 10 10 - :header-rows: 1 - - * - Test |nbsp| Name |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| - - Description - - Detailed |nbsp| Physics |nbsp| Parameters |nbsp| (see |nbsp| namelist |nbsp| options `here `__ |nbsp| for variable definitions) - - Start |nbsp| Date |nbsp| |nbsp| |nbsp| |nbsp| - - Fcst Length (hours) - - Output Grid - - Configuration Files - - Other - * - `atmaero_control_p8 `__ - - Compare global results for prognostic aerosols with previous trunk version - - **Set to FALSE:** LHEATSTRG :raw-html:`

` - **Set to TRUE:** ATMAERO default values only :raw-html:`

` - **Set to VALUE:** IAER=1011, DNATS=2 - - 2021-03-22 06:00:00 - - 24 - - OUTPUT_GRID=gaussian_grid :raw-html:`

` - **Grid Parameters**: INPES=${INPES_atmaero}, JNPES=${JNPES_atmaero}, NPZ=127, NPZP=128 - - FIELD_TABLE=field_table_thompson_noaero_tke_GOCART - DIAG_TABLE=diag_table_cpld.IN - INPUT_NML=ufs.configure.atmaero_esmf.IN - UFS_CONFIGURE=ufs.configure.atmaero.IN - FV3_RUN=control_run.IN - - RESTART_INTERVAL=12 -1 - * - `atmaero_control_p8_rad `__ - - Compare global results for prognostic aerosols with previous trunk version - - **Set to FALSE:** ATMAERO values only :raw-html:`

` - **Set to TRUE:** LHEATSTRG :raw-html:`

` - **Set to VALUE:** IAER=2011, DNATS=2 - - 2021-03-22 06:00:00 - - 24 - - OUTPUT_GRID=gaussian_grid :raw-html:`

` - **Grid Parameters**: NPZ=127, NPZP=128 - - FIELD_TABLE=field_table_thompson_noaero_tke_GOCART - DIAG_TABLE=diag_table_cpld.IN - INPUT_NML=cpld_control.nml.IN - UFS_CONFIGURE=ufs.configure.atmaero_esmf.IN - FV3_RUN=control_run.IN - - RESTART_INTERVAL=12 -1 - * - `atmaero_control_p8_rad_micro `__ - - Compare global results for prognostic aerosols with previous trunk version - - **Set to FALSE:** :raw-html:`

` - **Set to TRUE:** LHEATSTRG :raw-html:`

` - **Set to VALUE:** IAER=2011, DNATS=4 - - 2021-03-22 06:00:00 - - 24 - - OUTPUT_GRID=gaussian_grid :raw-html:`

` - **Grid Parameters**: NPZ=127, NPZP=128 - - FIELD_TABLE=field_table_thompson_noaero_tke_GOCART - DIAG_TABLE=diag_table_p8_gocart_micro - INPUT_NML=merra2_thompson.nml.IN - UFS_CONFIGURE=ufs.configure.atmaero_esmf.IN - FV3_RUN=control_run.IN - - RESTART_INTERVAL='12 -1' - -ATMAQ -======= - -**COMING SOON!** - -.. _atml-documented: - -ATML -====== - -The ATML configuration couples :term:`ATM` with :term:`LND`. -These tests use default values set in the ``export_fv3`` function of ``default_vars.sh``. - -.. attention:: - There is an issue with ``-D32BIT=ON`` in the ATM-LND tests, and NoahMP requires r8 libraries. - -.. COMMENT: Should "r8" be "p8"? - -.. _atml-rts: - -.. list-table:: *ATML regression test descriptions* - :widths: 10 40 10 10 15 5 - :header-rows: 1 - - * - Test Name - - Description - - Physics Suite (see `namelist options `__) - - DT_ATMOS - - Start Date - - Forecast Length (hours) - * - control_p8_atmlnd_sbs - - Compare global control results with previous trunk version - - FV3_GFS_v17_p8 - - 720 - - 2021-03-22 06:00:00 - - 24 - -**Sample** ``CMAKE_FLAGS`` **Setting** - -.. code-block:: console - - export CMAKE_FLAGS="-DAPP=ATML -DCCPP_SUITES=FV3_GFS_v17_p8" - - -**Supported Physics Suites** - -.. list-table:: *Physics suites used in the ATM configurations above* - :widths: 10 50 - :header-rows: 1 - - * - Physics Suite - - Description - * - FV3_GFS_v17_p8 - - The :term:`CCPP` GFS_v17_p8 physics suite is described in the CCPP documentation `here `__. - -**Additional Information** - -Input files required for ATML configurations can be viewed in :numref:`Section %s (ATM) ` -and :numref:`Section %s (LND) ` or in the `UFS WM RT Data Bucket `__. -Information on ``ufs.configure`` files is available in :numref:`Section %s `, -and a sample ATML ``ufs.configure`` file (``ufs.configure.atm_lnd.IN``) is available -`here `__. - - -.. _rrfs-documented: - -======================================= -Rapid Refresh Forecast System (RRFS) -======================================= - -The RRFS configurations use an :term:`ATM`-only configuration on a high-resolution -regional grid with data assimilation capabilities. -These tests use the default values set in the ``export_fv3``, ``export_rap_common``, ``export_rrfs_v1``, and/or ``export_hrrr_conus13km`` functions of ``default_vars.sh`` unless other values are explicitly set in a given test file. In all tests, the values in ``export_fv3`` are set first. Depending on the test, some of these values may be overriden by ``export_rrfs_v1`` (which includes values from ``export_rap_common``) or ``export_hrrr_conus13km``. :numref:`Table %s ` compares the values set in ``export_fv3`` to the values set in the other functions. - -.. note:: - - ``export_rrfs_v1`` calls ``export_rap_common``, which calls ``export_fv3``. Values from ``export_fv3`` are set first, followed by values in ``export_rap_common`` and then values in ``export_rrfs_v1``. Values in italics indicate that the value is inherited from a previously-called function. - -.. _rrfs-default-vars-comparison: - -.. csv-table:: *RRFS Default Variables* - :file: tables/RRFSDefaultVariables.csv - :widths: 50 10 10 10 10 - :header-rows: 1 - :stub-columns: 1 - -Current RRFS regression tests cover a wide variety of functionality and involve several -physics tests. :numref:`Table %s ` (below) contains a selection of RTs for RRFS functionality. Blanks indicate that the value comes from the default setting file. These default values are listed in :numref:`Table %s ` above. - -.. _rrfs-rts: - -.. csv-table:: *RRFS regression test descriptions* - :file: tables/rrfs-rts.csv - :widths: 20 20 30 50 10 10 10 - :header-rows: 1 - -**Sample** ``CMAKE_FLAGS`` **Setting** - -.. code-block:: console - - export CMAKE_FLAGS="-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON" - -**Supported Physics Suites** - -.. list-table:: *Physics suites used in the RRFS configurations above* - :widths: 10 50 - :header-rows: 1 - - * - Physics Suite - - Description - * - FV3_HRRR - - The FV3_HRRR physics suite is described in the :term:`CCPP` documentation `here `__. - * - FV3_RRFS_v1beta - - The FV3_RRFS_v1beta physics suite is described in the CCPP documentation `here `__. - * - FV3_RRFS_v1nssl - - The FV3_RRFS_v1nssl physics suite is similar to the *FV3_RRFS_v1beta* suite; however, it uses the NSSL 2-moment microphysics scheme instead of the Thompson microphysics scheme. - - -**Additional Information** - -Each test file lists the input files required for a given test. Input files required for RRFS ATM configurations can be downloaded from the `UFS WM RT Data Bucket `__. Users who wish to run additional (unsupported) cases may also find useful data in the `NOAA RRFS data bucket `__. - -Information on ``ufs.configure`` files is available in :numref:`Section %s `. The supported RRFS WM RTs use the same ``ufs.configure`` file that ATM-only tests do (``ufs.configure.atm.IN``). This file can be viewed in the ``ufs-weather-model/tests/parm`` `directory `__. - -Additionally, users can find examples of various RRFS configuration files in the ``ufs-weather-model/tests/parm`` `directory `__. These files include ``model_configure_*``, ``*_run.IN`` (input run), ``*.nml.IN`` (input namelist), ``field_table_*``, and ``diag_table_*`` files. - -.. _lnd-documented: - -======= -LND -======= - -The LND configuration couples :term:`DATM`, :term:`CDEPS`, and :term:`CMEPS` with :term:`LND`. These tests use default values set in the ``export_datm_cdeps`` function of ``default_vars.sh``. - -.. _lnd-rts: - -.. list-table:: *LND regression test descriptions* - :widths: 10 40 10 10 15 5 - :header-rows: 1 - - * - Test Name - - Description - - Physics Suite - - DT_ATMOS - - Start Date - - Forecast Length (hours) - * - datm_cdeps_lnd_gswp3 - - DATM_CDEPS_NOAHMP_GSWP3 - control - - N/A - - N/A - - 2000-01-01 00:00:00 - - 24 - * - datm_cdeps_lnd_gswp3_rst - - DATM_CDEPS_NOAHMP_GSWP3_RST - control restart - - N/A - - N/A - - 2000-01-01 12:00:00 - - 12 - -**Sample** ``CMAKE_FLAGS`` **Setting** - -.. code-block:: console - - export CMAKE_FLAGS="-DAPP=LND" - -**Additional Information** - -Input files required for LND configurations can be viewed in :numref:`Section %s (LND) ` -or in the `UFS WM RT Data Bucket `__. -Information on ``ufs.configure`` files is available in :numref:`Section %s `, -and a sample ATML ``ufs.configure`` file (``ufs.configure.atm_lnd.IN``) is available -`here `__. - - -============================================= -Seasonal to Subseasonal (S2S) Configurations -============================================= - -**COMING SOON!** - -============== -NG-GODAS -============== - -**COMING SOON!** - -.. _hafs-documented: - -======================================================== -Hurricane Analysis and Reforecast System Configurations -======================================================== - -The HAFS configuration uses an :term:`DATM`-only configuration. - -These tests use the default values set in the ``export_fv3``, ``export_hafs``, ``export_hafs_regional``, ``export_hafs_datm_cdeps``, and ``export_hafs_docn_cdeps`` functions of ``default_vars.sh`` unless other values are explicitly set in a given test file. In all tests, the values in ``export_fv3`` are set first. - -.. note:: - - ``export_hafs`` calls ``export_hafs_regional``, which calls ``export_hafs_datm_cdeps`` or ``export_hafs_docn_cdeps``, which calls ``export_fv3``. Values from ``export_fv3`` are set first, followed by values in ``export_hafs``, ``export_hafs_regional``, and then values in ``export_hafs_datm_cdeps`` or ``export_hafs_docn_cdeps``. - - -.. list-table:: *Default physics-related variables used in the HAFS configurations below* - :widths: 10 50 - :header-rows: 1 - - * - Export Function - - Variables - * - export_hafs - - **Set to FALSE:** S2S, AQM, DATM_CDEPS, DOCN_CDEPS, HYBEDMF, CNVGWD, LTAEROSOL, LHEATSTRG, IS_MOVING_NEST :raw-html:`

` - **Set to TRUE:** FV3, HAFS, SATMEDMF, HURR_PBL, DO_GSL_DRAG_LS_BL, DO_GSL_DRAG_SS, DO_GSL_DRAG_TOFD, LRADAR, CPL_IMP_MRG :raw-html:`

` - **Set to VALUE:** NTILES=1, IMFSHALCNV=2, IMFDEEPCNV=2, MONINQ_FAC=-1.0, ISATMEDMF=1, IOPT_SFC=1, IOPT_DVEG=2, IOPT_CRS=1, IOPT_RAD=1, IOPT_ALB=2, IOPT_STC=1, LSM=1, IMP_PHYSICS=11, IAER=111, CDMBWD=1.0,1.0,1.0,1.0, FV_CORE_TAU=5., RF_CUTOFF=30.e2, RF_CUTOFF_NEST=50.e2, VORTEX_TRACKER=0, NTRACK=0, MOVE_CD_X=0, MOVE_CD_Y=0, NFHOUT=3, NFHMAX_HF=-1, NFHOUT_HF=3, NSOUT=-1, OUTPUT_FH=-1 - * - export_hafs_regional - - **Set to FALSE:** S2S, AQM, DOCN_CDEPS, WRITE_DOPOST, USE_COLDSTART, MULTIGRID :raw-html:`

` - **Set to TRUE:** FV3, HAFS, CPL, QUILTING, OUTPUT_HISTORY, CPL_IMP_MRG :raw-html:`

` - **Set to VALUE:** NTILES=1, FHMAX=6, ENS_NUM=1, DT_ATMOS=900, RESTART_INTERVAL=0, FHROT=0, coupling_interval_fast_sec=0, WRITE_GROUP=1, WRTTASK_PER_GROUP=6, NUM_FILES=2, FILENAME_BASE="'atm' 'sfc'", OUTPUT_GRID="'regional_latlon'", OUTPUT_FILE="'netcdf'", IDEFLATE=0, QUANTIZE_NSD=0, NFHOUT=3, NFHMAX_HF=-1, NFHOUT_HF=3, CEN_LON=-62.0, CEN_LAT=25.0, LON1=-114.5, LAT1=-5.0, LON2=-9.5, LAT2=55.0, DLON=0.03, DLAT=0.03, DIAG_TABLE=diag_table_hafs, FIELD_TABLE=field_table_hafs, WW3OUTDTHR=3, OUTPARS_WAV="WND HS T01 T02 DIR FP DP PHS PTP PDIR UST CHA USP", WAV_CUR='C', med_model=cmeps, pio_rearranger=box, CAP_DBUG_FLAG=0, CPLMODE=hafs, RUNTYPE=startup, MESH_WAV=mesh.hafs.nc, MODDEF_WAV=mod_def.natl_6m - * - export_hafs_datm_cdeps - - **Set to FALSE:** FV3, S2S, AQM, DOCN_CDEPS :raw-html:`

` - **Set to TRUE:** HAFS, DATM_CDEPS :raw-html:`

` - **Set to VALUE:** NTILES=1, atm_model=datm, DATM_IN_CONFIGURE=datm_in, DATM_STREAM_CONFIGURE=hafs_datm.streams.era5.IN - * - export_hafs_docn_cdeps - - **Set to FALSE:** S2S, AQM :raw-html:`

` - **Set to TRUE:** FV3, HAFS, DOCN_CDEPS :raw-html:`

` - **Set to VALUE:** NTILES=1, ocn_model=docn, ocn_datamode=sstdata, pio_rearranger=box, DOCN_IN_CONFIGURE=docn_in, DOCN_STREAM_CONFIGURE=hafs_docn.streams.IN - -.. _hafs-rts: - -.. list-table:: *HAFS regression test descriptions* - :widths: 50 10 30 50 10 10 10 10 10 - :header-rows: 1 - - * - Test |nbsp| Name |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| - - Description - - General Physics Parameters - - Detailed |nbsp| Physics |nbsp| Parameters |nbsp| (see |nbsp| namelist |nbsp| options `here `__ |nbsp| for variable definitions) - - Start |nbsp| Date |nbsp| |nbsp| |nbsp| |nbsp| - - Fcst Length (hours) - - Output Grid - - Configuration Files - - Other - * - `rhafs_global_1nest_atm `__ - - Compare HAFS global with 1 nest and atmosphere only results with previous trunk version - - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" - - **Microphysics:** IMP_PHYSICS=11 - - **Time Step:** DT_ATMOS=90 - - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, CPLFLX, CPLWAV, CPLWAV2ATM, CPL_IMP_MRG, CMEPS, USE_COLDSTART :raw-html:`

` - **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, CPLOCN2ATM, NESTED :raw-html:`

` - **Set to VALUE:** - See ``export_hafs`` default values. - - 2020-08-25 12:00:00 - - 6 - - OUTPUT_GRID=global_latlon, OUTPUT_GRID_2=rotated_latlon :raw-html:`

` - **Grid Parameters**: INPES=4, JNPES=5, NPX=97, NPY=97, NPZ=64, NPZP=$(($NPZ + 1)), INPES_NEST02=6, JNPES_NEST02=10, NPX_NEST02=241, NPY_NEST02=241 - - FIELD_TABLE=field_table_hafs - DIAG_TABLE=diag_table_hafs_template - INPUT_NML=input_global_hafs.nml.IN - INPUT_NEST02_NML=input_nest_hafs.nml.IN - MODEL_CONFIGURE="model_configure_hafs.IN" - UFS_CONFIGURE="ufs.configure.hafs_atm.IN" - FV3_RUN="hafs_fv3_run.IN" - - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" - * - `hafs_global_multiple_4nests_atm `__ - - Compare HAFS global with 4 multiple nests and atmosphere only results with previous trunk version - - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" - - **Microphysics:** IMP_PHYSICS=11 - - **Time Step:** DT_ATMOS=90 - - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, CPLFLX, CPLWAV, CPLWAV2ATM, CPL_IMP_MRG, CMEPS, USE_COLDSTART :raw-html:`

` - **Set to TRUE:** WRITE_DOPOST, EXTERNAL_IC, NGGPS_IC, CPLOCN2ATM, NESTED :raw-html:`

` - **Set to VALUE:** - Also, see export_hafs default values. - - 2020-08-25 12:00:00 - - 6 - - OUTPUT_GRID=global_latlon, OUTPUT_GRID_2=regional_latlon, OUTPUT_GRID_3=rotated_latlon, OUTPUT_GRID_4=rotated_latlon, OUTPUT_GRID_5=rotated_latlon :raw-html:`

` - **Grid Parameters**: INPES=4, JNPES=5, NPX=97, NPY=97, NPZ=64, NPZP=$(($NPZ + 1)), INPES_NEST02=6, JNPES_NEST02=10, NPX_NEST02=241, NPY_NEST02=241, INPES_NEST03=6, JNPES_NEST03=10, NPX_NEST03=241, NPY_NEST03=241, INPES_NEST04=6, JNPES_NEST04=10, NPX_NEST04=361, NPY_NEST04=361, INPES_NEST05=6, JNPES_NEST05=10, NPX_NEST05=361, NPY_NEST05=361 - - FIELD_TABLE=field_table_hafs - DIAG_TABLE=diag_table_hafs_template - INPUT_NML=input_global_hafs.nml.IN - INPUT_NEST02_NML=input_nest_hafs.nml.IN - INPUT_NEST03_NML=input_nest_hafs.nml.IN - INPUT_NEST04_NML=input_nest_hafs.nml.IN - INPUT_NEST05_NML=input_nest_hafs.nml.IN - MODEL_CONFIGURE="model_configure_hafs.IN" - UFS_CONFIGURE="ufs.configure.hafs_atm.IN" - FV3_RUN="hafs_fv3_run.IN" - - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" - * - `hafs_global_storm_following_1nest_atm `__ - - Compare HAFS global with 1 storm-following moving nest and atmosphere only results with previous trunk version - - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" - - **Microphysics:** IMP_PHYSICS=11 - - **Time Step:** DT_ATMOS=180 - - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, IS_MOVING_NEST=".false.,.true.", CPLFLX, CPLWAV, CPLWAV2ATM, CPL_IMP_MRG, CMEPS, USE_COLDSTART :raw-html:`

` - **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, CPLOCN2ATM, NESTED :raw-html:`

` - **Set to VALUE:** - Also, see export_hafs default values. - - 2020-08-25 12:00:00 - - 6 - - OUTPUT_GRID=global_latlon, OUTPUT_GRID_2=rotated_latlon :raw-html:`

` - **Grid Parameters**: INPES=4, JNPES=5, NPX=97, NPY=97, NPZ=64, NPZP=$(($NPZ + 1)), INPES_NEST02=6, JNPES_NEST02=10, NPX_NEST02=73, NPY_NEST02=73 - - FIELD_TABLE=field_table_hafs - DIAG_TABLE=diag_table_hafs_template - INPUT_NML=input_global_hafs.nml.IN - INPUT_NEST02_NML=input_nest_hafs.nml.IN - MODEL_CONFIGURE="model_configure_hafs.IN" - UFS_CONFIGURE="ufs.configure.hafs_atm.IN" - FV3_RUN="hafs_fv3_run.IN" - - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" - * - `hafs_regional_1nest_atm `__ - - Compare HAFS regional with 1 nest and atmosphere only results with previous trunk version - - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" - - **Microphysics:** IMP_PHYSICS=11 - - **Time Step:** DT_ATMOS=90 - - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, CPLFLX, CPLWAV, CPLWAV2ATM, CPL_IMP_MRG, CMEPS, USE_COLDSTART :raw-html:`

` - **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLOCN2ATM, NESTED :raw-html:`

` - **Set to VALUE:** - Also, see export_hafs default values. - - 2020-08-25 12:00:00 - - 6 - - OUTPUT_GRID=rotated_latlon, OUTPUT_GRID_2=rotated_latlon :raw-html:`

` - **Grid Parameters**: INPES=6, JNPES=10, NPX=241, NPY=241, NPZ=64, NPZP=$(($NPZ + 1)), INPES_NEST02=6, JNPES_NEST02=10, NPX_NEST02=361, NPY_NEST02=361 - - FIELD_TABLE=field_table_hafs - DIAG_TABLE=diag_table_hafs_template - INPUT_NML=input_regional_hafs.nml.IN - INPUT_NEST02_NML=input_nest_hafs.nml.IN - MODEL_CONFIGURE="model_configure_hafs.IN" - UFS_CONFIGURE="ufs.configure.hafs_atm.IN" - FV3_RUN="hafs_fv3_run.IN" - - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" - * - `hafs_regional_atm `__ - - Compare HAFS regional atmosphere only results with previous trunk version - - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" - - **Microphysics:** IMP_PHYSICS=11 - - **Time Step:** DT_ATMOS=180 - - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, CPLFLX, CPLWAV, CPLWAV2ATM, CPL_IMP_MRG, CMEPS, USE_COLDSTART :raw-html:`

` - **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLOCN2ATM :raw-html:`

` - **Set to VALUE:** - Also, see export_hafs default values. - - 2019-08-29 00:00:00 - - 6 - - OUTPUT_GRID=regional_latlon :raw-html:`

` - **Grid Parameters**: INPES=20, JNPES=12, NPX=721, NPY=601, NPZ=91, NPZP=$(($NPZ + 1)) - - FIELD_TABLE=field_table_hafs - DIAG_TABLE=diag_table_hafs_template - INPUT_NML=input_regional_hafs.nml.IN - MODEL_CONFIGURE="model_configure_hafs.IN" - UFS_CONFIGURE="ufs.configure.hafs_atm.IN" - FV3_RUN="hafs_fv3_run.IN" - - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" - * - `hafs_regional_atm_ocn `__ - - Compare HAFS regional atmosphere-ocean coupled HYCOM results with previous trunk version - - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst" - - **Microphysics:** IMP_PHYSICS=11 - - **Time Step:** DT_ATMOS=180 - - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, CPLWAV, CPLWAV2ATM, CDEPS_DOCN :raw-html:`

` - **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLFLX, CPLOCN2ATM, CPL_IMP_MRG :raw-html:`

` - **Set to VALUE:** - Also, see export_hafs_regional then export_hafs default values. - - 2019-08-29 00:00:00 - - 6 - - OUTPUT_GRID=regional_latlon :raw-html:`

` - **Grid Parameters**: INPES=20, JNPES=12, NPX=721, NPY=601, NPZ=91, NPZP=$(($NPZ + 1)) - - FIELD_TABLE=field_table_hafs - DIAG_TABLE=diag_table_hafs_template - INPUT_NML=input_regional_hafs.nml.IN - MODEL_CONFIGURE="model_configure_hafs.IN" - UFS_CONFIGURE="ufs.configure.hafs_atm_ocn.IN" - FV3_RUN="hafs_fv3_run.IN hycom_hat10_run.IN" - - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" - * - `hafs_regional_atm_ocn_wav `__ - - Compare HAFS regional atmosphere-ocean-wave coupled results with previous trunk version - - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst" - - **Microphysics:** IMP_PHYSICS=11 - - **Time Step:** DT_ATMOS=180 - - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, CPLWAV2ATM, CDEPS_DOCN :raw-html:`

` - **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLFLX, CPLOCN2ATM, CPLWAV, CPL_IMP_MRG :raw-html:`

` - **Set to VALUE:** - Also, see export_hafs_regional then export_hafs default values. - - 2019-08-29 00:00:00 - - 6 - - OUTPUT_GRID=regional_latlon :raw-html:`

` - **Grid Parameters**: INPES=20, JNPES=12, NPX=721, NPY=601, NPZ=91, NPZP=$(($NPZ + 1)) - - FIELD_TABLE=field_table_hafs - DIAG_TABLE=diag_table_hafs_template - INPUT_NML=input_regional_hafs.nml.IN - MODEL_CONFIGURE="model_configure_hafs.IN" - UFS_CONFIGURE="ufs.configure.hafs_atm_ocn_wav.IN" - FV3_RUN="hafs_fv3_run.IN hycom_hat10_run.IN hafs_ww3_run.IN" - - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" - * - `hafs_regional_atm_thompson_gfdlsf `__ - - Compare the results from HAFS regional atmosphere only using the Thompson microphysics scheme and GFDL surface layer scheme with previous trunk version - - **Suite:** CCPP_SUITE="FV3_HAFS_v1_thompson_tedmf_gfdlsf" - - **Microphysics:** IMP_PHYSICS=8 - - **Time Step:** DT_ATMOS=180 - - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, DO_SAT_ADJ, CPLFLX, CPLWAV, CPLWAV2ATM, CPL_IMP_MRG, CMEPS, USE_COLDSTART :raw-html:`

` - **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLOCN2ATM :raw-html:`

` - **Set to VALUE:** - Also, see export_hafs default values. - - 2019-08-29 00:00:00 - - 6 - - OUTPUT_GRID=cubed_sphere_grid :raw-html:`

` - **Grid Parameters**: INPES=20, JNPES=12, NPX=721, NPY=601, NPZ=91, NPZP=$(($NPZ + 1)) - - FIELD_TABLE=field_table_hafs_thompson - DIAG_TABLE=diag_table_hafs_template - INPUT_NML=input_regional_hafs.nml.IN - MODEL_CONFIGURE="model_configure_hafs.IN" - UFS_CONFIGURE="ufs.configure.hafs_atm.IN" - FV3_RUN="hafs_fv3_run.IN" - - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" - * - `hafs_regional_atm_wav `__ - - Compare HAFS regional atmosphere-wave coupled results with previous trunk version - - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" - - **Microphysics:** IMP_PHYSICS=11 - - **Time Step:** DT_ATMOS=180 - - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, CPLOCN2ATM, CDEPS_DOCN :raw-html:`

` - **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLFLX, CPLWAV, CPLWAV2ATM, CPL_IMP_MRG :raw-html:`

` - **Set to VALUE:** - Also, see export_hafs_regional then export_hafs default values. - - 2019-08-29 00:00:00 - - 6 - - OUTPUT_GRID=regional_latlon :raw-html:`

` - **Grid Parameters**: INPES=20, JNPES=12, NPX=721, NPY=601, NPZ=91, NPZP=$(($NPZ + 1)) - - FIELD_TABLE=field_table_hafs - DIAG_TABLE=diag_table_hafs_template - INPUT_NML=input_regional_hafs.nml.IN - MODEL_CONFIGURE="model_configure_hafs.IN" - UFS_CONFIGURE="ufs.configure.hafs_atm_wav.IN" - FV3_RUN="hafs_fv3_run.IN hafs_ww3_run.IN" - - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" - * - `hafs_regional_datm_cdeps `__ - - Compare HAFS regional coupled CDEPS data atmosphere from ERA5 with regional HYCOM results with previous trunk version - - N/A: No active atmospheric component - - **Set to FALSE:** CPLWAV, CDEPS_DOCN :raw-html:`

` - **Set to TRUE:** :raw-html:`

` - **Set to VALUE:** - Also, see export_hafs_datm_cdeps then export_hafs_regional then export_hafs default values. - - 2019-08-29 00:00:00 - - 24 - - OUTPUT_GRID=regional_latlon :raw-html:`

` - **Grid Parameters**: INPES=$INPES_dflt, JNPES=$JNPES_dflt - - FIELD_TABLE=field_table_hafs - DIAG_TABLE=diag_table_hafs - INPUT_NML=input_regional_hafs.nml.IN - MODEL_CONFIGURE="model_configure_hafs.IN" - UFS_CONFIGURE="ufs.configure.hafs_atm_ocn.IN" - FV3_RUN="hafs_datm_cdeps_era5.IN hycom_hat10_run.IN" - DATM_STREAM_CONFIGURE=hafs_datm.streams.era5.IN - - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" - * - `hafs_regional_docn `__ - - Compare HAFS regional coupled with regional data ocean from MOM6 results with previous trunk version - - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst" - - **Microphysics:** IMP_PHYSICS=11 - - **Time Step:** DT_ATMOS=180 - - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, CPLWAV, CPLWAV2ATM :raw-html:`

` - **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLFLX, CPLOCN2ATM, CPL_IMP_MRG :raw-html:`

` - **Set to VALUE:** - Also, see export_hafs_docn_cdeps then export_hafs_regional then export_hafs default values. - - 2019-08-29 00:00:00 - - 24 - - OUTPUT_GRID=regional_latlon :raw-html:`

` - **Grid Parameters**: INPES=20, JNPES=12, NPX=721, NPY=601, NPZ=91, NPZP=$(($NPZ + 1)) - - FIELD_TABLE=field_table_hafs - DIAG_TABLE=diag_table_hafs_template - INPUT_NML=input_regional_hafs.nml.IN - MODEL_CONFIGURE="model_configure_hafs.IN" - UFS_CONFIGURE="ufs.configure.hafs_atm_docn.IN" - FV3_RUN="hafs_fv3_run.IN hafs_docn_cdeps_mom6.IN" - DOCN_STREAM_CONFIGURE=hafs_docn.streams.IN - - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" - * - `hafs_regional_docn_oisst `__ - - Compare HAFS regional coupled with global data ocean from OISST results with previous trunk version - - **Suite:** CCPP_SUITE=FV3_HAFS_v1_gfdlmp_tedmf_nonsst - - **Microphysics:** IMP_PHYSICS=11 - - **Time Step:** DT_ATMOS=180 - - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, CPLWAV, CPLWAV2ATM :raw-html:`

` - **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLFLX, CPLOCN2ATM, CPL_IMP_MRG :raw-html:`

` - **Set to VALUE:** - Also, see export_hafs_docn_cdeps then export_hafs_regional then export_hafs default values. - - 2019-08-29 00:00:00 - - 6 - - OUTPUT_GRID=regional_latlon :raw-html:`

` - **Grid Parameters**: INPES=20, JNPES=12, NPX=721, NPY=601, NPZ=91, NPZP=$(($NPZ + 1)) - - FIELD_TABLE=field_table_hafs - DIAG_TABLE=diag_table_hafs_template - INPUT_NML=input_regional_hafs.nml.IN - MODEL_CONFIGURE="model_configure_hafs.IN" - UFS_CONFIGURE="ufs.configure.hafs_atm_docn.IN" - FV3_RUN="hafs_fv3_run.IN hafs_docn_cdeps_oisst.IN" - DOCN_STREAM_CONFIGURE=hafs_docn.streams.IN - - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.true., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" - * - `hafs_regional_specified_moving_1nest_atm `__ - - Compare HAFS regional with 1 specified moving nest and atmosphere only results with previous trunk version - - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" - - **Microphysics:** IMP_PHYSICS=11 - - **Time Step:** DT_ATMOS=180 - - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, IS_MOVING_NEST=".false.,.true.", CPLFLX, CPLWAV, CPLWAV2ATM, CPL_IMP_MRG, CMEPS, USE_COLDSTART :raw-html:`

` - **Set to TRUE:** WRITE_DOPOST, EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLOCN2ATM :raw-html:`

` - **Set to VALUE:** - Also, see export_hafs default values. - - 2020-08-25 12:00:00 - - 6 - - OUTPUT_GRID=rotated_latlon, OUTPUT_GRID_2=rotated_latlon_moving :raw-html:`

` - **Grid Parameters**: INPES=6, JNPES=10, NPX=241, NPY=241, NPZ=64, NPZP=$(($NPZ + 1)), INPES_NEST02=6, JNPES_NEST02=10, NPX_NEST02=361, NPY_NEST02=361 - - FIELD_TABLE=field_table_hafs - DIAG_TABLE=diag_table_hafs_template - INPUT_NML=input_regional_hafs.nml.IN - INPUT_NEST02_NML=input_nest_hafs.nml.IN - MODEL_CONFIGURE="model_configure_hafs.IN" - UFS_CONFIGURE="ufs.configure.hafs_atm.IN" - FV3_RUN="hafs_fv3_run.IN" - - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" - * - `hafs_regional_storm_following_1nest_atm `__ - - Compare HAFS regional with 1 storm-following moving nest and atmosphere only results with previous trunk version - - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" - - **Microphysics:** IMP_PHYSICS=11 - - **Time Step:** DT_ATMOS=180 - - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, IS_MOVING_NEST=".false.,.true.", CPLFLX, CPLWAV, CPLWAV2ATM, CPL_IMP_MRG, CMEPS, USE_COLDSTART :raw-html:`

` - **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLOCN2ATM :raw-html:`

` - **Set to VALUE:** - Also, see export_hafs default values. - - 2020-08-25 12:00:00 - - 6 - - OUTPUT_GRID=rotated_latlon, OUTPUT_GRID_2=rotated_latlon_moving :raw-html:`

` - **Grid Parameters**: INPES=6, JNPES=10, NPX=241, NPY=241, NPZ=64, NPZP=$(($NPZ + 1)), INPES_NEST02=6, JNPES_NEST02=10, NPX_NEST02=361, NPY_NEST02=361 - - FIELD_TABLE=field_table_hafs - DIAG_TABLE=diag_table_hafs_template - INPUT_NML=input_regional_hafs.nml.IN - INPUT_NEST02_NML=input_nest_hafs.nml.IN - MODEL_CONFIGURE="model_configure_hafs.IN" - UFS_CONFIGURE="ufs.configure.hafs_atm.IN" - FV3_RUN="hafs_fv3_run.IN" - - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" - * - `hafs_regional_storm_following_1nest_atm_ocn `__ - - Compare HAFS regional with 1 storm-following moving nest and atmosphere-ocean coupled results with previous trunk version - - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst" - - **Microphysics:** IMP_PHYSICS=11 - - **Time Step:** DT_ATMOS=180 - - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, IS_MOVING_NEST=".false.,.true.", CPLWAV, CPLWAV2ATM, USE_COLDSTART, CDEPS_DOCN :raw-html:`

` - **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLFLX, CPLOCN2ATM, CPL_IMP_MRG :raw-html:`

` - **Set to VALUE:** - Also, see export_hafs_regional default values then export_hafs. - - 2020-08-25 12:00:00 - - 6 - - OUTPUT_GRID=regional_latlon, OUTPUT_GRID_2=regional_latlon_moving :raw-html:`

` - **Grid Parameters**: INPES=6, JNPES=10, NPX=241, NPY=241, NPZ=64, NPZP=$(($NPZ + 1)), INPES_NEST02=6, JNPES_NEST02=10, NPX_NEST02=361, NPY_NEST02=361 - - FIELD_TABLE=field_table_hafs - DIAG_TABLE=diag_table_hafs_template - INPUT_NML=input_regional_hafs.nml.IN - INPUT_NEST02_NML=input_nest_hafs.nml.IN - MODEL_CONFIGURE="model_configure_hafs.IN" - UFS_CONFIGURE="ufs.configure.hafs_atm_ocn.IN" - FV3_RUN="hafs_fv3_run.IN hycom_hat10_run.IN" - - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" - * - `hafs_regional_storm_following_1nest_atm_ocn_debug `__ - - Compare HAFS regional with 1 storm-following moving nest and atmosphere-ocean coupled results with previous trunk version - - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst" - - **Microphysics:** IMP_PHYSICS=11 - - **Time Step:** DT_ATMOS=180 - - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, IS_MOVING_NEST=".false.,.true.", CPLWAV, CPLWAV2ATM, USE_COLDSTART, CDEPS_DOCN :raw-html:`

` - **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLFLX, CPLOCN2ATM, CPL_IMP_MRG :raw-html:`

` - **Set to VALUE:** - Also, see export_hafs_regional default values then export_hafs. - - 2020-08-25 12:00:00 - - 6 - - OUTPUT_GRID=regional_latlon, OUTPUT_GRID_2=regional_latlon_moving :raw-html:`

` - **Grid Parameters**: INPES=6, JNPES=10, NPX=241, NPY=241, NPZ=64, NPZP=$(($NPZ + 1)), INPES_NEST02=6, JNPES_NEST02=10, NPX_NEST02=361, NPY_NEST02=361 - - FIELD_TABLE=field_table_hafs - DIAG_TABLE=diag_table_hafs_template - INPUT_NML=input_regional_hafs.nml.IN - INPUT_NEST02_NML=input_nest_hafs.nml.IN - MODEL_CONFIGURE="model_configure_hafs.IN" - UFS_CONFIGURE="ufs.configure.hafs_atm_ocn.IN" - FV3_RUN="hafs_fv3_run.IN hycom_hat10_run.IN" - - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" - * - `hafs_regional_storm_following_1nest_atm_ocn_debug `__ - - Compare HAFS regional with 1 storm-following moving nest and atmosphere-ocean coupled results with previous trunk version - - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst" - - **Microphysics:** IMP_PHYSICS=11 - - **Time Step:** DT_ATMOS=180 - - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, IS_MOVING_NEST=".false.,.true.", CPLWAV2ATM, USE_COLDSTART, CDEPS_DOCN :raw-html:`

` - **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLFLX, CPLOCN2ATM, CPL_IMP_MRG :raw-html:`

` - **Set to VALUE:** - Also, see export_hafs_regional default values then export_hafs. - - 2020-08-25 12:00:00 - - 6 - - OUTPUT_GRID=regional_latlon, OUTPUT_GRID_2=regional_latlon_moving :raw-html:`

` - **Grid Parameters**: INPES=$INPES_thrd, JNPES=$JNPES_thrd, INPES=6, JNPES=10, NPX=241, NPY=241, NPZ=64, NPZP=$(($NPZ + 1)) - - FIELD_TABLE=field_table_hafs - DIAG_TABLE=diag_table_hafs_template - INPUT_NML=input_regional_hafs.nml.IN - INPUT_NEST02_NML=input_nest_hafs.nml.IN - MODEL_CONFIGURE="model_configure_hafs.IN" - UFS_CONFIGURE="ufs.configure.hafs_atm_ocn.IN" - FV3_RUN="hafs_fv3_run.IN hycom_hat10_run.IN" - - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" - * - `hafs_regional_storm_following_1nest_atm_ocn_wav `__ - - Compare HAFS regional with 1 storm-following moving nest and atmosphere-ocean-wave coupled results with previous trunk version - - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst" - - **Microphysics:** IMP_PHYSICS=11 - - **Time Step:** DT_ATMOS=180 - - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, IS_MOVING_NEST=".false.,.true.", CPLWAV2ATM, USE_COLDSTART, CDEPS_DOCN :raw-html:`

` - **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLFLX, CPLOCN2ATM, CPLWAV, CPL_IMP_MRG :raw-html:`

` - **Set to VALUE:** - Also, see export_hafs_regional default values then export_hafs. - - 2020-08-25 12:00:00 - - 6 - - OUTPUT_GRID=rotated_latlon, OUTPUT_GRID_2=rotated_latlon :raw-html:`

` - **Grid Parameters**: INPES=6, JNPES=10, NPX=241, NPY=241, NPZ=64, NPZP=$(($NPZ + 1)), INPES_NEST02=6, JNPES_NEST02=10, NPX_NEST02=361, NPY_NEST02=361 - - FIELD_TABLE=field_table_hafs - DIAG_TABLE=diag_table_hafs_template - INPUT_NML=input_regional_hafs.nml.IN - INPUT_NEST02_NML=input_nest_hafs.nml.IN - MODEL_CONFIGURE="model_configure_hafs.IN" - UFS_CONFIGURE="ufs.configure.hafs_atm_ocn_wav.IN" - FV3_RUN="hafs_fv3_run.IN hycom_hat10_run.IN hafs_ww3_run.IN" - - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" - * - `hafs_regional_telescopic_2nests_atm `__ - - Compare HAFS regional with two telescopic nests and atmosphere only results with previous trunk version - - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" - - **Microphysics:** IMP_PHYSICS=11 - - **Time Step:** DT_ATMOS=90 - - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, CPLFLX, CPLWAV, CPLWAV2ATM, CMEPS, USE_COLDSTART :raw-html:`

` - **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLOCN2ATM :raw-html:`

` - **Set to VALUE:** - Also, see export_hafs default values. - - 2020-08-25 12:00:00 - - 6 - - OUTPUT_GRID=rotated_latlon, OUTPUT_GRID_2=lambert_conformal, OUTPUT_GRID_3=regional_latlon :raw-html:`

` - **Grid Parameters**: INPES=6, JNPES=10, NPX=241, NPY=241, NPZ=64, NPZP=$(($NPZ + 1)), INPES_NEST02=6, JNPES_NEST02=10, NPX_NEST02=361, NPY_NEST02=361, INPES_NEST03=6, JNPES_NEST03=10, NPX_NEST03=361, NPY_NEST03=361 - - FIELD_TABLE=field_table_hafs - DIAG_TABLE=diag_table_hafs_template - INPUT_NML=input_regional_hafs.nml.IN - INPUT_NEST02_NML=input_nest_hafs.nml.IN - INPUT_NEST03_NML=input_nest_hafs.nml.IN - MODEL_CONFIGURE="model_configure_hafs.IN" - UFS_CONFIGURE="ufs.configure.hafs_atm.IN" - FV3_RUN="hafs_fv3_run.IN" - - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" - -**Sample** ``CMAKE_FLAGS`` **Setting** - -.. code-block:: console - - export CMAKE_FLAGS="-DAPP=HAFS" - -**Supported Physics Suites** - -.. list-table:: *Physics suites used in the HAFS configurations above* - :widths: 10 50 - :header-rows: 1 - - * - Physics Suite - - Description - * - FV3_HAFS_v1_gfdlmp_tedmf - - The FV3_HAFS_v1_gfdlmp_tedmf physics suite is described in the :term:`CCPP` documentation `here `__. - * - FV3_HAFS_v1_gfdlmp_tedmf_nonsst - - The FV3_HAFS_v1_gfdlmp_tedmf_nonsst physics suite is described in the CCPP documentation `here `__. - * - FV3_HAFS_v1_thompson_tedmf_gfdlsf - - The FV3_HAFS_v1_thompson_tedmf_gfdlsf physics suite is described in the CCPP documentation `here `__. - diff --git a/doc/UsersGuide/source/FAQ.rst b/doc/UsersGuide/source/FAQ.rst index 939f057bd6..0fbb7977d8 100644 --- a/doc/UsersGuide/source/FAQ.rst +++ b/doc/UsersGuide/source/FAQ.rst @@ -10,7 +10,7 @@ How do I build and run a single test of the UFS Weather Model? An efficient way to build and run the UFS Weather Model is to use the regression test (``rt.sh``). This script is widely used by model developers on Tier 1 and 2 platforms -and is described in the UFS WM GitHub `wiki `_. The advantages to this approach are: +and is described in the UFS WM GitHub :wm-wiki:`wiki `. The advantages to this approach are: * It does not require a workflow, pre- or post-processing steps. * The batch submission script is generated. diff --git a/doc/UsersGuide/source/Glossary.rst b/doc/UsersGuide/source/Glossary.rst index aa012eb238..e6214ba86b 100644 --- a/doc/UsersGuide/source/Glossary.rst +++ b/doc/UsersGuide/source/Glossary.rst @@ -94,9 +94,15 @@ Glossary HAFS The Hurricane Analysis and Forecast System (`HAFS `_) is a :term:`UFS` application for hurricane forecasting. It is an :term:`FV3`-based multi-scale model and data assimilation (DA) system capable of providing analyses and forecasts of the inner core structure of tropical cyclones (TC) --- including hurricanes and typhoons --- out to 7 days. This is key to improving size and intensity predictions. HAFS also provides analyses and forecasts of the large-scale environment that is known to influence a TC's motion. HAFS development targets an operational analysis and forecast system for hurricane forecasters with reliable, robust and skillful guidance on TC track and intensity (including rapid intensification), storm size, genesis, storm surge, rainfall, and tornadoes associated with TCs. Currently, HAFS is under active development with collaborative efforts among NCEP/EMC, AOML/HRD, GFDL, ESRL/GSD, ESRL/NESII, OFCM/AOC, and NCAR/DTC. + HPSS + High Performance Storage System (HPSS). + 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. + ICs + Initial conditions + LM4 NUOPC NOAA-GFDL Land Model version 4 @@ -161,6 +167,9 @@ Glossary Post-processor Software that enhances the value of the raw forecasts produced by the modeling application to make them more useful. At :term:`NCEP`, the :term:`UPP` (Unified Post Processor) software is used to convert data from spectral to gridded format, de-stagger grids, interpolate data vertically (e.g., to isobaric levels) and horizontally (to various predefined grids), and to compute derived variables. Some types of post-processors, such as statistical post-processors, use historical information of previous runs and observations to de-bias and calibrate its output. + RDHPCS + NOAA Research & Development High-Performance Computing Systems. + RT Regression test Tests to validate that software still performs as expected after a change. In general, RTs ensure that the code should produce the same results and performance, within predefined measures of variance. When a code change is designed to change results or performance, then a new baseline is created. From these baselines, regression tests determine whether a change has occurred. diff --git a/doc/UsersGuide/source/HSD.rst b/doc/UsersGuide/source/HSD.rst new file mode 100644 index 0000000000..199848ae69 --- /dev/null +++ b/doc/UsersGuide/source/HSD.rst @@ -0,0 +1,32 @@ +.. role:: raw-html(raw) + :format: html + +.. _hsd: + +******************************************** +Hierarchical System Development (HSD) Cases +******************************************** + +Hierarchical System Development is the ability to engage in development and testing at multiple levels of complexity in numerical weather prediction (NWP) software (such as the :term:`UFS`). It typically includes multiple entry points into development (e.g., atmospheric physics, ocean and ice dynamics, or data assimilation for land models and other earth system components), and it can include both operationally relevant and idealized configurations. + +Although the UFS Weather Model (WM) can be run in any of several configurations, from a single-component atmospheric model to a fully coupled model with multiple earth system components (e.g., atmosphere, ocean, sea-ice, land, mediator), this chapter documents just a few of the cases designed to support hierarchical system development (HSD) within the UFS. Additionally, it explains how to run cases in a container when users do not have access to NOAA :term:`RDHPC systems `. + +.. toctree:: + :maxdepth: 3 + + CAPE2020 + baroclinic_wave + HSDcontainer + +Currently, users can find information on running the following HSD cases: + + * The :ref:`July 2020 CAPE Case ` + * The :ref:`Baroclinic Instability Case ` + +For a full list of supported WM configurations, view the `rt.conf `_ file. + +.. attention:: + + This chapter is a work in progress. There are a multitude of options for configuring the UFS WM, + and this chapter merely details a few supported configurations. It will be expanded over time + to include a wide variety of idealized test cases for use in research and testing. diff --git a/doc/UsersGuide/source/HSDcontainer.rst b/doc/UsersGuide/source/HSDcontainer.rst new file mode 100644 index 0000000000..58c6bd9aae --- /dev/null +++ b/doc/UsersGuide/source/HSDcontainer.rst @@ -0,0 +1,381 @@ +.. role:: raw-html(raw) + :format: html + +.. _hsd-container: + +********************************************** +Running UFS WM Idealized Cases in a Container +********************************************** + +This chapter provides instructions for running the Unified Forecast System (:term:`UFS`) Weather Model (WM) Hierarchical System Develop (HSD) cases using a `Singularity/Apptainer `_ container. Normally, the details of building and running Earth system models will vary based on the computing platform because there are many possible combinations of operating systems, compilers, :term:`MPIs `, and package versions available. Installation via Singularity/Apptainer container reduces this variability and allows for a smoother experience building and running the UFS WM. This approach is recommended for users not running the UFS WM on a supported :wm-wiki:`Level 1 ` system (e.g., Hera, Orion). + +This chapter provides instructions for building and running the Unified Forecast System UFS WM HSD cases using a container. Currently, users can select from the following cases: + + * The :ref:`July 2020 CAPE Case ` + * The :ref:`Baroclinic Instability Case ` + +.. attention:: + + This chapter of the User's Guide should **only** be used for container builds. For non-container builds, see the chapters above for instructions on how to run individual cases. These chapters describe the steps for configuring and running the UFS WM HSD cases on a :wm-wiki:`Level 1 System ` **without** a container. + +.. _Prereqs: + +Prerequisites +***************** + +The containerized version of the UFS WM requires: + + * `Installation of Apptainer `_ (or its predecessor, Singularity) + * At least 240 CPU cores with individual nodes capable of running more than 40 tasks + * An **Intel** compiler and :term:`MPI` (available for `free here `_) + * The `Slurm `_ job scheduler + + +Install Apptainer +================== + +.. note:: + + As of November 2021, the Linux-supported version of Singularity has been `renamed `_ to *Apptainer*. Apptainer has maintained compatibility with Singularity, so ``singularity`` commands should work with either Singularity or Apptainer (see `compatibility details here `_.) + +To configure and run the HSD cases using a Apptainer container, first install the software according to the `Apptainer Installation Guide `_. This will include the installation of all dependencies. + +.. attention:: + Docker containers can only be run with root privileges, and users generally do not have root privileges on :term:`HPCs `. However, an Apptainer image may be built directly from a Docker image for use on the system. + +.. _DownloadContainer: + +Build the Container +********************** + +.. _CloudHPC: + +Set Environment Variables +============================= + +For users working on systems with limited disk space in their ``/home`` directory, it is important to set the ``SINGULARITY_CACHEDIR`` and ``SINGULARITY_TMPDIR`` environment variables to point to a location with adequate disk space. For example: + +.. code-block:: + + export SINGULARITY_CACHEDIR=/absolute/path/to/writable/directory/cache + export SINGULARITY_TMPDIR=/absolute/path/to/writable/directory/tmp + +where ``/absolute/path/to/writable/directory/`` refers to a writable directory (usually a project or user directory within ``/lustre``, ``/work``, ``/scratch``, or ``/glade`` on NOAA :term:`RDHPCS` systems). If the ``cache`` and ``tmp`` directories do not already exist, they must be created with the ``mkdir`` command. + +On NOAA Cloud systems, the ``sudo su`` command may also be required. For example, users would run: + +.. code-block:: + + mkdir /lustre/cache + mkdir /lustre/tmp + sudo su + export SINGULARITY_CACHEDIR=/lustre/cache + export SINGULARITY_TMPDIR=/lustre/tmp + exit + +.. note:: + ``/lustre`` is a fast but non-persistent file system used on NOAA Cloud systems. To retain work completed in this directory, `tar the files `_ and move them to the ``/contrib`` directory, which is much slower but persistent. + +.. COMMENT: + +.. _ContainerBuild: + +Build the Container +====================== + +Set a top-level directory location for UFS WM work, and navigate to it. For example: + +.. code-block:: console + + mkdir /path/to/hsd + cd /path/to/hsd + export HSD=`pwd` + +where ``/path/to/hsd`` is the path to this top-level directory (e.g., ``/Users/Joe.Schmoe/hsd``). + +.. hint:: + If a ``singularity: command not found`` error message appears in any of the following steps, try running: ``module load singularity`` or ``module load apptainer``. + +NOAA RDHPCS Systems +---------------------- + +On many NOAA :term:`RDHPCS`, a container named ``ubuntu22.04-intel-wm-dev-hsd-test.img`` has already been built, and users may access the container at the locations in :numref:`Table %s `. + +.. _PreBuiltContainers: + +.. table:: Locations of Pre-Built Containers + + +--------------------+--------------------------------------------------------+ + | Machine | File location | + +====================+========================================================+ + | Gaea | /gpfs/f5/epic/world-shared/containers | + +--------------------+--------------------------------------------------------+ + | Hera | /scratch1/NCEPDEV/nems/role.epic/containers | + +--------------------+--------------------------------------------------------+ + | Jet | /mnt/lfs5/HFIP/hfv3gfs/role.epic/containers | + +--------------------+--------------------------------------------------------+ + | NOAA Cloud [#fn]_ | /contrib/EPIC/containers | + +--------------------+--------------------------------------------------------+ + | Orion/Hercules | /work/noaa/epic/role-epic/contrib/containers | + +--------------------+--------------------------------------------------------+ + +.. [#fn] The CAPE case can run on the NOAA Cloud ParallelWorks (PW) platforms, but the baroclinic wave case cannot. + +Users can simply set an environment variable to point to the container: + +.. code-block:: console + + export img=path/to/ubuntu22.04-intel-wm-dev-hsd-test.img + +If users prefer, they may copy the container to their local working directory. For example, on Jet: + +.. code-block:: console + + cp /mnt/lfs5/HFIP/hfv3gfs/role.epic/containers/ubuntu22.04-intel-wm-dev-hsd-test.img . + +Other Systems +---------------- + +On other systems, users can build the Singularity container from a public Docker :term:`container` image or download the ``ubuntu22.04-intel-wm-dev-hsd-test.img`` container from the `UFS Hierarchical Testing Framework (HTF) Data Bucket `_. Downloading may be faster depending on the download speed on the user's system. Note that the container in the data bucket is from the November 20, 2024 ``develop`` branch. + +To download from the data bucket, users can run: + +.. code-block:: console + + wget https://noaa-ufs-htf-pds.s3.amazonaws.com/develop-20241115/ubuntu22.04-intel-wm-dev-hsd-test.img + +To build the container from a Docker image, users can run: + +.. code-block:: console + + singularity build --force ubuntu22.04-intel-wm-dev-hsd-test.img docker://noaaepic/ubuntu22.04-intel21.10-wm:ue160-fms202401-dev + +This process may take several hours depending on the system. + +.. note:: + + Some users may need to issue the ``singularity build`` command with ``sudo`` (i.e., ``sudo singularity build...``). Whether ``sudo`` is required is system-dependent. If ``sudo`` is required (or desired) for building the container, users should set the ``SINGULARITY_CACHEDIR`` and ``SINGULARITY_TMPDIR`` environment variables with ``sudo su``, as in the NOAA Cloud example from :numref:`Section %s ` above. + +.. _GetDataC: + +Get Data +*********** + +In order to run the UFS WM HSD cases, users will need both fix files and model input data. These files are already present on :wm-wiki:`Level 1 ` systems. + +Users on any system may download and untar the data from the `UFS Hierarchical Testing Framework (HTF) Data Bucket `_ into their ``$HSD`` directory. + +.. code-block:: console + + cd $HSD + wget https://noaa-ufs-htf-pds.s3.amazonaws.com/develop-20241115/HSD_fix_files_and_case_data.tar.gz + tar xvfz HSD_fix_files_and_case_data.tar.gz + +.. _RunContainer: + +Run the Container +******************** + +To run the container, users must: + + #. :ref:`Set up the container ` + #. :ref:`Configure the experiment ` + #. :ref:`Run the experiment ` + +.. _SetUpContainer: + +Set Up the Container +======================= + +Save the location of the container in an environment variable. + +.. code-block:: console + + export img=/path/to/ubuntu22.04-intel-wm-dev-hsd-test.img + +Users may convert a container ``.img`` file to a writable sandbox. This step is optional and unnecessary on most systems (it can take several hours): + +.. code-block:: console + + singularity build --sandbox ubuntu22.04-intel-wm-dev-hsd-test $img + +When making a writable sandbox on NOAA :term:`RDHPCS`, the following warnings commonly appear and can be ignored: + +.. code-block:: console + + INFO: Starting build... + INFO: Verifying bootstrap image ubuntu22.04-intel-wm-dev-hsd-test.img + WARNING: integrity: signature not found for object group 1 + WARNING: Bootstrap image could not be verified, but build will continue. + +From within the ``$HSD`` directory, copy the ``stage-rt.sh`` script out of the container. + +.. code-block:: console + + singularity exec -H $PWD $img cp /opt/stage-rt.sh . + +The ``stage-rt.sh`` script should now be in the ``$HSD`` directory. If for some reason, the previous command was unsuccessful, users may try a version of the following command instead: + +.. code-block:: console + + singularity exec -B /:/ $img cp /opt/stage-rt.sh . + +where ```` and ```` are replaced with a top-level directory on the local system and in the container, respectively. Additional directories can be bound by adding another ``-B /:/`` argument before the container location (``$img``). Note that if previous steps included a ``sudo`` command, ``sudo`` may be required in front of this command. + +.. note:: + + Sometimes binding directories with different names can cause problems. In general, it is recommended that the local base directory and the container directory have the same name. For example, if the host system's top-level directory is ``/user1234``, the user may want to convert the ``.img`` file to a writable sandbox and create a ``user1234`` directory in the sandbox to bind to. + +Run the ``stage-rt.sh`` script with the proper arguments. + +.. code-block:: console + + ./stage-rt.sh -c= -m= [-p=] -i=$img + +where: + + * ``-c`` is the compiler on the user's local machine (e.g., ``intel/2022.1.2``) + * ``-m`` is the :term:`MPI` on the user's local machine (e.g., ``impi/2022.1.2``) + * ``-p`` refers to the local machine/platform (e.g., ``hera``, ``jet``, ``gaea``, ``noaacloud``). Required for Gaea and Jet only. + * ``-i`` is the full path to the container image (e.g., ``$img`` or ``$HSD/ubuntu22.04-intel-wm-dev-hsd-test.img``). + +.. note:: + + When using a Singularity container, Intel compilers and Intel :term:`MPI` (preferably 2020 versions or newer) need to be available on the host system to properly launch MPI jobs. Generally, this is accomplished by loading a module with a recent Intel compiler and then loading the corresponding Intel MPI. + +When this command runs, ``stage-rt.sh`` will print the following message to the console: + +.. code-block:: console + + Copying out ufs-weather-model repo from the container + Set run_test.sh to use exe in the container + Updating compiler and mpi in fv3_slurm.IN_singularity + Creating ufs_singularity.intel.lua + Tricking ufs_test.sh file + Updating various files with host paths + Done + +Additionally, the user should see the ``ufs-weather-model`` directory in the ``$HSD`` directory (``ls``). + +.. note:: + + Gaea and Jet: + * Gaea uses a different compiler and MPI to run with the container: ``-c=intel-classic/2023.2.0 -m=cray-mpich/8.1.28`` + * On Jet, ``cd`` to ``/mnt`` first before navigating to individual user workspaces to use the container. + +.. _ConfigureExptC: + +Configure the Experiment +=========================== + +To configure the experiment, users may need to update the ``default_vars.sh`` script and/or the ``machine_singularity.config`` files. + +Module Modification +-------------------- + +The machine configuration file is located at ``ufs-weather-model/tests-dev/machine_config/machine_singularity.config``. It assumes that Rocoto can be loaded via ``module load`` command from the host machine's initial state. If an additional path or module needs to be loaded, modify the ``machine_singularity.config`` to reflect those additions. For example, if the Rocoto package is found within the ``contrib`` module, add ``module load contrib`` before the ``module load rocoto`` statement in the machine configuration file. + +Host Machine Modifications +--------------------------- + +Default variables for regression tests and HSD tests are set in the ``default_vars.sh`` script in the ``ufs-weather-model/tests`` directory copied *from the container*. The individual test scripts (e.g., ``baroclinic_wave``, ``2020_CAPE``) override these variables where necessary. However, when running the HSD cases in a container, the tasks-per-node (TPN) variables in the singularity section need to be modified to reflect the user's host machine TPN configuration. + +Test Configuration +-------------------- + +Additional configuration may be needed for the specific test the user plans to run. For information on test-specific configuration, view the information for specific tests: + + * The :ref:`July 2020 CAPE Test Configuration ` + * The :ref:`Baroclinic Instability Test Configuration ` + +.. _RunExptC: + +Run the Experiment +===================== + +To start the experiment, run: + +.. code-block:: console + + cd $HSD/ufs-weather-model/tests-dev + ./ufs_test.sh -a -s -c -k -r -n " " + +where: + +* ````: Account/project number for batch jobs. +* ````: Name of the test case (e.g., ``2020_CAPE`` or ``baroclinic_wave``). +* ````: Compiler used for the tests (``intel`` or ``gnu``). + +The script will loop until it runs both tasks or crashes. ``rococtostat`` can be used to track its progress; see the :ref:`Track Progress ` section for details. + +.. _TrackProgress: + +Track Progress +---------------- + +To check on the job status, users on a system with a Slurm job scheduler may run (usually in a separate terminal window): + +.. code-block:: console + + squeue -u $USER + +To view the experiment status, make sure that rocoto is loaded and run: + +.. code-block:: console + + rocotostat -w rocoto_workflow.xml -d rocoto_workflow.db -v 10 + +It will print a status table: + +.. code-block:: console + + CYCLE TASK JOBID STATE EXIT STATUS TRIES DURATION + =========================================================================================== + 197001010000 compile_atm_dyn32_intel 1 RUNNING - 0 0.0 + 197001010000 2020_CAPE_intel - - - - - + +If the job hangs or otherwise fails, stop the workflow in the active terminal using ``(Ctrl+C)``. To resubmit the experiment, remove the ``rocoto_workflow*`` files and lock directory before rerunning the ``ufs_test.sh`` script again: + +.. code-block:: console + + rm -rf rocoto_workflow* lock + +.. _CheckExptOutput: + +Check Experiment Output +------------------------- + +If the experiment completes successfully, the loop will exit with output similar to the following: + +.. code-block:: console + :emphasize-lines: 1, 2, 11 + + Rocoto workflow has completed. + + return 0 + + [[ true == true ]] + + [[ '' != '' ]] + ++ date '+%Y%m%d %T' + + TEST_END_TIME='20241115 16:43:41' + + export TEST_END_TIME + + python -c 'import create_log; create_log.finish_log()' + running: /usr/bin/singularity exec --env-file /scratch1/NCEPDEV/stmp4/User.Name/hsd-test/new-cont/ufs-weather-model/container-scripts/ufswm.env -B /scratch1:/scratch1 /scratch1/NCEPDEV/stmp4/User.Name/hsd-test/new-cont/ubuntu22.04-intel-wm-dev-hsd-test.img python tmp_arg_file.py + Performing Cleanup... + REGRESSION TEST RESULT: SUCCESS + + echo 'ufs_test.sh finished' + ufs_test.sh finished + + cleanup + ++ awk '{print $2}' + + PID_LOCK=2947803 + + [[ 2947803 == \2\9\4\7\8\0\3 ]] + + rm -rf /scratch1/NCEPDEV/stmp4/User.Name/hsd-test/new-cont/ufs-weather-model/tests-dev/lock + + [[ false == true ]] + + trap 0 + + exit + +The experiment output can be found under the run directory (``${PTMP}/${USER}/FV3_RT/rt_${pid}``), which will contain two subdirectories, two log files, and two environment variable files (one for the compile task and one for the experiment task). For example: + +.. code-block:: console + + $ ls run_dir/ + baroclinic_wave_intel compile_atm_dyn32_intel compile_atm_dyn32_intel.log + baroclinic_wave_intel.log compile_atm_dyn32_intel.env run_test_baroclinic_wave_intel.env diff --git a/doc/UsersGuide/source/Introduction.rst b/doc/UsersGuide/source/Introduction.rst index 829d332e4a..c82ebc3af4 100644 --- a/doc/UsersGuide/source/Introduction.rst +++ b/doc/UsersGuide/source/Introduction.rst @@ -45,9 +45,9 @@ The UFS WM code is portable and can be used with Linux or Mac operating systems .. COMMENT: Is the cellular automata stochastic scheme now supported? .. COMMENT: Which horizontal/vertical levels & placements are supported? Just the default ones? -Those wishing to contribute development to the UFS WM should become familiar with the procedures for running the model as a standalone component and for executing the regression tests described in the UFS WM GitHub `wiki `__ to make sure no inadvertent changes to the results have been introduced during the development process. +Those wishing to contribute development to the UFS WM should become familiar with the procedures for running the model as a standalone component and for executing the regression tests described in the UFS WM GitHub :wm-wiki:`wiki ` to make sure no inadvertent changes to the results have been introduced during the development process. -Support for the UFS WM is provided through the `UFS Forum `__ by the Developmental Testbed Center (DTC) and other groups involved in UFS development, such as NOAA's Environmental Modeling Center (:term:`EMC`), NOAA research laboratories (GFDL, NSSL, ESRL, and AOML), and :term:`NCAR`. UFS users and developers are encouraged not only to post questions, but also to help address questions posted by other members of the community. +Support for the UFS WM is provided through the :wm-repo:`UFS Forum ` by the Developmental Testbed Center (DTC) and other groups involved in UFS development, such as NOAA's Environmental Modeling Center (:term:`EMC`), NOAA research laboratories (GFDL, NSSL, ESRL, and AOML), and :term:`NCAR`. UFS users and developers are encouraged not only to post questions, but also to help address questions posted by other members of the community. This WM User's Guide is organized as follows: @@ -59,6 +59,8 @@ This WM User's Guide is organized as follows: * :numref:`Chapter %s ` (Configurations) lists the currently supported configurations for the UFS WM. + * :numref:`Chapter %s ` (Hierarchical System Development) explains how to run test cases that support Hierarchical System Development. + * :numref:`Chapter %s ` (Configuration Parameters) lists the purpose and valid values for various configuration parameters. * :numref:`Chapter %s ` (Automated Testing) describes UFS WM automated testing options. diff --git a/doc/UsersGuide/source/RTConfigurations.rst b/doc/UsersGuide/source/RTConfigurations.rst new file mode 100644 index 0000000000..49da568cc2 --- /dev/null +++ b/doc/UsersGuide/source/RTConfigurations.rst @@ -0,0 +1,510 @@ +.. |nbsp| unicode:: 0xA0 + :trim: + +.. role:: raw-html(raw) + :format: html + +.. _Configurations: + +******************************* +Regresson Test Configurations +******************************* + +The UFS Weather Model (WM) can be run in any of several configurations, from a single-component atmospheric +model to a fully coupled model with multiple earth system components (e.g., atmosphere, ocean, sea-ice, land, and +mediator). This chapter documents a few of the supported regression test (RT) configurations. For a full list of +supported RT configurations, view the `rt.conf `__ file. + +.. attention:: + + This chapter is a work in progress. There are a multitude of options for configuring the UFS WM, + and this chapter merely details a few supported configurations. It will be expanded over time + to include the full set of configurations supported for WM regression tests (RTs). + +.. _UFS-configurations-documented: + +.. list-table:: *Documented UFS Weather Model Configuration Categories* + :widths: 10 70 + :header-rows: 1 + + * - Configuration Category + - Description + * - :ref:`ATM ` + - Standalone Atmospheric Model (:term:`ATM`) + * - :ref:`ATMW ` + - Coupled :term:`ATM` and :term:`WW3` + * - :ref:`ATMAERO ` + - Coupled :term:`ATM` and :term:`GOCART` + * - :ref:`ATML ` + - Coupled :term:`ATM` and :term:`LND` + * - :ref:`LND ` + - Coupled :term:`CDEPS` - :term:`DATM` - :term:`LND` -:term:`CMEPS` + * - :ref:`RRFS ` + - :term:`ATM` with :term:`data assimilation` + * - :ref:`HAFS ` + - Coupled components may include :term:`CDEPS` - :term:`ATM` - :term:`HYCOM` - :term:`WW3` - :term:`MOM6` - :term:`CMEPS` + +This chapter details the supported build/run options for each supported configuration. +Click on the configuration category in :numref:`Table %s ` +to go to that section. Each configuration category includes sample code for setting ``CMAKE_FLAGS`` and ``CCPP_SUITES``. +Additionally, there is a list of preferred physics suites, examples of ``ufs.configure`` files, +and links to information on other input files required to run the model. + +============ +Background +============ + +Each RT configuration file (located in the ``ufs-weather-model/tests/tests`` +`directory `__) +sets default variables by calling setup functions from ``ufs-weather-model/tests/default_vars.sh`` +(see defaults `here `__). +Then, the RT configuration file sets test-specific variablesthese values will override +the defaults. For example, the ``control_c48`` test file sets a list of files that +it will use, calls the ``export_fv3`` function from ``default_vars.sh``, and then exports +test-specific variables. An excerpt is included below (``...`` indicates omitted lines): + +.. code-block:: console + + export LIST_FILES="sfcf000.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf024.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + ... + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" + + export_fv3 + + export INPES=1 + export JNPES=1 + export WRTTASK_PER_GROUP=2 + export NPZ=127 + export NPZP=128 + export NPX=49 + export NPY=49 + export DT_ATMOS=1200 + ... + +``default_vars.sh`` contains eight functions that set defaults for different types of tests. :numref:`Table %s ` describes what each function does. + +.. _def-funcs: + +.. list-table:: *default_vars.sh functions* + :widths: 10 70 + :header-rows: 1 + + * - Function Name + - Description + * - export_fv3 + - Set variables to the FV3 default values (first common variables, then model-specific ones). Different machines may have different defaults for some variables. + * - export_cpl + - Set variables to the default values for *coupled* / S2S configurations. + * - export_35d_run + - Set variables to the default values for EMC's weekly coupled benchmark 35d tests (see `rt_35d.conf `__). + * - export_datm_cdeps + - Set variables to the default values for configurations that use the data atmosphere (:term:`DATM`) component. + * - export_hafs_datm_cdeps + - Set variables to the default values for HAFS configurations that use the data atmosphere (DATM) component. + * - export_hafs_docn_cdeps + - Set variables to the default values for HAFS configurations that use the data ocean (:term:`DOCN`) component. + * - export_hafs_regional + - Set variables to the default values for regional HAFS configurations. + * - export_hafs + - Set variables to the default values for HAFS configurations. + +Multiple ``default_vars.sh`` functions may be called in a given test. Values set in one +function will be overridden when the same values are set in a subsequent function. + +The most up-to-date list of ``develop`` branch data required for each test is available in +the `UFS WM RT Data Bucket `__. +Users should click on "Browse Bucket" and navigate to the most recent date (in ``develop-YYYY-MM-DD`` format). +Then, users should select *Intel* or *GNU* based on the compiler used in the test they +want to run and then select the test name to see the required data. + +==================================== +Atmospheric Model Configurations +==================================== + +The atmospheric model configurations all use the UFS WM atmospheric component +and may couple it with other models (e.g., a wave or aerosol model). + +.. _atm-documented: + +ATM - Standalone Atmospheric Model +===================================== + +The standalone atmospheric model (:term:`ATM`) is an :term:`FV3`-based prognostic +atmospheric model that can be used for short- and medium-range research and operational +forecasts. In standalone mode, ``ATM`` is not coupled to any other model. + +Current ATM regression tests cover a wide variety of functionality and involve several +physics tests. :numref:`Table %s ` contains a small selection of ATM-only RTs; +it will be expanded to cover the full range of ATM-only supported configurations in time: + +.. _atm-rts: + +.. list-table:: *ATM regression test descriptions* + :widths: 10 40 10 10 15 5 + :header-rows: 1 + + * - Test Name + - Description + - Physics Suite (see `namelist options `__) + - DT_ATMOS + - Start Date + - Forecast Length (hours) + * - `control_c48 `__ + - Compare global control C48L127 results with previous trunk version + - FV3_GFS_v16 + - 1200 + - 2021-03-22 06:00:00 + - 24 + * - `control_p8 `__ + - Compare global control results with previous trunk version + - FV3_GFS_v17_p8 + - 720 + - 2021-03-22 06:00:00 + - 24 + * - `regional_control `__ + - FV3 regional control (hi-res 3km, small domain) test + - FV3_GFS_v15_thompson_mynn_lam3km + - 1800 + - 2016-10-03 00:00:00 + - 6 + +**Sample** ``CMAKE_FLAGS`` **Setting** + +.. code-block:: console + + export CMAKE_FLAGS="-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON" + +**Supported Physics Suites** + +.. list-table:: *Physics suites used in the ATM configurations above* + :widths: 10 50 + :header-rows: 1 + + * - Physics Suite + - Description + * - FV3_GFS_v16 + - The :term:`CCPP` GFS_v16 physics suite is described in the CCPP documentation `here `__. + * - FV3_GFS_v17_p8 + - The CCPP GFS_v17_p8 physics suite is described in the CCPP documentation `here `__. + * - FV3_GFS_v15_thompson_mynn_lam3km + - The CCPP GFS_v15 physics suite with the Thompson Aerosol-Aware Cloud Microphysics Scheme + (see `here `__) and + Mynn Surface Layer Module (see `here `__) + tailored for a limited area model (LAM) 3-km resolution grid. + +**Additional Information** + +Input files required for ATM configurations can be viewed in :numref:`Section %s ` +or in the `UFS WM RT Data Bucket `__. +Information on ``ufs.configure`` files is available in :numref:`Section %s `, +and a sample ATM ``ufs.configure`` file (``ufs.configure.atm.IN``) is available +`here `__. + +.. _atmw-documented: + +ATMW +======= + +The ATMW configuration couples :term:`ATM` with :term:`WaveWatch III`. +These tests use default values set in the ``export_fv3`` function of ``default_vars.sh``. + +.. list-table:: *ATMW regression test descriptions* + :widths: 50 10 30 50 10 10 10 10 10 + :header-rows: 1 + + * - Test |nbsp| Name |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| + - Description + - General Physics Parameters + - Detailed |nbsp| Physics |nbsp| Parameters |nbsp| (see |nbsp| namelist |nbsp| options `here `__ |nbsp| for variable definitions) + - Start |nbsp| Date |nbsp| |nbsp| |nbsp| |nbsp| + - Fcst Length (hours) + - Output Grid + - Configuration Files + - Other + * - `atmwav_control_noaero_p8 `__ + - Compare global control results with previous trunk version + - **Suite:** CCPP_SUITE="FV3_GFS_v16" :raw-html:`

` + + **Microphysics:** IMP_PHYSICS=8 :raw-html:`

` + + **Time Step:** DT_ATMOS=720 :raw-html:`

` + + - **Set to FALSE:** LHEATSTRG, DO_UGWP_V1, DO_GSL_DRAG_LS_BL, DO_GSL_DRAG_TOFD, DO_UGWP_V1_OROG_ONLY, DO_UGWP_V0_NST_ONLY, LDIAG_UGWP, CA_GLOBAL, LANDICE, LGFDLMPRAD, DO_SAT_ADJ, MULTIGRID, USE_CICE_ALB, DO_RRTMGP :raw-html:`

` + **Set to TRUE:** USE_MERRA2, LSEASPRAY, DO_UGWP_V0, DO_GSL_DRAG_SS, DO_CA, CA_SGS, CA_TRIGGER, TILEDFIX, CPL, CPLWAV, CPLWAV2ATM, FRAC_GRID, WRITE_NSFLIP, DOGP_CLDOPTICS_LUT, DOGP_LWSCAT, DOGP_SGS_CNV, SATMEDMF :raw-html:`

` + **Set to VALUE:** IALB=2, IEMS=2, LSM=2, IOPT_DVEG=4, IOPT_CRS=2, IOPT_RAD=3, IOPT_ALB=1, IOPT_STC=3, IOPT_SFC=3, IOPT_TRS=2, IOPT_DIAG=2, D2_BG_K1=0.20, D2_BG_K2=0.04, PSM_BC=1, DDDMP=0.1, IAER=1011, KNOB_UGWP_VERSION=0, KNOB_UGWP_NSLOPE=1, NCA=1, NCELLS=5, NLIVES=12, NTHRESH=18, NSEED=1, NFRACSEED=0.5, NSPINUP=1, ISEED_CA=12345, FSICL=0, FSICS=0, DNATS=0, DZ_MIN=6, cap_dbug_flag=0, MIN_SEAICE=0.15, + - 2021-03-22 06:00:00 + - 12 + - OUTPUT_GRID=gaussian_grid :raw-html:`

` + **Grid Parameters**: INPES=$INPES_cpl_atmw, JNPES=$JNPES_cpl_atmw, NPZ=127, NPZP=128 + - FIELD_TABLE=field_table_thompson_noaero_tke + DIAG_TABLE=diag_table_p8_template + INPUT_NML=cpld_control.nml.IN + UFS_CONFIGURE=ufs.configure.atmw.IN + FV3_RUN=control_run.IN + - RUNTYPE=startup, med_model=cmeps, atm_model=fv3, wav_model=ww3 + +.. _atmaero-documented: + +ATMAERO +========= + +The ATMAERO configuration couples :term:`ATM` with :term:`GOCART`. +These tests use default values set in the ``export_fv3`` function of ``default_vars.sh``. + +.. attention:: + + Certain physics-related settings are common to all of the supported RRFS configurations. These values are set in each test's configuration file because they differ from the ``default_vars.sh`` values: + + General Physics Parameters: + * **Suite:** CCPP_SUITE= `FV3_GFS_v17_p8 `__ + * **Microphysics:** IMP_PHYSICS=8 + * **Time Step:** DT_ATMOS=720 + + Detailed Physics Parameters: + * **Set to FALSE:** DO_UGWP_V1, DO_GSL_DRAG_LS_BL, DO_GSL_DRAG_TOFD, DO_UGWP_V1_OROG_ONLY, DO_UGWP_V0_NST_ONLY, LDIAG_UGWP, CA_GLOBAL, LANDICE, LGFDLMPRAD, DO_SAT_ADJ, USE_CICE_ALB, DO_RRTMGP + * **Set to TRUE:** WRITE_DOPOST, CPL, CPLCHM, USE_MERRA2, LSEASPRAY, DO_UGWP_V0, DO_GSL_DRAG_SS, DO_CA, CA_SGS, CA_TRIGGER, TILEDFIX, FRAC_GRID, WRITE_NSFLIP, DOGP_CLDOPTICS_LUT, DOGP_LWSCAT, DOGP_SGS_CNV, SATMEDMF + * **Set to VALUE:** NSTF_NAME='2,0,0,0,0', atm_model='fv3', chm_model='gocart', DOMAINS_STACK_SIZE=8000000, IALB=2, IEMS=2, LSM=2, IOPT_DVEG=4, IOPT_CRS=2, IOPT_RAD=3, IOPT_ALB=1, IOPT_STC=3, IOPT_SFC=3, IOPT_TRS=2, IOPT_DIAG=2, D2_BG_K1=0.20, D2_BG_K2=0.04, PSM_BC=1, DDDMP=0.1, GWD_OPT=2, KNOB_UGWP_VERSION=0, KNOB_UGWP_NSLOPE=1, NCA=1, NCELLS=5, NLIVES=12, NTHRESH=18, NSEED=1, NFRACSEED=0.5, NSPINUP=1, ISEED_CA=12345, FSICL=0, FSICS=0, DZ_MIN=6, MIN_SEAICE=0.15 + +ATMAQ +======= + +**COMING SOON!** + +.. _atml-documented: + +ATML +====== + +The ATML configuration couples :term:`ATM` with :term:`LND`. +These tests use default values set in the ``export_fv3`` function of ``default_vars.sh``. + +.. attention:: + There is an issue with ``-D32BIT=ON`` in the ATM-LND tests, and NoahMP requires r8 libraries. + +.. COMMENT: Should "r8" be "p8"? + +.. _atml-rts: + +.. list-table:: *ATML regression test descriptions* + :widths: 10 40 10 10 15 5 + :header-rows: 1 + + * - Test Name + - Description + - Physics Suite (see `namelist options `__) + - DT_ATMOS + - Start Date + - Forecast Length (hours) + * - control_p8_atmlnd_sbs + - Compare global control results with previous trunk version + - FV3_GFS_v17_p8 + - 720 + - 2021-03-22 06:00:00 + - 24 + +**Sample** ``CMAKE_FLAGS`` **Setting** + +.. code-block:: console + + export CMAKE_FLAGS="-DAPP=ATML -DCCPP_SUITES=FV3_GFS_v17_p8" + + +**Supported Physics Suites** + +.. list-table:: *Physics suites used in the ATM configurations above* + :widths: 10 50 + :header-rows: 1 + + * - Physics Suite + - Description + * - FV3_GFS_v17_p8 + - The :term:`CCPP` GFS_v17_p8 physics suite is described in the CCPP documentation `here `__. + +**Additional Information** + +Input files required for ATML configurations can be viewed in :numref:`Section %s (ATM) ` +and :numref:`Section %s (LND) ` or in the `UFS WM RT Data Bucket `__. +Information on ``ufs.configure`` files is available in :numref:`Section %s `, +and a sample ATML ``ufs.configure`` file (``ufs.configure.atm_lnd.IN``) is available +`here `__. + + +.. _rrfs-documented: + +======================================= +Rapid Refresh Forecast System (RRFS) +======================================= + +The RRFS configurations use an :term:`ATM`-only configuration on a high-resolution +regional grid with data assimilation capabilities. +These tests use the default values set in the ``export_fv3``, ``export_rap_common``, ``export_rrfs_v1``, and/or ``export_hrrr_conus13km`` functions of ``default_vars.sh`` unless other values are explicitly set in a given test file. In all tests, the values in ``export_fv3`` are set first. Depending on the test, some of these values may be overriden by ``export_rrfs_v1`` (which includes values from ``export_rap_common``) or ``export_hrrr_conus13km``. :numref:`Table %s ` compares the values set in ``export_fv3`` to the values set in the other functions. + +.. note:: + + ``export_rrfs_v1`` calls ``export_rap_common``, which calls ``export_fv3``. Values from ``export_fv3`` are set first, followed by values in ``export_rap_common`` and then values in ``export_rrfs_v1``. Values in italics indicate that the value is inherited from a previously-called function. + +.. _rrfs-default-vars-comparison: + +.. csv-table:: *RRFS Default Variables* + :file: tables/RRFSDefaultVariables.csv + :widths: 50 10 10 10 10 + :header-rows: 1 + :stub-columns: 1 + +Current RRFS regression tests cover a wide variety of functionality and involve several +physics tests. + +**Sample** ``CMAKE_FLAGS`` **Setting** + +.. code-block:: console + + export CMAKE_FLAGS="-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON" + +**Supported Physics Suites** + +.. list-table:: *Physics suites used in the RRFS configurations above* + :widths: 10 50 + :header-rows: 1 + + * - Physics Suite + - Description + * - FV3_HRRR + - The FV3_HRRR physics suite is described in the :term:`CCPP` documentation `here `__. + * - FV3_RRFS_v1beta + - The FV3_RRFS_v1beta physics suite is described in the CCPP documentation `here `__. + * - FV3_RRFS_v1nssl + - The FV3_RRFS_v1nssl physics suite is similar to the *FV3_RRFS_v1beta* suite; however, it uses the NSSL 2-moment microphysics scheme instead of the Thompson microphysics scheme. + + +**Additional Information** + +Each test file lists the input files required for a given test. Input files required for RRFS ATM configurations can be downloaded from the `UFS WM RT Data Bucket `__. Users who wish to run additional (unsupported) cases may also find useful data in the `NOAA RRFS data bucket `__. + +Information on ``ufs.configure`` files is available in :numref:`Section %s `. The supported RRFS WM RTs use the same ``ufs.configure`` file that ATM-only tests do (``ufs.configure.atm.IN``). This file can be viewed in the ``ufs-weather-model/tests/parm`` `directory `__. + +Additionally, users can find examples of various RRFS configuration files in the ``ufs-weather-model/tests/parm`` `directory `__. These files include ``model_configure_*``, ``*_run.IN`` (input run), ``*.nml.IN`` (input namelist), ``field_table_*``, and ``diag_table_*`` files. + +.. _lnd-documented: + +======= +LND +======= + +The LND configuration couples :term:`DATM`, :term:`CDEPS`, and :term:`CMEPS` with :term:`LND`. These tests use default values set in the ``export_datm_cdeps`` function of ``default_vars.sh``. + +.. _lnd-rts: + +.. list-table:: *LND regression test descriptions* + :widths: 10 40 10 10 15 5 + :header-rows: 1 + + * - Test Name + - Description + - Physics Suite + - DT_ATMOS + - Start Date + - Forecast Length (hours) + * - datm_cdeps_lnd_gswp3 + - DATM_CDEPS_NOAHMP_GSWP3 - control + - N/A + - N/A + - 2000-01-01 00:00:00 + - 24 + * - datm_cdeps_lnd_gswp3_rst + - DATM_CDEPS_NOAHMP_GSWP3_RST - control restart + - N/A + - N/A + - 2000-01-01 12:00:00 + - 12 + +**Sample** ``CMAKE_FLAGS`` **Setting** + +.. code-block:: console + + export CMAKE_FLAGS="-DAPP=LND" + +**Additional Information** + +Input files required for LND configurations can be viewed in :numref:`Section %s (LND) ` +or in the `UFS WM RT Data Bucket `__. +Information on ``ufs.configure`` files is available in :numref:`Section %s `, +and a sample ATML ``ufs.configure`` file (``ufs.configure.atm_lnd.IN``) is available +`here `__. + + +============================================= +Seasonal to Subseasonal (S2S) Configurations +============================================= + +**COMING SOON!** + +============== +NG-GODAS +============== + +**COMING SOON!** + +.. _hafs-documented: + +======================================================== +Hurricane Analysis and Reforecast System Configurations +======================================================== + +The HAFS configuration uses an :term:`DATM`-only configuration. + +These tests use the default values set in the ``export_fv3``, ``export_hafs``, ``export_hafs_regional``, ``export_hafs_datm_cdeps``, and ``export_hafs_docn_cdeps`` functions of ``default_vars.sh`` unless other values are explicitly set in a given test file. In all tests, the values in ``export_fv3`` are set first. + +.. note:: + + ``export_hafs`` calls ``export_hafs_regional``, which calls ``export_hafs_datm_cdeps`` or ``export_hafs_docn_cdeps``, which calls ``export_fv3``. Values from ``export_fv3`` are set first, followed by values in ``export_hafs``, ``export_hafs_regional``, and then values in ``export_hafs_datm_cdeps`` or ``export_hafs_docn_cdeps``. + +.. list-table:: *Default physics-related variables used in the HAFS configurations below* + :widths: 10 50 + :header-rows: 1 + + * - Export Function + - Variables + * - export_hafs + - **Set to FALSE:** S2S, AQM, DATM_CDEPS, DOCN_CDEPS, HYBEDMF, CNVGWD, LTAEROSOL, LHEATSTRG, IS_MOVING_NEST :raw-html:`

` + **Set to TRUE:** FV3, HAFS, SATMEDMF, HURR_PBL, DO_GSL_DRAG_LS_BL, DO_GSL_DRAG_SS, DO_GSL_DRAG_TOFD, LRADAR, CPL_IMP_MRG :raw-html:`

` + **Set to VALUE:** NTILES=1, IMFSHALCNV=2, IMFDEEPCNV=2, MONINQ_FAC=-1.0, ISATMEDMF=1, IOPT_SFC=1, IOPT_DVEG=2, IOPT_CRS=1, IOPT_RAD=1, IOPT_ALB=2, IOPT_STC=1, LSM=1, IMP_PHYSICS=11, IAER=111, CDMBWD=1.0,1.0,1.0,1.0, FV_CORE_TAU=5., RF_CUTOFF=30.e2, RF_CUTOFF_NEST=50.e2, VORTEX_TRACKER=0, NTRACK=0, MOVE_CD_X=0, MOVE_CD_Y=0, NFHOUT=3, NFHMAX_HF=-1, NFHOUT_HF=3, NSOUT=-1, OUTPUT_FH=-1 + * - export_hafs_regional + - **Set to FALSE:** S2S, AQM, DOCN_CDEPS, WRITE_DOPOST, USE_COLDSTART, MULTIGRID :raw-html:`

` + **Set to TRUE:** FV3, HAFS, CPL, QUILTING, OUTPUT_HISTORY, CPL_IMP_MRG :raw-html:`

` + **Set to VALUE:** NTILES=1, FHMAX=6, ENS_NUM=1, DT_ATMOS=900, RESTART_INTERVAL=0, FHROT=0, coupling_interval_fast_sec=0, WRITE_GROUP=1, WRTTASK_PER_GROUP=6, NUM_FILES=2, FILENAME_BASE="'atm' 'sfc'", OUTPUT_GRID="'regional_latlon'", OUTPUT_FILE="'netcdf'", IDEFLATE=0, QUANTIZE_NSD=0, NFHOUT=3, NFHMAX_HF=-1, NFHOUT_HF=3, CEN_LON=-62.0, CEN_LAT=25.0, LON1=-114.5, LAT1=-5.0, LON2=-9.5, LAT2=55.0, DLON=0.03, DLAT=0.03, DIAG_TABLE=diag_table_hafs, FIELD_TABLE=field_table_hafs, WW3OUTDTHR=3, OUTPARS_WAV="WND HS T01 T02 DIR FP DP PHS PTP PDIR UST CHA USP", WAV_CUR='C', med_model=cmeps, pio_rearranger=box, CAP_DBUG_FLAG=0, CPLMODE=hafs, RUNTYPE=startup, MESH_WAV=mesh.hafs.nc, MODDEF_WAV=mod_def.natl_6m + * - export_hafs_datm_cdeps + - **Set to FALSE:** FV3, S2S, AQM, DOCN_CDEPS :raw-html:`

` + **Set to TRUE:** HAFS, DATM_CDEPS :raw-html:`

` + **Set to VALUE:** NTILES=1, atm_model=datm, DATM_IN_CONFIGURE=datm_in, DATM_STREAM_CONFIGURE=hafs_datm.streams.era5.IN + * - export_hafs_docn_cdeps + - **Set to FALSE:** S2S, AQM :raw-html:`

` + **Set to TRUE:** FV3, HAFS, DOCN_CDEPS :raw-html:`

` + **Set to VALUE:** NTILES=1, ocn_model=docn, ocn_datamode=sstdata, pio_rearranger=box, DOCN_IN_CONFIGURE=docn_in, DOCN_STREAM_CONFIGURE=hafs_docn.streams.IN + +**Sample** ``CMAKE_FLAGS`` **Setting** + +.. code-block:: console + + export CMAKE_FLAGS="-DAPP=HAFS" + +**Supported Physics Suites** + +.. list-table:: *Physics suites used in the HAFS configurations above* + :widths: 10 50 + :header-rows: 1 + + * - Physics Suite + - Description + * - FV3_HAFS_v1_gfdlmp_tedmf + - The FV3_HAFS_v1_gfdlmp_tedmf physics suite is described in the :term:`CCPP` documentation `here `__. + * - FV3_HAFS_v1_gfdlmp_tedmf_nonsst + - The FV3_HAFS_v1_gfdlmp_tedmf_nonsst physics suite is described in the CCPP documentation `here `__. + * - FV3_HAFS_v1_thompson_tedmf_gfdlsf + - The FV3_HAFS_v1_thompson_tedmf_gfdlsf physics suite is described in the CCPP documentation `here `__. + diff --git a/doc/UsersGuide/source/baroclinic_wave.rst b/doc/UsersGuide/source/baroclinic_wave.rst new file mode 100644 index 0000000000..ac304dcf33 --- /dev/null +++ b/doc/UsersGuide/source/baroclinic_wave.rst @@ -0,0 +1,105 @@ +.. role:: raw-html(raw) + :format: html + +.. _baroclinic-wave: + +***************************** +Baroclinic Instability Case +***************************** + +The UFS WM baroclinic wave case adapts the test outlined in :cite:t:`Jablonowski&Williamson2006` (2006). This test is designed to evaluate the accuracy of various atmospheric models in simulating a baroclinic wave, which commonly forms in the Northern Hemisphere and influences weather patterns. This test aims to assess how well "dry dynamical cores," the foundational components of weather and climate models that handle air movement and temperature changes, perform in idealized conditions. + +The simulation sets the model's atmosphere to an initial steady state, designed to be a simple, realistic representation of atmospheric conditions using the adiabatic (no heat exchange) and inviscid (no friction) primitive equations. The test first checks whether each model can maintain this steady, zonal (west-to-east) state without developing any unintended changes. After verifying this, the next step is to introduce a small disturbance, or perturbation, which triggers the growth of a baroclinic wave. The wave then evolves over several simulated days, allowing the researchers to observe how accurately different models handle the wave's development and movement. + +This test provides a standard way to assess how different atmospheric models handle the development of baroclinic waves. The results help identify which models are more accurate and can serve as benchmarks for model improvement, ultimately contributing to better simulations of atmospheric behavior in weather and climate predictions. + +In the UFS WM, the idealized baroclinic wave test case is an atmosphere-only, :term:`dycore`-only forecast run at C192 resolution with 127 vertical levels. It uses default values from the WM's ``export_fv3`` function, along with default values for a tiled grid namelist (from ``export_tiled``). These initial values are set based on values from `default_vars.sh `_. + +The test is set to run a dynamics-only 24-hour forecast from 2019-12-03 at 0z. However, it is recommended that users modify the case to run it as a 5-10 day forecast by setting the forecast length (``FHMAX``) to 120-240 hours in the test file (see :numref:`Section %s ` for instructions). Users will also need to update ``OUTPUT_FH`` accordingly. This ensures that users will be able to see the disturbance (wave propagation) develop, starting about 120-150 hours into the forecast. + +============================= +Obtaining Data for HSD Cases +============================= + +.. include:: ./doc-snippets/hsd_data.rst + +.. _run-bw: + +================================== +Running the Baroclinic Wave Case +================================== + +This section explains how to run the baroclinic wave case described above using the ``ufs_test.sh`` script. + +Clone the Repository +-------------------- + +.. include:: ./doc-snippets/clone_hsd.rst + +Machine Configuration +----------------------- + +.. include:: ./doc-snippets/hsd_machine_config.rst + +.. _bw-config: + +Test Configuration +---------------------- + +It is recommended that users adjust certain values in the baroclinic wave case. Currently, the forecast length (``FHMAX``) is set to 24 hours to maintain the regression testing baselines with reduced resource consumption. However, it is recommended that users run the case for 5-10 days (120-240 hours) to see the disturbance (wave propagation) develop about 120-150 hours into the forecast. To modify the case, open ``${UFS_WM}/tests-dev/test_cases/tests/baroclinic_wave`` using ``vi``/``vim`` or a code editor. Then, add ``FHMAX`` and update ``OUTPUT_FH`` to extend by increments of 6 to the new ``FHMAX``. + +.. code-block:: console + + export FHMAX=120 # (or 240) + export OUTPUT_FH='0 6 12 18 24 30 36 42 48 54 60 66 72 78 84 90 96 102 108 114 120' + +In general, it is preferable to make ``FHMAX`` a multiple of 24. + +.. note:: + + On Jet, users will also need to adjust ``${UFS_WM}/tests/fv3_conf/compile_slurm.IN_jet`` in order to manage memory requirements for longer runs of the ``baroclinic_wave`` test. Users will need to change the number of tasks per node from 8 to 6 and add ``#SBATCH --mem=0``. + + The file should include: + + .. code-block:: console + + #SBATCH --ntasks-per-node=6 + #SBATCH --mem=0 + +Baseline Configuration +---------------------- + +.. include:: ./doc-snippets/hsd_baseline_config.rst + +Running Tests +------------- + +.. include:: ./doc-snippets/hsd_run_tests.rst + +Example: +^^^^^^^^^ + +Users with access to the ``epic`` account can run the ``baroclinic_wave`` test case with the ``intel`` compiler on :term:`RDHPCS` where they have access using the following command: + +.. code-block:: console + + ./ufs_test.sh -a epic -s -c -k -r -n "baroclinic_wave intel" + +Running Multiple Cases +^^^^^^^^^^^^^^^^^^^^^^^^ + +.. include:: ./doc-snippets/hsd_run_multiple.rst + +Checking Results +----------------- + +.. include:: ./doc-snippets/hsd_check_results.rst + +For example, to monitor progress or check results for the ``baroclinic_wave`` case, run: + +.. code-block:: console + + tail -f ${UFS_WM}/tests-dev/run_dir/baroclinic_wave_intel/err + tail -f ${UFS_WM}/tests-dev/run_dir/baroclinic_wave_intel/out + +.. include:: ./doc-snippets/hsd_notes.rst diff --git a/doc/UsersGuide/source/conf.py b/doc/UsersGuide/source/conf.py index ae16c27be2..ea31fb1d67 100644 --- a/doc/UsersGuide/source/conf.py +++ b/doc/UsersGuide/source/conf.py @@ -47,6 +47,7 @@ 'sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.intersphinx', + 'sphinx.ext.extlinks', 'sphinx.ext.todo', 'sphinx.ext.coverage', 'sphinx.ext.mathjax', @@ -95,8 +96,15 @@ # Ignore working links that cause a linkcheck 403 error. linkcheck_ignore = [r'https://agupubs\.onlinelibrary\.wiley\.com/doi/10\.1029/2020MS002260', r'https://glossary.ametsoc.org/wiki/*', + r'https://www.intel.com/content/www/us/en/developer/tools/oneapi/hpc-toolkit-download.html', ] +linkcheck_allowed_redirects = {r"https://doi.org/.*": + r"https://rmets.onlinelibrary.wiley.com/doi/.*", + r"https://doi.org/.*": + r"https://journals.ametsoc.org/view/journals/.*", + } + # -- Options for HTML output ------------------------------------------------- # The theme to use for HTML and HTML Help pages. See the documentation for @@ -249,6 +257,14 @@ def warn_undocumented_members(app, what, name, obj, options, lines): intersphinx_mapping = {'landda': ('https://land-da-workflow.readthedocs.io/en/latest/', None), } +# -- Options for extlinks extension --------------------------------------- + +extlinks_detect_hardcoded_links = True +extlinks = {'nco': ('https://www.nco.ncep.noaa.gov/idsb/implementation_standards/%s', '%s'), + 'wm-repo': ('https://github.com/ufs-community/ufs-weather-model/%s', '%s'), + 'wm-wiki': ('https://github.com/ufs-community/ufs-weather-model/wiki/%s','%s'), + } + # -- Options for todo extension ---------------------------------------------- # If true, `todo` and `todoList` produce output, else they produce nothing. diff --git a/doc/UsersGuide/source/doc-snippets/clone_hsd.rst b/doc/UsersGuide/source/doc-snippets/clone_hsd.rst new file mode 100644 index 0000000000..4bbf6073fb --- /dev/null +++ b/doc/UsersGuide/source/doc-snippets/clone_hsd.rst @@ -0,0 +1,14 @@ +To start, recursively clone the repository: + +.. code-block:: console + + git clone --recursive -b develop https://github.com/ufs-community/ufs-weather-model.git + cd ufs-weather-model + +After cloning, users may save (or "export") the path to the UFS WM in an environment variable: + +.. code-block:: console + + export UFS_WM=$PWD + +Although this step is optional, users may find it convenient when navigating between directories. This documentation will use ``${UFS_WM}`` to refer to the path to the ``ufs-weather-model`` directory, but users may choose to type out the full path instead. diff --git a/doc/UsersGuide/source/doc-snippets/hsd_baseline_config.rst b/doc/UsersGuide/source/doc-snippets/hsd_baseline_config.rst new file mode 100644 index 0000000000..0c3aeb8925 --- /dev/null +++ b/doc/UsersGuide/source/doc-snippets/hsd_baseline_config.rst @@ -0,0 +1,5 @@ +Users may need to modify the baseline configuration file (``${UFS_WM}/tests-dev/baseline_setup.yaml``), which contains details on the location of staged input data, user-specific output directories, and batch job scheduling. The following variables are of particular importance: + +* ``dprefix``: Set this value to an existing directory where the user has write permissions. +* ``STMP``: Directory for baseline test output (typically ``${dprefix}/stmp4``) +* ``PTMP``: Directory for runtime files (typically ``${dprefix}/stmp2``) diff --git a/doc/UsersGuide/source/doc-snippets/hsd_check_results.rst b/doc/UsersGuide/source/doc-snippets/hsd_check_results.rst new file mode 100644 index 0000000000..a5eef368a5 --- /dev/null +++ b/doc/UsersGuide/source/doc-snippets/hsd_check_results.rst @@ -0,0 +1,21 @@ +When the test case finishes running, users should see console output that includes a ``SUCCESS`` message. For example: + +.. code-block:: console + :emphasize-lines: 2 + + Performing Cleanup... + REGRESSION TEST RESULT: SUCCESS + + echo 'ufs_test.sh finished' + ufs_test.sh finished + + cleanup + ++ awk '{print $2}' + + PID_LOCK=2133541 + + [[ 2133541 == \2\1\3\3\5\4\1 ]] + + rm -rf /scratch2/NAGAPE/epic/User.Name/ufs-weather-model/tests-dev/lock + + [[ false == true ]] + + trap 0 + + exit + +Compilation and model run directories can be accessed in the local repository via the ``run_dir`` softlink, which points to the actual ``FV3_RT`` directory. Each test generates ``atm*.nc`` and ``sfc*.nc`` files at specified forecast hour intervals. + +Users can view progress of compile or model run phases by using the ``tail -f `` command or ``vi``/``vim`` on the ``err`` or ``out`` files in the ``run_dir/compile*`` or ``run_dir/`` directories. \ No newline at end of file diff --git a/doc/UsersGuide/source/doc-snippets/hsd_data.rst b/doc/UsersGuide/source/doc-snippets/hsd_data.rst new file mode 100644 index 0000000000..5ddb2f5227 --- /dev/null +++ b/doc/UsersGuide/source/doc-snippets/hsd_data.rst @@ -0,0 +1,6 @@ +Data for the HSD cases is already staged on Tier-1 platforms at the ``INPUTDATA_ROOT*`` locations listed in `baseline_setup.yaml `_. However, users on any platform can download the data directly from the `HTF data bucket `_ using ``wget``. + +.. code-block:: console + + wget https://noaa-ufs-htf-pds.s3.amazonaws.com/develop-20241115/HSD_INPUT_DATA/HSD_INPUT_DATA.tar.gz + tar xvfz HSD_INPUT_DATA.tar.gz diff --git a/doc/UsersGuide/source/doc-snippets/hsd_machine_config.rst b/doc/UsersGuide/source/doc-snippets/hsd_machine_config.rst new file mode 100644 index 0000000000..02e7534bc8 --- /dev/null +++ b/doc/UsersGuide/source/doc-snippets/hsd_machine_config.rst @@ -0,0 +1,7 @@ +The HSD cases are configured to be run on NOAA Tier-1 platforms, and the configuration files for each platform are located at: + +.. code-block:: console + + ${UFS_WM}/tests-dev/machine_config/machine_.config + +where ```` corresponds to the name of the platform. These configuration files load the necessary Python and Rocoto modules for each platform. Users generally do not need to make any changes to these files. \ No newline at end of file diff --git a/doc/UsersGuide/source/doc-snippets/hsd_notes.rst b/doc/UsersGuide/source/doc-snippets/hsd_notes.rst new file mode 100644 index 0000000000..b279a9891c --- /dev/null +++ b/doc/UsersGuide/source/doc-snippets/hsd_notes.rst @@ -0,0 +1,9 @@ +.. note:: + + Once the tests run successfully with the ``-c`` option (baseline created), users can compare future test results with the newly created baseline using ``-m`` instead of ``-c``. + +For further test management, users may save the test directory location in an environment variable: + +.. code-block:: console + + export UFS_WM_TEST=/path/to/expt_dirs/ufs_test \ No newline at end of file diff --git a/doc/UsersGuide/source/doc-snippets/hsd_run_multiple.rst b/doc/UsersGuide/source/doc-snippets/hsd_run_multiple.rst new file mode 100644 index 0000000000..9c503e2087 --- /dev/null +++ b/doc/UsersGuide/source/doc-snippets/hsd_run_multiple.rst @@ -0,0 +1,11 @@ +To run multiple cases at once, modify ``ufs_test.yaml`` to contain only a subset of tests (e.g., ``2020_CAPE`` and ``baroclinic_wave``) and use the ``-l`` argument: + +.. code-block:: console + + ./ufs_test.sh -a epic -s -c -k -r -l ufs_test.yaml + +Alternatively, users may copy the sections for ``2020_CAPE``/``baroclinic_wave`` tests into a new YAML file (e.g., ``my_test_cases.yaml``) to call via ``ufs_test.sh``: + +.. code-block:: console + + ./ufs_test.sh -a epic -s -c -k -r -l my_test_cases.yaml \ No newline at end of file diff --git a/doc/UsersGuide/source/doc-snippets/hsd_run_tests.rst b/doc/UsersGuide/source/doc-snippets/hsd_run_tests.rst new file mode 100644 index 0000000000..af4610154d --- /dev/null +++ b/doc/UsersGuide/source/doc-snippets/hsd_run_tests.rst @@ -0,0 +1,26 @@ +Launch tests from the ``${UFS_WM}/tests-dev`` directory with the following command: + +.. code-block:: console + + cd ${UFS_WM}/tests-dev + ./ufs_test.sh -a [-s] [-c] -k -r -n " " + +where: + +* ````: Account/project number for batch jobs. +* ````: Name of the test case (e.g., ``2020_CAPE`` or ``baroclinic_wave``). +* ````: Compiler used for the tests (``intel`` or ``gnu``). + +**Command-line Options:** + +* ``-s``: Syncs scripts from ``./ufs-wm/tests`` to ``./ufs-wm/tests-dev`` (only required on the first run) +* ``-c``: Creates a new baseline (necessary until idealized case baselines are staged in the ``UFS_WM_RT`` directory). +* ``-k``: Keeps runtime directories after test completion +* ``l``: Runs test cases listed in a YAML file +* ``-m``: Compares against existing baseline results (baseline must exist) +* ``-n``: Runs a single test case +* ``-r``: Uses Rocoto workflow manager + +.. note:: + + After the initial run of ``ufs_test.sh`` with the ``-s`` option, users do not need to use ``-s`` again unless they subsequently alter files inside of ``tests-dev/test_cases``. If files have changed, the user will need to rerun ``ufs_test.sh`` with ``-s`` or work from a fresh clone so that everything is properly copied via ``-s``. \ No newline at end of file diff --git a/doc/UsersGuide/source/index.rst b/doc/UsersGuide/source/index.rst index 6004f5a5fe..290a9cfcc2 100644 --- a/doc/UsersGuide/source/index.rst +++ b/doc/UsersGuide/source/index.rst @@ -14,7 +14,8 @@ Welcome to the UFS Weather Model User's Guide CodeOverview BuildingAndRunning InputsOutputs - Configurations + RTConfigurations + HSD modules ConfigParameters AutomatedTesting diff --git a/doc/UsersGuide/source/references.bib b/doc/UsersGuide/source/references.bib index 0015b43304..249bd612d3 100644 --- a/doc/UsersGuide/source/references.bib +++ b/doc/UsersGuide/source/references.bib @@ -19,3 +19,24 @@ @article{BengtssonEtAl2020 url={https://agupubs.onlinelibrary.wiley.com/doi/10.1029/2020MS002260}, year={2020}, } +@article{SunEtAl2024, + title={A Case Study Investigating the Low Summertime CAPE Behavior in the Global Forecast System}, + author={X. Sun and D. Heinzeller and L. Bernardet and L. Pan and W. Li and D. Turner and J. Brown.}, + journal={Weather and Forecasting}, + volume={39}, + number={1}, + pages={3-17}, + doi={https://doi.org/10.1175/WAF-D-22-0208.1}, + year={2024}, +} + +@article{Jablonowski&Williamson2006, + title={A baroclinic instability test case for atmospheric model dynamical cores}, + author={C. Jablonowski and D. L. Williamson}, + journal={Quarterly Journal of the Royal Meteorological Society}, + volume={132}, + number={621C}, + pages={2943-2975}, + doi={https://doi.org/10.1256/qj.06.12}, + year={2006}, +} diff --git a/doc/UsersGuide/source/tables/rrfs-rts.csv b/doc/UsersGuide/source/tables/rrfs-rts.csv deleted file mode 100644 index df89f780fe..0000000000 --- a/doc/UsersGuide/source/tables/rrfs-rts.csv +++ /dev/null @@ -1,11 +0,0 @@ -Test |nbsp| Name |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp|,Description,Default Settings,Physics |nbsp| Parameters |nbsp| (see |nbsp| `namelist options `__ for variable definitions),Fcst Length (hours),FIELD_TABLE,Other -`rrfs_v1beta `__,Compare RRFS_v1beta results with previous trunk version,``export_rrfs_v1``, , , ,RESTART_INTERVAL="6 -1"; OUTPUT_FH='0 09 12' -`rrfs_v1beta_debug `__,Compare RRFS_v1beta debug results with previous trunk version,``export_rrfs_v1``,,1, ,OUTPUT_FH="0 1" -`rrfs_v1nssl `__,Compare RRFS_v1nssl results with previous trunk version,``export_rrfs_v1``,CCPP_SUITE=FV3_RRFS_v1nssl :raw-html:`

` IMP_PHYSICS=17 :raw-html:`

` **Set to FALSE:** LTAEROSOL :raw-html:`

` **Set to TRUE:** NSSL_CCN_ON; NSSL_HAIL_ON; NSSL_INVERTCCN :raw-html:`

` **Set to VALUE:** NWAT=7, ,field_table_nssl_tke,RESTART_INTERVAL="6 -1"\; OUTPUT_FH='0 09 12' -`rrfs_v1nssl_nohailnoccn `__,Compare RRFS_v1nssl_nohailnoccn results with previous trunk version,``export_rrfs_v1``,CCPP_SUITE=FV3_RRFS_v1nssl :raw-html:`

` IMP_PHYSICS=17 :raw-html:`

` **Set to FALSE:** NSSL_CCN_ON; NSSL_HAIL_ON; LTAEROSOL :raw-html:`

` **Set to TRUE:** NSSL_INVERTCCN :raw-html:`

` **Set to VALUE:** NWAT=6,,field_table_nssl_nohailnoccn_tke,RESTART_INTERVAL="6 -1"; OUTPUT_FH='0 09 12' -`conus13km_control `__,"HRRR physics on 13km domain, control",``export_hrrr_conus13km``, , , ,RESTART_INTERVAL=1; QUILTING_RESTART=.false. -`conus13km_debug `__,"HRRR physics on 13km domain, debug run",``export_hrrr_conus13km``,,1,,RESTART_INTERVAL=1; QUILTING_RESTART=.false. -`conus13km_restart_mismatch `__,"HRRR physics on 13km domain, restart run",``export_hrrr_conus13km``,,,,FHROT=1;RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000"; RRFS_RESTART=YES; QUILTING_RESTART=.false. -`conus13km_2threads `__,"HRRR physics on 13km domain, two threads",``export_hrrr_conus13km``,,1,,RESTART_INTERVAL=1; atm_omp_num_threads=2; QUILTING_RESTART=.false.; WRTTASK_PER_GROUP=6 -`conus13km_debug_2threads `__,"HRRR physics on 13km domain, debug run with threads",``export_hrrr_conus13km``,,1, ,RESTART_INTERVAL=1; atm_omp_num_threads=2; WRTTASK_PER_GROUP=6; QUILTING_RESTART=.false. -`conus13km_radar_tten_debug `__,"HRRR physics on 13km domain, debug, with radar-derived temperature tendencies",``export_hrrr_conus13km``,,1,,"RESTART_INTERVAL=1; FH_DFI_RADAR='0.0\,0.25\,0.50\,0.75\,1.0'; QUILTING_RESTART=.false." \ No newline at end of file diff --git a/tests-dev/test_cases/utils/README.txt b/tests-dev/test_cases/utils/README.txt new file mode 100644 index 0000000000..b871b37db1 --- /dev/null +++ b/tests-dev/test_cases/utils/README.txt @@ -0,0 +1,18 @@ +2020 CAPE bash plotting script developed by Ratko Vasic. + +Baroclinic wave bash plotting script developed by Ratko Vasic, +adapted from an original grads script & configuration files provided by Xiaqiong Zhou. + + + +To generate plots, copy the relevant .sh script into your UFS-WM test run directory +(i.e., `run_dir/_` from within ufs-weather-model/tests-dev). +That is, to generate plots for a 2020 CAPE test, copy `plot_cape.sh` into your +2020_CAPE_ run directory; to generate plots for the baroclinic wave case, +copy `plot_bcw.sh` into your run directory. + +To run the scripts, invoke from the command line via `./plot_.sh`. + +Users can adjust the experiment name, standard pressure level, and forecast hour in the baroclinic wave script. +For the CAPE script, users can choose between global/regional(CONUS) domain, as well as which +analysis file resolution to generate plots for. diff --git a/tests-dev/test_cases/utils/plot_bcw.sh b/tests-dev/test_cases/utils/plot_bcw.sh new file mode 100755 index 0000000000..c871c893a7 --- /dev/null +++ b/tests-dev/test_cases/utils/plot_bcw.sh @@ -0,0 +1,91 @@ +#!/bin/bash + +############################################################### +# User input: +############################################################### + +exp_name=C192-BCW +level=850 +# set forecast hour at which to generate plots +fcst_time=150 + +############################################################### +# initialize module +. "${LMOD_ROOT}"/lmod/init/bash + +# update path with current directory +export PATH=.:${PATH} + +# if grads-to-control app is not present, get it from web: +[[ -f g2ctl ]] || wget -q https://ftp.cpc.ncep.noaa.gov/wd51we/g2ctl/g2ctl +chmod 755 g2ctl + +# get colorbar scripts from github +rm -rf gscript +git clone https://github.com/kodamail/gscript.git +cp gscript/color.gs . +cp gscript/xcbar.gs . +rm -rf gscript + +# load modules grads and wgrib2 +HOSTNAME=$(hostname) +if [[ ${HOSTNAME} == gaea6[1-9] ]]; then module load Core/24.11 ; fi +module load grads wgrib2 + +# check if model output file exists: +nfiles=$(find GFSPRS.GrbF* | wc -l || true) +if ls GFSPRS.GrbF* >/dev/null 2>&1 +then + echo Using files: GFSPRS.GrbF\* +else + echo "No model output (GFSPRS.GrbF*) ... exiting" + exit +fi +# check if plotting fcst time is <= existing forecast time +last_fcst=$(((nfiles-1)*6)) + if (( fcst_time > last_fcst )); then + echo "Plot time ""${fcst_time}" "is larger than existing fcst time ""${last_fcst}" + echo "Exiting... " + exit +fi + +# Create grads control and index files +g2ctl -0 GFSPRS.GrbF%f2 GFSPRS.idx > GFSPRS.ctl +sed -i 's/tdef 1/tdef '"${nfiles}"'/g' GFSPRS.ctl +sed -i 's/ 1mo/ 6hr/g' GFSPRS.ctl +gribmap -i GFSPRS.ctl + +############################################################### +# Plot baroclinic case +############################################################### +cat << EOF > bcw.gs +exp="${exp_name}" +var="hcurl(ugrdprs,vgrdprs)" +lev=${level} +tt=${fcst_time} +t=tt/6+1 +'reinit' +'open GFSPRS.ctl' +'set t 't +'set xlopts 1 6 0.16' +'set ylopts 1 6 0.16' +'set gxout shaded' +'set display color white' +'c' +'set grads off' +'set lat 0 90' +'set lon 90 270' +'color.gs -5 5 1 -kind blue->white->brown' +'set lev ' lev +'d hcurl(ugrdprs,vgrdprs)*1.0e5' +'set gxout contour' +'set cint 3' +'d vgrdprs' +'xcbar.gs 1 10 0.5 0.8' +'draw title 'exp' vort(1.e5) T='tt'hr' +'printim 'exp'_'tt'.png x1200 y1000 white ' +'c' +'quit' +EOF +grads -blc "run bcw.gs" > /dev/null 2>&1 +############################################################### diff --git a/tests-dev/test_cases/utils/plot_cape.sh b/tests-dev/test_cases/utils/plot_cape.sh new file mode 100755 index 0000000000..5c47ec3814 --- /dev/null +++ b/tests-dev/test_cases/utils/plot_cape.sh @@ -0,0 +1,265 @@ +#!/bin/bash + +############################################################### +DATE=2020072400 +DOMAIN=CONUS # CONUS or global +ANL_RES=1p00 # Analysis resolution (1p00 - 1deg, 0p50 - 0.5 deg, 0p25 - .25 deg) +############################################################### +if [[ "${ANL_RES}" = 1p00 ]]; then + res_txt="1x1 deg" +elif [[ "${ANL_RES}" = 0p50 ]]; then + res_txt="0.5x0.5 deg" +elif [[ "${ANL_RES}" = 0p25 ]]; then + res_txt="0.25x0.25 deg" +else + echo "Wrong analysis resolution choice, exiting" + exit +fi +############################################################### +YY=$(echo "${DATE}" | cut -c1-4) +MM=$(echo "${DATE}" | cut -c5-6) +DD=$(echo "${DATE}" | cut -c7-8) +HH=$(echo "${DATE}" | cut -c9-10) +echo " YYYY MM DD HH" +echo "Date: " "${YY}" "${MM}" "${DD}" "${HH}" +############################################################### +# define borders depending on DOMAIN +if [[ "${DOMAIN}" = CONUS ]]; then + lat1=20 + lat2=55 + lon1=-130 + lon2=-65 +elif [[ "${DOMAIN}" = global ]]; then + lat1=-90 + lat2=90 + lon1=0 + lon2=360 +else + echo "Wrong DOMAIN, exiting" + exit +fi +echo +############################################################### +# initialize module +. "${LMOD_ROOT}"/lmod/init/bash + +# update path with current directory +export PATH=.:${PATH} + +# if grads-to-control app is not present, get it from web: +[[ -f g2ctl ]] || wget -q https://ftp.cpc.ncep.noaa.gov/wd51we/g2ctl/g2ctl +chmod 755 g2ctl + +# if color bar script is not present, get it from web: +[[ -f cbar.gs ]] || wget -q http://cola.gmu.edu/grads/scripts/cbar.gs + +# load modules grads and wgrib2 +HOSTNAME=$(hostname) +if [[ ${HOSTNAME} == gaea6[1-9] ]]; then module load Core/24.11 ; fi +module load grads wgrib2 + +# check if model output file exxists: +if [[ ! -f GFSPRS.GrbF24 ]] ; then echo "No model output (GFSPRS.GrbF24)" ; exit ; fi +echo Using model file: GFSPRS.GrbF24 + +# detect machine we are on +case $(hostname -f) in + gaea5*) HSD_path=/gpfs/f5/epic/world-shared/HSD_INPUT_DATA ;; ## gaea5 + gaea6*) HSD_path=/gpfs/f6/bil-fire8/world-shared/HSD_INPUT_DATA ;; ## gaea6 + hfe*) HSD_path=/scratch1/NCEPDEV/nems/role.epic/HSD_INPUT_DATA ;; ## hera + hecflow*) HSD_path=/scratch1/NCEPDEV/nems/role.epic/HSD_INPUT_DATA ;; ## hera + fe*) HSD_path=/mnt/lfs5/HFIP/hfv3gfs/role.epic/HSD_INPUT_DATA ;; ## jet + tfe*) HSD_path=/mnt/lfs5/HFIP/hfv3gfs/role.epic/HSD_INPUT_DATA ;; ## tjet + [Oo]rion*) HSD_path=/work/noaa/epic/role-epic/contrib/HSD_INPUT_DATA ;; ## orion + [Hh]ercules*) HSD_path=/work/noaa/epic/role-epic/contrib/HSD_INPUT_DATA ;; ## hercules + derecho*) HSD_path=/glade/work/epicufsrt/contrib/HSD_INPUT_DATA ;; ## derecho + *) echo "Unknown or unsupported machine " ; exit ;; ## Unknown platform +esac + +# check if analysis file exists: +# analysis files retrieved from hpss: +# htar -xvf \ +# /NCEPPROD/hpssprod/runhistory/rh2020/202007/20200724/com_gfs_prod_gfs.20200724_00.gfs_pgrb2.tar \ +# ./gfs.20200724/00/gfs.t00z.pgrb2.0p25.anl +if [[ ! -f gfs.t00z.pgrb2."${ANL_RES}".anl ]] ; then + echo "No analysis file, copy file from ${HSD_path} directory:" + cp "${HSD_path}"/"${DATE}"/gfs.t00z.pgrb2."${ANL_RES}".anl . + [[ -f gfs.t00z.pgrb2."${ANL_RES}".anl ]] || exit +fi +echo Using analysis file: gfs.t00z.pgrb2."${ANL_RES}".anl + +# Create grads control and index files +g2ctl gfs.t00z.pgrb2."${ANL_RES}".anl gfs.t00z.pgrb2."${ANL_RES}".idx > gfs.t00z.pgrb2."${ANL_RES}".ctl +gribmap -i gfs.t00z.pgrb2."${ANL_RES}".ctl > /dev/null 2>&1 +g2ctl GFSPRS.GrbF24 GFSPRS.idx > GFSPRS.ctl +gribmap -i GFSPRS.ctl > /dev/null 2>&1 + +############################################################### +# Plot CAPE analysis +############################################################### +echo "Plot CAPE analysis " "${DOMAIN}" +if [[ -f CAPE-analysis.png ]] ; then rm CAPE-analysis.png ; fi +cat << EOF > plot.gs +'reinit' +'open gfs.t00z.pgrb2.${ANL_RES}.ctl' +'set gxout shaded' +'set display color white' +'c' +'set grads off' +'set lat ${lat1} ${lat2}' +'set lon ${lon1} ${lon2}' +'set clevs 0 500 1000 1500 2000 2500 3000 3500' +'d CAPEsfc' +'run cbar.gs' +'draw title CAPE Analysis ${res_txt} valid ${YY}/${MM}/${DD}/${HH}Z' +'printim CAPE-analysis_${DOMAIN}.png x1200 y1000 ' +'c' +'quit' +EOF +grads -blc "run plot.gs" > /dev/null 2>&1 +############################################################### +# Plot CAPE model output +############################################################### +echo "Plot CAPE model output " "${DOMAIN}" +if [[ -f CAPE-model.png ]] ; then rm CAPE-model.png ; fi +if [[ -f plot.gs ]] ; then rm plot.gs ; fi +cat << EOF > plot.gs +'reinit' +'open GFSPRS.ctl' +'set gxout shaded' +'set display color white' +'c' +'set grads off' +'set lat ${lat1} ${lat2}' +'set lon ${lon1} ${lon2}' +'set clevs 0 500 1000 1500 2000 2500 3000 3500' +'d CAPEsfc' +'run cbar.gs' +'draw title CAPE Model fcst (+24h) valid ${YY}/${MM}/${DD}/${HH}Z' +'printim CAPE-model_${DOMAIN}.png x1200 y1000 ' +'c' +'quit' +EOF +grads -blc "run plot.gs" > /dev/null 2>&1 +############################################################### +# Plot MSL pressure analysis +############################################################### +echo "Plot PRSMSL analysis " "${DOMAIN}" +if [[ -f MSL-analysis.png ]] ; then rm MSL-analysis.png ; fi +cat << EOF > plot.gs +'reinit' +'open gfs.t00z.pgrb2.${ANL_RES}.ctl' +'set gxout shaded' +'set display color white' +'c' +'set grads off' +'set lat ${lat1} ${lat2}' +'set lon ${lon1} ${lon2}' +'set clevs 1000 1002 1004 1006 1008 1010 1012 1014 1016 1018 1020 1022' +'d PRMSLmsl/100' +'run cbar.gs' +'draw title PRSMSL [mb] Analysis ${res_txt} valid ${YY}/${MM}/${DD}/${HH}Z' + 'printim MSL-analysis_${DOMAIN}.png x1200 y1000 ' +'c' +'quit' +EOF +grads -blc "run plot.gs" > /dev/null 2>&1 +############################################################### +# Plot MSL pressure model output +############################################################### +echo "Plot PRSMSL model output " "${DOMAIN}" +if [[ -f MSL-model.png ]] ; then rm MSL-model.png ; fi +cat << EOF > plot.gs +'reinit' +'open GFSPRS.ctl' +'set gxout shaded' +'set display color white' +'c' +'set grads off' +'set lat ${lat1} ${lat2}' +'set lon ${lon1} ${lon2}' +'set clevs 1000 1002 1004 1006 1008 1010 1012 1014 1016 1018 1020 1022' +'d PRMSLmsl/100' +'run cbar.gs' +'draw title PRSMSL [mb] Model fcst (+24) valid ${YY}/${MM}/${DD}/${HH}Z' +'printim MSL-model_${DOMAIN}.png x1200 y1000 ' +'c' +'quit' +EOF +grads -blc "run plot.gs" > /dev/null 2>&1 +############################################################### +# Plot Vorticity analysis +############################################################### +echo "Plot vorticity analysis " "${DOMAIN}" +if [[ -f VORT-analysis.png ]] ; then rm VORT-analysis.png ; fi +cat << EOF > plot.gs +'reinit' +'open gfs.t00z.pgrb2.${ANL_RES}.ctl' +'set gxout shaded' +'set display color white' +'c' +'set grads off' +'set lev 500' +'set lat ${lat1} ${lat2}' +'set lon ${lon1} ${lon2}' +'set rgb 20 255 255 255' +'set rgb 21 255 250 170' +'set rgb 22 255 232 100' +'set rgb 23 255 192 0' +'set rgb 24 255 160 0' +'set rgb 25 255 96 0' +'set rgb 26 255 50 0' +'set rgb 27 225 20 0' +'set rgb 28 192 0 0' +'set ccols 20 21 22 23 24 25 26 27 28' + 'set clevs 2 4 6 8 10 15 20 25' +'define h=hcurl(ugrdprs,vgrdprs)*1.0e5' +'d sqrt(h*h)' +'run cbar.gs' +'set gxout contour' +'d hgtprs' +'draw title Analysis 500mb Height and Abs Vorticity ${res_txt} \ Valid ${YY}/${MM}/${DD}/${HH}Z' +'printim VORT-analysis_${DOMAIN}.png x1200 y1000 ' +'c' +'quit' +EOF +grads -blc "run plot.gs" > /dev/null 2>&1 +############################################################### +# Plot Vorticity model output +############################################################### +echo "Plot vorticity model output " "${DOMAIN}" +if [[ -f VORT-model.png ]] ; then rm VORT-model.png ; fi +cat << EOF > plot.gs +'reinit' +'open GFSPRS.ctl' +'set gxout shaded' +'set display color white' +'c' +'set grads off' +'set lev 500' +'set lat ${lat1} ${lat2}' +'set lon ${lon1} ${lon2}' +'set rgb 20 255 255 255' +'set rgb 21 255 250 170' +'set rgb 22 255 232 100' +'set rgb 23 255 192 0' +'set rgb 24 255 160 0' +'set rgb 25 255 96 0' +'set rgb 26 255 50 0' +'set rgb 27 225 20 0' +'set rgb 28 192 0 0' +'set ccols 20 21 22 23 24 25 26 27 28' + 'set clevs 2 4 6 8 10 15 20 25' +'define h=hcurl(ugrdprs,vgrdprs)*1.0e5' +'d sqrt(h*h)' +'run cbar.gs' +'set gxout contour' +'d hgtprs' +'draw title Model fcst (+24) 500mb Height and Abs Vorticity \ Valid ${YY}/${MM}/${DD}/${HH}Z' +'printim VORT-model_${DOMAIN}.png x1200 y1000 ' +'c' +'quit' +EOF +grads -blc "run plot.gs" > /dev/null 2>&1 +############################################################### +rm -f plot.gs diff --git a/tests/bl_date.conf b/tests/bl_date.conf index bdff6bd00e..ac2bca3b61 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20241112 +export BL_DATE=20241119 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 6e121f6df0..071cd7e39e 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -df9325ac52a9219e80bc6d448ec0d297b6c8a591 +c0b6a8cda620186d9325db673c3432aa64e35713 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,13 +11,13 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 2429d661d1758c22935558df75f6b66bd710ac11 FV3 (remotes/origin/feature/lnd_iau) + 4fd9f30c715adf2be23d9cf5c51ec2a3127765d8 FV3 (remotes/origin/upp_oct) e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 4343656a098516517257c0913689f70a81579e74 FV3/ccpp/physics (EP4-1045-g4343656a) + cfa18610e546ddb633c117afd394bf4aaaeec4dc FV3/ccpp/physics (EP4-1046-gcfa18610) 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 + ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) +-179cae1dd84401cf25d250bd9102e66560a9d328 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) @@ -26,7 +26,7 @@ Submodule hashes used in testing: 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) - 2363beb39016660a157aac49d073f4e04c68c34d NOAHMP-interface/noahmp (remotes/origin/feature/lnd_iau) + 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,304 +38,305 @@ 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-20241112 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_128749 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20241119 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2764378 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [15:11, 14:00] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:05, 11:56](3189 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:11, 18:07] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [17:02, 14:22](1896 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:59, 14:27](1939 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:00, 06:40](1060 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:54, 15:10](1871 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:11, 18:09] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:44, 13:19](1895 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 07:55] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [30:13, 27:44](1934 MB) - -PASS -- COMPILE 's2swa_intel' [15:11, 13:57] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [18:38, 15:37](3213 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:58, 15:22](3214 MB) -PASS -- TEST 'cpld_restart_p8_intel' [12:22, 08:56](3141 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [18:37, 16:06](3235 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [11:24, 08:47](3160 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [17:20, 13:27](3460 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [18:40, 15:29](3208 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [17:04, 12:39](3157 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:46, 15:26](3215 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:58, 09:50](3489 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:58, 07:33](3599 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [26:49, 19:34](4254 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [26:30, 12:01](4357 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:50, 09:14](3194 MB) - -PASS -- COMPILE 's2sw_intel' [15:11, 13:15] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:34, 07:19](1919 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [17:13, 12:16](1972 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:11, 08:24] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [24:03, 22:04](3262 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:11, 08:51] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:29, 08:59](1944 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [14:11, 12:24] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:02, 05:09](1964 MB) - -PASS -- COMPILE 's2s_intel' [14:11, 12:27] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [07:41, 05:33](2871 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:42, 01:42](2881 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:37, 00:59](2292 MB) - -PASS -- COMPILE 's2swa_faster_intel' [15:11, 14:08] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [18:25, 15:18](3215 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:16, 19:15] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:01, 24:58](1923 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [19:03, 12:31](1099 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [34:54, 28:50](1893 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:11, 08:06] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:57, 30:48](1946 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:11, 11:36] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:26, 03:43](652 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:49, 03:15](1551 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:53, 03:16](1566 MB) -PASS -- TEST 'control_latlon_intel' [05:45, 03:15](1553 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:55, 03:17](1560 MB) -PASS -- TEST 'control_c48_intel' [12:54, 09:54](1572 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:27, 05:43](693 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [14:48, 11:21](1575 MB) -PASS -- TEST 'control_c192_intel' [14:40, 11:08](1689 MB) -PASS -- TEST 'control_c384_intel' [25:58, 23:42](1967 MB) -PASS -- TEST 'control_c384gdas_intel' [17:49, 14:36](1173 MB) -PASS -- TEST 'control_stochy_intel' [03:22, 01:48](612 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:21, 01:00](413 MB) -PASS -- TEST 'control_lndp_intel' [03:20, 01:44](608 MB) -PASS -- TEST 'control_iovr4_intel' [04:23, 02:25](605 MB) -PASS -- TEST 'control_iovr5_intel' [04:21, 02:29](607 MB) -PASS -- TEST 'control_p8_intel' [05:48, 03:37](1840 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:12, 03:16](1846 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:55, 03:38](1847 MB) -PASS -- TEST 'control_restart_p8_intel' [05:10, 02:22](1000 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:54, 03:38](1841 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:52, 02:21](1002 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:57, 03:53](1833 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:46, 03:13](1926 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:39, 06:09](1844 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:45, 03:57](1895 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:29, 03:11](1857 MB) -PASS -- TEST 'merra2_thompson_intel' [05:53, 03:33](1843 MB) -PASS -- TEST 'regional_control_intel' [06:28, 04:38](842 MB) -PASS -- TEST 'regional_restart_intel' [10:29, 02:38](842 MB) -PASS -- TEST 'regional_decomp_intel' [07:25, 04:54](851 MB) -PASS -- TEST 'regional_2threads_intel' [05:29, 02:59](973 MB) -PASS -- TEST 'regional_noquilt_intel' [06:47, 04:38](1175 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:43, 04:43](844 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:33, 04:57](845 MB) -PASS -- TEST 'regional_wofs_intel' [10:32, 07:15](1571 MB) - -PASS -- COMPILE 'rrfs_intel' [13:11, 11:20] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:42, 07:38](986 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:44, 03:59](1150 MB) -PASS -- TEST 'rap_decomp_intel' [11:39, 07:16](992 MB) -PASS -- TEST 'rap_2threads_intel' [11:29, 06:21](1072 MB) -PASS -- TEST 'rap_restart_intel' [10:28, 03:29](864 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:47, 07:07](987 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:33, 07:01](989 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:42, 04:59](869 MB) -PASS -- TEST 'hrrr_control_intel' [13:00, 03:53](983 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [11:41, 03:55](981 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [11:40, 03:08](1064 MB) -PASS -- TEST 'hrrr_control_restart_intel' [06:24, 01:56](817 MB) -PASS -- TEST 'rrfs_v1beta_intel' [15:38, 07:16](981 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [17:23, 08:55](1943 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [16:22, 08:36](1932 MB) - -PASS -- COMPILE 'csawmg_intel' [11:11, 09:41] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [08:25, 06:35](946 MB) -PASS -- TEST 'control_ras_intel' [05:46, 03:21](648 MB) - -PASS -- COMPILE 'wam_intel' [12:11, 10:19] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [23:00, 12:04](1640 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:27] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [12:47, 03:10](1845 MB) -PASS -- TEST 'regional_control_faster_intel' [11:30, 04:38](837 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [12:15, 10:10] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [12:37, 02:43](1582 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [11:39, 02:40](1582 MB) -PASS -- TEST 'control_stochy_debug_intel' [11:20, 03:08](785 MB) -PASS -- TEST 'control_lndp_debug_intel' [11:22, 02:50](784 MB) -PASS -- TEST 'control_csawmg_debug_intel' [12:32, 04:21](1083 MB) -PASS -- TEST 'control_ras_debug_intel' [11:22, 02:50](791 MB) -PASS -- TEST 'control_diag_debug_intel' [11:44, 02:51](1636 MB) -PASS -- TEST 'control_debug_p8_intel' [09:32, 02:51](1869 MB) -PASS -- TEST 'regional_debug_intel' [23:31, 16:34](888 MB) -PASS -- TEST 'rap_control_debug_intel' [12:23, 05:02](1164 MB) -PASS -- TEST 'hrrr_control_debug_intel' [10:21, 04:57](1158 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [10:21, 05:03](1159 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [10:22, 04:58](1164 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:20, 05:04](1164 MB) -PASS -- TEST 'rap_diag_debug_intel' [11:28, 05:13](1249 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [10:23, 05:05](1171 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:23, 05:09](1164 MB) -PASS -- TEST 'rap_lndp_debug_intel' [10:22, 05:06](1167 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [09:20, 05:09](1163 MB) -PASS -- TEST 'rap_noah_debug_intel' [09:19, 04:53](1162 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:23, 04:58](1166 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:23, 08:08](1160 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [09:19, 04:57](1158 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [11:21, 05:53](1163 MB) -PASS -- TEST 'rap_flake_debug_intel' [10:21, 05:01](1165 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:37, 08:33](1168 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:11, 07:31] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:52, 13:14](1668 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:15, 10:25] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:52, 03:49](1024 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:34, 05:53](867 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:34, 03:19](864 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:57, 05:12](916 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:29, 02:44](916 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:30, 03:30](862 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [40:37, 04:08](773 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [35:26, 01:44](745 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:11, 10:58] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:55, 01:55](1071 MB) -PASS -- TEST 'conus13km_2threads_intel' [36:43, 01:00](1063 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [36:43, 01:16](948 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 10:07] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [10:03, 04:16](895 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:11, 07:58] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [09:00, 05:06](1044 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:59, 04:53](1035 MB) -PASS -- TEST 'conus13km_debug_intel' [16:47, 13:37](1125 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:46, 13:38](799 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [14:43, 07:56](1113 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:42, 13:17](1192 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:11, 08:07] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:20, 05:02](1064 MB) - -PASS -- COMPILE 'hafsw_intel' [16:13, 14:45] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [24:04, 05:01](712 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [24:25, 04:20](1065 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [28:16, 07:32](746 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [40:07, 11:24](770 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [46:19, 12:37](797 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [32:56, 05:19](470 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [44:46, 06:39](499 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [46:45, 02:55](382 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [55:11, 07:29](483 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [50:46, 03:43](507 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [50:54, 03:32](508 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [51:57, 04:35](585 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [49:45, 01:33](424 MB) -PASS -- TEST 'gnv1_nested_intel' [44:27, 05:30](1689 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:11, 08:12] ( 1467 warnings 1469 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [01:54, 12:54](612 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [15:14, 14:04] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [57:59, 07:31](631 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [58:06, 07:44](811 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:40, 13:18] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [55:23, 06:03](807 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:13, 11:41] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [55:05, 06:11](734 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [52:07, 06:17](719 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [34:08, 20:05](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:13, 11:39] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [13:20, 02:40](764 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [31:24, 01:37](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [45:20, 02:28](643 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [44:23, 02:29](640 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [40:23, 02:30](642 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [36:22, 02:37](751 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [35:21, 02:37](752 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [31:21, 02:28](642 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [33:50, 06:04](692 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [28:47, 06:10](671 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [21:17, 02:36](763 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:49, 04:40](2031 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [24:20, 04:42](2030 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:10, 06:29] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [24:20, 05:30](749 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:13, 10:07] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [17:22, 02:37](752 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:38] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [14:50, 01:40](323 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [16:31, 01:14](460 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:29, 01:28](461 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [04:14, 02:08] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [13:36, 00:36](449 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:37, 00:18](254 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:11, 12:41] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [19:49, 03:54](1907 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:13, 12:48] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [21:44, 08:17](1901 MB) - -PASS -- COMPILE 'atml_intel' [14:11, 13:03] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [19:52, 07:27](1868 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [17:47, 07:44](1878 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:28, 04:08](1015 MB) - -PASS -- COMPILE 'atml_debug_intel' [10:13, 08:13] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [14:47, 06:04](1911 MB) - -PASS -- COMPILE 'atmw_intel' [13:10, 11:41] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [10:45, 02:09](1877 MB) - -PASS -- COMPILE 'atmaero_intel' [13:11, 11:31] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [12:46, 05:38](3099 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [11:48, 06:08](2989 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [12:46, 06:30](2993 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [10:10, 08:20] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [24:15, 18:12](4432 MB) - -PASS -- COMPILE 'atm_fbh_intel' [12:11, 10:22] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:32, 09:31](795 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [21:12, 19:22] -PASS -- TEST 'cpld_control_gfsv17_intelllvm' [18:57, 13:36](1901 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [11:11, 09:54] -PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [33:55, 28:02](1927 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [20:13, 18:18] -PASS -- TEST 'cpld_control_sfs_intelllvm' [20:38, 14:12](1893 MB) - -PASS -- COMPILE 's2swa_intelllvm' [15:12, 14:06] -PASS -- TEST 'cpld_control_p8_intelllvm' [23:00, 15:50](3213 MB) +PASS -- COMPILE 's2swa_32bit_intel' [18:12, 17:03] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:35, 13:45](3188 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:15, 20:36] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:30, 14:52](1898 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:47, 14:58](1937 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:42, 07:12](1067 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:36, 15:45](1873 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:15, 22:09] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:28, 14:13](1901 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:11, 12:03] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [31:43, 28:09](1928 MB) + +PASS -- COMPILE 's2swa_intel' [19:11, 17:58] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [19:48, 16:58](3213 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:16, 16:59](3210 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:46, 09:07](3137 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [21:01, 17:26](3236 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [15:01, 10:16](3159 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [17:57, 14:24](3464 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [21:01, 16:55](3210 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [17:59, 14:29](3154 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [21:12, 17:14](3216 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:14, 12:00](3489 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:45, 07:28](3595 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [30:05, 19:46](4254 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:25, 12:47](4359 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [14:53, 10:44](3186 MB) + +PASS -- COMPILE 's2sw_intel' [18:12, 16:15] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:22, 07:58](1910 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:24, 12:52](1965 MB) + +PASS -- COMPILE 's2swa_debug_intel' [14:11, 12:19] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [26:30, 23:18](3272 MB) + +PASS -- COMPILE 's2sw_debug_intel' [13:11, 12:04] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:11, 09:20](1937 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:12, 15:28] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:50, 05:57](1972 MB) + +PASS -- COMPILE 's2s_intel' [17:12, 15:27] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:14, 05:32](2869 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:23, 01:46](2883 MB) +PASS -- TEST 'cpld_restart_c48_intel' [06:57, 01:04](2293 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:13, 17:33] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [21:32, 15:59](3214 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:15, 20:50] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [29:22, 25:18](1914 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [29:13, 12:41](1099 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [46:14, 29:36](1892 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:11, 10:32] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:18, 30:49](1945 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:12, 13:38] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [09:18, 04:06](655 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [07:14, 03:53](1548 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:55, 03:37](1557 MB) +PASS -- TEST 'control_latlon_intel' [06:38, 03:37](1557 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:38, 03:33](1552 MB) +PASS -- TEST 'control_c48_intel' [11:54, 09:58](1570 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:44, 05:44](694 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [14:59, 12:00](1571 MB) +PASS -- TEST 'control_c192_intel' [14:02, 11:29](1684 MB) +PASS -- TEST 'control_c384_intel' [27:15, 24:27](1966 MB) +PASS -- TEST 'control_c384gdas_intel' [18:10, 14:59](1165 MB) +PASS -- TEST 'control_stochy_intel' [03:36, 01:50](612 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:45, 01:27](415 MB) +PASS -- TEST 'control_lndp_intel' [03:32, 01:48](608 MB) +PASS -- TEST 'control_iovr4_intel' [04:28, 02:45](609 MB) +PASS -- TEST 'control_iovr5_intel' [04:27, 02:53](608 MB) +PASS -- TEST 'control_p8_intel' [07:07, 04:27](1842 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:23, 04:11](1842 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:03, 04:30](1847 MB) +PASS -- TEST 'control_restart_p8_intel' [05:34, 02:12](996 MB) +PASS -- TEST 'control_noqr_p8_intel' [08:41, 04:18](1842 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:04, 02:30](1006 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:17, 04:14](1842 MB) +PASS -- TEST 'control_2threads_p8_intel' [08:26, 03:44](1922 MB) +PASS -- TEST 'control_p8_lndp_intel' [10:21, 06:23](1847 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [10:43, 04:50](1898 MB) +PASS -- TEST 'control_p8_mynn_intel' [08:21, 04:05](1850 MB) +PASS -- TEST 'merra2_thompson_intel' [09:43, 04:13](1843 MB) +PASS -- TEST 'regional_control_intel' [09:25, 04:57](846 MB) +PASS -- TEST 'regional_restart_intel' [07:04, 03:01](847 MB) +PASS -- TEST 'regional_decomp_intel' [09:07, 05:07](854 MB) +PASS -- TEST 'regional_2threads_intel' [06:33, 03:20](989 MB) +PASS -- TEST 'regional_noquilt_intel' [08:14, 04:43](1169 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:03, 04:43](841 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:42, 04:41](835 MB) +PASS -- TEST 'regional_wofs_intel' [08:37, 06:24](1574 MB) + +PASS -- COMPILE 'rrfs_intel' [14:11, 13:01] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:07, 07:51](993 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:03, 04:44](1150 MB) +PASS -- TEST 'rap_decomp_intel' [09:56, 07:22](992 MB) +PASS -- TEST 'rap_2threads_intel' [09:01, 06:20](1070 MB) +PASS -- TEST 'rap_restart_intel' [07:06, 04:07](870 MB) +PASS -- TEST 'rap_sfcdiff_intel' [13:12, 07:52](985 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:01, 07:06](986 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:08, 05:23](869 MB) +PASS -- TEST 'hrrr_control_intel' [06:01, 04:04](983 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:01, 03:58](982 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:02, 03:11](1064 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:47, 02:02](814 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:56, 07:23](984 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:40, 08:59](1943 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:40, 08:34](1934 MB) + +PASS -- COMPILE 'csawmg_intel' [14:12, 12:37] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:42, 06:57](948 MB) +PASS -- TEST 'control_ras_intel' [05:27, 03:25](643 MB) + +PASS -- COMPILE 'wam_intel' [15:16, 13:16] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:43, 12:30](1639 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:13, 11:36] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:33, 03:45](1841 MB) +PASS -- TEST 'regional_control_faster_intel' [08:16, 04:38](848 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [15:11, 13:42] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:10, 03:09](1581 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:15, 02:49](1581 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:47, 03:10](784 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:47, 02:49](779 MB) +PASS -- TEST 'control_csawmg_debug_intel' [10:10, 04:34](1088 MB) +PASS -- TEST 'control_ras_debug_intel' [05:46, 03:22](791 MB) +PASS -- TEST 'control_diag_debug_intel' [09:36, 03:19](1642 MB) +PASS -- TEST 'control_debug_p8_intel' [10:04, 03:16](1875 MB) +PASS -- TEST 'regional_debug_intel' [27:37, 16:28](887 MB) +PASS -- TEST 'rap_control_debug_intel' [10:37, 05:11](1163 MB) +PASS -- TEST 'hrrr_control_debug_intel' [10:36, 05:29](1159 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [13:29, 05:51](1160 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [13:35, 05:39](1163 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [14:32, 05:32](1164 MB) +PASS -- TEST 'rap_diag_debug_intel' [15:38, 05:16](1248 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [14:26, 05:13](1163 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [14:30, 05:28](1164 MB) +PASS -- TEST 'rap_lndp_debug_intel' [15:32, 05:03](1165 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [15:26, 05:09](1164 MB) +PASS -- TEST 'rap_noah_debug_intel' [13:24, 05:03](1159 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [14:24, 05:22](1162 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [18:23, 08:18](1163 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [15:25, 05:14](1159 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [14:25, 05:31](1165 MB) +PASS -- TEST 'rap_flake_debug_intel' [16:31, 05:14](1164 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [20:45, 08:48](1166 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:20, 08:33] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [26:01, 13:47](1671 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 11:06] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [17:02, 04:18](1024 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [17:45, 06:23](863 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [15:47, 03:48](862 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [19:58, 05:20](925 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [16:41, 02:51](911 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [17:46, 03:29](859 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [18:39, 04:27](771 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [17:24, 01:54](744 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:12, 12:53] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [17:14, 02:27](1071 MB) +PASS -- TEST 'conus13km_2threads_intel' [13:55, 01:06](1063 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [13:42, 01:27](947 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:41] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [20:46, 05:02](893 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:15, 09:17] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [19:30, 05:24](1040 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [25:27, 05:33](1042 MB) +PASS -- TEST 'conus13km_debug_intel' [35:07, 13:36](1123 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [35:05, 13:46](795 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [28:54, 08:11](1113 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [32:52, 13:55](1192 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:15, 08:53] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [23:27, 05:14](1064 MB) + +PASS -- COMPILE 'hafsw_intel' [17:14, 15:44] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [24:13, 05:23](705 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [24:33, 04:26](1068 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [28:36, 07:50](744 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [32:15, 11:44](771 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [33:29, 13:08](798 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [25:07, 05:27](472 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [25:20, 06:44](500 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [20:58, 02:51](394 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [25:30, 07:41](486 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [19:51, 03:52](506 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [19:05, 03:36](505 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [19:00, 04:36](586 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [14:42, 01:33](426 MB) +PASS -- TEST 'gnv1_nested_intel' [17:46, 05:26](1698 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [11:18, 09:37] ( 1467 warnings 1469 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [22:59, 13:15](613 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [15:11, 13:53] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:19, 07:37](631 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:23, 07:39](811 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:16, 15:42] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [16:01, 05:54](808 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:19, 13:19] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:15, 06:32](736 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:25, 06:29](720 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:11, 20:08](894 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [12:11, 10:43] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:23, 02:39](763 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:41, 01:36](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:24, 02:27](642 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:25, 02:30](640 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:24, 02:31](642 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:22, 02:35](752 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:23, 02:38](762 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:21, 02:26](643 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:05, 06:20](693 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:04, 06:13](676 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:20, 02:38](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:27, 04:41](2031 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:26, 04:42](2031 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:22, 07:13] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:23, 05:36](747 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:17, 12:04] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:22, 02:34](763 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:15, 02:34] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:43, 03:01](315 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:35, 01:29](460 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:42, 01:07](460 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [04:14, 02:31] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [03:49, 00:47](444 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [03:44, 00:26](254 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:11, 14:00] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:11, 04:41](1907 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:11, 15:05] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [13:08, 09:27](1901 MB) + +PASS -- COMPILE 'atml_intel' [16:11, 14:58] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:15, 08:22](1880 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [11:14, 08:15](1876 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:34, 04:01](1024 MB) + +PASS -- COMPILE 'atml_debug_intel' [12:12, 10:20] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:02, 06:48](1900 MB) + +PASS -- COMPILE 'atmw_intel' [16:11, 14:53] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:53, 02:51](1877 MB) + +PASS -- COMPILE 'atmaero_intel' [15:12, 13:32] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:00, 06:41](3099 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:07, 07:07](2984 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:55, 07:32](2991 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [12:14, 10:13] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [25:48, 18:14](4441 MB) + +PASS -- COMPILE 'atm_fbh_intel' [13:18, 12:00] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:40, 09:36](795 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [22:18, 20:17] +PASS -- TEST 'cpld_control_gfsv17_intelllvm' [17:25, 14:16](1899 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [12:11, 10:32] +PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [31:30, 27:19](1937 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [22:12, 20:16] +PASS -- TEST 'cpld_control_sfs_intelllvm' [16:58, 14:14](1897 MB) + +PASS -- COMPILE 's2swa_intelllvm' [18:11, 16:23] +PASS -- TEST 'cpld_control_p8_intelllvm' [20:31, 16:13](3212 MB) SYNOPSIS: -Starting Date/Time: 20241116 17:59:08 -Ending Date/Time: 20241116 20:40:14 -Total Time: 02h:43m:19s +Starting Date/Time: 20241119 22:36:38 +Ending Date/Time: 20241120 00:54:40 +Total Time: 02h:19m:21s Compiles Completed: 47/47 Tests Completed: 193/193 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index b56e05cb05..8ccdffcdd6 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -e4c6989d0d2b2e3a110ca9e1f426c3c48545cdef +c0b6a8cda620186d9325db673c3432aa64e35713 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 2429d661d1758c22935558df75f6b66bd710ac11 FV3 (remotes/origin/feature/lnd_iau) + 4fd9f30c715adf2be23d9cf5c51ec2a3127765d8 FV3 (remotes/origin/upp_oct) 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) - 2363beb39016660a157aac49d073f4e04c68c34d NOAHMP-interface/noahmp (v3.7.1-443-g2363beb) + 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -26,388 +26,389 @@ 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-20241112 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2576779 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241119 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2598855 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:11, 12:44] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:19, 11:36](3315 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:11, 16:07] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [23:03, 19:49](1976 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:19, 20:43](2195 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:13, 08:12](1270 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:55, 23:04](1875 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:11, 16:20] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [21:42, 19:13](1965 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 06:01] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:58, 26:22](1939 MB) - -PASS -- COMPILE 's2swa_intel' [14:11, 12:58] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [20:23, 13:59](3342 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:22, 14:05](3345 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:18, 07:31](3249 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [20:23, 14:11](3356 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:18, 07:23](3270 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [16:14, 13:09](3632 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [19:12, 14:09](3340 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:25, 11:37](3218 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [20:28, 13:58](3357 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:07, 10:29](3521 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:34, 06:25](3616 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [24:20, 16:32](4288 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:21, 08:58](4377 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:15, 07:21](3307 MB) - -PASS -- COMPILE 's2sw_intel' [14:11, 12:19] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [12:09, 09:09](1981 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:14, 11:06](2063 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:02] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [27:11, 22:27](3403 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:39] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [14:55, 10:05](1999 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:11, 11:23] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:58, 04:21](2036 MB) - -PASS -- COMPILE 's2s_intel' [13:11, 11:34] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:44, 07:46](3041 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:40, 02:24](3020 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:36, 01:26](2485 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:11, 16:34] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:05, 13:30](3357 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 15:40] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:03, 27:48](2018 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:18, 13:54](1278 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:02, 33:07](1946 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:10, 05:37] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:11, 29:45](1965 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:10, 10:49] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:22, 03:24](700 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:42, 03:13](1587 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:45, 03:17](1587 MB) -PASS -- TEST 'control_latlon_intel' [05:37, 03:14](1587 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:49, 03:14](1584 MB) -PASS -- TEST 'control_c48_intel' [13:42, 11:38](1723 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:26, 06:33](852 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [13:39, 11:34](1724 MB) -PASS -- TEST 'control_c192_intel' [13:53, 11:59](1752 MB) -PASS -- TEST 'control_c384_intel' [16:37, 13:52](1978 MB) -PASS -- TEST 'control_c384gdas_intel' [11:34, 08:04](1374 MB) -PASS -- TEST 'control_stochy_intel' [03:21, 01:40](659 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:28, 00:59](504 MB) -PASS -- TEST 'control_lndp_intel' [03:22, 01:35](658 MB) -PASS -- TEST 'control_iovr4_intel' [04:22, 02:29](653 MB) -PASS -- TEST 'control_iovr5_intel' [04:22, 02:30](655 MB) -PASS -- TEST 'control_p8_intel' [05:47, 03:42](1882 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:52, 03:06](1860 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:51, 03:37](1875 MB) -PASS -- TEST 'control_restart_p8_intel' [03:44, 02:03](1126 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:48, 03:39](1871 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:48, 02:02](1164 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:46, 03:43](1870 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:48, 03:32](1958 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:41, 06:35](1876 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:53, 04:06](1951 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:54, 03:09](1895 MB) -PASS -- TEST 'merra2_thompson_intel' [05:49, 03:24](1888 MB) -PASS -- TEST 'regional_control_intel' [07:32, 05:17](1098 MB) -PASS -- TEST 'regional_restart_intel' [04:33, 02:53](1087 MB) -PASS -- TEST 'regional_decomp_intel' [07:31, 05:37](1091 MB) -PASS -- TEST 'regional_2threads_intel' [05:32, 03:23](1078 MB) -PASS -- TEST 'regional_noquilt_intel' [07:34, 05:18](1389 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:39, 05:16](1084 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:37, 05:24](1090 MB) -PASS -- TEST 'regional_wofs_intel' [08:36, 07:04](1901 MB) - -PASS -- COMPILE 'rrfs_intel' [11:10, 10:04] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:40, 07:52](1103 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:57, 04:07](1246 MB) -PASS -- TEST 'rap_decomp_intel' [10:38, 08:15](1034 MB) -PASS -- TEST 'rap_2threads_intel' [09:34, 07:22](1165 MB) -PASS -- TEST 'rap_restart_intel' [06:40, 04:10](1100 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:39, 07:49](1101 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:36, 08:15](1027 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:43, 05:54](1117 MB) -PASS -- TEST 'hrrr_control_intel' [05:35, 04:00](1035 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:31, 04:07](1030 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:29, 03:41](1102 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:26, 02:09](1002 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:42, 07:44](1093 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:24, 09:32](1984 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:22, 09:14](2059 MB) - -PASS -- COMPILE 'csawmg_intel' [11:10, 09:56] -PASS -- TEST 'control_csawmg_intel' [08:33, 06:13](1017 MB) -PASS -- TEST 'control_ras_intel' [05:19, 03:21](737 MB) - -PASS -- COMPILE 'wam_intel' [11:10, 10:02] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:42, 11:16](1653 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:10, 10:11] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:44, 02:55](1856 MB) -PASS -- TEST 'regional_control_faster_intel' [06:32, 04:52](1087 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 07:26] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:46, 02:14](1598 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:51, 02:14](1616 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:27, 03:09](825 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:25, 02:48](824 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:41, 04:22](1136 MB) -PASS -- TEST 'control_ras_debug_intel' [04:25, 02:56](837 MB) -PASS -- TEST 'control_diag_debug_intel' [04:52, 02:50](1681 MB) -PASS -- TEST 'control_debug_p8_intel' [04:46, 02:36](1896 MB) -PASS -- TEST 'regional_debug_intel' [19:43, 17:51](1104 MB) -PASS -- TEST 'rap_control_debug_intel' [07:24, 05:12](1184 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:20, 04:57](1209 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:21, 04:57](1206 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:21, 05:01](1214 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:22, 05:07](1167 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:32, 05:13](1299 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:23, 05:15](1212 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:20, 05:06](1210 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:21, 05:02](1219 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:21, 05:07](1208 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:21, 05:10](1221 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:21, 05:05](1211 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:21, 08:14](1210 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:24, 05:10](1224 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:21, 05:59](1218 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:22, 05:01](1209 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:37, 08:44](1219 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:10, 04:14] -PASS -- TEST 'control_csawmg_debug_gnu' [04:45, 02:25](719 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:10, 05:00] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:40, 13:40](1678 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:01] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:00, 03:55](1124 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:39, 06:32](1049 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:36, 03:24](979 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:30, 06:12](1081 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:30, 03:12](957 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:32, 03:37](919 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:38, 04:56](1034 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:26, 01:53](921 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:12, 10:07] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:50, 02:02](1189 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:42, 00:52](1105 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:11](1101 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 09:52] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:39, 04:16](977 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:29] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:21, 05:04](1098 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:22, 04:57](1084 MB) -PASS -- TEST 'conus13km_debug_intel' [15:49, 13:56](1231 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:46, 14:08](930 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:40, 07:51](1160 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:41, 14:06](1290 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:38] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:21, 05:03](1146 MB) - -PASS -- COMPILE 'hafsw_intel' [13:11, 11:34] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:11, 05:00](726 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:28, 05:42](1092 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:24, 07:01](811 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:18, 14:49](845 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:30, 18:44](861 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:54, 05:29](484 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:19, 06:46](509 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:41, 02:39](367 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:36, 07:14](465 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:42, 03:40](518 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:47, 03:30](519 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:49, 04:08](574 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:26, 01:13](400 MB) -PASS -- TEST 'gnv1_nested_intel' [06:31, 04:02](1734 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:11, 05:02] ( 1462 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:48, 13:08](583 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:26] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:59, 10:16](622 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:02, 10:17](837 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 11:41] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:29, 08:21](683 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:11, 10:46] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:20, 06:37](822 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:13, 06:38](800 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:53, 16:13](1216 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:37] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 02:46](1164 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:41](1104 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:58](1003 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:42](1030 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:45](1025 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 02:41](1177 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 02:48](1157 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:19, 02:40](1035 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:23, 06:20](1068 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:14, 06:21](1041 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 02:47](1140 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:18, 03:59](2455 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 04:01](2508 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:24] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 06:20](1094 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:55] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:16, 02:46](1163 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:05] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:55](261 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 01:04](327 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:26, 00:33](324 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:22] -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:33, 00:33](569 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:33, 00:18](458 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 10:50] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:02, 03:43](1983 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 10:17] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [10:59, 08:05](1986 MB) - -PASS -- COMPILE 'atml_intel' [12:11, 10:50] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:59, 04:21](1863 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:55, 04:23](1839 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:42, 02:25](1099 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:11, 05:39] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:53, 05:45](1885 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 10:56] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:47, 01:58](1926 MB) - -PASS -- COMPILE 'atmaero_intel' [12:11, 10:21] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:55, 04:08](3192 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:57, 04:59](3091 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:45, 05:01](3107 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:32] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_fbh_intel' [11:11, 09:54] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:29, 11:51](1083 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:11, 06:41] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:37, 08:32](1038 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:11, 06:49] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [07:39, 05:05](975 MB) - -PASS -- COMPILE 'atm_gnu' [06:10, 04:29] -PASS -- TEST 'control_c48_gnu' [11:36, 09:34](1512 MB) -PASS -- TEST 'control_stochy_gnu' [05:22, 03:30](493 MB) -PASS -- TEST 'control_ras_gnu' [07:21, 05:01](496 MB) -PASS -- TEST 'control_p8_gnu' [07:50, 05:14](1446 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [07:47, 05:10](1446 MB) -PASS -- TEST 'control_flake_gnu' [12:23, 10:28](536 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:10, 04:06] -PASS -- TEST 'rap_control_gnu' [13:31, 11:23](808 MB) -PASS -- TEST 'rap_decomp_gnu' [13:30, 11:34](808 MB) -PASS -- TEST 'rap_2threads_gnu' [12:35, 10:24](920 MB) -PASS -- TEST 'rap_restart_gnu' [07:42, 05:46](577 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [13:37, 11:21](808 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:32, 11:33](807 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:39, 08:29](579 MB) -PASS -- TEST 'hrrr_control_gnu' [07:36, 05:47](806 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:36, 05:49](829 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [07:30, 05:16](911 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:29, 05:53](839 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [05:29, 03:00](559 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:29, 03:00](653 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [13:41, 11:09](804 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:10, 03:50] -PASS -- TEST 'control_csawmg_gnu' [10:33, 08:37](738 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:10, 06:34] -PASS -- TEST 'control_diag_debug_gnu' [03:39, 01:46](1270 MB) -PASS -- TEST 'regional_debug_gnu' [12:34, 10:24](750 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:21, 02:37](821 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:21, 02:33](818 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:20, 02:33](820 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:20, 02:39](818 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:33, 02:51](934 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:21, 04:08](815 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [05:21, 02:43](809 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [05:20, 02:39](817 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:19, 01:37](455 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:19, 01:46](450 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:36, 01:34](1429 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:21, 02:36](821 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:21, 02:56](819 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:33, 04:22](821 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:10, 02:22] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:10, 04:07] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:33, 09:51](696 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:28, 05:12](694 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [11:28, 09:03](741 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:33, 04:45](740 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:27, 05:19](692 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:34, 07:19](550 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:24, 02:39](535 MB) -PASS -- TEST 'conus13km_control_gnu' [05:51, 03:10](863 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:40, 05:30](868 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:41, 01:49](547 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:10, 09:23] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:37, 05:56](719 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:10, 06:29] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:21, 02:31](712 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:21, 02:33](710 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:44, 06:51](885 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:40, 06:55](573 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [09:38, 07:42](883 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:38, 06:48](951 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:10, 06:30] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:23, 02:39](730 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:11, 13:05] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:35, 11:41](3315 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:11, 16:01] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:04, 19:43](1980 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:17, 20:32](2162 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:11, 08:11](1269 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:12, 23:21](1870 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:11, 16:38] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:44, 19:12](1956 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:10, 05:55] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:09, 26:27](1915 MB) + +PASS -- COMPILE 's2swa_intel' [14:11, 13:03] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [17:30, 14:02](3359 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:42, 14:13](3324 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:27, 07:23](3258 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [18:31, 14:09](3377 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:32, 07:23](3265 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [16:29, 13:23](3638 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:27, 13:59](3345 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:32, 11:58](3225 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:39, 14:10](3361 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:27, 10:23](3507 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:58, 06:26](3617 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [25:31, 16:14](4263 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:44, 09:18](4353 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:35, 07:23](3305 MB) + +PASS -- COMPILE 's2sw_intel' [14:11, 12:11] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:22, 09:04](1991 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:32, 11:07](2059 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:10, 05:48] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [25:20, 22:34](3401 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:10, 05:32] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:04, 10:01](2019 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:11, 11:14] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:08, 04:21](2030 MB) + +PASS -- COMPILE 's2s_intel' [13:11, 11:57] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:46, 07:50](3039 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:45, 02:22](3033 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:44, 01:27](2448 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:12, 16:32] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:15, 13:31](3358 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:12, 16:05] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:07, 27:56](2020 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:19, 13:45](1263 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:05, 32:59](1934 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:36] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:24, 29:55](1952 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:11, 10:43] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:24, 03:22](709 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:42, 03:14](1594 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:48, 03:17](1585 MB) +PASS -- TEST 'control_latlon_intel' [05:43, 03:11](1586 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:45, 03:15](1591 MB) +PASS -- TEST 'control_c48_intel' [13:44, 11:32](1731 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:25, 06:34](839 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [13:40, 11:33](1723 MB) +PASS -- TEST 'control_c192_intel' [14:05, 11:58](1741 MB) +PASS -- TEST 'control_c384_intel' [16:49, 13:50](1983 MB) +PASS -- TEST 'control_c384gdas_intel' [12:59, 08:17](1382 MB) +PASS -- TEST 'control_stochy_intel' [03:23, 01:39](664 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:26, 00:58](507 MB) +PASS -- TEST 'control_lndp_intel' [03:22, 01:35](655 MB) +PASS -- TEST 'control_iovr4_intel' [04:24, 02:29](657 MB) +PASS -- TEST 'control_iovr5_intel' [04:24, 02:28](654 MB) +PASS -- TEST 'control_p8_intel' [05:57, 03:41](1872 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:59, 03:06](1891 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:50, 03:36](1885 MB) +PASS -- TEST 'control_restart_p8_intel' [04:46, 02:08](1122 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:47, 03:38](1874 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:58, 02:00](1169 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:44, 03:44](1866 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:43, 03:32](1952 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:49, 06:34](1877 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:52, 04:13](1941 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:53, 03:22](1898 MB) +PASS -- TEST 'merra2_thompson_intel' [05:50, 03:24](1886 MB) +PASS -- TEST 'regional_control_intel' [07:35, 05:21](1083 MB) +PASS -- TEST 'regional_restart_intel' [04:36, 02:55](1080 MB) +PASS -- TEST 'regional_decomp_intel' [07:34, 05:41](1082 MB) +PASS -- TEST 'regional_2threads_intel' [05:39, 03:23](1089 MB) +PASS -- TEST 'regional_noquilt_intel' [07:36, 05:22](1394 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:37, 05:19](1092 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:36, 05:20](1086 MB) +PASS -- TEST 'regional_wofs_intel' [08:38, 06:58](1900 MB) + +PASS -- COMPILE 'rrfs_intel' [12:11, 10:23] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:41, 07:51](1101 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:07, 04:07](1248 MB) +PASS -- TEST 'rap_decomp_intel' [10:34, 08:11](1037 MB) +PASS -- TEST 'rap_2threads_intel' [09:35, 07:23](1169 MB) +PASS -- TEST 'rap_restart_intel' [06:41, 04:08](1103 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:39, 07:47](1104 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:35, 08:14](1014 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:49, 05:55](1126 MB) +PASS -- TEST 'hrrr_control_intel' [05:41, 04:04](1036 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:33, 04:09](1032 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:33, 03:45](1089 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:30, 02:09](995 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:43, 07:44](1091 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:31, 09:31](1989 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:27, 09:24](2045 MB) + +PASS -- COMPILE 'csawmg_intel' [12:11, 10:11] +PASS -- TEST 'control_csawmg_intel' [08:42, 06:12](1016 MB) +PASS -- TEST 'control_ras_intel' [05:23, 03:19](755 MB) + +PASS -- COMPILE 'wam_intel' [12:11, 10:11] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:51, 11:21](1665 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:20] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:58, 02:47](1884 MB) +PASS -- TEST 'regional_control_faster_intel' [06:37, 04:56](1085 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 07:46] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:46, 02:18](1615 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:50, 02:08](1614 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:24, 03:08](832 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:23, 02:47](827 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:41, 04:23](1138 MB) +PASS -- TEST 'control_ras_debug_intel' [04:24, 02:48](834 MB) +PASS -- TEST 'control_diag_debug_intel' [05:49, 02:48](1688 MB) +PASS -- TEST 'control_debug_p8_intel' [05:45, 02:38](1908 MB) +PASS -- TEST 'regional_debug_intel' [19:43, 17:29](1099 MB) +PASS -- TEST 'rap_control_debug_intel' [07:25, 04:58](1220 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:24, 05:05](1203 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:24, 05:00](1216 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 05:06](1208 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 05:00](1215 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:36, 05:26](1294 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:21, 05:14](1219 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:20, 05:09](1209 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:23, 05:08](1220 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 04:59](1213 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:23, 04:54](1213 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:22, 05:07](1215 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:22, 08:01](1219 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:23, 05:02](1218 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:21, 05:01](1215 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:22, 05:00](1212 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:39, 08:48](1223 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:11, 04:12] +PASS -- TEST 'control_csawmg_debug_gnu' [04:35, 02:26](719 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:12, 04:42] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:46, 13:51](1684 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 10:09] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:00, 03:58](1119 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:38, 06:32](1045 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:38, 03:28](975 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:32, 06:16](1085 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:31, 03:11](945 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:30, 03:38](924 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:40, 04:56](1027 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:27, 01:52](923 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 10:04] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:52, 02:02](1184 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:43, 00:52](1108 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:44, 01:12](1094 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 10:01] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:41, 04:14](978 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:35] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 05:01](1091 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:21, 04:53](1089 MB) +PASS -- TEST 'conus13km_debug_intel' [15:47, 13:53](1234 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:46, 14:25](921 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:42, 08:03](1157 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:42, 14:44](1292 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:24, 05:01](1139 MB) + +PASS -- COMPILE 'hafsw_intel' [13:11, 11:44] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:12, 04:55](722 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:32, 05:38](1092 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:24, 07:09](799 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:19, 14:40](841 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [23:32, 18:36](866 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:55, 05:37](489 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:31, 06:41](505 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:45, 02:42](370 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:35, 07:28](474 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:46, 03:45](519 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:47, 03:33](520 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:54, 04:06](581 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:13](400 MB) +PASS -- TEST 'gnv1_nested_intel' [06:35, 03:59](1735 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:11, 05:14] ( 1462 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:57, 13:01](582 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:22] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:58, 10:21](662 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:04, 10:19](730 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 11:26] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:31, 08:19](716 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:11, 10:48] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:19, 06:53](843 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:18, 06:55](799 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:55, 16:25](1220 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:10, 06:23] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:18, 02:50](1167 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:43](1111 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:52](1022 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:25, 02:42](1022 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:45](1027 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:16, 02:44](1145 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:16, 02:45](1156 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:39](1023 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:22, 06:51](1082 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:17, 06:19](1043 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:14, 02:48](1153 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 04:03](2399 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 04:04](2447 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:19] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 06:26](1090 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:10, 06:30] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:17, 02:46](1156 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:59] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:29, 00:47](268 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:24, 00:52](323 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:31](324 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:15] +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:30, 00:33](564 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:33, 00:17](455 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:10, 10:46] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:01, 03:45](1975 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:10, 10:21] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:53, 08:12](1975 MB) + +PASS -- COMPILE 'atml_intel' [12:11, 10:41] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:04, 04:21](1858 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:57, 04:13](1869 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:47, 02:23](1079 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:10, 05:40] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:55, 05:52](1895 MB) + +PASS -- COMPILE 'atmw_intel' [12:10, 10:46] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:46, 01:55](1928 MB) + +PASS -- COMPILE 'atmaero_intel' [12:10, 10:29] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:52, 04:09](3196 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:59, 04:54](3082 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:44, 05:03](3106 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:10, 04:40] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_fbh_intel' [11:10, 09:46] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:29, 11:50](1074 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:10, 06:37] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [11:40, 08:38](1040 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:10, 06:49] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [07:39, 04:58](977 MB) + +PASS -- COMPILE 'atm_gnu' [06:11, 04:30] +PASS -- TEST 'control_c48_gnu' [11:41, 09:30](1512 MB) +PASS -- TEST 'control_stochy_gnu' [05:22, 03:25](496 MB) +PASS -- TEST 'control_ras_gnu' [06:20, 04:53](501 MB) +PASS -- TEST 'control_p8_gnu' [07:53, 05:12](1459 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [07:49, 05:08](1448 MB) +PASS -- TEST 'control_flake_gnu' [12:23, 10:29](540 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:10, 04:09] +PASS -- TEST 'rap_control_gnu' [13:31, 11:26](806 MB) +PASS -- TEST 'rap_decomp_gnu' [13:30, 11:40](806 MB) +PASS -- TEST 'rap_2threads_gnu' [12:36, 10:21](919 MB) +PASS -- TEST 'rap_restart_gnu' [38:45, 05:53](574 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:36, 11:26](833 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:31, 11:31](805 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [39:44, 08:28](575 MB) +PASS -- TEST 'hrrr_control_gnu' [07:37, 05:49](836 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:29, 05:51](823 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [07:30, 05:20](901 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:30, 05:54](835 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [06:28, 03:00](557 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:28, 02:57](649 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [13:45, 11:12](836 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:10, 03:55] +PASS -- TEST 'control_csawmg_gnu' [10:40, 08:40](737 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:35] +PASS -- TEST 'control_diag_debug_gnu' [03:48, 01:37](1268 MB) +PASS -- TEST 'regional_debug_gnu' [13:37, 11:23](728 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:23, 02:37](815 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:23, 02:36](815 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:21, 02:38](817 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:21, 02:38](816 MB) +PASS -- TEST 'rap_diag_debug_gnu' [05:34, 02:53](899 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:21, 04:08](817 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:23, 02:37](815 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:22, 02:35](814 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:20, 01:39](455 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:20, 01:44](447 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:37, 01:37](1418 MB) +PASS -- TEST 'rap_flake_debug_gnu' [07:25, 02:37](818 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [07:23, 02:41](822 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [08:35, 04:22](826 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:10, 02:20] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:10, 04:05] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [13:30, 09:52](695 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [08:29, 05:14](693 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [12:34, 09:03](740 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:33, 04:43](734 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [08:28, 05:16](690 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [33:40, 07:21](547 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [33:27, 02:43](532 MB) +PASS -- TEST 'conus13km_control_gnu' [05:54, 03:10](863 MB) +PASS -- TEST 'conus13km_2threads_gnu' [36:49, 06:06](870 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [32:49, 01:50](559 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:24] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:38, 06:01](721 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:28] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:22, 02:34](713 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:22, 02:34](705 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:51, 06:55](883 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:43, 06:56](573 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [09:40, 07:51](884 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:39, 06:54](953 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:29] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:24, 02:39](740 MB) PASS -- COMPILE 's2swa_gnu' [18:11, 16:39] -PASS -- COMPILE 's2s_gnu' [17:11, 15:55] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [22:08, 19:05](1490 MB) +PASS -- COMPILE 's2s_gnu' [17:11, 15:58] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [26:06, 19:00](1496 MB) -PASS -- COMPILE 's2swa_debug_gnu' [04:10, 03:03] +PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:06] -PASS -- COMPILE 's2sw_pdlib_gnu' [17:12, 15:46] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [33:01, 30:43](1447 MB) +PASS -- COMPILE 's2sw_pdlib_gnu' [18:12, 16:09] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [41:02, 35:01](1455 MB) -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 02:54] +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:55] -PASS -- COMPILE 'datm_cdeps_gnu' [17:12, 15:39] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:17, 02:59](697 MB) +PASS -- COMPILE 'datm_cdeps_gnu' [17:12, 15:28] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [07:18, 03:05](695 MB) SYNOPSIS: -Starting Date/Time: 20241116 18:43:23 -Ending Date/Time: 20241116 21:04:04 -Total Time: 02h:20m:58s +Starting Date/Time: 20241120 16:34:34 +Ending Date/Time: 20241120 18:45:28 +Total Time: 02h:11m:13s Compiles Completed: 61/61 Tests Completed: 249/249 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 010ae22b57..93a5a347ea 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7 +1,7 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -df9325ac52a9219e80bc6d448ec0d297b6c8a591 +c0b6a8cda620186d9325db673c3432aa64e35713 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,13 +11,13 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 2429d661d1758c22935558df75f6b66bd710ac11 FV3 (remotes/origin/feature/lnd_iau) + 4fd9f30c715adf2be23d9cf5c51ec2a3127765d8 FV3 (remotes/origin/upp_oct) e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 4343656a098516517257c0913689f70a81579e74 FV3/ccpp/physics (EP4-1045-g4343656a) + cfa18610e546ddb633c117afd394bf4aaaeec4dc FV3/ccpp/physics (EP4-1046-gcfa18610) 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 + ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) +-179cae1dd84401cf25d250bd9102e66560a9d328 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) @@ -26,7 +26,7 @@ Submodule hashes used in testing: 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) - 2363beb39016660a157aac49d073f4e04c68c34d NOAHMP-interface/noahmp (remotes/origin/feature/lnd_iau) + 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,385 +38,386 @@ 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-20241112 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_3968593 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20241119 +COMPARISON DIRECTORY: /work2/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_313751 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-r) - USE ROCOTO - -PASS -- COMPILE 's2swa_32bit_intel' [12:07, 12:07] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:45, 14:07](2139 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:08, 17:08] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:37, 17:45](1989 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:07, 18:05](2303 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:11, 07:05](1359 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:19, 18:27](1900 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:21, 16:21] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:32, 17:11](1982 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:09, 06:09] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:46, 24:52](1965 MB) - -PASS -- COMPILE 's2swa_intel' [12:17, 12:17] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [14:46, 14:06](2208 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:45, 14:08](2197 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:18, 07:30](1975 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [15:08, 14:24](2221 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:53, 07:48](1733 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [17:04, 16:34](2553 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:56, 14:13](2192 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:04, 12:16](2094 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:19, 14:34](2197 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:50, 15:27](2965 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [07:51, 06:04](2915 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [21:06, 16:24](3814 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:31, 10:25](3641 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:39, 06:56](2105 MB) - -PASS -- COMPILE 's2sw_intel' [11:01, 11:01] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [14:11, 13:38](2011 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:06, 10:32](2108 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:54, 05:54] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [19:54, 19:07](2214 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:37, 05:37] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:28, 07:49](2040 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:21, 10:21] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:43, 04:03](2058 MB) - -PASS -- COMPILE 's2s_intel' [10:32, 10:32] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [06:34, 06:07](3030 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [02:15, 01:48](3009 MB) -PASS -- TEST 'cpld_restart_c48_intel' [01:24, 01:02](2469 MB) - -PASS -- COMPILE 's2swa_faster_intel' [12:49, 12:48] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [15:14, 14:31](2201 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [15:47, 15:47] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:59, 23:17](2061 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:14, 12:18](1429 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:33, 25:57](2004 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:39, 04:38] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:29, 27:52](2012 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:55, 09:55] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:09, 02:57](718 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:09, 02:48](1583 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:12, 02:48](1592 MB) -PASS -- TEST 'control_latlon_intel' [03:08, 02:50](1600 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:19, 02:56](1579 MB) -PASS -- TEST 'control_c48_intel' [11:21, 11:01](1704 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:25, 06:13](833 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [11:15, 10:55](1708 MB) -PASS -- TEST 'control_c192_intel' [11:06, 10:29](1756 MB) -PASS -- TEST 'control_c384_intel' [13:06, 11:59](2002 MB) -PASS -- TEST 'control_c384gdas_intel' [08:55, 07:15](1503 MB) -PASS -- TEST 'control_stochy_intel' [01:35, 01:24](660 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:14, 00:55](526 MB) -PASS -- TEST 'control_lndp_intel' [01:39, 01:29](662 MB) -PASS -- TEST 'control_iovr4_intel' [02:23, 02:10](667 MB) -PASS -- TEST 'control_iovr5_intel' [02:27, 02:14](659 MB) -PASS -- TEST 'control_p8_intel' [04:01, 03:19](1887 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:23, 02:44](1904 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:44, 03:04](1885 MB) -PASS -- TEST 'control_restart_p8_intel' [02:22, 01:50](1145 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:36, 03:02](1869 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:25, 01:49](1221 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:52, 03:14](1865 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:37, 03:00](1961 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:10, 05:45](1886 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:25, 03:42](1969 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:17, 02:40](1901 MB) -PASS -- TEST 'merra2_thompson_intel' [03:43, 02:56](1905 MB) -PASS -- TEST 'regional_control_intel' [04:53, 04:36](1190 MB) -PASS -- TEST 'regional_restart_intel' [02:54, 02:39](1161 MB) -PASS -- TEST 'regional_decomp_intel' [05:12, 04:56](1172 MB) -PASS -- TEST 'regional_2threads_intel' [03:19, 03:02](1142 MB) -PASS -- TEST 'regional_noquilt_intel' [05:08, 04:54](1517 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:16, 04:52](1193 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [04:53, 04:36](1188 MB) -PASS -- TEST 'regional_wofs_intel' [06:13, 05:57](2057 MB) - -PASS -- COMPILE 'rrfs_intel' [09:11, 09:11] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [07:15, 06:39](1184 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:05, 03:31](1349 MB) -PASS -- TEST 'rap_decomp_intel' [07:36, 06:59](1144 MB) -PASS -- TEST 'rap_2threads_intel' [07:04, 06:25](1360 MB) -PASS -- TEST 'rap_restart_intel' [04:25, 03:37](1124 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:58, 07:21](1225 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:13, 07:36](1144 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:50, 05:55](1209 MB) -PASS -- TEST 'hrrr_control_intel' [04:11, 03:32](1071 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:11, 03:35](1024 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [08:53, 08:02](1109 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:07, 01:58](1030 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:34, 06:45](1197 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:33, 09:21](1998 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:29, 09:17](2199 MB) - -PASS -- COMPILE 'csawmg_intel' [09:03, 09:01] -PASS -- TEST 'control_csawmg_intel' [05:59, 05:41](1052 MB) -PASS -- TEST 'control_ras_intel' [03:20, 03:07](823 MB) - -PASS -- COMPILE 'wam_intel' [08:48, 08:47] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [10:37, 10:07](1660 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:49, 09:48] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:02, 02:23](1892 MB) -PASS -- TEST 'regional_control_faster_intel' [04:40, 04:23](1188 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:28, 09:26] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:18, 01:55](1599 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:17, 01:49](1608 MB) -PASS -- TEST 'control_stochy_debug_intel' [02:48, 02:37](846 MB) -PASS -- TEST 'control_lndp_debug_intel' [02:35, 02:25](839 MB) -PASS -- TEST 'control_csawmg_debug_intel' [03:54, 03:38](1151 MB) -PASS -- TEST 'control_ras_debug_intel' [02:39, 02:28](838 MB) -PASS -- TEST 'control_diag_debug_intel' [02:55, 02:28](1688 MB) -PASS -- TEST 'control_debug_p8_intel' [02:44, 02:16](1925 MB) -PASS -- TEST 'regional_debug_intel' [14:58, 14:40](1149 MB) -PASS -- TEST 'rap_control_debug_intel' [04:24, 04:14](1209 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:16, 04:06](1226 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:23, 04:07](1222 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:17, 04:05](1220 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:16, 04:07](1225 MB) -PASS -- TEST 'rap_diag_debug_intel' [04:36, 04:21](1309 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:22, 04:10](1226 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:22, 04:10](1222 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:18, 04:07](1220 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:22, 04:09](1224 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:14, 04:06](1216 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:23, 04:15](1224 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [06:51, 06:38](1220 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:18, 04:05](1219 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:11, 05:00](1224 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:22, 04:11](1227 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:42, 07:05](1227 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:58, 04:58] -PASS -- TEST 'control_csawmg_debug_gnu' [02:17, 01:56](1038 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:26, 04:26] ( 837 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:09, 09:09] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [03:53, 03:17](1222 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:03, 05:30](1162 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:39, 02:55](1015 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:50, 05:16](1277 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:30, 02:42](1015 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:49, 03:03](974 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:00, 04:14](1085 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [01:59, 01:39](978 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:32, 08:31] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:04, 01:38](1278 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:03, 00:43](1185 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:23, 01:02](1128 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:27, 08:27] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:11, 04:48](1074 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:38, 03:38] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:30, 04:19](1093 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:23, 04:14](1100 MB) -PASS -- TEST 'conus13km_debug_intel' [12:19, 11:59](1342 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [12:40, 12:12](998 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [07:54, 07:34](1241 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:12, 11:48](1393 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:41, 03:41] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:27, 04:10](1166 MB) - -PASS -- COMPILE 'hafsw_intel' [10:32, 10:32] ( 1 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:28, 05:34](841 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:52, 05:36](1247 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:51, 07:49](916 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:20, 14:22](946 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:42, 17:29](969 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:54, 07:19](596 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:17, 09:12](608 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:13, 03:41](439 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:38, 09:46](549 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:36, 05:01](597 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:23, 04:46](597 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:48, 05:04](650 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:57, 01:43](461 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:08, 04:07] ( 1462 warnings 1490 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:35, 13:51](621 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [09:38, 09:38] ( 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [20:04, 19:20](745 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:47, 18:55](800 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:15, 10:15] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:01, 11:45](840 MB) - -PASS -- COMPILE 'hafs_all_intel' [09:32, 09:32] ( 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [06:30, 05:42](911 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:26, 06:33](850 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:07, 16:32](1340 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:52, 06:52] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:45, 02:22](1142 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:38, 01:21](1101 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:11, 02:06](1018 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:08, 02:04](1026 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:10, 02:06](1017 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:14, 02:09](1153 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:17, 02:12](1133 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:14, 02:09](1015 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:29, 04:53](1165 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:26, 04:52](1158 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:13, 02:09](1151 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:05, 02:59](2396 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:09, 03:03](2403 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:41, 03:41] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:08, 05:04](1086 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [05:37, 05:37] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:13, 02:08](1135 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [00:54, 00:54] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:09, 00:53](332 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:01, 00:50](574 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:54, 00:37](575 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:32, 09:32] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:02, 03:22](2013 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [09:16, 09:15] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:39, 08:53](2027 MB) - -PASS -- COMPILE 'atml_intel' [09:41, 09:40] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:31, 07:19](1885 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:03, 06:52](1895 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:56, 04:47](1141 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:00, 05:00] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:30, 05:39](1922 MB) - -PASS -- COMPILE 'atmw_intel' [09:45, 09:45] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:23, 01:44](1935 MB) - -PASS -- COMPILE 'atmaero_intel' [09:18, 09:18] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:15, 04:19](2012 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:07, 05:07](1776 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:38, 04:54](1781 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [03:59, 03:59] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [18:36, 17:15](4558 MB) - -PASS -- COMPILE 'atm_fbh_intel' [08:22, 08:22] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:35, 10:21](1075 MB) - -PASS -- COMPILE 'datm_cdeps_intelllvm' [09:46, 09:44] -PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [03:05, 02:59](1140 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [01:51, 01:51] -PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [06:11, 06:04](1083 MB) - -PASS -- COMPILE 'atm_gnu' [05:33, 05:25] -PASS -- TEST 'control_c48_gnu' [08:39, 08:08](1519 MB) -PASS -- TEST 'control_stochy_gnu' [03:13, 02:55](716 MB) -PASS -- TEST 'control_ras_gnu' [05:11, 04:55](723 MB) -PASS -- TEST 'control_p8_gnu' [06:52, 05:48](1743 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:22, 05:28](1743 MB) -PASS -- TEST 'control_flake_gnu' [06:22, 06:05](802 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:18, 05:10] -PASS -- TEST 'rap_control_gnu' [09:10, 08:30](1071 MB) -PASS -- TEST 'rap_decomp_gnu' [09:06, 08:24](1071 MB) -PASS -- TEST 'rap_2threads_gnu' [08:19, 07:39](1123 MB) -PASS -- TEST 'rap_restart_gnu' [04:48, 04:07](876 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [09:02, 08:17](1069 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:07, 08:23](1067 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:59, 06:18](877 MB) -PASS -- TEST 'hrrr_control_gnu' [05:08, 04:25](1057 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:00, 04:22](1120 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:23, 03:44](1014 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:05, 04:25](1053 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [02:19, 02:10](874 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:27, 02:10](923 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:52, 08:03](1064 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:22, 04:22] -PASS -- TEST 'control_csawmg_gnu' [07:38, 07:22](1050 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:41, 06:40] -PASS -- TEST 'control_diag_debug_gnu' [01:36, 01:15](1617 MB) -PASS -- TEST 'regional_debug_gnu' [06:51, 06:34](1106 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:21, 02:11](1082 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:10, 02:01](1076 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:09, 02:02](1080 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:14, 02:03](1083 MB) -PASS -- TEST 'rap_diag_debug_gnu' [02:24, 02:09](1291 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:35, 03:26](1080 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:10, 02:01](1090 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:07, 01:59](1079 MB) -PASS -- TEST 'control_ras_debug_gnu' [01:19, 01:11](715 MB) -PASS -- TEST 'control_stochy_debug_gnu' [01:24, 01:16](716 MB) -PASS -- TEST 'control_debug_p8_gnu' [01:43, 01:20](1693 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:12, 02:00](1084 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [02:22, 02:15](1086 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [03:54, 03:19](1084 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:18, 03:17] -PASS -- TEST 'control_wam_debug_gnu' [05:43, 05:22](1550 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:50, 04:50] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:05, 07:31](950 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:33, 03:52](938 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:22, 06:49](982 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:26, 03:37](885 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:51, 04:07](937 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:33, 05:55](854 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:33, 02:14](853 MB) -PASS -- TEST 'conus13km_control_gnu' [03:07, 02:41](1255 MB) -PASS -- TEST 'conus13km_2threads_gnu' [01:27, 01:07](1160 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [01:50, 01:30](931 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:06, 09:06] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:00, 04:41](978 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:11, 06:06] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:07, 01:59](964 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:08, 01:58](958 MB) -PASS -- TEST 'conus13km_debug_gnu' [06:03, 05:32](1274 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:06, 05:39](942 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [03:48, 03:28](1179 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:19, 05:55](1341 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [06:34, 06:33] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:11, 02:03](1002 MB) - -PASS -- COMPILE 's2swa_gnu' [16:55, 16:55] - -PASS -- COMPILE 's2s_gnu' [16:17, 16:17] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [15:30, 14:50](3062 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:23, 04:22] - -PASS -- COMPILE 's2sw_pdlib_gnu' [16:13, 16:12] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [40:18, 39:39](3038 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:39, 03:38] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:48, 15:06](3023 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [15:55, 15:55] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [02:24, 02:19](771 MB) +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [14:10, 13:06] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:59, 14:11](2136 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:10, 18:57] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:08, 17:27](1982 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:41, 18:17](2306 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:33, 06:44](1351 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:05, 18:32](1903 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:10, 19:03] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:36, 16:38](1985 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:10, 07:15] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:08, 25:49](1969 MB) + +PASS -- COMPILE 's2swa_intel' [15:10, 13:27] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:55, 14:52](2203 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:08, 14:27](2200 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:14, 07:42](1948 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:55, 14:36](2228 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:13, 07:42](1738 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [18:51, 16:33](2549 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:53, 14:39](2193 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:57, 12:17](2094 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:07, 15:07](2203 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [18:35, 15:38](2977 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:11, 06:18](2916 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [24:15, 18:07](3837 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:12, 09:14](3635 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:54, 07:04](2104 MB) + +PASS -- COMPILE 's2sw_intel' [13:10, 11:47] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:46, 13:42](2025 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:50, 10:36](2100 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:10, 06:49] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [24:00, 21:36](2240 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:06] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:57, 07:39](2041 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:10, 10:04] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:14, 04:50](2067 MB) + +PASS -- COMPILE 's2s_intel' [12:10, 10:09] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:38, 06:03](3028 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:42, 01:53](3020 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:41, 01:08](2464 MB) + +PASS -- COMPILE 's2swa_faster_intel' [13:11, 11:52] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [17:02, 15:05](2200 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 15:17] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [25:07, 22:48](2075 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:03, 11:22](1407 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:54, 25:43](1992 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 04:48] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:50, 27:41](2006 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:11, 09:16] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:19, 02:51](719 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:29, 02:42](1585 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:36, 02:45](1597 MB) +PASS -- TEST 'control_latlon_intel' [04:28, 02:45](1590 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:36, 02:45](1590 MB) +PASS -- TEST 'control_c48_intel' [12:33, 10:15](1704 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:24, 05:55](834 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [12:33, 10:14](1708 MB) +PASS -- TEST 'control_c192_intel' [12:41, 10:31](1760 MB) +PASS -- TEST 'control_c384_intel' [16:18, 12:01](2025 MB) +PASS -- TEST 'control_c384gdas_intel' [10:50, 07:17](1502 MB) +PASS -- TEST 'control_stochy_intel' [03:21, 01:24](668 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:27, 00:52](541 MB) +PASS -- TEST 'control_lndp_intel' [03:18, 01:20](661 MB) +PASS -- TEST 'control_iovr4_intel' [03:19, 02:07](655 MB) +PASS -- TEST 'control_iovr5_intel' [03:19, 02:06](666 MB) +PASS -- TEST 'control_p8_intel' [04:46, 03:08](1875 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:50, 02:38](1894 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:49, 03:09](1882 MB) +PASS -- TEST 'control_restart_p8_intel' [03:46, 01:49](1162 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:44, 03:07](1872 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:56, 01:48](1193 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:41, 03:19](1860 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:42, 03:02](1961 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:32, 05:40](1887 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:52, 03:40](1976 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:52, 02:47](1905 MB) +PASS -- TEST 'merra2_thompson_intel' [04:55, 02:55](1914 MB) +PASS -- TEST 'regional_control_intel' [06:27, 04:37](1203 MB) +PASS -- TEST 'regional_restart_intel' [04:28, 02:36](1163 MB) +PASS -- TEST 'regional_decomp_intel' [06:26, 04:47](1175 MB) +PASS -- TEST 'regional_2threads_intel' [04:25, 02:57](1145 MB) +PASS -- TEST 'regional_noquilt_intel' [06:28, 04:28](1516 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:42, 04:38](1192 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:26, 04:36](1193 MB) +PASS -- TEST 'regional_wofs_intel' [07:24, 05:59](2071 MB) + +PASS -- COMPILE 'rrfs_intel' [10:10, 08:47] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:45, 06:55](1183 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:01, 03:27](1360 MB) +PASS -- TEST 'rap_decomp_intel' [08:36, 06:57](1139 MB) +PASS -- TEST 'rap_2threads_intel' [08:37, 06:19](1371 MB) +PASS -- TEST 'rap_restart_intel' [05:52, 03:28](1122 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:47, 08:04](1241 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:33, 09:09](1161 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:53, 06:26](1230 MB) +PASS -- TEST 'hrrr_control_intel' [05:50, 03:25](1078 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:36, 03:51](1034 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:35, 03:09](1109 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:21, 01:57](1012 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:54, 06:43](1191 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:20, 08:22](1993 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:20, 08:10](2152 MB) + +PASS -- COMPILE 'csawmg_intel' [10:10, 08:26] +PASS -- TEST 'control_csawmg_intel' [07:26, 05:31](1054 MB) +PASS -- TEST 'control_ras_intel' [04:20, 02:51](824 MB) + +PASS -- COMPILE 'wam_intel' [10:10, 08:34] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [11:38, 09:48](1659 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:10, 08:43] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:55, 02:31](1906 MB) +PASS -- TEST 'regional_control_faster_intel' [06:27, 04:17](1191 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:10, 06:06] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:33, 02:09](1618 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:35, 01:57](1616 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:19, 02:48](839 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:17, 02:36](845 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:24, 04:59](1153 MB) +PASS -- TEST 'control_ras_debug_intel' [04:17, 02:42](848 MB) +PASS -- TEST 'control_diag_debug_intel' [04:30, 02:19](1698 MB) +PASS -- TEST 'control_debug_p8_intel' [04:31, 02:21](1914 MB) +PASS -- TEST 'regional_debug_intel' [17:27, 15:35](1145 MB) +PASS -- TEST 'rap_control_debug_intel' [06:17, 04:42](1230 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:21, 04:34](1234 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:18, 04:38](1235 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:17, 04:59](1221 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 04:29](1228 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:29, 04:59](1313 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:19, 04:34](1216 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:18, 04:25](1220 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:17, 04:43](1226 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:17, 04:45](1236 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:17, 05:18](1227 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:19, 04:32](1224 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:19, 07:40](1222 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:19, 04:17](1220 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:19, 04:43](1216 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:19, 04:39](1228 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:49, 07:08](1222 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:10, 04:30] +PASS -- TEST 'control_csawmg_debug_gnu' [04:28, 02:21](1045 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:10, 03:56] ( 837 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:10, 08:34] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:45, 03:20](1234 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:45, 05:23](1143 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:00, 02:52](1011 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:39, 05:11](1274 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:51, 02:44](1019 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:38, 03:06](975 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:54, 04:04](1109 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:36, 01:35](948 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:10, 08:19] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:37, 01:41](1287 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:34, 00:41](1183 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:33, 01:05](1130 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:10, 08:12] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:33, 03:55](1087 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:10, 03:43] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:20, 04:24](1103 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:19, 04:24](1106 MB) +PASS -- TEST 'conus13km_debug_intel' [14:32, 12:45](1342 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:35, 13:20](996 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:35, 09:09](1239 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:29, 12:58](1400 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 03:57] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:19, 04:17](1173 MB) + +PASS -- COMPILE 'hafsw_intel' [13:10, 10:22] ( 1 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:06, 05:27](840 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:21, 05:30](1254 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:11, 06:45](937 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:04, 14:14](955 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:14, 17:52](990 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:53, 06:16](591 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:21, 07:58](608 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:42, 03:04](433 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:58, 08:30](551 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:44, 04:09](603 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:47, 03:56](604 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:50, 04:54](654 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:26, 01:24](450 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:10, 04:48] ( 1462 warnings 1490 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:47, 11:42](637 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:10, 10:34] ( 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [19:50, 17:56](753 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [20:55, 18:16](832 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:10, 10:45] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:19, 11:58](773 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:11, 10:26] ( 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:04, 05:38](918 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:02, 05:34](905 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:46, 16:27](1344 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:11, 07:47] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:16, 02:10](1150 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:19](1115 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:08](1016 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:16, 02:07](1020 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:15, 02:09](1009 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:15, 02:13](1138 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:15, 02:13](1140 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:15, 02:07](1027 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:55, 04:57](1161 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:53, 04:52](1158 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:14, 02:10](1150 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:15, 03:01](2407 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:18, 03:04](2408 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:21] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:15, 05:11](1071 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:10, 06:55] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:14, 02:10](1153 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:46] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:26, 00:58](331 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:20, 00:49](574 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:23, 00:35](574 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:10, 09:08] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:47, 04:23](2021 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:10, 08:44] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:40, 07:52](2047 MB) + +PASS -- COMPILE 'atml_intel' [11:11, 09:13] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:58, 05:45](1890 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:55, 05:38](1900 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:50, 02:56](1125 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:11, 04:36] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:53, 05:57](1920 MB) + +PASS -- COMPILE 'atmw_intel' [11:11, 09:28] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:47, 01:45](1940 MB) + +PASS -- COMPILE 'atmaero_intel' [10:11, 08:57] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:44, 03:44](2015 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:50, 04:23](1780 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:43, 04:25](1798 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:11, 03:45] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [19:18, 16:45](4541 MB) + +PASS -- COMPILE 'atm_fbh_intel' [09:11, 08:05] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:23, 09:48](1076 MB) + +PASS -- COMPILE 'datm_cdeps_intelllvm' [14:11, 12:22] +PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [04:16, 02:18](1163 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [03:10, 01:42] +PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [07:14, 06:06](1087 MB) + +PASS -- COMPILE 'atm_gnu' [06:10, 04:24] +PASS -- TEST 'control_c48_gnu' [09:39, 07:42](1520 MB) +PASS -- TEST 'control_stochy_gnu' [04:19, 02:26](723 MB) +PASS -- TEST 'control_ras_gnu' [05:19, 03:55](722 MB) +PASS -- TEST 'control_p8_gnu' [05:44, 04:06](1698 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:36, 04:01](1726 MB) +PASS -- TEST 'control_flake_gnu' [06:21, 04:55](816 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:10, 04:09] +PASS -- TEST 'rap_control_gnu' [10:35, 08:08](1077 MB) +PASS -- TEST 'rap_decomp_gnu' [10:34, 08:11](1072 MB) +PASS -- TEST 'rap_2threads_gnu' [09:44, 07:13](1112 MB) +PASS -- TEST 'rap_restart_gnu' [05:52, 04:03](878 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [09:45, 08:07](1071 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:32, 08:01](1072 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:56, 06:05](877 MB) +PASS -- TEST 'hrrr_control_gnu' [05:45, 04:02](1059 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:35, 04:05](1130 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:33, 03:38](1006 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:32, 04:07](1057 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:19, 02:08](878 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:18, 02:04](925 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [09:51, 07:50](1068 MB) + +PASS -- COMPILE 'csawmg_gnu' [06:11, 04:34] +PASS -- TEST 'control_csawmg_gnu' [08:25, 07:06](1051 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:10, 07:34] +PASS -- TEST 'control_diag_debug_gnu' [03:36, 01:16](1618 MB) +PASS -- TEST 'regional_debug_gnu' [09:27, 07:12](1137 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:17, 02:08](1089 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:17, 02:02](1081 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:26, 02:07](1087 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:27, 02:12](1087 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:29, 02:28](1260 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:18, 03:12](1087 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:18, 02:05](1090 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:17, 02:11](1083 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:18, 01:16](719 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:17, 01:20](718 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:31, 01:19](1700 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:18, 02:15](1092 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:17, 02:01](1100 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:47, 03:34](1096 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:10, 02:36] +PASS -- TEST 'control_wam_debug_gnu' [07:31, 05:12](1552 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:10, 04:43] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:32, 07:28](954 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:55, 03:54](940 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:47, 06:59](962 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:40, 03:28](882 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:35, 04:01](941 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:41, 05:44](853 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:23, 02:03](855 MB) +PASS -- TEST 'conus13km_control_gnu' [04:40, 02:34](1255 MB) +PASS -- TEST 'conus13km_2threads_gnu' [02:31, 01:04](1161 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:30, 01:30](924 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:10, 10:03] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:28, 04:47](982 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [10:10, 08:26] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:18, 02:00](968 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:18, 02:01](961 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:29, 05:22](1277 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:28, 05:49](946 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [05:26, 03:30](1183 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:27, 05:24](1341 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [10:11, 08:34] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:17, 02:05](997 MB) + +PASS -- COMPILE 's2swa_gnu' [20:11, 18:36] + +PASS -- COMPILE 's2s_gnu' [18:11, 16:51] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [16:02, 14:04](3052 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [05:11, 03:48] + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:11, 16:34] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [41:51, 39:30](2909 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [07:11, 05:17] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [16:51, 14:45](3024 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [17:11, 16:02] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:15, 02:18](766 MB) SYNOPSIS: -Starting Date/Time: 20241116 16:59:31 -Ending Date/Time: 20241116 21:52:53 -Total Time: 04h:54m:21s +Starting Date/Time: 20241119 22:05:40 +Ending Date/Time: 20241120 00:07:43 +Total Time: 02h:02m:30s Compiles Completed: 60/60 Tests Completed: 248/248 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 22d9eaa3c9..82478499ec 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -df9325ac52a9219e80bc6d448ec0d297b6c8a591 +c0b6a8cda620186d9325db673c3432aa64e35713 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,13 +11,13 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 2429d661d1758c22935558df75f6b66bd710ac11 FV3 (remotes/origin/feature/lnd_iau) + 4fd9f30c715adf2be23d9cf5c51ec2a3127765d8 FV3 (remotes/origin/upp_oct) e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 4343656a098516517257c0913689f70a81579e74 FV3/ccpp/physics (EP4-1045-g4343656a) + cfa18610e546ddb633c117afd394bf4aaaeec4dc FV3/ccpp/physics (EP4-1046-gcfa18610) 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 + ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) +-179cae1dd84401cf25d250bd9102e66560a9d328 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) @@ -26,7 +26,7 @@ Submodule hashes used in testing: 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) - 2363beb39016660a157aac49d073f4e04c68c34d NOAHMP-interface/noahmp (remotes/origin/feature/lnd_iau) + 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,257 +38,258 @@ 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-20241112 -COMPARISON DIRECTORY: /lfs5/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_2588667 +BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20241119 +COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_4006099 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic +* (-a) - HPC PROJECT ACCOUNT: h-nems +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [45:19, 43:35] ( 1 warnings 1396 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:26, 13:36](2020 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:19, 47:36] ( 1 warnings 1443 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [25:21, 22:46](1882 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:29, 24:00](2000 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:06, 09:39](1138 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:11, 25:52](1844 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [54:19, 52:56] ( 1 warnings 1440 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [23:55, 22:12](1870 MB) - -PASS -- COMPILE 's2swa_intel' [46:19, 44:20] ( 1 warnings 1415 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [19:09, 17:09](2069 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:30, 17:04](2076 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:30, 08:52](1718 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [20:14, 17:11](2081 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [11:17, 08:59](1739 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [19:05, 16:34](2320 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [20:08, 17:14](2061 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [16:22, 14:03](2019 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:26, 17:06](2072 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:15, 09:13](2018 MB) - -PASS -- COMPILE 's2sw_intel' [43:17, 41:23] ( 1 warnings 1300 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [12:28, 09:49](1916 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:39, 14:02](1978 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:12, 06:14] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [30:27, 27:29](2094 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:59] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [14:03, 11:33](1937 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [39:18, 37:29] ( 1018 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:29, 05:32](1978 MB) - -PASS -- COMPILE 's2s_intel' [39:20, 38:12] ( 1 warnings 1041 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [12:49, 10:17](3004 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:51, 03:01](3011 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:46, 01:45](2458 MB) - -PASS -- COMPILE 's2swa_faster_intel' [34:25, 32:43] ( 1 warnings 1631 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [19:42, 16:18](2059 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [49:22, 47:58] ( 1 warnings 1360 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [35:29, 33:18](1940 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [19:24, 16:22](1124 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [41:19, 39:08](1917 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:50] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:17, 38:41](1933 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [41:17, 39:28] ( 1 warnings 1124 remarks ) -PASS -- TEST 'control_flake_intel' [06:30, 04:24](649 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [07:10, 04:29](1531 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:14, 04:43](1543 MB) -PASS -- TEST 'control_latlon_intel' [07:07, 04:29](1541 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:16, 04:33](1545 MB) -PASS -- TEST 'control_c48_intel' [21:21, 18:19](1696 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:39, 10:13](830 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [21:19, 18:13](1704 MB) -PASS -- TEST 'control_c192_intel' [18:21, 16:03](1704 MB) -PASS -- TEST 'control_c384_intel' [26:21, 22:54](1816 MB) -PASS -- TEST 'control_c384gdas_intel' [18:15, 13:18](1003 MB) -PASS -- TEST 'control_stochy_intel' [04:30, 02:10](604 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:29, 01:14](435 MB) -PASS -- TEST 'control_lndp_intel' [03:30, 02:03](604 MB) -PASS -- TEST 'control_iovr4_intel' [05:33, 03:18](602 MB) -PASS -- TEST 'control_iovr5_intel' [05:33, 03:19](606 MB) -PASS -- TEST 'control_p8_intel' [07:27, 05:02](1832 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:33, 04:14](1837 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:19, 04:55](1832 MB) -PASS -- TEST 'control_restart_p8_intel' [04:52, 02:36](1063 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:22, 04:56](1816 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:53, 02:36](1074 MB) -PASS -- TEST 'control_decomp_p8_intel' [08:22, 05:07](1816 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:23, 04:47](1915 MB) -PASS -- TEST 'control_p8_lndp_intel' [11:15, 08:50](1836 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:24, 05:24](1902 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:24, 04:18](1849 MB) -PASS -- TEST 'merra2_thompson_intel' [07:20, 04:38](1845 MB) -PASS -- TEST 'regional_control_intel' [10:03, 07:16](1009 MB) -PASS -- TEST 'regional_restart_intel' [05:37, 03:48](1003 MB) -PASS -- TEST 'regional_decomp_intel' [10:03, 07:44](1008 MB) -PASS -- TEST 'regional_2threads_intel' [07:04, 04:38](987 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [10:10, 07:24](1011 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:41, 07:04](1003 MB) - -PASS -- COMPILE 'rrfs_intel' [37:17, 35:28] ( 3 warnings 1100 remarks ) -PASS -- TEST 'rap_control_intel' [11:51, 10:07](986 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:16, 05:27](1170 MB) -PASS -- TEST 'rap_decomp_intel' [12:45, 10:47](978 MB) -PASS -- TEST 'rap_2threads_intel' [11:51, 09:42](1066 MB) -PASS -- TEST 'rap_restart_intel' [07:41, 05:15](987 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:53, 10:01](987 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:44, 10:44](976 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:44, 07:31](993 MB) -PASS -- TEST 'hrrr_control_intel' [07:42, 05:10](986 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:41, 05:25](979 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:51, 04:49](1045 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:30, 02:46](910 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:04, 10:01](983 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [14:33, 13:04](1934 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:33, 12:58](1930 MB) - -PASS -- COMPILE 'csawmg_intel' [36:14, 35:04] ( 1098 remarks ) -PASS -- TEST 'control_csawmg_intel' [09:42, 08:03](967 MB) -PASS -- TEST 'control_ras_intel' [06:24, 04:19](675 MB) - -PASS -- COMPILE 'wam_intel' [37:15, 35:45] ( 1002 remarks ) -PASS -- TEST 'control_wam_intel' [16:48, 14:15](1612 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [39:20, 37:14] ( 1302 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:58, 03:38](1836 MB) -PASS -- TEST 'regional_control_faster_intel' [08:37, 06:31](1012 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:12, 08:14] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:48, 02:45](1569 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:54, 02:53](1558 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:28, 03:54](774 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:28, 03:31](779 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:46, 05:26](1087 MB) -PASS -- TEST 'control_ras_debug_intel' [05:28, 03:28](782 MB) -PASS -- TEST 'control_diag_debug_intel' [05:52, 03:20](1628 MB) -PASS -- TEST 'control_debug_p8_intel' [05:53, 03:16](1857 MB) -PASS -- TEST 'regional_debug_intel' [23:52, 21:59](1062 MB) -PASS -- TEST 'rap_control_debug_intel' [08:34, 06:16](1161 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:33, 06:09](1155 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:33, 06:16](1163 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:33, 06:19](1159 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:34, 06:17](1164 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:45, 06:38](1247 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:34, 06:23](1166 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:34, 06:23](1159 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:34, 06:18](1165 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:34, 06:18](1165 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:26, 05:59](1158 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:24, 06:05](1168 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:25, 10:06](1157 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:24, 06:04](1158 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:27, 07:20](1161 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:27, 06:08](1164 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:52, 10:38](1173 MB) - -PASS -- COMPILE 'wam_debug_intel' [12:12, 05:17] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:55, 16:32](1648 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [33:17, 30:48] ( 3 warnings 1032 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:07, 05:12](1025 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:49, 08:15](896 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:46, 04:22](869 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:49, 07:54](933 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:46, 04:01](903 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:46, 04:34](851 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:42, 06:10](895 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:26, 02:19](842 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [34:14, 31:58] ( 3 warnings 1206 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:50, 02:39](1093 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:37, 01:11](1041 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:29](1010 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [35:19, 31:25] ( 3 warnings 1052 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:52, 05:26](909 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 05:12] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:30, 06:01](1043 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:33, 05:54](1034 MB) -PASS -- TEST 'conus13km_debug_intel' [20:03, 17:47](1155 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:03, 17:52](859 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:54, 10:16](1101 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:57, 17:45](1214 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:12, 05:09] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:26, 06:08](1084 MB) - -PASS -- COMPILE 'hafsw_intel' [41:15, 39:58] ( 1 warnings 1434 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [13:29, 06:59](697 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [12:40, 06:20](1069 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [16:45, 09:24](753 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [22:38, 16:01](788 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [26:51, 19:29](796 MB) -PASS -- TEST 'gnv1_nested_intel' [09:55, 06:21](1678 MB) - -PASS -- COMPILE 'hafs_all_intel' [38:20, 36:35] ( 1280 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [14:20, 08:47](757 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [15:26, 08:52](725 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [12:12, 08:14] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:23, 03:34](1078 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:21, 02:13](1040 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:24, 03:27](930 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:24, 03:30](933 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:24, 03:32](937 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:24, 03:35](1074 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:24, 03:35](1068 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:23, 03:27](945 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:14, 07:37](894 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:16, 07:34](857 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:20, 03:33](1070 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:23, 04:59](2374 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:24, 05:01](2429 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:12, 03:29] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:24, 08:03](1027 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:12, 08:13] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:35](1056 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [06:11, 01:42] ( 68 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:34, 01:20](243 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:29, 01:05](264 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:41](263 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [41:15, 36:28] ( 1023 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:15, 04:51](1911 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [37:15, 35:57] ( 1 warnings 1028 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [13:07, 10:34](1909 MB) - -PASS -- COMPILE 'atml_intel' [39:15, 37:34] ( 8 warnings 1173 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:13, 05:45](1853 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:13, 05:48](1872 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:47, 03:20](1066 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:11, 06:19] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:18, 07:17](1879 MB) - -PASS -- COMPILE 'atmw_intel' [43:19, 37:51] ( 1276 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:57, 02:28](1855 MB) - -PASS -- COMPILE 'atmaero_intel' [37:16, 36:01] ( 1106 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:06, 05:18](1905 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:02, 06:15](1706 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:50, 06:21](1723 MB) - -PASS -- COMPILE 'atm_fbh_intel' [33:16, 31:40] ( 3 warnings 1003 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:43, 15:17](1019 MB) +PASS -- COMPILE 's2swa_32bit_intel' [45:14, 43:31] ( 1 warnings 1396 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:19, 13:39](2022 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:14, 47:30] ( 1 warnings 1443 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [35:10, 22:37](1892 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:22, 24:08](2009 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:09, 09:38](1126 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [37:04, 25:56](1849 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [49:14, 47:14] ( 1 warnings 1440 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [34:48, 22:17](1878 MB) + +PASS -- COMPILE 's2swa_intel' [45:14, 44:04] ( 1 warnings 1415 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [20:10, 16:54](2059 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [29:28, 16:54](2062 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:18, 08:54](1713 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [20:08, 17:00](2072 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:19, 08:59](1733 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [20:06, 16:26](2316 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [29:19, 17:06](2064 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [16:22, 14:00](2010 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [20:20, 16:56](2070 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [22:16, 09:06](2012 MB) + +PASS -- COMPILE 's2sw_intel' [42:13, 40:51] ( 1 warnings 1300 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [12:19, 09:54](1906 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:34, 14:06](1964 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:14] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [40:19, 27:35](2087 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:53] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [23:03, 11:34](1932 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [39:14, 37:15] ( 1018 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:14, 05:42](1969 MB) + +PASS -- COMPILE 's2s_intel' [45:15, 38:12] ( 1 warnings 1041 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [12:52, 10:21](3007 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:51, 03:04](3013 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:50, 01:45](2449 MB) + +PASS -- COMPILE 's2swa_faster_intel' [39:22, 32:33] ( 1 warnings 1631 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [19:29, 16:17](2063 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [53:16, 46:42] ( 1 warnings 1360 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [36:22, 33:25](1937 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [19:19, 16:25](1144 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [41:17, 39:03](1917 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:12, 06:02] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [38:10, 36:00](1923 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [39:14, 37:38] ( 1 warnings 1124 remarks ) +PASS -- TEST 'control_flake_intel' [06:32, 04:27](653 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [07:01, 04:26](1534 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:05, 04:43](1542 MB) +PASS -- TEST 'control_latlon_intel' [06:59, 04:27](1528 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:10, 04:40](1542 MB) +PASS -- TEST 'control_c48_intel' [21:10, 18:17](1699 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [12:39, 10:12](828 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [21:09, 18:16](1706 MB) +PASS -- TEST 'control_c192_intel' [18:20, 15:51](1695 MB) +PASS -- TEST 'control_c384_intel' [26:13, 22:58](1819 MB) +PASS -- TEST 'control_c384gdas_intel' [18:03, 13:18](1005 MB) +PASS -- TEST 'control_stochy_intel' [04:32, 02:09](607 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:27, 01:15](434 MB) +PASS -- TEST 'control_lndp_intel' [03:41, 02:02](606 MB) +PASS -- TEST 'control_iovr4_intel' [05:33, 03:16](607 MB) +PASS -- TEST 'control_iovr5_intel' [05:31, 03:19](602 MB) +PASS -- TEST 'control_p8_intel' [07:35, 05:02](1827 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:40, 04:12](1843 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:15, 04:54](1820 MB) +PASS -- TEST 'control_restart_p8_intel' [04:59, 02:41](1059 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:29, 04:56](1825 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:06, 02:33](1072 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:26, 05:05](1808 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:25, 04:48](1913 MB) +PASS -- TEST 'control_p8_lndp_intel' [11:06, 08:50](1825 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:14, 05:19](1901 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:25, 04:15](1849 MB) +PASS -- TEST 'merra2_thompson_intel' [07:18, 04:34](1843 MB) +PASS -- TEST 'regional_control_intel' [09:58, 07:15](1003 MB) +PASS -- TEST 'regional_restart_intel' [05:41, 03:49](1009 MB) +PASS -- TEST 'regional_decomp_intel' [09:58, 07:36](1006 MB) +PASS -- TEST 'regional_2threads_intel' [07:01, 04:27](1000 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:46, 07:10](1005 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:42, 07:02](1010 MB) + +PASS -- COMPILE 'rrfs_intel' [37:15, 35:13] ( 3 warnings 1100 remarks ) +PASS -- TEST 'rap_control_intel' [12:43, 10:10](989 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:11, 05:29](1170 MB) +PASS -- TEST 'rap_decomp_intel' [12:45, 10:46](982 MB) +PASS -- TEST 'rap_2threads_intel' [11:50, 09:46](1069 MB) +PASS -- TEST 'rap_restart_intel' [07:45, 05:09](984 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:47, 10:09](979 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:46, 10:42](980 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:45, 07:33](994 MB) +PASS -- TEST 'hrrr_control_intel' [07:48, 05:16](983 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:48, 05:23](971 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:47, 04:51](1044 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:28, 02:46](917 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:58, 10:00](989 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [15:30, 13:24](1926 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [15:31, 13:01](1927 MB) + +PASS -- COMPILE 'csawmg_intel' [36:16, 35:00] ( 1098 remarks ) +PASS -- TEST 'control_csawmg_intel' [09:41, 08:03](958 MB) +PASS -- TEST 'control_ras_intel' [06:25, 04:18](661 MB) + +PASS -- COMPILE 'wam_intel' [37:15, 35:38] ( 1002 remarks ) +PASS -- TEST 'control_wam_intel' [16:42, 14:16](1608 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [39:16, 38:07] ( 1302 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:52, 03:39](1836 MB) +PASS -- TEST 'regional_control_faster_intel' [08:36, 06:35](1008 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:13, 08:40] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:51, 02:44](1566 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:54, 02:44](1567 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:31, 03:52](778 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:29, 03:31](776 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:46, 05:27](1086 MB) +PASS -- TEST 'control_ras_debug_intel' [05:29, 03:35](783 MB) +PASS -- TEST 'control_diag_debug_intel' [05:54, 03:23](1653 MB) +PASS -- TEST 'control_debug_p8_intel' [05:52, 03:18](1855 MB) +PASS -- TEST 'regional_debug_intel' [23:48, 21:58](1042 MB) +PASS -- TEST 'rap_control_debug_intel' [08:30, 06:13](1160 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:31, 06:08](1174 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:31, 06:14](1165 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:31, 06:17](1162 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:29, 06:17](1164 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:42, 06:31](1246 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:30, 06:24](1159 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:30, 06:21](1156 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:30, 06:19](1164 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:26, 06:05](1162 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:24, 05:59](1158 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:23, 06:05](1159 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:25, 10:01](1158 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:27, 06:01](1161 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:27, 06:11](1166 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:27, 06:11](1161 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:45, 10:40](1169 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:11, 05:04] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:54, 16:34](1641 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:12, 30:50] ( 3 warnings 1032 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:07, 05:08](1044 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:36, 08:12](898 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:41, 04:17](867 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:44, 07:50](939 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:45, 03:59](902 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:40, 04:35](854 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:35, 06:14](891 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:27, 02:20](838 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [33:13, 32:07] ( 3 warnings 1206 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:52, 02:41](1095 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:39, 01:12](1037 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:41, 01:29](1012 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [33:14, 31:22] ( 3 warnings 1052 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:48, 05:25](904 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:07] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:27, 06:00](1042 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:26, 05:52](1044 MB) +PASS -- TEST 'conus13km_debug_intel' [19:55, 17:35](1146 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [19:55, 17:46](849 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:50, 10:12](1074 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:51, 17:39](1205 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:59] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:33, 06:07](1079 MB) + +PASS -- COMPILE 'hafsw_intel' [42:14, 40:38] ( 1 warnings 1434 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:25, 06:47](711 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:38, 06:06](1066 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:38, 09:10](753 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:31, 15:56](785 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:52, 19:25](793 MB) +PASS -- TEST 'gnv1_nested_intel' [09:42, 06:26](1666 MB) + +PASS -- COMPILE 'hafs_all_intel' [38:14, 36:34] ( 1280 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:15, 08:34](748 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:17, 08:40](738 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:12, 08:13] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:23, 03:34](1074 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:22, 02:14](1043 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:23, 03:28](928 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:23, 03:31](931 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:23, 03:32](944 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:23, 03:35](1066 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:24, 03:36](1076 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:23, 03:28](930 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:16, 07:37](897 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:17, 07:27](871 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:20, 03:35](1055 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:23, 05:03](2428 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:23, 05:03](2443 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:22] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:19, 08:02](1025 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:12, 08:10] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:22, 03:33](1068 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:44] ( 68 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:34, 01:16](242 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:29, 01:03](264 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:41](259 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [38:13, 37:04] ( 1023 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:16, 04:44](1908 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [37:14, 36:02] ( 1 warnings 1028 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [13:01, 10:26](1901 MB) + +PASS -- COMPILE 'atml_intel' [39:13, 37:32] ( 8 warnings 1173 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:13, 05:45](1857 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:12, 05:45](1869 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:43, 03:14](1065 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:11, 06:14] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:06, 07:16](1886 MB) + +PASS -- COMPILE 'atmw_intel' [40:14, 38:28] ( 1276 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:55, 02:26](1857 MB) + +PASS -- COMPILE 'atmaero_intel' [38:14, 36:09] ( 1106 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:57, 05:13](1933 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:00, 06:14](1707 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:47, 06:26](1712 MB) + +PASS -- COMPILE 'atm_fbh_intel' [33:14, 31:21] ( 3 warnings 1003 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:35, 15:12](1020 MB) SYNOPSIS: -Starting Date/Time: 20241117 14:13:50 -Ending Date/Time: 20241117 18:47:40 -Total Time: 04h:34m:23s +Starting Date/Time: 20241120 03:43:06 +Ending Date/Time: 20241120 08:10:10 +Total Time: 04h:27m:43s Compiles Completed: 37/37 Tests Completed: 166/166 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index aaf787e99e..50f32f52ec 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -df9325ac52a9219e80bc6d448ec0d297b6c8a591 +c0b6a8cda620186d9325db673c3432aa64e35713 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,13 +11,13 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 2429d661d1758c22935558df75f6b66bd710ac11 FV3 (remotes/origin/feature/lnd_iau) + 4fd9f30c715adf2be23d9cf5c51ec2a3127765d8 FV3 (remotes/origin/upp_oct) e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 4343656a098516517257c0913689f70a81579e74 FV3/ccpp/physics (EP4-1045-g4343656a) + cfa18610e546ddb633c117afd394bf4aaaeec4dc FV3/ccpp/physics (EP4-1046-gcfa18610) 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 + ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) +-179cae1dd84401cf25d250bd9102e66560a9d328 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) @@ -26,7 +26,7 @@ Submodule hashes used in testing: 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) - 2363beb39016660a157aac49d073f4e04c68c34d NOAHMP-interface/noahmp (remotes/origin/feature/lnd_iau) + 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,298 +38,299 @@ 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-20241112 -COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_1737430 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241119 +COMPARISON DIRECTORY: /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_3634136 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [19:10, 17:48] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [26:55, 27:43](2078 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:10, 20:13] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:57, 22:08](1950 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:22, 23:12](2133 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:17, 08:51](1206 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:53, 25:59](1863 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:10, 18:54] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:57, 22:05](1916 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:10, 07:58] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [37:50, 30:38](1923 MB) - -PASS -- COMPILE 's2swa_intel' [18:10, 16:43] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [18:41, 27:04](2143 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [27:57, 27:42](2141 MB) -PASS -- TEST 'cpld_restart_p8_intel' [17:44, 14:40](1791 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [19:52, 27:45](2156 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [20:31, 14:30](1697 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [17:44, 26:28](2397 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [18:37, 27:25](2126 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [41:43, 23:26](2039 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:56, 28:04](2139 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [51:25, 15:55](2706 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [22:07, 09:14](2703 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [01:16, 22:37](3648 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [32:09, 10:58](3493 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [00:41, 10:13](2047 MB) - -PASS -- COMPILE 's2sw_intel' [17:10, 15:21] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [45:09, 26:43](1964 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:20, 11:49](2050 MB) - -PASS -- COMPILE 's2swa_debug_intel' [09:10, 07:59] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [29:25, 23:25](2172 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:10, 07:41] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [18:10, 11:56](1958 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:10, 14:23] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:17, 05:45](1975 MB) - -PASS -- COMPILE 's2s_intel' [16:10, 14:40] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [12:56, 08:39](3031 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [06:56, 03:02](3017 MB) -PASS -- TEST 'cpld_restart_c48_intel' [15:03, 01:54](2463 MB) - -PASS -- COMPILE 's2swa_faster_intel' [23:11, 17:01] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [14:43, 28:37](2140 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:11, 18:10] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [12:23, 29:07](2011 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:23, 14:28](1243 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [36:12, 33:35](1925 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:11, 07:27] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:15, 35:08](1938 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [17:10, 13:45] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [47:30, 03:44](693 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [48:05, 03:36](1574 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [48:08, 03:38](1582 MB) -PASS -- TEST 'control_latlon_intel' [49:51, 04:07](1549 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [51:00, 03:40](1567 MB) -PASS -- TEST 'control_c48_intel' [17:55, 15:17](1710 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [50:39, 08:12](832 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [48:54, 14:44](1709 MB) -PASS -- TEST 'control_c192_intel' [42:59, 13:11](1746 MB) -PASS -- TEST 'control_c384_intel' [41:02, 19:03](1975 MB) -PASS -- TEST 'control_c384gdas_intel' [31:44, 11:07](1310 MB) -PASS -- TEST 'control_stochy_intel' [04:25, 01:54](641 MB) -PASS -- TEST 'control_stochy_restart_intel' [13:40, 01:12](459 MB) -PASS -- TEST 'control_lndp_intel' [03:25, 01:51](638 MB) -PASS -- TEST 'control_iovr4_intel' [04:30, 02:50](630 MB) -PASS -- TEST 'control_iovr5_intel' [04:24, 02:45](635 MB) -PASS -- TEST 'control_p8_intel' [07:08, 04:13](1864 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [17:15, 03:28](1877 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [17:25, 04:04](1870 MB) -PASS -- TEST 'control_restart_p8_intel' [12:17, 02:18](1089 MB) -PASS -- TEST 'control_noqr_p8_intel' [17:13, 04:24](1846 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:28, 02:19](1123 MB) -PASS -- TEST 'control_decomp_p8_intel' [17:08, 04:10](1849 MB) -PASS -- TEST 'control_2threads_p8_intel' [17:12, 04:21](1940 MB) -PASS -- TEST 'control_p8_lndp_intel' [18:44, 07:14](1871 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [14:24, 05:13](1921 MB) -PASS -- TEST 'control_p8_mynn_intel' [12:23, 03:53](1870 MB) -PASS -- TEST 'merra2_thompson_intel' [10:43, 03:47](1873 MB) -PASS -- TEST 'regional_control_intel' [12:41, 07:14](1058 MB) -PASS -- TEST 'regional_restart_intel' [05:40, 03:59](1055 MB) -PASS -- TEST 'regional_decomp_intel' [10:38, 06:49](1073 MB) -PASS -- TEST 'regional_2threads_intel' [08:33, 04:38](1059 MB) -PASS -- TEST 'regional_noquilt_intel' [09:38, 06:29](1373 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:41, 06:30](1080 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:38, 06:31](1071 MB) -PASS -- TEST 'regional_wofs_intel' [09:37, 08:00](1894 MB) - -PASS -- COMPILE 'rrfs_intel' [17:10, 13:47] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [15:17, 08:29](1047 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:56, 05:11](1253 MB) -PASS -- TEST 'rap_decomp_intel' [13:03, 08:44](1007 MB) -PASS -- TEST 'rap_2threads_intel' [13:04, 09:17](1137 MB) -PASS -- TEST 'rap_restart_intel' [07:33, 04:23](1026 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:18, 08:23](1037 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:04, 08:41](1003 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:37, 06:17](1061 MB) -PASS -- TEST 'hrrr_control_intel' [07:08, 04:36](1000 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:59, 04:44](994 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:01, 04:13](1075 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:44, 02:22](942 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:18, 08:54](1032 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [12:24, 10:18](1969 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:25, 10:01](1996 MB) - -PASS -- COMPILE 'csawmg_intel' [15:10, 12:19] -PASS -- TEST 'control_csawmg_intel' [51:48, 07:05](1009 MB) -PASS -- TEST 'control_ras_intel' [48:30, 03:34](712 MB) - -PASS -- COMPILE 'wam_intel' [14:11, 12:30] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [59:52, 14:28](1624 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [19:11, 13:09] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:20, 03:19](1874 MB) -PASS -- TEST 'regional_control_faster_intel' [09:39, 06:56](1054 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [14:11, 09:31] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:45, 02:18](1596 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:43, 02:20](1589 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:23, 03:20](774 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:43](809 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:37, 04:14](1120 MB) -PASS -- TEST 'control_ras_debug_intel' [04:24, 02:48](812 MB) -PASS -- TEST 'control_diag_debug_intel' [04:48, 02:47](1673 MB) -PASS -- TEST 'control_debug_p8_intel' [04:43, 02:44](1896 MB) -PASS -- TEST 'regional_debug_intel' [21:39, 19:20](1052 MB) -PASS -- TEST 'rap_control_debug_intel' [06:23, 05:01](1198 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:26, 04:54](1190 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:22, 05:01](1197 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:21, 05:25](1163 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:26, 04:52](1195 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:38, 05:08](1281 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:23, 05:09](1195 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:23, 05:40](1172 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:24, 04:59](1202 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:21, 05:07](1198 MB) -PASS -- TEST 'rap_noah_debug_intel' [08:21, 05:31](1166 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:21, 04:55](1203 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:22, 07:55](1195 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:23, 05:20](1193 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:26, 05:54](1202 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:25, 04:58](1196 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:31, 09:26](1167 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:10, 06:11] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [58:53, 13:15](1675 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:10, 12:34] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:03, 04:58](1123 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:17, 07:11](978 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:43, 03:48](920 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:55, 07:28](1065 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:13, 04:06](915 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:13, 03:56](889 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [12:34, 05:29](968 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:40, 02:04](859 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:11, 12:33] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:56, 02:49](1138 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:47, 01:12](1109 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [07:45, 01:31](1050 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:11, 13:13] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:48, 04:37](966 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:10, 06:23] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:23, 05:21](1039 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:27, 04:39](1074 MB) -PASS -- TEST 'conus13km_debug_intel' [15:44, 13:39](1228 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:44, 13:34](927 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:39, 08:57](1133 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:39, 15:14](1226 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:10, 06:17] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:29, 04:58](1125 MB) - -PASS -- COMPILE 'hafsw_intel' [22:11, 14:52] ( 1 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:16, 06:20](720 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:25, 07:01](1090 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:24, 08:16](792 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [30:20, 27:05](843 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [37:26, 34:52](862 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:03, 07:11](495 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:32, 08:30](508 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [07:56, 03:31](371 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:30, 09:36](467 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [11:56, 05:21](508 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [10:52, 04:58](506 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:55, 05:41](570 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:31, 01:33](397 MB) -PASS -- TEST 'gnv1_nested_intel' [12:22, 04:35](1705 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [14:10, 07:00] ( 1462 warnings 1490 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:59, 13:21](583 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [27:13, 14:18] ( 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [22:09, 15:15](637 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [22:14, 15:34](719 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [32:11, 15:23] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:30, 11:32](682 MB) - -PASS -- COMPILE 'hafs_all_intel' [38:11, 14:26] ( 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [13:17, 07:27](808 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:12, 08:09](775 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:55, 16:23](1198 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [31:13, 07:53] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:19, 03:01](1135 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [09:20, 01:58](1105 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:18, 02:53](1017 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:19, 02:53](1018 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:17, 02:54](1013 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:17, 03:09](1126 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:19, 02:59](1152 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 03:05](1011 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:08, 06:34](1008 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:05, 06:44](1001 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 02:57](1148 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 04:35](2443 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [13:19, 04:23](2395 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [24:12, 04:30] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [14:19, 06:30](1068 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [33:11, 07:49] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [11:19, 03:14](1144 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [20:11, 01:22] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [09:32, 01:19](245 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [08:25, 00:57](321 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:29, 00:38](318 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [20:12, 01:55] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [08:31, 00:37](565 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [03:31, 00:24](440 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [31:12, 13:41] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [12:12, 04:11](1966 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [25:11, 13:44] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [16:00, 08:44](1976 MB) - -PASS -- COMPILE 'atml_intel' [20:10, 13:59] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [14:32, 06:11](1842 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [14:26, 06:07](1838 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:59, 02:48](1066 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:11, 07:31] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [14:26, 05:48](1893 MB) - -PASS -- COMPILE 'atmw_intel' [18:11, 13:19] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [10:22, 02:17](1896 MB) - -PASS -- COMPILE 'atmaero_intel' [17:11, 13:15] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [12:19, 04:39](1974 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [13:16, 05:26](1756 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [13:03, 06:07](1724 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:11, 06:32] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [27:58, 21:09](4493 MB) - -PASS -- COMPILE 'atm_fbh_intel' [14:10, 12:05] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:29, 14:14](1073 MB) - -PASS -- COMPILE 'hafsw_intelllvm' [10:10, 08:00] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [12:06, 08:03](617 MB) - -PASS -- COMPILE 'hafsw_debug_intelllvm' [10:10, 04:49] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [22:51, 19:34](561 MB) +PASS -- COMPILE 's2swa_32bit_intel' [20:11, 17:44] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [38:38, 27:34](2078 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:13, 21:06] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [35:53, 22:01](1943 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [40:35, 23:07](2125 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [33:28, 08:54](1229 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [39:52, 25:54](1868 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:13, 21:31] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [33:45, 21:43](1955 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:10, 08:00] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [33:43, 30:34](1929 MB) + +PASS -- COMPILE 's2swa_intel' [21:12, 18:22] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [42:49, 27:34](2146 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [43:00, 27:47](2132 MB) +PASS -- TEST 'cpld_restart_p8_intel' [52:05, 14:42](1805 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [41:52, 27:15](2165 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [52:31, 14:16](1701 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [39:41, 25:37](2425 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [42:49, 27:20](2134 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [36:40, 23:14](2042 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [42:55, 27:11](2150 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [28:26, 16:18](2706 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [31:14, 09:02](2697 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [36:58, 20:11](3674 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [36:59, 10:55](3530 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [21:37, 07:58](2073 MB) + +PASS -- COMPILE 's2sw_intel' [19:11, 17:03] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [38:02, 27:04](1971 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [23:18, 11:46](2044 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:10, 08:00] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [26:26, 23:29](2171 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:11, 08:01] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:08, 10:13](2000 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:11, 15:02] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [18:15, 04:49](2016 MB) + +PASS -- COMPILE 's2s_intel' [19:11, 16:31] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [19:57, 08:33](3029 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [14:57, 03:02](3017 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:04, 02:05](2473 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:11, 16:38] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [36:36, 28:28](2140 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 18:57] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [35:21, 29:08](2010 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [49:59, 14:32](1251 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [54:45, 33:38](1928 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 07:17] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [46:18, 34:43](1970 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [18:12, 13:43] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:25, 03:44](686 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:45, 03:32](1574 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:49, 03:36](1583 MB) +PASS -- TEST 'control_latlon_intel' [09:41, 03:30](1569 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:56, 03:33](1573 MB) +PASS -- TEST 'control_c48_intel' [20:50, 14:41](1712 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [13:32, 08:12](835 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [18:48, 14:41](1702 MB) +PASS -- TEST 'control_c192_intel' [15:58, 13:08](1745 MB) +PASS -- TEST 'control_c384_intel' [20:56, 16:39](1999 MB) +PASS -- TEST 'control_c384gdas_intel' [36:53, 09:54](1333 MB) +PASS -- TEST 'control_stochy_intel' [03:26, 01:50](639 MB) +PASS -- TEST 'control_stochy_restart_intel' [25:12, 01:07](475 MB) +PASS -- TEST 'control_lndp_intel' [03:23, 01:44](645 MB) +PASS -- TEST 'control_iovr4_intel' [06:30, 02:45](647 MB) +PASS -- TEST 'control_iovr5_intel' [33:39, 02:43](637 MB) +PASS -- TEST 'control_p8_intel' [51:19, 04:08](1862 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [28:27, 03:38](1870 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [28:39, 04:06](1865 MB) +PASS -- TEST 'control_restart_p8_intel' [10:22, 02:22](1082 MB) +PASS -- TEST 'control_noqr_p8_intel' [25:32, 04:05](1854 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [32:24, 02:16](1131 MB) +PASS -- TEST 'control_decomp_p8_intel' [31:25, 04:09](1854 MB) +PASS -- TEST 'control_2threads_p8_intel' [31:25, 04:19](1942 MB) +PASS -- TEST 'control_p8_lndp_intel' [26:08, 07:14](1859 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [23:39, 04:52](1945 MB) +PASS -- TEST 'control_p8_mynn_intel' [22:41, 03:31](1879 MB) +PASS -- TEST 'merra2_thompson_intel' [21:56, 03:50](1885 MB) +PASS -- TEST 'regional_control_intel' [22:41, 06:38](1079 MB) +PASS -- TEST 'regional_restart_intel' [01:52, 03:32](1069 MB) +PASS -- TEST 'regional_decomp_intel' [16:47, 06:52](1068 MB) +PASS -- TEST 'regional_2threads_intel' [49:04, 04:43](1064 MB) +PASS -- TEST 'regional_noquilt_intel' [17:54, 06:30](1372 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [39:03, 06:31](1070 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [49:54, 06:32](1071 MB) +PASS -- TEST 'regional_wofs_intel' [50:54, 07:59](1895 MB) + +PASS -- COMPILE 'rrfs_intel' [16:12, 13:53] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [45:42, 08:30](1043 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [40:32, 05:13](1249 MB) +PASS -- TEST 'rap_decomp_intel' [35:07, 08:46](1021 MB) +PASS -- TEST 'rap_2threads_intel' [34:12, 08:40](1154 MB) +PASS -- TEST 'rap_restart_intel' [07:34, 04:25](1034 MB) +PASS -- TEST 'rap_sfcdiff_intel' [29:35, 08:24](1051 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:32, 08:41](1010 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:37, 06:19](1059 MB) +PASS -- TEST 'hrrr_control_intel' [58:11, 04:23](1028 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [57:15, 04:26](1018 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [55:03, 04:12](1081 MB) +PASS -- TEST 'hrrr_control_restart_intel' [06:27, 02:23](940 MB) +PASS -- TEST 'rrfs_v1beta_intel' [58:36, 08:19](1034 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [43:31, 09:52](1976 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [40:30, 09:37](2007 MB) + +PASS -- COMPILE 'csawmg_intel' [16:12, 13:32] +PASS -- TEST 'control_csawmg_intel' [36:44, 06:37](1012 MB) +PASS -- TEST 'control_ras_intel' [29:32, 03:29](714 MB) + +PASS -- COMPILE 'wam_intel' [15:11, 12:42] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:43, 12:50](1647 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [20:12, 13:36] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [28:27, 03:15](1876 MB) +PASS -- TEST 'regional_control_faster_intel' [12:37, 06:16](1073 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [20:11, 09:34] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [25:56, 02:17](1599 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [25:54, 02:12](1599 MB) +PASS -- TEST 'control_stochy_debug_intel' [25:28, 03:01](815 MB) +PASS -- TEST 'control_lndp_debug_intel' [14:27, 02:47](815 MB) +PASS -- TEST 'control_csawmg_debug_intel' [14:38, 04:23](1127 MB) +PASS -- TEST 'control_ras_debug_intel' [12:26, 02:44](819 MB) +PASS -- TEST 'control_diag_debug_intel' [07:44, 02:50](1664 MB) +PASS -- TEST 'control_debug_p8_intel' [05:45, 02:43](1893 MB) +PASS -- TEST 'regional_debug_intel' [20:47, 16:52](1085 MB) +PASS -- TEST 'rap_control_debug_intel' [08:30, 04:58](1196 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:28, 04:56](1196 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:23, 04:58](1191 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:23, 05:00](1191 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:28, 05:05](1195 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:34, 05:08](1286 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:26, 05:04](1204 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:25, 05:04](1203 MB) +PASS -- TEST 'rap_lndp_debug_intel' [10:23, 05:08](1208 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:24, 05:04](1196 MB) +PASS -- TEST 'rap_noah_debug_intel' [09:24, 05:14](1201 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [09:29, 05:09](1207 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:24, 08:11](1201 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [09:25, 05:08](1199 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:27, 05:01](1206 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:24, 05:04](1203 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:28, 08:50](1205 MB) + +PASS -- COMPILE 'wam_debug_intel' [15:13, 06:43] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:49, 13:25](1675 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [21:11, 12:52] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:05, 04:55](1130 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:15, 07:12](994 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:43, 03:46](911 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:52, 07:26](1065 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:08, 03:42](936 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:06, 03:55](886 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [56:35, 05:22](962 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [40:50, 02:02](870 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:13, 12:52] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:59, 02:34](1161 MB) +PASS -- TEST 'conus13km_2threads_intel' [39:53, 01:10](1110 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [39:53, 01:28](1058 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:13, 13:06] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:44, 04:35](962 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 06:26] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:29, 05:16](1080 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:29, 04:45](1079 MB) +PASS -- TEST 'conus13km_debug_intel' [22:52, 13:27](1228 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [22:52, 13:57](923 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [15:52, 08:02](1163 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [44:04, 13:47](1287 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:11, 06:09] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [34:34, 05:00](1133 MB) + +PASS -- COMPILE 'hafsw_intel' [17:13, 15:12] ( 1 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [14:18, 06:01](738 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [35:38, 06:20](1114 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [44:30, 07:27](821 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [04:26, 28:10](850 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [12:32, 34:49](870 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [44:07, 07:06](500 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [45:32, 08:28](505 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [40:00, 03:28](375 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [47:32, 09:31](479 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [40:06, 04:42](517 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [44:13, 04:27](528 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [45:14, 05:41](573 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [44:37, 01:34](399 MB) +PASS -- TEST 'gnv1_nested_intel' [49:18, 04:17](1712 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:11, 07:04] ( 1462 warnings 1490 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [55:09, 12:58](584 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:11, 15:37] ( 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [57:11, 15:26](655 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [05:15, 15:37](722 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:12, 14:50] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [02:42, 11:05](703 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:12, 14:13] ( 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [56:29, 07:30](817 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [52:31, 07:34](797 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [54:17, 16:27](1193 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [13:11, 08:42] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [12:20, 02:59](1149 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [37:26, 01:55](1101 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [19:21, 02:51](1023 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [39:25, 02:54](1015 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [44:26, 02:55](1021 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [23:33, 03:06](1154 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [21:33, 03:00](1158 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [22:32, 02:54](1024 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [23:13, 06:36](1021 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [21:18, 06:30](1011 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [17:27, 03:02](1141 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [13:22, 04:20](2448 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [17:32, 04:24](2403 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:11, 04:27] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [19:33, 06:33](1082 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [11:11, 07:36] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [15:30, 03:02](1159 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:11, 01:21] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [12:43, 01:04](252 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [11:35, 00:59](323 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:30, 00:36](323 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [04:10, 01:40] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [11:41, 00:37](550 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [03:33, 00:25](445 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:12, 13:19] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [14:16, 04:11](1969 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [17:12, 12:56] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [19:10, 08:40](1980 MB) + +PASS -- COMPILE 'atml_intel' [17:12, 13:48] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [15:40, 04:57](1860 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:44, 04:51](1873 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:55, 02:51](1070 MB) + +PASS -- COMPILE 'atml_debug_intel' [14:11, 07:42] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:39, 05:46](1895 MB) + +PASS -- COMPILE 'atmw_intel' [19:12, 13:46] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:26, 02:21](1897 MB) + +PASS -- COMPILE 'atmaero_intel' [16:12, 13:07] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:22, 04:35](1968 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:20, 05:25](1761 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:12, 05:27](1755 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:12, 06:28] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [19:07, 20:50](4500 MB) + +PASS -- COMPILE 'atm_fbh_intel' [14:13, 12:19] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:41, 13:53](1083 MB) + +PASS -- COMPILE 'hafsw_intelllvm' [14:11, 08:18] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [05:12, 07:56](572 MB) + +PASS -- COMPILE 'hafsw_debug_intelllvm' [11:11, 05:07] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [16:09, 19:12](564 MB) SYNOPSIS: -Starting Date/Time: 20241116 16:56:42 -Ending Date/Time: 20241116 20:00:15 -Total Time: 03h:04m:05s +Starting Date/Time: 20241119 22:04:32 +Ending Date/Time: 20241120 04:27:35 +Total Time: 06h:24m:10s Compiles Completed: 45/45 Tests Completed: 191/191 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 99d968b03a..42507c1de1 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -8039e2dda4aa47102bbdd66c14d07343fc172513 +971dd252f62c28cf871cb075cccebfc5fb5e48c7 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,13 +11,13 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 2429d661d1758c22935558df75f6b66bd710ac11 FV3 (remotes/origin/feature/lnd_iau) + 4fd9f30c715adf2be23d9cf5c51ec2a3127765d8 FV3 (remotes/origin/upp_oct) e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 4343656a098516517257c0913689f70a81579e74 FV3/ccpp/physics (EP4-1045-g4343656a) + cfa18610e546ddb633c117afd394bf4aaaeec4dc FV3/ccpp/physics (EP4-1046-gcfa18610) 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 + ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) +-179cae1dd84401cf25d250bd9102e66560a9d328 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) @@ -26,7 +26,7 @@ Submodule hashes used in testing: 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) - 2363beb39016660a157aac49d073f4e04c68c34d NOAHMP-interface/noahmp (remotes/origin/feature/lnd_iau) + 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,240 +38,240 @@ 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-20241112 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106936 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241119 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77311 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:35, 11:27] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:23, 03:54](3076 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:36, 12:22] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [12:22, 03:10](1810 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [51:57, 03:47](1830 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [51:33, 03:40](952 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [12:23, 02:46](1778 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:35, 11:36] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [13:23, 02:17](1804 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:22, 05:22] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [19:36, 03:00](1833 MB) - -PASS -- COMPILE 's2swa_intel' [14:37, 12:24] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:22, 02:45](3113 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:22, 03:13](3113 MB) -PASS -- TEST 'cpld_restart_p8_intel' [53:35, 02:22](3044 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:22, 02:12](3140 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [53:37, 02:10](3064 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [12:22, 02:58](3357 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:22, 04:19](3110 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [12:23, 02:43](3061 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:22, 03:13](3117 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [12:31, 06:55](4111 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [40:40, 06:37](4254 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:22, 02:41](3098 MB) - -PASS -- COMPILE 's2sw_intel' [12:30, 11:09] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [14:28, 03:09](1832 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:28, 02:48](1883 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:32, 10:48] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [14:26, 02:50](1887 MB) - -PASS -- COMPILE 's2s_intel' [12:35, 10:24] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [14:23, 02:06](2858 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [14:23, 02:40](2864 MB) -PASS -- TEST 'cpld_restart_c48_intel' [08:14, 02:32](2278 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:40, 16:14] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:18, 02:35](3120 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:35, 11:40] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [13:23, 02:40](1825 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [43:19, 02:53](1001 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [42:45, 02:51](1800 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:14] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [12:15, 02:59](1851 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:26, 09:58] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:00, 02:30](566 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:00, 01:58](1460 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:00, 02:34](1477 MB) -PASS -- TEST 'control_latlon_intel' [03:00, 01:38](1464 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:00, 02:11](1471 MB) -PASS -- TEST 'control_c48_intel' [02:59, 01:37](1569 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [02:59, 02:05](693 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [01:01, 01:49](1572 MB) -PASS -- TEST 'control_c192_intel' [59:40, 01:52](1589 MB) -PASS -- TEST 'control_c384_intel' [58:54, 02:42](1876 MB) -PASS -- TEST 'control_c384gdas_intel' [56:47, 04:14](1078 MB) -PASS -- TEST 'control_stochy_intel' [56:15, 01:51](522 MB) -PASS -- TEST 'control_stochy_restart_intel' [50:45, 01:50](428 MB) -PASS -- TEST 'control_lndp_intel' [55:16, 01:55](522 MB) -PASS -- TEST 'control_iovr4_intel' [55:15, 02:08](520 MB) -PASS -- TEST 'control_iovr5_intel' [54:10, 02:05](521 MB) -PASS -- TEST 'control_p8_intel' [54:09, 02:55](1756 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [54:01, 03:04](1761 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [54:01, 02:41](1757 MB) -PASS -- TEST 'control_restart_p8_intel' [45:35, 03:06](907 MB) -PASS -- TEST 'control_noqr_p8_intel' [53:45, 02:42](1755 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [45:28, 03:05](918 MB) -PASS -- TEST 'control_decomp_p8_intel' [53:17, 02:27](1750 MB) -PASS -- TEST 'control_2threads_p8_intel' [53:15, 02:50](1843 MB) -PASS -- TEST 'control_p8_lndp_intel' [52:58, 02:02](1752 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [52:23, 02:46](1808 MB) -PASS -- TEST 'control_p8_mynn_intel' [52:13, 02:42](1764 MB) -PASS -- TEST 'merra2_thompson_intel' [52:05, 03:29](1760 MB) -PASS -- TEST 'regional_control_intel' [50:24, 01:30](838 MB) -PASS -- TEST 'regional_restart_intel' [42:27, 01:30](843 MB) -PASS -- TEST 'regional_decomp_intel' [50:00, 02:17](838 MB) -PASS -- TEST 'regional_2threads_intel' [49:37, 01:54](895 MB) -PASS -- TEST 'regional_noquilt_intel' [48:33, 01:32](1164 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [48:08, 01:59](834 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [47:53, 01:39](834 MB) -PASS -- TEST 'regional_wofs_intel' [47:09, 01:47](1568 MB) - -PASS -- COMPILE 'rrfs_intel' [11:26, 09:04] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [46:55, 02:56](904 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [46:24, 02:10](1044 MB) -PASS -- TEST 'rap_decomp_intel' [46:18, 02:22](905 MB) -PASS -- TEST 'rap_2threads_intel' [45:47, 02:55](985 MB) -PASS -- TEST 'rap_restart_intel' [35:11, 03:22](775 MB) -PASS -- TEST 'rap_sfcdiff_intel' [45:37, 02:36](902 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [45:37, 02:17](900 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [34:29, 02:22](770 MB) -PASS -- TEST 'hrrr_control_intel' [45:37, 02:40](897 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [44:58, 02:58](903 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [44:41, 02:57](972 MB) -PASS -- TEST 'hrrr_control_restart_intel' [37:45, 02:45](730 MB) -PASS -- TEST 'rrfs_v1beta_intel' [44:01, 02:41](898 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [42:13, 01:43](1851 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [41:46, 02:18](1848 MB) - -PASS -- COMPILE 'csawmg_intel' [10:25, 08:16] -PASS -- TEST 'control_csawmg_intel' [03:57, 02:37](858 MB) -PASS -- TEST 'control_ras_intel' [03:57, 01:59](556 MB) - -PASS -- COMPILE 'wam_intel' [10:25, 08:25] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [41:26, 01:38](1556 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [11:27, 08:39] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [41:26, 02:51](1763 MB) -PASS -- TEST 'regional_control_faster_intel' [41:09, 02:02](833 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:25, 08:20] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [40:43, 01:51](1492 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [40:27, 01:52](1493 MB) -PASS -- TEST 'control_stochy_debug_intel' [40:06, 01:32](691 MB) -PASS -- TEST 'control_lndp_debug_intel' [39:16, 01:45](698 MB) -PASS -- TEST 'control_csawmg_debug_intel' [39:13, 02:42](997 MB) -PASS -- TEST 'control_ras_debug_intel' [38:38, 02:29](701 MB) -PASS -- TEST 'control_diag_debug_intel' [38:38, 01:58](1553 MB) -PASS -- TEST 'control_debug_p8_intel' [37:46, 02:05](1780 MB) -PASS -- TEST 'regional_debug_intel' [37:15, 01:57](875 MB) -PASS -- TEST 'rap_control_debug_intel' [36:32, 01:57](1078 MB) -PASS -- TEST 'hrrr_control_debug_intel' [36:29, 02:24](1068 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [36:26, 02:07](1073 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [36:26, 02:12](1075 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [36:01, 02:16](1079 MB) -PASS -- TEST 'rap_diag_debug_intel' [35:20, 02:23](1161 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [35:18, 02:31](1077 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [35:11, 01:45](1079 MB) -PASS -- TEST 'rap_lndp_debug_intel' [35:07, 01:47](1083 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [34:59, 01:55](1078 MB) -PASS -- TEST 'rap_noah_debug_intel' [34:35, 01:40](1075 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [34:26, 02:32](1073 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [33:26, 01:54](1075 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [33:17, 02:28](1069 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [32:26, 01:44](1074 MB) -PASS -- TEST 'rap_flake_debug_intel' [31:55, 02:29](1077 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [31:15, 02:24](1080 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:23, 04:44] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [04:58, 01:42](1576 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:25, 08:30] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [30:18, 02:22](911 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [30:06, 02:53](780 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [30:04, 04:03](778 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [29:47, 02:52](836 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [29:22, 03:07](828 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [29:00, 02:23](772 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [20:18, 03:19](676 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [22:00, 02:14](661 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:24, 08:28] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [26:49, 02:38](987 MB) -PASS -- TEST 'conus13km_2threads_intel' [19:39, 01:59](987 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [19:23, 02:39](859 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:30, 08:58] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [26:49, 02:57](807 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:23, 04:49] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [26:47, 01:41](954 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [26:47, 01:39](948 MB) -PASS -- TEST 'conus13km_debug_intel' [26:28, 02:35](1040 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [26:23, 02:26](709 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [26:22, 01:32](1040 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:18, 02:33](1107 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:23, 04:50] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [26:16, 01:34](980 MB) - -PASS -- COMPILE 'hafsw_intel' [14:31, 10:22] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [26:14, 03:02](595 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [26:00, 02:28](939 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [25:39, 03:07](646 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [25:35, 02:56](668 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [25:02, 04:03](687 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [24:49, 02:35](380 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [23:49, 03:36](401 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [23:27, 02:25](283 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [22:50, 03:58](366 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [22:20, 02:54](401 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [21:04, 02:51](402 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [20:42, 02:06](474 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [19:25, 01:41](314 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:26, 05:17] ( 1444 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:38, 02:22](500 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [14:30, 09:54] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:34, 02:31](508 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:17, 02:49](700 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:31, 10:08] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [18:14, 03:17](702 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:31, 09:31] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [17:48, 03:37](637 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:35, 02:33](612 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:07, 02:16](878 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:30, 10:03] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [15:14, 02:32](1816 MB) - -PASS -- COMPILE 'atml_intel' [13:29, 09:54] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [08:22, 06:04] ( 866 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [11:29, 09:06] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [14:29, 03:11](3015 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [14:13, 03:20](2891 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:10, 03:15](2902 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:22, 05:21] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [14:10, 03:20](4375 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:27, 11:47] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [47:45, 02:09](3086 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:27, 11:57] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [47:45, 03:01](1807 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:33, 02:58](1839 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [28:19, 02:42](974 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [47:46, 02:36](1789 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:27, 11:55] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [47:45, 02:18](1810 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:24] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [53:52, 03:04](1841 MB) + +PASS -- COMPILE 's2swa_intel' [13:29, 11:24] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [47:43, 03:03](3124 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [47:43, 03:02](3117 MB) +PASS -- TEST 'cpld_restart_p8_intel' [29:50, 02:06](3044 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [47:43, 03:01](3138 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [29:50, 02:08](3063 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [47:43, 02:52](3358 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [47:43, 02:06](3113 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [47:44, 02:35](3060 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [47:43, 03:08](3115 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [47:52, 05:52](4113 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:36, 04:59](4243 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [47:43, 02:40](3096 MB) + +PASS -- COMPILE 's2sw_intel' [12:27, 11:12] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [48:45, 02:07](1818 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [48:45, 02:40](1878 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:27, 10:22] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [48:45, 03:00](1876 MB) + +PASS -- COMPILE 's2s_intel' [12:27, 10:14] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [48:44, 01:46](2861 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [48:44, 01:35](2871 MB) +PASS -- TEST 'cpld_restart_c48_intel' [44:43, 02:20](2283 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:39, 16:12] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [43:34, 03:01](3124 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:29, 11:30] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [47:43, 02:31](1820 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [18:51, 02:52](1004 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:48, 01:55](1790 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:12] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [46:31, 02:32](1847 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:29, 09:42] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [36:17, 02:21](567 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [34:04, 01:56](1460 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [33:48, 01:56](1466 MB) +PASS -- TEST 'control_latlon_intel' [33:11, 02:03](1467 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [33:05, 02:14](1466 MB) +PASS -- TEST 'control_c48_intel' [31:52, 02:17](1565 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [31:52, 01:40](689 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [31:05, 02:16](1572 MB) +PASS -- TEST 'control_c192_intel' [31:04, 02:01](1589 MB) +PASS -- TEST 'control_c384_intel' [31:08, 02:30](1877 MB) +PASS -- TEST 'control_c384gdas_intel' [30:43, 03:56](1066 MB) +PASS -- TEST 'control_stochy_intel' [30:24, 01:21](522 MB) +PASS -- TEST 'control_stochy_restart_intel' [26:54, 02:03](327 MB) +PASS -- TEST 'control_lndp_intel' [29:48, 01:25](521 MB) +PASS -- TEST 'control_iovr4_intel' [29:46, 01:43](520 MB) +PASS -- TEST 'control_iovr5_intel' [29:46, 01:41](515 MB) +PASS -- TEST 'control_p8_intel' [29:33, 02:19](1751 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [28:44, 02:56](1753 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [28:07, 02:28](1759 MB) +PASS -- TEST 'control_restart_p8_intel' [23:07, 02:42](907 MB) +PASS -- TEST 'control_noqr_p8_intel' [28:07, 02:32](1756 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [21:27, 02:45](915 MB) +PASS -- TEST 'control_decomp_p8_intel' [28:02, 02:22](1750 MB) +PASS -- TEST 'control_2threads_p8_intel' [27:37, 02:20](1838 MB) +PASS -- TEST 'control_p8_lndp_intel' [27:36, 02:03](1754 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [27:33, 03:06](1812 MB) +PASS -- TEST 'control_p8_mynn_intel' [27:08, 02:53](1770 MB) +PASS -- TEST 'merra2_thompson_intel' [26:26, 02:37](1758 MB) +PASS -- TEST 'regional_control_intel' [26:16, 02:10](847 MB) +PASS -- TEST 'regional_restart_intel' [18:34, 01:19](839 MB) +PASS -- TEST 'regional_decomp_intel' [25:58, 01:57](840 MB) +PASS -- TEST 'regional_2threads_intel' [25:13, 01:48](893 MB) +PASS -- TEST 'regional_noquilt_intel' [25:12, 01:23](1173 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [24:20, 02:12](845 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [24:09, 02:09](844 MB) +PASS -- TEST 'regional_wofs_intel' [23:18, 01:14](1562 MB) + +PASS -- COMPILE 'rrfs_intel' [10:28, 08:53] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [38:15, 02:34](904 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [38:16, 02:02](1043 MB) +PASS -- TEST 'rap_decomp_intel' [38:15, 02:18](907 MB) +PASS -- TEST 'rap_2threads_intel' [38:15, 02:31](985 MB) +PASS -- TEST 'rap_restart_intel' [22:32, 02:13](771 MB) +PASS -- TEST 'rap_sfcdiff_intel' [38:15, 03:10](901 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [38:15, 02:45](900 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [22:14, 02:37](772 MB) +PASS -- TEST 'hrrr_control_intel' [38:15, 02:11](900 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [38:15, 03:18](901 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [38:16, 02:33](972 MB) +PASS -- TEST 'hrrr_control_restart_intel' [21:30, 02:06](731 MB) +PASS -- TEST 'rrfs_v1beta_intel' [21:27, 03:07](898 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [21:17, 01:55](1859 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [20:43, 02:08](1842 MB) + +PASS -- COMPILE 'csawmg_intel' [09:27, 08:08] +PASS -- TEST 'control_csawmg_intel' [39:18, 01:29](855 MB) +PASS -- TEST 'control_ras_intel' [39:18, 01:45](555 MB) + +PASS -- COMPILE 'wam_intel' [10:28, 08:15] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [19:56, 01:37](1552 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:28, 08:27] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [19:49, 02:03](1756 MB) +PASS -- TEST 'regional_control_faster_intel' [19:22, 02:12](834 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:27, 07:37] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [19:04, 01:40](1490 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [19:04, 01:48](1492 MB) +PASS -- TEST 'control_stochy_debug_intel' [18:37, 01:52](693 MB) +PASS -- TEST 'control_lndp_debug_intel' [18:18, 02:04](696 MB) +PASS -- TEST 'control_csawmg_debug_intel' [18:15, 01:33](996 MB) +PASS -- TEST 'control_ras_debug_intel' [17:55, 02:00](705 MB) +PASS -- TEST 'control_diag_debug_intel' [17:48, 02:13](1553 MB) +PASS -- TEST 'control_debug_p8_intel' [17:21, 02:15](1786 MB) +PASS -- TEST 'regional_debug_intel' [16:50, 01:42](878 MB) +PASS -- TEST 'rap_control_debug_intel' [16:51, 01:42](1077 MB) +PASS -- TEST 'hrrr_control_debug_intel' [16:51, 01:47](1074 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [16:26, 01:45](1072 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [16:25, 01:43](1073 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [16:03, 01:39](1079 MB) +PASS -- TEST 'rap_diag_debug_intel' [15:57, 01:37](1154 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [14:32, 01:32](1077 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [14:14, 01:31](1081 MB) +PASS -- TEST 'rap_lndp_debug_intel' [14:10, 01:35](1078 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [14:05, 01:38](1078 MB) +PASS -- TEST 'rap_noah_debug_intel' [13:52, 01:40](1072 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [13:48, 01:41](1079 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:45, 01:27](1071 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [13:39, 01:44](1068 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [12:57, 01:39](1077 MB) +PASS -- TEST 'rap_flake_debug_intel' [12:44, 01:35](1077 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:20, 03:03](1078 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:22, 04:38] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [41:20, 02:03](1567 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:26, 08:05] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:50, 02:16](909 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:37, 02:35](778 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [11:26, 03:07](779 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:25, 02:37](836 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:53, 02:51](828 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:37, 02:34](768 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [02:42, 02:30](676 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:47, 02:14](659 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:23, 08:07] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [09:13, 02:04](986 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:19, 01:49](988 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:23, 01:45](859 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:24, 08:13] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:13, 02:28](806 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:21, 04:39] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [09:00, 01:58](953 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:49, 02:06](950 MB) +PASS -- TEST 'conus13km_debug_intel' [08:49, 01:58](1038 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [08:34, 01:47](710 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:15, 01:56](1043 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [08:12, 01:44](1104 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:30] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:58, 01:50](983 MB) + +PASS -- COMPILE 'hafsw_intel' [11:26, 10:02] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:36, 03:06](598 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:35, 02:03](943 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:32, 02:37](647 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [06:23, 02:30](670 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [06:20, 02:38](690 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:10, 02:06](379 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:45, 03:06](390 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:26, 02:31](286 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [05:20, 03:28](369 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:47, 02:22](404 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:45, 02:41](410 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [03:15, 02:42](472 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:08, 02:26](428 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:20, 04:51] ( 1444 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [02:22, 02:18](500 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:27, 09:32] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [02:02, 01:57](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [01:30, 02:51](701 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:25, 09:56] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [01:13, 02:28](731 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:25, 08:58] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [00:35, 02:55](637 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [00:11, 03:05](619 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [59:42, 01:27](878 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:26, 09:51] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [59:29, 02:49](1807 MB) + +PASS -- COMPILE 'atml_intel' [11:33, 09:29] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [07:23, 05:28] ( 866 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [10:24, 08:32] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [59:25, 02:27](3009 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [59:24, 02:51](2891 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [59:21, 02:56](2907 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:22, 04:20] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [58:33, 02:47](4370 MB) SYNOPSIS: -Starting Date/Time: 20241118 14:32:45 -Ending Date/Time: 20241118 16:16:55 -Total Time: 01h:44m:54s +Starting Date/Time: 20241120 19:58:28 +Ending Date/Time: 20241120 21:29:53 +Total Time: 01h:31m:59s Compiles Completed: 33/33 Tests Completed: 157/157 diff --git a/tests/test_changes.list b/tests/test_changes.list index 1c5be971bd..e57aa0aceb 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1 +1,44 @@ -control_c48_lnd_iau intel +rap_control intel +regional_spp_sppt_shum_skeb intel +rap_decomp intel +rap_2threads intel +rap_restart intel +rap_sfcdiff intel +rap_sfcdiff_decomp intel +rap_sfcdiff_restart intel +hrrr_control intel +hrrr_control_decomp intel +hrrr_control_2threads intel +hrrr_control_restart intel +regional_spp_sppt_shum_skeb_dyn32_phy32 intel +rap_control_dyn32_phy32 intel +hrrr_control_dyn32_phy32 intel +rap_2threads_dyn32_phy32 intel +hrrr_control_2threads_dyn32_phy32 intel +hrrr_control_decomp_dyn32_phy32 intel +rap_restart_dyn32_phy32 intel +hrrr_control_restart_dyn32_phy32 intel +rap_control_dyn64_phy32 intel +rap_control_dyn32_phy32 intelllvm +rap_control_dyn64_phy32 intelllvm +rap_control gnu +rap_decomp gnu +rap_2threads gnu +rap_restart gnu +rap_sfcdiff gnu +rap_sfcdiff_decomp gnu +rap_sfcdiff_restart gnu +hrrr_control gnu +hrrr_control_noqr gnu +hrrr_control_2threads gnu +hrrr_control_decomp gnu +hrrr_control_restart gnu +hrrr_control_restart_noqr gnu +rap_control_dyn32_phy32 gnu +hrrr_control_dyn32_phy32 gnu +rap_2threads_dyn32_phy32 gnu +hrrr_control_2threads_dyn32_phy32 gnu +hrrr_control_decomp_dyn32_phy32 gnu +rap_restart_dyn32_phy32 gnu +hrrr_control_restart_dyn32_phy32 gnu +rap_control_dyn64_phy32 gnu diff --git a/tests/tests/rap_clm_lake_debug b/tests/tests/rap_clm_lake_debug index 1731c0c928..cc80d2fec5 100644 --- a/tests/tests/rap_clm_lake_debug +++ b/tests/tests/rap_clm_lake_debug @@ -23,3 +23,4 @@ export CCPP_SUITE=FV3_RAP_clm_lake export LKM=1 export IOPT_LAKE=2 export FRAC_ICE=.true. +export WRITE_DOPOST=.false. From 144ccb03e6c82edae73cf12a496ebf060fed65f7 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Mon, 25 Nov 2024 11:12:27 -0500 Subject: [PATCH 13/24] Third reconciliation PR from production/RRFS.v1 (#2482) * UFSWM - Thompson-Eidhammer microphysics code formatting * FV3 - Thompson-Eidhammer microphysics code formatting * ccpp-physics - Thompson-Eidhammer microphysics code formatting --- FV3 | 2 +- tests/bl_date.conf | 2 +- tests/logs/RegressionTests_acorn.log | 529 +++++++-------- tests/logs/RegressionTests_gaea.log | 679 ++++++++++--------- tests/logs/RegressionTests_hera.log | 823 +++++++++++++----------- tests/logs/RegressionTests_hercules.log | 750 ++++++++++----------- tests/logs/RegressionTests_jet.log | 563 +++++++++------- tests/logs/RegressionTests_orion.log | 576 ++++++++--------- tests/logs/RegressionTests_wcoss2.log | 460 ++++++------- tests/test_changes.list | 149 ++++- 10 files changed, 2452 insertions(+), 2081 deletions(-) diff --git a/FV3 b/FV3 index 71a47292c9..b769849792 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 71a47292c920a41e2a8e6f71abff33059445d14f +Subproject commit b769849792dbe799dc1a2e29942864f880ee8445 diff --git a/tests/bl_date.conf b/tests/bl_date.conf index ac2bca3b61..8e9a2de26e 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20241119 +export BL_DATE=20241121 diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 5f4e122a1f..2671e50cf1 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,7 +1,7 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -f814ef71e560a00a30454e00ef05ccf4d20f45b3 +946b7e2833191ab36966b64cff0f15aaddf6ea03 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,13 +11,13 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b71196b0faf74f0fe59558796285424c915b6eaa FV3 (remotes/origin/rrfsv1-to-ufs/dev1) - 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - d5842b617d0bdddd00fd8d45cf1cbf3c9c141258 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5334-gd5842b61) + 915e44e963b804684b872c5545feb9416e742f72 FV3 (remotes/origin/rrfsv1-to-ufs/dev3) + e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) + b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) + 9dffb7e1cd5fceebec065299c791e65e3a30e0c2 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5516-g9dffb7e1) 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 + ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) +-179cae1dd84401cf25d250bd9102e66560a9d328 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) @@ -26,8 +26,8 @@ Submodule hashes used in testing: 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) + 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) + abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,269 +38,270 @@ 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-20241011 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3720938 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241121 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3948084 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:23, 10:09] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [45:59, 02:46](3193 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [32:45, 31:20] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [24:26, 04:08](1914 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [54:59, 03:48](1943 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [54:07, 03:56](1075 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:18, 03:38](1885 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:31, 16:20] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [39:52, 01:59](1899 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:12] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [50:03, 03:41](1941 MB) - -PASS -- COMPILE 's2swa_intel' [40:55, 39:06] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:23, 02:20](3229 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:23, 03:08](3224 MB) -PASS -- TEST 'cpld_restart_p8_intel' [59:13, 02:51](3153 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:15, 02:20](3244 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [59:13, 01:59](3170 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [14:33, 02:29](3460 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:31, 02:18](3219 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:59, 02:53](3167 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:25, 03:17](3227 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:51, 02:34](3204 MB) - -PASS -- COMPILE 's2sw_intel' [10:23, 09:07] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [46:59, 01:56](1918 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [46:59, 03:14](1966 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [25:38, 24:03] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [30:55, 03:07](1966 MB) - -PASS -- COMPILE 's2s_intel' [10:23, 08:58] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [46:58, 01:52](2881 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [46:58, 02:34](2889 MB) -PASS -- TEST 'cpld_restart_c48_intel' [41:28, 02:00](2304 MB) - -PASS -- COMPILE 's2swa_faster_intel' [16:30, 14:44] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [40:53, 02:58](3226 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:36, 19:53] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [35:43, 02:03](1921 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [01:37, 02:27](1102 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [01:32, 02:51](1890 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:21, 07:00] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:41, 02:16](1963 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:23, 08:37] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [36:35, 01:18](660 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [36:35, 01:42](1562 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [36:35, 01:26](1568 MB) -PASS -- TEST 'control_latlon_intel' [36:35, 01:22](1565 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [36:35, 01:57](1565 MB) -PASS -- TEST 'control_c48_intel' [36:34, 02:11](1581 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [36:34, 01:49](706 MB) -PASS -- TEST 'control_c192_intel' [36:35, 02:22](1683 MB) -PASS -- TEST 'control_c384_intel' [36:39, 02:59](1971 MB) -PASS -- TEST 'control_c384gdas_intel' [36:39, 04:03](1162 MB) -PASS -- TEST 'control_stochy_intel' [36:35, 01:24](617 MB) -PASS -- TEST 'control_stochy_restart_intel' [33:01, 02:02](424 MB) -PASS -- TEST 'control_lndp_intel' [36:35, 01:35](615 MB) -PASS -- TEST 'control_iovr4_intel' [36:35, 01:37](612 MB) -PASS -- TEST 'control_iovr5_intel' [36:35, 01:42](611 MB) -PASS -- TEST 'control_p8_intel' [36:35, 02:50](1851 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [36:35, 03:40](1848 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [36:35, 03:35](1850 MB) -PASS -- TEST 'control_restart_p8_intel' [26:48, 03:05](1005 MB) -PASS -- TEST 'control_noqr_p8_intel' [36:35, 02:37](1852 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [23:11, 02:36](1011 MB) -PASS -- TEST 'control_decomp_p8_intel' [36:35, 03:06](1845 MB) -PASS -- TEST 'control_2threads_p8_intel' [36:35, 03:19](1937 MB) -PASS -- TEST 'control_p8_lndp_intel' [36:35, 01:50](1851 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [36:35, 03:07](1904 MB) -PASS -- TEST 'control_p8_mynn_intel' [36:35, 03:11](1864 MB) -PASS -- TEST 'merra2_thompson_intel' [36:35, 04:10](1860 MB) -PASS -- TEST 'regional_control_intel' [34:50, 02:06](859 MB) -PASS -- TEST 'regional_restart_intel' [25:57, 01:43](858 MB) -PASS -- TEST 'regional_decomp_intel' [32:59, 01:39](863 MB) -PASS -- TEST 'regional_2threads_intel' [31:57, 01:50](984 MB) -PASS -- TEST 'regional_noquilt_intel' [31:55, 01:45](1184 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [29:14, 01:41](861 MB) -PASS -- TEST 'regional_wofs_intel' [28:51, 01:57](1581 MB) - -PASS -- COMPILE 'rrfs_intel' [25:40, 23:42] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [20:08, 03:45](1002 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [19:43, 02:00](1137 MB) -PASS -- TEST 'rap_decomp_intel' [19:01, 02:38](1003 MB) -PASS -- TEST 'rap_2threads_intel' [19:01, 03:46](1082 MB) -PASS -- TEST 'rap_restart_intel' [01:31, 03:14](878 MB) -PASS -- TEST 'rap_sfcdiff_intel' [16:43, 04:01](1000 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:30, 03:28](999 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [00:16, 03:41](883 MB) -PASS -- TEST 'hrrr_control_intel' [11:24, 03:10](998 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [10:23, 02:31](992 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [10:24, 03:41](1069 MB) -PASS -- TEST 'hrrr_control_restart_intel' [57:53, 01:49](829 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:08, 03:26](995 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:47, 01:31](1957 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:27, 01:53](1946 MB) - -PASS -- COMPILE 'csawmg_intel' [12:25, 10:47] -PASS -- TEST 'control_csawmg_intel' [28:38, 01:57](951 MB) -PASS -- TEST 'control_ras_intel' [25:08, 02:17](655 MB) - -PASS -- COMPILE 'wam_intel' [13:27, 11:23] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [24:44, 01:42](1645 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:23, 08:03] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [22:56, 03:24](1854 MB) -PASS -- TEST 'regional_control_faster_intel' [22:46, 01:23](856 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [13:26, 11:19] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [22:08, 02:15](1599 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [22:01, 02:12](1609 MB) -PASS -- TEST 'control_stochy_debug_intel' [21:43, 01:20](803 MB) -PASS -- TEST 'control_lndp_debug_intel' [21:26, 01:37](804 MB) -PASS -- TEST 'control_csawmg_debug_intel' [09:04, 01:48](1109 MB) -PASS -- TEST 'control_ras_debug_intel' [08:51, 01:55](811 MB) -PASS -- TEST 'control_diag_debug_intel' [08:32, 02:13](1664 MB) -PASS -- TEST 'control_debug_p8_intel' [08:29, 01:45](1896 MB) -PASS -- TEST 'regional_debug_intel' [07:46, 01:58](915 MB) -PASS -- TEST 'rap_control_debug_intel' [06:48, 01:29](1186 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:31, 01:40](1181 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [03:03, 01:50](1194 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [01:25, 01:29](1188 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [01:23, 01:38](1187 MB) -PASS -- TEST 'rap_diag_debug_intel' [01:04, 01:33](1280 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [59:06, 01:18](1188 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [58:56, 01:59](1189 MB) -PASS -- TEST 'rap_lndp_debug_intel' [58:15, 01:57](1189 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [57:56, 02:04](1186 MB) -PASS -- TEST 'rap_noah_debug_intel' [57:49, 01:41](1184 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [56:50, 02:00](1183 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [56:31, 02:08](1188 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [56:26, 01:38](1182 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [56:08, 01:53](1187 MB) -PASS -- TEST 'rap_flake_debug_intel' [56:02, 01:24](1188 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [53:56, 04:07](1187 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:22, 07:56] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [53:48, 01:55](1686 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:28, 13:46] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [53:42, 02:34](1013 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [53:02, 03:48](875 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [52:48, 04:18](876 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [52:43, 03:28](932 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [52:25, 02:51](924 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [51:59, 03:17](871 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [39:36, 02:13](780 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [41:27, 02:13](759 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:26, 10:46] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [51:46, 01:46](1077 MB) -PASS -- TEST 'conus13km_2threads_intel' [41:31, 01:31](1061 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [41:30, 01:54](955 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:31, 07:55] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [51:17, 02:31](897 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [24:40, 04:30] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [50:29, 01:22](1065 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [50:14, 02:09](1065 MB) -PASS -- TEST 'conus13km_debug_intel' [49:21, 01:48](1173 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [48:51, 01:27](821 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [48:46, 01:17](1132 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [48:18, 02:15](1240 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [41:57, 04:40] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [46:15, 01:55](1086 MB) - -PASS -- COMPILE 'hafsw_intel' [57:14, 10:20] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [30:02, 02:20](686 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [30:02, 02:05](1039 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [30:00, 02:38](737 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [30:00, 02:22](763 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:01, 03:03](787 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [30:00, 02:36](465 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [30:01, 03:08](476 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [30:01, 02:52](375 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [30:04, 04:15](445 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [30:00, 01:58](495 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [30:00, 02:21](496 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [30:02, 01:47](562 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [30:01, 01:26](406 MB) -PASS -- TEST 'gnv1_nested_intel' [29:59, 04:38](1703 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [51:08, 04:42] ( 1447 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [35:19, 02:18](667 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [53:09, 08:36] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [31:31, 02:25](604 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [31:31, 02:08](785 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [50:05, 08:40] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [31:17, 02:13](785 MB) - -PASS -- COMPILE 'hafs_all_intel' [49:08, 08:29] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [31:10, 02:33](768 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [31:10, 02:30](707 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [31:08, 01:14](898 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [58:14, 15:38] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [21:50, 01:22](752 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [14:23, 01:42](755 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [21:50, 01:18](642 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [21:50, 01:25](642 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [20:06, 01:12](645 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [20:01, 01:22](765 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [17:48, 02:11](766 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [15:48, 02:07](642 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [15:24, 01:49](689 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [15:07, 02:37](670 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [14:15, 01:52](764 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [13:26, 01:35](2031 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [13:21, 01:20](2034 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [54:11, 15:28] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [22:14, 01:49](766 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [43:57, 07:17] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [30:15, 01:17](301 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [30:15, 01:51](449 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [11:25, 02:04](450 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [44:00, 14:23] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [22:49, 02:46](1914 MB) - -PASS -- COMPILE 'atml_intel' [27:43, 18:28] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [13:08, 03:28](1886 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [12:42, 02:56](1885 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [00:13, 02:07](1032 MB) - -PASS -- COMPILE 'atml_debug_intel' [10:23, 09:03] ( 866 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [24:53, 03:22](1929 MB) - -PASS -- COMPILE 'atmw_intel' [15:29, 13:57] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [12:32, 03:24](1879 MB) - -PASS -- COMPILE 'atmaero_intel' [13:27, 11:46] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [12:28, 03:22](3115 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [12:25, 02:46](2996 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [12:18, 03:00](3008 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:21, 06:55] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [22:48, 02:12](4467 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:26, 11:26] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [41:50, 02:35](3192 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:27, 11:51] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [41:49, 04:00](1906 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:27, 04:03](1933 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [20:45, 03:52](1079 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [41:50, 03:34](1881 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:29, 11:59] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [41:48, 01:56](1901 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:22, 05:21] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [47:56, 03:49](1952 MB) + +PASS -- COMPILE 's2swa_intel' [13:27, 11:34] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [41:48, 02:48](3227 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [41:48, 02:34](3225 MB) +PASS -- TEST 'cpld_restart_p8_intel' [20:01, 03:11](3152 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [41:48, 02:30](3244 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [17:26, 02:21](3171 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [41:48, 02:45](3463 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [41:48, 03:21](3218 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [41:49, 02:28](3168 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [41:48, 03:17](3225 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [41:48, 03:14](3206 MB) + +PASS -- COMPILE 's2sw_intel' [12:26, 10:50] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [42:49, 02:09](1925 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [42:49, 03:02](1968 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:24, 10:08] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [43:51, 03:18](1965 MB) + +PASS -- COMPILE 's2s_intel' [12:26, 10:43] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [42:48, 01:55](2878 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [42:48, 02:50](2887 MB) +PASS -- TEST 'cpld_restart_c48_intel' [37:19, 02:09](2310 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:32, 15:30] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [37:44, 02:35](3224 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:28, 11:29] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [41:48, 02:07](1920 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:37, 02:20](1108 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [10:38, 02:25](1902 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 05:06] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:37, 02:33](1964 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:29] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [32:26, 01:47](660 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [32:26, 01:25](1557 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [32:26, 01:31](1568 MB) +PASS -- TEST 'control_latlon_intel' [32:26, 01:33](1570 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [32:26, 02:10](1560 MB) +PASS -- TEST 'control_c48_intel' [32:25, 01:44](1586 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [32:25, 02:04](708 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [32:25, 01:43](1586 MB) +PASS -- TEST 'control_c192_intel' [32:26, 02:12](1687 MB) +PASS -- TEST 'control_c384_intel' [32:18, 02:55](1970 MB) +PASS -- TEST 'control_c384gdas_intel' [29:43, 04:08](1180 MB) +PASS -- TEST 'control_stochy_intel' [27:23, 01:38](615 MB) +PASS -- TEST 'control_stochy_restart_intel' [15:44, 01:56](423 MB) +PASS -- TEST 'control_lndp_intel' [26:44, 02:13](614 MB) +PASS -- TEST 'control_iovr4_intel' [24:33, 02:11](611 MB) +PASS -- TEST 'control_iovr5_intel' [23:27, 02:03](610 MB) +PASS -- TEST 'control_p8_intel' [20:00, 03:35](1850 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [19:51, 03:33](1855 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [19:46, 03:07](1851 MB) +PASS -- TEST 'control_restart_p8_intel' [10:36, 03:17](1009 MB) +PASS -- TEST 'control_noqr_p8_intel' [19:12, 02:16](1844 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [10:29, 02:32](1014 MB) +PASS -- TEST 'control_decomp_p8_intel' [17:26, 02:36](1845 MB) +PASS -- TEST 'control_2threads_p8_intel' [17:19, 02:48](1931 MB) +PASS -- TEST 'control_p8_lndp_intel' [17:11, 02:06](1851 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [16:42, 03:36](1903 MB) +PASS -- TEST 'control_p8_mynn_intel' [16:12, 03:12](1858 MB) +PASS -- TEST 'merra2_thompson_intel' [16:12, 03:53](1853 MB) +PASS -- TEST 'regional_control_intel' [16:03, 02:06](887 MB) +PASS -- TEST 'regional_restart_intel' [08:09, 01:13](873 MB) +PASS -- TEST 'regional_decomp_intel' [15:34, 01:36](891 MB) +PASS -- TEST 'regional_2threads_intel' [15:14, 01:24](1015 MB) +PASS -- TEST 'regional_noquilt_intel' [15:10, 01:17](1219 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [15:06, 01:46](893 MB) +PASS -- TEST 'regional_wofs_intel' [14:20, 01:44](1587 MB) + +PASS -- COMPILE 'rrfs_intel' [10:24, 08:41] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [13:54, 03:14](1002 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:50, 01:57](1158 MB) +PASS -- TEST 'rap_decomp_intel' [12:25, 02:56](1003 MB) +PASS -- TEST 'rap_2threads_intel' [10:23, 02:15](1083 MB) +PASS -- TEST 'rap_restart_intel' [01:28, 03:43](884 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:10, 03:07](1000 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:09, 02:25](998 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [58:46, 03:10](886 MB) +PASS -- TEST 'hrrr_control_intel' [09:49, 02:43](998 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [09:39, 03:10](992 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:26, 03:16](1069 MB) +PASS -- TEST 'hrrr_control_restart_intel' [01:06, 01:28](831 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:12, 03:37](997 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [07:01, 01:22](1956 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [06:35, 02:03](1948 MB) + +PASS -- COMPILE 'csawmg_intel' [09:23, 08:05] +PASS -- TEST 'control_csawmg_intel' [33:26, 02:03](952 MB) +PASS -- TEST 'control_ras_intel' [33:26, 01:53](654 MB) + +PASS -- COMPILE 'wam_intel' [10:23, 08:15] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [06:24, 01:49](1643 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:23, 08:22] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:20, 03:31](1856 MB) +PASS -- TEST 'regional_control_faster_intel' [06:20, 01:36](888 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 07:30] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:50, 01:27](1600 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:42, 01:41](1600 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:36, 02:00](803 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:18, 01:42](803 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:18, 02:06](1109 MB) +PASS -- TEST 'control_ras_debug_intel' [04:16, 01:38](810 MB) +PASS -- TEST 'control_diag_debug_intel' [03:51, 01:42](1661 MB) +PASS -- TEST 'control_debug_p8_intel' [03:33, 01:30](1901 MB) +PASS -- TEST 'regional_debug_intel' [03:29, 02:08](936 MB) +PASS -- TEST 'rap_control_debug_intel' [03:22, 01:43](1188 MB) +PASS -- TEST 'hrrr_control_debug_intel' [01:28, 01:30](1181 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [01:06, 01:31](1185 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [00:52, 01:20](1189 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [00:09, 01:57](1190 MB) +PASS -- TEST 'rap_diag_debug_intel' [58:51, 02:10](1270 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [58:38, 02:01](1198 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [58:37, 01:56](1188 MB) +PASS -- TEST 'rap_lndp_debug_intel' [58:29, 02:13](1188 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [58:03, 01:28](1190 MB) +PASS -- TEST 'rap_noah_debug_intel' [57:58, 01:20](1181 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [57:55, 01:30](1185 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [57:17, 01:48](1183 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [56:45, 01:20](1179 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [56:43, 02:09](1186 MB) +PASS -- TEST 'rap_flake_debug_intel' [55:52, 01:26](1188 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [55:50, 03:44](1189 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:20, 04:23] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [35:28, 02:08](1689 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 08:04] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [55:43, 01:34](1035 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [55:32, 03:39](878 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [55:23, 04:12](877 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [54:56, 03:06](930 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [54:44, 04:38](922 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [54:25, 03:47](869 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [42:11, 03:47](789 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [43:39, 01:22](759 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:22, 08:04] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [52:52, 01:54](1081 MB) +PASS -- TEST 'conus13km_2threads_intel' [46:42, 01:37](1061 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [46:08, 01:15](959 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:24, 08:32] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [52:44, 01:48](901 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:29] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [52:31, 01:21](1059 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [52:03, 01:44](1063 MB) +PASS -- TEST 'conus13km_debug_intel' [51:16, 01:36](1156 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [50:37, 01:59](822 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [50:16, 01:28](1133 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [49:30, 02:02](1222 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 04:41] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [49:25, 01:52](1088 MB) + +PASS -- COMPILE 'hafsw_intel' [12:26, 10:24] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [49:10, 03:02](687 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [49:06, 02:17](1051 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [49:04, 02:38](730 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [48:56, 02:36](771 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [48:23, 02:57](783 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [48:21, 01:57](462 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [47:32, 02:36](501 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [47:13, 02:06](376 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [45:20, 03:15](444 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [44:52, 02:03](496 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [43:58, 02:09](494 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [43:42, 02:36](560 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [43:38, 02:15](406 MB) +PASS -- TEST 'gnv1_nested_intel' [43:29, 04:44](1697 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:20, 05:18] ( 1444 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [42:23, 02:37](676 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:25, 09:40] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [42:14, 02:02](603 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [42:14, 01:44](780 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:25, 10:05] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [41:26, 02:06](780 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:24, 09:37] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [40:52, 02:13](735 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [40:09, 03:07](705 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [39:41, 01:18](900 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [11:24, 09:37] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [39:07, 02:10](766 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [34:43, 01:58](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [37:10, 01:14](645 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [36:11, 01:40](647 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [35:01, 01:31](645 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [34:47, 01:36](751 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [33:48, 01:27](764 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [33:03, 01:44](642 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [33:00, 02:24](687 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [32:53, 02:16](667 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [32:51, 01:29](764 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [32:26, 01:35](2030 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [31:47, 01:52](2032 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [11:24, 09:31] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [31:21, 02:11](766 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:15, 00:54] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [31:19, 02:01](302 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [31:17, 02:12](447 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [25:42, 01:28](448 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:25, 09:59] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [30:39, 02:40](1913 MB) + +PASS -- COMPILE 'atml_intel' [11:25, 09:50] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [30:26, 03:15](1883 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [30:05, 03:37](1879 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [12:33, 01:17](1034 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:20, 05:28] ( 866 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [29:27, 03:13](1920 MB) + +PASS -- COMPILE 'atmw_intel' [10:23, 09:07] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [28:41, 02:51](1879 MB) + +PASS -- COMPILE 'atmaero_intel' [10:24, 08:49] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [28:30, 02:38](3118 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [28:07, 03:11](2997 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [27:44, 02:44](3006 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:20, 04:27] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [27:38, 01:55](4487 MB) SYNOPSIS: -Starting Date/Time: 20241015 18:02:17 -Ending Date/Time: 20241015 20:16:20 -Total Time: 02h:14m:33s +Starting Date/Time: 20241122 14:03:31 +Ending Date/Time: 20241122 16:05:18 +Total Time: 02h:03m:12s Compiles Completed: 37/37 -Tests Completed: 176/176 +Tests Completed: 177/177 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 071cd7e39e..fc23144717 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -c0b6a8cda620186d9325db673c3432aa64e35713 +946b7e2833191ab36966b64cff0f15aaddf6ea03 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 4fd9f30c715adf2be23d9cf5c51ec2a3127765d8 FV3 (remotes/origin/upp_oct) + 915e44e963b804684b872c5545feb9416e742f72 FV3 (remotes/origin/rrfsv1-to-ufs/dev3) e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - cfa18610e546ddb633c117afd394bf4aaaeec4dc FV3/ccpp/physics (EP4-1046-gcfa18610) + 9dffb7e1cd5fceebec065299c791e65e3a30e0c2 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5516-g9dffb7e1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -38,307 +38,396 @@ 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-20241119 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2764378 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20241121 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3381299 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [18:12, 17:03] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:35, 13:45](3188 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:15, 20:36] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:30, 14:52](1898 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:47, 14:58](1937 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:42, 07:12](1067 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:36, 15:45](1873 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:15, 22:09] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:28, 14:13](1901 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:11, 12:03] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [31:43, 28:09](1928 MB) - -PASS -- COMPILE 's2swa_intel' [19:11, 17:58] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [19:48, 16:58](3213 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:16, 16:59](3210 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:46, 09:07](3137 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [21:01, 17:26](3236 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [15:01, 10:16](3159 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [17:57, 14:24](3464 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [21:01, 16:55](3210 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [17:59, 14:29](3154 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [21:12, 17:14](3216 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:14, 12:00](3489 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:45, 07:28](3595 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [30:05, 19:46](4254 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:25, 12:47](4359 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [14:53, 10:44](3186 MB) - -PASS -- COMPILE 's2sw_intel' [18:12, 16:15] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:22, 07:58](1910 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:24, 12:52](1965 MB) - -PASS -- COMPILE 's2swa_debug_intel' [14:11, 12:19] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [26:30, 23:18](3272 MB) - -PASS -- COMPILE 's2sw_debug_intel' [13:11, 12:04] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:11, 09:20](1937 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:12, 15:28] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:50, 05:57](1972 MB) - -PASS -- COMPILE 's2s_intel' [17:12, 15:27] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:14, 05:32](2869 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:23, 01:46](2883 MB) -PASS -- TEST 'cpld_restart_c48_intel' [06:57, 01:04](2293 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:13, 17:33] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [21:32, 15:59](3214 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:15, 20:50] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [29:22, 25:18](1914 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [29:13, 12:41](1099 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [46:14, 29:36](1892 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:11, 10:32] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:18, 30:49](1945 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:12, 13:38] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [09:18, 04:06](655 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [07:14, 03:53](1548 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:55, 03:37](1557 MB) -PASS -- TEST 'control_latlon_intel' [06:38, 03:37](1557 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:38, 03:33](1552 MB) -PASS -- TEST 'control_c48_intel' [11:54, 09:58](1570 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:44, 05:44](694 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [14:59, 12:00](1571 MB) -PASS -- TEST 'control_c192_intel' [14:02, 11:29](1684 MB) -PASS -- TEST 'control_c384_intel' [27:15, 24:27](1966 MB) -PASS -- TEST 'control_c384gdas_intel' [18:10, 14:59](1165 MB) -PASS -- TEST 'control_stochy_intel' [03:36, 01:50](612 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:45, 01:27](415 MB) -PASS -- TEST 'control_lndp_intel' [03:32, 01:48](608 MB) -PASS -- TEST 'control_iovr4_intel' [04:28, 02:45](609 MB) -PASS -- TEST 'control_iovr5_intel' [04:27, 02:53](608 MB) -PASS -- TEST 'control_p8_intel' [07:07, 04:27](1842 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:23, 04:11](1842 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:03, 04:30](1847 MB) -PASS -- TEST 'control_restart_p8_intel' [05:34, 02:12](996 MB) -PASS -- TEST 'control_noqr_p8_intel' [08:41, 04:18](1842 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:04, 02:30](1006 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:17, 04:14](1842 MB) -PASS -- TEST 'control_2threads_p8_intel' [08:26, 03:44](1922 MB) -PASS -- TEST 'control_p8_lndp_intel' [10:21, 06:23](1847 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [10:43, 04:50](1898 MB) -PASS -- TEST 'control_p8_mynn_intel' [08:21, 04:05](1850 MB) -PASS -- TEST 'merra2_thompson_intel' [09:43, 04:13](1843 MB) -PASS -- TEST 'regional_control_intel' [09:25, 04:57](846 MB) -PASS -- TEST 'regional_restart_intel' [07:04, 03:01](847 MB) -PASS -- TEST 'regional_decomp_intel' [09:07, 05:07](854 MB) -PASS -- TEST 'regional_2threads_intel' [06:33, 03:20](989 MB) -PASS -- TEST 'regional_noquilt_intel' [08:14, 04:43](1169 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:03, 04:43](841 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:42, 04:41](835 MB) -PASS -- TEST 'regional_wofs_intel' [08:37, 06:24](1574 MB) - -PASS -- COMPILE 'rrfs_intel' [14:11, 13:01] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [11:07, 07:51](993 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:03, 04:44](1150 MB) -PASS -- TEST 'rap_decomp_intel' [09:56, 07:22](992 MB) -PASS -- TEST 'rap_2threads_intel' [09:01, 06:20](1070 MB) -PASS -- TEST 'rap_restart_intel' [07:06, 04:07](870 MB) -PASS -- TEST 'rap_sfcdiff_intel' [13:12, 07:52](985 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:01, 07:06](986 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:08, 05:23](869 MB) -PASS -- TEST 'hrrr_control_intel' [06:01, 04:04](983 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:01, 03:58](982 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:02, 03:11](1064 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:47, 02:02](814 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:56, 07:23](984 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:40, 08:59](1943 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:40, 08:34](1934 MB) - -PASS -- COMPILE 'csawmg_intel' [14:12, 12:37] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [08:42, 06:57](948 MB) -PASS -- TEST 'control_ras_intel' [05:27, 03:25](643 MB) - -PASS -- COMPILE 'wam_intel' [15:16, 13:16] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:43, 12:30](1639 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:13, 11:36] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:33, 03:45](1841 MB) -PASS -- TEST 'regional_control_faster_intel' [08:16, 04:38](848 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [15:11, 13:42] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:10, 03:09](1581 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:15, 02:49](1581 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:47, 03:10](784 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:47, 02:49](779 MB) -PASS -- TEST 'control_csawmg_debug_intel' [10:10, 04:34](1088 MB) -PASS -- TEST 'control_ras_debug_intel' [05:46, 03:22](791 MB) -PASS -- TEST 'control_diag_debug_intel' [09:36, 03:19](1642 MB) -PASS -- TEST 'control_debug_p8_intel' [10:04, 03:16](1875 MB) -PASS -- TEST 'regional_debug_intel' [27:37, 16:28](887 MB) -PASS -- TEST 'rap_control_debug_intel' [10:37, 05:11](1163 MB) -PASS -- TEST 'hrrr_control_debug_intel' [10:36, 05:29](1159 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [13:29, 05:51](1160 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [13:35, 05:39](1163 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [14:32, 05:32](1164 MB) -PASS -- TEST 'rap_diag_debug_intel' [15:38, 05:16](1248 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [14:26, 05:13](1163 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [14:30, 05:28](1164 MB) -PASS -- TEST 'rap_lndp_debug_intel' [15:32, 05:03](1165 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [15:26, 05:09](1164 MB) -PASS -- TEST 'rap_noah_debug_intel' [13:24, 05:03](1159 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [14:24, 05:22](1162 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [18:23, 08:18](1163 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [15:25, 05:14](1159 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [14:25, 05:31](1165 MB) -PASS -- TEST 'rap_flake_debug_intel' [16:31, 05:14](1164 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [20:45, 08:48](1166 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:20, 08:33] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [26:01, 13:47](1671 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 11:06] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [17:02, 04:18](1024 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [17:45, 06:23](863 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [15:47, 03:48](862 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [19:58, 05:20](925 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [16:41, 02:51](911 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [17:46, 03:29](859 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [18:39, 04:27](771 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [17:24, 01:54](744 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:12, 12:53] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [17:14, 02:27](1071 MB) -PASS -- TEST 'conus13km_2threads_intel' [13:55, 01:06](1063 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [13:42, 01:27](947 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:41] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [20:46, 05:02](893 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:15, 09:17] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [19:30, 05:24](1040 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [25:27, 05:33](1042 MB) -PASS -- TEST 'conus13km_debug_intel' [35:07, 13:36](1123 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [35:05, 13:46](795 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [28:54, 08:11](1113 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [32:52, 13:55](1192 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:15, 08:53] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [23:27, 05:14](1064 MB) - -PASS -- COMPILE 'hafsw_intel' [17:14, 15:44] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [24:13, 05:23](705 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [24:33, 04:26](1068 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [28:36, 07:50](744 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [32:15, 11:44](771 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [33:29, 13:08](798 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [25:07, 05:27](472 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [25:20, 06:44](500 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [20:58, 02:51](394 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [25:30, 07:41](486 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [19:51, 03:52](506 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [19:05, 03:36](505 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [19:00, 04:36](586 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [14:42, 01:33](426 MB) -PASS -- TEST 'gnv1_nested_intel' [17:46, 05:26](1698 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [11:18, 09:37] ( 1467 warnings 1469 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [22:59, 13:15](613 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [15:11, 13:53] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:19, 07:37](631 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:23, 07:39](811 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [17:16, 15:42] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [16:01, 05:54](808 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:19, 13:19] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:15, 06:32](736 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:25, 06:29](720 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:11, 20:08](894 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [12:11, 10:43] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:23, 02:39](763 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:41, 01:36](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:24, 02:27](642 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:25, 02:30](640 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:24, 02:31](642 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:22, 02:35](752 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:23, 02:38](762 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:21, 02:26](643 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:05, 06:20](693 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:04, 06:13](676 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:20, 02:38](763 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:27, 04:41](2031 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:26, 04:42](2031 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:22, 07:13] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:23, 05:36](747 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [13:17, 12:04] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:22, 02:34](763 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:15, 02:34] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:43, 03:01](315 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:35, 01:29](460 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:42, 01:07](460 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [04:14, 02:31] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [03:49, 00:47](444 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [03:44, 00:26](254 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:11, 14:00] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:11, 04:41](1907 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:11, 15:05] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [13:08, 09:27](1901 MB) - -PASS -- COMPILE 'atml_intel' [16:11, 14:58] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:15, 08:22](1880 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:14, 08:15](1876 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:34, 04:01](1024 MB) - -PASS -- COMPILE 'atml_debug_intel' [12:12, 10:20] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:02, 06:48](1900 MB) - -PASS -- COMPILE 'atmw_intel' [16:11, 14:53] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:53, 02:51](1877 MB) - -PASS -- COMPILE 'atmaero_intel' [15:12, 13:32] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:00, 06:41](3099 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:07, 07:07](2984 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:55, 07:32](2991 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [12:14, 10:13] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [25:48, 18:14](4441 MB) - -PASS -- COMPILE 'atm_fbh_intel' [13:18, 12:00] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:40, 09:36](795 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [22:18, 20:17] -PASS -- TEST 'cpld_control_gfsv17_intelllvm' [17:25, 14:16](1899 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [12:11, 10:32] -PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [31:30, 27:19](1937 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [22:12, 20:16] -PASS -- TEST 'cpld_control_sfs_intelllvm' [16:58, 14:14](1897 MB) - -PASS -- COMPILE 's2swa_intelllvm' [18:11, 16:23] -PASS -- TEST 'cpld_control_p8_intelllvm' [20:31, 16:13](3212 MB) +PASS -- COMPILE 's2swa_32bit_intel' [19:13, 17:45] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:19, 12:55](3182 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:14, 18:52] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [17:21, 14:27](1910 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:07, 14:26](1947 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:05, 06:35](1074 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:04, 15:34](1869 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:13, 22:12] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [16:56, 14:02](1896 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:11, 10:12] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [32:34, 28:00](1936 MB) + +PASS -- COMPILE 's2swa_intel' [17:13, 15:16] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [19:50, 16:01](3215 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:59, 16:15](3212 MB) +PASS -- TEST 'cpld_restart_p8_intel' [12:21, 08:54](3138 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [19:50, 16:35](3234 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [12:21, 08:52](3158 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [17:47, 14:08](3461 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [19:46, 15:56](3210 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [17:34, 13:36](3158 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [20:03, 16:26](3216 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:59, 10:21](3489 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:01, 06:56](3600 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [28:42, 19:40](4266 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:41, 12:11](4353 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [13:35, 10:00](3191 MB) + +PASS -- COMPILE 's2sw_intel' [16:14, 15:04] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:37, 07:50](1915 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [17:58, 12:43](1965 MB) + +PASS -- COMPILE 's2swa_debug_intel' [12:12, 10:10] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [26:20, 23:05](3274 MB) + +PASS -- COMPILE 's2sw_debug_intel' [12:13, 10:15] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:16, 09:23](1936 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:14, 14:21] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:02, 05:18](1977 MB) + +PASS -- COMPILE 's2s_intel' [16:14, 14:20] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:17, 05:43](2876 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:15, 02:01](2880 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:47, 01:04](2295 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:14, 18:11] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [18:16, 15:46](3213 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:17, 19:41] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [28:13, 25:10](1923 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:04, 12:36](1092 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [32:04, 29:17](1888 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:13, 12:34] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:50, 30:10](1944 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:11, 11:52] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:22, 03:47](654 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:59, 03:26](1552 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:59, 03:22](1566 MB) +PASS -- TEST 'control_latlon_intel' [05:52, 03:19](1557 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:04, 03:25](1559 MB) +PASS -- TEST 'control_c48_intel' [11:57, 09:57](1572 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:33, 05:48](696 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_c48_lnd_iau_intel' [, ]( MB) +PASS -- TEST 'control_c192_intel' [15:36, 11:21](1690 MB) +PASS -- TEST 'control_c384_intel' [26:16, 23:38](1967 MB) +PASS -- TEST 'control_c384gdas_intel' [17:30, 14:39](1164 MB) +PASS -- TEST 'control_stochy_intel' [04:23, 02:01](608 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:19, 01:08](418 MB) +PASS -- TEST 'control_lndp_intel' [03:25, 01:48](609 MB) +PASS -- TEST 'control_iovr4_intel' [05:23, 02:42](608 MB) +PASS -- TEST 'control_iovr5_intel' [04:24, 02:39](607 MB) +PASS -- TEST 'control_p8_intel' [05:52, 03:38](1844 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:03, 03:18](1841 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:51, 03:51](1848 MB) +PASS -- TEST 'control_restart_p8_intel' [04:48, 02:36](1000 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:46, 03:43](1839 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:47, 02:40](1011 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:17, 03:51](1842 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:20, 03:16](1920 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:43, 06:16](1849 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:22, 04:12](1898 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:26, 03:24](1848 MB) +PASS -- TEST 'merra2_thompson_intel' [06:17, 03:35](1847 MB) +PASS -- TEST 'regional_control_intel' [07:33, 05:01](876 MB) +PASS -- TEST 'regional_restart_intel' [04:29, 02:43](859 MB) +PASS -- TEST 'regional_decomp_intel' [07:29, 05:09](878 MB) +PASS -- TEST 'regional_2threads_intel' [05:28, 03:17](1008 MB) +PASS -- TEST 'regional_noquilt_intel' [07:29, 04:49](1208 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:40, 04:41](886 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:29, 04:41](876 MB) +PASS -- TEST 'regional_wofs_intel' [08:31, 06:58](1571 MB) + +PASS -- COMPILE 'rrfs_intel' [13:11, 11:38] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:38, 07:50](994 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:44, 04:17](1169 MB) +PASS -- TEST 'rap_decomp_intel' [10:16, 07:29](992 MB) +PASS -- TEST 'rap_2threads_intel' [08:36, 06:26](1072 MB) +PASS -- TEST 'rap_restart_intel' [05:35, 03:34](870 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:38, 07:07](990 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:37, 07:29](988 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:42, 05:02](874 MB) +PASS -- TEST 'hrrr_control_intel' [06:40, 03:58](989 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:38, 04:05](982 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:36, 03:29](1063 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:26, 02:03](816 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:35, 06:46](981 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:24, 09:03](1943 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:23, 08:35](1935 MB) + +PASS -- COMPILE 'csawmg_intel' [12:11, 11:03] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [09:31, 06:45](944 MB) +PASS -- TEST 'control_ras_intel' [05:47, 03:18](644 MB) + +PASS -- COMPILE 'wam_intel' [12:11, 10:58] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:58, 11:48](1641 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:12, 10:54] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:46, 03:16](1845 MB) +PASS -- TEST 'regional_control_faster_intel' [06:29, 04:25](880 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [14:14, 12:10] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:34, 02:45](1574 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:36, 02:42](1588 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:20, 03:14](783 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:25, 02:48](779 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:30, 04:28](1084 MB) +PASS -- TEST 'control_ras_debug_intel' [05:21, 03:00](792 MB) +PASS -- TEST 'control_diag_debug_intel' [05:31, 03:35](1642 MB) +PASS -- TEST 'control_debug_p8_intel' [04:28, 02:56](1873 MB) +PASS -- TEST 'regional_debug_intel' [18:29, 16:10](881 MB) +PASS -- TEST 'rap_control_debug_intel' [07:21, 05:09](1166 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:20, 05:07](1163 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:22, 05:16](1163 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:24, 05:29](1159 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:23, 05:55](1163 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:24, 05:21](1246 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:23, 05:14](1164 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:23, 05:08](1166 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:22, 05:04](1165 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:32, 05:07](1166 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:22, 05:35](1159 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:23, 05:16](1162 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:25, 07:51](1159 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:23, 05:41](1161 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:22, 05:07](1166 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:23, 05:09](1164 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:42, 08:43](1171 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:16, 08:24] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:52, 13:34](1662 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:12, 11:27] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:57, 03:53](1042 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:42, 05:57](864 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:40, 03:19](863 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:35, 05:12](917 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:38, 02:51](915 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:35, 03:29](858 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:35, 04:13](775 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:29, 01:42](747 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:12, 10:11] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:00, 02:01](1072 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:53, 01:09](1060 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:54, 01:25](951 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:12, 11:18] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:44, 04:17](898 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:12, 08:03] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:21, 05:01](1039 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:21, 05:05](1042 MB) +PASS -- TEST 'conus13km_debug_intel' [15:50, 13:28](1127 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:48, 14:16](798 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:54, 07:56](1116 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:55, 13:17](1194 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:10, 08:00] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:21, 05:16](1064 MB) + +PASS -- COMPILE 'hafsw_intel' [16:11, 14:28] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:05, 05:11](712 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:25, 04:47](1082 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:29, 07:41](746 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:13, 11:27](773 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:31, 12:56](801 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:59, 05:31](468 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:18, 06:44](498 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:53, 02:50](397 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:20, 07:40](485 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:52, 04:02](506 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:53, 03:37](507 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:06, 04:40](585 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:35, 01:41](426 MB) +PASS -- TEST 'gnv1_nested_intel' [09:02, 05:14](1700 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:11, 09:04] ( 1467 warnings 1469 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:03, 12:53](615 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:18, 14:45] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:01, 07:39](630 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:11, 07:44](807 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:12, 13:30] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:27, 06:09](809 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:12, 13:52] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:08, 06:08](737 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:10, 06:12](717 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:06, 20:11](894 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [12:11, 10:17] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:48, 02:39](764 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:35](740 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:19, 02:34](641 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:49, 02:33](646 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:49, 02:31](641 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:49, 02:40](762 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:45, 02:41](751 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:20, 02:29](642 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:50, 06:06](693 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:47, 06:11](671 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:37](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 04:48](2029 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:19, 04:50](2030 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:11, 07:24] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 05:32](746 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [12:11, 11:00] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:44](763 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:14, 01:44] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:37, 01:33](313 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:53, 01:19](460 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:28, 00:59](460 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [05:11, 03:24] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:43, 00:39](451 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:38, 00:23](254 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:12, 13:07] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:55, 03:52](1908 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:17, 10:51] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [10:51, 08:17](1892 MB) + +PASS -- COMPILE 'atml_intel' [13:11, 11:21] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:55, 06:51](1882 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:48, 06:57](1871 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:30, 03:51](1029 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:11, 07:33] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:47, 06:08](1907 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 10:58] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:39, 02:10](1871 MB) + +PASS -- COMPILE 'atmaero_intel' [13:12, 11:44] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:43, 05:52](3099 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:45, 06:19](2984 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:37, 06:49](2991 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:11, 06:57] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [21:14, 18:26](4434 MB) + +PASS -- COMPILE 'atm_fbh_intel' [11:12, 09:48] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:30, 09:45](830 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [22:17, 20:15] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_gfsv17_intelllvm' [, ]( MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [11:13, 09:38] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_gfsv17_intelllvm' [, ]( MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [20:12, 18:19] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_sfs_intelllvm' [, ]( MB) + +PASS -- COMPILE 's2swa_intelllvm' [15:11, 14:00] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_p8_intelllvm' [, ]( MB) SYNOPSIS: -Starting Date/Time: 20241119 22:36:38 -Ending Date/Time: 20241120 00:54:40 -Total Time: 02h:19m:21s +Starting Date/Time: 20241122 00:16:46 +Ending Date/Time: 20241122 02:35:51 +Total Time: 02h:20m:01s Compiles Completed: 47/47 -Tests Completed: 193/193 +Tests Completed: 188/193 +Failed Tests: +* TEST control_c48_lnd_iau_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2482/ufs-weather-model/tests/logs/log_gaea/run_control_c48_lnd_iau_intel.log +* TEST cpld_control_gfsv17_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2482/ufs-weather-model/tests/logs/log_gaea/run_cpld_control_gfsv17_intelllvm.log +* TEST cpld_debug_gfsv17_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2482/ufs-weather-model/tests/logs/log_gaea/run_cpld_debug_gfsv17_intelllvm.log +* TEST cpld_control_sfs_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2482/ufs-weather-model/tests/logs/log_gaea/run_cpld_control_sfs_intelllvm.log +* TEST cpld_control_p8_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2482/ufs-weather-model/tests/logs/log_gaea/run_cpld_control_p8_intelllvm.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 GAEA REGRESSION TESTING LOG==== +====START OF GAEA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +946b7e2833191ab36966b64cff0f15aaddf6ea03 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) + 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 915e44e963b804684b872c5545feb9416e742f72 FV3 (remotes/origin/rrfsv1-to-ufs/dev3) + e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) + b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) + 9dffb7e1cd5fceebec065299c791e65e3a30e0c2 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5516-g9dffb7e1) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) +-179cae1dd84401cf25d250bd9102e66560a9d328 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) + 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) + abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) + 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: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20241121 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1802626 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-e) - USE ECFLOW + +PASS -- COMPILE 'atm_dyn32_intel' [13:11, 11:12] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_c48_lnd_iau_intel' [13:28, 09:56](1575 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [20:11, 18:10] +PASS -- TEST 'cpld_control_gfsv17_intelllvm' [17:46, 13:37](1897 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [09:11, 07:57] +PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [39:52, 27:08](1922 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [20:11, 18:37] +PASS -- TEST 'cpld_control_sfs_intelllvm' [16:31, 13:36](1899 MB) + +PASS -- COMPILE 's2swa_intelllvm' [15:11, 13:17] +PASS -- TEST 'cpld_control_p8_intelllvm' [18:48, 15:13](3212 MB) + +SYNOPSIS: +Starting Date/Time: 20241122 13:03:15 +Ending Date/Time: 20241122 13:53:40 +Total Time: 00h:50m:45s +Compiles Completed: 5/5 +Tests Completed: 5/5 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 8ccdffcdd6..c87c5eabe1 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -c0b6a8cda620186d9325db673c3432aa64e35713 +946b7e2833191ab36966b64cff0f15aaddf6ea03 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 4fd9f30c715adf2be23d9cf5c51ec2a3127765d8 FV3 (remotes/origin/upp_oct) + 915e44e963b804684b872c5545feb9416e742f72 FV3 (remotes/origin/rrfsv1-to-ufs/dev3) 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) @@ -26,391 +26,458 @@ 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-20241119 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2598855 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241121 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_827548 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:11, 13:05] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:35, 11:41](3315 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:11, 16:01] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:04, 19:43](1980 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:17, 20:32](2162 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:11, 08:11](1269 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:12, 23:21](1870 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:11, 16:38] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [21:44, 19:12](1956 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:10, 05:55] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:09, 26:27](1915 MB) - -PASS -- COMPILE 's2swa_intel' [14:11, 13:03] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [17:30, 14:02](3359 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:42, 14:13](3324 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:27, 07:23](3258 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [18:31, 14:09](3377 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:32, 07:23](3265 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [16:29, 13:23](3638 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:27, 13:59](3345 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:32, 11:58](3225 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:39, 14:10](3361 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [15:27, 10:23](3507 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:58, 06:26](3617 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [25:31, 16:14](4263 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:44, 09:18](4353 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:35, 07:23](3305 MB) - -PASS -- COMPILE 's2sw_intel' [14:11, 12:11] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [11:22, 09:04](1991 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:32, 11:07](2059 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:10, 05:48] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [25:20, 22:34](3401 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:10, 05:32] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:04, 10:01](2019 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:11, 11:14] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:08, 04:21](2030 MB) - -PASS -- COMPILE 's2s_intel' [13:11, 11:57] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:46, 07:50](3039 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:45, 02:22](3033 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:44, 01:27](2448 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:12, 16:32] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:15, 13:31](3358 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:12, 16:05] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:07, 27:56](2020 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:19, 13:45](1263 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:05, 32:59](1934 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:36] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:24, 29:55](1952 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:11, 10:43] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:24, 03:22](709 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:42, 03:14](1594 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:48, 03:17](1585 MB) -PASS -- TEST 'control_latlon_intel' [05:43, 03:11](1586 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:45, 03:15](1591 MB) -PASS -- TEST 'control_c48_intel' [13:44, 11:32](1731 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:25, 06:34](839 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [13:40, 11:33](1723 MB) -PASS -- TEST 'control_c192_intel' [14:05, 11:58](1741 MB) -PASS -- TEST 'control_c384_intel' [16:49, 13:50](1983 MB) -PASS -- TEST 'control_c384gdas_intel' [12:59, 08:17](1382 MB) -PASS -- TEST 'control_stochy_intel' [03:23, 01:39](664 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:26, 00:58](507 MB) -PASS -- TEST 'control_lndp_intel' [03:22, 01:35](655 MB) -PASS -- TEST 'control_iovr4_intel' [04:24, 02:29](657 MB) -PASS -- TEST 'control_iovr5_intel' [04:24, 02:28](654 MB) -PASS -- TEST 'control_p8_intel' [05:57, 03:41](1872 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:59, 03:06](1891 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:50, 03:36](1885 MB) -PASS -- TEST 'control_restart_p8_intel' [04:46, 02:08](1122 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:47, 03:38](1874 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:58, 02:00](1169 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:44, 03:44](1866 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:43, 03:32](1952 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:49, 06:34](1877 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:52, 04:13](1941 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:53, 03:22](1898 MB) -PASS -- TEST 'merra2_thompson_intel' [05:50, 03:24](1886 MB) -PASS -- TEST 'regional_control_intel' [07:35, 05:21](1083 MB) -PASS -- TEST 'regional_restart_intel' [04:36, 02:55](1080 MB) -PASS -- TEST 'regional_decomp_intel' [07:34, 05:41](1082 MB) -PASS -- TEST 'regional_2threads_intel' [05:39, 03:23](1089 MB) -PASS -- TEST 'regional_noquilt_intel' [07:36, 05:22](1394 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:37, 05:19](1092 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:36, 05:20](1086 MB) -PASS -- TEST 'regional_wofs_intel' [08:38, 06:58](1900 MB) - -PASS -- COMPILE 'rrfs_intel' [12:11, 10:23] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:41, 07:51](1101 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:07, 04:07](1248 MB) -PASS -- TEST 'rap_decomp_intel' [10:34, 08:11](1037 MB) -PASS -- TEST 'rap_2threads_intel' [09:35, 07:23](1169 MB) -PASS -- TEST 'rap_restart_intel' [06:41, 04:08](1103 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:39, 07:47](1104 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:35, 08:14](1014 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:49, 05:55](1126 MB) -PASS -- TEST 'hrrr_control_intel' [05:41, 04:04](1036 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:33, 04:09](1032 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:33, 03:45](1089 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:30, 02:09](995 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:43, 07:44](1091 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:31, 09:31](1989 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:27, 09:24](2045 MB) - -PASS -- COMPILE 'csawmg_intel' [12:11, 10:11] -PASS -- TEST 'control_csawmg_intel' [08:42, 06:12](1016 MB) -PASS -- TEST 'control_ras_intel' [05:23, 03:19](755 MB) - -PASS -- COMPILE 'wam_intel' [12:11, 10:11] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:51, 11:21](1665 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:20] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:58, 02:47](1884 MB) -PASS -- TEST 'regional_control_faster_intel' [06:37, 04:56](1085 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 07:46] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:46, 02:18](1615 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:50, 02:08](1614 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:24, 03:08](832 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:23, 02:47](827 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:41, 04:23](1138 MB) -PASS -- TEST 'control_ras_debug_intel' [04:24, 02:48](834 MB) -PASS -- TEST 'control_diag_debug_intel' [05:49, 02:48](1688 MB) -PASS -- TEST 'control_debug_p8_intel' [05:45, 02:38](1908 MB) -PASS -- TEST 'regional_debug_intel' [19:43, 17:29](1099 MB) -PASS -- TEST 'rap_control_debug_intel' [07:25, 04:58](1220 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:24, 05:05](1203 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:24, 05:00](1216 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 05:06](1208 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 05:00](1215 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:36, 05:26](1294 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:21, 05:14](1219 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:20, 05:09](1209 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:23, 05:08](1220 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 04:59](1213 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:23, 04:54](1213 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:22, 05:07](1215 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:22, 08:01](1219 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:23, 05:02](1218 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:21, 05:01](1215 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:22, 05:00](1212 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:39, 08:48](1223 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:11, 04:12] -PASS -- TEST 'control_csawmg_debug_gnu' [04:35, 02:26](719 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:12, 04:42] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:46, 13:51](1684 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 10:09] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:00, 03:58](1119 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:38, 06:32](1045 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:38, 03:28](975 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:32, 06:16](1085 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:31, 03:11](945 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:30, 03:38](924 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:40, 04:56](1027 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:27, 01:52](923 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 10:04] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:52, 02:02](1184 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:43, 00:52](1108 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:44, 01:12](1094 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 10:01] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:41, 04:14](978 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:35] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 05:01](1091 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:21, 04:53](1089 MB) -PASS -- TEST 'conus13km_debug_intel' [15:47, 13:53](1234 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:46, 14:25](921 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:42, 08:03](1157 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:42, 14:44](1292 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:24, 05:01](1139 MB) - -PASS -- COMPILE 'hafsw_intel' [13:11, 11:44] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:12, 04:55](722 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:32, 05:38](1092 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:24, 07:09](799 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:19, 14:40](841 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [23:32, 18:36](866 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:55, 05:37](489 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:31, 06:41](505 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:45, 02:42](370 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:35, 07:28](474 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:46, 03:45](519 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:47, 03:33](520 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:54, 04:06](581 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:13](400 MB) -PASS -- TEST 'gnv1_nested_intel' [06:35, 03:59](1735 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:11, 05:14] ( 1462 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:57, 13:01](582 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:22] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:58, 10:21](662 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:04, 10:19](730 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 11:26] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:31, 08:19](716 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:11, 10:48] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:19, 06:53](843 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:18, 06:55](799 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:55, 16:25](1220 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:10, 06:23] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:18, 02:50](1167 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:43](1111 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:52](1022 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:25, 02:42](1022 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:45](1027 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:16, 02:44](1145 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:16, 02:45](1156 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:39](1023 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:22, 06:51](1082 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:17, 06:19](1043 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:14, 02:48](1153 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 04:03](2399 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 04:04](2447 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:19] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 06:26](1090 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:10, 06:30] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:17, 02:46](1156 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:59] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:29, 00:47](268 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:24, 00:52](323 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:31](324 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:15] -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:30, 00:33](564 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:33, 00:17](455 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:10, 10:46] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:01, 03:45](1975 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:10, 10:21] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:53, 08:12](1975 MB) - -PASS -- COMPILE 'atml_intel' [12:11, 10:41] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:04, 04:21](1858 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:57, 04:13](1869 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:47, 02:23](1079 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:10, 05:40] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:55, 05:52](1895 MB) - -PASS -- COMPILE 'atmw_intel' [12:10, 10:46] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:46, 01:55](1928 MB) - -PASS -- COMPILE 'atmaero_intel' [12:10, 10:29] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:52, 04:09](3196 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:59, 04:54](3082 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:44, 05:03](3106 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:10, 04:40] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_fbh_intel' [11:10, 09:46] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:29, 11:50](1074 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:10, 06:37] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [11:40, 08:38](1040 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:10, 06:49] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [07:39, 04:58](977 MB) - -PASS -- COMPILE 'atm_gnu' [06:11, 04:30] -PASS -- TEST 'control_c48_gnu' [11:41, 09:30](1512 MB) -PASS -- TEST 'control_stochy_gnu' [05:22, 03:25](496 MB) -PASS -- TEST 'control_ras_gnu' [06:20, 04:53](501 MB) -PASS -- TEST 'control_p8_gnu' [07:53, 05:12](1459 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [07:49, 05:08](1448 MB) -PASS -- TEST 'control_flake_gnu' [12:23, 10:29](540 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:10, 04:09] -PASS -- TEST 'rap_control_gnu' [13:31, 11:26](806 MB) -PASS -- TEST 'rap_decomp_gnu' [13:30, 11:40](806 MB) -PASS -- TEST 'rap_2threads_gnu' [12:36, 10:21](919 MB) -PASS -- TEST 'rap_restart_gnu' [38:45, 05:53](574 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [13:36, 11:26](833 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:31, 11:31](805 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [39:44, 08:28](575 MB) -PASS -- TEST 'hrrr_control_gnu' [07:37, 05:49](836 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:29, 05:51](823 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [07:30, 05:20](901 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:30, 05:54](835 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [06:28, 03:00](557 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:28, 02:57](649 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [13:45, 11:12](836 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:10, 03:55] -PASS -- TEST 'control_csawmg_gnu' [10:40, 08:40](737 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:35] -PASS -- TEST 'control_diag_debug_gnu' [03:48, 01:37](1268 MB) -PASS -- TEST 'regional_debug_gnu' [13:37, 11:23](728 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:23, 02:37](815 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:23, 02:36](815 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:21, 02:38](817 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:21, 02:38](816 MB) -PASS -- TEST 'rap_diag_debug_gnu' [05:34, 02:53](899 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:21, 04:08](817 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:23, 02:37](815 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:22, 02:35](814 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:20, 01:39](455 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:20, 01:44](447 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:37, 01:37](1418 MB) -PASS -- TEST 'rap_flake_debug_gnu' [07:25, 02:37](818 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [07:23, 02:41](822 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [08:35, 04:22](826 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:10, 02:20] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:10, 04:05] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [13:30, 09:52](695 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [08:29, 05:14](693 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [12:34, 09:03](740 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:33, 04:43](734 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [08:28, 05:16](690 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [33:40, 07:21](547 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [33:27, 02:43](532 MB) -PASS -- TEST 'conus13km_control_gnu' [05:54, 03:10](863 MB) -PASS -- TEST 'conus13km_2threads_gnu' [36:49, 06:06](870 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [32:49, 01:50](559 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:24] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:38, 06:01](721 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:28] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:22, 02:34](713 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:22, 02:34](705 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:51, 06:55](883 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:43, 06:56](573 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [09:40, 07:51](884 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:39, 06:54](953 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:29] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:24, 02:39](740 MB) - -PASS -- COMPILE 's2swa_gnu' [18:11, 16:39] - -PASS -- COMPILE 's2s_gnu' [17:11, 15:58] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [26:06, 19:00](1496 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:06] - -PASS -- COMPILE 's2sw_pdlib_gnu' [18:12, 16:09] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [41:02, 35:01](1455 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:55] - -PASS -- COMPILE 'datm_cdeps_gnu' [17:12, 15:28] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [07:18, 03:05](695 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:12, 12:33] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [40:33, 11:38](3309 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:12, 16:17] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [44:04, 19:42](1981 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:16, 20:27](2195 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:09, 08:14](1268 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [47:05, 23:08](1870 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:12, 15:57] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [43:47, 19:44](1975 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 05:38] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:02, 26:34](1923 MB) + +PASS -- COMPILE 's2swa_intel' [14:12, 12:48] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [42:22, 14:10](3349 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [42:32, 14:06](3327 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:23, 07:20](3249 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [18:21, 14:07](3352 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [20:18, 07:25](3277 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [41:20, 13:27](3633 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [42:22, 14:13](3344 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [40:32, 11:40](3217 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [42:30, 14:10](3356 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [24:11, 10:26](3525 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:34, 06:27](3615 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [48:58, 16:18](4296 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [54:26, 09:36](4377 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [35:16, 07:27](3308 MB) + +PASS -- COMPILE 's2sw_intel' [13:12, 11:57] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [14:03, 09:04](1980 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:07, 10:59](2061 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:11, 05:29] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [27:04, 23:11](3372 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:12, 05:21] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:56, 10:07](2017 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:12, 11:10] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:09, 04:22](2024 MB) + +PASS -- COMPILE 's2s_intel' [13:12, 11:12] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:47, 07:51](3035 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:46, 02:24](3031 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:43, 01:23](2486 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:11, 16:39] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [32:27, 13:46](3358 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:12, 15:50] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [46:01, 27:50](2032 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [44:20, 13:53](1284 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [03:18, 32:51](1927 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:11, 05:28] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [57:04, 30:01](1957 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:11, 10:27] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [23:22, 03:24](706 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [22:42, 03:17](1598 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [22:46, 03:18](1592 MB) +PASS -- TEST 'control_latlon_intel' [23:38, 03:16](1580 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [22:45, 03:16](1582 MB) +PASS -- TEST 'control_c48_intel' [31:45, 11:36](1728 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [26:23, 06:34](843 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_c48_lnd_iau_intel' [, ]( MB) +PASS -- TEST 'control_c192_intel' [28:55, 12:09](1758 MB) +PASS -- TEST 'control_c384_intel' [29:01, 13:45](1988 MB) +PASS -- TEST 'control_c384gdas_intel' [21:17, 08:22](1379 MB) +PASS -- TEST 'control_stochy_intel' [12:22, 01:40](650 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:26, 00:58](503 MB) +PASS -- TEST 'control_lndp_intel' [03:21, 01:32](659 MB) +PASS -- TEST 'control_iovr4_intel' [05:26, 02:27](654 MB) +PASS -- TEST 'control_iovr5_intel' [04:24, 02:28](647 MB) +PASS -- TEST 'control_p8_intel' [06:58, 03:46](1881 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:56, 03:23](1887 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:01, 03:40](1883 MB) +PASS -- TEST 'control_restart_p8_intel' [05:49, 02:04](1133 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:48, 03:41](1882 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:52, 02:03](1167 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:45, 03:48](1866 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:43, 03:33](1957 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:37, 06:41](1860 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:47, 04:09](1953 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:48, 03:10](1897 MB) +PASS -- TEST 'merra2_thompson_intel' [05:49, 03:39](1895 MB) +PASS -- TEST 'regional_control_intel' [07:40, 05:26](1114 MB) +PASS -- TEST 'regional_restart_intel' [05:35, 02:53](1101 MB) +PASS -- TEST 'regional_decomp_intel' [08:37, 05:43](1124 MB) +PASS -- TEST 'regional_2threads_intel' [06:36, 03:32](1114 MB) +PASS -- TEST 'regional_noquilt_intel' [07:37, 05:24](1425 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [10:38, 05:24](1120 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [10:38, 05:26](1115 MB) +PASS -- TEST 'regional_wofs_intel' [12:37, 07:03](1888 MB) + +PASS -- COMPILE 'rrfs_intel' [13:12, 10:20] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [12:38, 07:52](1113 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:05, 04:13](1265 MB) +PASS -- TEST 'rap_decomp_intel' [12:34, 08:13](1035 MB) +PASS -- TEST 'rap_2threads_intel' [11:36, 07:25](1188 MB) +PASS -- TEST 'rap_restart_intel' [12:51, 04:04](1100 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:43, 07:48](1110 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:33, 08:14](1042 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [14:41, 05:52](1136 MB) +PASS -- TEST 'hrrr_control_intel' [07:42, 04:02](1039 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:32, 04:14](1025 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:33, 03:44](1102 MB) +PASS -- TEST 'hrrr_control_restart_intel' [06:29, 02:09](992 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:45, 07:48](1100 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:25, 09:43](1981 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:25, 09:26](2047 MB) + +PASS -- COMPILE 'csawmg_intel' [13:11, 09:55] +PASS -- TEST 'control_csawmg_intel' [08:37, 06:10](1015 MB) +PASS -- TEST 'control_ras_intel' [07:22, 03:16](739 MB) + +PASS -- COMPILE 'wam_intel' [12:12, 09:53] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:46, 11:15](1658 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:06] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:49, 02:45](1890 MB) +PASS -- TEST 'regional_control_faster_intel' [07:34, 04:53](1122 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [12:12, 07:14] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:40, 02:17](1610 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:43, 02:14](1609 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:22, 03:02](824 MB) +PASS -- TEST 'control_lndp_debug_intel' [07:22, 02:45](832 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:35, 04:19](1139 MB) +PASS -- TEST 'control_ras_debug_intel' [06:21, 02:46](834 MB) +PASS -- TEST 'control_diag_debug_intel' [06:41, 02:44](1678 MB) +PASS -- TEST 'control_debug_p8_intel' [06:36, 02:39](1905 MB) +PASS -- TEST 'regional_debug_intel' [19:36, 17:26](1093 MB) +PASS -- TEST 'rap_control_debug_intel' [08:22, 04:58](1209 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:22, 04:53](1207 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:21, 05:00](1216 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:21, 05:08](1211 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:21, 04:59](1212 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:34, 05:18](1297 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [12:22, 05:05](1216 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [13:20, 05:03](1213 MB) +PASS -- TEST 'rap_lndp_debug_intel' [12:21, 05:00](1221 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [12:20, 04:58](1216 MB) +PASS -- TEST 'rap_noah_debug_intel' [30:21, 04:59](1218 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [31:21, 05:02](1214 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [39:26, 08:16](1217 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [36:23, 05:03](1211 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [35:23, 04:58](1217 MB) +PASS -- TEST 'rap_flake_debug_intel' [35:23, 05:07](1214 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [38:37, 08:37](1221 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [07:10, 04:18] +PASS -- TEST 'control_csawmg_debug_gnu' [19:34, 02:24](718 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:10, 04:31] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [43:46, 13:29](1688 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [21:11, 09:45] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [34:01, 03:55](1137 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [36:37, 06:35](1056 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [33:36, 03:33](973 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [37:31, 06:14](1120 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [34:29, 03:15](954 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [42:41, 03:38](927 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [17:48, 04:57](1027 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [16:25, 01:54](927 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [22:11, 09:59] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [40:52, 02:02](1194 MB) +PASS -- TEST 'conus13km_2threads_intel' [08:45, 00:50](1109 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [07:40, 01:12](1092 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [26:11, 09:54] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [42:42, 04:16](985 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [20:11, 04:43] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [43:24, 04:57](1092 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [43:24, 04:53](1089 MB) +PASS -- TEST 'conus13km_debug_intel' [51:46, 13:59](1235 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [48:48, 14:05](926 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [41:46, 07:59](1162 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [52:46, 13:57](1308 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [21:11, 04:25] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [43:24, 05:18](1136 MB) + +PASS -- COMPILE 'hafsw_intel' [28:11, 11:33] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [39:10, 04:57](727 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [39:30, 05:37](1103 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [39:28, 07:18](815 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [49:27, 14:35](846 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [40:24, 19:20](870 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [25:52, 05:32](491 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [22:19, 06:45](531 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [17:48, 02:52](367 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [23:30, 07:17](537 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [17:48, 03:47](518 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [14:53, 03:32](522 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [15:48, 04:11](585 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [12:25, 01:14](402 MB) +PASS -- TEST 'gnv1_nested_intel' [15:25, 04:03](1728 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [25:11, 04:58] ( 1462 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [20:57, 13:19](583 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [31:11, 11:20] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [19:06, 10:16](642 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:06, 10:18](724 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [31:11, 11:28] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:53, 08:13](712 MB) + +PASS -- COMPILE 'hafs_all_intel' [29:11, 10:46] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [13:12, 06:30](819 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:11, 06:36](802 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:53, 16:14](1216 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:11, 06:27] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:18, 02:53](1140 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:42](1114 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:18, 02:44](1029 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:19, 02:45](1028 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:17, 02:44](1030 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:19, 02:47](1159 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 02:45](1148 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:37](1041 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:54, 06:23](1067 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:43, 06:25](1052 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:46](1160 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:18, 03:59](2513 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:19, 03:55](2468 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 03:06] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:24](1096 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 06:29] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:45](1161 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:01] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:28, 00:49](269 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:23, 00:46](323 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:30](327 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:20] +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:31, 00:31](567 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:33, 00:17](462 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 10:47] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:15, 03:40](1979 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 10:32] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [10:59, 08:05](1984 MB) + +PASS -- COMPILE 'atml_intel' [12:11, 10:59] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:12, 04:13](1856 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:08, 04:20](1859 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:44, 02:25](1099 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:11, 05:32] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:55, 05:54](1886 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 10:55] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:00, 01:58](1921 MB) + +PASS -- COMPILE 'atmaero_intel' [12:11, 10:55] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:02, 04:08](3194 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:05, 04:55](3098 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:42, 05:03](3101 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:11, 04:32] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_fbh_intel' [13:11, 09:42] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:26, 11:42](1123 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [09:11, 06:35] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_dyn32_phy32_intelllvm' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [09:11, 06:37] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_dyn64_phy32_intelllvm' [, ]( MB) + +PASS -- COMPILE 'atm_gnu' [06:11, 04:26] +PASS -- TEST 'control_c48_gnu' [11:38, 09:32](1512 MB) +PASS -- TEST 'control_stochy_gnu' [05:22, 03:31](492 MB) +PASS -- TEST 'control_ras_gnu' [06:20, 04:57](463 MB) +PASS -- TEST 'control_p8_gnu' [07:52, 05:22](1445 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [08:08, 05:10](1450 MB) +PASS -- TEST 'control_flake_gnu' [12:30, 10:20](539 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:11, 04:16] +PASS -- TEST 'rap_control_gnu' [13:38, 11:26](804 MB) +PASS -- TEST 'rap_decomp_gnu' [13:35, 11:33](837 MB) +PASS -- TEST 'rap_2threads_gnu' [12:39, 10:26](917 MB) +PASS -- TEST 'rap_restart_gnu' [07:40, 05:46](573 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:37, 11:20](806 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:35, 11:37](837 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:39, 08:29](579 MB) +PASS -- TEST 'hrrr_control_gnu' [08:33, 05:57](803 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [08:30, 05:56](788 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [07:33, 05:26](911 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [08:33, 05:56](807 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:25, 02:58](557 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:25, 02:59](649 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [13:44, 11:17](801 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 03:54] +PASS -- TEST 'control_csawmg_gnu' [10:42, 08:48](737 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:21] +PASS -- TEST 'control_diag_debug_gnu' [04:43, 01:44](1270 MB) +PASS -- TEST 'regional_debug_gnu' [14:39, 12:01](738 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:22, 02:38](821 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:22, 02:33](820 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:22, 02:39](819 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:19, 02:41](826 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:33, 02:51](906 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:21, 04:06](820 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [05:20, 02:36](816 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:21, 02:37](813 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:19, 01:35](458 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:19, 01:47](449 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:38, 01:33](1452 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:23, 02:37](819 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:22, 02:37](823 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:35, 04:26](822 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:36] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:11, 03:59] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:35, 09:55](696 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:33, 05:13](689 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [11:30, 08:58](742 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:29, 04:44](741 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:30, 05:19](699 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:36, 07:17](552 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:26, 02:41](530 MB) +PASS -- TEST 'conus13km_control_gnu' [05:49, 03:10](863 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:41, 05:37](869 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:41, 01:49](550 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:11, 09:23] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:39, 05:54](720 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [09:11, 06:28] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:22, 02:31](711 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:20, 02:28](707 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:42, 06:46](889 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:41, 06:51](576 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [09:39, 07:32](889 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:40, 06:57](952 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:11, 06:24] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:22, 02:37](731 MB) + +PASS -- COMPILE 's2swa_gnu' [18:10, 16:29] + +PASS -- COMPILE 's2s_gnu' [17:10, 15:46] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [21:04, 18:40](1506 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [05:10, 03:14] + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:11, 15:47] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [33:06, 30:44](1459 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [06:10, 02:55] + +PASS -- COMPILE 'datm_cdeps_gnu' [20:12, 15:45] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:17, 02:57](695 MB) SYNOPSIS: -Starting Date/Time: 20241120 16:34:34 -Ending Date/Time: 20241120 18:45:28 -Total Time: 02h:11m:13s +Starting Date/Time: 20241122 03:48:07 +Ending Date/Time: 20241122 06:50:06 +Total Time: 03h:02m:57s Compiles Completed: 61/61 -Tests Completed: 249/249 +Tests Completed: 246/249 +Failed Tests: +* TEST control_c48_lnd_iau_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2482/ufs-weather-model/tests/logs/log_hera/run_control_c48_lnd_iau_intel.log +* TEST rap_control_dyn32_phy32_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2482/ufs-weather-model/tests/logs/log_hera/run_rap_control_dyn32_phy32_intelllvm.log +* TEST rap_control_dyn64_phy32_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2482/ufs-weather-model/tests/logs/log_hera/run_rap_control_dyn64_phy32_intelllvm.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 HERA REGRESSION TESTING LOG==== +====START OF HERA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +946b7e2833191ab36966b64cff0f15aaddf6ea03 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 915e44e963b804684b872c5545feb9416e742f72 FV3 (remotes/origin/rrfsv1-to-ufs/dev3) + 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) + 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) + abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) + 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: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241121 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2428602 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-e) - USE ECFLOW + +PASS -- COMPILE 'atm_dyn32_intel' [19:12, 11:12] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_c48_lnd_iau_intel' [13:44, 11:32](1730 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [15:13, 07:05] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:44, 08:37](1055 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [15:12, 07:01] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [07:48, 05:09](983 MB) + +SYNOPSIS: +Starting Date/Time: 20241122 17:59:03 +Ending Date/Time: 20241122 18:33:12 +Total Time: 00h:34m:20s +Compiles Completed: 3/3 +Tests Completed: 3/3 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 93a5a347ea..39284f5f36 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7 +1,7 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -c0b6a8cda620186d9325db673c3432aa64e35713 +946b7e2833191ab36966b64cff0f15aaddf6ea03 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 4fd9f30c715adf2be23d9cf5c51ec2a3127765d8 FV3 (remotes/origin/upp_oct) + 915e44e963b804684b872c5545feb9416e742f72 FV3 (remotes/origin/rrfsv1-to-ufs/dev3) e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - cfa18610e546ddb633c117afd394bf4aaaeec4dc FV3/ccpp/physics (EP4-1046-gcfa18610) + 9dffb7e1cd5fceebec065299c791e65e3a30e0c2 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5516-g9dffb7e1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -38,386 +38,386 @@ 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-20241119 -COMPARISON DIRECTORY: /work2/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_313751 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20241121 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1935327 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:10, 13:06] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:59, 14:11](2136 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:10, 18:57] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:08, 17:27](1982 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:41, 18:17](2306 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:33, 06:44](1351 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:05, 18:32](1903 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:10, 19:03] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:36, 16:38](1985 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:10, 07:15] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:08, 25:49](1969 MB) - -PASS -- COMPILE 's2swa_intel' [15:10, 13:27] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:55, 14:52](2203 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:08, 14:27](2200 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:14, 07:42](1948 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:55, 14:36](2228 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:13, 07:42](1738 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [18:51, 16:33](2549 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [16:53, 14:39](2193 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:57, 12:17](2094 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:07, 15:07](2203 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [18:35, 15:38](2977 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:11, 06:18](2916 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [24:15, 18:07](3837 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:12, 09:14](3635 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:54, 07:04](2104 MB) - -PASS -- COMPILE 's2sw_intel' [13:10, 11:47] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:46, 13:42](2025 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:50, 10:36](2100 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:10, 06:49] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [24:00, 21:36](2240 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:06] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:57, 07:39](2041 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:10, 10:04] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:14, 04:50](2067 MB) - -PASS -- COMPILE 's2s_intel' [12:10, 10:09] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [07:38, 06:03](3028 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:42, 01:53](3020 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:41, 01:08](2464 MB) - -PASS -- COMPILE 's2swa_faster_intel' [13:11, 11:52] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [17:02, 15:05](2200 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 15:17] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [25:07, 22:48](2075 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:03, 11:22](1407 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:54, 25:43](1992 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 04:48] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:50, 27:41](2006 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:11, 09:16] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:19, 02:51](719 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:29, 02:42](1585 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:36, 02:45](1597 MB) -PASS -- TEST 'control_latlon_intel' [04:28, 02:45](1590 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:36, 02:45](1590 MB) -PASS -- TEST 'control_c48_intel' [12:33, 10:15](1704 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:24, 05:55](834 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [12:33, 10:14](1708 MB) -PASS -- TEST 'control_c192_intel' [12:41, 10:31](1760 MB) -PASS -- TEST 'control_c384_intel' [16:18, 12:01](2025 MB) -PASS -- TEST 'control_c384gdas_intel' [10:50, 07:17](1502 MB) -PASS -- TEST 'control_stochy_intel' [03:21, 01:24](668 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:27, 00:52](541 MB) -PASS -- TEST 'control_lndp_intel' [03:18, 01:20](661 MB) -PASS -- TEST 'control_iovr4_intel' [03:19, 02:07](655 MB) -PASS -- TEST 'control_iovr5_intel' [03:19, 02:06](666 MB) -PASS -- TEST 'control_p8_intel' [04:46, 03:08](1875 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:50, 02:38](1894 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:49, 03:09](1882 MB) -PASS -- TEST 'control_restart_p8_intel' [03:46, 01:49](1162 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:44, 03:07](1872 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:56, 01:48](1193 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:41, 03:19](1860 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:42, 03:02](1961 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:32, 05:40](1887 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:52, 03:40](1976 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:52, 02:47](1905 MB) -PASS -- TEST 'merra2_thompson_intel' [04:55, 02:55](1914 MB) -PASS -- TEST 'regional_control_intel' [06:27, 04:37](1203 MB) -PASS -- TEST 'regional_restart_intel' [04:28, 02:36](1163 MB) -PASS -- TEST 'regional_decomp_intel' [06:26, 04:47](1175 MB) -PASS -- TEST 'regional_2threads_intel' [04:25, 02:57](1145 MB) -PASS -- TEST 'regional_noquilt_intel' [06:28, 04:28](1516 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:42, 04:38](1192 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:26, 04:36](1193 MB) -PASS -- TEST 'regional_wofs_intel' [07:24, 05:59](2071 MB) - -PASS -- COMPILE 'rrfs_intel' [10:10, 08:47] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:45, 06:55](1183 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:01, 03:27](1360 MB) -PASS -- TEST 'rap_decomp_intel' [08:36, 06:57](1139 MB) -PASS -- TEST 'rap_2threads_intel' [08:37, 06:19](1371 MB) -PASS -- TEST 'rap_restart_intel' [05:52, 03:28](1122 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:47, 08:04](1241 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:33, 09:09](1161 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:53, 06:26](1230 MB) -PASS -- TEST 'hrrr_control_intel' [05:50, 03:25](1078 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:36, 03:51](1034 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:35, 03:09](1109 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:21, 01:57](1012 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:54, 06:43](1191 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:20, 08:22](1993 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:20, 08:10](2152 MB) - -PASS -- COMPILE 'csawmg_intel' [10:10, 08:26] -PASS -- TEST 'control_csawmg_intel' [07:26, 05:31](1054 MB) -PASS -- TEST 'control_ras_intel' [04:20, 02:51](824 MB) - -PASS -- COMPILE 'wam_intel' [10:10, 08:34] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [11:38, 09:48](1659 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:10, 08:43] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:55, 02:31](1906 MB) -PASS -- TEST 'regional_control_faster_intel' [06:27, 04:17](1191 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:10, 06:06] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:33, 02:09](1618 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:35, 01:57](1616 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:19, 02:48](839 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:17, 02:36](845 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:24, 04:59](1153 MB) -PASS -- TEST 'control_ras_debug_intel' [04:17, 02:42](848 MB) -PASS -- TEST 'control_diag_debug_intel' [04:30, 02:19](1698 MB) -PASS -- TEST 'control_debug_p8_intel' [04:31, 02:21](1914 MB) -PASS -- TEST 'regional_debug_intel' [17:27, 15:35](1145 MB) -PASS -- TEST 'rap_control_debug_intel' [06:17, 04:42](1230 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:21, 04:34](1234 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:18, 04:38](1235 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:17, 04:59](1221 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 04:29](1228 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:29, 04:59](1313 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:19, 04:34](1216 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:18, 04:25](1220 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:17, 04:43](1226 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:17, 04:45](1236 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:17, 05:18](1227 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:19, 04:32](1224 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:19, 07:40](1222 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:19, 04:17](1220 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:19, 04:43](1216 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:19, 04:39](1228 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:49, 07:08](1222 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:10, 04:30] -PASS -- TEST 'control_csawmg_debug_gnu' [04:28, 02:21](1045 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:10, 03:56] ( 837 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:10, 08:34] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:45, 03:20](1234 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:45, 05:23](1143 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:00, 02:52](1011 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:39, 05:11](1274 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:51, 02:44](1019 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:38, 03:06](975 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:54, 04:04](1109 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:36, 01:35](948 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:10, 08:19] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:37, 01:41](1287 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:34, 00:41](1183 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:33, 01:05](1130 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:10, 08:12] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:33, 03:55](1087 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:10, 03:43] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:20, 04:24](1103 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:19, 04:24](1106 MB) -PASS -- TEST 'conus13km_debug_intel' [14:32, 12:45](1342 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:35, 13:20](996 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:35, 09:09](1239 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:29, 12:58](1400 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 03:57] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:19, 04:17](1173 MB) - -PASS -- COMPILE 'hafsw_intel' [13:10, 10:22] ( 1 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:06, 05:27](840 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:21, 05:30](1254 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:11, 06:45](937 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:04, 14:14](955 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:14, 17:52](990 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:53, 06:16](591 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:21, 07:58](608 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:42, 03:04](433 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:58, 08:30](551 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:44, 04:09](603 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:47, 03:56](604 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:50, 04:54](654 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:26, 01:24](450 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:10, 04:48] ( 1462 warnings 1490 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:47, 11:42](637 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [12:10, 10:34] ( 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [19:50, 17:56](753 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [20:55, 18:16](832 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:10, 10:45] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:19, 11:58](773 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:11, 10:26] ( 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:04, 05:38](918 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:02, 05:34](905 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:46, 16:27](1344 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:11, 07:47] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:16, 02:10](1150 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:19](1115 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:08](1016 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:16, 02:07](1020 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:15, 02:09](1009 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:15, 02:13](1138 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:15, 02:13](1140 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:15, 02:07](1027 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:55, 04:57](1161 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:53, 04:52](1158 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:14, 02:10](1150 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:15, 03:01](2407 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:18, 03:04](2408 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:21] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:15, 05:11](1071 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:10, 06:55] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:14, 02:10](1153 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:46] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:26, 00:58](331 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:20, 00:49](574 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:23, 00:35](574 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:10, 09:08] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:47, 04:23](2021 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:10, 08:44] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:40, 07:52](2047 MB) - -PASS -- COMPILE 'atml_intel' [11:11, 09:13] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:58, 05:45](1890 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:55, 05:38](1900 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:50, 02:56](1125 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:11, 04:36] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:53, 05:57](1920 MB) - -PASS -- COMPILE 'atmw_intel' [11:11, 09:28] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:47, 01:45](1940 MB) - -PASS -- COMPILE 'atmaero_intel' [10:11, 08:57] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:44, 03:44](2015 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:50, 04:23](1780 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:43, 04:25](1798 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:11, 03:45] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [19:18, 16:45](4541 MB) - -PASS -- COMPILE 'atm_fbh_intel' [09:11, 08:05] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:23, 09:48](1076 MB) - -PASS -- COMPILE 'datm_cdeps_intelllvm' [14:11, 12:22] -PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [04:16, 02:18](1163 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [03:10, 01:42] -PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [07:14, 06:06](1087 MB) - -PASS -- COMPILE 'atm_gnu' [06:10, 04:24] -PASS -- TEST 'control_c48_gnu' [09:39, 07:42](1520 MB) -PASS -- TEST 'control_stochy_gnu' [04:19, 02:26](723 MB) -PASS -- TEST 'control_ras_gnu' [05:19, 03:55](722 MB) -PASS -- TEST 'control_p8_gnu' [05:44, 04:06](1698 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:36, 04:01](1726 MB) -PASS -- TEST 'control_flake_gnu' [06:21, 04:55](816 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:10, 04:09] -PASS -- TEST 'rap_control_gnu' [10:35, 08:08](1077 MB) -PASS -- TEST 'rap_decomp_gnu' [10:34, 08:11](1072 MB) -PASS -- TEST 'rap_2threads_gnu' [09:44, 07:13](1112 MB) -PASS -- TEST 'rap_restart_gnu' [05:52, 04:03](878 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [09:45, 08:07](1071 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:32, 08:01](1072 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:56, 06:05](877 MB) -PASS -- TEST 'hrrr_control_gnu' [05:45, 04:02](1059 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:35, 04:05](1130 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:33, 03:38](1006 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:32, 04:07](1057 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:19, 02:08](878 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:18, 02:04](925 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [09:51, 07:50](1068 MB) - -PASS -- COMPILE 'csawmg_gnu' [06:11, 04:34] -PASS -- TEST 'control_csawmg_gnu' [08:25, 07:06](1051 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:10, 07:34] -PASS -- TEST 'control_diag_debug_gnu' [03:36, 01:16](1618 MB) -PASS -- TEST 'regional_debug_gnu' [09:27, 07:12](1137 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:17, 02:08](1089 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:17, 02:02](1081 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:26, 02:07](1087 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:27, 02:12](1087 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:29, 02:28](1260 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:18, 03:12](1087 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:18, 02:05](1090 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:17, 02:11](1083 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:18, 01:16](719 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:17, 01:20](718 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:31, 01:19](1700 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:18, 02:15](1092 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:17, 02:01](1100 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:47, 03:34](1096 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:10, 02:36] -PASS -- TEST 'control_wam_debug_gnu' [07:31, 05:12](1552 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:10, 04:43] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:32, 07:28](954 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:55, 03:54](940 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:47, 06:59](962 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:40, 03:28](882 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:35, 04:01](941 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:41, 05:44](853 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:23, 02:03](855 MB) -PASS -- TEST 'conus13km_control_gnu' [04:40, 02:34](1255 MB) -PASS -- TEST 'conus13km_2threads_gnu' [02:31, 01:04](1161 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:30, 01:30](924 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:10, 10:03] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:28, 04:47](982 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [10:10, 08:26] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:18, 02:00](968 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:18, 02:01](961 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:29, 05:22](1277 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:28, 05:49](946 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [05:26, 03:30](1183 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:27, 05:24](1341 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [10:11, 08:34] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:17, 02:05](997 MB) - -PASS -- COMPILE 's2swa_gnu' [20:11, 18:36] - -PASS -- COMPILE 's2s_gnu' [18:11, 16:51] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [16:02, 14:04](3052 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [05:11, 03:48] - -PASS -- COMPILE 's2sw_pdlib_gnu' [18:11, 16:34] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [41:51, 39:30](2909 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [07:11, 05:17] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [16:51, 14:45](3024 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [17:11, 16:02] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:15, 02:18](766 MB) +PASS -- COMPILE 's2swa_32bit_intel' [21:11, 14:28] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [49:26, 15:23](2134 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 18:49] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [53:43, 18:18](1990 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:50, 18:03](2333 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:35, 06:48](1369 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [54:40, 19:07](1896 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [32:12, 20:48] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [26:52, 17:51](1988 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:11, 09:58] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [44:34, 25:37](1961 MB) + +PASS -- COMPILE 's2swa_intel' [21:11, 14:53] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [49:13, 15:12](2198 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [49:28, 15:00](2203 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:28, 07:44](1986 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [49:17, 15:33](2226 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:24, 07:47](1737 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [51:17, 17:25](2568 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [49:11, 15:17](2196 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [46:20, 12:47](2089 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [48:29, 14:46](2213 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [51:12, 16:51](2985 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:55, 06:31](2919 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [57:18, 18:11](3866 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:25, 10:02](3650 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [41:18, 07:47](2109 MB) + +PASS -- COMPILE 's2sw_intel' [14:11, 12:22] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [35:09, 14:41](2012 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [32:16, 11:24](2114 MB) + +PASS -- COMPILE 's2swa_debug_intel' [17:11, 09:57] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [59:23, 21:16](2238 MB) + +PASS -- COMPILE 's2sw_debug_intel' [17:11, 05:36] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [45:12, 08:20](2045 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [18:11, 11:43] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [41:24, 04:45](2057 MB) + +PASS -- COMPILE 's2s_intel' [20:11, 13:32] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [42:00, 07:00](3033 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [38:03, 03:02](3010 MB) +PASS -- TEST 'cpld_restart_c48_intel' [15:55, 02:19](2471 MB) + +PASS -- COMPILE 's2swa_faster_intel' [14:11, 11:34] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [42:26, 15:22](2219 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 16:02] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:19, 23:46](2074 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:20, 12:15](1426 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [31:16, 27:31](1993 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 04:39] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [57:14, 28:13](2008 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:11, 09:06] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [16:23, 02:55](712 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [14:36, 02:48](1583 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [14:41, 02:48](1614 MB) +PASS -- TEST 'control_latlon_intel' [12:32, 02:51](1592 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [12:38, 02:48](1577 MB) +PASS -- TEST 'control_c48_intel' [19:40, 10:16](1692 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [15:36, 05:51](823 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [19:41, 10:16](1705 MB) +PASS -- TEST 'control_c192_intel' [18:56, 10:13](1775 MB) +PASS -- TEST 'control_c384_intel' [21:39, 12:05](2023 MB) +PASS -- TEST 'control_c384gdas_intel' [19:19, 08:55](1495 MB) +PASS -- TEST 'control_stochy_intel' [10:25, 01:27](662 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:30, 00:53](544 MB) +PASS -- TEST 'control_lndp_intel' [06:24, 01:23](664 MB) +PASS -- TEST 'control_iovr4_intel' [04:22, 02:07](654 MB) +PASS -- TEST 'control_iovr5_intel' [04:22, 02:08](653 MB) +PASS -- TEST 'control_p8_intel' [06:00, 03:57](1878 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:58, 03:01](1894 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:56, 03:11](1887 MB) +PASS -- TEST 'control_restart_p8_intel' [03:56, 01:47](1151 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:49, 03:05](1867 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:59, 01:45](1213 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:04, 03:36](1888 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:15, 03:00](1963 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:38, 05:35](1884 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:01, 04:33](1964 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:09, 03:43](1901 MB) +PASS -- TEST 'merra2_thompson_intel' [07:08, 03:48](1893 MB) +PASS -- TEST 'regional_control_intel' [06:32, 04:39](1223 MB) +PASS -- TEST 'regional_restart_intel' [06:30, 03:15](1177 MB) +PASS -- TEST 'regional_decomp_intel' [06:28, 04:57](1213 MB) +PASS -- TEST 'regional_2threads_intel' [04:28, 03:07](1189 MB) +PASS -- TEST 'regional_noquilt_intel' [06:31, 04:33](1545 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:36, 04:44](1221 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:30, 04:36](1230 MB) +PASS -- TEST 'regional_wofs_intel' [07:36, 05:56](2071 MB) + +PASS -- COMPILE 'rrfs_intel' [12:11, 08:37] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [32:48, 06:51](1208 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [27:54, 03:44](1380 MB) +PASS -- TEST 'rap_decomp_intel' [32:49, 07:04](1142 MB) +PASS -- TEST 'rap_2threads_intel' [32:01, 06:34](1381 MB) +PASS -- TEST 'rap_restart_intel' [06:05, 03:33](1146 MB) +PASS -- TEST 'rap_sfcdiff_intel' [32:54, 06:37](1228 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [32:54, 07:02](1159 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:15, 05:02](1204 MB) +PASS -- TEST 'hrrr_control_intel' [29:04, 03:32](1107 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:48, 03:35](1037 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:48, 03:11](1103 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:38, 02:02](1016 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:06, 06:40](1188 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:21, 08:18](2011 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:21, 07:58](2182 MB) + +PASS -- COMPILE 'csawmg_intel' [10:11, 08:17] +PASS -- TEST 'control_csawmg_intel' [09:28, 06:31](1053 MB) +PASS -- TEST 'control_ras_intel' [06:20, 02:53](839 MB) + +PASS -- COMPILE 'wam_intel' [10:11, 08:03] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:42, 09:58](1660 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:11, 09:02] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:05, 03:42](1903 MB) +PASS -- TEST 'regional_control_faster_intel' [08:32, 05:15](1227 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:11, 10:15] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:37, 01:54](1615 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:47, 01:50](1633 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:21, 03:13](842 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:21, 02:33](834 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:32, 04:34](1148 MB) +PASS -- TEST 'control_ras_debug_intel' [04:18, 02:49](846 MB) +PASS -- TEST 'control_diag_debug_intel' [04:34, 02:23](1691 MB) +PASS -- TEST 'control_debug_p8_intel' [04:36, 02:19](1907 MB) +PASS -- TEST 'regional_debug_intel' [16:33, 14:40](1153 MB) +PASS -- TEST 'rap_control_debug_intel' [06:20, 04:53](1233 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:23, 04:43](1218 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:19, 04:22](1232 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 04:44](1221 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:24, 04:53](1226 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:26, 05:01](1310 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:20, 04:31](1223 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:19, 04:46](1221 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:19, 04:47](1224 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 04:22](1224 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:21, 04:37](1222 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:21, 04:19](1230 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:20, 07:27](1225 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:22, 04:29](1214 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:22, 04:25](1221 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:20, 04:29](1238 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:56, 07:08](1227 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [09:11, 03:47] +PASS -- TEST 'control_csawmg_debug_gnu' [04:39, 02:11](1038 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:11, 03:54] ( 837 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:10, 08:18] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:49, 03:19](1251 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:53, 05:31](1178 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:05, 02:55](1040 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:36, 05:21](1293 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:40, 02:47](1039 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:40, 03:05](985 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:56, 04:09](1096 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [08:36, 01:36](953 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:10, 08:25] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:49, 01:41](1296 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:39, 00:50](1185 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [08:33, 01:03](1143 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:10, 08:28] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:33, 03:47](1083 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:12, 04:05] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:19, 04:31](1101 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:20, 04:34](1104 MB) +PASS -- TEST 'conus13km_debug_intel' [14:37, 12:42](1351 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:40, 13:00](1001 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:35, 10:07](1248 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:45, 13:01](1423 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:10, 03:59] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [13:23, 04:24](1170 MB) + +PASS -- COMPILE 'hafsw_intel' [17:11, 10:46] ( 1 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:11, 05:24](854 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:24, 05:09](1263 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:18, 06:37](912 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [19:14, 15:04](959 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:18, 17:35](992 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:58, 05:40](584 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:20, 07:07](605 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:48, 02:40](434 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:15, 07:48](544 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:48, 03:58](612 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:49, 03:39](604 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:58, 04:53](662 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:27, 01:12](446 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [11:10, 04:32] ( 1462 warnings 1490 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:50, 11:44](628 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:12, 10:20] ( 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [26:03, 18:55](734 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [25:03, 18:33](832 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:12, 10:27] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [18:44, 11:58](813 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:12, 10:06] ( 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [12:19, 05:46](924 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:09, 05:47](908 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:51, 16:31](1340 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [13:11, 06:47] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:17, 02:09](1161 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:21](1112 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:16, 02:06](1019 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:17, 02:10](1015 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:16, 02:10](1018 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:16, 02:12](1169 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:16, 02:11](1140 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:19, 02:09](1015 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:04, 05:01](1159 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:06, 04:58](1161 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:16, 02:11](1164 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 03:03](2394 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:20, 03:05](2450 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [10:11, 03:23] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 05:11](1084 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:11, 06:48] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 03:03](1152 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [06:11, 00:45] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:32, 00:55](333 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:26, 00:53](570 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:25, 00:37](573 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:11, 08:52] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:00, 04:46](2025 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:11, 08:39] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:01, 08:56](2018 MB) + +PASS -- COMPILE 'atml_intel' [13:11, 08:52] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:13, 05:46](1891 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:13, 05:51](1889 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [10:55, 03:57](1154 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:11, 05:13] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:12, 05:53](1925 MB) + +PASS -- COMPILE 'atmw_intel' [13:11, 10:02] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:02, 01:43](1931 MB) + +PASS -- COMPILE 'atmaero_intel' [12:11, 09:17] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:58, 03:49](2019 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:06, 04:27](1780 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:53, 04:37](1804 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:11, 04:19] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [21:50, 16:55](4559 MB) + +PASS -- COMPILE 'atm_fbh_intel' [12:11, 08:45] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [14:29, 09:43](1111 MB) + +PASS -- COMPILE 'datm_cdeps_intelllvm' [19:11, 17:14] +PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [06:22, 02:21](1156 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [05:11, 03:09] +PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [09:19, 06:05](1076 MB) + +PASS -- COMPILE 'atm_gnu' [18:11, 11:58] +PASS -- TEST 'control_c48_gnu' [11:51, 07:42](1548 MB) +PASS -- TEST 'control_stochy_gnu' [05:28, 02:24](721 MB) +PASS -- TEST 'control_ras_gnu' [07:29, 04:02](725 MB) +PASS -- TEST 'control_p8_gnu' [09:10, 05:37](1720 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [07:04, 04:08](1718 MB) +PASS -- TEST 'control_flake_gnu' [06:28, 04:41](803 MB) + +PASS -- COMPILE 'rrfs_gnu' [15:11, 11:25] +PASS -- TEST 'rap_control_gnu' [10:58, 08:12](1072 MB) +PASS -- TEST 'rap_decomp_gnu' [10:55, 08:25](1071 MB) +PASS -- TEST 'rap_2threads_gnu' [10:06, 07:18](1109 MB) +PASS -- TEST 'rap_restart_gnu' [09:20, 04:17](876 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [10:02, 07:59](1071 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:11, 08:18](1073 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:36, 06:06](876 MB) +PASS -- TEST 'hrrr_control_gnu' [07:04, 04:11](1058 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:02, 04:07](1128 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [11:11, 03:43](1024 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [12:03, 04:14](1059 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [06:39, 02:06](874 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:42, 02:07](924 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [15:17, 07:54](1068 MB) + +PASS -- COMPILE 'csawmg_gnu' [09:11, 07:13] +PASS -- TEST 'control_csawmg_gnu' [13:37, 07:47](1056 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [12:11, 05:41] +PASS -- TEST 'control_diag_debug_gnu' [07:43, 01:21](1620 MB) +PASS -- TEST 'regional_debug_gnu' [13:37, 07:56](1112 MB) +PASS -- TEST 'rap_control_debug_gnu' [07:25, 02:17](1088 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [07:28, 02:13](1082 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [06:27, 02:12](1088 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [05:26, 02:12](1084 MB) +PASS -- TEST 'rap_diag_debug_gnu' [06:41, 02:14](1258 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [07:25, 03:23](1085 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [06:32, 02:07](1094 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [06:31, 02:13](1087 MB) +PASS -- TEST 'control_ras_debug_gnu' [04:24, 01:24](721 MB) +PASS -- TEST 'control_stochy_debug_gnu' [04:21, 01:25](721 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:44, 01:22](1715 MB) +PASS -- TEST 'rap_flake_debug_gnu' [05:29, 02:12](1091 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [05:28, 02:16](1093 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [07:06, 03:38](1094 MB) + +PASS -- COMPILE 'wam_debug_gnu' [08:11, 02:18] +PASS -- TEST 'control_wam_debug_gnu' [07:46, 05:38](1553 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [10:11, 04:04] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:00, 08:01](951 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:15, 03:53](941 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:02, 06:51](961 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:04, 03:28](885 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:54, 04:00](940 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:13, 05:43](856 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:44, 02:05](853 MB) +PASS -- TEST 'conus13km_control_gnu' [06:54, 02:41](1256 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:42, 01:07](1164 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:36, 01:35](925 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 08:48] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:49, 04:37](984 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [14:13, 06:53] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:20, 02:06](972 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:29, 02:10](963 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:52, 05:48](1275 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [09:49, 06:13](944 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [06:49, 03:43](1179 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:42, 05:55](1342 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [13:15, 06:52] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:25, 02:08](992 MB) + +PASS -- COMPILE 's2swa_gnu' [20:12, 17:18] + +PASS -- COMPILE 's2s_gnu' [20:12, 17:22] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [20:49, 15:49](2692 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [05:10, 03:26] + +PASS -- COMPILE 's2sw_pdlib_gnu' [21:14, 19:38] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [44:15, 40:26](2908 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [08:12, 06:42] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [20:27, 15:45](2919 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [16:12, 14:16] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:20, 02:21](772 MB) SYNOPSIS: -Starting Date/Time: 20241119 22:05:40 -Ending Date/Time: 20241120 00:07:43 -Total Time: 02h:02m:30s +Starting Date/Time: 20241122 09:00:58 +Ending Date/Time: 20241122 11:53:24 +Total Time: 02h:53m:42s Compiles Completed: 60/60 Tests Completed: 248/248 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 82478499ec..1e918516d5 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -c0b6a8cda620186d9325db673c3432aa64e35713 +946b7e2833191ab36966b64cff0f15aaddf6ea03 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 4fd9f30c715adf2be23d9cf5c51ec2a3127765d8 FV3 (remotes/origin/upp_oct) + 915e44e963b804684b872c5545feb9416e742f72 FV3 (remotes/origin/rrfsv1-to-ufs/dev3) e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - cfa18610e546ddb633c117afd394bf4aaaeec4dc FV3/ccpp/physics (EP4-1046-gcfa18610) + 9dffb7e1cd5fceebec065299c791e65e3a30e0c2 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5516-g9dffb7e1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -38,260 +38,329 @@ 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-20241119 -COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_4006099 +BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20241121 +COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3069869 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [45:14, 43:31] ( 1 warnings 1396 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:19, 13:39](2022 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:14, 47:30] ( 1 warnings 1443 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [35:10, 22:37](1892 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:22, 24:08](2009 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:09, 09:38](1126 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [37:04, 25:56](1849 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [49:14, 47:14] ( 1 warnings 1440 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [34:48, 22:17](1878 MB) - -PASS -- COMPILE 's2swa_intel' [45:14, 44:04] ( 1 warnings 1415 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [20:10, 16:54](2059 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [29:28, 16:54](2062 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:18, 08:54](1713 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [20:08, 17:00](2072 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [11:19, 08:59](1733 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [20:06, 16:26](2316 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [29:19, 17:06](2064 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [16:22, 14:00](2010 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [20:20, 16:56](2070 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [22:16, 09:06](2012 MB) - -PASS -- COMPILE 's2sw_intel' [42:13, 40:51] ( 1 warnings 1300 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [12:19, 09:54](1906 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:34, 14:06](1964 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:14] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [40:19, 27:35](2087 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:53] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [23:03, 11:34](1932 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [39:14, 37:15] ( 1018 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:14, 05:42](1969 MB) - -PASS -- COMPILE 's2s_intel' [45:15, 38:12] ( 1 warnings 1041 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [12:52, 10:21](3007 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:51, 03:04](3013 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:50, 01:45](2449 MB) - -PASS -- COMPILE 's2swa_faster_intel' [39:22, 32:33] ( 1 warnings 1631 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [19:29, 16:17](2063 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [53:16, 46:42] ( 1 warnings 1360 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [36:22, 33:25](1937 MB) +PASS -- COMPILE 's2swa_32bit_intel' [44:15, 43:06] ( 1 warnings 1396 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:16, 13:28](2005 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [50:15, 49:09] ( 1 warnings 1443 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [25:09, 22:54](1889 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:16, 23:21](2024 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:07, 09:37](1137 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:03, 25:53](1852 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [50:15, 48:16] ( 1 warnings 1440 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [24:47, 22:23](1873 MB) + +PASS -- COMPILE 's2swa_intel' [45:15, 44:05] ( 1 warnings 1415 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [19:10, 17:04](2068 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:24, 17:05](2061 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:22, 08:54](1711 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [19:09, 17:05](2078 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [12:19, 09:00](1733 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [19:04, 16:28](2340 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [20:08, 17:13](2050 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [16:18, 14:02](1999 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:20, 17:00](2061 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:11, 09:19](2018 MB) + +PASS -- COMPILE 's2sw_intel' [43:15, 41:54] ( 1 warnings 1300 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [12:21, 09:54](1907 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [17:30, 14:06](1982 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:04] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [30:16, 27:31](2086 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:12, 05:53] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [14:00, 11:32](1936 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [38:13, 36:46] ( 1018 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:16, 05:31](1965 MB) + +PASS -- COMPILE 's2s_intel' [39:14, 38:05] ( 1 warnings 1041 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [12:52, 10:17](3019 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:53, 03:02](3010 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:50, 01:45](2462 MB) + +PASS -- COMPILE 's2swa_faster_intel' [34:19, 32:59] ( 1 warnings 1631 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [19:38, 16:23](2057 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [49:14, 47:17] ( 1 warnings 1360 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [36:16, 33:18](1928 MB) PASS -- TEST 'cpld_restart_pdlib_p8_intel' [19:19, 16:25](1144 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [41:17, 39:03](1917 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:12, 06:02] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [38:10, 36:00](1923 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [39:14, 37:38] ( 1 warnings 1124 remarks ) -PASS -- TEST 'control_flake_intel' [06:32, 04:27](653 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [07:01, 04:26](1534 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:05, 04:43](1542 MB) -PASS -- TEST 'control_latlon_intel' [06:59, 04:27](1528 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:10, 04:40](1542 MB) -PASS -- TEST 'control_c48_intel' [21:10, 18:17](1699 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:39, 10:12](828 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [21:09, 18:16](1706 MB) -PASS -- TEST 'control_c192_intel' [18:20, 15:51](1695 MB) -PASS -- TEST 'control_c384_intel' [26:13, 22:58](1819 MB) -PASS -- TEST 'control_c384gdas_intel' [18:03, 13:18](1005 MB) -PASS -- TEST 'control_stochy_intel' [04:32, 02:09](607 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:27, 01:15](434 MB) -PASS -- TEST 'control_lndp_intel' [03:41, 02:02](606 MB) -PASS -- TEST 'control_iovr4_intel' [05:33, 03:16](607 MB) -PASS -- TEST 'control_iovr5_intel' [05:31, 03:19](602 MB) -PASS -- TEST 'control_p8_intel' [07:35, 05:02](1827 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:40, 04:12](1843 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:15, 04:54](1820 MB) -PASS -- TEST 'control_restart_p8_intel' [04:59, 02:41](1059 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:29, 04:56](1825 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:06, 02:33](1072 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:26, 05:05](1808 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:25, 04:48](1913 MB) -PASS -- TEST 'control_p8_lndp_intel' [11:06, 08:50](1825 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:14, 05:19](1901 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:25, 04:15](1849 MB) -PASS -- TEST 'merra2_thompson_intel' [07:18, 04:34](1843 MB) -PASS -- TEST 'regional_control_intel' [09:58, 07:15](1003 MB) -PASS -- TEST 'regional_restart_intel' [05:41, 03:49](1009 MB) -PASS -- TEST 'regional_decomp_intel' [09:58, 07:36](1006 MB) -PASS -- TEST 'regional_2threads_intel' [07:01, 04:27](1000 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:46, 07:10](1005 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:42, 07:02](1010 MB) - -PASS -- COMPILE 'rrfs_intel' [37:15, 35:13] ( 3 warnings 1100 remarks ) -PASS -- TEST 'rap_control_intel' [12:43, 10:10](989 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:11, 05:29](1170 MB) -PASS -- TEST 'rap_decomp_intel' [12:45, 10:46](982 MB) -PASS -- TEST 'rap_2threads_intel' [11:50, 09:46](1069 MB) -PASS -- TEST 'rap_restart_intel' [07:45, 05:09](984 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:47, 10:09](979 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:46, 10:42](980 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:45, 07:33](994 MB) -PASS -- TEST 'hrrr_control_intel' [07:48, 05:16](983 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:48, 05:23](971 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:47, 04:51](1044 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:28, 02:46](917 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:58, 10:00](989 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [15:30, 13:24](1926 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [15:31, 13:01](1927 MB) - -PASS -- COMPILE 'csawmg_intel' [36:16, 35:00] ( 1098 remarks ) -PASS -- TEST 'control_csawmg_intel' [09:41, 08:03](958 MB) -PASS -- TEST 'control_ras_intel' [06:25, 04:18](661 MB) - -PASS -- COMPILE 'wam_intel' [37:15, 35:38] ( 1002 remarks ) -PASS -- TEST 'control_wam_intel' [16:42, 14:16](1608 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [39:16, 38:07] ( 1302 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:52, 03:39](1836 MB) -PASS -- TEST 'regional_control_faster_intel' [08:36, 06:35](1008 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:13, 08:40] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:51, 02:44](1566 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:54, 02:44](1567 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:31, 03:52](778 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:29, 03:31](776 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:46, 05:27](1086 MB) -PASS -- TEST 'control_ras_debug_intel' [05:29, 03:35](783 MB) -PASS -- TEST 'control_diag_debug_intel' [05:54, 03:23](1653 MB) -PASS -- TEST 'control_debug_p8_intel' [05:52, 03:18](1855 MB) -PASS -- TEST 'regional_debug_intel' [23:48, 21:58](1042 MB) -PASS -- TEST 'rap_control_debug_intel' [08:30, 06:13](1160 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:31, 06:08](1174 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:31, 06:14](1165 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:31, 06:17](1162 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:29, 06:17](1164 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:42, 06:31](1246 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:30, 06:24](1159 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:30, 06:21](1156 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:30, 06:19](1164 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:26, 06:05](1162 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:24, 05:59](1158 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:23, 06:05](1159 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:25, 10:01](1158 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:27, 06:01](1161 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:27, 06:11](1166 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:27, 06:11](1161 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:45, 10:40](1169 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:11, 05:04] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:54, 16:34](1641 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:12, 30:50] ( 3 warnings 1032 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:07, 05:08](1044 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:36, 08:12](898 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:41, 04:17](867 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:44, 07:50](939 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:45, 03:59](902 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:40, 04:35](854 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:35, 06:14](891 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:27, 02:20](838 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [33:13, 32:07] ( 3 warnings 1206 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:52, 02:41](1095 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:39, 01:12](1037 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:41, 01:29](1012 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [33:14, 31:22] ( 3 warnings 1052 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:48, 05:25](904 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:07] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:27, 06:00](1042 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:26, 05:52](1044 MB) -PASS -- TEST 'conus13km_debug_intel' [19:55, 17:35](1146 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [19:55, 17:46](849 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:50, 10:12](1074 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:51, 17:39](1205 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:59] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:33, 06:07](1079 MB) - -PASS -- COMPILE 'hafsw_intel' [42:14, 40:38] ( 1 warnings 1434 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:25, 06:47](711 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:38, 06:06](1066 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:38, 09:10](753 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:31, 15:56](785 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:52, 19:25](793 MB) -PASS -- TEST 'gnv1_nested_intel' [09:42, 06:26](1666 MB) - -PASS -- COMPILE 'hafs_all_intel' [38:14, 36:34] ( 1280 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:15, 08:34](748 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:17, 08:40](738 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:12, 08:13] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:23, 03:34](1074 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:22, 02:14](1043 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:23, 03:28](928 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:23, 03:31](931 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:23, 03:32](944 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:23, 03:35](1066 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:24, 03:36](1076 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:23, 03:28](930 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:16, 07:37](897 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:17, 07:27](871 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:20, 03:35](1055 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:23, 05:03](2428 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:23, 05:03](2443 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:22] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:19, 08:02](1025 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:12, 08:10] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:22, 03:33](1068 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:44] ( 68 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:34, 01:16](242 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:29, 01:03](264 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:41](259 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [38:13, 37:04] ( 1023 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:16, 04:44](1908 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [37:14, 36:02] ( 1 warnings 1028 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [13:01, 10:26](1901 MB) - -PASS -- COMPILE 'atml_intel' [39:13, 37:32] ( 8 warnings 1173 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:13, 05:45](1857 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:12, 05:45](1869 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:43, 03:14](1065 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:11, 06:14] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:06, 07:16](1886 MB) - -PASS -- COMPILE 'atmw_intel' [40:14, 38:28] ( 1276 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:55, 02:26](1857 MB) - -PASS -- COMPILE 'atmaero_intel' [38:14, 36:09] ( 1106 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:57, 05:13](1933 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:00, 06:14](1707 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:47, 06:26](1712 MB) - -PASS -- COMPILE 'atm_fbh_intel' [33:14, 31:21] ( 3 warnings 1003 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:35, 15:12](1020 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [42:21, 39:06](1916 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:05] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:11, 38:36](1940 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [39:13, 37:38] ( 1 warnings 1124 remarks ) +PASS -- TEST 'control_flake_intel' [06:30, 04:23](651 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:59, 04:22](1533 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:01, 04:38](1544 MB) +PASS -- TEST 'control_latlon_intel' [06:57, 04:23](1533 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:05, 04:35](1529 MB) +PASS -- TEST 'control_c48_intel' [21:04, 18:10](1707 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [12:37, 10:14](833 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_c48_lnd_iau_intel' [, ]( MB) +PASS -- TEST 'control_c192_intel' [18:17, 15:53](1684 MB) +PASS -- TEST 'control_c384_intel' [26:08, 23:05](1811 MB) +PASS -- TEST 'control_c384gdas_intel' [18:58, 13:26](1003 MB) +PASS -- TEST 'control_stochy_intel' [04:29, 02:11](605 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:26, 01:14](443 MB) +PASS -- TEST 'control_lndp_intel' [03:29, 02:03](602 MB) +PASS -- TEST 'control_iovr4_intel' [05:30, 03:16](599 MB) +PASS -- TEST 'control_iovr5_intel' [05:29, 03:17](601 MB) +PASS -- TEST 'control_p8_intel' [07:18, 04:54](1828 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:25, 04:08](1839 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:08, 04:50](1833 MB) +PASS -- TEST 'control_restart_p8_intel' [04:51, 02:37](1064 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:12, 04:48](1819 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:57, 02:32](1078 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:10, 04:59](1815 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:09, 04:42](1911 MB) +PASS -- TEST 'control_p8_lndp_intel' [11:01, 08:45](1828 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:13, 05:17](1896 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:12, 04:08](1854 MB) +PASS -- TEST 'merra2_thompson_intel' [07:05, 04:30](1845 MB) +PASS -- TEST 'regional_control_intel' [09:54, 07:14](1034 MB) +PASS -- TEST 'regional_restart_intel' [05:38, 03:46](1018 MB) +PASS -- TEST 'regional_decomp_intel' [09:34, 07:28](1038 MB) +PASS -- TEST 'regional_2threads_intel' [06:36, 04:24](1033 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:43, 07:05](1037 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:34, 07:00](1044 MB) + +PASS -- COMPILE 'rrfs_intel' [36:14, 34:48] ( 3 warnings 1100 remarks ) +PASS -- TEST 'rap_control_intel' [12:43, 10:12](987 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:13, 05:29](1185 MB) +PASS -- TEST 'rap_decomp_intel' [12:43, 10:47](981 MB) +PASS -- TEST 'rap_2threads_intel' [11:46, 09:43](1070 MB) +PASS -- TEST 'rap_restart_intel' [07:44, 05:13](994 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:44, 10:04](990 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:42, 10:41](980 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:45, 07:31](1004 MB) +PASS -- TEST 'hrrr_control_intel' [07:44, 05:14](989 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:44, 05:20](976 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:47, 04:49](1051 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:28, 02:45](907 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:57, 10:01](984 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [15:31, 13:10](1936 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:31, 13:03](1936 MB) + +PASS -- COMPILE 'csawmg_intel' [36:13, 35:00] ( 1098 remarks ) +PASS -- TEST 'control_csawmg_intel' [10:42, 08:05](963 MB) +PASS -- TEST 'control_ras_intel' [06:27, 04:20](671 MB) + +PASS -- COMPILE 'wam_intel' [37:14, 35:32] ( 1002 remarks ) +PASS -- TEST 'control_wam_intel' [16:55, 14:16](1622 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [39:13, 37:29] ( 1302 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:54, 03:35](1842 MB) +PASS -- TEST 'regional_control_faster_intel' [08:36, 06:35](1035 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 08:25] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:44, 02:58](1568 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:50, 02:58](1562 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:27, 03:59](797 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:26, 03:36](783 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:41, 05:39](1087 MB) +PASS -- TEST 'control_ras_debug_intel' [05:27, 03:37](786 MB) +PASS -- TEST 'control_diag_debug_intel' [05:47, 03:33](1628 MB) +PASS -- TEST 'control_debug_p8_intel' [05:46, 03:28](1851 MB) +PASS -- TEST 'regional_debug_intel' [24:47, 22:16](1051 MB) +PASS -- TEST 'rap_control_debug_intel' [08:29, 06:21](1158 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:28, 06:11](1156 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:29, 06:26](1166 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:29, 06:19](1160 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:29, 06:21](1160 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:40, 06:38](1248 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:29, 06:28](1163 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:29, 06:31](1157 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:26, 06:08](1161 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:25, 06:06](1159 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:25, 06:00](1161 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:23, 06:05](1160 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:24, 09:58](1159 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:26, 06:00](1160 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:28, 06:05](1160 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:25, 06:05](1163 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:47, 10:37](1176 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:11, 05:09] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [19:42, 16:32](1652 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [26:12, 24:30] ( 3 warnings 1032 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:03, 05:14](1063 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:35, 08:19](906 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:37, 04:19](872 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:42, 07:58](963 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:40, 04:01](903 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:37, 04:36](851 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:35, 06:10](897 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:27, 02:20](839 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [34:13, 32:11] ( 3 warnings 1206 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:52, 02:38](1103 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:45, 01:11](1045 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:44, 01:28](1012 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [33:13, 31:23] ( 3 warnings 1052 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:44, 05:22](908 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:03] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:26, 06:02](1036 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:27, 05:53](1040 MB) +PASS -- TEST 'conus13km_debug_intel' [19:55, 17:37](1149 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:53, 17:41](859 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:47, 10:13](1101 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:48, 17:41](1221 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:55] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:27, 06:09](1082 MB) + +PASS -- COMPILE 'hafsw_intel' [42:14, 39:54] ( 1 warnings 1434 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [10:27, 06:51](697 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:39, 06:10](1080 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:35, 09:10](748 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [19:32, 15:44](784 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:47, 19:08](799 MB) +PASS -- TEST 'gnv1_nested_intel' [09:42, 06:30](1661 MB) + +PASS -- COMPILE 'hafs_all_intel' [38:14, 36:24] ( 1280 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:21, 08:27](753 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:18, 08:24](735 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:08] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:23, 03:35](1074 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:22, 02:07](1048 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:22, 03:29](931 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:24, 03:32](933 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:23, 03:32](943 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:25, 03:36](1075 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:22, 03:36](1072 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:23, 03:29](932 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:14, 07:37](896 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:15, 07:35](849 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:21, 03:36](1068 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:23, 04:59](2423 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:22, 05:03](2425 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:21] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:21, 08:08](1029 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:10] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:29](1058 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:47] ( 68 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:33, 01:17](242 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:30, 01:04](264 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:39](260 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [39:13, 37:09] ( 1023 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:10, 04:45](1913 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [38:13, 36:29] ( 1 warnings 1028 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [13:06, 10:25](1909 MB) + +PASS -- COMPILE 'atml_intel' [40:14, 38:10] ( 8 warnings 1173 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:13, 05:50](1855 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:14, 05:44](1853 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:44, 03:14](1072 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:11, 06:13] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:07, 07:15](1890 MB) + +PASS -- COMPILE 'atmw_intel' [39:13, 37:21] ( 1276 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:55, 02:28](1861 MB) + +PASS -- COMPILE 'atmaero_intel' [38:14, 36:40] ( 1106 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:59, 05:16](1933 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:59, 06:21](1699 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:49, 06:26](1713 MB) + +PASS -- COMPILE 'atm_fbh_intel' [34:14, 31:47] ( 3 warnings 1003 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:36, 15:17](1057 MB) SYNOPSIS: -Starting Date/Time: 20241120 03:43:06 -Ending Date/Time: 20241120 08:10:10 -Total Time: 04h:27m:43s +Starting Date/Time: 20241122 04:48:32 +Ending Date/Time: 20241122 09:11:56 +Total Time: 04h:23m:55s Compiles Completed: 37/37 -Tests Completed: 166/166 +Tests Completed: 165/166 +Failed Tests: +* TEST control_c48_lnd_iau_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /mnt/lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2482/ufs-weather-model/tests/logs/log_jet/run_control_c48_lnd_iau_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 JET REGRESSION TESTING LOG==== +====START OF JET REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +946b7e2833191ab36966b64cff0f15aaddf6ea03 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) + 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 915e44e963b804684b872c5545feb9416e742f72 FV3 (remotes/origin/rrfsv1-to-ufs/dev3) + e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) + b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) + 9dffb7e1cd5fceebec065299c791e65e3a30e0c2 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5516-g9dffb7e1) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) +-179cae1dd84401cf25d250bd9102e66560a9d328 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) + 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) + abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20241121 +COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2592504 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: h-nems +* (-n) - RUN SINGLE TEST: control_c48_lnd_iau +* (-e) - USE ECFLOW + +PASS -- COMPILE 'atm_dyn32_intel' [42:14, 39:25] ( 1 warnings 1124 remarks ) +PASS -- TEST 'control_c48_lnd_iau_intel' [20:57, 18:04](1706 MB) + +SYNOPSIS: +Starting Date/Time: 20241122 18:05:01 +Ending Date/Time: 20241122 19:09:32 +Total Time: 01h:04m:48s +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_orion.log b/tests/logs/RegressionTests_orion.log index 50f32f52ec..b4c6aa7399 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -c0b6a8cda620186d9325db673c3432aa64e35713 +946b7e2833191ab36966b64cff0f15aaddf6ea03 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 4fd9f30c715adf2be23d9cf5c51ec2a3127765d8 FV3 (remotes/origin/upp_oct) + 915e44e963b804684b872c5545feb9416e742f72 FV3 (remotes/origin/rrfsv1-to-ufs/dev3) e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - cfa18610e546ddb633c117afd394bf4aaaeec4dc FV3/ccpp/physics (EP4-1046-gcfa18610) + 9dffb7e1cd5fceebec065299c791e65e3a30e0c2 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5516-g9dffb7e1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -38,299 +38,299 @@ 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-20241119 -COMPARISON DIRECTORY: /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_3634136 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241121 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3922978 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [20:11, 17:44] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [38:38, 27:34](2078 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:13, 21:06] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [35:53, 22:01](1943 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [40:35, 23:07](2125 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [33:28, 08:54](1229 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [39:52, 25:54](1868 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:13, 21:31] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [33:45, 21:43](1955 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:10, 08:00] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [33:43, 30:34](1929 MB) - -PASS -- COMPILE 's2swa_intel' [21:12, 18:22] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [42:49, 27:34](2146 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [43:00, 27:47](2132 MB) -PASS -- TEST 'cpld_restart_p8_intel' [52:05, 14:42](1805 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [41:52, 27:15](2165 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [52:31, 14:16](1701 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [39:41, 25:37](2425 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [42:49, 27:20](2134 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [36:40, 23:14](2042 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [42:55, 27:11](2150 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [28:26, 16:18](2706 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [31:14, 09:02](2697 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [36:58, 20:11](3674 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [36:59, 10:55](3530 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [21:37, 07:58](2073 MB) - -PASS -- COMPILE 's2sw_intel' [19:11, 17:03] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [38:02, 27:04](1971 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [23:18, 11:46](2044 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:10, 08:00] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [26:26, 23:29](2171 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:11, 08:01] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:08, 10:13](2000 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:11, 15:02] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [18:15, 04:49](2016 MB) - -PASS -- COMPILE 's2s_intel' [19:11, 16:31] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [19:57, 08:33](3029 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [14:57, 03:02](3017 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:04, 02:05](2473 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:11, 16:38] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [36:36, 28:28](2140 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 18:57] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [35:21, 29:08](2010 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [49:59, 14:32](1251 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [54:45, 33:38](1928 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 07:17] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [46:18, 34:43](1970 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [18:12, 13:43] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:25, 03:44](686 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:45, 03:32](1574 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:49, 03:36](1583 MB) -PASS -- TEST 'control_latlon_intel' [09:41, 03:30](1569 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:56, 03:33](1573 MB) -PASS -- TEST 'control_c48_intel' [20:50, 14:41](1712 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [13:32, 08:12](835 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [18:48, 14:41](1702 MB) -PASS -- TEST 'control_c192_intel' [15:58, 13:08](1745 MB) -PASS -- TEST 'control_c384_intel' [20:56, 16:39](1999 MB) -PASS -- TEST 'control_c384gdas_intel' [36:53, 09:54](1333 MB) -PASS -- TEST 'control_stochy_intel' [03:26, 01:50](639 MB) -PASS -- TEST 'control_stochy_restart_intel' [25:12, 01:07](475 MB) -PASS -- TEST 'control_lndp_intel' [03:23, 01:44](645 MB) -PASS -- TEST 'control_iovr4_intel' [06:30, 02:45](647 MB) -PASS -- TEST 'control_iovr5_intel' [33:39, 02:43](637 MB) -PASS -- TEST 'control_p8_intel' [51:19, 04:08](1862 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [28:27, 03:38](1870 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [28:39, 04:06](1865 MB) -PASS -- TEST 'control_restart_p8_intel' [10:22, 02:22](1082 MB) -PASS -- TEST 'control_noqr_p8_intel' [25:32, 04:05](1854 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [32:24, 02:16](1131 MB) -PASS -- TEST 'control_decomp_p8_intel' [31:25, 04:09](1854 MB) -PASS -- TEST 'control_2threads_p8_intel' [31:25, 04:19](1942 MB) -PASS -- TEST 'control_p8_lndp_intel' [26:08, 07:14](1859 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [23:39, 04:52](1945 MB) -PASS -- TEST 'control_p8_mynn_intel' [22:41, 03:31](1879 MB) -PASS -- TEST 'merra2_thompson_intel' [21:56, 03:50](1885 MB) -PASS -- TEST 'regional_control_intel' [22:41, 06:38](1079 MB) -PASS -- TEST 'regional_restart_intel' [01:52, 03:32](1069 MB) -PASS -- TEST 'regional_decomp_intel' [16:47, 06:52](1068 MB) -PASS -- TEST 'regional_2threads_intel' [49:04, 04:43](1064 MB) -PASS -- TEST 'regional_noquilt_intel' [17:54, 06:30](1372 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [39:03, 06:31](1070 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [49:54, 06:32](1071 MB) -PASS -- TEST 'regional_wofs_intel' [50:54, 07:59](1895 MB) - -PASS -- COMPILE 'rrfs_intel' [16:12, 13:53] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [45:42, 08:30](1043 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [40:32, 05:13](1249 MB) -PASS -- TEST 'rap_decomp_intel' [35:07, 08:46](1021 MB) -PASS -- TEST 'rap_2threads_intel' [34:12, 08:40](1154 MB) -PASS -- TEST 'rap_restart_intel' [07:34, 04:25](1034 MB) -PASS -- TEST 'rap_sfcdiff_intel' [29:35, 08:24](1051 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:32, 08:41](1010 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:37, 06:19](1059 MB) -PASS -- TEST 'hrrr_control_intel' [58:11, 04:23](1028 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [57:15, 04:26](1018 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [55:03, 04:12](1081 MB) -PASS -- TEST 'hrrr_control_restart_intel' [06:27, 02:23](940 MB) -PASS -- TEST 'rrfs_v1beta_intel' [58:36, 08:19](1034 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [43:31, 09:52](1976 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [40:30, 09:37](2007 MB) - -PASS -- COMPILE 'csawmg_intel' [16:12, 13:32] -PASS -- TEST 'control_csawmg_intel' [36:44, 06:37](1012 MB) -PASS -- TEST 'control_ras_intel' [29:32, 03:29](714 MB) - -PASS -- COMPILE 'wam_intel' [15:11, 12:42] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:43, 12:50](1647 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [20:12, 13:36] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [28:27, 03:15](1876 MB) -PASS -- TEST 'regional_control_faster_intel' [12:37, 06:16](1073 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [20:11, 09:34] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [25:56, 02:17](1599 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [25:54, 02:12](1599 MB) -PASS -- TEST 'control_stochy_debug_intel' [25:28, 03:01](815 MB) -PASS -- TEST 'control_lndp_debug_intel' [14:27, 02:47](815 MB) -PASS -- TEST 'control_csawmg_debug_intel' [14:38, 04:23](1127 MB) -PASS -- TEST 'control_ras_debug_intel' [12:26, 02:44](819 MB) -PASS -- TEST 'control_diag_debug_intel' [07:44, 02:50](1664 MB) -PASS -- TEST 'control_debug_p8_intel' [05:45, 02:43](1893 MB) -PASS -- TEST 'regional_debug_intel' [20:47, 16:52](1085 MB) -PASS -- TEST 'rap_control_debug_intel' [08:30, 04:58](1196 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:28, 04:56](1196 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:23, 04:58](1191 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:23, 05:00](1191 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:28, 05:05](1195 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:34, 05:08](1286 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:26, 05:04](1204 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:25, 05:04](1203 MB) -PASS -- TEST 'rap_lndp_debug_intel' [10:23, 05:08](1208 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:24, 05:04](1196 MB) -PASS -- TEST 'rap_noah_debug_intel' [09:24, 05:14](1201 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [09:29, 05:09](1207 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:24, 08:11](1201 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [09:25, 05:08](1199 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:27, 05:01](1206 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:24, 05:04](1203 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:28, 08:50](1205 MB) - -PASS -- COMPILE 'wam_debug_intel' [15:13, 06:43] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:49, 13:25](1675 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [21:11, 12:52] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:05, 04:55](1130 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:15, 07:12](994 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:43, 03:46](911 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:52, 07:26](1065 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:08, 03:42](936 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:06, 03:55](886 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [56:35, 05:22](962 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [40:50, 02:02](870 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:13, 12:52] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:59, 02:34](1161 MB) -PASS -- TEST 'conus13km_2threads_intel' [39:53, 01:10](1110 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [39:53, 01:28](1058 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:13, 13:06] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:44, 04:35](962 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 06:26] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:29, 05:16](1080 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:29, 04:45](1079 MB) -PASS -- TEST 'conus13km_debug_intel' [22:52, 13:27](1228 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [22:52, 13:57](923 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [15:52, 08:02](1163 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [44:04, 13:47](1287 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:11, 06:09] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [34:34, 05:00](1133 MB) - -PASS -- COMPILE 'hafsw_intel' [17:13, 15:12] ( 1 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [14:18, 06:01](738 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [35:38, 06:20](1114 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [44:30, 07:27](821 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [04:26, 28:10](850 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [12:32, 34:49](870 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [44:07, 07:06](500 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [45:32, 08:28](505 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [40:00, 03:28](375 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [47:32, 09:31](479 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [40:06, 04:42](517 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [44:13, 04:27](528 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [45:14, 05:41](573 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [44:37, 01:34](399 MB) -PASS -- TEST 'gnv1_nested_intel' [49:18, 04:17](1712 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:11, 07:04] ( 1462 warnings 1490 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [55:09, 12:58](584 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [19:11, 15:37] ( 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [57:11, 15:26](655 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [05:15, 15:37](722 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:12, 14:50] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [02:42, 11:05](703 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:12, 14:13] ( 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [56:29, 07:30](817 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [52:31, 07:34](797 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [54:17, 16:27](1193 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:11, 08:42] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [12:20, 02:59](1149 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [37:26, 01:55](1101 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [19:21, 02:51](1023 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [39:25, 02:54](1015 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [44:26, 02:55](1021 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [23:33, 03:06](1154 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [21:33, 03:00](1158 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [22:32, 02:54](1024 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [23:13, 06:36](1021 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [21:18, 06:30](1011 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [17:27, 03:02](1141 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [13:22, 04:20](2448 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [17:32, 04:24](2403 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:11, 04:27] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [19:33, 06:33](1082 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:11, 07:36] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [15:30, 03:02](1159 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:11, 01:21] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [12:43, 01:04](252 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [11:35, 00:59](323 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:30, 00:36](323 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [04:10, 01:40] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [11:41, 00:37](550 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [03:33, 00:25](445 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:12, 13:19] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [14:16, 04:11](1969 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [17:12, 12:56] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [19:10, 08:40](1980 MB) - -PASS -- COMPILE 'atml_intel' [17:12, 13:48] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [15:40, 04:57](1860 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:44, 04:51](1873 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:55, 02:51](1070 MB) - -PASS -- COMPILE 'atml_debug_intel' [14:11, 07:42] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:39, 05:46](1895 MB) - -PASS -- COMPILE 'atmw_intel' [19:12, 13:46] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:26, 02:21](1897 MB) - -PASS -- COMPILE 'atmaero_intel' [16:12, 13:07] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:22, 04:35](1968 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:20, 05:25](1761 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:12, 05:27](1755 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:12, 06:28] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [19:07, 20:50](4500 MB) - -PASS -- COMPILE 'atm_fbh_intel' [14:13, 12:19] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:41, 13:53](1083 MB) - -PASS -- COMPILE 'hafsw_intelllvm' [14:11, 08:18] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [05:12, 07:56](572 MB) - -PASS -- COMPILE 'hafsw_debug_intelllvm' [11:11, 05:07] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [16:09, 19:12](564 MB) +PASS -- COMPILE 's2swa_32bit_intel' [19:11, 17:56] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [30:44, 27:42](2081 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 21:05] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [25:50, 22:15](1948 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:21, 23:27](2132 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:14, 08:57](1238 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:54, 26:19](1862 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:11, 21:45] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [23:44, 21:59](1934 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:10, 08:48] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [34:44, 30:32](1926 MB) + +PASS -- COMPILE 's2swa_intel' [19:11, 17:38] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [34:48, 27:45](2141 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [33:45, 27:27](2134 MB) +PASS -- TEST 'cpld_restart_p8_intel' [18:48, 14:32](1808 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [34:48, 28:10](2161 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [18:48, 14:31](1699 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [31:52, 25:28](2441 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [30:39, 27:51](2127 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [26:34, 23:37](2038 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [30:42, 27:29](2142 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [22:43, 16:10](2717 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:20, 08:58](2705 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [30:08, 20:45](3700 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:49, 11:35](3512 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:27, 08:08](2074 MB) + +PASS -- COMPILE 's2sw_intel' [18:11, 16:57] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [30:04, 27:27](1962 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:20, 12:06](2044 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:10, 08:23] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [26:18, 22:15](2166 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:10, 07:55] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [15:09, 10:10](1997 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:11, 14:23] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:13, 04:54](2019 MB) + +PASS -- COMPILE 's2s_intel' [16:11, 14:41] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [11:54, 08:36](3032 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [06:54, 03:02](3018 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:58, 02:01](2466 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:13, 17:18] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [32:31, 28:35](2151 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 18:17] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [32:09, 29:28](2000 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [28:30, 14:45](1242 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [47:14, 33:58](1928 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:11, 08:13] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [39:27, 34:41](1966 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [17:12, 14:15] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [07:26, 03:51](678 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:43, 03:35](1572 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:46, 03:42](1575 MB) +PASS -- TEST 'control_latlon_intel' [05:51, 03:34](1572 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:04, 03:35](1571 MB) +PASS -- TEST 'control_c48_intel' [16:48, 14:45](1700 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:35, 08:12](834 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [16:49, 14:45](1704 MB) +PASS -- TEST 'control_c192_intel' [15:59, 13:15](1743 MB) +PASS -- TEST 'control_c384_intel' [19:58, 16:43](1992 MB) +PASS -- TEST 'control_c384gdas_intel' [13:35, 09:57](1333 MB) +PASS -- TEST 'control_stochy_intel' [03:25, 01:50](644 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:39, 01:07](473 MB) +PASS -- TEST 'control_lndp_intel' [03:22, 01:44](643 MB) +PASS -- TEST 'control_iovr4_intel' [04:23, 02:48](637 MB) +PASS -- TEST 'control_iovr5_intel' [04:27, 02:43](636 MB) +PASS -- TEST 'control_p8_intel' [07:02, 04:13](1870 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:11, 03:37](1876 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:22, 04:08](1861 MB) +PASS -- TEST 'control_restart_p8_intel' [07:23, 02:24](1094 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:13, 04:09](1862 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:33, 02:24](1135 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:11, 04:14](1855 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:15, 04:30](1942 MB) +PASS -- TEST 'control_p8_lndp_intel' [13:41, 07:28](1865 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [12:23, 04:57](1940 MB) +PASS -- TEST 'control_p8_mynn_intel' [10:20, 03:32](1886 MB) +PASS -- TEST 'merra2_thompson_intel' [10:38, 03:55](1886 MB) +PASS -- TEST 'regional_control_intel' [13:51, 06:39](1110 MB) +PASS -- TEST 'regional_restart_intel' [14:42, 03:41](1084 MB) +PASS -- TEST 'regional_decomp_intel' [13:30, 07:03](1100 MB) +PASS -- TEST 'regional_2threads_intel' [11:36, 04:57](1094 MB) +PASS -- TEST 'regional_noquilt_intel' [12:40, 06:33](1412 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [11:49, 06:47](1104 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [11:37, 06:41](1106 MB) +PASS -- TEST 'regional_wofs_intel' [12:46, 08:10](1891 MB) + +PASS -- COMPILE 'rrfs_intel' [16:12, 13:11] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:08, 08:32](1056 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:02, 05:19](1265 MB) +PASS -- TEST 'rap_decomp_intel' [11:08, 08:49](1020 MB) +PASS -- TEST 'rap_2threads_intel' [11:08, 08:39](1164 MB) +PASS -- TEST 'rap_restart_intel' [08:42, 04:27](1042 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:07, 08:23](1060 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:07, 08:46](1016 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:51, 06:19](1079 MB) +PASS -- TEST 'hrrr_control_intel' [09:07, 04:23](1022 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [09:06, 04:27](1014 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [08:25, 04:13](1079 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:40, 02:25](941 MB) +PASS -- TEST 'rrfs_v1beta_intel' [13:18, 08:20](1048 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:27, 09:56](1979 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:32, 09:39](2011 MB) + +PASS -- COMPILE 'csawmg_intel' [14:12, 12:30] +PASS -- TEST 'control_csawmg_intel' [08:35, 06:39](1014 MB) +PASS -- TEST 'control_ras_intel' [05:20, 03:30](714 MB) + +PASS -- COMPILE 'wam_intel' [14:12, 13:04] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [28:50, 13:28](1649 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:12, 12:59] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [19:47, 03:25](1878 MB) +PASS -- TEST 'regional_control_faster_intel' [10:38, 06:21](1103 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [12:13, 09:42] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [17:45, 02:28](1605 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [17:48, 02:19](1602 MB) +PASS -- TEST 'control_stochy_debug_intel' [17:30, 03:06](816 MB) +PASS -- TEST 'control_lndp_debug_intel' [17:25, 02:51](812 MB) +PASS -- TEST 'control_csawmg_debug_intel' [19:35, 05:03](1123 MB) +PASS -- TEST 'control_ras_debug_intel' [17:28, 02:51](821 MB) +PASS -- TEST 'control_diag_debug_intel' [15:59, 02:53](1671 MB) +PASS -- TEST 'control_debug_p8_intel' [20:52, 02:55](1896 MB) +PASS -- TEST 'regional_debug_intel' [34:50, 18:00](1097 MB) +PASS -- TEST 'rap_control_debug_intel' [22:27, 05:17](1203 MB) +PASS -- TEST 'hrrr_control_debug_intel' [21:27, 05:04](1197 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [21:23, 05:04](1198 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [21:23, 05:17](1201 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [26:30, 05:02](1197 MB) +PASS -- TEST 'rap_diag_debug_intel' [26:35, 05:11](1280 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [25:26, 05:04](1206 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [24:24, 05:05](1204 MB) +PASS -- TEST 'rap_lndp_debug_intel' [23:25, 05:08](1201 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [23:27, 05:00](1196 MB) +PASS -- TEST 'rap_noah_debug_intel' [22:25, 05:07](1192 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [46:31, 04:59](1205 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [47:32, 08:10](1201 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [44:34, 04:49](1200 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [43:33, 05:02](1210 MB) +PASS -- TEST 'rap_flake_debug_intel' [42:33, 05:00](1204 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [44:31, 08:38](1207 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:11, 06:43] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:43, 13:08](1675 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 12:46] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [39:32, 05:03](1147 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [42:20, 07:15](1000 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [39:47, 03:55](920 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:16, 07:29](1083 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [39:17, 03:43](940 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [38:36, 03:58](893 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:04, 05:25](969 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:46, 02:05](869 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 13:01] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [36:11, 02:34](1166 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:44, 01:15](1107 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:51, 01:30](1064 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:12, 12:39] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [37:58, 04:35](964 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 06:21] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [34:26, 04:47](1082 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [32:26, 04:47](1077 MB) +PASS -- TEST 'conus13km_debug_intel' [40:54, 13:25](1232 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [40:47, 13:48](936 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [34:45, 08:03](1166 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [41:47, 17:06](1286 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:11, 06:58] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [30:29, 05:04](1125 MB) + +PASS -- COMPILE 'hafsw_intel' [17:14, 15:32] ( 1 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [29:20, 06:13](734 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [29:31, 06:52](1129 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [33:33, 07:46](818 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [54:43, 28:42](846 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [57:35, 35:07](868 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [33:07, 07:12](498 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [31:33, 08:39](507 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [18:59, 03:34](378 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:32, 09:50](480 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:54, 04:53](525 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:59, 04:32](529 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:59, 05:50](570 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:31, 01:36](398 MB) +PASS -- TEST 'gnv1_nested_intel' [08:23, 04:22](1714 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:11, 07:17] ( 1462 warnings 1490 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:51, 13:33](576 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [18:13, 15:45] ( 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:16, 15:03](657 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:07, 15:14](721 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [18:13, 15:47] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:41, 11:10](669 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:14, 14:21] ( 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:15, 07:42](812 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:17, 07:36](799 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:58, 16:20](1201 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:11, 07:27] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:58](1153 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:59](1108 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:20, 02:50](1023 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:20, 02:54](1015 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:53](1017 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:19, 02:58](1160 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 02:58](1150 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:51](1021 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:10, 06:35](1014 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:19, 06:28](1002 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:59](1160 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 04:21](2386 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 04:29](2454 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 05:00] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:21, 06:36](1068 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:12, 08:42] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 03:01](1155 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:18] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:33, 01:03](256 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:55](323 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:39](321 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:35] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:31, 00:37](557 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:31, 00:23](448 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:11, 14:01] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:08, 04:09](1965 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:11, 13:36] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:03, 08:37](1973 MB) + +PASS -- COMPILE 'atml_intel' [16:11, 14:16] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:38, 04:57](1860 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:30, 04:59](1857 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:56, 02:56](1063 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:12, 07:56] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:22, 05:56](1899 MB) + +PASS -- COMPILE 'atmw_intel' [15:12, 13:46] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:32, 02:18](1906 MB) + +PASS -- COMPILE 'atmaero_intel' [15:11, 13:33] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:12, 04:52](1957 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:11, 05:25](1747 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:00, 05:28](1766 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [10:10, 06:28] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [25:03, 21:44](4492 MB) + +PASS -- COMPILE 'atm_fbh_intel' [16:13, 12:27] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:30, 13:50](1110 MB) + +PASS -- COMPILE 'hafsw_intelllvm' [10:13, 07:54] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [11:03, 08:14](573 MB) + +PASS -- COMPILE 'hafsw_debug_intelllvm' [07:12, 04:52] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [21:50, 19:54](562 MB) SYNOPSIS: -Starting Date/Time: 20241119 22:04:32 -Ending Date/Time: 20241120 04:27:35 -Total Time: 06h:24m:10s +Starting Date/Time: 20241122 09:01:14 +Ending Date/Time: 20241122 11:36:28 +Total Time: 02h:36m:01s Compiles Completed: 45/45 Tests Completed: 191/191 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 42507c1de1..a53c306b3d 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -971dd252f62c28cf871cb075cccebfc5fb5e48c7 +946b7e2833191ab36966b64cff0f15aaddf6ea03 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 4fd9f30c715adf2be23d9cf5c51ec2a3127765d8 FV3 (remotes/origin/upp_oct) + 915e44e963b804684b872c5545feb9416e742f72 FV3 (remotes/origin/rrfsv1-to-ufs/dev3) e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - cfa18610e546ddb633c117afd394bf4aaaeec4dc FV3/ccpp/physics (EP4-1046-gcfa18610) + 9dffb7e1cd5fceebec065299c791e65e3a30e0c2 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5516-g9dffb7e1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -38,240 +38,240 @@ 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-20241119 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77311 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241121 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_232721 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:27, 11:47] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [47:45, 02:09](3086 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:27, 11:57] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [47:45, 03:01](1807 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:33, 02:58](1839 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [28:19, 02:42](974 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [47:46, 02:36](1789 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:27, 11:55] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [47:45, 02:18](1810 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:24] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [53:52, 03:04](1841 MB) - -PASS -- COMPILE 's2swa_intel' [13:29, 11:24] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [47:43, 03:03](3124 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [47:43, 03:02](3117 MB) -PASS -- TEST 'cpld_restart_p8_intel' [29:50, 02:06](3044 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [47:43, 03:01](3138 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [29:50, 02:08](3063 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [47:43, 02:52](3358 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [47:43, 02:06](3113 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [47:44, 02:35](3060 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [47:43, 03:08](3115 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [47:52, 05:52](4113 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:36, 04:59](4243 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [47:43, 02:40](3096 MB) - -PASS -- COMPILE 's2sw_intel' [12:27, 11:12] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [48:45, 02:07](1818 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [48:45, 02:40](1878 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:27, 10:22] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [48:45, 03:00](1876 MB) - -PASS -- COMPILE 's2s_intel' [12:27, 10:14] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [48:44, 01:46](2861 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [48:44, 01:35](2871 MB) -PASS -- TEST 'cpld_restart_c48_intel' [44:43, 02:20](2283 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:39, 16:12] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [43:34, 03:01](3124 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:29, 11:30] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [47:43, 02:31](1820 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [18:51, 02:52](1004 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:48, 01:55](1790 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:12] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [46:31, 02:32](1847 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:29, 09:42] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [36:17, 02:21](567 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [34:04, 01:56](1460 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [33:48, 01:56](1466 MB) -PASS -- TEST 'control_latlon_intel' [33:11, 02:03](1467 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [33:05, 02:14](1466 MB) -PASS -- TEST 'control_c48_intel' [31:52, 02:17](1565 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [31:52, 01:40](689 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [31:05, 02:16](1572 MB) -PASS -- TEST 'control_c192_intel' [31:04, 02:01](1589 MB) -PASS -- TEST 'control_c384_intel' [31:08, 02:30](1877 MB) -PASS -- TEST 'control_c384gdas_intel' [30:43, 03:56](1066 MB) -PASS -- TEST 'control_stochy_intel' [30:24, 01:21](522 MB) -PASS -- TEST 'control_stochy_restart_intel' [26:54, 02:03](327 MB) -PASS -- TEST 'control_lndp_intel' [29:48, 01:25](521 MB) -PASS -- TEST 'control_iovr4_intel' [29:46, 01:43](520 MB) -PASS -- TEST 'control_iovr5_intel' [29:46, 01:41](515 MB) -PASS -- TEST 'control_p8_intel' [29:33, 02:19](1751 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [28:44, 02:56](1753 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [28:07, 02:28](1759 MB) -PASS -- TEST 'control_restart_p8_intel' [23:07, 02:42](907 MB) -PASS -- TEST 'control_noqr_p8_intel' [28:07, 02:32](1756 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [21:27, 02:45](915 MB) -PASS -- TEST 'control_decomp_p8_intel' [28:02, 02:22](1750 MB) -PASS -- TEST 'control_2threads_p8_intel' [27:37, 02:20](1838 MB) -PASS -- TEST 'control_p8_lndp_intel' [27:36, 02:03](1754 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [27:33, 03:06](1812 MB) -PASS -- TEST 'control_p8_mynn_intel' [27:08, 02:53](1770 MB) -PASS -- TEST 'merra2_thompson_intel' [26:26, 02:37](1758 MB) -PASS -- TEST 'regional_control_intel' [26:16, 02:10](847 MB) -PASS -- TEST 'regional_restart_intel' [18:34, 01:19](839 MB) -PASS -- TEST 'regional_decomp_intel' [25:58, 01:57](840 MB) -PASS -- TEST 'regional_2threads_intel' [25:13, 01:48](893 MB) -PASS -- TEST 'regional_noquilt_intel' [25:12, 01:23](1173 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [24:20, 02:12](845 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [24:09, 02:09](844 MB) -PASS -- TEST 'regional_wofs_intel' [23:18, 01:14](1562 MB) - -PASS -- COMPILE 'rrfs_intel' [10:28, 08:53] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [38:15, 02:34](904 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [38:16, 02:02](1043 MB) -PASS -- TEST 'rap_decomp_intel' [38:15, 02:18](907 MB) -PASS -- TEST 'rap_2threads_intel' [38:15, 02:31](985 MB) -PASS -- TEST 'rap_restart_intel' [22:32, 02:13](771 MB) -PASS -- TEST 'rap_sfcdiff_intel' [38:15, 03:10](901 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [38:15, 02:45](900 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [22:14, 02:37](772 MB) -PASS -- TEST 'hrrr_control_intel' [38:15, 02:11](900 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [38:15, 03:18](901 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [38:16, 02:33](972 MB) -PASS -- TEST 'hrrr_control_restart_intel' [21:30, 02:06](731 MB) -PASS -- TEST 'rrfs_v1beta_intel' [21:27, 03:07](898 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [21:17, 01:55](1859 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [20:43, 02:08](1842 MB) - -PASS -- COMPILE 'csawmg_intel' [09:27, 08:08] -PASS -- TEST 'control_csawmg_intel' [39:18, 01:29](855 MB) -PASS -- TEST 'control_ras_intel' [39:18, 01:45](555 MB) - -PASS -- COMPILE 'wam_intel' [10:28, 08:15] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [19:56, 01:37](1552 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:28, 08:27] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [19:49, 02:03](1756 MB) -PASS -- TEST 'regional_control_faster_intel' [19:22, 02:12](834 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:27, 07:37] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [19:04, 01:40](1490 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [19:04, 01:48](1492 MB) -PASS -- TEST 'control_stochy_debug_intel' [18:37, 01:52](693 MB) -PASS -- TEST 'control_lndp_debug_intel' [18:18, 02:04](696 MB) -PASS -- TEST 'control_csawmg_debug_intel' [18:15, 01:33](996 MB) -PASS -- TEST 'control_ras_debug_intel' [17:55, 02:00](705 MB) -PASS -- TEST 'control_diag_debug_intel' [17:48, 02:13](1553 MB) -PASS -- TEST 'control_debug_p8_intel' [17:21, 02:15](1786 MB) -PASS -- TEST 'regional_debug_intel' [16:50, 01:42](878 MB) -PASS -- TEST 'rap_control_debug_intel' [16:51, 01:42](1077 MB) -PASS -- TEST 'hrrr_control_debug_intel' [16:51, 01:47](1074 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [16:26, 01:45](1072 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [16:25, 01:43](1073 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [16:03, 01:39](1079 MB) -PASS -- TEST 'rap_diag_debug_intel' [15:57, 01:37](1154 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [14:32, 01:32](1077 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [14:14, 01:31](1081 MB) -PASS -- TEST 'rap_lndp_debug_intel' [14:10, 01:35](1078 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [14:05, 01:38](1078 MB) -PASS -- TEST 'rap_noah_debug_intel' [13:52, 01:40](1072 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [13:48, 01:41](1079 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:45, 01:27](1071 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [13:39, 01:44](1068 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [12:57, 01:39](1077 MB) -PASS -- TEST 'rap_flake_debug_intel' [12:44, 01:35](1077 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:20, 03:03](1078 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:22, 04:38] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [41:20, 02:03](1567 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:26, 08:05] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:50, 02:16](909 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:37, 02:35](778 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [11:26, 03:07](779 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:25, 02:37](836 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:53, 02:51](828 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:37, 02:34](768 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [02:42, 02:30](676 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:47, 02:14](659 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:23, 08:07] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [09:13, 02:04](986 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:19, 01:49](988 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:23, 01:45](859 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:24, 08:13] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:13, 02:28](806 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:21, 04:39] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [09:00, 01:58](953 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:49, 02:06](950 MB) -PASS -- TEST 'conus13km_debug_intel' [08:49, 01:58](1038 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [08:34, 01:47](710 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:15, 01:56](1043 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [08:12, 01:44](1104 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:30] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:58, 01:50](983 MB) - -PASS -- COMPILE 'hafsw_intel' [11:26, 10:02] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:36, 03:06](598 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:35, 02:03](943 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:32, 02:37](647 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [06:23, 02:30](670 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [06:20, 02:38](690 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:10, 02:06](379 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:45, 03:06](390 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:26, 02:31](286 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [05:20, 03:28](369 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:47, 02:22](404 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:45, 02:41](410 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [03:15, 02:42](472 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:08, 02:26](428 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:20, 04:51] ( 1444 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [02:22, 02:18](500 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:27, 09:32] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [02:02, 01:57](512 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [01:30, 02:51](701 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:25, 09:56] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [01:13, 02:28](731 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:25, 08:58] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [00:35, 02:55](637 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [00:11, 03:05](619 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [59:42, 01:27](878 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:26, 09:51] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [59:29, 02:49](1807 MB) - -PASS -- COMPILE 'atml_intel' [11:33, 09:29] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [07:23, 05:28] ( 866 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [10:24, 08:32] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [59:25, 02:27](3009 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [59:24, 02:51](2891 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [59:21, 02:56](2907 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:22, 04:20] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [58:33, 02:47](4370 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:28, 11:17] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:34, 03:12](3085 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:28, 12:09] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [14:34, 02:59](1820 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [55:12, 02:59](1855 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [54:48, 02:55](963 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [14:35, 03:35](1789 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:28, 11:59] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [14:33, 02:12](1816 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:18] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [20:45, 03:22](1832 MB) + +PASS -- COMPILE 's2swa_intel' [13:27, 11:35] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [14:34, 02:28](3121 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:34, 03:10](3114 MB) +PASS -- TEST 'cpld_restart_p8_intel' [56:51, 03:26](3042 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [14:34, 02:38](3137 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [56:52, 02:14](3064 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [14:34, 02:57](3356 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:34, 02:06](3110 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:35, 02:34](3060 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:34, 03:13](3116 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [14:43, 06:43](4114 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [45:50, 05:47](4256 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [14:34, 02:56](3095 MB) + +PASS -- COMPILE 's2sw_intel' [12:26, 10:46] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:31, 02:07](1816 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:31, 02:48](1885 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:25, 10:22] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [15:38, 02:57](1873 MB) + +PASS -- COMPILE 's2s_intel' [12:26, 10:22] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [15:30, 01:52](2862 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [15:30, 01:36](2871 MB) +PASS -- TEST 'cpld_restart_c48_intel' [11:07, 02:09](2281 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:36, 16:13] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:28, 03:20](3123 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:28, 11:40] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:34, 02:28](1821 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [45:35, 02:02](1004 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [45:34, 01:53](1800 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:21, 05:14] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [13:23, 02:31](1853 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:43] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [02:50, 02:20](564 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [00:18, 02:11](1465 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [00:13, 02:04](1461 MB) +PASS -- TEST 'control_latlon_intel' [59:47, 01:57](1470 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [59:43, 02:11](1467 MB) +PASS -- TEST 'control_c48_intel' [59:37, 02:17](1568 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [59:36, 01:48](690 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [59:36, 02:21](1571 MB) +PASS -- TEST 'control_c192_intel' [59:36, 01:57](1586 MB) +PASS -- TEST 'control_c384_intel' [59:26, 03:13](1886 MB) +PASS -- TEST 'control_c384gdas_intel' [59:20, 03:39](1067 MB) +PASS -- TEST 'control_stochy_intel' [58:22, 01:24](522 MB) +PASS -- TEST 'control_stochy_restart_intel' [54:23, 01:56](330 MB) +PASS -- TEST 'control_lndp_intel' [57:40, 01:26](520 MB) +PASS -- TEST 'control_iovr4_intel' [57:39, 01:47](520 MB) +PASS -- TEST 'control_iovr5_intel' [57:34, 01:47](516 MB) +PASS -- TEST 'control_p8_intel' [56:26, 02:20](1750 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [56:22, 03:03](1753 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [56:15, 02:39](1749 MB) +PASS -- TEST 'control_restart_p8_intel' [49:50, 02:41](914 MB) +PASS -- TEST 'control_noqr_p8_intel' [56:15, 02:16](1761 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [49:49, 02:46](923 MB) +PASS -- TEST 'control_decomp_p8_intel' [56:13, 02:08](1746 MB) +PASS -- TEST 'control_2threads_p8_intel' [54:20, 02:29](1842 MB) +PASS -- TEST 'control_p8_lndp_intel' [54:14, 01:53](1764 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [54:04, 02:44](1808 MB) +PASS -- TEST 'control_p8_mynn_intel' [53:47, 02:55](1773 MB) +PASS -- TEST 'merra2_thompson_intel' [53:00, 02:24](1758 MB) +PASS -- TEST 'regional_control_intel' [52:57, 01:56](873 MB) +PASS -- TEST 'regional_restart_intel' [45:11, 01:24](853 MB) +PASS -- TEST 'regional_decomp_intel' [52:22, 01:40](856 MB) +PASS -- TEST 'regional_2threads_intel' [51:58, 01:39](928 MB) +PASS -- TEST 'regional_noquilt_intel' [51:45, 02:11](1200 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [51:12, 02:10](874 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [50:47, 02:11](877 MB) +PASS -- TEST 'regional_wofs_intel' [49:49, 01:19](1565 MB) + +PASS -- COMPILE 'rrfs_intel' [11:24, 09:11] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [49:37, 02:56](903 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [49:29, 01:53](1058 MB) +PASS -- TEST 'rap_decomp_intel' [48:52, 02:08](906 MB) +PASS -- TEST 'rap_2threads_intel' [47:47, 02:03](989 MB) +PASS -- TEST 'rap_restart_intel' [38:58, 03:14](778 MB) +PASS -- TEST 'rap_sfcdiff_intel' [47:12, 02:57](900 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [46:43, 02:14](899 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [36:43, 02:32](778 MB) +PASS -- TEST 'hrrr_control_intel' [46:32, 02:08](901 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [46:30, 02:01](900 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [46:30, 02:29](975 MB) +PASS -- TEST 'hrrr_control_restart_intel' [40:13, 01:59](733 MB) +PASS -- TEST 'rrfs_v1beta_intel' [46:20, 02:59](897 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [45:43, 01:31](1852 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [45:26, 01:53](1843 MB) + +PASS -- COMPILE 'csawmg_intel' [10:24, 08:21] +PASS -- TEST 'control_csawmg_intel' [05:00, 01:21](855 MB) +PASS -- TEST 'control_ras_intel' [45:23, 01:52](551 MB) + +PASS -- COMPILE 'wam_intel' [10:24, 08:14] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [45:00, 01:25](1547 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:24, 08:26] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [44:35, 02:58](1753 MB) +PASS -- TEST 'regional_control_faster_intel' [44:30, 01:17](869 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 07:39] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:10, 01:40](1493 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:10, 01:46](1492 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:10, 01:43](695 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:10, 02:03](695 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:10, 01:24](999 MB) +PASS -- TEST 'control_ras_debug_intel' [05:10, 02:00](703 MB) +PASS -- TEST 'control_diag_debug_intel' [05:10, 02:12](1556 MB) +PASS -- TEST 'control_debug_p8_intel' [05:10, 02:15](1789 MB) +PASS -- TEST 'regional_debug_intel' [05:09, 01:19](882 MB) +PASS -- TEST 'rap_control_debug_intel' [05:10, 01:38](1078 MB) +PASS -- TEST 'hrrr_control_debug_intel' [43:58, 01:45](1070 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [43:54, 01:38](1075 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [43:54, 01:35](1078 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [43:25, 01:42](1078 MB) +PASS -- TEST 'rap_diag_debug_intel' [43:21, 01:33](1157 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [42:57, 01:29](1077 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [42:10, 01:27](1078 MB) +PASS -- TEST 'rap_lndp_debug_intel' [41:02, 01:43](1077 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [40:52, 01:37](1075 MB) +PASS -- TEST 'rap_noah_debug_intel' [40:25, 01:42](1070 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [40:24, 01:36](1075 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [40:13, 01:28](1072 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [40:13, 02:34](1069 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [39:51, 02:34](1073 MB) +PASS -- TEST 'rap_flake_debug_intel' [38:46, 02:34](1078 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [38:37, 02:50](1078 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:20, 04:26] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [08:14, 02:04](1572 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 08:07] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [37:56, 02:06](935 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [37:40, 02:50](777 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [36:34, 03:25](777 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [36:19, 01:56](840 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [36:19, 03:19](825 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [36:18, 03:47](776 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [28:22, 02:32](683 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [29:29, 02:19](663 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:23, 08:13] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [35:53, 01:59](988 MB) +PASS -- TEST 'conus13km_2threads_intel' [30:49, 01:52](989 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [30:40, 01:41](863 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:24, 08:15] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [35:46, 02:17](804 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:44] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [35:42, 01:53](954 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [35:38, 01:59](953 MB) +PASS -- TEST 'conus13km_debug_intel' [35:17, 01:35](1041 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [34:37, 01:32](710 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [34:33, 01:40](1043 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [33:59, 01:30](1108 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 04:29] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [33:40, 01:47](981 MB) + +PASS -- COMPILE 'hafsw_intel' [11:31, 10:01] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [33:18, 03:00](596 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [33:16, 01:37](958 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [32:55, 02:37](647 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [32:54, 02:43](669 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [31:40, 02:49](690 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [31:25, 02:08](379 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [31:15, 03:11](389 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [30:52, 02:29](454 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [30:15, 03:16](370 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [29:36, 02:21](402 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [29:35, 02:02](401 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [29:32, 02:41](472 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [28:52, 02:22](436 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:19, 04:47] ( 1444 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [28:34, 02:19](502 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:26, 09:43] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [28:25, 02:01](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [28:20, 01:59](698 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:26, 09:36] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [28:12, 02:17](706 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:31, 09:16] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [27:55, 02:58](638 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [26:51, 02:59](612 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [26:48, 01:35](878 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:30, 10:07] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [25:59, 01:42](1825 MB) + +PASS -- COMPILE 'atml_intel' [11:31, 09:38] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [07:24, 05:26] ( 866 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [10:27, 08:42] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [25:58, 02:20](3015 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [24:55, 02:56](2894 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [24:47, 02:42](2900 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:22, 04:22] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [24:16, 03:07](4371 MB) SYNOPSIS: -Starting Date/Time: 20241120 19:58:28 -Ending Date/Time: 20241120 21:29:53 -Total Time: 01h:31m:59s +Starting Date/Time: 20241122 13:31:38 +Ending Date/Time: 20241122 15:04:37 +Total Time: 01h:33m:40s Compiles Completed: 33/33 Tests Completed: 157/157 diff --git a/tests/test_changes.list b/tests/test_changes.list index e57aa0aceb..b889b4baed 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,3 +1,63 @@ +cpld_control_p8_mixedmode intel +cpld_control_gfsv17 intel +cpld_control_gfsv17_iau intel +cpld_restart_gfsv17 intel +cpld_mpi_gfsv17 intel +cpld_control_sfs intel +cpld_debug_gfsv17 intel +cpld_control_p8 intel +cpld_control_p8.v2.sfc intel +cpld_restart_p8 intel +cpld_control_qr_p8 intel +cpld_restart_qr_p8 intel +cpld_2threads_p8 intel +cpld_decomp_p8 intel +cpld_mpi_p8 intel +cpld_control_ciceC_p8 intel +cpld_control_c192_p8 intel +cpld_restart_c192_p8 intel +cpld_bmark_p8 intel +cpld_restart_bmark_p8 intel +cpld_s2sa_p8 intel +cpld_control_noaero_p8 intel +cpld_control_nowave_noaero_p8 intel +cpld_debug_p8 intel +cpld_debug_noaero_p8 intel +cpld_control_noaero_p8_agrid intel +cpld_control_c48 intel +cpld_warmstart_c48 intel +cpld_restart_c48 intel +cpld_control_p8_faster intel +cpld_control_pdlib_p8 intel +cpld_restart_pdlib_p8 intel +cpld_mpi_pdlib_p8 intel +cpld_debug_pdlib_p8 intel +control_CubedSphereGrid intel +control_CubedSphereGrid_parallel intel +control_latlon intel +control_wrtGauss_netcdf_parallel intel +control_c48 intel +control_c192 intel +control_c384 intel +control_p8 intel +control_p8.v2.sfc intel +control_p8_ugwpv1 intel +control_restart_p8 intel +control_noqr_p8 intel +control_restart_noqr_p8 intel +control_decomp_p8 intel +control_2threads_p8 intel +control_p8_lndp intel +control_p8_rrtmgp intel +control_p8_mynn intel +merra2_thompson intel +regional_control intel +regional_restart intel +regional_decomp intel +regional_2threads intel +regional_noquilt intel +regional_netcdf_parallel intel +regional_2dwrtdecomp intel rap_control intel regional_spp_sppt_shum_skeb intel rap_decomp intel @@ -10,6 +70,33 @@ hrrr_control intel hrrr_control_decomp intel hrrr_control_2threads intel hrrr_control_restart intel +rrfs_v1beta intel +control_wam intel +control_p8_faster intel +regional_control_faster intel +control_CubedSphereGrid_debug intel +control_wrtGauss_netcdf_parallel_debug intel +control_diag_debug intel +control_debug_p8 intel +regional_debug intel +rap_control_debug intel +hrrr_control_debug intel +hrrr_gf_debug intel +hrrr_c3_debug intel +rap_unified_drag_suite_debug intel +rap_diag_debug intel +rap_cires_ugwp_debug intel +rap_unified_ugwp_debug intel +rap_lndp_debug intel +rap_progcld_thompson_debug intel +rap_noah_debug intel +rap_sfcdiff_debug intel +rap_noah_sfcdiff_cires_ugwp_debug intel +rrfs_v1beta_debug intel +rap_clm_lake_debug intel +rap_flake_debug intel +gnv1_c96_no_nest_debug intel +control_wam_debug intel regional_spp_sppt_shum_skeb_dyn32_phy32 intel rap_control_dyn32_phy32 intel hrrr_control_dyn32_phy32 intel @@ -18,9 +105,32 @@ hrrr_control_2threads_dyn32_phy32 intel hrrr_control_decomp_dyn32_phy32 intel rap_restart_dyn32_phy32 intel hrrr_control_restart_dyn32_phy32 intel +conus13km_control intel +conus13km_2threads intel +conus13km_restart_mismatch intel rap_control_dyn64_phy32 intel -rap_control_dyn32_phy32 intelllvm -rap_control_dyn64_phy32 intelllvm +rap_control_debug_dyn32_phy32 intel +hrrr_control_debug_dyn32_phy32 intel +conus13km_debug intel +conus13km_debug_qr intel +conus13km_debug_2threads intel +conus13km_radar_tten_debug intel +rap_control_dyn64_phy32_debug intel +hafs_regional_atm_thompson_gfdlsf intel +gnv1_nested intel +atm_ds2s_docn_pcice intel +atm_ds2s_docn_dice intel +control_p8_atmlnd_sbs intel +control_p8_atmlnd intel +control_restart_p8_atmlnd intel +control_p8_atmlnd_debug intel +atmwav_control_noaero_p8 intel +atmaero_control_p8 intel +atmaero_control_p8_rad intel +atmaero_control_p8_rad_micro intel +control_c48 gnu +control_p8 gnu +control_p8_ugwpv1 gnu rap_control gnu rap_decomp gnu rap_2threads gnu @@ -34,6 +144,21 @@ hrrr_control_2threads gnu hrrr_control_decomp gnu hrrr_control_restart gnu hrrr_control_restart_noqr gnu +rrfs_v1beta gnu +control_diag_debug gnu +regional_debug gnu +rap_control_debug gnu +hrrr_control_debug gnu +hrrr_gf_debug gnu +hrrr_c3_debug gnu +rap_diag_debug gnu +rap_noah_sfcdiff_cires_ugwp_debug gnu +rap_progcld_thompson_debug gnu +rrfs_v1beta_debug gnu +control_debug_p8 gnu +rap_flake_debug gnu +rap_clm_lake_debug gnu +gnv1_c96_no_nest_debug gnu rap_control_dyn32_phy32 gnu hrrr_control_dyn32_phy32 gnu rap_2threads_dyn32_phy32 gnu @@ -41,4 +166,24 @@ hrrr_control_2threads_dyn32_phy32 gnu hrrr_control_decomp_dyn32_phy32 gnu rap_restart_dyn32_phy32 gnu hrrr_control_restart_dyn32_phy32 gnu +conus13km_control gnu +conus13km_2threads gnu +conus13km_restart_mismatch gnu rap_control_dyn64_phy32 gnu +rap_control_debug_dyn32_phy32 gnu +hrrr_control_debug_dyn32_phy32 gnu +conus13km_debug gnu +conus13km_debug_qr gnu +conus13km_debug_2threads gnu +conus13km_radar_tten_debug gnu +rap_control_dyn64_phy32_debug gnu +cpld_control_nowave_noaero_p8 gnu +cpld_control_pdlib_p8 gnu +cpld_regional_atm_fbh intel +control_c48_lnd_iau intel +cpld_control_gfsv17 intelllvm +cpld_debug_gfsv17 intelllvm +cpld_control_sfs intelllvm +cpld_control_p8 intelllvm +rap_control_dyn32_phy32 intelllvm +rap_control_dyn64_phy32 intelllvm From a3c3bb587cdb6905a3d3635a4ef502547ff60598 Mon Sep 17 00:00:00 2001 From: Nicholas Szapiro <149816583+NickSzapiro-NOAA@users.noreply.github.com> Date: Tue, 3 Dec 2024 14:58:27 -0500 Subject: [PATCH 14/24] Update CICE (2024-11) including pio_finalize bug fix (#2505) * UFSWM - Update CICE to Consortium/main (2024-11). Expose hist_suffix for CICE ice_in * CICE - Update CICE to Consortium/main (2024-11) --- CICE-interface/CICE | 2 +- tests/bl_date.conf | 2 +- tests/default_vars.sh | 1 + tests/logs/RegressionTests_acorn.log | 520 +++++++-------- tests/logs/RegressionTests_derecho.log | 575 +++++++++-------- tests/logs/RegressionTests_gaea.log | 684 +++++++++----------- tests/logs/RegressionTests_hera.log | 822 +++++++++++------------ tests/logs/RegressionTests_hercules.log | 825 +++++++++++++----------- tests/logs/RegressionTests_jet.log | 554 +++++++--------- tests/logs/RegressionTests_orion.log | 581 +++++++++-------- tests/logs/RegressionTests_wcoss2.log | 464 ++++++------- tests/parm/ice_in.IN | 1 + tests/test_changes.list | 168 +---- 13 files changed, 2450 insertions(+), 2749 deletions(-) diff --git a/CICE-interface/CICE b/CICE-interface/CICE index 5e57a89cf5..513f8d1539 160000 --- a/CICE-interface/CICE +++ b/CICE-interface/CICE @@ -1 +1 @@ -Subproject commit 5e57a89cf533fe98352bcfd1a464b1d50713274d +Subproject commit 513f8d153924e18ae0f91f5440195d15210a489e diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 8e9a2de26e..c5bc95de3a 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20241121 +export BL_DATE=20241127 diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 4b46ce6aaf..fa43453bd2 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -1218,6 +1218,7 @@ export_cice6() { CICE_DIAGFREQ=$(( (FHMAX*3600)/DT_CICE )) export CICE_DIAGFREQ export CICE_HISTFREQ_N="0, 0, 6, 0, 0" + export CICE_hist_suffix="'x','x','x','x','x'" export CICE_HIST_AVG=.true. export CICE_HISTORY_DIR=./history/ export CICE_INCOND_DIR=./history/ diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 2671e50cf1..fd8e3284df 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,20 +1,20 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -946b7e2833191ab36966b64cff0f15aaddf6ea03 +e4d3bebab002b60b5af711bfcbbda2307d0925bb 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) + cf01f337a0162dc05889288e19bc9c4811ace762 CICE-interface/CICE (remotes/origin/sync_cice_2024-11) + 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 915e44e963b804684b872c5545feb9416e742f72 FV3 (remotes/origin/rrfsv1-to-ufs/dev3) + b769849792dbe799dc1a2e29942864f880ee8445 FV3 (heads/develop) e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 9dffb7e1cd5fceebec065299c791e65e3a30e0c2 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5516-g9dffb7e1) + 6e0467ad07a2231d298dc3be91a923c934354a7f FV3/ccpp/physics (EP4-1071-g6e0467ad) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -38,268 +38,268 @@ 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-20241121 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3948084 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241127 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2540495 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:26, 11:26] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [41:50, 02:35](3192 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:27, 11:51] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [41:49, 04:00](1906 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:27, 04:03](1933 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [20:45, 03:52](1079 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [41:50, 03:34](1881 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:29, 11:59] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [41:48, 01:56](1901 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:22, 05:21] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [47:56, 03:49](1952 MB) - -PASS -- COMPILE 's2swa_intel' [13:27, 11:34] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [41:48, 02:48](3227 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [41:48, 02:34](3225 MB) -PASS -- TEST 'cpld_restart_p8_intel' [20:01, 03:11](3152 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [41:48, 02:30](3244 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [17:26, 02:21](3171 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [41:48, 02:45](3463 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [41:48, 03:21](3218 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [41:49, 02:28](3168 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [41:48, 03:17](3225 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [41:48, 03:14](3206 MB) - -PASS -- COMPILE 's2sw_intel' [12:26, 10:50] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [42:49, 02:09](1925 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [42:49, 03:02](1968 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:24, 10:08] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [43:51, 03:18](1965 MB) - -PASS -- COMPILE 's2s_intel' [12:26, 10:43] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [42:48, 01:55](2878 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [42:48, 02:50](2887 MB) -PASS -- TEST 'cpld_restart_c48_intel' [37:19, 02:09](2310 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:32, 15:30] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [37:44, 02:35](3224 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:28, 11:29] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [41:48, 02:07](1920 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:37, 02:20](1108 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [10:38, 02:25](1902 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 05:06] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:37, 02:33](1964 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:29] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [32:26, 01:47](660 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [32:26, 01:25](1557 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [32:26, 01:31](1568 MB) -PASS -- TEST 'control_latlon_intel' [32:26, 01:33](1570 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [32:26, 02:10](1560 MB) -PASS -- TEST 'control_c48_intel' [32:25, 01:44](1586 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [32:25, 02:04](708 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [32:25, 01:43](1586 MB) -PASS -- TEST 'control_c192_intel' [32:26, 02:12](1687 MB) -PASS -- TEST 'control_c384_intel' [32:18, 02:55](1970 MB) -PASS -- TEST 'control_c384gdas_intel' [29:43, 04:08](1180 MB) -PASS -- TEST 'control_stochy_intel' [27:23, 01:38](615 MB) -PASS -- TEST 'control_stochy_restart_intel' [15:44, 01:56](423 MB) -PASS -- TEST 'control_lndp_intel' [26:44, 02:13](614 MB) -PASS -- TEST 'control_iovr4_intel' [24:33, 02:11](611 MB) -PASS -- TEST 'control_iovr5_intel' [23:27, 02:03](610 MB) -PASS -- TEST 'control_p8_intel' [20:00, 03:35](1850 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [19:51, 03:33](1855 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [19:46, 03:07](1851 MB) -PASS -- TEST 'control_restart_p8_intel' [10:36, 03:17](1009 MB) -PASS -- TEST 'control_noqr_p8_intel' [19:12, 02:16](1844 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [10:29, 02:32](1014 MB) -PASS -- TEST 'control_decomp_p8_intel' [17:26, 02:36](1845 MB) -PASS -- TEST 'control_2threads_p8_intel' [17:19, 02:48](1931 MB) -PASS -- TEST 'control_p8_lndp_intel' [17:11, 02:06](1851 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [16:42, 03:36](1903 MB) -PASS -- TEST 'control_p8_mynn_intel' [16:12, 03:12](1858 MB) -PASS -- TEST 'merra2_thompson_intel' [16:12, 03:53](1853 MB) -PASS -- TEST 'regional_control_intel' [16:03, 02:06](887 MB) -PASS -- TEST 'regional_restart_intel' [08:09, 01:13](873 MB) -PASS -- TEST 'regional_decomp_intel' [15:34, 01:36](891 MB) -PASS -- TEST 'regional_2threads_intel' [15:14, 01:24](1015 MB) -PASS -- TEST 'regional_noquilt_intel' [15:10, 01:17](1219 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [15:06, 01:46](893 MB) -PASS -- TEST 'regional_wofs_intel' [14:20, 01:44](1587 MB) - -PASS -- COMPILE 'rrfs_intel' [10:24, 08:41] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [13:54, 03:14](1002 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:50, 01:57](1158 MB) -PASS -- TEST 'rap_decomp_intel' [12:25, 02:56](1003 MB) -PASS -- TEST 'rap_2threads_intel' [10:23, 02:15](1083 MB) -PASS -- TEST 'rap_restart_intel' [01:28, 03:43](884 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:10, 03:07](1000 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:09, 02:25](998 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [58:46, 03:10](886 MB) -PASS -- TEST 'hrrr_control_intel' [09:49, 02:43](998 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [09:39, 03:10](992 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:26, 03:16](1069 MB) -PASS -- TEST 'hrrr_control_restart_intel' [01:06, 01:28](831 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:12, 03:37](997 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [07:01, 01:22](1956 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [06:35, 02:03](1948 MB) - -PASS -- COMPILE 'csawmg_intel' [09:23, 08:05] -PASS -- TEST 'control_csawmg_intel' [33:26, 02:03](952 MB) -PASS -- TEST 'control_ras_intel' [33:26, 01:53](654 MB) - -PASS -- COMPILE 'wam_intel' [10:23, 08:15] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [06:24, 01:49](1643 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:23, 08:22] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:20, 03:31](1856 MB) -PASS -- TEST 'regional_control_faster_intel' [06:20, 01:36](888 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 07:30] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:50, 01:27](1600 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:42, 01:41](1600 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:36, 02:00](803 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:18, 01:42](803 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:18, 02:06](1109 MB) -PASS -- TEST 'control_ras_debug_intel' [04:16, 01:38](810 MB) -PASS -- TEST 'control_diag_debug_intel' [03:51, 01:42](1661 MB) -PASS -- TEST 'control_debug_p8_intel' [03:33, 01:30](1901 MB) -PASS -- TEST 'regional_debug_intel' [03:29, 02:08](936 MB) -PASS -- TEST 'rap_control_debug_intel' [03:22, 01:43](1188 MB) -PASS -- TEST 'hrrr_control_debug_intel' [01:28, 01:30](1181 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [01:06, 01:31](1185 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [00:52, 01:20](1189 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [00:09, 01:57](1190 MB) -PASS -- TEST 'rap_diag_debug_intel' [58:51, 02:10](1270 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [58:38, 02:01](1198 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [58:37, 01:56](1188 MB) -PASS -- TEST 'rap_lndp_debug_intel' [58:29, 02:13](1188 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [58:03, 01:28](1190 MB) -PASS -- TEST 'rap_noah_debug_intel' [57:58, 01:20](1181 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [57:55, 01:30](1185 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [57:17, 01:48](1183 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [56:45, 01:20](1179 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [56:43, 02:09](1186 MB) -PASS -- TEST 'rap_flake_debug_intel' [55:52, 01:26](1188 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [55:50, 03:44](1189 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:20, 04:23] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [35:28, 02:08](1689 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 08:04] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [55:43, 01:34](1035 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [55:32, 03:39](878 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [55:23, 04:12](877 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [54:56, 03:06](930 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [54:44, 04:38](922 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [54:25, 03:47](869 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [42:11, 03:47](789 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [43:39, 01:22](759 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:22, 08:04] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [52:52, 01:54](1081 MB) -PASS -- TEST 'conus13km_2threads_intel' [46:42, 01:37](1061 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [46:08, 01:15](959 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:24, 08:32] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [52:44, 01:48](901 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:29] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [52:31, 01:21](1059 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [52:03, 01:44](1063 MB) -PASS -- TEST 'conus13km_debug_intel' [51:16, 01:36](1156 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [50:37, 01:59](822 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [50:16, 01:28](1133 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [49:30, 02:02](1222 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 04:41] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [49:25, 01:52](1088 MB) - -PASS -- COMPILE 'hafsw_intel' [12:26, 10:24] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [49:10, 03:02](687 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [49:06, 02:17](1051 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [49:04, 02:38](730 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [48:56, 02:36](771 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [48:23, 02:57](783 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [48:21, 01:57](462 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [47:32, 02:36](501 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [47:13, 02:06](376 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [45:20, 03:15](444 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [44:52, 02:03](496 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [43:58, 02:09](494 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [43:42, 02:36](560 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [43:38, 02:15](406 MB) -PASS -- TEST 'gnv1_nested_intel' [43:29, 04:44](1697 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:20, 05:18] ( 1444 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [42:23, 02:37](676 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:25, 09:40] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [42:14, 02:02](603 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [42:14, 01:44](780 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:25, 10:05] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [41:26, 02:06](780 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:24, 09:37] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [40:52, 02:13](735 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [40:09, 03:07](705 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [39:41, 01:18](900 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [11:24, 09:37] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [39:07, 02:10](766 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [34:43, 01:58](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [37:10, 01:14](645 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [36:11, 01:40](647 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [35:01, 01:31](645 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [34:47, 01:36](751 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [33:48, 01:27](764 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [33:03, 01:44](642 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [33:00, 02:24](687 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [32:53, 02:16](667 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [32:51, 01:29](764 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [32:26, 01:35](2030 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [31:47, 01:52](2032 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:24, 09:31] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [31:21, 02:11](766 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:15, 00:54] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [31:19, 02:01](302 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [31:17, 02:12](447 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [25:42, 01:28](448 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:25, 09:59] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [30:39, 02:40](1913 MB) - -PASS -- COMPILE 'atml_intel' [11:25, 09:50] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [30:26, 03:15](1883 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [30:05, 03:37](1879 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [12:33, 01:17](1034 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:20, 05:28] ( 866 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [29:27, 03:13](1920 MB) - -PASS -- COMPILE 'atmw_intel' [10:23, 09:07] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [28:41, 02:51](1879 MB) - -PASS -- COMPILE 'atmaero_intel' [10:24, 08:49] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [28:30, 02:38](3118 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [28:07, 03:11](2997 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [27:44, 02:44](3006 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:20, 04:27] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [27:38, 01:55](4487 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:29, 11:21] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [23:42, 03:21](3192 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:26, 12:02] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [23:44, 03:54](1906 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [03:18, 04:12](1954 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [02:13, 03:54](1074 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:45, 03:16](1882 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:26, 12:02] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [23:44, 02:24](1912 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:26] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:51, 03:22](1942 MB) + +PASS -- COMPILE 's2swa_intel' [13:27, 11:25] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [23:43, 02:24](3227 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [23:43, 02:56](3225 MB) +PASS -- TEST 'cpld_restart_p8_intel' [59:36, 02:29](3156 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [23:43, 02:51](3244 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:29, 03:00](3171 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [23:43, 02:54](3463 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [23:43, 03:10](3220 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [23:44, 02:36](3168 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [23:43, 03:00](3227 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [23:43, 03:15](3200 MB) + +PASS -- COMPILE 's2sw_intel' [12:26, 11:01] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [24:44, 01:59](1918 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [24:44, 03:04](1980 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:26, 10:16] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [25:44, 03:11](1977 MB) + +PASS -- COMPILE 's2s_intel' [11:26, 10:11] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [25:43, 02:00](2883 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [25:43, 02:47](2887 MB) +PASS -- TEST 'cpld_restart_c48_intel' [20:14, 02:33](2309 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:32, 15:32] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [19:38, 03:22](3227 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:28, 11:26] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:42, 02:49](1920 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [47:22, 02:18](1106 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [46:57, 01:59](1901 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:13] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:31, 02:51](1964 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:24] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [14:13, 01:59](660 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [11:34, 02:01](1556 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:42, 01:41](1567 MB) +PASS -- TEST 'control_latlon_intel' [05:29, 01:54](1562 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:20, 02:29](1564 MB) +PASS -- TEST 'control_c48_intel' [01:39, 02:05](1581 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [01:16, 01:50](706 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [00:15, 01:41](1582 MB) +PASS -- TEST 'control_c192_intel' [59:41, 01:35](1687 MB) +PASS -- TEST 'control_c384_intel' [57:30, 03:05](1967 MB) +PASS -- TEST 'control_c384gdas_intel' [57:03, 03:46](1176 MB) +PASS -- TEST 'control_stochy_intel' [53:45, 02:02](616 MB) +PASS -- TEST 'control_stochy_restart_intel' [48:12, 02:05](426 MB) +PASS -- TEST 'control_lndp_intel' [53:35, 02:09](616 MB) +PASS -- TEST 'control_iovr4_intel' [52:30, 01:57](611 MB) +PASS -- TEST 'control_iovr5_intel' [52:30, 01:32](610 MB) +PASS -- TEST 'control_p8_intel' [51:29, 03:11](1850 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [51:29, 03:40](1855 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [51:29, 03:15](1849 MB) +PASS -- TEST 'control_restart_p8_intel' [43:06, 03:23](1009 MB) +PASS -- TEST 'control_noqr_p8_intel' [51:04, 02:32](1843 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [42:26, 02:42](1014 MB) +PASS -- TEST 'control_decomp_p8_intel' [50:58, 02:16](1853 MB) +PASS -- TEST 'control_2threads_p8_intel' [50:35, 02:53](1933 MB) +PASS -- TEST 'control_p8_lndp_intel' [50:26, 01:42](1851 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [50:25, 03:11](1901 MB) +PASS -- TEST 'control_p8_mynn_intel' [50:20, 03:10](1857 MB) +PASS -- TEST 'merra2_thompson_intel' [50:14, 04:14](1855 MB) +PASS -- TEST 'regional_control_intel' [49:05, 02:09](891 MB) +PASS -- TEST 'regional_restart_intel' [41:12, 01:52](876 MB) +PASS -- TEST 'regional_decomp_intel' [48:17, 01:37](891 MB) +PASS -- TEST 'regional_2threads_intel' [48:06, 01:52](1019 MB) +PASS -- TEST 'regional_noquilt_intel' [48:01, 01:12](1213 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [46:21, 01:50](889 MB) +PASS -- TEST 'regional_wofs_intel' [45:54, 01:39](1587 MB) + +PASS -- COMPILE 'rrfs_intel' [10:24, 08:49] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [15:20, 03:32](1001 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [15:21, 02:06](1157 MB) +PASS -- TEST 'rap_decomp_intel' [15:20, 02:41](1007 MB) +PASS -- TEST 'rap_2threads_intel' [15:20, 04:13](1084 MB) +PASS -- TEST 'rap_restart_intel' [45:18, 03:30](884 MB) +PASS -- TEST 'rap_sfcdiff_intel' [15:20, 02:24](1001 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:20, 03:37](998 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [44:39, 03:10](887 MB) +PASS -- TEST 'hrrr_control_intel' [15:20, 03:58](999 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [15:20, 03:19](993 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [15:07, 03:17](1069 MB) +PASS -- TEST 'hrrr_control_restart_intel' [43:05, 01:41](832 MB) +PASS -- TEST 'rrfs_v1beta_intel' [43:05, 03:52](998 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [42:55, 01:46](1957 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [42:38, 01:30](1945 MB) + +PASS -- COMPILE 'csawmg_intel' [09:22, 08:03] +PASS -- TEST 'control_csawmg_intel' [15:21, 02:06](951 MB) +PASS -- TEST 'control_ras_intel' [15:21, 01:44](651 MB) + +PASS -- COMPILE 'wam_intel' [10:22, 08:15] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [42:23, 01:37](1643 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:22, 08:23] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [41:59, 03:19](1856 MB) +PASS -- TEST 'regional_control_faster_intel' [41:52, 02:03](889 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:22, 07:28] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [41:36, 01:25](1612 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [40:49, 02:27](1603 MB) +PASS -- TEST 'control_stochy_debug_intel' [40:17, 01:57](805 MB) +PASS -- TEST 'control_lndp_debug_intel' [40:05, 01:21](806 MB) +PASS -- TEST 'control_csawmg_debug_intel' [39:58, 02:12](1110 MB) +PASS -- TEST 'control_ras_debug_intel' [39:27, 01:48](812 MB) +PASS -- TEST 'control_diag_debug_intel' [39:20, 02:20](1656 MB) +PASS -- TEST 'control_debug_p8_intel' [39:11, 01:26](1904 MB) +PASS -- TEST 'regional_debug_intel' [38:31, 01:14](934 MB) +PASS -- TEST 'rap_control_debug_intel' [38:27, 02:08](1192 MB) +PASS -- TEST 'hrrr_control_debug_intel' [38:23, 02:06](1185 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [38:20, 01:22](1184 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [36:52, 01:28](1189 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [36:47, 01:58](1191 MB) +PASS -- TEST 'rap_diag_debug_intel' [36:03, 01:31](1269 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [35:43, 01:40](1192 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [35:43, 01:39](1188 MB) +PASS -- TEST 'rap_lndp_debug_intel' [35:27, 01:53](1190 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [35:12, 01:38](1188 MB) +PASS -- TEST 'rap_noah_debug_intel' [34:44, 01:29](1183 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [34:00, 01:59](1187 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [33:40, 01:28](1186 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [33:34, 01:18](1183 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [32:44, 01:55](1190 MB) +PASS -- TEST 'rap_flake_debug_intel' [32:43, 02:10](1190 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [32:21, 03:19](1190 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:19, 04:26] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [17:22, 02:06](1689 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 08:07] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [31:56, 02:03](1039 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [31:44, 03:24](876 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [31:21, 04:23](876 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [31:17, 03:32](934 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [31:09, 02:52](923 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [31:01, 04:17](870 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [18:23, 03:31](792 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [19:46, 01:30](760 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:23, 08:04] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [30:05, 02:14](1082 MB) +PASS -- TEST 'conus13km_2threads_intel' [22:53, 02:08](1062 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [22:08, 01:19](957 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:23, 08:13] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [29:18, 01:41](896 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 04:28] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [28:49, 01:25](1059 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [27:43, 01:57](1062 MB) +PASS -- TEST 'conus13km_debug_intel' [27:43, 01:42](1150 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [27:16, 02:02](836 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [26:21, 02:15](1140 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:12, 02:11](1216 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 04:22] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [26:11, 01:40](1087 MB) + +PASS -- COMPILE 'hafsw_intel' [11:25, 09:49] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [26:11, 03:20](688 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [26:10, 01:56](1043 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [25:53, 03:04](732 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [25:39, 02:51](908 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [25:11, 03:08](781 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [24:26, 02:45](463 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [24:01, 02:47](481 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [21:27, 02:57](379 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [21:11, 03:57](435 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [21:03, 01:41](496 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [20:18, 01:48](491 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [19:49, 02:08](562 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [19:12, 01:32](406 MB) +PASS -- TEST 'gnv1_nested_intel' [18:25, 04:19](1697 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:20, 04:51] ( 1444 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:26, 02:11](608 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:26, 09:29] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:39, 02:01](604 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:35, 02:45](783 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:29, 10:01] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [16:58, 02:21](782 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:26, 09:11] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [16:09, 02:55](734 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [15:55, 03:08](706 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [15:38, 01:20](900 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [15:28, 09:18] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [15:13, 01:50](765 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [08:46, 01:19](742 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [12:15, 01:44](646 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [11:59, 01:39](644 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [11:55, 01:43](643 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [11:08, 01:21](752 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [10:50, 01:21](765 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [09:28, 01:42](645 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:11, 02:29](688 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:04, 02:05](668 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [08:03, 01:15](765 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:52, 01:26](2031 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:35, 01:45](2031 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [17:33, 09:15] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [06:57, 01:48](766 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [10:24, 00:51] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:55, 02:11](309 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [06:47, 01:40](449 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [58:09, 01:35](450 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:31, 10:03] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:31, 01:50](1917 MB) + +PASS -- COMPILE 'atml_intel' [17:32, 09:30] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:29, 03:33](1878 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [05:49, 03:18](1878 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [48:16, 02:08](1034 MB) + +PASS -- COMPILE 'atml_debug_intel' [12:27, 05:17] ( 866 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:22, 03:37](1922 MB) + +PASS -- COMPILE 'atmw_intel' [13:29, 09:02] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:04, 03:32](1877 MB) + +PASS -- COMPILE 'atmaero_intel' [11:25, 08:33] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [03:42, 03:12](3119 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [03:24, 03:03](2997 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [03:12, 02:25](3006 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [10:23, 04:22] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [03:04, 02:36](4485 MB) SYNOPSIS: -Starting Date/Time: 20241122 14:03:31 -Ending Date/Time: 20241122 16:05:18 -Total Time: 02h:03m:12s +Starting Date/Time: 20241202 17:22:29 +Ending Date/Time: 20241202 19:34:03 +Total Time: 02h:12m:03s Compiles Completed: 37/37 Tests Completed: 177/177 diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index dcbb03e63a..b22d7b5efb 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,31 +1,33 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -7d136e0c38b9444ecb96b52e558bd6ee43f3ca09 +e4d3bebab002b60b5af711bfcbbda2307d0925bb 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) - 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) + cf01f337a0162dc05889288e19bc9c4811ace762 CICE-interface/CICE (remotes/origin/sync_cice_2024-11) + 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - f188fe2afb3dd04f460a36ddda5e18e17c68f422 FV3 (remotes/origin/support_intelllvm) - b947391ed4d23ffa15f5c854e7d5c4849abefc40 FV3/atmos_cubed_sphere (201912_public_release-414-gb947391) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 77d28126e3dbb19ad9714d3703764202ebce82ec FV3/ccpp/physics (remotes/origin/support_intelllvm) + b769849792dbe799dc1a2e29942864f880ee8445 FV3 (heads/develop) + e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) + b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) + 6e0467ad07a2231d298dc3be91a923c934354a7f FV3/ccpp/physics (EP4-1071-g6e0467ad) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 55ec82b08ca7d914ace595d4eecd54ae640ade31 FV3/upp (upp_gfsv16_release.v1.0.8-385-g55ec82b) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd + ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) +-179cae1dd84401cf25d250bd9102e66560a9d328 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) - 6810b2d8dbceea2b5e47b3f1b59b5461aded3827 WW3 (remotes/origin/support_intelllvm) + 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) + abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,288 +38,289 @@ 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: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240909 -COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_36907 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20241127 +COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_12569 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-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) +PASS -- COMPILE 's2swa_32bit_intel' [21:20, 21:20] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:28, 10:05](3200 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:28, 23:28] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [15:56, 14:18](1919 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:05, 15:16](1946 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:59, 07:11](1080 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:42, 15:59](1881 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:10, 23:10] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [14:43, 13:58](1906 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:56, 11:56] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:08, 25:28](1943 MB) + +PASS -- COMPILE 's2swa_intel' [21:26, 21:26] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:03, 13:43](3222 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:01, 13:39](3218 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:19, 07:46](3153 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:05, 13:41](3257 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:20, 07:46](3178 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [13:54, 12:38](3748 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:38, 13:20](3219 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [12:02, 10:46](3534 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:57, 13:38](3232 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [11:10, 09:09](3815 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:16, 06:33](3619 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [24:56, 17:20](4519 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:54, 10:30](4649 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:58, 07:45](3210 MB) + +PASS -- COMPILE 's2sw_intel' [19:29, 19:29] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:38, 07:31](1922 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:03, 11:48](1985 MB) + +PASS -- COMPILE 's2swa_debug_intel' [11:49, 11:49] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [21:37, 20:23](3302 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:58, 10:58] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:58, 08:54](1961 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:09, 16:09] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:03, 04:51](1987 MB) + +PASS -- COMPILE 's2s_intel' [16:46, 16:45] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [06:12, 05:15](2880 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [02:25, 01:37](2903 MB) +PASS -- TEST 'cpld_restart_c48_intel' [01:48, 00:56](2308 MB) + +PASS -- COMPILE 's2swa_faster_intel' [24:34, 24:33] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [14:45, 13:25](3233 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:01, 22:01] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:47, 23:34](1926 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:33, 12:14](1095 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:28, 27:17](1890 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:06, 11:05] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:48, 27:40](1968 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:21, 14:21] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:38, 03:24](668 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:17, 02:41](1562 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:27, 02:46](1573 MB) +PASS -- TEST 'control_latlon_intel' [03:08, 02:38](1568 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:21, 02:41](1561 MB) +PASS -- TEST 'control_c48_intel' [09:45, 09:13](1591 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [05:27, 05:14](707 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [09:49, 09:15](1589 MB) +PASS -- TEST 'control_c192_intel' [10:52, 10:01](1692 MB) +PASS -- TEST 'control_c384_intel' [13:11, 11:20](1979 MB) +PASS -- TEST 'control_c384gdas_intel' [09:54, 07:24](1178 MB) +PASS -- TEST 'control_stochy_intel' [01:41, 01:28](626 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:07, 00:53](432 MB) +PASS -- TEST 'control_lndp_intel' [01:35, 01:20](621 MB) +PASS -- TEST 'control_iovr4_intel' [02:23, 02:06](619 MB) +PASS -- TEST 'control_iovr5_intel' [02:21, 02:05](618 MB) +PASS -- TEST 'control_p8_intel' [04:54, 03:41](1855 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:29, 03:12](1862 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:54, 03:40](1859 MB) +PASS -- TEST 'control_restart_p8_intel' [03:43, 02:26](1011 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:47, 03:38](1847 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:34, 02:23](1018 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:51, 03:42](1848 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:41, 03:29](1941 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:38, 06:02](1858 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:12, 03:55](1912 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:27, 03:14](1859 MB) +PASS -- TEST 'merra2_thompson_intel' [04:50, 03:23](1860 MB) +PASS -- TEST 'regional_control_intel' [04:52, 04:24](895 MB) +PASS -- TEST 'regional_restart_intel' [02:57, 02:27](864 MB) +PASS -- TEST 'regional_decomp_intel' [05:11, 04:42](898 MB) +PASS -- TEST 'regional_noquilt_intel' [04:48, 04:18](1214 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:08, 04:37](895 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [04:51, 04:23](891 MB) +PASS -- TEST 'regional_wofs_intel' [06:20, 05:51](1588 MB) + +PASS -- COMPILE 'rrfs_intel' [12:49, 12:49] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:13, 06:08](1006 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:49, 03:50](1160 MB) +PASS -- TEST 'rap_decomp_intel' [07:34, 06:24](1002 MB) +PASS -- TEST 'rap_2threads_intel' [06:49, 05:40](1084 MB) +PASS -- TEST 'rap_restart_intel' [04:23, 03:14](882 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:18, 06:06](1007 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:34, 06:23](1005 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:41, 04:35](883 MB) +PASS -- TEST 'hrrr_control_intel' [04:21, 03:12](998 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:29, 03:17](997 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [03:57, 02:48](1078 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:04, 01:45](832 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:04, 06:00](1000 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:17, 08:00](1954 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:02, 07:46](1945 MB) + +PASS -- COMPILE 'csawmg_intel' [11:39, 11:39] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [07:08, 06:34](955 MB) +PASS -- TEST 'control_ras_intel' [03:08, 02:53](658 MB) + +PASS -- COMPILE 'wam_intel' [11:38, 11:37] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [10:50, 10:16](1647 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:08, 12:08] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:16, 02:58](1858 MB) +PASS -- TEST 'regional_control_faster_intel' [04:37, 04:08](902 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [14:50, 14:50] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:44, 02:06](1609 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:44, 02:04](1609 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:05, 02:50](811 MB) +PASS -- TEST 'control_lndp_debug_intel' [02:49, 02:34](812 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:06, 04:34](1119 MB) +PASS -- TEST 'control_ras_debug_intel' [02:50, 02:36](820 MB) +PASS -- TEST 'control_diag_debug_intel' [03:20, 02:35](1663 MB) +PASS -- TEST 'control_debug_p8_intel' [03:23, 02:49](1897 MB) +PASS -- TEST 'regional_debug_intel' [16:31, 16:03](935 MB) +PASS -- TEST 'rap_control_debug_intel' [04:58, 04:45](1190 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:48, 04:32](1186 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:53, 04:38](1189 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:04, 04:50](1195 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:59, 04:43](1191 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:25, 04:52](1275 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:02, 04:48](1193 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:05, 04:51](1191 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:05, 04:50](1193 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:53, 04:38](1190 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:49, 04:34](1194 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:56, 04:41](1193 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:01, 07:47](1189 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:50, 04:35](1188 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [04:58, 04:41](1195 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:55, 04:42](1198 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:29, 08:16](1201 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:17, 07:17] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [12:40, 12:04](1690 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:34, 11:34] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:34, 03:37](1035 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:16, 05:09](877 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:20, 02:45](877 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:47, 04:45](937 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:56, 02:25](930 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:28, 02:56](873 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:52, 03:52](795 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [01:49, 01:32](775 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:27, 11:27] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:37, 01:53](1073 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:38, 01:02](1078 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:49, 01:11](964 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:42, 11:42] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:09, 03:38](906 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:33, 07:33] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:52, 04:37](1070 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:43, 04:26](1064 MB) +PASS -- TEST 'conus13km_debug_intel' [13:33, 12:51](1149 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [14:05, 13:22](834 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:14, 07:36](1149 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:30, 12:53](1217 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:16, 07:16] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:57, 04:42](1097 MB) + +PASS -- COMPILE 'hafsw_intel' [17:52, 17:52] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [05:34, 04:39](703 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:32, 05:11](1064 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:39, 06:30](762 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [11:42, 10:43](777 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [13:01, 11:47](802 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:23, 04:39](466 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:46, 05:43](487 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [02:57, 02:18](392 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:02, 06:12](456 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [03:55, 03:17](502 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [03:48, 03:05](507 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:38, 03:48](577 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:28, 01:13](420 MB) +PASS -- TEST 'gnv1_nested_intel' [06:12, 04:05](1696 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:36, 08:35] ( 1467 warnings 1469 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:02, 12:15](618 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:24, 17:24] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [07:41, 06:49](620 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [07:53, 06:56](678 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [18:58, 18:57] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [06:52, 05:17](668 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:53, 15:52] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [06:39, 05:44](734 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:42, 05:46](725 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:58, 16:13](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:17, 08:17] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:35, 02:28](755 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:38, 01:28](758 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:27, 02:20](643 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:30, 02:23](646 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:28, 02:21](644 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:34, 02:28](768 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:35, 02:29](767 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:26, 02:20](648 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:30, 05:32](695 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:29, 05:29](681 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:31, 02:27](768 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:00, 03:52](2031 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:59, 03:52](2030 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:51, 05:51] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:14, 05:08](752 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:18, 08:18] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:34, 02:27](756 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:37, 02:37] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:30, 01:09](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:19, 01:03](452 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:57, 00:41](451 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:36, 13:36] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:52, 03:53](1913 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:44, 12:44] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:53, 07:54](1910 MB) + +PASS -- COMPILE 'atml_intel' [14:48, 14:48] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:57, 06:33](1880 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:38, 06:17](1887 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:32, 03:56](1033 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:30, 10:29] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:30, 06:05](1927 MB) + +PASS -- COMPILE 'atmw_intel' [13:39, 13:39] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:25, 02:09](1883 MB) + +PASS -- COMPILE 'atmaero_intel' [12:57, 12:57] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:30, 04:19](3125 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:30, 04:18](3005 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:19, 04:24](3016 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:05, 08:05] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:41, 21:53](4544 MB) + +PASS -- COMPILE 'atm_fbh_intel' [11:28, 11:28] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [08:22, 08:07](847 MB) SYNOPSIS: -Starting Date/Time: 20240926 09:23:49 -Ending Date/Time: 20240927 03:11:02 -Total Time: 17h:49m:31s +Starting Date/Time: 20241201 07:48:30 +Ending Date/Time: 20241201 12:40:01 +Total Time: 04h:52m:35s Compiles Completed: 42/42 -Tests Completed: 185/185 +Tests Completed: 186/186 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index fc23144717..4002cf818a 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,20 +1,20 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -946b7e2833191ab36966b64cff0f15aaddf6ea03 +e4d3bebab002b60b5af711bfcbbda2307d0925bb 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) + cf01f337a0162dc05889288e19bc9c4811ace762 CICE-interface/CICE (remotes/origin/sync_cice_2024-11) + 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 915e44e963b804684b872c5545feb9416e742f72 FV3 (remotes/origin/rrfsv1-to-ufs/dev3) + b769849792dbe799dc1a2e29942864f880ee8445 FV3 (heads/develop) e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 9dffb7e1cd5fceebec065299c791e65e3a30e0c2 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5516-g9dffb7e1) + 6e0467ad07a2231d298dc3be91a923c934354a7f FV3/ccpp/physics (EP4-1071-g6e0467ad) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -38,396 +38,306 @@ 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-20241121 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3381299 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20241127 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_748151 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [19:13, 17:45] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:19, 12:55](3182 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:14, 18:52] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [17:21, 14:27](1910 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:07, 14:26](1947 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:05, 06:35](1074 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:04, 15:34](1869 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:13, 22:12] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [16:56, 14:02](1896 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:11, 10:12] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [32:34, 28:00](1936 MB) - -PASS -- COMPILE 's2swa_intel' [17:13, 15:16] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [19:50, 16:01](3215 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:59, 16:15](3212 MB) -PASS -- TEST 'cpld_restart_p8_intel' [12:21, 08:54](3138 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [19:50, 16:35](3234 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [12:21, 08:52](3158 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [17:47, 14:08](3461 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [19:46, 15:56](3210 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [17:34, 13:36](3158 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [20:03, 16:26](3216 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:59, 10:21](3489 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:01, 06:56](3600 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [28:42, 19:40](4266 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:41, 12:11](4353 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [13:35, 10:00](3191 MB) - -PASS -- COMPILE 's2sw_intel' [16:14, 15:04] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [11:37, 07:50](1915 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [17:58, 12:43](1965 MB) - -PASS -- COMPILE 's2swa_debug_intel' [12:12, 10:10] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [26:20, 23:05](3274 MB) - -PASS -- COMPILE 's2sw_debug_intel' [12:13, 10:15] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:16, 09:23](1936 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:14, 14:21] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:02, 05:18](1977 MB) - -PASS -- COMPILE 's2s_intel' [16:14, 14:20] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:17, 05:43](2876 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:15, 02:01](2880 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:47, 01:04](2295 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:14, 18:11] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [18:16, 15:46](3213 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:17, 19:41] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [28:13, 25:10](1923 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:04, 12:36](1092 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [32:04, 29:17](1888 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:13, 12:34] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:50, 30:10](1944 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:11, 11:52] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:22, 03:47](654 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:59, 03:26](1552 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:59, 03:22](1566 MB) -PASS -- TEST 'control_latlon_intel' [05:52, 03:19](1557 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:04, 03:25](1559 MB) -PASS -- TEST 'control_c48_intel' [11:57, 09:57](1572 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:33, 05:48](696 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_c48_lnd_iau_intel' [, ]( MB) -PASS -- TEST 'control_c192_intel' [15:36, 11:21](1690 MB) -PASS -- TEST 'control_c384_intel' [26:16, 23:38](1967 MB) -PASS -- TEST 'control_c384gdas_intel' [17:30, 14:39](1164 MB) -PASS -- TEST 'control_stochy_intel' [04:23, 02:01](608 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:19, 01:08](418 MB) -PASS -- TEST 'control_lndp_intel' [03:25, 01:48](609 MB) -PASS -- TEST 'control_iovr4_intel' [05:23, 02:42](608 MB) -PASS -- TEST 'control_iovr5_intel' [04:24, 02:39](607 MB) -PASS -- TEST 'control_p8_intel' [05:52, 03:38](1844 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:03, 03:18](1841 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:51, 03:51](1848 MB) -PASS -- TEST 'control_restart_p8_intel' [04:48, 02:36](1000 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:46, 03:43](1839 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:47, 02:40](1011 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:17, 03:51](1842 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:20, 03:16](1920 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:43, 06:16](1849 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:22, 04:12](1898 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:26, 03:24](1848 MB) -PASS -- TEST 'merra2_thompson_intel' [06:17, 03:35](1847 MB) -PASS -- TEST 'regional_control_intel' [07:33, 05:01](876 MB) -PASS -- TEST 'regional_restart_intel' [04:29, 02:43](859 MB) -PASS -- TEST 'regional_decomp_intel' [07:29, 05:09](878 MB) -PASS -- TEST 'regional_2threads_intel' [05:28, 03:17](1008 MB) -PASS -- TEST 'regional_noquilt_intel' [07:29, 04:49](1208 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:40, 04:41](886 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:29, 04:41](876 MB) -PASS -- TEST 'regional_wofs_intel' [08:31, 06:58](1571 MB) - -PASS -- COMPILE 'rrfs_intel' [13:11, 11:38] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:38, 07:50](994 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:44, 04:17](1169 MB) -PASS -- TEST 'rap_decomp_intel' [10:16, 07:29](992 MB) -PASS -- TEST 'rap_2threads_intel' [08:36, 06:26](1072 MB) -PASS -- TEST 'rap_restart_intel' [05:35, 03:34](870 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:38, 07:07](990 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:37, 07:29](988 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:42, 05:02](874 MB) -PASS -- TEST 'hrrr_control_intel' [06:40, 03:58](989 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:38, 04:05](982 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:36, 03:29](1063 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:26, 02:03](816 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:35, 06:46](981 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:24, 09:03](1943 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:23, 08:35](1935 MB) - -PASS -- COMPILE 'csawmg_intel' [12:11, 11:03] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [09:31, 06:45](944 MB) -PASS -- TEST 'control_ras_intel' [05:47, 03:18](644 MB) - -PASS -- COMPILE 'wam_intel' [12:11, 10:58] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:58, 11:48](1641 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:12, 10:54] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:46, 03:16](1845 MB) -PASS -- TEST 'regional_control_faster_intel' [06:29, 04:25](880 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [14:14, 12:10] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:34, 02:45](1574 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:36, 02:42](1588 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:20, 03:14](783 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:25, 02:48](779 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:30, 04:28](1084 MB) -PASS -- TEST 'control_ras_debug_intel' [05:21, 03:00](792 MB) -PASS -- TEST 'control_diag_debug_intel' [05:31, 03:35](1642 MB) -PASS -- TEST 'control_debug_p8_intel' [04:28, 02:56](1873 MB) -PASS -- TEST 'regional_debug_intel' [18:29, 16:10](881 MB) -PASS -- TEST 'rap_control_debug_intel' [07:21, 05:09](1166 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:20, 05:07](1163 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:22, 05:16](1163 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:24, 05:29](1159 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:23, 05:55](1163 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:24, 05:21](1246 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:23, 05:14](1164 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:23, 05:08](1166 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:22, 05:04](1165 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:32, 05:07](1166 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:22, 05:35](1159 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:23, 05:16](1162 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:25, 07:51](1159 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:23, 05:41](1161 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:22, 05:07](1166 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:23, 05:09](1164 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:42, 08:43](1171 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:16, 08:24] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:52, 13:34](1662 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:12, 11:27] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:57, 03:53](1042 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:42, 05:57](864 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:40, 03:19](863 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:35, 05:12](917 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:38, 02:51](915 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:35, 03:29](858 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:35, 04:13](775 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:29, 01:42](747 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:12, 10:11] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:00, 02:01](1072 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:53, 01:09](1060 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:54, 01:25](951 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:12, 11:18] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:44, 04:17](898 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:12, 08:03] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:21, 05:01](1039 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:21, 05:05](1042 MB) -PASS -- TEST 'conus13km_debug_intel' [15:50, 13:28](1127 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:48, 14:16](798 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:54, 07:56](1116 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:55, 13:17](1194 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:10, 08:00] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:21, 05:16](1064 MB) - -PASS -- COMPILE 'hafsw_intel' [16:11, 14:28] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:05, 05:11](712 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:25, 04:47](1082 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:29, 07:41](746 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:13, 11:27](773 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:31, 12:56](801 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:59, 05:31](468 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:18, 06:44](498 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:53, 02:50](397 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:20, 07:40](485 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:52, 04:02](506 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:53, 03:37](507 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:06, 04:40](585 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:35, 01:41](426 MB) -PASS -- TEST 'gnv1_nested_intel' [09:02, 05:14](1700 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:11, 09:04] ( 1467 warnings 1469 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:03, 12:53](615 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:18, 14:45] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:01, 07:39](630 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:11, 07:44](807 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:12, 13:30] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:27, 06:09](809 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:12, 13:52] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:08, 06:08](737 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:10, 06:12](717 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:06, 20:11](894 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [12:11, 10:17] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:48, 02:39](764 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:35](740 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:19, 02:34](641 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:49, 02:33](646 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:49, 02:31](641 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:49, 02:40](762 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:45, 02:41](751 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:20, 02:29](642 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:50, 06:06](693 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:47, 06:11](671 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:37](763 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 04:48](2029 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:19, 04:50](2030 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:11, 07:24] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 05:32](746 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [12:11, 11:00] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:44](763 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:14, 01:44] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:37, 01:33](313 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:53, 01:19](460 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:28, 00:59](460 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [05:11, 03:24] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:43, 00:39](451 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:38, 00:23](254 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:12, 13:07] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:55, 03:52](1908 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:17, 10:51] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [10:51, 08:17](1892 MB) - -PASS -- COMPILE 'atml_intel' [13:11, 11:21] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:55, 06:51](1882 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:48, 06:57](1871 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:30, 03:51](1029 MB) - -PASS -- COMPILE 'atml_debug_intel' [09:11, 07:33] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:47, 06:08](1907 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 10:58] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:39, 02:10](1871 MB) - -PASS -- COMPILE 'atmaero_intel' [13:12, 11:44] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:43, 05:52](3099 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:45, 06:19](2984 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:37, 06:49](2991 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:11, 06:57] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [21:14, 18:26](4434 MB) - -PASS -- COMPILE 'atm_fbh_intel' [11:12, 09:48] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:30, 09:45](830 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [22:17, 20:15] -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_gfsv17_intelllvm' [, ]( MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [11:13, 09:38] -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_gfsv17_intelllvm' [, ]( MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [20:12, 18:19] -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_sfs_intelllvm' [, ]( MB) - -PASS -- COMPILE 's2swa_intelllvm' [15:11, 14:00] -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_p8_intelllvm' [, ]( MB) +PASS -- COMPILE 's2swa_32bit_intel' [15:15, 14:02] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:29, 11:57](3188 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:12, 18:50] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [16:58, 14:04](1904 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:55, 14:08](1939 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:52, 06:29](1075 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:52, 15:26](1872 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:11, 17:50] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [16:18, 13:42](1895 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:11, 08:17] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:56, 27:10](1925 MB) + +PASS -- COMPILE 's2swa_intel' [15:15, 13:59] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [18:28, 15:30](3212 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:41, 15:23](3210 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:58, 08:39](3136 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [18:31, 15:40](3234 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [12:52, 08:43](3159 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [16:24, 13:30](3460 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [18:26, 15:21](3209 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:28, 12:41](3158 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [50:02, 15:31](3217 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:29, 09:52](3489 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:49, 07:18](3595 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [25:36, 19:09](4262 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [36:59, 11:53](4363 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:28, 09:31](3186 MB) + +PASS -- COMPILE 's2sw_intel' [14:11, 12:49] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [12:12, 08:13](1913 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:12, 13:03](1970 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:11, 07:41] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [25:04, 22:39](3271 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:11, 07:56] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:58, 09:10](1938 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:11, 12:11] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:12, 05:49](1966 MB) + +PASS -- COMPILE 's2s_intel' [14:11, 12:13] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:52, 05:32](2866 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:50, 02:06](2881 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:42, 01:05](2294 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:16, 14:41] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [18:21, 15:19](3216 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [19:12, 18:08] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [28:02, 24:05](1911 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [47:55, 12:16](1102 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [05:54, 28:47](1887 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:11, 08:36] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:53, 30:05](1935 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:00] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:29, 03:42](655 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:53, 03:13](1547 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:54, 03:18](1554 MB) +PASS -- TEST 'control_latlon_intel' [05:47, 03:13](1561 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:57, 03:10](1556 MB) +PASS -- TEST 'control_c48_intel' [12:49, 09:58](1570 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:26, 05:41](696 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [14:30, 10:56](1571 MB) +PASS -- TEST 'control_c192_intel' [14:22, 11:12](1691 MB) +PASS -- TEST 'control_c384_intel' [26:48, 23:55](1967 MB) +PASS -- TEST 'control_c384gdas_intel' [17:20, 14:43](1169 MB) +PASS -- TEST 'control_stochy_intel' [04:19, 02:31](612 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:22, 01:01](414 MB) +PASS -- TEST 'control_lndp_intel' [04:20, 02:26](609 MB) +PASS -- TEST 'control_iovr4_intel' [05:23, 02:54](609 MB) +PASS -- TEST 'control_iovr5_intel' [05:23, 03:05](609 MB) +PASS -- TEST 'control_p8_intel' [06:44, 04:03](1844 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:54, 03:40](1845 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:41, 04:04](1847 MB) +PASS -- TEST 'control_restart_p8_intel' [03:36, 01:50](1001 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:34, 04:05](1843 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:58, 01:51](1009 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:39, 03:47](1842 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:47, 03:19](1932 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:31, 06:10](1854 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:40, 04:08](1895 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:40, 03:06](1856 MB) +PASS -- TEST 'merra2_thompson_intel' [05:37, 03:23](1843 MB) +PASS -- TEST 'regional_control_intel' [06:27, 04:34](876 MB) +PASS -- TEST 'regional_restart_intel' [04:26, 02:33](859 MB) +PASS -- TEST 'regional_decomp_intel' [07:26, 04:45](876 MB) +PASS -- TEST 'regional_2threads_intel' [05:49, 02:55](1008 MB) +PASS -- TEST 'regional_noquilt_intel' [06:28, 04:30](1208 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:32, 04:34](876 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:28, 04:39](880 MB) +PASS -- TEST 'regional_wofs_intel' [08:27, 06:25](1571 MB) + +PASS -- COMPILE 'rrfs_intel' [14:11, 12:55] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:32, 06:52](989 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:53, 03:59](1165 MB) +PASS -- TEST 'rap_decomp_intel' [08:33, 06:57](990 MB) +PASS -- TEST 'rap_2threads_intel' [11:34, 06:07](1074 MB) +PASS -- TEST 'rap_restart_intel' [40:34, 03:25](869 MB) +PASS -- TEST 'rap_sfcdiff_intel' [13:42, 06:51](987 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:31, 07:00](988 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [38:36, 04:53](872 MB) +PASS -- TEST 'hrrr_control_intel' [14:36, 03:38](988 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [14:31, 03:44](987 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [35:36, 03:09](1062 MB) +PASS -- TEST 'hrrr_control_restart_intel' [39:26, 02:10](821 MB) +PASS -- TEST 'rrfs_v1beta_intel' [26:36, 06:40](987 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [34:23, 08:43](1943 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [38:22, 08:18](1936 MB) + +PASS -- COMPILE 'csawmg_intel' [13:11, 12:05] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:33, 06:41](943 MB) +PASS -- TEST 'control_ras_intel' [05:22, 03:26](644 MB) + +PASS -- COMPILE 'wam_intel' [12:14, 10:52] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:06, 11:40](1639 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:14, 11:01] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:56, 03:00](1848 MB) +PASS -- TEST 'regional_control_faster_intel' [07:35, 04:28](877 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [12:12, 10:29] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [32:37, 02:30](1583 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [32:38, 02:30](1582 MB) +PASS -- TEST 'control_stochy_debug_intel' [33:22, 03:13](785 MB) +PASS -- TEST 'control_lndp_debug_intel' [35:21, 02:54](785 MB) +PASS -- TEST 'control_csawmg_debug_intel' [38:26, 04:51](1088 MB) +PASS -- TEST 'control_ras_debug_intel' [35:21, 02:51](791 MB) +PASS -- TEST 'control_diag_debug_intel' [36:32, 03:14](1636 MB) +PASS -- TEST 'control_debug_p8_intel' [36:28, 02:55](1873 MB) +PASS -- TEST 'regional_debug_intel' [49:28, 16:35](899 MB) +PASS -- TEST 'rap_control_debug_intel' [39:22, 05:15](1164 MB) +PASS -- TEST 'hrrr_control_debug_intel' [38:22, 05:05](1162 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [39:22, 05:07](1162 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [40:22, 05:03](1164 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [39:22, 04:53](1164 MB) +PASS -- TEST 'rap_diag_debug_intel' [42:27, 05:13](1249 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [41:23, 05:13](1164 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [41:22, 05:08](1167 MB) +PASS -- TEST 'rap_lndp_debug_intel' [41:22, 05:00](1166 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [42:22, 04:57](1164 MB) +PASS -- TEST 'rap_noah_debug_intel' [31:22, 04:47](1161 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [28:24, 04:55](1162 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [29:24, 07:52](1159 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [24:21, 04:56](1162 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [28:25, 04:55](1162 MB) +PASS -- TEST 'rap_flake_debug_intel' [28:23, 05:02](1166 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [32:43, 08:21](1169 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:11, 07:49] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [37:50, 12:56](1667 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:11, 11:18] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [29:56, 03:47](1041 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [30:37, 05:40](864 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [32:35, 03:21](862 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [33:31, 05:12](918 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [32:31, 02:42](914 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [29:30, 03:25](858 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [16:33, 04:16](776 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:20, 01:51](746 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:17, 10:43] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [28:49, 01:57](1073 MB) +PASS -- TEST 'conus13km_2threads_intel' [10:43, 01:11](1063 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [10:38, 01:32](954 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 10:22] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [31:37, 04:14](895 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 06:25] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [31:21, 04:46](1043 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [31:21, 04:44](1037 MB) +PASS -- TEST 'conus13km_debug_intel' [39:47, 13:08](1125 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [37:44, 13:29](799 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [33:42, 07:49](1113 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [40:19, 13:05](1199 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:11, 06:17] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [30:22, 04:59](1065 MB) + +PASS -- COMPILE 'hafsw_intel' [14:11, 12:35] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [33:02, 05:02](715 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [32:25, 04:30](1074 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [36:17, 07:41](743 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [39:05, 11:59](773 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [38:20, 12:49](800 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [29:58, 05:31](463 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [31:17, 06:44](501 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [24:46, 02:54](397 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [29:30, 07:36](495 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [22:45, 03:52](508 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [21:50, 03:41](505 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [22:55, 04:43](583 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [15:34, 01:39](425 MB) +PASS -- TEST 'gnv1_nested_intel' [19:29, 05:04](1697 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:11, 07:45] ( 1467 warnings 1469 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [21:53, 13:04](613 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:48] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:25, 07:38](626 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:40, 07:48](808 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 12:44] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:26, 06:09](809 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:11, 11:50] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [12:03, 06:26](740 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:05, 06:31](720 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [26:25, 20:11](891 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [12:15, 11:05] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:18, 02:38](763 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:48, 01:35](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:19, 02:31](642 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:20, 02:29](641 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:19, 02:32](643 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:19, 02:37](751 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:18, 02:35](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:26](641 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:49, 06:07](693 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:45, 06:06](672 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:36](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:18, 04:39](2034 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 04:39](2033 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 05:36] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 05:49](749 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [12:11, 10:28] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:48, 02:53](763 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:23] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:55, 01:23](322 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:29, 02:38](461 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:55](460 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:45] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [03:55, 00:47](448 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [06:37, 00:22](255 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 10:44] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:52, 04:16](1902 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:11, 11:26] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [12:46, 09:24](1904 MB) + +PASS -- COMPILE 'atml_intel' [12:11, 11:08] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:50, 07:45](1869 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:49, 07:35](1869 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:28, 03:37](1027 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:11, 07:27] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:46, 06:03](1911 MB) + +PASS -- COMPILE 'atmw_intel' [13:15, 11:40] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:39, 02:03](1879 MB) + +PASS -- COMPILE 'atmaero_intel' [12:14, 10:46] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [10:42, 05:44](3098 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [11:42, 06:05](2988 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:38, 06:08](2998 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:10, 07:31] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [26:38, 18:32](4403 MB) + +PASS -- COMPILE 'atm_fbh_intel' [13:10, 11:10] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [14:29, 09:29](832 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [19:12, 17:21] +PASS -- TEST 'cpld_control_gfsv17_intelllvm' [21:23, 13:50](1896 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [09:11, 08:05] +PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [36:47, 29:11](1923 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [20:12, 18:39] +PASS -- TEST 'cpld_control_sfs_intelllvm' [20:11, 13:35](1899 MB) + +PASS -- COMPILE 's2swa_intelllvm' [15:11, 14:04] +PASS -- TEST 'cpld_control_p8_intelllvm' [22:36, 15:10](3215 MB) SYNOPSIS: -Starting Date/Time: 20241122 00:16:46 -Ending Date/Time: 20241122 02:35:51 -Total Time: 02h:20m:01s +Starting Date/Time: 20241128 18:15:03 +Ending Date/Time: 20241128 21:09:27 +Total Time: 02h:55m:17s Compiles Completed: 47/47 -Tests Completed: 188/193 -Failed Tests: -* TEST control_c48_lnd_iau_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2482/ufs-weather-model/tests/logs/log_gaea/run_control_c48_lnd_iau_intel.log -* TEST cpld_control_gfsv17_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2482/ufs-weather-model/tests/logs/log_gaea/run_cpld_control_gfsv17_intelllvm.log -* TEST cpld_debug_gfsv17_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2482/ufs-weather-model/tests/logs/log_gaea/run_cpld_debug_gfsv17_intelllvm.log -* TEST cpld_control_sfs_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2482/ufs-weather-model/tests/logs/log_gaea/run_cpld_control_sfs_intelllvm.log -* TEST cpld_control_p8_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2482/ufs-weather-model/tests/logs/log_gaea/run_cpld_control_p8_intelllvm.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 GAEA REGRESSION TESTING LOG==== -====START OF GAEA REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -946b7e2833191ab36966b64cff0f15aaddf6ea03 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) - 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) - 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 915e44e963b804684b872c5545feb9416e742f72 FV3 (remotes/origin/rrfsv1-to-ufs/dev3) - e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) - b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 9dffb7e1cd5fceebec065299c791e65e3a30e0c2 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5516-g9dffb7e1) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) --179cae1dd84401cf25d250bd9102e66560a9d328 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) - 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) - 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: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20241121 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1802626 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-b) - NEW BASELINES FROM FILE: test_changes.list -* (-e) - USE ECFLOW - -PASS -- COMPILE 'atm_dyn32_intel' [13:11, 11:12] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_c48_lnd_iau_intel' [13:28, 09:56](1575 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [20:11, 18:10] -PASS -- TEST 'cpld_control_gfsv17_intelllvm' [17:46, 13:37](1897 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [09:11, 07:57] -PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [39:52, 27:08](1922 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [20:11, 18:37] -PASS -- TEST 'cpld_control_sfs_intelllvm' [16:31, 13:36](1899 MB) - -PASS -- COMPILE 's2swa_intelllvm' [15:11, 13:17] -PASS -- TEST 'cpld_control_p8_intelllvm' [18:48, 15:13](3212 MB) - -SYNOPSIS: -Starting Date/Time: 20241122 13:03:15 -Ending Date/Time: 20241122 13:53:40 -Total Time: 00h:50m:45s -Compiles Completed: 5/5 -Tests Completed: 5/5 +Tests Completed: 193/193 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 c87c5eabe1..5f69328569 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,15 +1,15 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -946b7e2833191ab36966b64cff0f15aaddf6ea03 +e4d3bebab002b60b5af711bfcbbda2307d0925bb Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) + cf01f337a0162dc05889288e19bc9c4811ace762 CICE-interface/CICE (remotes/origin/sync_cice_2024-11) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 915e44e963b804684b872c5545feb9416e742f72 FV3 (remotes/origin/rrfsv1-to-ufs/dev3) + b769849792dbe799dc1a2e29942864f880ee8445 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) @@ -26,458 +26,390 @@ 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-20241121 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_827548 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241127 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_1414926 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:12, 12:33] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [40:33, 11:38](3309 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:12, 16:17] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [44:04, 19:42](1981 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:16, 20:27](2195 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:09, 08:14](1268 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [47:05, 23:08](1870 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:12, 15:57] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [43:47, 19:44](1975 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 05:38] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:02, 26:34](1923 MB) - -PASS -- COMPILE 's2swa_intel' [14:12, 12:48] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [42:22, 14:10](3349 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [42:32, 14:06](3327 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:23, 07:20](3249 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [18:21, 14:07](3352 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [20:18, 07:25](3277 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [41:20, 13:27](3633 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [42:22, 14:13](3344 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [40:32, 11:40](3217 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [42:30, 14:10](3356 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [24:11, 10:26](3525 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:34, 06:27](3615 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [48:58, 16:18](4296 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [54:26, 09:36](4377 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [35:16, 07:27](3308 MB) - -PASS -- COMPILE 's2sw_intel' [13:12, 11:57] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [14:03, 09:04](1980 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:07, 10:59](2061 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 05:29] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [27:04, 23:11](3372 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:12, 05:21] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:56, 10:07](2017 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:12, 11:10] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:09, 04:22](2024 MB) - -PASS -- COMPILE 's2s_intel' [13:12, 11:12] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:47, 07:51](3035 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:46, 02:24](3031 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:43, 01:23](2486 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:11, 16:39] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [32:27, 13:46](3358 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:12, 15:50] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [46:01, 27:50](2032 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [44:20, 13:53](1284 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [03:18, 32:51](1927 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:11, 05:28] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [57:04, 30:01](1957 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:11, 10:27] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [23:22, 03:24](706 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [22:42, 03:17](1598 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [22:46, 03:18](1592 MB) -PASS -- TEST 'control_latlon_intel' [23:38, 03:16](1580 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [22:45, 03:16](1582 MB) -PASS -- TEST 'control_c48_intel' [31:45, 11:36](1728 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [26:23, 06:34](843 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_c48_lnd_iau_intel' [, ]( MB) -PASS -- TEST 'control_c192_intel' [28:55, 12:09](1758 MB) -PASS -- TEST 'control_c384_intel' [29:01, 13:45](1988 MB) -PASS -- TEST 'control_c384gdas_intel' [21:17, 08:22](1379 MB) -PASS -- TEST 'control_stochy_intel' [12:22, 01:40](650 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:26, 00:58](503 MB) -PASS -- TEST 'control_lndp_intel' [03:21, 01:32](659 MB) -PASS -- TEST 'control_iovr4_intel' [05:26, 02:27](654 MB) -PASS -- TEST 'control_iovr5_intel' [04:24, 02:28](647 MB) -PASS -- TEST 'control_p8_intel' [06:58, 03:46](1881 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:56, 03:23](1887 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [08:01, 03:40](1883 MB) -PASS -- TEST 'control_restart_p8_intel' [05:49, 02:04](1133 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:48, 03:41](1882 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:52, 02:03](1167 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:45, 03:48](1866 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:43, 03:33](1957 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:37, 06:41](1860 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:47, 04:09](1953 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:48, 03:10](1897 MB) -PASS -- TEST 'merra2_thompson_intel' [05:49, 03:39](1895 MB) -PASS -- TEST 'regional_control_intel' [07:40, 05:26](1114 MB) -PASS -- TEST 'regional_restart_intel' [05:35, 02:53](1101 MB) -PASS -- TEST 'regional_decomp_intel' [08:37, 05:43](1124 MB) -PASS -- TEST 'regional_2threads_intel' [06:36, 03:32](1114 MB) -PASS -- TEST 'regional_noquilt_intel' [07:37, 05:24](1425 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [10:38, 05:24](1120 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [10:38, 05:26](1115 MB) -PASS -- TEST 'regional_wofs_intel' [12:37, 07:03](1888 MB) - -PASS -- COMPILE 'rrfs_intel' [13:12, 10:20] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [12:38, 07:52](1113 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:05, 04:13](1265 MB) -PASS -- TEST 'rap_decomp_intel' [12:34, 08:13](1035 MB) -PASS -- TEST 'rap_2threads_intel' [11:36, 07:25](1188 MB) -PASS -- TEST 'rap_restart_intel' [12:51, 04:04](1100 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:43, 07:48](1110 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:33, 08:14](1042 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [14:41, 05:52](1136 MB) -PASS -- TEST 'hrrr_control_intel' [07:42, 04:02](1039 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:32, 04:14](1025 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:33, 03:44](1102 MB) -PASS -- TEST 'hrrr_control_restart_intel' [06:29, 02:09](992 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:45, 07:48](1100 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [12:25, 09:43](1981 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:25, 09:26](2047 MB) - -PASS -- COMPILE 'csawmg_intel' [13:11, 09:55] -PASS -- TEST 'control_csawmg_intel' [08:37, 06:10](1015 MB) -PASS -- TEST 'control_ras_intel' [07:22, 03:16](739 MB) - -PASS -- COMPILE 'wam_intel' [12:12, 09:53] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:46, 11:15](1658 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:06] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:49, 02:45](1890 MB) -PASS -- TEST 'regional_control_faster_intel' [07:34, 04:53](1122 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [12:12, 07:14] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:40, 02:17](1610 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:43, 02:14](1609 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:22, 03:02](824 MB) -PASS -- TEST 'control_lndp_debug_intel' [07:22, 02:45](832 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:35, 04:19](1139 MB) -PASS -- TEST 'control_ras_debug_intel' [06:21, 02:46](834 MB) -PASS -- TEST 'control_diag_debug_intel' [06:41, 02:44](1678 MB) -PASS -- TEST 'control_debug_p8_intel' [06:36, 02:39](1905 MB) -PASS -- TEST 'regional_debug_intel' [19:36, 17:26](1093 MB) -PASS -- TEST 'rap_control_debug_intel' [08:22, 04:58](1209 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:22, 04:53](1207 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:21, 05:00](1216 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:21, 05:08](1211 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:21, 04:59](1212 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:34, 05:18](1297 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [12:22, 05:05](1216 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [13:20, 05:03](1213 MB) -PASS -- TEST 'rap_lndp_debug_intel' [12:21, 05:00](1221 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [12:20, 04:58](1216 MB) -PASS -- TEST 'rap_noah_debug_intel' [30:21, 04:59](1218 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [31:21, 05:02](1214 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [39:26, 08:16](1217 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [36:23, 05:03](1211 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [35:23, 04:58](1217 MB) -PASS -- TEST 'rap_flake_debug_intel' [35:23, 05:07](1214 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [38:37, 08:37](1221 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [07:10, 04:18] -PASS -- TEST 'control_csawmg_debug_gnu' [19:34, 02:24](718 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:10, 04:31] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [43:46, 13:29](1688 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [21:11, 09:45] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [34:01, 03:55](1137 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [36:37, 06:35](1056 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [33:36, 03:33](973 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [37:31, 06:14](1120 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [34:29, 03:15](954 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [42:41, 03:38](927 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [17:48, 04:57](1027 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [16:25, 01:54](927 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [22:11, 09:59] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [40:52, 02:02](1194 MB) -PASS -- TEST 'conus13km_2threads_intel' [08:45, 00:50](1109 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [07:40, 01:12](1092 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [26:11, 09:54] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [42:42, 04:16](985 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [20:11, 04:43] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [43:24, 04:57](1092 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [43:24, 04:53](1089 MB) -PASS -- TEST 'conus13km_debug_intel' [51:46, 13:59](1235 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [48:48, 14:05](926 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [41:46, 07:59](1162 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [52:46, 13:57](1308 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [21:11, 04:25] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [43:24, 05:18](1136 MB) - -PASS -- COMPILE 'hafsw_intel' [28:11, 11:33] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [39:10, 04:57](727 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [39:30, 05:37](1103 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [39:28, 07:18](815 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [49:27, 14:35](846 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [40:24, 19:20](870 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [25:52, 05:32](491 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [22:19, 06:45](531 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [17:48, 02:52](367 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [23:30, 07:17](537 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [17:48, 03:47](518 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [14:53, 03:32](522 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [15:48, 04:11](585 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [12:25, 01:14](402 MB) -PASS -- TEST 'gnv1_nested_intel' [15:25, 04:03](1728 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [25:11, 04:58] ( 1462 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [20:57, 13:19](583 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [31:11, 11:20] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [19:06, 10:16](642 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:06, 10:18](724 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [31:11, 11:28] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:53, 08:13](712 MB) - -PASS -- COMPILE 'hafs_all_intel' [29:11, 10:46] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [13:12, 06:30](819 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:11, 06:36](802 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:53, 16:14](1216 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:11, 06:27] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:18, 02:53](1140 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:42](1114 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:18, 02:44](1029 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:19, 02:45](1028 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:17, 02:44](1030 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:19, 02:47](1159 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 02:45](1148 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:37](1041 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:54, 06:23](1067 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:43, 06:25](1052 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:46](1160 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:18, 03:59](2513 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:19, 03:55](2468 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 03:06] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:24](1096 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 06:29] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:45](1161 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:01] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:28, 00:49](269 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:23, 00:46](323 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:30](327 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:20] -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:31, 00:31](567 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:33, 00:17](462 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 10:47] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:15, 03:40](1979 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 10:32] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [10:59, 08:05](1984 MB) - -PASS -- COMPILE 'atml_intel' [12:11, 10:59] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:12, 04:13](1856 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:08, 04:20](1859 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:44, 02:25](1099 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:11, 05:32] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:55, 05:54](1886 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 10:55] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:00, 01:58](1921 MB) - -PASS -- COMPILE 'atmaero_intel' [12:11, 10:55] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:02, 04:08](3194 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:05, 04:55](3098 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:42, 05:03](3101 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:11, 04:32] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_fbh_intel' [13:11, 09:42] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:26, 11:42](1123 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [09:11, 06:35] -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_dyn32_phy32_intelllvm' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [09:11, 06:37] -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_dyn64_phy32_intelllvm' [, ]( MB) - -PASS -- COMPILE 'atm_gnu' [06:11, 04:26] -PASS -- TEST 'control_c48_gnu' [11:38, 09:32](1512 MB) -PASS -- TEST 'control_stochy_gnu' [05:22, 03:31](492 MB) -PASS -- TEST 'control_ras_gnu' [06:20, 04:57](463 MB) -PASS -- TEST 'control_p8_gnu' [07:52, 05:22](1445 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [08:08, 05:10](1450 MB) -PASS -- TEST 'control_flake_gnu' [12:30, 10:20](539 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:11, 04:16] -PASS -- TEST 'rap_control_gnu' [13:38, 11:26](804 MB) -PASS -- TEST 'rap_decomp_gnu' [13:35, 11:33](837 MB) -PASS -- TEST 'rap_2threads_gnu' [12:39, 10:26](917 MB) -PASS -- TEST 'rap_restart_gnu' [07:40, 05:46](573 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [13:37, 11:20](806 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:35, 11:37](837 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:39, 08:29](579 MB) -PASS -- TEST 'hrrr_control_gnu' [08:33, 05:57](803 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [08:30, 05:56](788 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [07:33, 05:26](911 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [08:33, 05:56](807 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:25, 02:58](557 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:25, 02:59](649 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [13:44, 11:17](801 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:11, 12:46] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:19, 11:32](3311 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 16:31] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:04, 19:43](1980 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:18, 20:37](2163 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:08, 08:13](1262 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:59, 22:58](1876 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:11, 16:35] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:45, 19:12](1960 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:10, 05:52] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:03, 26:22](1923 MB) + +PASS -- COMPILE 's2swa_intel' [14:11, 13:01] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:16, 13:58](3353 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:24, 13:51](3343 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:21, 07:55](3237 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:16, 14:00](3341 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:21, 07:17](3270 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [17:12, 15:06](3630 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:16, 14:03](3343 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:18, 11:39](3206 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:23, 13:56](3352 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:03, 10:16](3525 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:36, 06:24](3615 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [22:58, 16:00](4367 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:35, 08:49](4379 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:11, 07:15](3289 MB) + +PASS -- COMPILE 's2sw_intel' [14:11, 12:12] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [12:06, 09:12](1979 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:11, 10:56](2052 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:10, 05:52] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [26:08, 23:15](3356 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:10, 05:33] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:59, 10:12](1977 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:11, 11:24] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:57, 04:20](2033 MB) + +PASS -- COMPILE 's2s_intel' [13:11, 11:36] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:39, 07:52](3042 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:40, 02:25](3036 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:37, 01:25](2481 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:11, 16:29] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:05, 13:22](3346 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:02] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:07, 28:04](2016 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:12, 13:49](1286 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:02, 32:56](1918 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:27] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:10, 29:34](1956 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:11, 10:54] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:20, 03:19](704 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:42, 03:13](1582 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:45, 03:15](1594 MB) +PASS -- TEST 'control_latlon_intel' [05:38, 03:11](1584 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:47, 03:12](1591 MB) +PASS -- TEST 'control_c48_intel' [13:40, 11:28](1720 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:24, 06:31](847 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [13:39, 11:34](1730 MB) +PASS -- TEST 'control_c192_intel' [13:50, 11:59](1768 MB) +PASS -- TEST 'control_c384_intel' [16:34, 13:32](1990 MB) +PASS -- TEST 'control_c384gdas_intel' [11:35, 08:00](1383 MB) +PASS -- TEST 'control_stochy_intel' [03:22, 01:39](659 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:26, 00:59](508 MB) +PASS -- TEST 'control_lndp_intel' [03:21, 01:33](661 MB) +PASS -- TEST 'control_iovr4_intel' [04:24, 02:28](658 MB) +PASS -- TEST 'control_iovr5_intel' [04:23, 02:28](655 MB) +PASS -- TEST 'control_p8_intel' [05:49, 03:41](1881 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:52, 03:07](1880 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:44, 03:36](1886 MB) +PASS -- TEST 'control_restart_p8_intel' [03:43, 02:01](1131 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:48, 03:35](1881 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:50, 02:01](1163 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:44, 03:43](1868 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:44, 03:30](1960 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:40, 06:34](1873 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:50, 04:12](1945 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:50, 03:05](1902 MB) +PASS -- TEST 'merra2_thompson_intel' [05:49, 03:22](1892 MB) +PASS -- TEST 'regional_control_intel' [07:34, 05:20](1129 MB) +PASS -- TEST 'regional_restart_intel' [04:34, 02:51](1090 MB) +PASS -- TEST 'regional_decomp_intel' [07:32, 05:36](1115 MB) +PASS -- TEST 'regional_2threads_intel' [05:33, 03:23](1113 MB) +PASS -- TEST 'regional_noquilt_intel' [07:36, 05:18](1423 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:37, 05:21](1127 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:34, 05:18](1124 MB) +PASS -- TEST 'regional_wofs_intel' [08:35, 07:05](1902 MB) + +PASS -- COMPILE 'rrfs_intel' [12:11, 10:15] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:38, 07:49](1113 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:57, 04:06](1272 MB) +PASS -- TEST 'rap_decomp_intel' [10:34, 08:10](1032 MB) +PASS -- TEST 'rap_2threads_intel' [09:32, 07:24](1189 MB) +PASS -- TEST 'rap_restart_intel' [05:42, 04:04](1104 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:38, 07:47](1111 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:35, 08:13](1042 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:40, 05:52](1125 MB) +PASS -- TEST 'hrrr_control_intel' [05:38, 04:00](1037 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:33, 04:07](1032 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:30, 03:42](1093 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:26, 02:11](990 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:43, 07:40](1109 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:27, 09:33](1975 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:24, 09:13](2053 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 09:48] +PASS -- TEST 'control_csawmg_intel' [07:35, 06:08](1019 MB) +PASS -- TEST 'control_ras_intel' [05:20, 03:16](747 MB) + +PASS -- COMPILE 'wam_intel' [11:11, 10:02] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:44, 11:13](1662 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:13] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:45, 02:49](1883 MB) +PASS -- TEST 'regional_control_faster_intel' [06:32, 04:50](1126 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 07:24] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:45, 02:13](1613 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:49, 02:08](1610 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:23, 03:07](831 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:23, 02:48](831 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:40, 04:19](1142 MB) +PASS -- TEST 'control_ras_debug_intel' [04:23, 02:48](828 MB) +PASS -- TEST 'control_diag_debug_intel' [04:48, 02:49](1687 MB) +PASS -- TEST 'control_debug_p8_intel' [04:45, 02:39](1908 MB) +PASS -- TEST 'regional_debug_intel' [19:40, 17:33](1099 MB) +PASS -- TEST 'rap_control_debug_intel' [07:24, 05:13](1207 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:25, 04:47](1209 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:22, 05:00](1213 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:20, 05:12](1196 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 04:59](1207 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:32, 05:07](1300 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:21, 05:06](1211 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:21, 05:05](1214 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:22, 04:57](1217 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:22, 05:08](1209 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:57](1218 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:21, 04:55](1211 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:21, 08:04](1212 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:22, 04:54](1208 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:23, 04:54](1216 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:22, 04:56](1209 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:36, 08:30](1214 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:10, 04:16] +PASS -- TEST 'control_csawmg_debug_gnu' [04:35, 02:18](720 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:10, 04:35] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:44, 13:31](1686 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:10, 09:55] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:57, 03:53](1134 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:38, 06:31](1045 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:34, 03:25](986 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:30, 06:13](1094 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:29, 03:11](947 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:29, 03:36](937 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:38, 04:54](1035 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:26, 01:51](927 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:10, 09:51] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:50, 02:02](1193 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:39, 00:49](1107 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:12](1101 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:10, 10:02] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:37, 04:14](981 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:10, 04:33] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:55](1086 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:21, 04:49](1089 MB) +PASS -- TEST 'conus13km_debug_intel' [15:48, 13:48](1231 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:42, 14:18](974 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:42, 07:55](1164 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:41, 14:17](1308 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 04:25] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:21, 05:07](1144 MB) + +PASS -- COMPILE 'hafsw_intel' [13:10, 11:48] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:14, 04:55](724 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:30, 05:31](1112 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:22, 06:56](816 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:17, 14:43](843 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:27, 18:25](872 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:54, 05:32](490 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:20, 06:41](507 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:41, 02:38](376 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:52, 07:06](523 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:41, 03:39](518 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:43, 03:29](516 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:48, 04:04](571 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:26, 01:13](401 MB) +PASS -- TEST 'gnv1_nested_intel' [06:24, 04:04](1724 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:10, 04:49] ( 1462 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:50, 12:56](584 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:10, 11:16] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:56, 10:14](661 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:02, 10:14](735 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:10, 11:31] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:22, 08:09](716 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:10, 10:44] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:13, 06:24](813 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:13, 06:28](793 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:54, 16:15](1214 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:33] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:16, 02:47](1151 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:39](1109 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:42](1029 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:44](1024 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:16, 02:40](1033 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:16, 02:43](1158 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:16, 02:51](1152 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:16, 02:54](1011 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:14, 06:10](1065 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:09, 06:24](1056 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:14, 02:46](1169 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:17, 03:58](2401 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:17, 03:53](2532 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:11] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 06:22](1085 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:24] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:16, 02:45](1161 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:14] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:28, 00:45](258 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:46](331 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:23, 00:29](327 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:23] +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:29, 00:30](564 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:30, 00:17](454 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 10:48] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:57, 03:40](1986 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 10:16] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:49, 07:56](1981 MB) + +PASS -- COMPILE 'atml_intel' [12:11, 10:53] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:53, 04:20](1857 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:51, 04:14](1865 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:42, 02:20](1097 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:10, 05:20] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:48, 05:47](1885 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 10:46] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:44, 01:55](1914 MB) + +PASS -- COMPILE 'atmaero_intel' [12:11, 10:15] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:52, 04:07](3192 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:51, 04:58](3069 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:38, 05:29](3049 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:10, 04:29] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_fbh_intel' [11:11, 09:51] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:26, 11:45](1087 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:11, 06:42] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:36, 08:26](1054 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:11, 06:43] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:36, 04:55](982 MB) + +PASS -- COMPILE 'atm_gnu' [06:11, 04:27] +PASS -- TEST 'control_c48_gnu' [11:36, 09:32](1511 MB) +PASS -- TEST 'control_stochy_gnu' [05:20, 03:31](490 MB) +PASS -- TEST 'control_ras_gnu' [06:20, 04:55](505 MB) +PASS -- TEST 'control_p8_gnu' [07:50, 05:12](1456 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [07:46, 05:10](1447 MB) +PASS -- TEST 'control_flake_gnu' [12:23, 10:32](539 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:11, 04:07] +PASS -- TEST 'rap_control_gnu' [13:29, 11:30](808 MB) +PASS -- TEST 'rap_decomp_gnu' [13:29, 11:35](812 MB) +PASS -- TEST 'rap_2threads_gnu' [12:35, 10:22](922 MB) +PASS -- TEST 'rap_restart_gnu' [07:40, 05:50](580 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:35, 11:23](807 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:30, 11:42](835 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:39, 08:31](578 MB) +PASS -- TEST 'hrrr_control_gnu' [07:34, 05:52](836 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:30, 05:50](827 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [07:29, 05:18](905 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:29, 05:51](802 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:29, 03:01](560 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:27, 02:57](652 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [13:45, 11:09](806 MB) PASS -- COMPILE 'csawmg_gnu' [05:11, 03:54] -PASS -- TEST 'control_csawmg_gnu' [10:42, 08:48](737 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:21] -PASS -- TEST 'control_diag_debug_gnu' [04:43, 01:44](1270 MB) -PASS -- TEST 'regional_debug_gnu' [14:39, 12:01](738 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:22, 02:38](821 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:22, 02:33](820 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:22, 02:39](819 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:19, 02:41](826 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:33, 02:51](906 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:21, 04:06](820 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [05:20, 02:36](816 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:21, 02:37](813 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:19, 01:35](458 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:19, 01:47](449 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:38, 01:33](1452 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:23, 02:37](819 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:22, 02:37](823 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:35, 04:26](822 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:36] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:11, 03:59] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:35, 09:55](696 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:33, 05:13](689 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [11:30, 08:58](742 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:29, 04:44](741 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:30, 05:19](699 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:36, 07:17](552 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:26, 02:41](530 MB) -PASS -- TEST 'conus13km_control_gnu' [05:49, 03:10](863 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:41, 05:37](869 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:41, 01:49](550 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:11, 09:23] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:39, 05:54](720 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [09:11, 06:28] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:22, 02:31](711 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:20, 02:28](707 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:42, 06:46](889 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:41, 06:51](576 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [09:39, 07:32](889 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:40, 06:57](952 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:11, 06:24] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:22, 02:37](731 MB) - -PASS -- COMPILE 's2swa_gnu' [18:10, 16:29] - -PASS -- COMPILE 's2s_gnu' [17:10, 15:46] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [21:04, 18:40](1506 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [05:10, 03:14] - -PASS -- COMPILE 's2sw_pdlib_gnu' [18:11, 15:47] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [33:06, 30:44](1459 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [06:10, 02:55] - -PASS -- COMPILE 'datm_cdeps_gnu' [20:12, 15:45] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:17, 02:57](695 MB) +PASS -- TEST 'control_csawmg_gnu' [10:35, 08:29](737 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:27] +PASS -- TEST 'control_diag_debug_gnu' [03:40, 01:36](1268 MB) +PASS -- TEST 'regional_debug_gnu' [13:35, 11:34](750 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:21, 02:38](815 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:21, 02:33](814 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:21, 02:36](819 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:20, 02:37](818 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:32, 02:50](898 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:21, 04:09](817 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:20, 02:39](818 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:20, 02:38](815 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:19, 01:35](455 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:19, 01:45](450 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:37, 01:37](1439 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:22, 02:40](822 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:23, 02:51](819 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:38, 04:33](822 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:21] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:06] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:33, 09:43](697 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:28, 05:07](695 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:33, 08:56](742 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:31, 04:43](737 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:28, 05:14](691 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:34, 07:10](546 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:25, 02:36](531 MB) +PASS -- TEST 'conus13km_control_gnu' [05:50, 03:08](866 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:41, 05:22](866 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:42, 01:48](558 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:24] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:35, 05:50](719 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:26] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:22, 02:30](708 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:21, 02:31](702 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:44, 06:55](879 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:40, 06:52](566 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [09:37, 07:44](887 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:37, 06:59](948 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:26] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:21, 02:36](725 MB) + +PASS -- COMPILE 's2swa_gnu' [18:11, 16:36] + +PASS -- COMPILE 's2s_gnu' [17:11, 15:48] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [22:02, 19:45](1507 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [05:11, 03:07] + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:11, 16:10] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [33:59, 31:49](1454 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 02:51] + +PASS -- COMPILE 'datm_cdeps_gnu' [17:10, 15:32] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:17, 03:04](695 MB) SYNOPSIS: -Starting Date/Time: 20241122 03:48:07 -Ending Date/Time: 20241122 06:50:06 -Total Time: 03h:02m:57s +Starting Date/Time: 20241128 22:41:33 +Ending Date/Time: 20241129 00:39:40 +Total Time: 01h:58m:23s Compiles Completed: 61/61 -Tests Completed: 246/249 -Failed Tests: -* TEST control_c48_lnd_iau_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2482/ufs-weather-model/tests/logs/log_hera/run_control_c48_lnd_iau_intel.log -* TEST rap_control_dyn32_phy32_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2482/ufs-weather-model/tests/logs/log_hera/run_rap_control_dyn32_phy32_intelllvm.log -* TEST rap_control_dyn64_phy32_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2482/ufs-weather-model/tests/logs/log_hera/run_rap_control_dyn64_phy32_intelllvm.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 HERA REGRESSION TESTING LOG==== -====START OF HERA REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -946b7e2833191ab36966b64cff0f15aaddf6ea03 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) - 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 915e44e963b804684b872c5545feb9416e742f72 FV3 (remotes/origin/rrfsv1-to-ufs/dev3) - 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) - 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) - 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: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241121 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2428602 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-b) - NEW BASELINES FROM FILE: test_changes.list -* (-e) - USE ECFLOW - -PASS -- COMPILE 'atm_dyn32_intel' [19:12, 11:12] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_c48_lnd_iau_intel' [13:44, 11:32](1730 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [15:13, 07:05] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:44, 08:37](1055 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [15:12, 07:01] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [07:48, 05:09](983 MB) - -SYNOPSIS: -Starting Date/Time: 20241122 17:59:03 -Ending Date/Time: 20241122 18:33:12 -Total Time: 00h:34m:20s -Compiles Completed: 3/3 -Tests Completed: 3/3 +Tests Completed: 249/249 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 39284f5f36..6293fe5cf4 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,20 +1,447 @@ +====START OF hercules REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +28fb4f657a3f626c25c1507214426312b5ef699e + +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) + cf01f337a0162dc05889288e19bc9c4811ace762 CICE-interface/CICE (remotes/origin/sync_cice_2024-11) + 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + b769849792dbe799dc1a2e29942864f880ee8445 FV3 (heads/develop) + e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) + b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) + 6e0467ad07a2231d298dc3be91a923c934354a7f FV3/ccpp/physics (EP4-1071-g6e0467ad) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) +-179cae1dd84401cf25d250bd9102e66560a9d328 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) + 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) + abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20241127 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/jongkim/FV3_RT/rt_553559 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-r) - USE ROCOTO + +PASS -- COMPILE s2swa_32bit_intel [12:43, 12:43](1 warnings,11 remarks) +PASS -- TEST cpld_control_p8_mixedmode_intel [16:19, 15:30] (2132128 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_intel [17:34, 17:34](1 warnings,11 remarks) +PASS -- TEST cpld_control_gfsv17_intel [18:33, 17:38] (1993096 MB) +PASS -- TEST cpld_control_gfsv17_iau_intel [19:32, 18:38] (2271864 MB) +PASS -- TEST cpld_restart_gfsv17_intel [08:00, 06:53] (1370368 MB) +PASS -- TEST cpld_mpi_gfsv17_intel [19:32, 18:33] (1917652 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [17:29, 17:29](1 warnings,11 remarks) +PASS -- TEST cpld_control_sfs_intel [17:30, 16:51] (1974400 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [06:48, 06:48](1520 warnings,1988 remarks) +PASS -- TEST cpld_debug_gfsv17_intel [26:13, 25:25] (1969996 MB) + +PASS -- COMPILE s2swa_intel [12:20, 12:20](1 warnings,11 remarks) +PASS -- TEST cpld_control_p8_intel [15:52, 15:06] (2212788 MB) +PASS -- TEST cpld_control_p8.v2.sfc_intel [15:51, 15:04] (2213708 MB) +PASS -- TEST cpld_restart_p8_intel [08:29, 07:34] (1995532 MB) +PASS -- TEST cpld_control_qr_p8_intel [15:18, 14:27] (2228404 MB) +PASS -- TEST cpld_restart_qr_p8_intel [08:49, 07:46] (1737308 MB) +PASS -- TEST cpld_2threads_p8_intel [17:15, 16:28] (2563056 MB) +PASS -- TEST cpld_decomp_p8_intel [15:12, 14:27] (2182832 MB) +PASS -- TEST cpld_mpi_p8_intel [13:22, 12:48] (2101424 MB) +PASS -- TEST cpld_control_ciceC_p8_intel [15:39, 14:51] (2208660 MB) +PASS -- TEST cpld_control_c192_p8_intel [18:27, 17:03] (2992468 MB) +PASS -- TEST cpld_restart_c192_p8_intel [07:58, 06:35] (2921260 MB) +PASS -- TEST cpld_bmark_p8_intel [23:30, 18:35] (3852480 MB) +PASS -- TEST cpld_restart_bmark_p8_intel [14:52, 09:17] (3644288 MB) +PASS -- TEST cpld_s2sa_p8_intel [07:54, 07:08] (2100508 MB) + +PASS -- COMPILE s2sw_intel [11:38, 11:38](1 warnings,11 remarks) +PASS -- TEST cpld_control_noaero_p8_intel [14:19, 13:34] (2022224 MB) +PASS -- TEST cpld_control_nowave_noaero_p8_intel [10:59, 10:21] (2099716 MB) + +PASS -- COMPILE s2swa_debug_intel [06:42, 06:42](1410 warnings,1218 remarks) +PASS -- TEST cpld_debug_p8_intel [22:12, 21:26] (2229196 MB) + +PASS -- COMPILE s2sw_debug_intel [04:42, 04:42](1410 warnings,1218 remarks) +PASS -- TEST cpld_debug_noaero_p8_intel [09:03, 08:21] (2050340 MB) + +PASS -- COMPILE s2s_aoflux_intel [09:29, 09:29],3 remarks) +PASS -- TEST cpld_control_noaero_p8_agrid_intel [05:21, 04:39] (2070624 MB) + +PASS -- COMPILE s2s_intel [09:42, 09:42](1 warnings,3 remarks) +PASS -- TEST cpld_control_c48_intel [06:20, 05:53] (3038056 MB) +PASS -- TEST cpld_warmstart_c48_intel [02:20, 01:50] (3012352 MB) +PASS -- TEST cpld_restart_c48_intel [01:24, 01:04] (2474392 MB) + +PASS -- COMPILE s2swa_faster_intel [12:09, 12:09](1 warnings,11 remarks) +PASS -- TEST cpld_control_p8_faster_intel [14:29, 13:54] (2192360 MB) + +PASS -- COMPILE s2sw_pdlib_intel [15:10, 15:10](1 warnings,11 remarks) +PASS -- TEST cpld_control_pdlib_p8_intel [23:23, 22:44] (2070768 MB) +PASS -- TEST cpld_restart_pdlib_p8_intel [12:04, 11:22] (1421444 MB) +PASS -- TEST cpld_mpi_pdlib_p8_intel [26:18, 25:41] (1994064 MB) + +PASS -- COMPILE s2sw_pdlib_debug_intel [05:14, 05:14](1520 warnings,1988 remarks) +PASS -- TEST cpld_debug_pdlib_p8_intel [28:21, 27:41] (2019272 MB) + +PASS -- COMPILE atm_dyn32_intel [09:39, 09:38](1 warnings,1 remarks) +PASS -- TEST control_flake_intel [03:02, 02:51] (712540 MB) +PASS -- TEST control_CubedSphereGrid_intel [03:04, 02:41] (1599404 MB) +PASS -- TEST control_CubedSphereGrid_parallel_intel [04:08, 03:40] (1592960 MB) +PASS -- TEST control_latlon_intel [03:05, 02:45] (1582116 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_intel [03:12, 02:44] (1592800 MB) +PASS -- TEST control_c48_intel [10:53, 10:34] (1704104 MB) +PASS -- TEST control_c48.v2.sfc_intel [06:13, 06:01] (833868 MB) +PASS -- TEST control_c192_intel [10:41, 10:11] (1754152 MB) +PASS -- TEST control_c384_intel [12:56, 11:51] (2008056 MB) +PASS -- TEST control_c384gdas_intel [08:33, 07:11] (1511804 MB) +PASS -- TEST control_stochy_intel [01:37, 01:26] (663048 MB) +PASS -- TEST control_stochy_restart_intel [01:09, 00:54] (532488 MB) +PASS -- TEST control_lndp_intel [01:34, 01:21] (659100 MB) +PASS -- TEST control_iovr4_intel [02:23, 02:11] (662408 MB) +PASS -- TEST control_iovr5_intel [02:17, 02:09] (650804 MB) +PASS -- TEST control_p8_intel [03:52, 03:17] (1884444 MB) +PASS -- TEST control_p8.v2.sfc_intel [03:15, 02:41] (1900796 MB) +PASS -- TEST control_p8_ugwpv1_intel [03:54, 03:14] (1887280 MB) +PASS -- TEST control_restart_p8_intel [02:22, 01:48] (1151360 MB) +PASS -- TEST control_noqr_p8_intel [04:31, 04:05] (1875280 MB) +PASS -- TEST control_restart_noqr_p8_intel [02:36, 02:15] (1197852 MB) +PASS -- TEST control_decomp_p8_intel [03:48, 03:12] (1878068 MB) +PASS -- TEST control_2threads_p8_intel [03:40, 03:07] (1961932 MB) +PASS -- TEST control_p8_lndp_intel [05:56, 05:40] (1889932 MB) +PASS -- TEST control_p8_rrtmgp_intel [04:16, 03:38] (1967116 MB) +PASS -- TEST control_p8_mynn_intel [03:12, 02:39] (1909880 MB) +PASS -- TEST merra2_thompson_intel [03:42, 02:56] (1898680 MB) +PASS -- TEST regional_control_intel [04:50, 04:36] (1224088 MB) +PASS -- TEST regional_restart_intel [02:55, 02:38] (1176540 MB) +PASS -- TEST regional_decomp_intel [05:13, 04:54] (1211936 MB) +PASS -- TEST regional_2threads_intel [03:14, 02:57] (1178176 MB) +PASS -- TEST regional_noquilt_intel [04:52, 04:36] (1546852 MB) +PASS -- TEST regional_netcdf_parallel_intel [04:52, 04:34] (1232240 MB) +PASS -- TEST regional_2dwrtdecomp_intel [04:55, 04:37] (1221016 MB) +PASS -- TEST regional_wofs_intel [06:17, 06:05] (2069936 MB) + +PASS -- COMPILE rrfs_intel [08:54, 08:54](3 warnings,9 remarks) +PASS -- TEST rap_control_intel [07:20, 06:44] (1244752 MB) +PASS -- TEST regional_spp_sppt_shum_skeb_intel [04:06, 03:32] (1413048 MB) +PASS -- TEST rap_decomp_intel [07:39, 07:06] (1148432 MB) +PASS -- TEST rap_2threads_intel [07:11, 06:36] (1372476 MB) +PASS -- TEST rap_restart_intel [04:09, 03:31] (1135972 MB) +PASS -- TEST rap_sfcdiff_intel [07:12, 06:41] (1215568 MB) +PASS -- TEST rap_sfcdiff_decomp_intel [07:45, 07:11] (1150140 MB) +PASS -- TEST rap_sfcdiff_restart_intel [05:29, 05:02] (1179608 MB) +PASS -- TEST hrrr_control_intel [04:00, 03:25] (1068308 MB) +PASS -- TEST hrrr_control_decomp_intel [04:03, 03:31] (1046696 MB) +PASS -- TEST hrrr_control_2threads_intel [08:10, 07:25] (1100028 MB) +PASS -- TEST hrrr_control_restart_intel [02:12, 01:54] (1012740 MB) +PASS -- TEST rrfs_v1beta_intel [07:09, 06:31] (1215524 MB) +PASS -- TEST rrfs_v1nssl_intel [08:24, 08:14] (2013584 MB) +PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [08:12, 08:03] (2175512 MB) + +PASS -- COMPILE csawmg_intel [08:29, 08:29] +PASS -- TEST control_csawmg_intel [05:54, 05:35] (1057092 MB) +PASS -- TEST control_ras_intel [03:03, 02:53] (842004 MB) + +PASS -- COMPILE wam_intel [08:36, 08:36],1 remarks) +PASS -- TEST control_wam_intel [10:07, 09:47] (1659636 MB) + +PASS -- COMPILE atm_faster_dyn32_intel [08:49, 08:49],1 remarks) +PASS -- TEST control_p8_faster_intel [03:05, 02:29] (1895472 MB) +PASS -- TEST regional_control_faster_intel [04:29, 04:14] (1224436 MB) + +PASS -- COMPILE atm_debug_dyn32_intel [07:07, 07:07](882 warnings,9 remarks) +PASS -- TEST control_CubedSphereGrid_debug_intel [02:16, 01:59] (1613144 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [02:17, 01:57] (1609340 MB) +PASS -- TEST control_stochy_debug_intel [03:02, 02:52] (847724 MB) +PASS -- TEST control_lndp_debug_intel [02:46, 02:40] (835368 MB) +PASS -- TEST control_csawmg_debug_intel [04:09, 03:55] (1153996 MB) +PASS -- TEST control_ras_debug_intel [02:45, 02:39] (841912 MB) +PASS -- TEST control_diag_debug_intel [02:34, 02:18] (1694828 MB) +PASS -- TEST control_debug_p8_intel [02:39, 02:19] (1922092 MB) +PASS -- TEST regional_debug_intel [14:35, 14:19] (1147608 MB) +PASS -- TEST rap_control_debug_intel [04:48, 04:41] (1225988 MB) +PASS -- TEST hrrr_control_debug_intel [04:35, 04:25] (1224080 MB) +PASS -- TEST hrrr_gf_debug_intel [04:46, 04:37] (1228096 MB) +PASS -- TEST hrrr_c3_debug_intel [04:49, 04:40] (1225140 MB) +PASS -- TEST rap_unified_drag_suite_debug_intel [04:48, 04:40] (1227728 MB) +PASS -- TEST rap_diag_debug_intel [05:23, 05:10] (1308060 MB) +PASS -- TEST rap_cires_ugwp_debug_intel [04:56, 04:49] (1239068 MB) +PASS -- TEST rap_unified_ugwp_debug_intel [04:58, 04:52] (1230704 MB) +PASS -- TEST rap_lndp_debug_intel [04:48, 04:42] (1221772 MB) +PASS -- TEST rap_progcld_thompson_debug_intel [04:50, 04:43] (1231236 MB) +PASS -- TEST rap_noah_debug_intel [04:43, 04:36] (1220548 MB) +PASS -- TEST rap_sfcdiff_debug_intel [04:39, 04:32] (1221384 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [07:39, 07:32] (1220584 MB) +PASS -- TEST rrfs_v1beta_debug_intel [04:51, 04:44] (1225684 MB) +PASS -- TEST rap_clm_lake_debug_intel [04:52, 04:43] (1229064 MB) +PASS -- TEST rap_flake_debug_intel [04:44, 04:35] (1233416 MB) +PASS -- TEST gnv1_c96_no_nest_debug_intel [07:31, 06:55] (1235976 MB) + +PASS -- COMPILE atm_debug_dyn32_gnu [04:55, 04:55] +PASS -- TEST control_csawmg_debug_gnu [02:11, 01:57] (1038016 MB) + +PASS -- COMPILE wam_debug_intel [04:34, 04:34](837 warnings,1 remarks) + +PASS -- COMPILE rrfs_dyn32_phy32_intel [08:35, 08:35](3 warnings,8 remarks) +PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [03:52, 03:19] (1249536 MB) +PASS -- TEST rap_control_dyn32_phy32_intel [06:10, 05:37] (1154912 MB) +PASS -- TEST hrrr_control_dyn32_phy32_intel [03:41, 02:59] (1008300 MB) +PASS -- TEST rap_2threads_dyn32_phy32_intel [05:43, 05:13] (1299612 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [07:30, 06:40] (1035252 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [03:48, 03:09] (978788 MB) +PASS -- TEST rap_restart_dyn32_phy32_intel [04:38, 04:12] (1098144 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [01:59, 01:40] (957736 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [08:39, 08:39](3 warnings,8 remarks) +PASS -- TEST conus13km_control_intel [02:05, 01:41] (1303164 MB) +PASS -- TEST conus13km_2threads_intel [00:59, 00:46] (1193368 MB) +PASS -- TEST conus13km_restart_mismatch_intel [01:28, 01:04] (1135736 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_intel [08:14, 08:14](3 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_intel [04:11, 03:50] (1071084 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [03:43, 03:43](785 warnings,8 remarks) +PASS -- TEST rap_control_debug_dyn32_phy32_intel [04:48, 04:41] (1099004 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [04:43, 04:34] (1104060 MB) +PASS -- TEST conus13km_debug_intel [13:43, 13:21] (1335612 MB) +PASS -- TEST conus13km_debug_qr_intel [13:45, 13:27] (982724 MB) +PASS -- TEST conus13km_debug_2threads_intel [10:28, 10:12] (1235948 MB) +PASS -- TEST conus13km_radar_tten_debug_intel [13:21, 13:00] (1420176 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [03:48, 03:48](785 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_debug_intel [04:27, 04:20] (1175196 MB) + +PASS -- COMPILE hafsw_intel [10:30, 10:29](1 warnings,10 remarks) +PASS -- TEST hafs_regional_atm_intel [06:16, 05:26] (854096 MB) +PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [05:13, 05:00] (1259852 MB) +PASS -- TEST hafs_regional_atm_ocn_intel [07:23, 06:24] (906392 MB) +PASS -- TEST hafs_regional_atm_wav_intel [15:26, 14:39] (956724 MB) +PASS -- TEST hafs_regional_atm_ocn_wav_intel [18:28, 17:23] (983512 MB) +PASS -- TEST hafs_regional_1nest_atm_intel [06:02, 05:27] (601312 MB) +PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [07:54, 06:55] (609856 MB) +PASS -- TEST hafs_global_1nest_atm_intel [03:01, 02:33] (429204 MB) +PASS -- TEST hafs_global_multiple_4nests_atm_intel [09:19, 07:39] (549576 MB) +PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [05:23, 04:54] (595008 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [04:16, 03:46] (605472 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [05:32, 04:56] (659744 MB) +PASS -- TEST hafs_global_storm_following_1nest_atm_intel [01:26, 01:12] (451784 MB) + +PASS -- COMPILE hafsw_debug_intel [04:24, 04:23](1462 warnings,1490 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [12:29, 11:51] (637444 MB) + +PASS -- COMPILE hafsw_faster_intel [10:47, 10:47],9 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [19:39, 18:53] (752376 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [19:17, 18:26] (831576 MB) + +PASS -- COMPILE hafs_mom6w_intel [10:18, 10:18],8 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [13:51, 12:38] (806108 MB) + +PASS -- COMPILE hafs_all_intel [09:46, 09:46],9 remarks) +PASS -- TEST hafs_regional_docn_intel [06:20, 05:31] (927664 MB) +PASS -- TEST hafs_regional_docn_oisst_intel [06:33, 05:43] (900844 MB) +PASS -- TEST hafs_regional_datm_cdeps_intel [17:13, 16:40] (1335024 MB) + +PASS -- COMPILE datm_cdeps_intel [06:22, 06:22],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_intel [02:15, 02:08] (1156312 MB) +PASS -- TEST datm_cdeps_restart_cfsr_intel [01:21, 01:17] (1112816 MB) +PASS -- TEST datm_cdeps_control_gefs_intel [02:11, 02:07] (1017880 MB) +PASS -- TEST datm_cdeps_iau_gefs_intel [02:13, 02:08] (1019108 MB) +PASS -- TEST datm_cdeps_stochy_gefs_intel [02:12, 02:09] (1019852 MB) +PASS -- TEST datm_cdeps_ciceC_cfsr_intel [02:14, 02:09] (1141780 MB) +PASS -- TEST datm_cdeps_bulk_cfsr_intel [02:14, 02:11] (1162560 MB) +PASS -- TEST datm_cdeps_bulk_gefs_intel [02:09, 02:04] (1022300 MB) +PASS -- TEST datm_cdeps_mx025_cfsr_intel [05:24, 04:52] (1160700 MB) +PASS -- TEST datm_cdeps_mx025_gefs_intel [05:33, 04:58] (1160380 MB) +PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [02:11, 02:08] (1168092 MB) +PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [03:06, 03:01] (2409180 MB) +PASS -- TEST datm_cdeps_gfs_intel [03:08, 03:03] (2461864 MB) + +PASS -- COMPILE datm_cdeps_debug_intel [03:31, 03:31](2 warnings,2 remarks) +PASS -- TEST datm_cdeps_debug_cfsr_intel [05:09, 05:05] (1075704 MB) + +PASS -- COMPILE datm_cdeps_faster_intel [05:02, 05:02],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_faster_intel [02:12, 02:08] (1150904 MB) + +PASS -- COMPILE datm_cdeps_land_intel [01:30, 01:27],1 remarks) +PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:10, 00:54] (345272 MB) +PASS -- TEST datm_cdeps_lnd_era5_intel [01:01, 00:49] (571784 MB) +PASS -- TEST datm_cdeps_lnd_era5_rst_intel [00:42, 00:32] (575908 MB) + +PASS -- COMPILE atm_ds2s_docn_pcice_intel [10:18, 10:18],3 remarks) +PASS -- TEST atm_ds2s_docn_pcice_intel [04:19, 03:46] (2016828 MB) + +PASS -- COMPILE atm_ds2s_docn_dice_intel [09:53, 09:52](1 warnings,1 remarks) +PASS -- TEST atm_ds2s_docn_dice_intel [08:42, 08:12] (2030284 MB) + +PASS -- COMPILE atml_intel [10:09, 10:09](8 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_sbs_intel [06:10, 05:32] (1900744 MB) +PASS -- TEST control_p8_atmlnd_intel [06:28, 05:46] (1900768 MB) +PASS -- TEST control_restart_p8_atmlnd_intel [03:20, 02:58] (1153288 MB) + +PASS -- COMPILE atml_debug_intel [05:57, 05:56](880 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_debug_intel [05:49, 05:04] (1920680 MB) + +PASS -- COMPILE atmw_intel [10:00, 09:59],9 remarks) +PASS -- TEST atmwav_control_noaero_p8_intel [02:24, 01:46] (1930472 MB) + +PASS -- COMPILE atmaero_intel [09:00, 09:00],1 remarks) +PASS -- TEST atmaero_control_p8_intel [04:24, 03:51] (2002220 MB) +PASS -- TEST atmaero_control_p8_rad_intel [05:01, 04:27] (1781140 MB) +PASS -- TEST atmaero_control_p8_rad_micro_intel [05:01, 04:32] (1800080 MB) + +PASS -- COMPILE atmaq_debug_intel [03:56, 03:55](882 warnings,6 remarks) +PASS -- TEST regional_atmaq_debug_intel [17:38, 16:36] (4521860 MB) + +PASS -- COMPILE atm_fbh_intel [08:04, 08:04](3 warnings,8 remarks) +PASS -- TEST cpld_regional_atm_fbh_intel [15:46, 15:18] (1073568 MB) + +PASS -- COMPILE datm_cdeps_intelllvm [10:19, 10:19] +PASS -- TEST datm_cdeps_control_cfsr_intelllvm [02:21, 02:16] (1144884 MB) + +PASS -- COMPILE datm_cdeps_debug_intelllvm [01:51, 01:51](2 warnings +PASS -- TEST datm_cdeps_debug_cfsr_intelllvm [10:47, 10:42] (1070472 MB) + +PASS -- COMPILE atm_gnu [04:18, 04:18] +PASS -- TEST control_c48_gnu [08:07, 07:45] (1546168 MB) +PASS -- TEST control_stochy_gnu [02:33, 02:25] (718724 MB) +PASS -- TEST control_ras_gnu [04:06, 03:57] (723192 MB) +PASS -- TEST control_p8_gnu [04:53, 04:15] (1719308 MB) +PASS -- TEST control_p8_ugwpv1_gnu [04:48, 04:18] (1720344 MB) +PASS -- TEST control_flake_gnu [04:45, 04:36] (805972 MB) + +PASS -- COMPILE rrfs_gnu [05:06, 05:01] +PASS -- TEST rap_control_gnu [08:40, 08:02] (1073168 MB) +PASS -- TEST rap_decomp_gnu [08:59, 08:25] (1072684 MB) +PASS -- TEST rap_2threads_gnu [07:51, 07:17] (1109216 MB) +PASS -- TEST rap_restart_gnu [04:55, 04:15] (880124 MB) +PASS -- TEST rap_sfcdiff_gnu [08:37, 08:05] (1071896 MB) +PASS -- TEST rap_sfcdiff_decomp_gnu [08:51, 08:18] (1080980 MB) +PASS -- TEST rap_sfcdiff_restart_gnu [06:31, 05:54] (876408 MB) +PASS -- TEST hrrr_control_gnu [04:43, 04:05] (1060676 MB) +PASS -- TEST hrrr_control_noqr_gnu [04:24, 04:00] (1126304 MB) +PASS -- TEST hrrr_control_2threads_gnu [04:09, 03:35] (1033736 MB) +PASS -- TEST hrrr_control_decomp_gnu [04:38, 04:06] (1057724 MB) +PASS -- TEST hrrr_control_restart_gnu [02:23, 02:09] (873944 MB) +PASS -- TEST hrrr_control_restart_noqr_gnu [02:21, 02:06] (926684 MB) +PASS -- TEST rrfs_v1beta_gnu [08:42, 08:04] (1068016 MB) + +PASS -- COMPILE csawmg_gnu [03:58, 03:58] +PASS -- TEST control_csawmg_gnu [07:19, 07:03] (1054212 MB) + +PASS -- COMPILE atm_dyn32_debug_gnu [05:39, 05:39] +PASS -- TEST control_diag_debug_gnu [01:42, 01:24] (1621784 MB) +PASS -- TEST regional_debug_gnu [07:20, 07:04] (1122100 MB) +PASS -- TEST rap_control_debug_gnu [02:10, 02:04] (1090492 MB) +PASS -- TEST hrrr_control_debug_gnu [02:23, 02:14] (1081392 MB) +PASS -- TEST hrrr_gf_debug_gnu [02:16, 02:08] (1086524 MB) +PASS -- TEST hrrr_c3_debug_gnu [02:16, 02:09] (1089724 MB) +PASS -- TEST rap_diag_debug_gnu [02:31, 02:19] (1259880 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [03:31, 03:24] (1089864 MB) +PASS -- TEST rap_progcld_thompson_debug_gnu [02:12, 02:05] (1092192 MB) +PASS -- TEST rrfs_v1beta_debug_gnu [02:27, 02:21] (1085324 MB) +PASS -- TEST control_ras_debug_gnu [01:23, 01:17] (722604 MB) +PASS -- TEST control_stochy_debug_gnu [01:26, 01:20] (715724 MB) +PASS -- TEST control_debug_p8_gnu [01:34, 01:18] (1697976 MB) +PASS -- TEST rap_flake_debug_gnu [02:21, 02:10] (1089344 MB) +PASS -- TEST rap_clm_lake_debug_gnu [02:16, 02:10] (1091460 MB) +PASS -- TEST gnv1_c96_no_nest_debug_gnu [04:06, 03:32] (1094608 MB) + +PASS -- COMPILE wam_debug_gnu [02:45, 02:45] +PASS -- TEST control_wam_debug_gnu [06:09, 05:50] (1553632 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_gnu [04:15, 04:15] +PASS -- TEST rap_control_dyn32_phy32_gnu [08:19, 07:49] (953272 MB) +PASS -- TEST hrrr_control_dyn32_phy32_gnu [04:40, 04:01] (942920 MB) +PASS -- TEST rap_2threads_dyn32_phy32_gnu [07:35, 07:05] (965928 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_gnu [04:19, 03:27] (876360 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [04:47, 04:02] (946024 MB) +PASS -- TEST rap_restart_dyn32_phy32_gnu [06:16, 05:50] (855284 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [02:21, 02:05] (856096 MB) +PASS -- TEST conus13km_control_gnu [02:55, 02:32] (1255196 MB) +PASS -- TEST conus13km_2threads_gnu [01:28, 01:07] (1168572 MB) +PASS -- TEST conus13km_restart_mismatch_gnu [01:52, 01:29] (923404 MB) + +PASS -- COMPILE atm_dyn64_phy32_gnu [09:10, 09:10] +PASS -- TEST rap_control_dyn64_phy32_gnu [04:49, 04:32] (980664 MB) + +PASS -- COMPILE atm_dyn32_phy32_debug_gnu [06:59, 06:59] +PASS -- TEST rap_control_debug_dyn32_phy32_gnu [02:12, 02:02] (964196 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [02:07, 02:00] (957040 MB) +PASS -- TEST conus13km_debug_gnu [06:00, 05:35] (1272764 MB) +PASS -- TEST conus13km_debug_qr_gnu [06:19, 05:53] (970092 MB) +PASS -- TEST conus13km_debug_2threads_gnu [03:55, 03:32] (1180148 MB) +PASS -- TEST conus13km_radar_tten_debug_gnu [06:08, 05:45] (1343696 MB) + +PASS -- COMPILE atm_dyn64_phy32_debug_gnu [07:02, 07:01] +PASS -- TEST rap_control_dyn64_phy32_debug_gnu [02:26, 02:17] (989348 MB) + +PASS -- COMPILE s2swa_gnu [17:23, 17:23] +PASS -- COMPILE s2s_gnu [16:21, 16:21] +PASS -- TEST cpld_control_nowave_noaero_p8_gnu [15:07, 14:32] (2709288 MB) + +PASS -- COMPILE s2swa_debug_gnu [04:26, 04:26] +PASS -- COMPILE s2sw_pdlib_gnu [16:48, 16:48] +PASS -- TEST cpld_control_pdlib_p8_gnu [40:13, 39:34] (2878484 MB) + +PASS -- COMPILE s2sw_pdlib_debug_gnu [04:11, 04:11] +PASS -- TEST cpld_debug_pdlib_p8_gnu [15:40, 14:59] (3034452 MB) + +PASS -- COMPILE datm_cdeps_gnu [16:10, 16:10] +PASS -- TEST datm_cdeps_control_cfsr_gnu [03:26, 03:20] (772632 MB) + + +SYNOPSIS: +Starting Date/Time: 2024-12-01 08:16:41 +Ending Date/Time: 2024-12-01 12:49:15 +Total Time: 04h:32m:34s +Compiles Completed: 60/60 +Tests Completed: 247/247 + + +NOTES: +A file test_changes.list was generated but is empty. +If you are using this log as a pull request verification, please commit test_changes.list. + +Result: SUCCESS + +====END OF hercules REGRESSION TESTING LOG==== ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -946b7e2833191ab36966b64cff0f15aaddf6ea03 +28fb4f657a3f626c25c1507214426312b5ef699e 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) + cf01f337a0162dc05889288e19bc9c4811ace762 CICE-interface/CICE (remotes/origin/sync_cice_2024-11) + 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 915e44e963b804684b872c5545feb9416e742f72 FV3 (remotes/origin/rrfsv1-to-ufs/dev3) + b769849792dbe799dc1a2e29942864f880ee8445 FV3 (heads/develop) e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 9dffb7e1cd5fceebec065299c791e65e3a30e0c2 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5516-g9dffb7e1) + 6e0467ad07a2231d298dc3be91a923c934354a7f FV3/ccpp/physics (EP4-1071-g6e0467ad) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -38,388 +465,22 @@ 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-20241121 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1935327 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20241127 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_1449305 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [21:11, 14:28] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [49:26, 15:23](2134 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 18:49] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [53:43, 18:18](1990 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:50, 18:03](2333 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:35, 06:48](1369 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [54:40, 19:07](1896 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [32:12, 20:48] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [26:52, 17:51](1988 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:11, 09:58] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [44:34, 25:37](1961 MB) - -PASS -- COMPILE 's2swa_intel' [21:11, 14:53] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [49:13, 15:12](2198 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [49:28, 15:00](2203 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:28, 07:44](1986 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [49:17, 15:33](2226 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:24, 07:47](1737 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [51:17, 17:25](2568 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [49:11, 15:17](2196 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [46:20, 12:47](2089 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [48:29, 14:46](2213 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [51:12, 16:51](2985 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:55, 06:31](2919 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [57:18, 18:11](3866 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:25, 10:02](3650 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [41:18, 07:47](2109 MB) - -PASS -- COMPILE 's2sw_intel' [14:11, 12:22] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [35:09, 14:41](2012 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [32:16, 11:24](2114 MB) - -PASS -- COMPILE 's2swa_debug_intel' [17:11, 09:57] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [59:23, 21:16](2238 MB) - -PASS -- COMPILE 's2sw_debug_intel' [17:11, 05:36] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [45:12, 08:20](2045 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [18:11, 11:43] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [41:24, 04:45](2057 MB) - -PASS -- COMPILE 's2s_intel' [20:11, 13:32] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [42:00, 07:00](3033 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [38:03, 03:02](3010 MB) -PASS -- TEST 'cpld_restart_c48_intel' [15:55, 02:19](2471 MB) - -PASS -- COMPILE 's2swa_faster_intel' [14:11, 11:34] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [42:26, 15:22](2219 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 16:02] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:19, 23:46](2074 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:20, 12:15](1426 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [31:16, 27:31](1993 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 04:39] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [57:14, 28:13](2008 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:11, 09:06] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [16:23, 02:55](712 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [14:36, 02:48](1583 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [14:41, 02:48](1614 MB) -PASS -- TEST 'control_latlon_intel' [12:32, 02:51](1592 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [12:38, 02:48](1577 MB) -PASS -- TEST 'control_c48_intel' [19:40, 10:16](1692 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [15:36, 05:51](823 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [19:41, 10:16](1705 MB) -PASS -- TEST 'control_c192_intel' [18:56, 10:13](1775 MB) -PASS -- TEST 'control_c384_intel' [21:39, 12:05](2023 MB) -PASS -- TEST 'control_c384gdas_intel' [19:19, 08:55](1495 MB) -PASS -- TEST 'control_stochy_intel' [10:25, 01:27](662 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:30, 00:53](544 MB) -PASS -- TEST 'control_lndp_intel' [06:24, 01:23](664 MB) -PASS -- TEST 'control_iovr4_intel' [04:22, 02:07](654 MB) -PASS -- TEST 'control_iovr5_intel' [04:22, 02:08](653 MB) -PASS -- TEST 'control_p8_intel' [06:00, 03:57](1878 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:58, 03:01](1894 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:56, 03:11](1887 MB) -PASS -- TEST 'control_restart_p8_intel' [03:56, 01:47](1151 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:49, 03:05](1867 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:59, 01:45](1213 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:04, 03:36](1888 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:15, 03:00](1963 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:38, 05:35](1884 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:01, 04:33](1964 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:09, 03:43](1901 MB) -PASS -- TEST 'merra2_thompson_intel' [07:08, 03:48](1893 MB) -PASS -- TEST 'regional_control_intel' [06:32, 04:39](1223 MB) -PASS -- TEST 'regional_restart_intel' [06:30, 03:15](1177 MB) -PASS -- TEST 'regional_decomp_intel' [06:28, 04:57](1213 MB) -PASS -- TEST 'regional_2threads_intel' [04:28, 03:07](1189 MB) -PASS -- TEST 'regional_noquilt_intel' [06:31, 04:33](1545 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:36, 04:44](1221 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:30, 04:36](1230 MB) -PASS -- TEST 'regional_wofs_intel' [07:36, 05:56](2071 MB) - -PASS -- COMPILE 'rrfs_intel' [12:11, 08:37] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [32:48, 06:51](1208 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [27:54, 03:44](1380 MB) -PASS -- TEST 'rap_decomp_intel' [32:49, 07:04](1142 MB) -PASS -- TEST 'rap_2threads_intel' [32:01, 06:34](1381 MB) -PASS -- TEST 'rap_restart_intel' [06:05, 03:33](1146 MB) -PASS -- TEST 'rap_sfcdiff_intel' [32:54, 06:37](1228 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [32:54, 07:02](1159 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:15, 05:02](1204 MB) -PASS -- TEST 'hrrr_control_intel' [29:04, 03:32](1107 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:48, 03:35](1037 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:48, 03:11](1103 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:38, 02:02](1016 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:06, 06:40](1188 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:21, 08:18](2011 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:21, 07:58](2182 MB) - -PASS -- COMPILE 'csawmg_intel' [10:11, 08:17] -PASS -- TEST 'control_csawmg_intel' [09:28, 06:31](1053 MB) -PASS -- TEST 'control_ras_intel' [06:20, 02:53](839 MB) - -PASS -- COMPILE 'wam_intel' [10:11, 08:03] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:42, 09:58](1660 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:11, 09:02] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:05, 03:42](1903 MB) -PASS -- TEST 'regional_control_faster_intel' [08:32, 05:15](1227 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:11, 10:15] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:37, 01:54](1615 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:47, 01:50](1633 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:21, 03:13](842 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:21, 02:33](834 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:32, 04:34](1148 MB) -PASS -- TEST 'control_ras_debug_intel' [04:18, 02:49](846 MB) -PASS -- TEST 'control_diag_debug_intel' [04:34, 02:23](1691 MB) -PASS -- TEST 'control_debug_p8_intel' [04:36, 02:19](1907 MB) -PASS -- TEST 'regional_debug_intel' [16:33, 14:40](1153 MB) -PASS -- TEST 'rap_control_debug_intel' [06:20, 04:53](1233 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:23, 04:43](1218 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:19, 04:22](1232 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 04:44](1221 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:24, 04:53](1226 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:26, 05:01](1310 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:20, 04:31](1223 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:19, 04:46](1221 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:19, 04:47](1224 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 04:22](1224 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:21, 04:37](1222 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:21, 04:19](1230 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:20, 07:27](1225 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:22, 04:29](1214 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:22, 04:25](1221 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:20, 04:29](1238 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:56, 07:08](1227 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [09:11, 03:47] -PASS -- TEST 'control_csawmg_debug_gnu' [04:39, 02:11](1038 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:11, 03:54] ( 837 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:10, 08:18] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:49, 03:19](1251 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:53, 05:31](1178 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:05, 02:55](1040 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:36, 05:21](1293 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:40, 02:47](1039 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:40, 03:05](985 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:56, 04:09](1096 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [08:36, 01:36](953 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:10, 08:25] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:49, 01:41](1296 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:39, 00:50](1185 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [08:33, 01:03](1143 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:10, 08:28] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:33, 03:47](1083 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:12, 04:05] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:19, 04:31](1101 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:20, 04:34](1104 MB) -PASS -- TEST 'conus13km_debug_intel' [14:37, 12:42](1351 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:40, 13:00](1001 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:35, 10:07](1248 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:45, 13:01](1423 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:10, 03:59] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [13:23, 04:24](1170 MB) - -PASS -- COMPILE 'hafsw_intel' [17:11, 10:46] ( 1 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:11, 05:24](854 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:24, 05:09](1263 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:18, 06:37](912 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [19:14, 15:04](959 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:18, 17:35](992 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:58, 05:40](584 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:20, 07:07](605 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:48, 02:40](434 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:15, 07:48](544 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:48, 03:58](612 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:49, 03:39](604 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:58, 04:53](662 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:27, 01:12](446 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [11:10, 04:32] ( 1462 warnings 1490 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:50, 11:44](628 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:12, 10:20] ( 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [26:03, 18:55](734 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [25:03, 18:33](832 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:12, 10:27] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [18:44, 11:58](813 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:12, 10:06] ( 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [12:19, 05:46](924 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:09, 05:47](908 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:51, 16:31](1340 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:11, 06:47] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:17, 02:09](1161 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:21](1112 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:16, 02:06](1019 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:17, 02:10](1015 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:16, 02:10](1018 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:16, 02:12](1169 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:16, 02:11](1140 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:19, 02:09](1015 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:04, 05:01](1159 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:06, 04:58](1161 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:16, 02:11](1164 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 03:03](2394 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:20, 03:05](2450 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [10:11, 03:23] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 05:11](1084 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [13:11, 06:48] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 03:03](1152 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [06:11, 00:45] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:32, 00:55](333 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:26, 00:53](570 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:25, 00:37](573 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:11, 08:52] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:00, 04:46](2025 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:11, 08:39] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:01, 08:56](2018 MB) - -PASS -- COMPILE 'atml_intel' [13:11, 08:52] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:13, 05:46](1891 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:13, 05:51](1889 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [10:55, 03:57](1154 MB) - -PASS -- COMPILE 'atml_debug_intel' [10:11, 05:13] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:12, 05:53](1925 MB) - -PASS -- COMPILE 'atmw_intel' [13:11, 10:02] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:02, 01:43](1931 MB) - -PASS -- COMPILE 'atmaero_intel' [12:11, 09:17] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:58, 03:49](2019 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:06, 04:27](1780 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:53, 04:37](1804 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:11, 04:19] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [21:50, 16:55](4559 MB) - -PASS -- COMPILE 'atm_fbh_intel' [12:11, 08:45] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [14:29, 09:43](1111 MB) - -PASS -- COMPILE 'datm_cdeps_intelllvm' [19:11, 17:14] -PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [06:22, 02:21](1156 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [05:11, 03:09] -PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [09:19, 06:05](1076 MB) - -PASS -- COMPILE 'atm_gnu' [18:11, 11:58] -PASS -- TEST 'control_c48_gnu' [11:51, 07:42](1548 MB) -PASS -- TEST 'control_stochy_gnu' [05:28, 02:24](721 MB) -PASS -- TEST 'control_ras_gnu' [07:29, 04:02](725 MB) -PASS -- TEST 'control_p8_gnu' [09:10, 05:37](1720 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [07:04, 04:08](1718 MB) -PASS -- TEST 'control_flake_gnu' [06:28, 04:41](803 MB) - -PASS -- COMPILE 'rrfs_gnu' [15:11, 11:25] -PASS -- TEST 'rap_control_gnu' [10:58, 08:12](1072 MB) -PASS -- TEST 'rap_decomp_gnu' [10:55, 08:25](1071 MB) -PASS -- TEST 'rap_2threads_gnu' [10:06, 07:18](1109 MB) -PASS -- TEST 'rap_restart_gnu' [09:20, 04:17](876 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [10:02, 07:59](1071 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:11, 08:18](1073 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:36, 06:06](876 MB) -PASS -- TEST 'hrrr_control_gnu' [07:04, 04:11](1058 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:02, 04:07](1128 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [11:11, 03:43](1024 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [12:03, 04:14](1059 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [06:39, 02:06](874 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:42, 02:07](924 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [15:17, 07:54](1068 MB) - -PASS -- COMPILE 'csawmg_gnu' [09:11, 07:13] -PASS -- TEST 'control_csawmg_gnu' [13:37, 07:47](1056 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [12:11, 05:41] -PASS -- TEST 'control_diag_debug_gnu' [07:43, 01:21](1620 MB) -PASS -- TEST 'regional_debug_gnu' [13:37, 07:56](1112 MB) -PASS -- TEST 'rap_control_debug_gnu' [07:25, 02:17](1088 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [07:28, 02:13](1082 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [06:27, 02:12](1088 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [05:26, 02:12](1084 MB) -PASS -- TEST 'rap_diag_debug_gnu' [06:41, 02:14](1258 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [07:25, 03:23](1085 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [06:32, 02:07](1094 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [06:31, 02:13](1087 MB) -PASS -- TEST 'control_ras_debug_gnu' [04:24, 01:24](721 MB) -PASS -- TEST 'control_stochy_debug_gnu' [04:21, 01:25](721 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:44, 01:22](1715 MB) -PASS -- TEST 'rap_flake_debug_gnu' [05:29, 02:12](1091 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [05:28, 02:16](1093 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [07:06, 03:38](1094 MB) - -PASS -- COMPILE 'wam_debug_gnu' [08:11, 02:18] -PASS -- TEST 'control_wam_debug_gnu' [07:46, 05:38](1553 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [10:11, 04:04] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:00, 08:01](951 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:15, 03:53](941 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:02, 06:51](961 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:04, 03:28](885 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:54, 04:00](940 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:13, 05:43](856 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:44, 02:05](853 MB) -PASS -- TEST 'conus13km_control_gnu' [06:54, 02:41](1256 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:42, 01:07](1164 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:36, 01:35](925 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 08:48] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:49, 04:37](984 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [14:13, 06:53] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:20, 02:06](972 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:29, 02:10](963 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:52, 05:48](1275 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [09:49, 06:13](944 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [06:49, 03:43](1179 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:42, 05:55](1342 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [13:15, 06:52] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:25, 02:08](992 MB) - -PASS -- COMPILE 's2swa_gnu' [20:12, 17:18] - -PASS -- COMPILE 's2s_gnu' [20:12, 17:22] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [20:49, 15:49](2692 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [05:10, 03:26] - -PASS -- COMPILE 's2sw_pdlib_gnu' [21:14, 19:38] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [44:15, 40:26](2908 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [08:12, 06:42] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [20:27, 15:45](2919 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [16:12, 14:16] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:20, 02:21](772 MB) +* (-r) - USE ROCOTO + +PASS -- COMPILE 'atm_dyn32_intel' [09:19, 09:19] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_c48_lnd_iau_intel' [10:45, 10:22](1697 MB) SYNOPSIS: -Starting Date/Time: 20241122 09:00:58 -Ending Date/Time: 20241122 11:53:24 -Total Time: 02h:53m:42s -Compiles Completed: 60/60 -Tests Completed: 248/248 +Starting Date/Time: 20241202 14:46:23 +Ending Date/Time: 20241202 15:09:37 +Total Time: 00h:23m:37s +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_jet.log b/tests/logs/RegressionTests_jet.log index 1e918516d5..2f3769c73d 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,20 +1,20 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -946b7e2833191ab36966b64cff0f15aaddf6ea03 +e4d3bebab002b60b5af711bfcbbda2307d0925bb 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) + cf01f337a0162dc05889288e19bc9c4811ace762 CICE-interface/CICE (remotes/origin/sync_cice_2024-11) + 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 915e44e963b804684b872c5545feb9416e742f72 FV3 (remotes/origin/rrfsv1-to-ufs/dev3) + b769849792dbe799dc1a2e29942864f880ee8445 FV3 (heads/develop) e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 9dffb7e1cd5fceebec065299c791e65e3a30e0c2 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5516-g9dffb7e1) + 6e0467ad07a2231d298dc3be91a923c934354a7f FV3/ccpp/physics (EP4-1071-g6e0467ad) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -38,329 +38,259 @@ 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-20241121 -COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3069869 +BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20241127 +COMPARISON DIRECTORY: /lfs5/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_433709 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: h-nems -* (-l) - USE CONFIG FILE: rt.conf +* (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [44:15, 43:06] ( 1 warnings 1396 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:16, 13:28](2005 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [50:15, 49:09] ( 1 warnings 1443 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [25:09, 22:54](1889 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:16, 23:21](2024 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:07, 09:37](1137 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:03, 25:53](1852 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [50:15, 48:16] ( 1 warnings 1440 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [24:47, 22:23](1873 MB) - -PASS -- COMPILE 's2swa_intel' [45:15, 44:05] ( 1 warnings 1415 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [19:10, 17:04](2068 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:24, 17:05](2061 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:22, 08:54](1711 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [19:09, 17:05](2078 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [12:19, 09:00](1733 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [19:04, 16:28](2340 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [20:08, 17:13](2050 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [16:18, 14:02](1999 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:20, 17:00](2061 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:11, 09:19](2018 MB) - -PASS -- COMPILE 's2sw_intel' [43:15, 41:54] ( 1 warnings 1300 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [12:21, 09:54](1907 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [17:30, 14:06](1982 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:04] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [30:16, 27:31](2086 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:12, 05:53] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [14:00, 11:32](1936 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [38:13, 36:46] ( 1018 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:16, 05:31](1965 MB) - -PASS -- COMPILE 's2s_intel' [39:14, 38:05] ( 1 warnings 1041 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [12:52, 10:17](3019 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:53, 03:02](3010 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:50, 01:45](2462 MB) - -PASS -- COMPILE 's2swa_faster_intel' [34:19, 32:59] ( 1 warnings 1631 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [19:38, 16:23](2057 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [49:14, 47:17] ( 1 warnings 1360 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [36:16, 33:18](1928 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [19:19, 16:25](1144 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [42:21, 39:06](1916 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:05] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:11, 38:36](1940 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [39:13, 37:38] ( 1 warnings 1124 remarks ) -PASS -- TEST 'control_flake_intel' [06:30, 04:23](651 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:59, 04:22](1533 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:01, 04:38](1544 MB) -PASS -- TEST 'control_latlon_intel' [06:57, 04:23](1533 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:05, 04:35](1529 MB) -PASS -- TEST 'control_c48_intel' [21:04, 18:10](1707 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:37, 10:14](833 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_c48_lnd_iau_intel' [, ]( MB) -PASS -- TEST 'control_c192_intel' [18:17, 15:53](1684 MB) -PASS -- TEST 'control_c384_intel' [26:08, 23:05](1811 MB) -PASS -- TEST 'control_c384gdas_intel' [18:58, 13:26](1003 MB) -PASS -- TEST 'control_stochy_intel' [04:29, 02:11](605 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:26, 01:14](443 MB) -PASS -- TEST 'control_lndp_intel' [03:29, 02:03](602 MB) -PASS -- TEST 'control_iovr4_intel' [05:30, 03:16](599 MB) -PASS -- TEST 'control_iovr5_intel' [05:29, 03:17](601 MB) -PASS -- TEST 'control_p8_intel' [07:18, 04:54](1828 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:25, 04:08](1839 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:08, 04:50](1833 MB) -PASS -- TEST 'control_restart_p8_intel' [04:51, 02:37](1064 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:12, 04:48](1819 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:57, 02:32](1078 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:10, 04:59](1815 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:09, 04:42](1911 MB) -PASS -- TEST 'control_p8_lndp_intel' [11:01, 08:45](1828 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:13, 05:17](1896 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:12, 04:08](1854 MB) -PASS -- TEST 'merra2_thompson_intel' [07:05, 04:30](1845 MB) -PASS -- TEST 'regional_control_intel' [09:54, 07:14](1034 MB) -PASS -- TEST 'regional_restart_intel' [05:38, 03:46](1018 MB) -PASS -- TEST 'regional_decomp_intel' [09:34, 07:28](1038 MB) -PASS -- TEST 'regional_2threads_intel' [06:36, 04:24](1033 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:43, 07:05](1037 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:34, 07:00](1044 MB) - -PASS -- COMPILE 'rrfs_intel' [36:14, 34:48] ( 3 warnings 1100 remarks ) -PASS -- TEST 'rap_control_intel' [12:43, 10:12](987 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:13, 05:29](1185 MB) -PASS -- TEST 'rap_decomp_intel' [12:43, 10:47](981 MB) -PASS -- TEST 'rap_2threads_intel' [11:46, 09:43](1070 MB) -PASS -- TEST 'rap_restart_intel' [07:44, 05:13](994 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:44, 10:04](990 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:42, 10:41](980 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:45, 07:31](1004 MB) -PASS -- TEST 'hrrr_control_intel' [07:44, 05:14](989 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:44, 05:20](976 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:47, 04:49](1051 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:28, 02:45](907 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:57, 10:01](984 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [15:31, 13:10](1936 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:31, 13:03](1936 MB) - -PASS -- COMPILE 'csawmg_intel' [36:13, 35:00] ( 1098 remarks ) -PASS -- TEST 'control_csawmg_intel' [10:42, 08:05](963 MB) -PASS -- TEST 'control_ras_intel' [06:27, 04:20](671 MB) - -PASS -- COMPILE 'wam_intel' [37:14, 35:32] ( 1002 remarks ) -PASS -- TEST 'control_wam_intel' [16:55, 14:16](1622 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [39:13, 37:29] ( 1302 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:54, 03:35](1842 MB) -PASS -- TEST 'regional_control_faster_intel' [08:36, 06:35](1035 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 08:25] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:44, 02:58](1568 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:50, 02:58](1562 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:27, 03:59](797 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:26, 03:36](783 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:41, 05:39](1087 MB) -PASS -- TEST 'control_ras_debug_intel' [05:27, 03:37](786 MB) -PASS -- TEST 'control_diag_debug_intel' [05:47, 03:33](1628 MB) -PASS -- TEST 'control_debug_p8_intel' [05:46, 03:28](1851 MB) -PASS -- TEST 'regional_debug_intel' [24:47, 22:16](1051 MB) -PASS -- TEST 'rap_control_debug_intel' [08:29, 06:21](1158 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:28, 06:11](1156 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:29, 06:26](1166 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:29, 06:19](1160 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:29, 06:21](1160 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:40, 06:38](1248 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:29, 06:28](1163 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:29, 06:31](1157 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:26, 06:08](1161 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:25, 06:06](1159 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:25, 06:00](1161 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:23, 06:05](1160 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:24, 09:58](1159 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:26, 06:00](1160 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:28, 06:05](1160 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:25, 06:05](1163 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:47, 10:37](1176 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:11, 05:09] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [19:42, 16:32](1652 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [26:12, 24:30] ( 3 warnings 1032 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:03, 05:14](1063 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:35, 08:19](906 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:37, 04:19](872 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:42, 07:58](963 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:40, 04:01](903 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:37, 04:36](851 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:35, 06:10](897 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:27, 02:20](839 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [34:13, 32:11] ( 3 warnings 1206 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:52, 02:38](1103 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:45, 01:11](1045 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:44, 01:28](1012 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [33:13, 31:23] ( 3 warnings 1052 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:44, 05:22](908 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:03] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:26, 06:02](1036 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:27, 05:53](1040 MB) -PASS -- TEST 'conus13km_debug_intel' [19:55, 17:37](1149 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:53, 17:41](859 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:47, 10:13](1101 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:48, 17:41](1221 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:55] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:27, 06:09](1082 MB) - -PASS -- COMPILE 'hafsw_intel' [42:14, 39:54] ( 1 warnings 1434 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [10:27, 06:51](697 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:39, 06:10](1080 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:35, 09:10](748 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [19:32, 15:44](784 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:47, 19:08](799 MB) -PASS -- TEST 'gnv1_nested_intel' [09:42, 06:30](1661 MB) - -PASS -- COMPILE 'hafs_all_intel' [38:14, 36:24] ( 1280 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:21, 08:27](753 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:18, 08:24](735 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:08] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:23, 03:35](1074 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:22, 02:07](1048 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:22, 03:29](931 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:24, 03:32](933 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:23, 03:32](943 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:25, 03:36](1075 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:22, 03:36](1072 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:23, 03:29](932 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:14, 07:37](896 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:15, 07:35](849 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:21, 03:36](1068 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:23, 04:59](2423 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:22, 05:03](2425 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:21] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:21, 08:08](1029 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:10] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:29](1058 MB) +PASS -- COMPILE 's2swa_32bit_intel' [45:14, 43:33] ( 1 warnings 1396 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:17, 13:35](2022 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:15, 47:46] ( 1 warnings 1443 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [25:09, 22:54](1885 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:21, 24:03](2026 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:11, 09:36](1136 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:01, 25:53](1850 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [50:15, 48:17] ( 1 warnings 1440 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [24:48, 22:18](1878 MB) + +PASS -- COMPILE 's2swa_intel' [45:14, 44:07] ( 1 warnings 1415 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [20:12, 17:10](2069 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:27, 17:05](2067 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:21, 08:53](1705 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [20:12, 17:17](2069 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:20, 08:58](1731 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [19:06, 16:39](2329 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [20:05, 17:21](2044 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [17:17, 14:10](2019 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:25, 17:07](2063 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:14, 09:20](2018 MB) + +PASS -- COMPILE 's2sw_intel' [43:14, 41:20] ( 1 warnings 1300 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [12:19, 09:51](1911 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:30, 14:07](1971 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:09] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [30:18, 27:30](2086 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:11, 06:06] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [14:00, 11:32](1941 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [39:13, 37:14] ( 1018 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:20, 05:29](1968 MB) + +PASS -- COMPILE 's2s_intel' [39:14, 37:47] ( 1 warnings 1041 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [12:50, 10:20](3026 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:50, 03:03](3007 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:47, 01:44](2453 MB) + +PASS -- COMPILE 's2swa_faster_intel' [34:18, 32:17] ( 1 warnings 1631 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [19:32, 16:17](2064 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [47:14, 46:00] ( 1 warnings 1360 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [35:21, 33:07](1924 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [19:20, 16:20](1145 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [41:15, 38:58](1910 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:53] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:09, 38:37](1927 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [39:13, 37:18] ( 1 warnings 1124 remarks ) +PASS -- TEST 'control_flake_intel' [06:28, 04:23](654 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:58, 04:23](1531 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:00, 04:29](1547 MB) +PASS -- TEST 'control_latlon_intel' [06:57, 04:21](1532 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:05, 04:27](1543 MB) +PASS -- TEST 'control_c48_intel' [21:04, 18:15](1705 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [12:34, 10:13](837 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [21:04, 18:15](1709 MB) +PASS -- TEST 'control_c192_intel' [18:14, 15:50](1694 MB) +PASS -- TEST 'control_c384_intel' [26:01, 22:59](1809 MB) +PASS -- TEST 'control_c384gdas_intel' [17:48, 13:16](996 MB) +PASS -- TEST 'control_stochy_intel' [04:26, 02:08](605 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:25, 01:14](442 MB) +PASS -- TEST 'control_lndp_intel' [03:27, 02:03](609 MB) +PASS -- TEST 'control_iovr4_intel' [05:29, 03:19](604 MB) +PASS -- TEST 'control_iovr5_intel' [05:29, 03:17](604 MB) +PASS -- TEST 'control_p8_intel' [07:16, 04:56](1833 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:24, 04:06](1842 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:06, 04:50](1828 MB) +PASS -- TEST 'control_restart_p8_intel' [04:50, 02:35](1057 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:10, 04:48](1825 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:56, 02:32](1073 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:08, 04:57](1822 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:07, 04:44](1919 MB) +PASS -- TEST 'control_p8_lndp_intel' [11:02, 08:48](1833 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:12, 05:17](1901 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:10, 04:11](1845 MB) +PASS -- TEST 'merra2_thompson_intel' [07:07, 04:28](1835 MB) +PASS -- TEST 'regional_control_intel' [09:54, 07:12](1048 MB) +PASS -- TEST 'regional_restart_intel' [05:41, 03:49](1011 MB) +PASS -- TEST 'regional_decomp_intel' [09:32, 07:21](1036 MB) +PASS -- TEST 'regional_2threads_intel' [06:33, 04:21](1023 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:39, 06:57](1043 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:34, 07:01](1045 MB) + +PASS -- COMPILE 'rrfs_intel' [37:13, 35:39] ( 3 warnings 1100 remarks ) +PASS -- TEST 'rap_control_intel' [11:44, 10:08](988 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:08, 05:28](1184 MB) +PASS -- TEST 'rap_decomp_intel' [12:43, 10:45](980 MB) +PASS -- TEST 'rap_2threads_intel' [11:44, 09:42](1071 MB) +PASS -- TEST 'rap_restart_intel' [07:46, 05:10](983 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:44, 10:10](986 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:42, 10:41](985 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:46, 07:34](1004 MB) +PASS -- TEST 'hrrr_control_intel' [07:41, 05:16](983 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:41, 05:24](976 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:46, 04:49](1049 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:28, 02:43](915 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:54, 10:04](983 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [15:30, 13:23](1930 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:30, 12:56](1936 MB) + +PASS -- COMPILE 'csawmg_intel' [36:13, 34:46] ( 1098 remarks ) +PASS -- TEST 'control_csawmg_intel' [09:37, 08:03](964 MB) +PASS -- TEST 'control_ras_intel' [06:23, 04:18](671 MB) + +PASS -- COMPILE 'wam_intel' [37:13, 35:17] ( 1002 remarks ) +PASS -- TEST 'control_wam_intel' [16:42, 14:14](1607 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [39:14, 37:34] ( 1302 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:53, 03:37](1838 MB) +PASS -- TEST 'regional_control_faster_intel' [08:39, 06:34](1033 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 08:13] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:45, 02:43](1570 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:51, 02:43](1559 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:27, 03:51](777 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:26, 03:30](776 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:42, 05:24](1087 MB) +PASS -- TEST 'control_ras_debug_intel' [05:26, 03:34](784 MB) +PASS -- TEST 'control_diag_debug_intel' [05:47, 03:19](1631 MB) +PASS -- TEST 'control_debug_p8_intel' [05:47, 03:14](1860 MB) +PASS -- TEST 'regional_debug_intel' [23:44, 21:55](1038 MB) +PASS -- TEST 'rap_control_debug_intel' [08:28, 06:14](1165 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:28, 06:04](1158 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:28, 06:11](1163 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:28, 06:14](1163 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:28, 06:12](1165 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:39, 06:29](1252 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:28, 06:19](1168 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:28, 06:21](1165 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:28, 06:19](1170 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:26, 06:04](1159 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:24, 05:57](1161 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:25, 06:04](1162 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:24, 09:56](1158 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:24, 06:02](1157 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:27, 06:06](1165 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:26, 06:06](1164 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:44, 10:36](1171 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 05:04] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:51, 16:30](1645 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:13, 30:46] ( 3 warnings 1032 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [26:04, 23:31](1060 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:34, 08:10](911 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:40, 04:18](873 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:44, 07:50](960 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:44, 04:00](902 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:40, 04:34](854 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:37, 06:10](907 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:24, 02:21](846 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [33:13, 31:51] ( 3 warnings 1206 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:51, 02:38](1100 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:36, 01:13](1041 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:39, 01:30](1016 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [33:13, 31:22] ( 3 warnings 1052 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:45, 05:23](908 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:02] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:29, 06:01](1040 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:28, 05:55](1036 MB) +PASS -- TEST 'conus13km_debug_intel' [19:59, 17:31](1153 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [19:59, 17:42](864 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:53, 10:11](1098 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:54, 17:37](1217 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 05:04] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:28, 06:08](1082 MB) + +PASS -- COMPILE 'hafsw_intel' [41:14, 39:47] ( 1 warnings 1434 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:28, 06:59](693 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:38, 06:02](1084 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:40, 08:54](755 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:31, 15:43](785 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:45, 19:00](803 MB) +PASS -- TEST 'gnv1_nested_intel' [08:42, 05:57](1670 MB) + +PASS -- COMPILE 'hafs_all_intel' [38:14, 36:29] ( 1280 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:19, 08:22](748 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:19, 08:29](736 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:21] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:23, 03:33](1076 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:24, 02:09](1051 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:23, 03:31](935 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:23, 03:30](937 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:22, 03:30](931 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:23, 03:32](1073 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:22, 03:16](1067 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:23, 03:26](927 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:17, 07:34](893 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:15, 07:33](848 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:20, 03:32](1060 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:23, 04:58](2377 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:23, 05:13](2438 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:29] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:21, 08:04](1027 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:11] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:14](1058 MB) PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:47] ( 68 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:33, 01:17](242 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:30, 01:04](264 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:39](260 MB) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:31, 01:16](239 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:27, 01:05](283 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:40](258 MB) -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [39:13, 37:09] ( 1023 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:10, 04:45](1913 MB) +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [38:14, 36:17] ( 1023 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:03, 04:45](1914 MB) -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [38:13, 36:29] ( 1 warnings 1028 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [13:06, 10:25](1909 MB) +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [37:13, 35:48] ( 1 warnings 1028 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [13:08, 10:24](1915 MB) -PASS -- COMPILE 'atml_intel' [40:14, 38:10] ( 8 warnings 1173 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:13, 05:50](1855 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:14, 05:44](1853 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:44, 03:14](1072 MB) +PASS -- COMPILE 'atml_intel' [39:14, 37:42] ( 8 warnings 1173 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:03, 05:43](1847 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:03, 05:41](1857 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:42, 03:11](1063 MB) -PASS -- COMPILE 'atml_debug_intel' [08:11, 06:13] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:07, 07:15](1890 MB) +PASS -- COMPILE 'atml_debug_intel' [08:10, 06:13] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:07, 07:16](1887 MB) -PASS -- COMPILE 'atmw_intel' [39:13, 37:21] ( 1276 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:55, 02:28](1861 MB) +PASS -- COMPILE 'atmw_intel' [39:13, 37:48] ( 1276 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:56, 02:27](1852 MB) -PASS -- COMPILE 'atmaero_intel' [38:14, 36:40] ( 1106 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:59, 05:16](1933 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:59, 06:21](1699 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:49, 06:26](1713 MB) +PASS -- COMPILE 'atmaero_intel' [37:13, 36:04] ( 1106 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:57, 05:12](1935 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:00, 06:16](1707 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:52, 06:21](1719 MB) -PASS -- COMPILE 'atm_fbh_intel' [34:14, 31:47] ( 3 warnings 1003 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:36, 15:17](1057 MB) +PASS -- COMPILE 'atm_fbh_intel' [33:13, 31:13] ( 3 warnings 1003 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:37, 15:11](1050 MB) SYNOPSIS: -Starting Date/Time: 20241122 04:48:32 -Ending Date/Time: 20241122 09:11:56 -Total Time: 04h:23m:55s +Starting Date/Time: 20241128 23:15:31 +Ending Date/Time: 20241129 03:38:49 +Total Time: 04h:23m:53s Compiles Completed: 37/37 -Tests Completed: 165/166 -Failed Tests: -* TEST control_c48_lnd_iau_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /mnt/lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2482/ufs-weather-model/tests/logs/log_jet/run_control_c48_lnd_iau_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 JET REGRESSION TESTING LOG==== -====START OF JET REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -946b7e2833191ab36966b64cff0f15aaddf6ea03 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) - 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) - 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 915e44e963b804684b872c5545feb9416e742f72 FV3 (remotes/origin/rrfsv1-to-ufs/dev3) - e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) - b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 9dffb7e1cd5fceebec065299c791e65e3a30e0c2 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5516-g9dffb7e1) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) --179cae1dd84401cf25d250bd9102e66560a9d328 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) - 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) - 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20241121 -COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2592504 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: h-nems -* (-n) - RUN SINGLE TEST: control_c48_lnd_iau -* (-e) - USE ECFLOW - -PASS -- COMPILE 'atm_dyn32_intel' [42:14, 39:25] ( 1 warnings 1124 remarks ) -PASS -- TEST 'control_c48_lnd_iau_intel' [20:57, 18:04](1706 MB) - -SYNOPSIS: -Starting Date/Time: 20241122 18:05:01 -Ending Date/Time: 20241122 19:09:32 -Total Time: 01h:04m:48s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 166/166 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index b4c6aa7399..9eef8da0bb 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,20 +1,20 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -946b7e2833191ab36966b64cff0f15aaddf6ea03 +e4d3bebab002b60b5af711bfcbbda2307d0925bb 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) + cf01f337a0162dc05889288e19bc9c4811ace762 CICE-interface/CICE (remotes/origin/sync_cice_2024-11) + 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 915e44e963b804684b872c5545feb9416e742f72 FV3 (remotes/origin/rrfsv1-to-ufs/dev3) + b769849792dbe799dc1a2e29942864f880ee8445 FV3 (heads/develop) e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 9dffb7e1cd5fceebec065299c791e65e3a30e0c2 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5516-g9dffb7e1) + 6e0467ad07a2231d298dc3be91a923c934354a7f FV3/ccpp/physics (EP4-1071-g6e0467ad) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -38,299 +38,298 @@ 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-20241121 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3922978 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241127 +COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2197722 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, 17:56] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [30:44, 27:42](2081 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 21:05] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [25:50, 22:15](1948 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:21, 23:27](2132 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:14, 08:57](1238 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:54, 26:19](1862 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:11, 21:45] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [23:44, 21:59](1934 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:10, 08:48] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [34:44, 30:32](1926 MB) - -PASS -- COMPILE 's2swa_intel' [19:11, 17:38] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [34:48, 27:45](2141 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [33:45, 27:27](2134 MB) -PASS -- TEST 'cpld_restart_p8_intel' [18:48, 14:32](1808 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [34:48, 28:10](2161 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [18:48, 14:31](1699 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [31:52, 25:28](2441 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [30:39, 27:51](2127 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [26:34, 23:37](2038 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [30:42, 27:29](2142 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [22:43, 16:10](2717 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:20, 08:58](2705 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [30:08, 20:45](3700 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:49, 11:35](3512 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:27, 08:08](2074 MB) - -PASS -- COMPILE 's2sw_intel' [18:11, 16:57] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [30:04, 27:27](1962 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:20, 12:06](2044 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:10, 08:23] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [26:18, 22:15](2166 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:10, 07:55] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [15:09, 10:10](1997 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:11, 14:23] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:13, 04:54](2019 MB) - -PASS -- COMPILE 's2s_intel' [16:11, 14:41] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [11:54, 08:36](3032 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [06:54, 03:02](3018 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:58, 02:01](2466 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:13, 17:18] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [32:31, 28:35](2151 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 18:17] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [32:09, 29:28](2000 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [28:30, 14:45](1242 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [47:14, 33:58](1928 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:11, 08:13] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [39:27, 34:41](1966 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [17:12, 14:15] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [07:26, 03:51](678 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:43, 03:35](1572 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:46, 03:42](1575 MB) -PASS -- TEST 'control_latlon_intel' [05:51, 03:34](1572 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:04, 03:35](1571 MB) -PASS -- TEST 'control_c48_intel' [16:48, 14:45](1700 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:35, 08:12](834 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [16:49, 14:45](1704 MB) -PASS -- TEST 'control_c192_intel' [15:59, 13:15](1743 MB) -PASS -- TEST 'control_c384_intel' [19:58, 16:43](1992 MB) -PASS -- TEST 'control_c384gdas_intel' [13:35, 09:57](1333 MB) -PASS -- TEST 'control_stochy_intel' [03:25, 01:50](644 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:39, 01:07](473 MB) -PASS -- TEST 'control_lndp_intel' [03:22, 01:44](643 MB) -PASS -- TEST 'control_iovr4_intel' [04:23, 02:48](637 MB) -PASS -- TEST 'control_iovr5_intel' [04:27, 02:43](636 MB) -PASS -- TEST 'control_p8_intel' [07:02, 04:13](1870 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:11, 03:37](1876 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:22, 04:08](1861 MB) -PASS -- TEST 'control_restart_p8_intel' [07:23, 02:24](1094 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:13, 04:09](1862 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:33, 02:24](1135 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:11, 04:14](1855 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:15, 04:30](1942 MB) -PASS -- TEST 'control_p8_lndp_intel' [13:41, 07:28](1865 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [12:23, 04:57](1940 MB) -PASS -- TEST 'control_p8_mynn_intel' [10:20, 03:32](1886 MB) -PASS -- TEST 'merra2_thompson_intel' [10:38, 03:55](1886 MB) -PASS -- TEST 'regional_control_intel' [13:51, 06:39](1110 MB) -PASS -- TEST 'regional_restart_intel' [14:42, 03:41](1084 MB) -PASS -- TEST 'regional_decomp_intel' [13:30, 07:03](1100 MB) -PASS -- TEST 'regional_2threads_intel' [11:36, 04:57](1094 MB) -PASS -- TEST 'regional_noquilt_intel' [12:40, 06:33](1412 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [11:49, 06:47](1104 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [11:37, 06:41](1106 MB) -PASS -- TEST 'regional_wofs_intel' [12:46, 08:10](1891 MB) - -PASS -- COMPILE 'rrfs_intel' [16:12, 13:11] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [11:08, 08:32](1056 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:02, 05:19](1265 MB) -PASS -- TEST 'rap_decomp_intel' [11:08, 08:49](1020 MB) -PASS -- TEST 'rap_2threads_intel' [11:08, 08:39](1164 MB) -PASS -- TEST 'rap_restart_intel' [08:42, 04:27](1042 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:07, 08:23](1060 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:07, 08:46](1016 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:51, 06:19](1079 MB) -PASS -- TEST 'hrrr_control_intel' [09:07, 04:23](1022 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [09:06, 04:27](1014 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [08:25, 04:13](1079 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:40, 02:25](941 MB) -PASS -- TEST 'rrfs_v1beta_intel' [13:18, 08:20](1048 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:27, 09:56](1979 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:32, 09:39](2011 MB) - -PASS -- COMPILE 'csawmg_intel' [14:12, 12:30] -PASS -- TEST 'control_csawmg_intel' [08:35, 06:39](1014 MB) -PASS -- TEST 'control_ras_intel' [05:20, 03:30](714 MB) - -PASS -- COMPILE 'wam_intel' [14:12, 13:04] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [28:50, 13:28](1649 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:12, 12:59] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [19:47, 03:25](1878 MB) -PASS -- TEST 'regional_control_faster_intel' [10:38, 06:21](1103 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [12:13, 09:42] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [17:45, 02:28](1605 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [17:48, 02:19](1602 MB) -PASS -- TEST 'control_stochy_debug_intel' [17:30, 03:06](816 MB) -PASS -- TEST 'control_lndp_debug_intel' [17:25, 02:51](812 MB) -PASS -- TEST 'control_csawmg_debug_intel' [19:35, 05:03](1123 MB) -PASS -- TEST 'control_ras_debug_intel' [17:28, 02:51](821 MB) -PASS -- TEST 'control_diag_debug_intel' [15:59, 02:53](1671 MB) -PASS -- TEST 'control_debug_p8_intel' [20:52, 02:55](1896 MB) -PASS -- TEST 'regional_debug_intel' [34:50, 18:00](1097 MB) -PASS -- TEST 'rap_control_debug_intel' [22:27, 05:17](1203 MB) -PASS -- TEST 'hrrr_control_debug_intel' [21:27, 05:04](1197 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [21:23, 05:04](1198 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [21:23, 05:17](1201 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [26:30, 05:02](1197 MB) -PASS -- TEST 'rap_diag_debug_intel' [26:35, 05:11](1280 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [25:26, 05:04](1206 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [24:24, 05:05](1204 MB) -PASS -- TEST 'rap_lndp_debug_intel' [23:25, 05:08](1201 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [23:27, 05:00](1196 MB) -PASS -- TEST 'rap_noah_debug_intel' [22:25, 05:07](1192 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [46:31, 04:59](1205 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [47:32, 08:10](1201 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [44:34, 04:49](1200 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [43:33, 05:02](1210 MB) -PASS -- TEST 'rap_flake_debug_intel' [42:33, 05:00](1204 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [44:31, 08:38](1207 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:11, 06:43] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:43, 13:08](1675 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 12:46] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [39:32, 05:03](1147 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [42:20, 07:15](1000 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [39:47, 03:55](920 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:16, 07:29](1083 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [39:17, 03:43](940 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [38:36, 03:58](893 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:04, 05:25](969 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:46, 02:05](869 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 13:01] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [36:11, 02:34](1166 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:44, 01:15](1107 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:51, 01:30](1064 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:12, 12:39] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [37:58, 04:35](964 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 06:21] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [34:26, 04:47](1082 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [32:26, 04:47](1077 MB) -PASS -- TEST 'conus13km_debug_intel' [40:54, 13:25](1232 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [40:47, 13:48](936 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [34:45, 08:03](1166 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [41:47, 17:06](1286 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:11, 06:58] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [30:29, 05:04](1125 MB) - -PASS -- COMPILE 'hafsw_intel' [17:14, 15:32] ( 1 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [29:20, 06:13](734 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [29:31, 06:52](1129 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [33:33, 07:46](818 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [54:43, 28:42](846 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [57:35, 35:07](868 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [33:07, 07:12](498 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [31:33, 08:39](507 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [18:59, 03:34](378 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:32, 09:50](480 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:54, 04:53](525 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:59, 04:32](529 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:59, 05:50](570 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:31, 01:36](398 MB) -PASS -- TEST 'gnv1_nested_intel' [08:23, 04:22](1714 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:11, 07:17] ( 1462 warnings 1490 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:51, 13:33](576 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [18:13, 15:45] ( 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:16, 15:03](657 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:07, 15:14](721 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [18:13, 15:47] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:41, 11:10](669 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:14, 14:21] ( 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:15, 07:42](812 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:17, 07:36](799 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:58, 16:20](1201 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:11, 07:27] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:58](1153 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:59](1108 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:20, 02:50](1023 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:20, 02:54](1015 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:53](1017 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:19, 02:58](1160 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 02:58](1150 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:51](1021 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:10, 06:35](1014 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:19, 06:28](1002 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:59](1160 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 04:21](2386 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 04:29](2454 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 05:00] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:21, 06:36](1068 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:12, 08:42] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 03:01](1155 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:18] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:33, 01:03](256 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:55](323 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:39](321 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:35] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:31, 00:37](557 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:31, 00:23](448 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:11, 14:01] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:08, 04:09](1965 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:11, 13:36] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:03, 08:37](1973 MB) - -PASS -- COMPILE 'atml_intel' [16:11, 14:16] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:38, 04:57](1860 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:30, 04:59](1857 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:56, 02:56](1063 MB) - -PASS -- COMPILE 'atml_debug_intel' [09:12, 07:56] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:22, 05:56](1899 MB) - -PASS -- COMPILE 'atmw_intel' [15:12, 13:46] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:32, 02:18](1906 MB) - -PASS -- COMPILE 'atmaero_intel' [15:11, 13:33] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:12, 04:52](1957 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:11, 05:25](1747 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:00, 05:28](1766 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [10:10, 06:28] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [25:03, 21:44](4492 MB) - -PASS -- COMPILE 'atm_fbh_intel' [16:13, 12:27] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:30, 13:50](1110 MB) - -PASS -- COMPILE 'hafsw_intelllvm' [10:13, 07:54] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [11:03, 08:14](573 MB) - -PASS -- COMPILE 'hafsw_debug_intelllvm' [07:12, 04:52] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [21:50, 19:54](562 MB) +PASS -- COMPILE 's2swa_32bit_intel' [19:10, 17:37] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [34:39, 27:38](2083 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 19:52] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [37:54, 21:54](1956 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:19, 23:04](2120 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:17, 08:53](1218 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [41:54, 26:00](1878 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 19:29] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [35:52, 21:28](1951 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 08:07] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [33:51, 30:23](1930 MB) + +PASS -- COMPILE 's2swa_intel' [18:11, 16:57] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [35:34, 27:52](2138 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [35:42, 27:32](2137 MB) +PASS -- TEST 'cpld_restart_p8_intel' [18:45, 14:25](1808 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [36:45, 28:04](2157 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [17:34, 14:32](1699 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [33:30, 25:06](2433 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [35:34, 27:27](2140 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [31:31, 23:13](2037 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [35:42, 27:24](2141 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:24, 16:09](2716 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [17:18, 09:05](2709 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [31:53, 20:07](3705 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:57, 11:03](3503 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [16:28, 07:58](2073 MB) + +PASS -- COMPILE 's2sw_intel' [17:10, 15:40] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [32:00, 27:16](1968 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:15, 11:48](2048 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:11, 08:07] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [24:36, 22:10](2168 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:11, 07:55] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:16, 10:17](1997 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:10, 15:17] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:12, 04:49](2016 MB) + +PASS -- COMPILE 's2s_intel' [16:10, 14:17] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:53, 08:38](3029 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:53, 02:58](3018 MB) +PASS -- TEST 'cpld_restart_c48_intel' [17:09, 01:55](2475 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:10, 17:47] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [36:46, 28:14](2142 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:11, 20:50] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [37:27, 29:03](2013 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:26, 14:21](1262 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [36:12, 33:24](1919 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:10, 08:13] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:11, 34:47](1966 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:10, 14:27] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [10:26, 03:42](686 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [11:48, 03:32](1573 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [11:53, 03:46](1579 MB) +PASS -- TEST 'control_latlon_intel' [11:45, 03:35](1571 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [11:55, 03:36](1566 MB) +PASS -- TEST 'control_c48_intel' [22:57, 14:58](1710 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [15:36, 08:08](835 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [22:56, 14:47](1707 MB) +PASS -- TEST 'control_c192_intel' [21:01, 13:07](1743 MB) +PASS -- TEST 'control_c384_intel' [25:58, 16:44](1987 MB) +PASS -- TEST 'control_c384gdas_intel' [18:35, 09:54](1329 MB) +PASS -- TEST 'control_stochy_intel' [08:24, 01:49](641 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:37, 01:04](477 MB) +PASS -- TEST 'control_lndp_intel' [06:22, 01:44](644 MB) +PASS -- TEST 'control_iovr4_intel' [07:23, 02:43](640 MB) +PASS -- TEST 'control_iovr5_intel' [06:21, 02:42](634 MB) +PASS -- TEST 'control_p8_intel' [08:10, 04:09](1868 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:11, 03:32](1876 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:25, 04:02](1868 MB) +PASS -- TEST 'control_restart_p8_intel' [05:07, 02:18](1093 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:20, 04:03](1867 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:41, 02:16](1104 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:21, 04:10](1859 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:17, 04:19](1941 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:48, 07:20](1870 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:24, 04:56](1933 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:21, 03:29](1887 MB) +PASS -- TEST 'merra2_thompson_intel' [06:35, 03:55](1874 MB) +PASS -- TEST 'regional_control_intel' [08:40, 06:35](1119 MB) +PASS -- TEST 'regional_restart_intel' [05:40, 03:34](1087 MB) +PASS -- TEST 'regional_decomp_intel' [08:35, 06:48](1102 MB) +PASS -- TEST 'regional_2threads_intel' [06:38, 04:40](1083 MB) +PASS -- TEST 'regional_noquilt_intel' [08:39, 06:25](1409 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:37, 06:33](1111 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [10:46, 06:28](1112 MB) +PASS -- TEST 'regional_wofs_intel' [12:37, 07:58](1894 MB) + +PASS -- COMPILE 'rrfs_intel' [16:10, 13:43] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:25, 08:28](1063 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:56, 05:13](1264 MB) +PASS -- TEST 'rap_decomp_intel' [12:05, 08:45](1017 MB) +PASS -- TEST 'rap_2threads_intel' [12:05, 08:38](1166 MB) +PASS -- TEST 'rap_restart_intel' [07:29, 04:22](1035 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:21, 08:23](1054 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:10, 08:42](1016 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:39, 06:17](1073 MB) +PASS -- TEST 'hrrr_control_intel' [07:14, 04:21](1020 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:54, 04:26](1013 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:54, 04:19](1079 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:27, 02:20](951 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:19, 08:20](1044 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:23, 09:56](1976 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:22, 09:31](2010 MB) + +PASS -- COMPILE 'csawmg_intel' [16:10, 13:11] +PASS -- TEST 'control_csawmg_intel' [08:42, 06:35](1017 MB) +PASS -- TEST 'control_ras_intel' [05:27, 03:30](714 MB) + +PASS -- COMPILE 'wam_intel' [15:10, 12:45] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:48, 12:47](1644 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [20:10, 13:45] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:21, 03:19](1880 MB) +PASS -- TEST 'regional_control_faster_intel' [08:34, 06:18](1104 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [17:11, 10:53] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:40, 02:19](1603 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:41, 02:15](1596 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:27, 03:07](812 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:23, 02:43](819 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:43, 04:22](1125 MB) +PASS -- TEST 'control_ras_debug_intel' [04:23, 02:44](821 MB) +PASS -- TEST 'control_diag_debug_intel' [04:44, 02:44](1674 MB) +PASS -- TEST 'control_debug_p8_intel' [04:44, 02:46](1895 MB) +PASS -- TEST 'regional_debug_intel' [19:39, 17:08](1095 MB) +PASS -- TEST 'rap_control_debug_intel' [06:22, 04:53](1197 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:23, 04:57](1202 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:20, 04:55](1196 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:20, 04:57](1204 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:20, 04:59](1197 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:37, 05:11](1272 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:26, 04:58](1198 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:27, 05:07](1194 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:26, 05:03](1201 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:25, 05:00](1201 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:24, 04:55](1195 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 04:53](1205 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:21, 07:57](1201 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:21, 05:01](1198 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:25, 05:03](1197 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:26, 04:54](1198 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:27, 08:32](1211 MB) + +PASS -- COMPILE 'wam_debug_intel' [11:10, 07:19] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:42, 13:13](1674 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [23:11, 13:22] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:54, 04:58](1135 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:11, 07:11](989 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:40, 03:48](920 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:09, 07:27](1082 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:20, 03:42](939 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:01, 03:55](896 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:21, 05:24](980 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:35, 02:01](864 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [20:11, 13:24] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:52, 02:34](1159 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:44, 01:10](1109 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:29](1068 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [18:11, 13:31] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:40, 04:34](967 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:10, 06:37] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:20, 04:53](1081 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:20, 04:39](1076 MB) +PASS -- TEST 'conus13km_debug_intel' [16:50, 14:03](1231 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:49, 15:06](918 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:40, 07:53](1166 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:39, 13:48](1293 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:11, 06:34] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:23, 04:54](1132 MB) + +PASS -- COMPILE 'hafsw_intel' [18:10, 15:56] ( 1 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:16, 05:52](738 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:34, 06:18](1128 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:27, 07:26](814 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [31:18, 27:52](841 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [37:30, 34:05](871 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:05, 07:08](500 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:26, 08:25](513 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:54, 03:29](373 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:22, 09:33](487 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:52, 04:41](524 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:48, 04:25](523 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:50, 05:40](574 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:30, 01:33](400 MB) +PASS -- TEST 'gnv1_nested_intel' [08:13, 04:17](1718 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:10, 07:32] ( 1462 warnings 1490 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:04, 13:13](580 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [23:11, 15:28] ( 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:58, 15:13](631 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:01, 14:55](718 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [20:11, 16:32] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:17, 11:10](704 MB) + +PASS -- COMPILE 'hafs_all_intel' [21:10, 14:51] ( 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:17, 07:27](812 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:14, 07:28](794 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:56, 16:19](1199 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [14:11, 10:32] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 02:58](1158 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:55](1113 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:50](1018 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:55](1013 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:51](1021 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 03:00](1145 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:16, 02:59](1154 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:16, 02:51](1025 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:09, 06:32](1019 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:13, 06:26](1003 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:58](1157 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:18, 04:19](2377 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 04:19](2396 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:11, 05:56] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 06:27](1075 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:10, 11:20] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:59](1152 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:10, 01:45] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:30, 01:02](254 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:55](320 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:36](322 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:40] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:29, 00:36](565 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:34, 00:22](445 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:11, 14:31] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:11, 04:06](1967 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:10, 14:27] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:00, 08:33](1970 MB) + +PASS -- COMPILE 'atml_intel' [16:11, 14:52] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:25, 04:51](1863 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:24, 04:53](1857 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:53, 02:43](1072 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:11, 07:29] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:30, 05:48](1895 MB) + +PASS -- COMPILE 'atmw_intel' [15:11, 13:38] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:21, 02:19](1906 MB) + +PASS -- COMPILE 'atmaero_intel' [17:11, 15:08] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:08, 04:35](1971 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:11, 05:29](1748 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:02, 05:32](1762 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:11, 06:39] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [24:59, 20:34](4488 MB) + +PASS -- COMPILE 'atm_fbh_intel' [15:11, 13:09] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:28, 14:03](1099 MB) + +PASS -- COMPILE 'hafsw_intelllvm' [10:11, 08:29] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [10:05, 07:54](573 MB) + +PASS -- COMPILE 'hafsw_debug_intelllvm' [06:11, 04:48] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [21:58, 19:18](612 MB) SYNOPSIS: -Starting Date/Time: 20241122 09:01:14 -Ending Date/Time: 20241122 11:36:28 -Total Time: 02h:36m:01s +Starting Date/Time: 20241201 07:55:37 +Ending Date/Time: 20241201 09:52:58 +Total Time: 01h:57m:52s Compiles Completed: 45/45 Tests Completed: 191/191 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index a53c306b3d..6e8ba124e6 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,20 +1,20 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -946b7e2833191ab36966b64cff0f15aaddf6ea03 +e4d3bebab002b60b5af711bfcbbda2307d0925bb 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) + cf01f337a0162dc05889288e19bc9c4811ace762 CICE-interface/CICE (remotes/origin/sync_cice_2024-11) + 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 915e44e963b804684b872c5545feb9416e742f72 FV3 (remotes/origin/rrfsv1-to-ufs/dev3) + b769849792dbe799dc1a2e29942864f880ee8445 FV3 (heads/develop) e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 9dffb7e1cd5fceebec065299c791e65e3a30e0c2 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5516-g9dffb7e1) + 6e0467ad07a2231d298dc3be91a923c934354a7f FV3/ccpp/physics (EP4-1071-g6e0467ad) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -38,240 +38,240 @@ 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-20241121 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_232721 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241127 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_5201 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:28, 11:17] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:34, 03:12](3085 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:28, 12:09] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [14:34, 02:59](1820 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [55:12, 02:59](1855 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [54:48, 02:55](963 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [14:35, 03:35](1789 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:28, 11:59] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [14:33, 02:12](1816 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:18] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [20:45, 03:22](1832 MB) - -PASS -- COMPILE 's2swa_intel' [13:27, 11:35] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [14:34, 02:28](3121 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:34, 03:10](3114 MB) -PASS -- TEST 'cpld_restart_p8_intel' [56:51, 03:26](3042 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [14:34, 02:38](3137 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [56:52, 02:14](3064 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [14:34, 02:57](3356 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:34, 02:06](3110 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:35, 02:34](3060 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:34, 03:13](3116 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [14:43, 06:43](4114 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [45:50, 05:47](4256 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [14:34, 02:56](3095 MB) - -PASS -- COMPILE 's2sw_intel' [12:26, 10:46] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:31, 02:07](1816 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:31, 02:48](1885 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:25, 10:22] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [15:38, 02:57](1873 MB) - -PASS -- COMPILE 's2s_intel' [12:26, 10:22] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [15:30, 01:52](2862 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [15:30, 01:36](2871 MB) -PASS -- TEST 'cpld_restart_c48_intel' [11:07, 02:09](2281 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:36, 16:13] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:28, 03:20](3123 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:28, 11:40] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:34, 02:28](1821 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [45:35, 02:02](1004 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [45:34, 01:53](1800 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:21, 05:14] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [13:23, 02:31](1853 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:43] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [02:50, 02:20](564 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [00:18, 02:11](1465 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [00:13, 02:04](1461 MB) -PASS -- TEST 'control_latlon_intel' [59:47, 01:57](1470 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [59:43, 02:11](1467 MB) -PASS -- TEST 'control_c48_intel' [59:37, 02:17](1568 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [59:36, 01:48](690 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [59:36, 02:21](1571 MB) -PASS -- TEST 'control_c192_intel' [59:36, 01:57](1586 MB) -PASS -- TEST 'control_c384_intel' [59:26, 03:13](1886 MB) -PASS -- TEST 'control_c384gdas_intel' [59:20, 03:39](1067 MB) -PASS -- TEST 'control_stochy_intel' [58:22, 01:24](522 MB) -PASS -- TEST 'control_stochy_restart_intel' [54:23, 01:56](330 MB) -PASS -- TEST 'control_lndp_intel' [57:40, 01:26](520 MB) -PASS -- TEST 'control_iovr4_intel' [57:39, 01:47](520 MB) -PASS -- TEST 'control_iovr5_intel' [57:34, 01:47](516 MB) -PASS -- TEST 'control_p8_intel' [56:26, 02:20](1750 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [56:22, 03:03](1753 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [56:15, 02:39](1749 MB) -PASS -- TEST 'control_restart_p8_intel' [49:50, 02:41](914 MB) -PASS -- TEST 'control_noqr_p8_intel' [56:15, 02:16](1761 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [49:49, 02:46](923 MB) -PASS -- TEST 'control_decomp_p8_intel' [56:13, 02:08](1746 MB) -PASS -- TEST 'control_2threads_p8_intel' [54:20, 02:29](1842 MB) -PASS -- TEST 'control_p8_lndp_intel' [54:14, 01:53](1764 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [54:04, 02:44](1808 MB) -PASS -- TEST 'control_p8_mynn_intel' [53:47, 02:55](1773 MB) -PASS -- TEST 'merra2_thompson_intel' [53:00, 02:24](1758 MB) -PASS -- TEST 'regional_control_intel' [52:57, 01:56](873 MB) -PASS -- TEST 'regional_restart_intel' [45:11, 01:24](853 MB) -PASS -- TEST 'regional_decomp_intel' [52:22, 01:40](856 MB) -PASS -- TEST 'regional_2threads_intel' [51:58, 01:39](928 MB) -PASS -- TEST 'regional_noquilt_intel' [51:45, 02:11](1200 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [51:12, 02:10](874 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [50:47, 02:11](877 MB) -PASS -- TEST 'regional_wofs_intel' [49:49, 01:19](1565 MB) - -PASS -- COMPILE 'rrfs_intel' [11:24, 09:11] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [49:37, 02:56](903 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [49:29, 01:53](1058 MB) -PASS -- TEST 'rap_decomp_intel' [48:52, 02:08](906 MB) -PASS -- TEST 'rap_2threads_intel' [47:47, 02:03](989 MB) -PASS -- TEST 'rap_restart_intel' [38:58, 03:14](778 MB) -PASS -- TEST 'rap_sfcdiff_intel' [47:12, 02:57](900 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [46:43, 02:14](899 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [36:43, 02:32](778 MB) -PASS -- TEST 'hrrr_control_intel' [46:32, 02:08](901 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [46:30, 02:01](900 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [46:30, 02:29](975 MB) -PASS -- TEST 'hrrr_control_restart_intel' [40:13, 01:59](733 MB) -PASS -- TEST 'rrfs_v1beta_intel' [46:20, 02:59](897 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [45:43, 01:31](1852 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [45:26, 01:53](1843 MB) - -PASS -- COMPILE 'csawmg_intel' [10:24, 08:21] -PASS -- TEST 'control_csawmg_intel' [05:00, 01:21](855 MB) -PASS -- TEST 'control_ras_intel' [45:23, 01:52](551 MB) - -PASS -- COMPILE 'wam_intel' [10:24, 08:14] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [45:00, 01:25](1547 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:24, 08:26] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [44:35, 02:58](1753 MB) -PASS -- TEST 'regional_control_faster_intel' [44:30, 01:17](869 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 07:39] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:10, 01:40](1493 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:10, 01:46](1492 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:10, 01:43](695 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:10, 02:03](695 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:10, 01:24](999 MB) -PASS -- TEST 'control_ras_debug_intel' [05:10, 02:00](703 MB) -PASS -- TEST 'control_diag_debug_intel' [05:10, 02:12](1556 MB) -PASS -- TEST 'control_debug_p8_intel' [05:10, 02:15](1789 MB) -PASS -- TEST 'regional_debug_intel' [05:09, 01:19](882 MB) -PASS -- TEST 'rap_control_debug_intel' [05:10, 01:38](1078 MB) -PASS -- TEST 'hrrr_control_debug_intel' [43:58, 01:45](1070 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [43:54, 01:38](1075 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [43:54, 01:35](1078 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [43:25, 01:42](1078 MB) -PASS -- TEST 'rap_diag_debug_intel' [43:21, 01:33](1157 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [42:57, 01:29](1077 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [42:10, 01:27](1078 MB) -PASS -- TEST 'rap_lndp_debug_intel' [41:02, 01:43](1077 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [40:52, 01:37](1075 MB) -PASS -- TEST 'rap_noah_debug_intel' [40:25, 01:42](1070 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [40:24, 01:36](1075 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [40:13, 01:28](1072 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [40:13, 02:34](1069 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [39:51, 02:34](1073 MB) -PASS -- TEST 'rap_flake_debug_intel' [38:46, 02:34](1078 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [38:37, 02:50](1078 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:20, 04:26] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [08:14, 02:04](1572 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 08:07] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [37:56, 02:06](935 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [37:40, 02:50](777 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [36:34, 03:25](777 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [36:19, 01:56](840 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [36:19, 03:19](825 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [36:18, 03:47](776 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [28:22, 02:32](683 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [29:29, 02:19](663 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:23, 08:13] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [35:53, 01:59](988 MB) -PASS -- TEST 'conus13km_2threads_intel' [30:49, 01:52](989 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [30:40, 01:41](863 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:24, 08:15] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [35:46, 02:17](804 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:44] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [35:42, 01:53](954 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [35:38, 01:59](953 MB) -PASS -- TEST 'conus13km_debug_intel' [35:17, 01:35](1041 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [34:37, 01:32](710 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [34:33, 01:40](1043 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [33:59, 01:30](1108 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 04:29] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [33:40, 01:47](981 MB) - -PASS -- COMPILE 'hafsw_intel' [11:31, 10:01] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [33:18, 03:00](596 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [33:16, 01:37](958 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [32:55, 02:37](647 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [32:54, 02:43](669 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [31:40, 02:49](690 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [31:25, 02:08](379 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [31:15, 03:11](389 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [30:52, 02:29](454 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [30:15, 03:16](370 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [29:36, 02:21](402 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [29:35, 02:02](401 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [29:32, 02:41](472 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [28:52, 02:22](436 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:19, 04:47] ( 1444 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [28:34, 02:19](502 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:26, 09:43] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [28:25, 02:01](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [28:20, 01:59](698 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:26, 09:36] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [28:12, 02:17](706 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:31, 09:16] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [27:55, 02:58](638 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [26:51, 02:59](612 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [26:48, 01:35](878 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:30, 10:07] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [25:59, 01:42](1825 MB) - -PASS -- COMPILE 'atml_intel' [11:31, 09:38] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [07:24, 05:26] ( 866 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [10:27, 08:42] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [25:58, 02:20](3015 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [24:55, 02:56](2894 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [24:47, 02:42](2900 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:22, 04:22] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [24:16, 03:07](4371 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:29, 11:19] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [21:46, 02:25](3091 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:27, 12:06] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:48, 02:45](1817 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [03:42, 02:45](1852 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [00:50, 03:17](976 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:49, 03:15](1790 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:26, 11:46] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [22:49, 02:11](1799 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:21, 05:13] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:54, 03:13](1836 MB) + +PASS -- COMPILE 's2swa_intel' [14:27, 11:40] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [21:48, 02:42](3118 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [21:48, 03:01](3111 MB) +PASS -- TEST 'cpld_restart_p8_intel' [04:17, 02:50](3046 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [21:48, 02:39](3137 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [04:17, 02:41](3064 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [21:48, 02:56](3359 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [21:48, 02:54](3101 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [21:49, 02:35](3058 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [21:48, 03:02](3119 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [21:57, 04:24](4105 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [40:44, 04:52](4250 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [21:48, 02:46](3095 MB) + +PASS -- COMPILE 's2sw_intel' [14:29, 10:56] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [21:46, 02:31](1826 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [21:46, 02:36](1888 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:27, 10:03] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [22:48, 02:58](1888 MB) + +PASS -- COMPILE 's2s_intel' [13:26, 10:14] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [22:47, 01:46](2863 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [22:47, 02:29](2872 MB) +PASS -- TEST 'cpld_restart_c48_intel' [17:49, 01:53](2282 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:33, 16:19] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:42, 02:39](3126 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [14:29, 11:09] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:46, 02:06](1831 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [53:04, 02:12](1004 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [49:03, 01:49](1807 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:24, 05:07] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [20:30, 01:56](1845 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:24, 09:30] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [10:31, 02:04](569 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [10:27, 02:06](1468 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:45, 02:03](1470 MB) +PASS -- TEST 'control_latlon_intel' [07:14, 02:09](1469 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:08, 02:23](1466 MB) +PASS -- TEST 'control_c48_intel' [06:13, 02:18](1567 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [05:10, 02:26](691 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [04:51, 02:08](1565 MB) +PASS -- TEST 'control_c192_intel' [04:17, 01:41](1588 MB) +PASS -- TEST 'control_c384_intel' [04:03, 02:07](1889 MB) +PASS -- TEST 'control_c384gdas_intel' [03:56, 03:17](1063 MB) +PASS -- TEST 'control_stochy_intel' [00:48, 01:34](523 MB) +PASS -- TEST 'control_stochy_restart_intel' [43:03, 01:59](326 MB) +PASS -- TEST 'control_lndp_intel' [00:36, 01:45](520 MB) +PASS -- TEST 'control_iovr4_intel' [00:10, 01:25](518 MB) +PASS -- TEST 'control_iovr5_intel' [00:10, 01:24](518 MB) +PASS -- TEST 'control_p8_intel' [00:05, 02:15](1763 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [59:59, 02:11](1759 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [57:48, 02:58](1756 MB) +PASS -- TEST 'control_restart_p8_intel' [40:19, 02:27](911 MB) +PASS -- TEST 'control_noqr_p8_intel' [56:52, 02:36](1753 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [36:34, 02:01](917 MB) +PASS -- TEST 'control_decomp_p8_intel' [56:29, 02:13](1752 MB) +PASS -- TEST 'control_2threads_p8_intel' [56:29, 02:29](1842 MB) +PASS -- TEST 'control_p8_lndp_intel' [56:24, 02:04](1752 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [56:24, 02:03](1812 MB) +PASS -- TEST 'control_p8_mynn_intel' [56:22, 02:49](1773 MB) +PASS -- TEST 'merra2_thompson_intel' [56:04, 03:04](1764 MB) +PASS -- TEST 'regional_control_intel' [55:36, 02:05](879 MB) +PASS -- TEST 'regional_restart_intel' [35:17, 01:38](854 MB) +PASS -- TEST 'regional_decomp_intel' [55:19, 01:49](875 MB) +PASS -- TEST 'regional_2threads_intel' [54:57, 02:02](929 MB) +PASS -- TEST 'regional_noquilt_intel' [53:17, 01:25](1198 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [47:42, 01:40](869 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [47:30, 01:36](870 MB) +PASS -- TEST 'regional_wofs_intel' [42:55, 02:00](1565 MB) + +PASS -- COMPILE 'rrfs_intel' [10:29, 08:49] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [12:18, 03:00](904 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [12:19, 01:59](1056 MB) +PASS -- TEST 'rap_decomp_intel' [12:18, 02:31](905 MB) +PASS -- TEST 'rap_2threads_intel' [12:18, 02:18](981 MB) +PASS -- TEST 'rap_restart_intel' [42:23, 02:33](780 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:18, 03:04](904 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:18, 02:51](900 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [42:23, 02:58](777 MB) +PASS -- TEST 'hrrr_control_intel' [12:18, 02:31](897 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [12:18, 02:32](900 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [12:19, 02:18](971 MB) +PASS -- TEST 'hrrr_control_restart_intel' [40:11, 01:52](729 MB) +PASS -- TEST 'rrfs_v1beta_intel' [38:15, 02:45](902 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [38:15, 02:01](1852 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [36:59, 02:24](1847 MB) + +PASS -- COMPILE 'csawmg_intel' [10:29, 08:02] +PASS -- TEST 'control_csawmg_intel' [36:55, 01:43](856 MB) +PASS -- TEST 'control_ras_intel' [36:50, 02:12](555 MB) + +PASS -- COMPILE 'wam_intel' [10:29, 08:16] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [36:50, 01:52](1550 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:27, 08:24] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [36:42, 02:18](1761 MB) +PASS -- TEST 'regional_control_faster_intel' [36:37, 01:58](869 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:27, 07:37] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [36:04, 01:34](1491 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [35:49, 01:56](1492 MB) +PASS -- TEST 'control_stochy_debug_intel' [35:25, 01:46](694 MB) +PASS -- TEST 'control_lndp_debug_intel' [35:18, 02:09](697 MB) +PASS -- TEST 'control_csawmg_debug_intel' [35:18, 01:50](998 MB) +PASS -- TEST 'control_ras_debug_intel' [34:13, 01:30](702 MB) +PASS -- TEST 'control_diag_debug_intel' [34:09, 01:57](1545 MB) +PASS -- TEST 'control_debug_p8_intel' [32:44, 01:53](1792 MB) +PASS -- TEST 'regional_debug_intel' [32:41, 02:01](883 MB) +PASS -- TEST 'rap_control_debug_intel' [31:15, 02:15](1076 MB) +PASS -- TEST 'hrrr_control_debug_intel' [30:35, 01:43](1074 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [29:05, 01:42](1078 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [28:22, 01:31](1077 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [27:47, 02:12](1079 MB) +PASS -- TEST 'rap_diag_debug_intel' [27:32, 02:16](1160 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [26:21, 01:41](1080 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [26:02, 01:49](1080 MB) +PASS -- TEST 'rap_lndp_debug_intel' [25:47, 01:56](1079 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [25:25, 02:11](1077 MB) +PASS -- TEST 'rap_noah_debug_intel' [25:12, 01:28](1075 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [24:42, 02:07](1077 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [24:33, 01:23](1069 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [24:13, 02:03](1070 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [24:06, 02:10](1077 MB) +PASS -- TEST 'rap_flake_debug_intel' [23:47, 01:33](1075 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [23:42, 02:42](1077 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:20, 04:23] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:26, 01:26](1580 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:27, 08:02] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [22:45, 02:02](932 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [22:36, 02:46](781 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [22:21, 03:13](777 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [22:07, 02:10](843 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [21:54, 02:49](828 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [21:00, 03:09](788 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:58, 02:17](685 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:29, 02:08](662 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:25, 08:03] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [20:30, 02:01](990 MB) +PASS -- TEST 'conus13km_2threads_intel' [09:22, 02:04](988 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [08:48, 02:12](864 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:31, 08:13] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [19:18, 01:35](807 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:23, 04:28] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [18:58, 01:32](955 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [18:37, 02:00](950 MB) +PASS -- TEST 'conus13km_debug_intel' [18:04, 01:27](1041 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:45, 01:44](714 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [15:29, 01:56](1041 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:46, 01:29](1110 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:27, 04:17] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [14:02, 02:12](979 MB) + +PASS -- COMPILE 'hafsw_intel' [16:34, 09:44] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [13:46, 03:01](595 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:44, 02:24](962 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:28, 02:34](647 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:28, 02:21](668 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [13:13, 02:55](689 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [12:45, 02:49](384 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:59, 02:59](391 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [10:38, 02:15](360 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:28, 03:38](369 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:11, 01:54](406 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:31, 02:24](406 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:32, 02:36](475 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:21, 02:25](315 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [11:26, 04:51] ( 1444 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [07:51, 02:12](501 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:33, 09:37] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [07:15, 02:02](510 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [06:38, 02:40](703 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:33, 09:45] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:25, 02:13](705 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:33, 09:07] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [05:07, 02:38](641 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [04:16, 02:34](615 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [03:51, 02:01](879 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:31, 09:51] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [58:27, 02:37](1825 MB) + +PASS -- COMPILE 'atml_intel' [15:29, 09:33] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [10:24, 05:22] ( 866 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [23:46, 08:30] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [58:11, 02:19](3011 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [56:29, 02:06](2896 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [56:27, 02:00](2902 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [19:44, 04:20] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [56:09, 02:03](4374 MB) SYNOPSIS: -Starting Date/Time: 20241122 13:31:38 -Ending Date/Time: 20241122 15:04:37 -Total Time: 01h:33m:40s +Starting Date/Time: 20241202 17:23:21 +Ending Date/Time: 20241202 19:43:38 +Total Time: 02h:20m:50s Compiles Completed: 33/33 Tests Completed: 157/157 diff --git a/tests/parm/ice_in.IN b/tests/parm/ice_in.IN index 6203e69a89..3afec47ce9 100644 --- a/tests/parm/ice_in.IN +++ b/tests/parm/ice_in.IN @@ -50,6 +50,7 @@ histfreq = 'm','d','h','1','x' histfreq_n = @[CICE_HISTFREQ_N] hist_avg = @[CICE_HIST_AVG] + hist_suffix = @[CICE_hist_suffix] history_dir = '@[CICE_HISTORY_DIR]' history_file = 'iceh' write_ic = .true. diff --git a/tests/test_changes.list b/tests/test_changes.list index b889b4baed..a61cef6dec 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -32,158 +32,22 @@ cpld_control_pdlib_p8 intel cpld_restart_pdlib_p8 intel cpld_mpi_pdlib_p8 intel cpld_debug_pdlib_p8 intel -control_CubedSphereGrid intel -control_CubedSphereGrid_parallel intel -control_latlon intel -control_wrtGauss_netcdf_parallel intel -control_c48 intel -control_c192 intel -control_c384 intel -control_p8 intel -control_p8.v2.sfc intel -control_p8_ugwpv1 intel -control_restart_p8 intel -control_noqr_p8 intel -control_restart_noqr_p8 intel -control_decomp_p8 intel -control_2threads_p8 intel -control_p8_lndp intel -control_p8_rrtmgp intel -control_p8_mynn intel -merra2_thompson intel -regional_control intel -regional_restart intel -regional_decomp intel -regional_2threads intel -regional_noquilt intel -regional_netcdf_parallel intel -regional_2dwrtdecomp intel -rap_control intel -regional_spp_sppt_shum_skeb intel -rap_decomp intel -rap_2threads intel -rap_restart intel -rap_sfcdiff intel -rap_sfcdiff_decomp intel -rap_sfcdiff_restart intel -hrrr_control intel -hrrr_control_decomp intel -hrrr_control_2threads intel -hrrr_control_restart intel -rrfs_v1beta intel -control_wam intel -control_p8_faster intel -regional_control_faster intel -control_CubedSphereGrid_debug intel -control_wrtGauss_netcdf_parallel_debug intel -control_diag_debug intel -control_debug_p8 intel -regional_debug intel -rap_control_debug intel -hrrr_control_debug intel -hrrr_gf_debug intel -hrrr_c3_debug intel -rap_unified_drag_suite_debug intel -rap_diag_debug intel -rap_cires_ugwp_debug intel -rap_unified_ugwp_debug intel -rap_lndp_debug intel -rap_progcld_thompson_debug intel -rap_noah_debug intel -rap_sfcdiff_debug intel -rap_noah_sfcdiff_cires_ugwp_debug intel -rrfs_v1beta_debug intel -rap_clm_lake_debug intel -rap_flake_debug intel -gnv1_c96_no_nest_debug intel -control_wam_debug intel -regional_spp_sppt_shum_skeb_dyn32_phy32 intel -rap_control_dyn32_phy32 intel -hrrr_control_dyn32_phy32 intel -rap_2threads_dyn32_phy32 intel -hrrr_control_2threads_dyn32_phy32 intel -hrrr_control_decomp_dyn32_phy32 intel -rap_restart_dyn32_phy32 intel -hrrr_control_restart_dyn32_phy32 intel -conus13km_control intel -conus13km_2threads intel -conus13km_restart_mismatch intel -rap_control_dyn64_phy32 intel -rap_control_debug_dyn32_phy32 intel -hrrr_control_debug_dyn32_phy32 intel -conus13km_debug intel -conus13km_debug_qr intel -conus13km_debug_2threads intel -conus13km_radar_tten_debug intel -rap_control_dyn64_phy32_debug intel -hafs_regional_atm_thompson_gfdlsf intel -gnv1_nested intel -atm_ds2s_docn_pcice intel +datm_cdeps_control_cfsr intel +datm_cdeps_restart_cfsr intel +datm_cdeps_control_gefs intel +datm_cdeps_iau_gefs intel +datm_cdeps_stochy_gefs intel +datm_cdeps_ciceC_cfsr intel +datm_cdeps_bulk_cfsr intel +datm_cdeps_bulk_gefs intel +datm_cdeps_mx025_cfsr intel +datm_cdeps_mx025_gefs intel +datm_cdeps_multiple_files_cfsr intel +datm_cdeps_3072x1536_cfsr intel +datm_cdeps_gfs intel +datm_cdeps_debug_cfsr intel +datm_cdeps_control_cfsr_faster intel atm_ds2s_docn_dice intel -control_p8_atmlnd_sbs intel -control_p8_atmlnd intel -control_restart_p8_atmlnd intel -control_p8_atmlnd_debug intel -atmwav_control_noaero_p8 intel -atmaero_control_p8 intel -atmaero_control_p8_rad intel -atmaero_control_p8_rad_micro intel -control_c48 gnu -control_p8 gnu -control_p8_ugwpv1 gnu -rap_control gnu -rap_decomp gnu -rap_2threads gnu -rap_restart gnu -rap_sfcdiff gnu -rap_sfcdiff_decomp gnu -rap_sfcdiff_restart gnu -hrrr_control gnu -hrrr_control_noqr gnu -hrrr_control_2threads gnu -hrrr_control_decomp gnu -hrrr_control_restart gnu -hrrr_control_restart_noqr gnu -rrfs_v1beta gnu -control_diag_debug gnu -regional_debug gnu -rap_control_debug gnu -hrrr_control_debug gnu -hrrr_gf_debug gnu -hrrr_c3_debug gnu -rap_diag_debug gnu -rap_noah_sfcdiff_cires_ugwp_debug gnu -rap_progcld_thompson_debug gnu -rrfs_v1beta_debug gnu -control_debug_p8 gnu -rap_flake_debug gnu -rap_clm_lake_debug gnu -gnv1_c96_no_nest_debug gnu -rap_control_dyn32_phy32 gnu -hrrr_control_dyn32_phy32 gnu -rap_2threads_dyn32_phy32 gnu -hrrr_control_2threads_dyn32_phy32 gnu -hrrr_control_decomp_dyn32_phy32 gnu -rap_restart_dyn32_phy32 gnu -hrrr_control_restart_dyn32_phy32 gnu -conus13km_control gnu -conus13km_2threads gnu -conus13km_restart_mismatch gnu -rap_control_dyn64_phy32 gnu -rap_control_debug_dyn32_phy32 gnu -hrrr_control_debug_dyn32_phy32 gnu -conus13km_debug gnu -conus13km_debug_qr gnu -conus13km_debug_2threads gnu -conus13km_radar_tten_debug gnu -rap_control_dyn64_phy32_debug gnu cpld_control_nowave_noaero_p8 gnu cpld_control_pdlib_p8 gnu -cpld_regional_atm_fbh intel -control_c48_lnd_iau intel -cpld_control_gfsv17 intelllvm -cpld_debug_gfsv17 intelllvm -cpld_control_sfs intelllvm -cpld_control_p8 intelllvm -rap_control_dyn32_phy32 intelllvm -rap_control_dyn64_phy32 intelllvm +datm_cdeps_control_cfsr gnu \ No newline at end of file From 63ace62a36a263f03b914a92fc5536509e862dbc Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Fri, 6 Dec 2024 11:49:39 -0500 Subject: [PATCH 15/24] Fourth reconciliation PR from production/RRFS.v1 + Add PIO switch to WW3 to avoid build errors #2512 (#2483) * UFSWM - MYNN PBL, Smoke and subgrid cloud fraction. * FV3 - MYNN PBL, Smoke and subgrid cloud fraction. * ccpp-physics - MYNN PBL, Smoke and subgrid cloud fraction. * atmos_cubed_sphere - hail diagnostics, and average of smoke/dust. * WW3 - Updated to add PIO switch to avoid build error --- FV3 | 2 +- WW3 | 2 +- tests/bl_date.conf | 2 +- tests/logs/RegressionTests_acorn.log | 524 +++++++-------- tests/logs/RegressionTests_derecho.log | 534 +++++++-------- tests/logs/RegressionTests_gaea.log | 596 ++++++++--------- tests/logs/RegressionTests_hera.log | 744 ++++++++++----------- tests/logs/RegressionTests_hercules.log | 824 +++++++++++------------- tests/logs/RegressionTests_jet.log | 574 +++++++++-------- tests/logs/RegressionTests_orion.log | 584 ++++++++--------- tests/logs/RegressionTests_wcoss2.log | 468 +++++++------- tests/test_changes.list | 163 +++-- 12 files changed, 2541 insertions(+), 2476 deletions(-) diff --git a/FV3 b/FV3 index b769849792..1648e176fa 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit b769849792dbe799dc1a2e29942864f880ee8445 +Subproject commit 1648e176fa869d0ca9ce9ea5822b3594afd8c353 diff --git a/WW3 b/WW3 index abe1e79e8d..4f518cf86b 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit abe1e79e8d4241178e5d31fac1c90b8cef2ee551 +Subproject commit 4f518cf86baa723f9a1e7f5e4ed375f0d32a6f4a diff --git a/tests/bl_date.conf b/tests/bl_date.conf index c5bc95de3a..507cdf7d86 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20241127 +export BL_DATE=20241203 diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index fd8e3284df..b782e4b6e1 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,20 +1,20 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -e4d3bebab002b60b5af711bfcbbda2307d0925bb +8e98c5cfbea95cd44f47e48440df1d936b16336b 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) - cf01f337a0162dc05889288e19bc9c4811ace762 CICE-interface/CICE (remotes/origin/sync_cice_2024-11) + 513f8d153924e18ae0f91f5440195d15210a489e CICE-interface/CICE (CICE6.0.0-391-g513f8d1) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b769849792dbe799dc1a2e29942864f880ee8445 FV3 (heads/develop) - e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) - b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 6e0467ad07a2231d298dc3be91a923c934354a7f FV3/ccpp/physics (EP4-1071-g6e0467ad) + 7e7719927a80104d1bb4badf790e509f1e4d39b8 FV3 (remotes/origin/rrfsv1-to-ufs/dev4) + f28be0e882fe53886d23076f56908588eac676c2 FV3/atmos_cubed_sphere (remotes/origin/rrfsv1-to-ufs/dev4) + 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) + c2fb52eacb4e0402b2c307241c0c3acb0ea81b1c FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5524-gc2fb52ea) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -27,7 +27,7 @@ Submodule hashes used in testing: 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) + 615236be21904e180c12c4babfde89fdb448a2cf WW3 (remotes/origin/bug/addPIOswitch) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,268 +38,268 @@ 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-20241127 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2540495 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241203 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3092908 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:29, 11:21] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [23:42, 03:21](3192 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:26, 12:02] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [23:44, 03:54](1906 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [03:18, 04:12](1954 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [02:13, 03:54](1074 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:45, 03:16](1882 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:26, 12:02] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [23:44, 02:24](1912 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:26] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:51, 03:22](1942 MB) - -PASS -- COMPILE 's2swa_intel' [13:27, 11:25] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [23:43, 02:24](3227 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [23:43, 02:56](3225 MB) -PASS -- TEST 'cpld_restart_p8_intel' [59:36, 02:29](3156 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [23:43, 02:51](3244 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:29, 03:00](3171 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [23:43, 02:54](3463 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [23:43, 03:10](3220 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [23:44, 02:36](3168 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [23:43, 03:00](3227 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [23:43, 03:15](3200 MB) - -PASS -- COMPILE 's2sw_intel' [12:26, 11:01] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [24:44, 01:59](1918 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [24:44, 03:04](1980 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:26, 10:16] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [25:44, 03:11](1977 MB) - -PASS -- COMPILE 's2s_intel' [11:26, 10:11] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [25:43, 02:00](2883 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [25:43, 02:47](2887 MB) -PASS -- TEST 'cpld_restart_c48_intel' [20:14, 02:33](2309 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:32, 15:32] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [19:38, 03:22](3227 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:28, 11:26] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:42, 02:49](1920 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [47:22, 02:18](1106 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [46:57, 01:59](1901 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:13] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:31, 02:51](1964 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:24] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [14:13, 01:59](660 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [11:34, 02:01](1556 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:42, 01:41](1567 MB) -PASS -- TEST 'control_latlon_intel' [05:29, 01:54](1562 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:20, 02:29](1564 MB) -PASS -- TEST 'control_c48_intel' [01:39, 02:05](1581 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [01:16, 01:50](706 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [00:15, 01:41](1582 MB) -PASS -- TEST 'control_c192_intel' [59:41, 01:35](1687 MB) -PASS -- TEST 'control_c384_intel' [57:30, 03:05](1967 MB) -PASS -- TEST 'control_c384gdas_intel' [57:03, 03:46](1176 MB) -PASS -- TEST 'control_stochy_intel' [53:45, 02:02](616 MB) -PASS -- TEST 'control_stochy_restart_intel' [48:12, 02:05](426 MB) -PASS -- TEST 'control_lndp_intel' [53:35, 02:09](616 MB) -PASS -- TEST 'control_iovr4_intel' [52:30, 01:57](611 MB) -PASS -- TEST 'control_iovr5_intel' [52:30, 01:32](610 MB) -PASS -- TEST 'control_p8_intel' [51:29, 03:11](1850 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [51:29, 03:40](1855 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [51:29, 03:15](1849 MB) -PASS -- TEST 'control_restart_p8_intel' [43:06, 03:23](1009 MB) -PASS -- TEST 'control_noqr_p8_intel' [51:04, 02:32](1843 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [42:26, 02:42](1014 MB) -PASS -- TEST 'control_decomp_p8_intel' [50:58, 02:16](1853 MB) -PASS -- TEST 'control_2threads_p8_intel' [50:35, 02:53](1933 MB) -PASS -- TEST 'control_p8_lndp_intel' [50:26, 01:42](1851 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [50:25, 03:11](1901 MB) -PASS -- TEST 'control_p8_mynn_intel' [50:20, 03:10](1857 MB) -PASS -- TEST 'merra2_thompson_intel' [50:14, 04:14](1855 MB) -PASS -- TEST 'regional_control_intel' [49:05, 02:09](891 MB) -PASS -- TEST 'regional_restart_intel' [41:12, 01:52](876 MB) -PASS -- TEST 'regional_decomp_intel' [48:17, 01:37](891 MB) -PASS -- TEST 'regional_2threads_intel' [48:06, 01:52](1019 MB) -PASS -- TEST 'regional_noquilt_intel' [48:01, 01:12](1213 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [46:21, 01:50](889 MB) -PASS -- TEST 'regional_wofs_intel' [45:54, 01:39](1587 MB) - -PASS -- COMPILE 'rrfs_intel' [10:24, 08:49] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [15:20, 03:32](1001 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [15:21, 02:06](1157 MB) -PASS -- TEST 'rap_decomp_intel' [15:20, 02:41](1007 MB) -PASS -- TEST 'rap_2threads_intel' [15:20, 04:13](1084 MB) -PASS -- TEST 'rap_restart_intel' [45:18, 03:30](884 MB) -PASS -- TEST 'rap_sfcdiff_intel' [15:20, 02:24](1001 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:20, 03:37](998 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [44:39, 03:10](887 MB) -PASS -- TEST 'hrrr_control_intel' [15:20, 03:58](999 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [15:20, 03:19](993 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [15:07, 03:17](1069 MB) -PASS -- TEST 'hrrr_control_restart_intel' [43:05, 01:41](832 MB) -PASS -- TEST 'rrfs_v1beta_intel' [43:05, 03:52](998 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [42:55, 01:46](1957 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [42:38, 01:30](1945 MB) - -PASS -- COMPILE 'csawmg_intel' [09:22, 08:03] -PASS -- TEST 'control_csawmg_intel' [15:21, 02:06](951 MB) -PASS -- TEST 'control_ras_intel' [15:21, 01:44](651 MB) - -PASS -- COMPILE 'wam_intel' [10:22, 08:15] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [42:23, 01:37](1643 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:22, 08:23] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [41:59, 03:19](1856 MB) -PASS -- TEST 'regional_control_faster_intel' [41:52, 02:03](889 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:22, 07:28] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [41:36, 01:25](1612 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [40:49, 02:27](1603 MB) -PASS -- TEST 'control_stochy_debug_intel' [40:17, 01:57](805 MB) -PASS -- TEST 'control_lndp_debug_intel' [40:05, 01:21](806 MB) -PASS -- TEST 'control_csawmg_debug_intel' [39:58, 02:12](1110 MB) -PASS -- TEST 'control_ras_debug_intel' [39:27, 01:48](812 MB) -PASS -- TEST 'control_diag_debug_intel' [39:20, 02:20](1656 MB) -PASS -- TEST 'control_debug_p8_intel' [39:11, 01:26](1904 MB) -PASS -- TEST 'regional_debug_intel' [38:31, 01:14](934 MB) -PASS -- TEST 'rap_control_debug_intel' [38:27, 02:08](1192 MB) -PASS -- TEST 'hrrr_control_debug_intel' [38:23, 02:06](1185 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [38:20, 01:22](1184 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [36:52, 01:28](1189 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [36:47, 01:58](1191 MB) -PASS -- TEST 'rap_diag_debug_intel' [36:03, 01:31](1269 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [35:43, 01:40](1192 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [35:43, 01:39](1188 MB) -PASS -- TEST 'rap_lndp_debug_intel' [35:27, 01:53](1190 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [35:12, 01:38](1188 MB) -PASS -- TEST 'rap_noah_debug_intel' [34:44, 01:29](1183 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [34:00, 01:59](1187 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [33:40, 01:28](1186 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [33:34, 01:18](1183 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [32:44, 01:55](1190 MB) -PASS -- TEST 'rap_flake_debug_intel' [32:43, 02:10](1190 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [32:21, 03:19](1190 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:19, 04:26] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [17:22, 02:06](1689 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 08:07] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [31:56, 02:03](1039 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [31:44, 03:24](876 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [31:21, 04:23](876 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [31:17, 03:32](934 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [31:09, 02:52](923 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [31:01, 04:17](870 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [18:23, 03:31](792 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [19:46, 01:30](760 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:23, 08:04] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [30:05, 02:14](1082 MB) -PASS -- TEST 'conus13km_2threads_intel' [22:53, 02:08](1062 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [22:08, 01:19](957 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:23, 08:13] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [29:18, 01:41](896 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 04:28] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [28:49, 01:25](1059 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [27:43, 01:57](1062 MB) -PASS -- TEST 'conus13km_debug_intel' [27:43, 01:42](1150 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [27:16, 02:02](836 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [26:21, 02:15](1140 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:12, 02:11](1216 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 04:22] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [26:11, 01:40](1087 MB) - -PASS -- COMPILE 'hafsw_intel' [11:25, 09:49] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [26:11, 03:20](688 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [26:10, 01:56](1043 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [25:53, 03:04](732 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [25:39, 02:51](908 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [25:11, 03:08](781 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [24:26, 02:45](463 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [24:01, 02:47](481 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [21:27, 02:57](379 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [21:11, 03:57](435 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [21:03, 01:41](496 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [20:18, 01:48](491 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [19:49, 02:08](562 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [19:12, 01:32](406 MB) -PASS -- TEST 'gnv1_nested_intel' [18:25, 04:19](1697 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:20, 04:51] ( 1444 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:26, 02:11](608 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [12:26, 09:29] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:39, 02:01](604 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:35, 02:45](783 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:29, 10:01] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [16:58, 02:21](782 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:26, 09:11] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [16:09, 02:55](734 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [15:55, 03:08](706 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [15:38, 01:20](900 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [15:28, 09:18] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [15:13, 01:50](765 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [08:46, 01:19](742 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [12:15, 01:44](646 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [11:59, 01:39](644 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [11:55, 01:43](643 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [11:08, 01:21](752 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [10:50, 01:21](765 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [09:28, 01:42](645 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:11, 02:29](688 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:04, 02:05](668 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [08:03, 01:15](765 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:52, 01:26](2031 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:35, 01:45](2031 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [17:33, 09:15] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [06:57, 01:48](766 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [10:24, 00:51] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:55, 02:11](309 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [06:47, 01:40](449 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [58:09, 01:35](450 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:31, 10:03] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:31, 01:50](1917 MB) - -PASS -- COMPILE 'atml_intel' [17:32, 09:30] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:29, 03:33](1878 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [05:49, 03:18](1878 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [48:16, 02:08](1034 MB) - -PASS -- COMPILE 'atml_debug_intel' [12:27, 05:17] ( 866 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:22, 03:37](1922 MB) - -PASS -- COMPILE 'atmw_intel' [13:29, 09:02] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:04, 03:32](1877 MB) - -PASS -- COMPILE 'atmaero_intel' [11:25, 08:33] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [03:42, 03:12](3119 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [03:24, 03:03](2997 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [03:12, 02:25](3006 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [10:23, 04:22] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [03:04, 02:36](4485 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:26, 11:25] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [41:50, 03:06](3190 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:27, 11:34] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [41:49, 04:12](1906 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:06, 03:42](1954 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [19:47, 03:24](1074 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [41:50, 03:22](1888 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:27, 11:51] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [41:47, 01:30](1901 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:31] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [47:56, 03:30](1949 MB) + +PASS -- COMPILE 's2swa_intel' [13:27, 11:26] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [41:47, 02:26](3228 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [41:47, 02:55](3226 MB) +PASS -- TEST 'cpld_restart_p8_intel' [15:37, 02:38](3156 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [41:47, 02:39](3244 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [23:49, 03:17](3171 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [41:47, 02:50](3464 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [41:47, 02:22](3218 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [41:48, 02:48](3167 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [41:47, 03:25](3228 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [41:47, 03:08](3207 MB) + +PASS -- COMPILE 's2sw_intel' [12:27, 11:13] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [42:49, 02:08](1918 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [42:49, 03:01](1979 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:26, 10:16] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [42:50, 03:20](1976 MB) + +PASS -- COMPILE 's2s_intel' [11:25, 10:14] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [43:49, 01:52](2878 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [43:49, 02:44](2892 MB) +PASS -- TEST 'cpld_restart_c48_intel' [38:21, 02:03](2305 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:32, 15:55] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [37:43, 02:31](3226 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:28, 11:27] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [41:47, 02:36](1921 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:33, 02:00](1106 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [07:28, 02:24](1894 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:11] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [40:36, 02:15](1965 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:26, 09:32] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [32:16, 01:53](663 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [29:39, 01:48](1553 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [26:47, 02:08](1574 MB) +PASS -- TEST 'control_latlon_intel' [26:29, 01:21](1564 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [21:53, 02:06](1564 MB) +PASS -- TEST 'control_c48_intel' [19:17, 01:41](1581 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [17:25, 01:57](707 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [17:25, 02:08](1586 MB) +PASS -- TEST 'control_c192_intel' [16:13, 01:50](1686 MB) +PASS -- TEST 'control_c384_intel' [15:34, 02:58](1982 MB) +PASS -- TEST 'control_c384gdas_intel' [12:24, 03:40](1159 MB) +PASS -- TEST 'control_stochy_intel' [12:06, 01:30](616 MB) +PASS -- TEST 'control_stochy_restart_intel' [06:33, 01:37](421 MB) +PASS -- TEST 'control_lndp_intel' [12:05, 01:50](618 MB) +PASS -- TEST 'control_iovr4_intel' [09:21, 01:45](611 MB) +PASS -- TEST 'control_iovr5_intel' [09:09, 02:18](616 MB) +PASS -- TEST 'control_p8_intel' [08:45, 02:59](1850 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [08:37, 02:57](1848 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:37, 02:52](1860 MB) +PASS -- TEST 'control_restart_p8_intel' [01:19, 03:27](1007 MB) +PASS -- TEST 'control_noqr_p8_intel' [08:35, 02:41](1844 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [59:56, 03:12](1014 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:23, 03:03](1854 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:23, 03:25](1932 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:21, 02:10](1853 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:36, 03:25](1909 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:33, 02:47](1858 MB) +PASS -- TEST 'merra2_thompson_intel' [06:24, 04:13](1856 MB) +PASS -- TEST 'regional_control_intel' [06:23, 02:09](899 MB) +PASS -- TEST 'regional_restart_intel' [58:30, 01:15](875 MB) +PASS -- TEST 'regional_decomp_intel' [05:36, 01:28](890 MB) +PASS -- TEST 'regional_2threads_intel' [05:28, 01:14](1023 MB) +PASS -- TEST 'regional_noquilt_intel' [04:48, 01:21](1222 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [03:35, 01:56](903 MB) +PASS -- TEST 'regional_wofs_intel' [01:55, 01:26](1583 MB) + +PASS -- COMPILE 'rrfs_intel' [10:24, 08:45] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [32:25, 03:31](1002 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [32:26, 02:17](1157 MB) +PASS -- TEST 'rap_decomp_intel' [32:25, 02:38](1003 MB) +PASS -- TEST 'rap_2threads_intel' [32:25, 04:11](1081 MB) +PASS -- TEST 'rap_restart_intel' [01:42, 03:23](883 MB) +PASS -- TEST 'rap_sfcdiff_intel' [32:25, 03:13](1001 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [32:25, 03:34](995 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [01:36, 03:49](886 MB) +PASS -- TEST 'hrrr_control_intel' [32:25, 03:29](998 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [32:25, 04:21](992 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [32:26, 03:53](1069 MB) +PASS -- TEST 'hrrr_control_restart_intel' [01:17, 01:58](832 MB) +PASS -- TEST 'rrfs_v1beta_intel' [01:15, 03:58](995 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [00:58, 02:01](1956 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [00:18, 01:40](1944 MB) + +PASS -- COMPILE 'csawmg_intel' [09:23, 08:05] +PASS -- TEST 'control_csawmg_intel' [33:26, 01:37](951 MB) +PASS -- TEST 'control_ras_intel' [33:26, 01:25](655 MB) + +PASS -- COMPILE 'wam_intel' [10:23, 08:13] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [59:36, 01:42](1645 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:23, 08:26] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [59:25, 03:07](1856 MB) +PASS -- TEST 'regional_control_faster_intel' [59:02, 02:11](899 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 07:32] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [57:42, 01:49](1608 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [57:18, 01:53](1609 MB) +PASS -- TEST 'control_stochy_debug_intel' [57:12, 01:35](807 MB) +PASS -- TEST 'control_lndp_debug_intel' [57:12, 02:11](807 MB) +PASS -- TEST 'control_csawmg_debug_intel' [57:02, 02:07](1113 MB) +PASS -- TEST 'control_ras_debug_intel' [56:50, 02:06](811 MB) +PASS -- TEST 'control_diag_debug_intel' [56:50, 01:50](1662 MB) +PASS -- TEST 'control_debug_p8_intel' [55:39, 01:36](1905 MB) +PASS -- TEST 'regional_debug_intel' [55:18, 01:49](922 MB) +PASS -- TEST 'rap_control_debug_intel' [55:04, 01:39](1189 MB) +PASS -- TEST 'hrrr_control_debug_intel' [54:49, 01:49](1185 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [54:32, 01:35](1189 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [53:46, 01:21](1186 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [53:18, 01:55](1190 MB) +PASS -- TEST 'rap_diag_debug_intel' [53:06, 01:43](1272 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [52:55, 01:45](1190 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [52:55, 02:08](1189 MB) +PASS -- TEST 'rap_lndp_debug_intel' [51:48, 01:37](1190 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [51:12, 01:41](1189 MB) +PASS -- TEST 'rap_noah_debug_intel' [51:10, 01:51](1183 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [51:06, 01:51](1187 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [50:40, 01:56](1185 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [50:40, 02:05](1181 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [50:36, 02:07](1188 MB) +PASS -- TEST 'rap_flake_debug_intel' [50:33, 01:44](1191 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [50:15, 04:17](1187 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:20, 04:26] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [35:27, 01:27](1691 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 08:05] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [50:15, 02:34](1029 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [49:18, 03:39](876 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [48:52, 04:09](876 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [48:52, 03:39](929 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [48:49, 04:58](923 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [47:40, 03:20](868 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [36:43, 03:45](789 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [38:29, 01:28](760 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:22, 08:07] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [47:11, 02:16](1082 MB) +PASS -- TEST 'conus13km_2threads_intel' [39:58, 01:37](1064 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [39:03, 02:03](958 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:24, 08:09] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [47:04, 02:26](897 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:20, 04:32] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [45:26, 01:38](1059 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [45:11, 02:05](1064 MB) +PASS -- TEST 'conus13km_debug_intel' [45:10, 01:23](1156 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [44:56, 01:38](822 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [44:47, 01:37](1153 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [44:24, 01:23](1223 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:23] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [44:21, 01:46](1088 MB) + +PASS -- COMPILE 'hafsw_intel' [11:24, 10:06] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [43:30, 02:27](687 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [43:23, 01:42](1047 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [43:14, 02:22](735 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [42:39, 02:35](903 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [41:36, 02:41](782 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [41:33, 02:13](461 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [39:00, 03:06](482 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [38:57, 02:10](377 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [38:34, 03:53](445 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [38:09, 01:50](495 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [38:03, 02:37](497 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [36:57, 02:08](560 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [36:45, 02:09](406 MB) +PASS -- TEST 'gnv1_nested_intel' [35:35, 04:34](1697 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:19, 04:51] ( 1444 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [34:47, 02:07](610 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:26, 09:33] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [34:14, 02:35](602 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [34:06, 02:05](781 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:28, 09:48] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [33:50, 03:03](778 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:26, 09:05] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [33:01, 02:48](736 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [32:56, 02:18](707 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [32:32, 01:17](899 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [13:26, 09:10] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [32:22, 01:35](766 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [26:57, 01:30](754 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [32:21, 01:50](643 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [30:12, 01:23](643 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [30:06, 01:23](643 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [29:37, 01:37](765 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [29:21, 01:39](765 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [27:55, 01:55](644 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [26:57, 02:16](697 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [26:53, 02:37](669 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [26:20, 02:03](764 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [25:48, 01:25](2031 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [25:43, 02:11](2032 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [14:29, 09:23] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [25:38, 01:59](765 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [08:22, 00:51] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [25:09, 01:26](309 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [24:15, 01:38](447 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [19:43, 01:54](448 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:32, 10:08] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [24:04, 02:24](1912 MB) + +PASS -- COMPILE 'atml_intel' [18:34, 09:30] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [23:59, 03:21](1878 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [23:34, 03:35](1879 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [10:03, 01:57](1036 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:29, 05:13] ( 866 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [22:50, 03:43](1920 MB) + +PASS -- COMPILE 'atmw_intel' [12:26, 08:50] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [22:31, 03:13](1879 MB) + +PASS -- COMPILE 'atmaero_intel' [11:24, 08:32] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [22:30, 02:25](3116 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [22:19, 02:41](3000 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [22:15, 02:58](3006 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:21, 04:25] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [21:31, 02:17](4471 MB) SYNOPSIS: -Starting Date/Time: 20241202 17:22:29 -Ending Date/Time: 20241202 19:34:03 -Total Time: 02h:12m:03s +Starting Date/Time: 20241205 18:04:24 +Ending Date/Time: 20241205 20:10:22 +Total Time: 02h:06m:27s Compiles Completed: 37/37 Tests Completed: 177/177 diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index b22d7b5efb..c72284fe98 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,20 +1,20 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -e4d3bebab002b60b5af711bfcbbda2307d0925bb +1e6fc62a38e1b61538e203a7f297583333a18d2a 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) - cf01f337a0162dc05889288e19bc9c4811ace762 CICE-interface/CICE (remotes/origin/sync_cice_2024-11) + 513f8d153924e18ae0f91f5440195d15210a489e CICE-interface/CICE (CICE6.0.0-391-g513f8d1) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b769849792dbe799dc1a2e29942864f880ee8445 FV3 (heads/develop) - e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) - b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 6e0467ad07a2231d298dc3be91a923c934354a7f FV3/ccpp/physics (EP4-1071-g6e0467ad) + 7e7719927a80104d1bb4badf790e509f1e4d39b8 FV3 (remotes/origin/rrfsv1-to-ufs/dev4) + f28be0e882fe53886d23076f56908588eac676c2 FV3/atmos_cubed_sphere (remotes/origin/rrfsv1-to-ufs/dev4) + 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) + c2fb52eacb4e0402b2c307241c0c3acb0ea81b1c FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5524-gc2fb52ea) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -27,7 +27,7 @@ Submodule hashes used in testing: 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) + 615236be21904e180c12c4babfde89fdb448a2cf WW3 (remotes/origin/bug/addPIOswitch) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,287 +38,287 @@ 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: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20241127 -COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_12569 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20241203 +COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_99072 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-r) - USE ROCOTO -PASS -- COMPILE 's2swa_32bit_intel' [21:20, 21:20] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:28, 10:05](3200 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:28, 23:28] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [15:56, 14:18](1919 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:05, 15:16](1946 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:59, 07:11](1080 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:42, 15:59](1881 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:10, 23:10] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [14:43, 13:58](1906 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:56, 11:56] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:08, 25:28](1943 MB) - -PASS -- COMPILE 's2swa_intel' [21:26, 21:26] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [15:03, 13:43](3222 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:01, 13:39](3218 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:19, 07:46](3153 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [15:05, 13:41](3257 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:20, 07:46](3178 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [13:54, 12:38](3748 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:38, 13:20](3219 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [12:02, 10:46](3534 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:57, 13:38](3232 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [11:10, 09:09](3815 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:16, 06:33](3619 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [24:56, 17:20](4519 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:54, 10:30](4649 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:58, 07:45](3210 MB) - -PASS -- COMPILE 's2sw_intel' [19:29, 19:29] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:38, 07:31](1922 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:03, 11:48](1985 MB) - -PASS -- COMPILE 's2swa_debug_intel' [11:49, 11:49] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [21:37, 20:23](3302 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:58, 10:58] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:58, 08:54](1961 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:09, 16:09] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:03, 04:51](1987 MB) - -PASS -- COMPILE 's2s_intel' [16:46, 16:45] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [06:12, 05:15](2880 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [02:25, 01:37](2903 MB) -PASS -- TEST 'cpld_restart_c48_intel' [01:48, 00:56](2308 MB) - -PASS -- COMPILE 's2swa_faster_intel' [24:34, 24:33] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [14:45, 13:25](3233 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:01, 22:01] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:47, 23:34](1926 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:33, 12:14](1095 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:28, 27:17](1890 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:06, 11:05] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:48, 27:40](1968 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:21, 14:21] ( 6 warnings 1 remarks ) +PASS -- COMPILE 's2swa_32bit_intel' [21:21, 21:21] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:35, 10:15](3198 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:08, 23:08] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [16:03, 14:22](1921 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:04, 15:13](1957 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:00, 07:13](1070 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:54, 16:13](1888 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:06, 23:06] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [14:37, 13:51](1907 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:33, 11:33] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:58, 25:20](1943 MB) + +PASS -- COMPILE 's2swa_intel' [21:21, 21:21] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:06, 13:47](3221 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:55, 13:29](3234 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:11, 07:40](3147 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:04, 13:36](3251 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:16, 07:44](3177 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [13:44, 12:29](3745 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:32, 13:15](3220 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [12:04, 10:49](3533 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:58, 13:40](3236 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [11:10, 09:05](3817 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:06, 06:30](3619 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [24:43, 17:21](4519 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:57, 10:45](4616 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:00, 07:49](3204 MB) + +PASS -- COMPILE 's2sw_intel' [19:31, 19:31] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:39, 07:33](1924 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:07, 11:56](1999 MB) + +PASS -- COMPILE 's2swa_debug_intel' [11:25, 11:25] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [22:05, 20:53](3302 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:52, 10:52] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:49, 08:47](1959 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:58, 15:58] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:06, 04:53](1986 MB) + +PASS -- COMPILE 's2s_intel' [16:34, 16:34] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [06:00, 05:15](2879 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [02:25, 01:39](2896 MB) +PASS -- TEST 'cpld_restart_c48_intel' [01:48, 00:58](2310 MB) + +PASS -- COMPILE 's2swa_faster_intel' [23:34, 23:34] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [14:41, 13:22](3236 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:16, 21:16] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:46, 23:24](1926 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:41, 12:21](1105 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:37, 27:28](1893 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:59, 10:59] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:45, 27:38](1967 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:15, 14:15] ( 6 warnings 1 remarks ) PASS -- TEST 'control_flake_intel' [03:38, 03:24](668 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:17, 02:41](1562 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:27, 02:46](1573 MB) -PASS -- TEST 'control_latlon_intel' [03:08, 02:38](1568 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:21, 02:41](1561 MB) -PASS -- TEST 'control_c48_intel' [09:45, 09:13](1591 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [05:27, 05:14](707 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [09:49, 09:15](1589 MB) -PASS -- TEST 'control_c192_intel' [10:52, 10:01](1692 MB) -PASS -- TEST 'control_c384_intel' [13:11, 11:20](1979 MB) -PASS -- TEST 'control_c384gdas_intel' [09:54, 07:24](1178 MB) -PASS -- TEST 'control_stochy_intel' [01:41, 01:28](626 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:07, 00:53](432 MB) -PASS -- TEST 'control_lndp_intel' [01:35, 01:20](621 MB) -PASS -- TEST 'control_iovr4_intel' [02:23, 02:06](619 MB) -PASS -- TEST 'control_iovr5_intel' [02:21, 02:05](618 MB) -PASS -- TEST 'control_p8_intel' [04:54, 03:41](1855 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:29, 03:12](1862 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:54, 03:40](1859 MB) -PASS -- TEST 'control_restart_p8_intel' [03:43, 02:26](1011 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:47, 03:38](1847 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:34, 02:23](1018 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:51, 03:42](1848 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:41, 03:29](1941 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:38, 06:02](1858 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:12, 03:55](1912 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:27, 03:14](1859 MB) -PASS -- TEST 'merra2_thompson_intel' [04:50, 03:23](1860 MB) -PASS -- TEST 'regional_control_intel' [04:52, 04:24](895 MB) -PASS -- TEST 'regional_restart_intel' [02:57, 02:27](864 MB) -PASS -- TEST 'regional_decomp_intel' [05:11, 04:42](898 MB) -PASS -- TEST 'regional_noquilt_intel' [04:48, 04:18](1214 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:08, 04:37](895 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [04:51, 04:23](891 MB) -PASS -- TEST 'regional_wofs_intel' [06:20, 05:51](1588 MB) - -PASS -- COMPILE 'rrfs_intel' [12:49, 12:49] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [07:13, 06:08](1006 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:49, 03:50](1160 MB) -PASS -- TEST 'rap_decomp_intel' [07:34, 06:24](1002 MB) -PASS -- TEST 'rap_2threads_intel' [06:49, 05:40](1084 MB) -PASS -- TEST 'rap_restart_intel' [04:23, 03:14](882 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:18, 06:06](1007 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:34, 06:23](1005 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:41, 04:35](883 MB) -PASS -- TEST 'hrrr_control_intel' [04:21, 03:12](998 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:29, 03:17](997 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [03:57, 02:48](1078 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:04, 01:45](832 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:04, 06:00](1000 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:17, 08:00](1954 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:02, 07:46](1945 MB) - -PASS -- COMPILE 'csawmg_intel' [11:39, 11:39] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [07:08, 06:34](955 MB) -PASS -- TEST 'control_ras_intel' [03:08, 02:53](658 MB) - -PASS -- COMPILE 'wam_intel' [11:38, 11:37] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [10:50, 10:16](1647 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:08, 12:08] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:16, 02:58](1858 MB) -PASS -- TEST 'regional_control_faster_intel' [04:37, 04:08](902 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [14:50, 14:50] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:44, 02:06](1609 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:44, 02:04](1609 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:05, 02:50](811 MB) -PASS -- TEST 'control_lndp_debug_intel' [02:49, 02:34](812 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:06, 04:34](1119 MB) -PASS -- TEST 'control_ras_debug_intel' [02:50, 02:36](820 MB) -PASS -- TEST 'control_diag_debug_intel' [03:20, 02:35](1663 MB) -PASS -- TEST 'control_debug_p8_intel' [03:23, 02:49](1897 MB) -PASS -- TEST 'regional_debug_intel' [16:31, 16:03](935 MB) -PASS -- TEST 'rap_control_debug_intel' [04:58, 04:45](1190 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:48, 04:32](1186 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:53, 04:38](1189 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:04, 04:50](1195 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:59, 04:43](1191 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:25, 04:52](1275 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:02, 04:48](1193 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:05, 04:51](1191 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:05, 04:50](1193 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:53, 04:38](1190 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:49, 04:34](1194 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:56, 04:41](1193 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:01, 07:47](1189 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:50, 04:35](1188 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [04:58, 04:41](1195 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:55, 04:42](1198 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:29, 08:16](1201 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:17, 07:17] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [12:40, 12:04](1690 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:34, 11:34] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:34, 03:37](1035 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:16, 05:09](877 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:20, 02:45](877 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:47, 04:45](937 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:56, 02:25](930 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:28, 02:56](873 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:52, 03:52](795 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [01:49, 01:32](775 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:27, 11:27] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:37, 01:53](1073 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:38, 01:02](1078 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:49, 01:11](964 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:42, 11:42] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:09, 03:38](906 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:33, 07:33] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:52, 04:37](1070 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:43, 04:26](1064 MB) -PASS -- TEST 'conus13km_debug_intel' [13:33, 12:51](1149 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [14:05, 13:22](834 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:14, 07:36](1149 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:30, 12:53](1217 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:16, 07:16] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:57, 04:42](1097 MB) - -PASS -- COMPILE 'hafsw_intel' [17:52, 17:52] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [05:34, 04:39](703 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:32, 05:11](1064 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:39, 06:30](762 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [11:42, 10:43](777 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [13:01, 11:47](802 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:23, 04:39](466 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:46, 05:43](487 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [02:57, 02:18](392 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:02, 06:12](456 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [03:55, 03:17](502 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [03:48, 03:05](507 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:38, 03:48](577 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:28, 01:13](420 MB) -PASS -- TEST 'gnv1_nested_intel' [06:12, 04:05](1696 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:36, 08:35] ( 1467 warnings 1469 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:02, 12:15](618 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:24, 17:24] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [07:41, 06:49](620 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [07:53, 06:56](678 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [18:58, 18:57] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [06:52, 05:17](668 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:53, 15:52] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [06:39, 05:44](734 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:42, 05:46](725 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:58, 16:13](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:17, 08:17] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:35, 02:28](755 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:38, 01:28](758 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:27, 02:20](643 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:30, 02:23](646 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:28, 02:21](644 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:17, 02:41](1565 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:20, 02:41](1571 MB) +PASS -- TEST 'control_latlon_intel' [03:07, 02:37](1567 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:17, 02:39](1563 MB) +PASS -- TEST 'control_c48_intel' [09:47, 09:14](1588 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [05:31, 05:17](708 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [09:43, 09:11](1589 MB) +PASS -- TEST 'control_c192_intel' [10:48, 09:57](1688 MB) +PASS -- TEST 'control_c384_intel' [13:07, 11:18](1980 MB) +PASS -- TEST 'control_c384gdas_intel' [09:41, 07:12](1179 MB) +PASS -- TEST 'control_stochy_intel' [01:39, 01:24](627 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:06, 00:51](437 MB) +PASS -- TEST 'control_lndp_intel' [01:35, 01:22](623 MB) +PASS -- TEST 'control_iovr4_intel' [02:20, 02:04](617 MB) +PASS -- TEST 'control_iovr5_intel' [02:23, 02:05](620 MB) +PASS -- TEST 'control_p8_intel' [04:55, 03:40](1863 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:28, 03:11](1859 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:54, 03:38](1862 MB) +PASS -- TEST 'control_restart_p8_intel' [03:38, 02:19](1009 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:53, 03:42](1860 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:34, 02:25](1020 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:56, 03:42](1856 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:39, 03:26](1939 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:43, 06:03](1859 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:19, 03:54](1911 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:30, 03:11](1864 MB) +PASS -- TEST 'merra2_thompson_intel' [05:05, 03:34](1856 MB) +PASS -- TEST 'regional_control_intel' [04:56, 04:27](898 MB) +PASS -- TEST 'regional_restart_intel' [02:57, 02:26](876 MB) +PASS -- TEST 'regional_decomp_intel' [05:06, 04:38](893 MB) +PASS -- TEST 'regional_noquilt_intel' [04:52, 04:20](1214 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [04:59, 04:23](903 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [04:54, 04:23](891 MB) +PASS -- TEST 'regional_wofs_intel' [06:19, 05:48](1591 MB) + +PASS -- COMPILE 'rrfs_intel' [12:47, 12:47] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:10, 06:07](1006 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:52, 03:56](1164 MB) +PASS -- TEST 'rap_decomp_intel' [07:30, 06:23](1004 MB) +PASS -- TEST 'rap_2threads_intel' [06:48, 05:41](1084 MB) +PASS -- TEST 'rap_restart_intel' [04:20, 03:13](882 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:09, 06:06](1007 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:28, 06:22](1005 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:45, 04:38](883 MB) +PASS -- TEST 'hrrr_control_intel' [04:22, 03:13](999 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:28, 03:18](1000 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [03:57, 02:48](1077 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:02, 01:44](831 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:04, 06:01](1000 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:25, 08:08](1961 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:07, 07:52](1946 MB) + +PASS -- COMPILE 'csawmg_intel' [11:41, 11:41] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [07:00, 06:28](962 MB) +PASS -- TEST 'control_ras_intel' [03:04, 02:50](658 MB) + +PASS -- COMPILE 'wam_intel' [11:34, 11:34] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [10:47, 10:13](1644 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:03, 12:03] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:20, 03:04](1861 MB) +PASS -- TEST 'regional_control_faster_intel' [04:41, 04:11](895 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [14:34, 14:34] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:50, 02:07](1605 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:47, 02:08](1610 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:04, 02:52](806 MB) +PASS -- TEST 'control_lndp_debug_intel' [02:52, 02:39](807 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:48, 04:15](1113 MB) +PASS -- TEST 'control_ras_debug_intel' [02:49, 02:36](813 MB) +PASS -- TEST 'control_diag_debug_intel' [03:23, 02:38](1663 MB) +PASS -- TEST 'control_debug_p8_intel' [03:21, 02:50](1893 MB) +PASS -- TEST 'regional_debug_intel' [16:24, 15:55](923 MB) +PASS -- TEST 'rap_control_debug_intel' [05:04, 04:50](1187 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:48, 04:33](1189 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:01, 04:46](1188 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:54, 04:39](1186 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:00, 04:46](1187 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:24, 04:52](1272 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:01, 04:47](1190 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:59, 04:45](1186 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:07, 04:52](1189 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:55, 04:41](1187 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:57, 04:43](1189 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:53, 04:38](1189 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:55, 07:41](1187 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:54, 04:39](1184 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:00, 04:46](1189 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:55, 04:40](1190 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:11, 08:00](1197 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:14, 07:14] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [12:46, 12:11](1695 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:26, 11:26] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:37, 03:38](1034 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:09, 05:08](879 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:24, 02:47](874 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:49, 04:47](932 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:57, 02:25](927 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:25, 02:53](870 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:53, 03:53](794 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [01:49, 01:33](768 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:23, 11:23] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:37, 01:54](1081 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:39, 01:02](1078 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:50, 01:10](966 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:39, 11:39] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:11, 03:38](903 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:31, 07:31] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:48, 04:35](1063 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:47, 04:32](1067 MB) +PASS -- TEST 'conus13km_debug_intel' [13:29, 12:48](1156 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [13:38, 12:55](843 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:16, 07:39](1146 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:45, 13:08](1214 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:15, 07:15] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:51, 04:37](1093 MB) + +PASS -- COMPILE 'hafsw_intel' [17:40, 17:40] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [05:33, 04:39](703 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:33, 05:10](1065 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:39, 06:31](761 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [11:44, 10:43](875 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [13:03, 11:47](803 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:22, 04:40](472 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:45, 05:44](484 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [02:56, 02:17](390 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:03, 06:11](458 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [03:53, 03:17](509 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [03:49, 03:05](507 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:35, 03:48](572 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:26, 01:12](424 MB) +PASS -- TEST 'gnv1_nested_intel' [06:13, 04:06](1706 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:34, 08:34] ( 1467 warnings 1469 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:45, 11:59](621 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:20, 17:20] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [07:45, 06:53](622 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [07:51, 06:55](683 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [18:52, 18:52] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [06:51, 05:15](668 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:51, 15:51] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [06:37, 05:43](736 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:41, 05:46](725 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:57, 16:12](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:21, 08:21] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:34, 02:28](768 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:40, 01:31](758 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:26, 02:20](647 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:29, 02:22](647 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:29, 02:22](656 MB) PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:34, 02:28](768 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:35, 02:29](767 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:26, 02:20](648 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:30, 05:32](695 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:29, 05:29](681 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:31, 02:27](768 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:00, 03:52](2031 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:59, 03:52](2030 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:35, 02:28](768 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:26, 02:20](649 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:31, 05:32](694 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:30, 05:31](679 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:33, 02:27](766 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:01, 03:54](2031 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:03, 03:54](2031 MB) -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:51, 05:51] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:14, 05:08](752 MB) +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:48, 05:48] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:15, 05:08](754 MB) -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:18, 08:18] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:34, 02:27](756 MB) +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:20, 08:20] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:35, 02:29](768 MB) PASS -- COMPILE 'datm_cdeps_land_intel' [02:37, 02:37] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:30, 01:09](310 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:19, 01:03](452 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:57, 00:41](451 MB) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:26, 01:08](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:16, 01:02](451 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:57, 00:42](451 MB) -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:36, 13:36] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:52, 03:53](1913 MB) +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:58, 13:58] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:48, 03:47](1917 MB) -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:44, 12:44] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:53, 07:54](1910 MB) +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:48, 12:48] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:45, 07:51](1901 MB) -PASS -- COMPILE 'atml_intel' [14:48, 14:48] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:57, 06:33](1880 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:38, 06:17](1887 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:32, 03:56](1033 MB) +PASS -- COMPILE 'atml_intel' [14:45, 14:45] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:13, 06:49](1875 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:20, 06:57](1890 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:47, 04:08](1031 MB) -PASS -- COMPILE 'atml_debug_intel' [10:30, 10:29] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:30, 06:05](1927 MB) +PASS -- COMPILE 'atml_debug_intel' [10:34, 10:34] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:35, 06:09](1923 MB) -PASS -- COMPILE 'atmw_intel' [13:39, 13:39] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:25, 02:09](1883 MB) +PASS -- COMPILE 'atmw_intel' [13:50, 13:49] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:28, 02:15](1879 MB) -PASS -- COMPILE 'atmaero_intel' [12:57, 12:57] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:30, 04:19](3125 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:30, 04:18](3005 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:19, 04:24](3016 MB) +PASS -- COMPILE 'atmaero_intel' [13:02, 13:02] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:23, 04:12](3127 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:29, 04:19](3008 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:18, 04:23](3016 MB) -PASS -- COMPILE 'atmaq_debug_intel' [08:05, 08:05] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:41, 21:53](4544 MB) +PASS -- COMPILE 'atmaq_debug_intel' [08:07, 08:06] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [24:08, 22:19](4534 MB) -PASS -- COMPILE 'atm_fbh_intel' [11:28, 11:28] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [08:22, 08:07](847 MB) +PASS -- COMPILE 'atm_fbh_intel' [11:29, 11:28] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [08:18, 08:02](845 MB) SYNOPSIS: -Starting Date/Time: 20241201 07:48:30 -Ending Date/Time: 20241201 12:40:01 -Total Time: 04h:52m:35s +Starting Date/Time: 20241204 06:59:39 +Ending Date/Time: 20241204 10:50:25 +Total Time: 03h:51m:53s Compiles Completed: 42/42 Tests Completed: 186/186 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 4002cf818a..70ab54cd54 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,20 +1,20 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -e4d3bebab002b60b5af711bfcbbda2307d0925bb +1e6fc62a38e1b61538e203a7f297583333a18d2a 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) - cf01f337a0162dc05889288e19bc9c4811ace762 CICE-interface/CICE (remotes/origin/sync_cice_2024-11) + 513f8d153924e18ae0f91f5440195d15210a489e CICE-interface/CICE (CICE6.0.0-391-g513f8d1) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b769849792dbe799dc1a2e29942864f880ee8445 FV3 (heads/develop) - e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) - b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 6e0467ad07a2231d298dc3be91a923c934354a7f FV3/ccpp/physics (EP4-1071-g6e0467ad) + 7e7719927a80104d1bb4badf790e509f1e4d39b8 FV3 (remotes/origin/rrfsv1-to-ufs/dev4) + f28be0e882fe53886d23076f56908588eac676c2 FV3/atmos_cubed_sphere (remotes/origin/rrfsv1-to-ufs/dev4) + 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) + c2fb52eacb4e0402b2c307241c0c3acb0ea81b1c FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5524-gc2fb52ea) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -27,7 +27,7 @@ Submodule hashes used in testing: 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) + 615236be21904e180c12c4babfde89fdb448a2cf WW3 (remotes/origin/bug/addPIOswitch) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,304 +38,304 @@ 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-20241127 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_748151 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20241203 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_2501918 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [15:15, 14:02] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:29, 11:57](3188 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:12, 18:50] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [16:58, 14:04](1904 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:55, 14:08](1939 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:52, 06:29](1075 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:52, 15:26](1872 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:11, 17:50] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [16:18, 13:42](1895 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:11, 08:17] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:56, 27:10](1925 MB) - -PASS -- COMPILE 's2swa_intel' [15:15, 13:59] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [18:28, 15:30](3212 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:41, 15:23](3210 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:58, 08:39](3136 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [18:31, 15:40](3234 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [12:52, 08:43](3159 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [16:24, 13:30](3460 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [18:26, 15:21](3209 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [15:28, 12:41](3158 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [50:02, 15:31](3217 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:29, 09:52](3489 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:49, 07:18](3595 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [25:36, 19:09](4262 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [36:59, 11:53](4363 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:28, 09:31](3186 MB) - -PASS -- COMPILE 's2sw_intel' [14:11, 12:49] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [12:12, 08:13](1913 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:12, 13:03](1970 MB) - -PASS -- COMPILE 's2swa_debug_intel' [09:11, 07:41] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [25:04, 22:39](3271 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:11, 07:56] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:58, 09:10](1938 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [14:11, 12:11] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:12, 05:49](1966 MB) - -PASS -- COMPILE 's2s_intel' [14:11, 12:13] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [07:52, 05:32](2866 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:50, 02:06](2881 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:42, 01:05](2294 MB) - -PASS -- COMPILE 's2swa_faster_intel' [16:16, 14:41] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [18:21, 15:19](3216 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [19:12, 18:08] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [28:02, 24:05](1911 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [47:55, 12:16](1102 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [05:54, 28:47](1887 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:11, 08:36] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:53, 30:05](1935 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:00] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:29, 03:42](655 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:53, 03:13](1547 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:54, 03:18](1554 MB) -PASS -- TEST 'control_latlon_intel' [05:47, 03:13](1561 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:57, 03:10](1556 MB) -PASS -- TEST 'control_c48_intel' [12:49, 09:58](1570 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:26, 05:41](696 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [14:30, 10:56](1571 MB) -PASS -- TEST 'control_c192_intel' [14:22, 11:12](1691 MB) -PASS -- TEST 'control_c384_intel' [26:48, 23:55](1967 MB) -PASS -- TEST 'control_c384gdas_intel' [17:20, 14:43](1169 MB) -PASS -- TEST 'control_stochy_intel' [04:19, 02:31](612 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:22, 01:01](414 MB) -PASS -- TEST 'control_lndp_intel' [04:20, 02:26](609 MB) -PASS -- TEST 'control_iovr4_intel' [05:23, 02:54](609 MB) -PASS -- TEST 'control_iovr5_intel' [05:23, 03:05](609 MB) -PASS -- TEST 'control_p8_intel' [06:44, 04:03](1844 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:54, 03:40](1845 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:41, 04:04](1847 MB) -PASS -- TEST 'control_restart_p8_intel' [03:36, 01:50](1001 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:34, 04:05](1843 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:58, 01:51](1009 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:39, 03:47](1842 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:47, 03:19](1932 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:31, 06:10](1854 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:40, 04:08](1895 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:40, 03:06](1856 MB) -PASS -- TEST 'merra2_thompson_intel' [05:37, 03:23](1843 MB) -PASS -- TEST 'regional_control_intel' [06:27, 04:34](876 MB) -PASS -- TEST 'regional_restart_intel' [04:26, 02:33](859 MB) -PASS -- TEST 'regional_decomp_intel' [07:26, 04:45](876 MB) -PASS -- TEST 'regional_2threads_intel' [05:49, 02:55](1008 MB) -PASS -- TEST 'regional_noquilt_intel' [06:28, 04:30](1208 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:32, 04:34](876 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:28, 04:39](880 MB) -PASS -- TEST 'regional_wofs_intel' [08:27, 06:25](1571 MB) - -PASS -- COMPILE 'rrfs_intel' [14:11, 12:55] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:32, 06:52](989 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:53, 03:59](1165 MB) -PASS -- TEST 'rap_decomp_intel' [08:33, 06:57](990 MB) -PASS -- TEST 'rap_2threads_intel' [11:34, 06:07](1074 MB) -PASS -- TEST 'rap_restart_intel' [40:34, 03:25](869 MB) -PASS -- TEST 'rap_sfcdiff_intel' [13:42, 06:51](987 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:31, 07:00](988 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [38:36, 04:53](872 MB) -PASS -- TEST 'hrrr_control_intel' [14:36, 03:38](988 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [14:31, 03:44](987 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [35:36, 03:09](1062 MB) -PASS -- TEST 'hrrr_control_restart_intel' [39:26, 02:10](821 MB) -PASS -- TEST 'rrfs_v1beta_intel' [26:36, 06:40](987 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [34:23, 08:43](1943 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [38:22, 08:18](1936 MB) - -PASS -- COMPILE 'csawmg_intel' [13:11, 12:05] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [08:33, 06:41](943 MB) -PASS -- TEST 'control_ras_intel' [05:22, 03:26](644 MB) - -PASS -- COMPILE 'wam_intel' [12:14, 10:52] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:06, 11:40](1639 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:14, 11:01] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:56, 03:00](1848 MB) -PASS -- TEST 'regional_control_faster_intel' [07:35, 04:28](877 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [12:12, 10:29] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [32:37, 02:30](1583 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [32:38, 02:30](1582 MB) -PASS -- TEST 'control_stochy_debug_intel' [33:22, 03:13](785 MB) -PASS -- TEST 'control_lndp_debug_intel' [35:21, 02:54](785 MB) -PASS -- TEST 'control_csawmg_debug_intel' [38:26, 04:51](1088 MB) -PASS -- TEST 'control_ras_debug_intel' [35:21, 02:51](791 MB) -PASS -- TEST 'control_diag_debug_intel' [36:32, 03:14](1636 MB) -PASS -- TEST 'control_debug_p8_intel' [36:28, 02:55](1873 MB) -PASS -- TEST 'regional_debug_intel' [49:28, 16:35](899 MB) -PASS -- TEST 'rap_control_debug_intel' [39:22, 05:15](1164 MB) -PASS -- TEST 'hrrr_control_debug_intel' [38:22, 05:05](1162 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [39:22, 05:07](1162 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [40:22, 05:03](1164 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [39:22, 04:53](1164 MB) -PASS -- TEST 'rap_diag_debug_intel' [42:27, 05:13](1249 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [41:23, 05:13](1164 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [41:22, 05:08](1167 MB) -PASS -- TEST 'rap_lndp_debug_intel' [41:22, 05:00](1166 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [42:22, 04:57](1164 MB) -PASS -- TEST 'rap_noah_debug_intel' [31:22, 04:47](1161 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [28:24, 04:55](1162 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [29:24, 07:52](1159 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [24:21, 04:56](1162 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [28:25, 04:55](1162 MB) -PASS -- TEST 'rap_flake_debug_intel' [28:23, 05:02](1166 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [32:43, 08:21](1169 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:11, 07:49] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [37:50, 12:56](1667 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:11, 11:18] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [29:56, 03:47](1041 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [30:37, 05:40](864 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [32:35, 03:21](862 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [33:31, 05:12](918 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [32:31, 02:42](914 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [29:30, 03:25](858 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [16:33, 04:16](776 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:20, 01:51](746 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:17, 10:43] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [28:49, 01:57](1073 MB) -PASS -- TEST 'conus13km_2threads_intel' [10:43, 01:11](1063 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [10:38, 01:32](954 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 10:22] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [31:37, 04:14](895 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 06:25] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [31:21, 04:46](1043 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [31:21, 04:44](1037 MB) -PASS -- TEST 'conus13km_debug_intel' [39:47, 13:08](1125 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [37:44, 13:29](799 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [33:42, 07:49](1113 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [40:19, 13:05](1199 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:11, 06:17] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [30:22, 04:59](1065 MB) - -PASS -- COMPILE 'hafsw_intel' [14:11, 12:35] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [33:02, 05:02](715 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [32:25, 04:30](1074 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [36:17, 07:41](743 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [39:05, 11:59](773 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [38:20, 12:49](800 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [29:58, 05:31](463 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [31:17, 06:44](501 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [24:46, 02:54](397 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [29:30, 07:36](495 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [22:45, 03:52](508 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [21:50, 03:41](505 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [22:55, 04:43](583 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [15:34, 01:39](425 MB) -PASS -- TEST 'gnv1_nested_intel' [19:29, 05:04](1697 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:11, 07:45] ( 1467 warnings 1469 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [21:53, 13:04](613 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:48] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:25, 07:38](626 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:40, 07:48](808 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 12:44] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:26, 06:09](809 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:11, 11:50] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [12:03, 06:26](740 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:05, 06:31](720 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [26:25, 20:11](891 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [12:15, 11:05] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:18, 02:38](763 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:48, 01:35](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:19, 02:31](642 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:20, 02:29](641 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:19, 02:32](643 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:19, 02:37](751 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:18, 02:35](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:26](641 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:49, 06:07](693 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:45, 06:06](672 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:36](763 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:18, 04:39](2034 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 04:39](2033 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 05:36] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 05:49](749 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [12:11, 10:28] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:48, 02:53](763 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:23] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:55, 01:23](322 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:29, 02:38](461 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:55](460 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:45] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [03:55, 00:47](448 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [06:37, 00:22](255 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 10:44] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:52, 04:16](1902 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:11, 11:26] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [12:46, 09:24](1904 MB) - -PASS -- COMPILE 'atml_intel' [12:11, 11:08] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:50, 07:45](1869 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:49, 07:35](1869 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:28, 03:37](1027 MB) - -PASS -- COMPILE 'atml_debug_intel' [09:11, 07:27] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:46, 06:03](1911 MB) - -PASS -- COMPILE 'atmw_intel' [13:15, 11:40] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:39, 02:03](1879 MB) - -PASS -- COMPILE 'atmaero_intel' [12:14, 10:46] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [10:42, 05:44](3098 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [11:42, 06:05](2988 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:38, 06:08](2998 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:10, 07:31] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [26:38, 18:32](4403 MB) - -PASS -- COMPILE 'atm_fbh_intel' [13:10, 11:10] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [14:29, 09:29](832 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [19:12, 17:21] -PASS -- TEST 'cpld_control_gfsv17_intelllvm' [21:23, 13:50](1896 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [09:11, 08:05] -PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [36:47, 29:11](1923 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [20:12, 18:39] -PASS -- TEST 'cpld_control_sfs_intelllvm' [20:11, 13:35](1899 MB) - -PASS -- COMPILE 's2swa_intelllvm' [15:11, 14:04] -PASS -- TEST 'cpld_control_p8_intelllvm' [22:36, 15:10](3215 MB) +PASS -- COMPILE 's2swa_32bit_intel' [27:15, 25:44] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [21:09, 12:55](3186 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:15, 26:33] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [25:45, 14:17](1899 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:53, 14:46](1946 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:13, 07:11](1074 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:05, 15:42](1883 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:17, 22:50] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [24:59, 14:01](1895 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [22:16, 20:28] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [39:03, 28:21](1921 MB) + +PASS -- COMPILE 's2swa_intel' [26:19, 24:51] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [29:16, 16:25](3213 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [29:16, 16:23](3213 MB) +PASS -- TEST 'cpld_restart_p8_intel' [21:11, 09:46](3140 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [31:06, 16:29](3232 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [19:22, 10:05](3159 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [23:27, 14:23](3464 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [28:53, 16:25](3210 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [23:30, 13:58](3156 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [29:16, 16:16](3215 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:07, 10:39](3491 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [16:24, 11:20](3596 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [33:05, 21:22](4257 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:25, 12:26](4354 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [18:52, 10:11](3189 MB) + +PASS -- COMPILE 's2sw_intel' [24:17, 22:20] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [19:25, 08:20](1919 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [24:37, 12:53](1971 MB) + +PASS -- COMPILE 's2swa_debug_intel' [18:15, 16:44] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [36:25, 23:08](3265 MB) + +PASS -- COMPILE 's2sw_debug_intel' [20:14, 18:36] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [22:18, 10:23](1944 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:19, 15:33] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [15:20, 05:29](1964 MB) + +PASS -- COMPILE 's2s_intel' [21:18, 20:01] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [14:31, 05:39](2869 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [11:29, 02:32](2882 MB) +PASS -- TEST 'cpld_restart_c48_intel' [09:16, 01:00](2291 MB) + +PASS -- COMPILE 's2swa_faster_intel' [27:13, 25:13] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [22:34, 19:56](3211 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:23, 21:54] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [31:08, 27:49](1911 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:38, 12:25](1101 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [33:23, 29:20](1900 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:12, 13:34] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [39:10, 30:31](1946 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:17, 14:57] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:20, 03:54](652 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:52, 04:04](1551 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:00, 06:56](1560 MB) +PASS -- TEST 'control_latlon_intel' [07:43, 05:41](1553 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:12, 05:52](1560 MB) +PASS -- TEST 'control_c48_intel' [11:54, 09:57](1570 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:00, 07:03](695 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [17:53, 15:54](1573 MB) +PASS -- TEST 'control_c192_intel' [17:52, 15:30](1690 MB) +PASS -- TEST 'control_c384_intel' [31:41, 24:14](1970 MB) +PASS -- TEST 'control_c384gdas_intel' [24:22, 15:17](1169 MB) +PASS -- TEST 'control_stochy_intel' [08:47, 02:22](608 MB) +PASS -- TEST 'control_stochy_restart_intel' [08:42, 01:35](415 MB) +PASS -- TEST 'control_lndp_intel' [08:44, 02:12](609 MB) +PASS -- TEST 'control_iovr4_intel' [04:35, 02:52](608 MB) +PASS -- TEST 'control_iovr5_intel' [04:38, 02:52](608 MB) +PASS -- TEST 'control_p8_intel' [12:26, 04:48](1853 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [12:59, 03:55](1846 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [11:28, 04:02](1848 MB) +PASS -- TEST 'control_restart_p8_intel' [04:35, 02:06](1000 MB) +PASS -- TEST 'control_noqr_p8_intel' [12:23, 04:51](1840 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:31, 02:19](1008 MB) +PASS -- TEST 'control_decomp_p8_intel' [12:33, 04:44](1845 MB) +PASS -- TEST 'control_2threads_p8_intel' [11:44, 04:05](1924 MB) +PASS -- TEST 'control_p8_lndp_intel' [15:44, 07:13](1849 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [15:14, 04:58](1895 MB) +PASS -- TEST 'control_p8_mynn_intel' [12:43, 03:58](1848 MB) +PASS -- TEST 'merra2_thompson_intel' [13:51, 04:19](1847 MB) +PASS -- TEST 'regional_control_intel' [07:46, 05:10](883 MB) +PASS -- TEST 'regional_restart_intel' [04:39, 02:38](862 MB) +PASS -- TEST 'regional_decomp_intel' [11:50, 05:13](886 MB) +PASS -- TEST 'regional_2threads_intel' [09:48, 03:09](1013 MB) +PASS -- TEST 'regional_noquilt_intel' [10:59, 04:49](1207 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [11:05, 05:03](884 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:52, 05:02](876 MB) +PASS -- TEST 'regional_wofs_intel' [09:50, 06:42](1571 MB) + +PASS -- COMPILE 'rrfs_intel' [15:14, 13:51] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [17:27, 07:10](986 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:22, 04:16](1169 MB) +PASS -- TEST 'rap_decomp_intel' [17:28, 07:10](990 MB) +PASS -- TEST 'rap_2threads_intel' [16:53, 06:31](1072 MB) +PASS -- TEST 'rap_restart_intel' [06:26, 04:03](873 MB) +PASS -- TEST 'rap_sfcdiff_intel' [17:29, 07:05](988 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [17:28, 07:25](989 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:23, 05:03](877 MB) +PASS -- TEST 'hrrr_control_intel' [10:21, 03:58](987 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [10:21, 04:04](987 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [09:17, 03:21](1064 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:36, 02:13](816 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:24, 07:08](986 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:41, 08:49](1948 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:36, 08:38](1933 MB) + +PASS -- COMPILE 'csawmg_intel' [14:11, 12:59] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:47, 06:41](942 MB) +PASS -- TEST 'control_ras_intel' [05:33, 03:41](644 MB) + +PASS -- COMPILE 'wam_intel' [16:11, 14:31] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:09, 12:19](1640 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [18:13, 16:18] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:48, 03:51](1851 MB) +PASS -- TEST 'regional_control_faster_intel' [07:13, 04:43](863 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [18:16, 16:48] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:13, 03:24](1582 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:29, 03:03](1582 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:55, 03:17](784 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:54, 03:19](782 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:13, 04:38](1085 MB) +PASS -- TEST 'control_ras_debug_intel' [04:35, 03:02](793 MB) +PASS -- TEST 'control_diag_debug_intel' [06:27, 03:34](1643 MB) +PASS -- TEST 'control_debug_p8_intel' [06:20, 03:20](1876 MB) +PASS -- TEST 'regional_debug_intel' [19:23, 16:21](892 MB) +PASS -- TEST 'rap_control_debug_intel' [07:49, 05:18](1170 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:44, 05:23](1158 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:45, 05:35](1162 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:50, 05:35](1162 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:01, 05:30](1163 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:10, 05:37](1249 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:43, 05:28](1164 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:39, 05:36](1164 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:44, 05:27](1165 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:49, 05:16](1163 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:48, 05:00](1159 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:48, 05:37](1161 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:47, 07:58](1159 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:51, 05:13](1161 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:48, 05:28](1166 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:54, 05:29](1167 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:27, 08:30](1171 MB) + +PASS -- COMPILE 'wam_debug_intel' [11:14, 09:31] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:44, 13:32](1663 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:15, 12:55] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:44, 03:58](1038 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:21, 06:15](866 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:23, 03:31](868 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:27, 05:20](920 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:00, 02:47](914 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:09, 04:01](860 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [18:19, 04:39](781 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:43, 01:59](749 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [23:18, 21:23] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:05, 02:36](1077 MB) +PASS -- TEST 'conus13km_2threads_intel' [14:36, 01:10](1062 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [15:36, 01:51](955 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [18:20, 16:49] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:17, 04:29](894 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:15, 09:44] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:45, 05:11](1041 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:49, 05:09](1041 MB) +PASS -- TEST 'conus13km_debug_intel' [16:20, 13:41](1127 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:37, 14:03](801 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:36, 08:00](1115 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:38, 13:39](1193 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [16:16, 14:28] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:33, 05:07](1064 MB) + +PASS -- COMPILE 'hafsw_intel' [22:15, 20:12] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:40, 05:18](716 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:52, 04:41](1083 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:02, 08:05](745 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:43, 11:34](772 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:13, 13:21](796 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:26, 05:26](474 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:43, 07:03](502 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [09:11, 02:57](395 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:53, 07:50](490 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [12:54, 03:55](508 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [17:26, 03:45](507 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [18:46, 04:44](585 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [13:57, 01:36](424 MB) +PASS -- TEST 'gnv1_nested_intel' [21:33, 06:18](1700 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [16:18, 14:47] ( 1467 warnings 1469 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [29:23, 12:58](613 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:13, 17:31] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [21:55, 07:45](630 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [25:08, 08:43](810 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [21:15, 19:20] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [22:46, 06:11](809 MB) + +PASS -- COMPILE 'hafs_all_intel' [22:15, 20:48] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [21:57, 06:36](735 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [22:48, 06:43](719 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [38:32, 20:11](894 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [17:12, 15:52] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [16:27, 02:43](751 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:57, 01:36](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [19:54, 02:38](642 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [19:31, 02:28](643 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [18:37, 02:30](643 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [18:37, 02:37](752 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [18:38, 02:37](751 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [17:35, 02:27](643 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [19:33, 06:08](694 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [19:37, 06:15](671 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [14:23, 02:37](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [15:35, 04:53](2032 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [15:36, 04:40](2033 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [13:16, 11:42] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [16:29, 05:32](748 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [14:17, 12:47] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [12:37, 02:37](751 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:15, 03:41] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [11:41, 01:55](322 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [11:41, 01:22](460 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:59, 01:27](462 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [05:14, 03:18] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [10:31, 00:40](445 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [04:43, 00:41](255 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:11, 14:21] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [11:57, 04:15](1917 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:12, 13:42] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [15:27, 08:42](1901 MB) + +PASS -- COMPILE 'atml_intel' [17:18, 15:21] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [14:39, 09:38](1876 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [14:31, 09:34](1880 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:47, 04:48](1014 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:14, 12:09] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:26, 07:33](1903 MB) + +PASS -- COMPILE 'atmw_intel' [15:15, 13:11] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:05, 03:21](1878 MB) + +PASS -- COMPILE 'atmaero_intel' [13:12, 11:49] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [12:02, 07:05](3099 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [11:10, 08:01](2989 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:41, 08:29](2995 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [11:15, 09:36] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:50, 18:23](4439 MB) + +PASS -- COMPILE 'atm_fbh_intel' [14:11, 13:06] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [12:28, 09:34](829 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [24:16, 22:24] +PASS -- TEST 'cpld_control_gfsv17_intelllvm' [18:41, 14:33](1900 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [13:12, 11:30] +PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [33:28, 28:51](1931 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [22:16, 20:12] +PASS -- TEST 'cpld_control_sfs_intelllvm' [17:59, 14:03](1893 MB) + +PASS -- COMPILE 's2swa_intelllvm' [17:17, 16:03] +PASS -- TEST 'cpld_control_p8_intelllvm' [22:01, 16:46](3216 MB) SYNOPSIS: -Starting Date/Time: 20241128 18:15:03 -Ending Date/Time: 20241128 21:09:27 -Total Time: 02h:55m:17s +Starting Date/Time: 20241204 08:58:37 +Ending Date/Time: 20241204 11:27:16 +Total Time: 02h:30m:33s Compiles Completed: 47/47 Tests Completed: 193/193 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 5f69328569..a1f64df572 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,21 +1,21 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -e4d3bebab002b60b5af711bfcbbda2307d0925bb +1e6fc62a38e1b61538e203a7f297583333a18d2a Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - cf01f337a0162dc05889288e19bc9c4811ace762 CICE-interface/CICE (remotes/origin/sync_cice_2024-11) + 513f8d153924e18ae0f91f5440195d15210a489e CICE-interface/CICE (CICE6.0.0-391-g513f8d1) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b769849792dbe799dc1a2e29942864f880ee8445 FV3 (heads/develop) + 7e7719927a80104d1bb4badf790e509f1e4d39b8 FV3 (remotes/origin/rrfsv1-to-ufs/dev4) 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) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) + 615236be21904e180c12c4babfde89fdb448a2cf WW3 (remotes/origin/bug/addPIOswitch) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -26,388 +26,388 @@ 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-20241127 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_1414926 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241203 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_320435 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:11, 12:46] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:19, 11:32](3311 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 16:31] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:04, 19:43](1980 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:18, 20:37](2163 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:08, 08:13](1262 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:59, 22:58](1876 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:11, 16:35] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [21:45, 19:12](1960 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:10, 05:52] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:03, 26:22](1923 MB) - -PASS -- COMPILE 's2swa_intel' [14:11, 13:01] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:16, 13:58](3353 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:24, 13:51](3343 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:21, 07:55](3237 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:16, 14:00](3341 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:21, 07:17](3270 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [17:12, 15:06](3630 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [16:16, 14:03](3343 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:18, 11:39](3206 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:23, 13:56](3352 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:03, 10:16](3525 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:36, 06:24](3615 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [22:58, 16:00](4367 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:35, 08:49](4379 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:11, 07:15](3289 MB) - -PASS -- COMPILE 's2sw_intel' [14:11, 12:12] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [12:06, 09:12](1979 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:11, 10:56](2052 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:10, 05:52] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [26:08, 23:15](3356 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:10, 05:33] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:59, 10:12](1977 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:11, 12:55] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:25, 11:33](3318 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 16:27] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:03, 19:34](1983 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:23, 20:46](2173 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:12, 08:13](1259 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:01, 23:12](1870 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:11, 16:02] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:49, 19:14](1955 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:10, 06:02] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:06, 26:27](1917 MB) + +PASS -- COMPILE 's2swa_intel' [14:11, 13:02] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:17, 13:58](3346 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:31, 13:59](3353 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:34, 07:27](3254 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:18, 13:59](3368 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:33, 07:26](3271 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [16:16, 13:16](3626 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:16, 14:07](3336 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:22, 11:40](3217 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:32, 14:07](3351 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:10, 10:17](3525 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:44, 06:30](3620 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [23:58, 16:04](4297 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:39, 09:07](4373 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:13, 07:27](3292 MB) + +PASS -- COMPILE 's2sw_intel' [14:11, 12:09] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [12:11, 09:11](1982 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:21, 11:13](2032 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:10, 06:02] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [25:09, 22:39](3419 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:44] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:57, 09:54](2004 MB) PASS -- COMPILE 's2s_aoflux_intel' [13:11, 11:24] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:57, 04:20](2033 MB) - -PASS -- COMPILE 's2s_intel' [13:11, 11:36] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:39, 07:52](3042 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:40, 02:25](3036 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:37, 01:25](2481 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:11, 16:29] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:05, 13:22](3346 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:02] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:07, 28:04](2016 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:12, 13:49](1286 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:02, 32:56](1918 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:27] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:10, 29:34](1956 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:11, 10:54] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:20, 03:19](704 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:42, 03:13](1582 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:45, 03:15](1594 MB) -PASS -- TEST 'control_latlon_intel' [05:38, 03:11](1584 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:47, 03:12](1591 MB) -PASS -- TEST 'control_c48_intel' [13:40, 11:28](1720 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:24, 06:31](847 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [13:39, 11:34](1730 MB) -PASS -- TEST 'control_c192_intel' [13:50, 11:59](1768 MB) -PASS -- TEST 'control_c384_intel' [16:34, 13:32](1990 MB) -PASS -- TEST 'control_c384gdas_intel' [11:35, 08:00](1383 MB) -PASS -- TEST 'control_stochy_intel' [03:22, 01:39](659 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:26, 00:59](508 MB) -PASS -- TEST 'control_lndp_intel' [03:21, 01:33](661 MB) -PASS -- TEST 'control_iovr4_intel' [04:24, 02:28](658 MB) -PASS -- TEST 'control_iovr5_intel' [04:23, 02:28](655 MB) -PASS -- TEST 'control_p8_intel' [05:49, 03:41](1881 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:52, 03:07](1880 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:44, 03:36](1886 MB) -PASS -- TEST 'control_restart_p8_intel' [03:43, 02:01](1131 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:48, 03:35](1881 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:50, 02:01](1163 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:44, 03:43](1868 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:44, 03:30](1960 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:40, 06:34](1873 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:50, 04:12](1945 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:50, 03:05](1902 MB) -PASS -- TEST 'merra2_thompson_intel' [05:49, 03:22](1892 MB) -PASS -- TEST 'regional_control_intel' [07:34, 05:20](1129 MB) -PASS -- TEST 'regional_restart_intel' [04:34, 02:51](1090 MB) -PASS -- TEST 'regional_decomp_intel' [07:32, 05:36](1115 MB) -PASS -- TEST 'regional_2threads_intel' [05:33, 03:23](1113 MB) -PASS -- TEST 'regional_noquilt_intel' [07:36, 05:18](1423 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:37, 05:21](1127 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:34, 05:18](1124 MB) -PASS -- TEST 'regional_wofs_intel' [08:35, 07:05](1902 MB) - -PASS -- COMPILE 'rrfs_intel' [12:11, 10:15] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:38, 07:49](1113 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:57, 04:06](1272 MB) -PASS -- TEST 'rap_decomp_intel' [10:34, 08:10](1032 MB) -PASS -- TEST 'rap_2threads_intel' [09:32, 07:24](1189 MB) -PASS -- TEST 'rap_restart_intel' [05:42, 04:04](1104 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:38, 07:47](1111 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:35, 08:13](1042 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:40, 05:52](1125 MB) -PASS -- TEST 'hrrr_control_intel' [05:38, 04:00](1037 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:33, 04:07](1032 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:30, 03:42](1093 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:26, 02:11](990 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:43, 07:40](1109 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:27, 09:33](1975 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:24, 09:13](2053 MB) - -PASS -- COMPILE 'csawmg_intel' [11:11, 09:48] -PASS -- TEST 'control_csawmg_intel' [07:35, 06:08](1019 MB) -PASS -- TEST 'control_ras_intel' [05:20, 03:16](747 MB) - -PASS -- COMPILE 'wam_intel' [11:11, 10:02] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:44, 11:13](1662 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:13] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:45, 02:49](1883 MB) -PASS -- TEST 'regional_control_faster_intel' [06:32, 04:50](1126 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 07:24] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:45, 02:13](1613 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:49, 02:08](1610 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:23, 03:07](831 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:23, 02:48](831 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:40, 04:19](1142 MB) -PASS -- TEST 'control_ras_debug_intel' [04:23, 02:48](828 MB) -PASS -- TEST 'control_diag_debug_intel' [04:48, 02:49](1687 MB) -PASS -- TEST 'control_debug_p8_intel' [04:45, 02:39](1908 MB) -PASS -- TEST 'regional_debug_intel' [19:40, 17:33](1099 MB) -PASS -- TEST 'rap_control_debug_intel' [07:24, 05:13](1207 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:25, 04:47](1209 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:22, 05:00](1213 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:20, 05:12](1196 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 04:59](1207 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:32, 05:07](1300 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:21, 05:06](1211 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:21, 05:05](1214 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:22, 04:57](1217 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:22, 05:08](1209 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:57](1218 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:21, 04:55](1211 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:21, 08:04](1212 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:22, 04:54](1208 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:23, 04:54](1216 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:22, 04:56](1209 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:36, 08:30](1214 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:10, 04:16] -PASS -- TEST 'control_csawmg_debug_gnu' [04:35, 02:18](720 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:10, 04:35] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:44, 13:31](1686 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:10, 09:55] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:57, 03:53](1134 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:38, 06:31](1045 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:34, 03:25](986 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:30, 06:13](1094 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:29, 03:11](947 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:29, 03:36](937 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:38, 04:54](1035 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:26, 01:51](927 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:10, 09:51] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:50, 02:02](1193 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:39, 00:49](1107 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:12](1101 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:10, 10:02] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:37, 04:14](981 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:10, 04:33] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:55](1086 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:21, 04:49](1089 MB) -PASS -- TEST 'conus13km_debug_intel' [15:48, 13:48](1231 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:42, 14:18](974 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:42, 07:55](1164 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:41, 14:17](1308 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 04:25] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:21, 05:07](1144 MB) - -PASS -- COMPILE 'hafsw_intel' [13:10, 11:48] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:14, 04:55](724 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:30, 05:31](1112 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:22, 06:56](816 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:17, 14:43](843 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:27, 18:25](872 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:54, 05:32](490 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:20, 06:41](507 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:41, 02:38](376 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:52, 07:06](523 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:41, 03:39](518 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:43, 03:29](516 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:48, 04:04](571 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:26, 01:13](401 MB) -PASS -- TEST 'gnv1_nested_intel' [06:24, 04:04](1724 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:10, 04:49] ( 1462 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:50, 12:56](584 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:10, 11:16] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:56, 10:14](661 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:02, 10:14](735 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:10, 11:31] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:22, 08:09](716 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:10, 10:44] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:13, 06:24](813 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:13, 06:28](793 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:54, 16:15](1214 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:33] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:16, 02:47](1151 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:39](1109 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:42](1029 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:44](1024 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:16, 02:40](1033 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:16, 02:43](1158 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:16, 02:51](1152 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:16, 02:54](1011 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:14, 06:10](1065 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:09, 06:24](1056 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:14, 02:46](1169 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:17, 03:58](2401 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:17, 03:53](2532 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:11] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 06:22](1085 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:24] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:16, 02:45](1161 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:14] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:28, 00:45](258 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:46](331 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:23, 00:29](327 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:23] -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:29, 00:30](564 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:30, 00:17](454 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 10:48] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:57, 03:40](1986 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 10:16] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:49, 07:56](1981 MB) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:58, 04:24](2040 MB) + +PASS -- COMPILE 's2s_intel' [13:11, 11:47] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:40, 08:03](2988 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:41, 02:24](3032 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:38, 01:24](2488 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:10, 16:37] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:12, 13:35](3359 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:10, 15:37] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:06, 28:04](2024 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:13, 13:46](1272 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [36:06, 33:25](1943 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:10, 05:24] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:13, 29:17](1952 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:11, 10:49] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:25, 03:21](697 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:46, 03:11](1589 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:49, 03:17](1589 MB) +PASS -- TEST 'control_latlon_intel' [05:40, 03:14](1582 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:47, 03:15](1587 MB) +PASS -- TEST 'control_c48_intel' [13:42, 11:32](1720 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:28, 06:31](852 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [13:40, 11:34](1729 MB) +PASS -- TEST 'control_c192_intel' [13:53, 11:57](1754 MB) +PASS -- TEST 'control_c384_intel' [16:54, 13:33](1995 MB) +PASS -- TEST 'control_c384gdas_intel' [12:58, 08:09](1379 MB) +PASS -- TEST 'control_stochy_intel' [03:24, 01:38](655 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:26, 00:59](503 MB) +PASS -- TEST 'control_lndp_intel' [03:23, 01:53](658 MB) +PASS -- TEST 'control_iovr4_intel' [04:32, 02:31](656 MB) +PASS -- TEST 'control_iovr5_intel' [04:32, 02:29](652 MB) +PASS -- TEST 'control_p8_intel' [06:00, 03:48](1893 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:03, 03:10](1890 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:49, 03:36](1875 MB) +PASS -- TEST 'control_restart_p8_intel' [04:47, 02:14](1121 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:49, 03:38](1877 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:52, 02:00](1171 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:45, 03:44](1866 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:46, 03:32](1963 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:44, 06:35](1860 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:49, 04:08](1951 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:50, 03:07](1901 MB) +PASS -- TEST 'merra2_thompson_intel' [05:53, 03:23](1898 MB) +PASS -- TEST 'regional_control_intel' [07:36, 05:22](1125 MB) +PASS -- TEST 'regional_restart_intel' [04:35, 02:53](1099 MB) +PASS -- TEST 'regional_decomp_intel' [07:33, 05:41](1117 MB) +PASS -- TEST 'regional_2threads_intel' [05:34, 03:25](1119 MB) +PASS -- TEST 'regional_noquilt_intel' [07:39, 05:18](1428 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:38, 05:18](1111 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:34, 05:19](1126 MB) +PASS -- TEST 'regional_wofs_intel' [08:37, 06:52](1907 MB) + +PASS -- COMPILE 'rrfs_intel' [12:12, 10:12] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:38, 07:47](1098 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:04, 04:06](1268 MB) +PASS -- TEST 'rap_decomp_intel' [10:33, 08:11](1033 MB) +PASS -- TEST 'rap_2threads_intel' [09:32, 07:34](1187 MB) +PASS -- TEST 'rap_restart_intel' [05:42, 04:05](1101 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:37, 07:46](1112 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:34, 08:11](1038 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:40, 05:52](1124 MB) +PASS -- TEST 'hrrr_control_intel' [05:42, 04:01](1038 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:33, 04:09](1034 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:31, 03:43](1094 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:26, 02:09](997 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:41, 07:45](1098 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:23, 09:19](1980 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:24, 09:06](2070 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 10:02] +PASS -- TEST 'control_csawmg_intel' [08:38, 06:11](1020 MB) +PASS -- TEST 'control_ras_intel' [05:20, 03:16](744 MB) + +PASS -- COMPILE 'wam_intel' [11:11, 10:06] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:46, 11:12](1666 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:17] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:45, 02:49](1884 MB) +PASS -- TEST 'regional_control_faster_intel' [06:32, 04:53](1120 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 07:32] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:46, 02:13](1608 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:49, 02:09](1613 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:23, 03:08](832 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:46](832 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:39, 04:22](1139 MB) +PASS -- TEST 'control_ras_debug_intel' [04:22, 02:48](834 MB) +PASS -- TEST 'control_diag_debug_intel' [04:50, 02:45](1683 MB) +PASS -- TEST 'control_debug_p8_intel' [04:46, 02:35](1909 MB) +PASS -- TEST 'regional_debug_intel' [19:40, 17:52](1109 MB) +PASS -- TEST 'rap_control_debug_intel' [06:25, 05:04](1213 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:21, 04:49](1211 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:21, 05:00](1219 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:20, 04:57](1216 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 04:57](1209 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:35, 05:24](1294 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 05:05](1214 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:19, 05:03](1216 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:21, 05:10](1218 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:21, 05:09](1216 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:21, 05:03](1218 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:21, 05:00](1210 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:21, 08:13](1217 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:20, 04:55](1213 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:22, 05:06](1210 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:21, 05:02](1213 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:37, 09:02](1215 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:11, 04:17] +PASS -- TEST 'control_csawmg_debug_gnu' [04:40, 02:21](720 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:10, 04:31] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:44, 13:36](1675 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 09:54] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:59, 03:53](1142 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:36, 06:30](1054 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:37, 03:25](990 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:29, 06:12](1100 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:29, 03:10](951 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:29, 03:36](922 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:40, 04:55](1029 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:26, 01:53](929 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 10:00] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:51, 02:00](1193 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:42, 00:50](1105 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:12](1096 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 10:05] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:38, 04:13](988 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:10, 04:35] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:22, 04:56](1096 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 04:47](1092 MB) +PASS -- TEST 'conus13km_debug_intel' [15:46, 14:02](1235 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:44, 14:12](933 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:40, 07:59](1158 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:39, 13:50](1308 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:24] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:22, 05:12](1141 MB) + +PASS -- COMPILE 'hafsw_intel' [13:11, 11:49] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:17, 04:59](715 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:32, 05:28](1108 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:23, 06:54](820 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:15, 15:01](843 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:27, 18:32](866 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:53, 05:35](491 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:18, 06:44](511 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:49, 02:42](372 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:37, 07:21](482 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:48, 03:56](518 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:45, 03:43](520 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:54, 04:06](572 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:28, 01:12](401 MB) +PASS -- TEST 'gnv1_nested_intel' [07:34, 04:03](1739 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:11, 04:57] ( 1462 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:51, 13:00](575 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:20] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:57, 10:19](660 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:02, 10:20](726 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 11:52] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:30, 08:14](723 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:11, 10:45] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:15, 06:39](820 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:16, 06:43](802 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:59, 16:26](1156 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:14, 06:37] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:48](1160 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:42](1111 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:43](1029 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:40](1033 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:44](1038 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 02:50](1160 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 02:46](1165 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:19, 02:39](1018 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:13, 06:21](1071 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:07, 06:20](1046 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 02:47](1158 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:17, 03:56](2462 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 04:00](2515 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:14] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:17](1090 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:25] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:47](1161 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:00] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:28, 00:45](262 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:50](331 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:24, 00:31](322 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:18] +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:30, 00:33](558 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:31, 00:17](455 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 11:01] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:00, 03:45](1996 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 10:20] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:59, 08:00](1961 MB) PASS -- COMPILE 'atml_intel' [12:11, 10:53] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:53, 04:20](1857 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:51, 04:14](1865 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:42, 02:20](1097 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:10, 05:20] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:48, 05:47](1885 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 10:46] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:44, 01:55](1914 MB) - -PASS -- COMPILE 'atmaero_intel' [12:11, 10:15] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:52, 04:07](3192 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:51, 04:58](3069 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:38, 05:29](3049 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:10, 04:29] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_fbh_intel' [11:11, 09:51] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:26, 11:45](1087 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:11, 06:42] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:36, 08:26](1054 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:11, 06:43] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:36, 04:55](982 MB) - -PASS -- COMPILE 'atm_gnu' [06:11, 04:27] -PASS -- TEST 'control_c48_gnu' [11:36, 09:32](1511 MB) -PASS -- TEST 'control_stochy_gnu' [05:20, 03:31](490 MB) -PASS -- TEST 'control_ras_gnu' [06:20, 04:55](505 MB) -PASS -- TEST 'control_p8_gnu' [07:50, 05:12](1456 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [07:46, 05:10](1447 MB) -PASS -- TEST 'control_flake_gnu' [12:23, 10:32](539 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:11, 04:07] -PASS -- TEST 'rap_control_gnu' [13:29, 11:30](808 MB) -PASS -- TEST 'rap_decomp_gnu' [13:29, 11:35](812 MB) -PASS -- TEST 'rap_2threads_gnu' [12:35, 10:22](922 MB) -PASS -- TEST 'rap_restart_gnu' [07:40, 05:50](580 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [13:35, 11:23](807 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:30, 11:42](835 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:39, 08:31](578 MB) -PASS -- TEST 'hrrr_control_gnu' [07:34, 05:52](836 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:30, 05:50](827 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [07:29, 05:18](905 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:29, 05:51](802 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:29, 03:01](560 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:27, 02:57](652 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [13:45, 11:09](806 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:11, 03:54] -PASS -- TEST 'control_csawmg_gnu' [10:35, 08:29](737 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:27] -PASS -- TEST 'control_diag_debug_gnu' [03:40, 01:36](1268 MB) -PASS -- TEST 'regional_debug_gnu' [13:35, 11:34](750 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:21, 02:38](815 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:21, 02:33](814 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:21, 02:36](819 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:20, 02:37](818 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:32, 02:50](898 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:21, 04:09](817 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:20, 02:39](818 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:20, 02:38](815 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:19, 01:35](455 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:19, 01:45](450 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:37, 01:37](1439 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:22, 02:40](822 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:23, 02:51](819 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:38, 04:33](822 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:21] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:06] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:33, 09:43](697 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:28, 05:07](695 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:33, 08:56](742 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:31, 04:43](737 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:28, 05:14](691 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:34, 07:10](546 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:25, 02:36](531 MB) -PASS -- TEST 'conus13km_control_gnu' [05:50, 03:08](866 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:41, 05:22](866 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:42, 01:48](558 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:24] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:35, 05:50](719 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:26] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:22, 02:30](708 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:21, 02:31](702 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:44, 06:55](879 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:40, 06:52](566 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [09:37, 07:44](887 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:37, 06:59](948 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:26] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:21, 02:36](725 MB) - -PASS -- COMPILE 's2swa_gnu' [18:11, 16:36] - -PASS -- COMPILE 's2s_gnu' [17:11, 15:48] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [22:02, 19:45](1507 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [05:11, 03:07] - -PASS -- COMPILE 's2sw_pdlib_gnu' [18:11, 16:10] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [33:59, 31:49](1454 MB) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:58, 04:21](1849 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:53, 04:13](1860 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:41, 02:21](1103 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:11, 05:44] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:51, 05:48](1892 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 10:48] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:46, 01:55](1915 MB) + +PASS -- COMPILE 'atmaero_intel' [12:11, 10:25] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:53, 04:09](3175 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:53, 04:54](3093 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:43, 04:59](3105 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:33] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_fbh_intel' [11:11, 09:39] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:26, 11:21](1108 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:11, 06:32] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:41, 08:22](1053 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:11, 06:47] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:37, 04:56](986 MB) + +PASS -- COMPILE 'atm_gnu' [06:10, 04:29] +PASS -- TEST 'control_c48_gnu' [11:37, 09:29](1512 MB) +PASS -- TEST 'control_stochy_gnu' [05:20, 03:26](492 MB) +PASS -- TEST 'control_ras_gnu' [06:19, 04:59](498 MB) +PASS -- TEST 'control_p8_gnu' [07:53, 05:17](1455 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [07:48, 05:10](1457 MB) +PASS -- TEST 'control_flake_gnu' [12:24, 10:31](536 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:10, 04:08] +PASS -- TEST 'rap_control_gnu' [13:31, 11:25](840 MB) +PASS -- TEST 'rap_decomp_gnu' [13:30, 11:35](807 MB) +PASS -- TEST 'rap_2threads_gnu' [12:35, 10:26](918 MB) +PASS -- TEST 'rap_restart_gnu' [07:38, 05:48](575 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:35, 11:28](843 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:31, 11:39](808 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:39, 08:29](582 MB) +PASS -- TEST 'hrrr_control_gnu' [07:45, 05:52](806 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:30, 05:54](794 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [07:30, 05:17](906 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:29, 05:55](808 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:24, 03:02](562 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:23, 03:00](651 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [13:38, 11:10](806 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:10, 03:51] +PASS -- TEST 'control_csawmg_gnu' [10:33, 08:32](738 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:10, 06:23] +PASS -- TEST 'control_diag_debug_gnu' [03:38, 01:38](1267 MB) +PASS -- TEST 'regional_debug_gnu' [12:34, 10:34](741 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:23, 02:37](817 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:22, 02:35](814 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:20, 02:38](816 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:20, 02:40](816 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:32, 02:48](902 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:19, 04:08](815 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:20, 02:40](825 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:19, 02:37](813 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:19, 01:36](453 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:19, 01:45](447 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:40, 01:36](1440 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:22, 02:36](823 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:21, 02:44](823 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:35, 04:25](825 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:10, 02:22] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:10, 04:03] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:28, 09:47](702 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:33, 05:08](699 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:33, 08:58](739 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:29, 04:44](740 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:27, 05:16](690 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:34, 07:16](552 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:24, 02:38](535 MB) +PASS -- TEST 'conus13km_control_gnu' [05:49, 03:09](867 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:46, 05:40](867 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:43, 01:48](550 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:10, 09:53] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:36, 05:52](722 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:10, 06:25] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:20, 02:33](710 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:21, 02:31](709 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:45, 06:55](884 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:40, 06:55](573 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [09:35, 07:49](890 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:36, 06:51](957 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:10, 06:23] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:20, 02:37](733 MB) + +PASS -- COMPILE 's2swa_gnu' [18:11, 16:20] + +PASS -- COMPILE 's2s_gnu' [17:11, 15:59] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [21:06, 18:34](1496 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:10, 02:58] + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 15:59] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [34:08, 31:57](1463 MB) PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 02:51] -PASS -- COMPILE 'datm_cdeps_gnu' [17:10, 15:32] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:17, 03:04](695 MB) +PASS -- COMPILE 'datm_cdeps_gnu' [17:11, 15:29] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:16, 03:03](697 MB) SYNOPSIS: -Starting Date/Time: 20241128 22:41:33 -Ending Date/Time: 20241129 00:39:40 -Total Time: 01h:58m:23s +Starting Date/Time: 20241204 13:06:09 +Ending Date/Time: 20241204 15:05:01 +Total Time: 01h:59m:10s Compiles Completed: 61/61 Tests Completed: 249/249 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 6293fe5cf4..32045bdc51 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,447 +1,20 @@ -====START OF hercules REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -28fb4f657a3f626c25c1507214426312b5ef699e - -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) - cf01f337a0162dc05889288e19bc9c4811ace762 CICE-interface/CICE (remotes/origin/sync_cice_2024-11) - 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b769849792dbe799dc1a2e29942864f880ee8445 FV3 (heads/develop) - e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) - b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 6e0467ad07a2231d298dc3be91a923c934354a7f FV3/ccpp/physics (EP4-1071-g6e0467ad) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) --179cae1dd84401cf25d250bd9102e66560a9d328 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) - 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) - 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20241127 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/jongkim/FV3_RT/rt_553559 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-r) - USE ROCOTO - -PASS -- COMPILE s2swa_32bit_intel [12:43, 12:43](1 warnings,11 remarks) -PASS -- TEST cpld_control_p8_mixedmode_intel [16:19, 15:30] (2132128 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_intel [17:34, 17:34](1 warnings,11 remarks) -PASS -- TEST cpld_control_gfsv17_intel [18:33, 17:38] (1993096 MB) -PASS -- TEST cpld_control_gfsv17_iau_intel [19:32, 18:38] (2271864 MB) -PASS -- TEST cpld_restart_gfsv17_intel [08:00, 06:53] (1370368 MB) -PASS -- TEST cpld_mpi_gfsv17_intel [19:32, 18:33] (1917652 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [17:29, 17:29](1 warnings,11 remarks) -PASS -- TEST cpld_control_sfs_intel [17:30, 16:51] (1974400 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [06:48, 06:48](1520 warnings,1988 remarks) -PASS -- TEST cpld_debug_gfsv17_intel [26:13, 25:25] (1969996 MB) - -PASS -- COMPILE s2swa_intel [12:20, 12:20](1 warnings,11 remarks) -PASS -- TEST cpld_control_p8_intel [15:52, 15:06] (2212788 MB) -PASS -- TEST cpld_control_p8.v2.sfc_intel [15:51, 15:04] (2213708 MB) -PASS -- TEST cpld_restart_p8_intel [08:29, 07:34] (1995532 MB) -PASS -- TEST cpld_control_qr_p8_intel [15:18, 14:27] (2228404 MB) -PASS -- TEST cpld_restart_qr_p8_intel [08:49, 07:46] (1737308 MB) -PASS -- TEST cpld_2threads_p8_intel [17:15, 16:28] (2563056 MB) -PASS -- TEST cpld_decomp_p8_intel [15:12, 14:27] (2182832 MB) -PASS -- TEST cpld_mpi_p8_intel [13:22, 12:48] (2101424 MB) -PASS -- TEST cpld_control_ciceC_p8_intel [15:39, 14:51] (2208660 MB) -PASS -- TEST cpld_control_c192_p8_intel [18:27, 17:03] (2992468 MB) -PASS -- TEST cpld_restart_c192_p8_intel [07:58, 06:35] (2921260 MB) -PASS -- TEST cpld_bmark_p8_intel [23:30, 18:35] (3852480 MB) -PASS -- TEST cpld_restart_bmark_p8_intel [14:52, 09:17] (3644288 MB) -PASS -- TEST cpld_s2sa_p8_intel [07:54, 07:08] (2100508 MB) - -PASS -- COMPILE s2sw_intel [11:38, 11:38](1 warnings,11 remarks) -PASS -- TEST cpld_control_noaero_p8_intel [14:19, 13:34] (2022224 MB) -PASS -- TEST cpld_control_nowave_noaero_p8_intel [10:59, 10:21] (2099716 MB) - -PASS -- COMPILE s2swa_debug_intel [06:42, 06:42](1410 warnings,1218 remarks) -PASS -- TEST cpld_debug_p8_intel [22:12, 21:26] (2229196 MB) - -PASS -- COMPILE s2sw_debug_intel [04:42, 04:42](1410 warnings,1218 remarks) -PASS -- TEST cpld_debug_noaero_p8_intel [09:03, 08:21] (2050340 MB) - -PASS -- COMPILE s2s_aoflux_intel [09:29, 09:29],3 remarks) -PASS -- TEST cpld_control_noaero_p8_agrid_intel [05:21, 04:39] (2070624 MB) - -PASS -- COMPILE s2s_intel [09:42, 09:42](1 warnings,3 remarks) -PASS -- TEST cpld_control_c48_intel [06:20, 05:53] (3038056 MB) -PASS -- TEST cpld_warmstart_c48_intel [02:20, 01:50] (3012352 MB) -PASS -- TEST cpld_restart_c48_intel [01:24, 01:04] (2474392 MB) - -PASS -- COMPILE s2swa_faster_intel [12:09, 12:09](1 warnings,11 remarks) -PASS -- TEST cpld_control_p8_faster_intel [14:29, 13:54] (2192360 MB) - -PASS -- COMPILE s2sw_pdlib_intel [15:10, 15:10](1 warnings,11 remarks) -PASS -- TEST cpld_control_pdlib_p8_intel [23:23, 22:44] (2070768 MB) -PASS -- TEST cpld_restart_pdlib_p8_intel [12:04, 11:22] (1421444 MB) -PASS -- TEST cpld_mpi_pdlib_p8_intel [26:18, 25:41] (1994064 MB) - -PASS -- COMPILE s2sw_pdlib_debug_intel [05:14, 05:14](1520 warnings,1988 remarks) -PASS -- TEST cpld_debug_pdlib_p8_intel [28:21, 27:41] (2019272 MB) - -PASS -- COMPILE atm_dyn32_intel [09:39, 09:38](1 warnings,1 remarks) -PASS -- TEST control_flake_intel [03:02, 02:51] (712540 MB) -PASS -- TEST control_CubedSphereGrid_intel [03:04, 02:41] (1599404 MB) -PASS -- TEST control_CubedSphereGrid_parallel_intel [04:08, 03:40] (1592960 MB) -PASS -- TEST control_latlon_intel [03:05, 02:45] (1582116 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_intel [03:12, 02:44] (1592800 MB) -PASS -- TEST control_c48_intel [10:53, 10:34] (1704104 MB) -PASS -- TEST control_c48.v2.sfc_intel [06:13, 06:01] (833868 MB) -PASS -- TEST control_c192_intel [10:41, 10:11] (1754152 MB) -PASS -- TEST control_c384_intel [12:56, 11:51] (2008056 MB) -PASS -- TEST control_c384gdas_intel [08:33, 07:11] (1511804 MB) -PASS -- TEST control_stochy_intel [01:37, 01:26] (663048 MB) -PASS -- TEST control_stochy_restart_intel [01:09, 00:54] (532488 MB) -PASS -- TEST control_lndp_intel [01:34, 01:21] (659100 MB) -PASS -- TEST control_iovr4_intel [02:23, 02:11] (662408 MB) -PASS -- TEST control_iovr5_intel [02:17, 02:09] (650804 MB) -PASS -- TEST control_p8_intel [03:52, 03:17] (1884444 MB) -PASS -- TEST control_p8.v2.sfc_intel [03:15, 02:41] (1900796 MB) -PASS -- TEST control_p8_ugwpv1_intel [03:54, 03:14] (1887280 MB) -PASS -- TEST control_restart_p8_intel [02:22, 01:48] (1151360 MB) -PASS -- TEST control_noqr_p8_intel [04:31, 04:05] (1875280 MB) -PASS -- TEST control_restart_noqr_p8_intel [02:36, 02:15] (1197852 MB) -PASS -- TEST control_decomp_p8_intel [03:48, 03:12] (1878068 MB) -PASS -- TEST control_2threads_p8_intel [03:40, 03:07] (1961932 MB) -PASS -- TEST control_p8_lndp_intel [05:56, 05:40] (1889932 MB) -PASS -- TEST control_p8_rrtmgp_intel [04:16, 03:38] (1967116 MB) -PASS -- TEST control_p8_mynn_intel [03:12, 02:39] (1909880 MB) -PASS -- TEST merra2_thompson_intel [03:42, 02:56] (1898680 MB) -PASS -- TEST regional_control_intel [04:50, 04:36] (1224088 MB) -PASS -- TEST regional_restart_intel [02:55, 02:38] (1176540 MB) -PASS -- TEST regional_decomp_intel [05:13, 04:54] (1211936 MB) -PASS -- TEST regional_2threads_intel [03:14, 02:57] (1178176 MB) -PASS -- TEST regional_noquilt_intel [04:52, 04:36] (1546852 MB) -PASS -- TEST regional_netcdf_parallel_intel [04:52, 04:34] (1232240 MB) -PASS -- TEST regional_2dwrtdecomp_intel [04:55, 04:37] (1221016 MB) -PASS -- TEST regional_wofs_intel [06:17, 06:05] (2069936 MB) - -PASS -- COMPILE rrfs_intel [08:54, 08:54](3 warnings,9 remarks) -PASS -- TEST rap_control_intel [07:20, 06:44] (1244752 MB) -PASS -- TEST regional_spp_sppt_shum_skeb_intel [04:06, 03:32] (1413048 MB) -PASS -- TEST rap_decomp_intel [07:39, 07:06] (1148432 MB) -PASS -- TEST rap_2threads_intel [07:11, 06:36] (1372476 MB) -PASS -- TEST rap_restart_intel [04:09, 03:31] (1135972 MB) -PASS -- TEST rap_sfcdiff_intel [07:12, 06:41] (1215568 MB) -PASS -- TEST rap_sfcdiff_decomp_intel [07:45, 07:11] (1150140 MB) -PASS -- TEST rap_sfcdiff_restart_intel [05:29, 05:02] (1179608 MB) -PASS -- TEST hrrr_control_intel [04:00, 03:25] (1068308 MB) -PASS -- TEST hrrr_control_decomp_intel [04:03, 03:31] (1046696 MB) -PASS -- TEST hrrr_control_2threads_intel [08:10, 07:25] (1100028 MB) -PASS -- TEST hrrr_control_restart_intel [02:12, 01:54] (1012740 MB) -PASS -- TEST rrfs_v1beta_intel [07:09, 06:31] (1215524 MB) -PASS -- TEST rrfs_v1nssl_intel [08:24, 08:14] (2013584 MB) -PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [08:12, 08:03] (2175512 MB) - -PASS -- COMPILE csawmg_intel [08:29, 08:29] -PASS -- TEST control_csawmg_intel [05:54, 05:35] (1057092 MB) -PASS -- TEST control_ras_intel [03:03, 02:53] (842004 MB) - -PASS -- COMPILE wam_intel [08:36, 08:36],1 remarks) -PASS -- TEST control_wam_intel [10:07, 09:47] (1659636 MB) - -PASS -- COMPILE atm_faster_dyn32_intel [08:49, 08:49],1 remarks) -PASS -- TEST control_p8_faster_intel [03:05, 02:29] (1895472 MB) -PASS -- TEST regional_control_faster_intel [04:29, 04:14] (1224436 MB) - -PASS -- COMPILE atm_debug_dyn32_intel [07:07, 07:07](882 warnings,9 remarks) -PASS -- TEST control_CubedSphereGrid_debug_intel [02:16, 01:59] (1613144 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [02:17, 01:57] (1609340 MB) -PASS -- TEST control_stochy_debug_intel [03:02, 02:52] (847724 MB) -PASS -- TEST control_lndp_debug_intel [02:46, 02:40] (835368 MB) -PASS -- TEST control_csawmg_debug_intel [04:09, 03:55] (1153996 MB) -PASS -- TEST control_ras_debug_intel [02:45, 02:39] (841912 MB) -PASS -- TEST control_diag_debug_intel [02:34, 02:18] (1694828 MB) -PASS -- TEST control_debug_p8_intel [02:39, 02:19] (1922092 MB) -PASS -- TEST regional_debug_intel [14:35, 14:19] (1147608 MB) -PASS -- TEST rap_control_debug_intel [04:48, 04:41] (1225988 MB) -PASS -- TEST hrrr_control_debug_intel [04:35, 04:25] (1224080 MB) -PASS -- TEST hrrr_gf_debug_intel [04:46, 04:37] (1228096 MB) -PASS -- TEST hrrr_c3_debug_intel [04:49, 04:40] (1225140 MB) -PASS -- TEST rap_unified_drag_suite_debug_intel [04:48, 04:40] (1227728 MB) -PASS -- TEST rap_diag_debug_intel [05:23, 05:10] (1308060 MB) -PASS -- TEST rap_cires_ugwp_debug_intel [04:56, 04:49] (1239068 MB) -PASS -- TEST rap_unified_ugwp_debug_intel [04:58, 04:52] (1230704 MB) -PASS -- TEST rap_lndp_debug_intel [04:48, 04:42] (1221772 MB) -PASS -- TEST rap_progcld_thompson_debug_intel [04:50, 04:43] (1231236 MB) -PASS -- TEST rap_noah_debug_intel [04:43, 04:36] (1220548 MB) -PASS -- TEST rap_sfcdiff_debug_intel [04:39, 04:32] (1221384 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [07:39, 07:32] (1220584 MB) -PASS -- TEST rrfs_v1beta_debug_intel [04:51, 04:44] (1225684 MB) -PASS -- TEST rap_clm_lake_debug_intel [04:52, 04:43] (1229064 MB) -PASS -- TEST rap_flake_debug_intel [04:44, 04:35] (1233416 MB) -PASS -- TEST gnv1_c96_no_nest_debug_intel [07:31, 06:55] (1235976 MB) - -PASS -- COMPILE atm_debug_dyn32_gnu [04:55, 04:55] -PASS -- TEST control_csawmg_debug_gnu [02:11, 01:57] (1038016 MB) - -PASS -- COMPILE wam_debug_intel [04:34, 04:34](837 warnings,1 remarks) - -PASS -- COMPILE rrfs_dyn32_phy32_intel [08:35, 08:35](3 warnings,8 remarks) -PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [03:52, 03:19] (1249536 MB) -PASS -- TEST rap_control_dyn32_phy32_intel [06:10, 05:37] (1154912 MB) -PASS -- TEST hrrr_control_dyn32_phy32_intel [03:41, 02:59] (1008300 MB) -PASS -- TEST rap_2threads_dyn32_phy32_intel [05:43, 05:13] (1299612 MB) -PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [07:30, 06:40] (1035252 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [03:48, 03:09] (978788 MB) -PASS -- TEST rap_restart_dyn32_phy32_intel [04:38, 04:12] (1098144 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [01:59, 01:40] (957736 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [08:39, 08:39](3 warnings,8 remarks) -PASS -- TEST conus13km_control_intel [02:05, 01:41] (1303164 MB) -PASS -- TEST conus13km_2threads_intel [00:59, 00:46] (1193368 MB) -PASS -- TEST conus13km_restart_mismatch_intel [01:28, 01:04] (1135736 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_intel [08:14, 08:14](3 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_intel [04:11, 03:50] (1071084 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [03:43, 03:43](785 warnings,8 remarks) -PASS -- TEST rap_control_debug_dyn32_phy32_intel [04:48, 04:41] (1099004 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [04:43, 04:34] (1104060 MB) -PASS -- TEST conus13km_debug_intel [13:43, 13:21] (1335612 MB) -PASS -- TEST conus13km_debug_qr_intel [13:45, 13:27] (982724 MB) -PASS -- TEST conus13km_debug_2threads_intel [10:28, 10:12] (1235948 MB) -PASS -- TEST conus13km_radar_tten_debug_intel [13:21, 13:00] (1420176 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [03:48, 03:48](785 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_debug_intel [04:27, 04:20] (1175196 MB) - -PASS -- COMPILE hafsw_intel [10:30, 10:29](1 warnings,10 remarks) -PASS -- TEST hafs_regional_atm_intel [06:16, 05:26] (854096 MB) -PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [05:13, 05:00] (1259852 MB) -PASS -- TEST hafs_regional_atm_ocn_intel [07:23, 06:24] (906392 MB) -PASS -- TEST hafs_regional_atm_wav_intel [15:26, 14:39] (956724 MB) -PASS -- TEST hafs_regional_atm_ocn_wav_intel [18:28, 17:23] (983512 MB) -PASS -- TEST hafs_regional_1nest_atm_intel [06:02, 05:27] (601312 MB) -PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [07:54, 06:55] (609856 MB) -PASS -- TEST hafs_global_1nest_atm_intel [03:01, 02:33] (429204 MB) -PASS -- TEST hafs_global_multiple_4nests_atm_intel [09:19, 07:39] (549576 MB) -PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [05:23, 04:54] (595008 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [04:16, 03:46] (605472 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [05:32, 04:56] (659744 MB) -PASS -- TEST hafs_global_storm_following_1nest_atm_intel [01:26, 01:12] (451784 MB) - -PASS -- COMPILE hafsw_debug_intel [04:24, 04:23](1462 warnings,1490 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [12:29, 11:51] (637444 MB) - -PASS -- COMPILE hafsw_faster_intel [10:47, 10:47],9 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [19:39, 18:53] (752376 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [19:17, 18:26] (831576 MB) - -PASS -- COMPILE hafs_mom6w_intel [10:18, 10:18],8 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [13:51, 12:38] (806108 MB) - -PASS -- COMPILE hafs_all_intel [09:46, 09:46],9 remarks) -PASS -- TEST hafs_regional_docn_intel [06:20, 05:31] (927664 MB) -PASS -- TEST hafs_regional_docn_oisst_intel [06:33, 05:43] (900844 MB) -PASS -- TEST hafs_regional_datm_cdeps_intel [17:13, 16:40] (1335024 MB) - -PASS -- COMPILE datm_cdeps_intel [06:22, 06:22],2 remarks) -PASS -- TEST datm_cdeps_control_cfsr_intel [02:15, 02:08] (1156312 MB) -PASS -- TEST datm_cdeps_restart_cfsr_intel [01:21, 01:17] (1112816 MB) -PASS -- TEST datm_cdeps_control_gefs_intel [02:11, 02:07] (1017880 MB) -PASS -- TEST datm_cdeps_iau_gefs_intel [02:13, 02:08] (1019108 MB) -PASS -- TEST datm_cdeps_stochy_gefs_intel [02:12, 02:09] (1019852 MB) -PASS -- TEST datm_cdeps_ciceC_cfsr_intel [02:14, 02:09] (1141780 MB) -PASS -- TEST datm_cdeps_bulk_cfsr_intel [02:14, 02:11] (1162560 MB) -PASS -- TEST datm_cdeps_bulk_gefs_intel [02:09, 02:04] (1022300 MB) -PASS -- TEST datm_cdeps_mx025_cfsr_intel [05:24, 04:52] (1160700 MB) -PASS -- TEST datm_cdeps_mx025_gefs_intel [05:33, 04:58] (1160380 MB) -PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [02:11, 02:08] (1168092 MB) -PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [03:06, 03:01] (2409180 MB) -PASS -- TEST datm_cdeps_gfs_intel [03:08, 03:03] (2461864 MB) - -PASS -- COMPILE datm_cdeps_debug_intel [03:31, 03:31](2 warnings,2 remarks) -PASS -- TEST datm_cdeps_debug_cfsr_intel [05:09, 05:05] (1075704 MB) - -PASS -- COMPILE datm_cdeps_faster_intel [05:02, 05:02],2 remarks) -PASS -- TEST datm_cdeps_control_cfsr_faster_intel [02:12, 02:08] (1150904 MB) - -PASS -- COMPILE datm_cdeps_land_intel [01:30, 01:27],1 remarks) -PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:10, 00:54] (345272 MB) -PASS -- TEST datm_cdeps_lnd_era5_intel [01:01, 00:49] (571784 MB) -PASS -- TEST datm_cdeps_lnd_era5_rst_intel [00:42, 00:32] (575908 MB) - -PASS -- COMPILE atm_ds2s_docn_pcice_intel [10:18, 10:18],3 remarks) -PASS -- TEST atm_ds2s_docn_pcice_intel [04:19, 03:46] (2016828 MB) - -PASS -- COMPILE atm_ds2s_docn_dice_intel [09:53, 09:52](1 warnings,1 remarks) -PASS -- TEST atm_ds2s_docn_dice_intel [08:42, 08:12] (2030284 MB) - -PASS -- COMPILE atml_intel [10:09, 10:09](8 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_sbs_intel [06:10, 05:32] (1900744 MB) -PASS -- TEST control_p8_atmlnd_intel [06:28, 05:46] (1900768 MB) -PASS -- TEST control_restart_p8_atmlnd_intel [03:20, 02:58] (1153288 MB) - -PASS -- COMPILE atml_debug_intel [05:57, 05:56](880 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_debug_intel [05:49, 05:04] (1920680 MB) - -PASS -- COMPILE atmw_intel [10:00, 09:59],9 remarks) -PASS -- TEST atmwav_control_noaero_p8_intel [02:24, 01:46] (1930472 MB) - -PASS -- COMPILE atmaero_intel [09:00, 09:00],1 remarks) -PASS -- TEST atmaero_control_p8_intel [04:24, 03:51] (2002220 MB) -PASS -- TEST atmaero_control_p8_rad_intel [05:01, 04:27] (1781140 MB) -PASS -- TEST atmaero_control_p8_rad_micro_intel [05:01, 04:32] (1800080 MB) - -PASS -- COMPILE atmaq_debug_intel [03:56, 03:55](882 warnings,6 remarks) -PASS -- TEST regional_atmaq_debug_intel [17:38, 16:36] (4521860 MB) - -PASS -- COMPILE atm_fbh_intel [08:04, 08:04](3 warnings,8 remarks) -PASS -- TEST cpld_regional_atm_fbh_intel [15:46, 15:18] (1073568 MB) - -PASS -- COMPILE datm_cdeps_intelllvm [10:19, 10:19] -PASS -- TEST datm_cdeps_control_cfsr_intelllvm [02:21, 02:16] (1144884 MB) - -PASS -- COMPILE datm_cdeps_debug_intelllvm [01:51, 01:51](2 warnings -PASS -- TEST datm_cdeps_debug_cfsr_intelllvm [10:47, 10:42] (1070472 MB) - -PASS -- COMPILE atm_gnu [04:18, 04:18] -PASS -- TEST control_c48_gnu [08:07, 07:45] (1546168 MB) -PASS -- TEST control_stochy_gnu [02:33, 02:25] (718724 MB) -PASS -- TEST control_ras_gnu [04:06, 03:57] (723192 MB) -PASS -- TEST control_p8_gnu [04:53, 04:15] (1719308 MB) -PASS -- TEST control_p8_ugwpv1_gnu [04:48, 04:18] (1720344 MB) -PASS -- TEST control_flake_gnu [04:45, 04:36] (805972 MB) - -PASS -- COMPILE rrfs_gnu [05:06, 05:01] -PASS -- TEST rap_control_gnu [08:40, 08:02] (1073168 MB) -PASS -- TEST rap_decomp_gnu [08:59, 08:25] (1072684 MB) -PASS -- TEST rap_2threads_gnu [07:51, 07:17] (1109216 MB) -PASS -- TEST rap_restart_gnu [04:55, 04:15] (880124 MB) -PASS -- TEST rap_sfcdiff_gnu [08:37, 08:05] (1071896 MB) -PASS -- TEST rap_sfcdiff_decomp_gnu [08:51, 08:18] (1080980 MB) -PASS -- TEST rap_sfcdiff_restart_gnu [06:31, 05:54] (876408 MB) -PASS -- TEST hrrr_control_gnu [04:43, 04:05] (1060676 MB) -PASS -- TEST hrrr_control_noqr_gnu [04:24, 04:00] (1126304 MB) -PASS -- TEST hrrr_control_2threads_gnu [04:09, 03:35] (1033736 MB) -PASS -- TEST hrrr_control_decomp_gnu [04:38, 04:06] (1057724 MB) -PASS -- TEST hrrr_control_restart_gnu [02:23, 02:09] (873944 MB) -PASS -- TEST hrrr_control_restart_noqr_gnu [02:21, 02:06] (926684 MB) -PASS -- TEST rrfs_v1beta_gnu [08:42, 08:04] (1068016 MB) - -PASS -- COMPILE csawmg_gnu [03:58, 03:58] -PASS -- TEST control_csawmg_gnu [07:19, 07:03] (1054212 MB) - -PASS -- COMPILE atm_dyn32_debug_gnu [05:39, 05:39] -PASS -- TEST control_diag_debug_gnu [01:42, 01:24] (1621784 MB) -PASS -- TEST regional_debug_gnu [07:20, 07:04] (1122100 MB) -PASS -- TEST rap_control_debug_gnu [02:10, 02:04] (1090492 MB) -PASS -- TEST hrrr_control_debug_gnu [02:23, 02:14] (1081392 MB) -PASS -- TEST hrrr_gf_debug_gnu [02:16, 02:08] (1086524 MB) -PASS -- TEST hrrr_c3_debug_gnu [02:16, 02:09] (1089724 MB) -PASS -- TEST rap_diag_debug_gnu [02:31, 02:19] (1259880 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [03:31, 03:24] (1089864 MB) -PASS -- TEST rap_progcld_thompson_debug_gnu [02:12, 02:05] (1092192 MB) -PASS -- TEST rrfs_v1beta_debug_gnu [02:27, 02:21] (1085324 MB) -PASS -- TEST control_ras_debug_gnu [01:23, 01:17] (722604 MB) -PASS -- TEST control_stochy_debug_gnu [01:26, 01:20] (715724 MB) -PASS -- TEST control_debug_p8_gnu [01:34, 01:18] (1697976 MB) -PASS -- TEST rap_flake_debug_gnu [02:21, 02:10] (1089344 MB) -PASS -- TEST rap_clm_lake_debug_gnu [02:16, 02:10] (1091460 MB) -PASS -- TEST gnv1_c96_no_nest_debug_gnu [04:06, 03:32] (1094608 MB) - -PASS -- COMPILE wam_debug_gnu [02:45, 02:45] -PASS -- TEST control_wam_debug_gnu [06:09, 05:50] (1553632 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_gnu [04:15, 04:15] -PASS -- TEST rap_control_dyn32_phy32_gnu [08:19, 07:49] (953272 MB) -PASS -- TEST hrrr_control_dyn32_phy32_gnu [04:40, 04:01] (942920 MB) -PASS -- TEST rap_2threads_dyn32_phy32_gnu [07:35, 07:05] (965928 MB) -PASS -- TEST hrrr_control_2threads_dyn32_phy32_gnu [04:19, 03:27] (876360 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [04:47, 04:02] (946024 MB) -PASS -- TEST rap_restart_dyn32_phy32_gnu [06:16, 05:50] (855284 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [02:21, 02:05] (856096 MB) -PASS -- TEST conus13km_control_gnu [02:55, 02:32] (1255196 MB) -PASS -- TEST conus13km_2threads_gnu [01:28, 01:07] (1168572 MB) -PASS -- TEST conus13km_restart_mismatch_gnu [01:52, 01:29] (923404 MB) - -PASS -- COMPILE atm_dyn64_phy32_gnu [09:10, 09:10] -PASS -- TEST rap_control_dyn64_phy32_gnu [04:49, 04:32] (980664 MB) - -PASS -- COMPILE atm_dyn32_phy32_debug_gnu [06:59, 06:59] -PASS -- TEST rap_control_debug_dyn32_phy32_gnu [02:12, 02:02] (964196 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [02:07, 02:00] (957040 MB) -PASS -- TEST conus13km_debug_gnu [06:00, 05:35] (1272764 MB) -PASS -- TEST conus13km_debug_qr_gnu [06:19, 05:53] (970092 MB) -PASS -- TEST conus13km_debug_2threads_gnu [03:55, 03:32] (1180148 MB) -PASS -- TEST conus13km_radar_tten_debug_gnu [06:08, 05:45] (1343696 MB) - -PASS -- COMPILE atm_dyn64_phy32_debug_gnu [07:02, 07:01] -PASS -- TEST rap_control_dyn64_phy32_debug_gnu [02:26, 02:17] (989348 MB) - -PASS -- COMPILE s2swa_gnu [17:23, 17:23] -PASS -- COMPILE s2s_gnu [16:21, 16:21] -PASS -- TEST cpld_control_nowave_noaero_p8_gnu [15:07, 14:32] (2709288 MB) - -PASS -- COMPILE s2swa_debug_gnu [04:26, 04:26] -PASS -- COMPILE s2sw_pdlib_gnu [16:48, 16:48] -PASS -- TEST cpld_control_pdlib_p8_gnu [40:13, 39:34] (2878484 MB) - -PASS -- COMPILE s2sw_pdlib_debug_gnu [04:11, 04:11] -PASS -- TEST cpld_debug_pdlib_p8_gnu [15:40, 14:59] (3034452 MB) - -PASS -- COMPILE datm_cdeps_gnu [16:10, 16:10] -PASS -- TEST datm_cdeps_control_cfsr_gnu [03:26, 03:20] (772632 MB) - - -SYNOPSIS: -Starting Date/Time: 2024-12-01 08:16:41 -Ending Date/Time: 2024-12-01 12:49:15 -Total Time: 04h:32m:34s -Compiles Completed: 60/60 -Tests Completed: 247/247 - - -NOTES: -A file test_changes.list was generated but is empty. -If you are using this log as a pull request verification, please commit test_changes.list. - -Result: SUCCESS - -====END OF hercules REGRESSION TESTING LOG==== ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -28fb4f657a3f626c25c1507214426312b5ef699e +1e6fc62a38e1b61538e203a7f297583333a18d2a 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) - cf01f337a0162dc05889288e19bc9c4811ace762 CICE-interface/CICE (remotes/origin/sync_cice_2024-11) + 513f8d153924e18ae0f91f5440195d15210a489e CICE-interface/CICE (CICE6.0.0-391-g513f8d1) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b769849792dbe799dc1a2e29942864f880ee8445 FV3 (heads/develop) - e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) - b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 6e0467ad07a2231d298dc3be91a923c934354a7f FV3/ccpp/physics (EP4-1071-g6e0467ad) + 7e7719927a80104d1bb4badf790e509f1e4d39b8 FV3 (remotes/origin/rrfsv1-to-ufs/dev4) + f28be0e882fe53886d23076f56908588eac676c2 FV3/atmos_cubed_sphere (remotes/origin/rrfsv1-to-ufs/dev4) + 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) + c2fb52eacb4e0402b2c307241c0c3acb0ea81b1c FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5524-gc2fb52ea) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -454,7 +27,7 @@ Submodule hashes used in testing: 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) + 615236be21904e180c12c4babfde89fdb448a2cf WW3 (remotes/origin/bug/addPIOswitch) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -465,22 +38,387 @@ 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-20241127 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_1449305 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20241203 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_3083472 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-r) - USE ROCOTO -PASS -- COMPILE 'atm_dyn32_intel' [09:19, 09:19] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_c48_lnd_iau_intel' [10:45, 10:22](1697 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:29, 12:29] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:02, 14:13](2134 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:18, 21:18] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:12, 17:23](1982 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:39, 18:35](2291 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:04, 07:01](1360 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:07, 23:07](1909 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:14, 18:13] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:40, 17:12](1984 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:32, 08:31] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:21, 24:30](1956 MB) + +PASS -- COMPILE 's2swa_intel' [14:10, 14:10] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:02, 14:21](2205 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:18, 14:38](2208 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:09, 09:07](1976 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:17, 14:29](2225 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:48, 07:47](1737 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [17:10, 16:24](2567 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [15:12, 14:36](2194 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:08, 12:27](2097 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:03, 14:19](2205 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [16:49, 15:33](2992 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [08:03, 06:17](2929 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [21:24, 16:44](3858 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:09, 09:23](3647 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:39, 07:02](2119 MB) + +PASS -- COMPILE 's2sw_intel' [13:54, 13:54] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [14:07, 13:32](2014 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:01, 10:23](2106 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:10, 08:10] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [20:46, 20:03](2226 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:50, 07:47] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:26, 07:51](2047 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:30, 12:29] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:48, 05:14](2076 MB) + +PASS -- COMPILE 's2s_intel' [12:29, 12:26] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [06:23, 05:57](3036 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [02:16, 01:49](3019 MB) +PASS -- TEST 'cpld_restart_c48_intel' [01:40, 01:07](2457 MB) + +PASS -- COMPILE 's2swa_faster_intel' [12:15, 12:15] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [14:42, 13:51](2204 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [14:58, 14:58] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:42, 23:53](2070 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:30, 11:55](1437 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:34, 26:51](1992 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:15, 05:15] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:44, 27:05](2009 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:12, 10:12] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:08, 02:56](705 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:13, 02:50](1584 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:18, 02:52](1593 MB) +PASS -- TEST 'control_latlon_intel' [03:06, 02:47](1586 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:15, 02:48](1583 MB) +PASS -- TEST 'control_c48_intel' [10:57, 10:35](1705 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:10, 05:59](820 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [10:53, 10:37](1696 MB) +PASS -- TEST 'control_c192_intel' [10:47, 10:16](1768 MB) +PASS -- TEST 'control_c384_intel' [13:03, 11:57](2007 MB) +PASS -- TEST 'control_c384gdas_intel' [08:45, 07:21](1483 MB) +PASS -- TEST 'control_stochy_intel' [01:41, 01:29](663 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:09, 00:55](530 MB) +PASS -- TEST 'control_lndp_intel' [01:36, 01:23](665 MB) +PASS -- TEST 'control_iovr4_intel' [02:33, 02:16](662 MB) +PASS -- TEST 'control_iovr5_intel' [02:23, 02:11](667 MB) +PASS -- TEST 'control_p8_intel' [04:01, 03:18](1882 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:34, 02:54](1904 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:48, 03:08](1888 MB) +PASS -- TEST 'control_restart_p8_intel' [02:37, 01:52](1147 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:46, 03:09](1869 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:39, 01:54](1207 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:55, 03:13](1864 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:44, 03:00](1953 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:25, 07:04](1873 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:29, 03:43](1971 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:28, 02:44](1901 MB) +PASS -- TEST 'merra2_thompson_intel' [03:58, 03:09](1914 MB) +PASS -- TEST 'regional_control_intel' [04:53, 04:38](1220 MB) +PASS -- TEST 'regional_restart_intel' [02:48, 02:36](1185 MB) +PASS -- TEST 'regional_decomp_intel' [05:08, 04:50](1210 MB) +PASS -- TEST 'regional_2threads_intel' [03:16, 02:58](1181 MB) +PASS -- TEST 'regional_noquilt_intel' [04:53, 04:33](1549 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [04:55, 04:37](1224 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:09, 04:41](1225 MB) +PASS -- TEST 'regional_wofs_intel' [06:26, 06:06](2079 MB) + +PASS -- COMPILE 'rrfs_intel' [09:23, 09:23] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:26, 06:49](1194 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:13, 03:36](1375 MB) +PASS -- TEST 'rap_decomp_intel' [07:43, 07:05](1153 MB) +PASS -- TEST 'rap_2threads_intel' [07:03, 06:25](1378 MB) +PASS -- TEST 'rap_restart_intel' [04:22, 03:37](1116 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:10, 06:35](1202 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:41, 07:03](1144 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:59, 05:13](1181 MB) +PASS -- TEST 'hrrr_control_intel' [04:08, 03:29](1073 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:15, 03:32](1047 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [09:04, 08:22](1122 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:14, 01:57](1013 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:27, 06:46](1226 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:07, 09:43](2000 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:12, 09:03](2174 MB) + +PASS -- COMPILE 'csawmg_intel' [08:19, 08:19] +PASS -- TEST 'control_csawmg_intel' [05:51, 05:31](1054 MB) +PASS -- TEST 'control_ras_intel' [03:08, 02:58](824 MB) + +PASS -- COMPILE 'wam_intel' [08:28, 08:28] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [10:28, 10:02](1660 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [08:49, 08:49] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:00, 02:25](1893 MB) +PASS -- TEST 'regional_control_faster_intel' [04:43, 04:24](1226 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:03, 06:03] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:23, 01:56](1604 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:25, 01:55](1620 MB) +PASS -- TEST 'control_stochy_debug_intel' [02:47, 02:40](835 MB) +PASS -- TEST 'control_lndp_debug_intel' [02:39, 02:28](840 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:01, 04:45](1149 MB) +PASS -- TEST 'control_ras_debug_intel' [02:43, 02:32](842 MB) +PASS -- TEST 'control_diag_debug_intel' [02:55, 02:30](1700 MB) +PASS -- TEST 'control_debug_p8_intel' [02:42, 02:18](1914 MB) +PASS -- TEST 'regional_debug_intel' [15:39, 15:18](1157 MB) +PASS -- TEST 'rap_control_debug_intel' [04:39, 04:27](1234 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:40, 04:29](1214 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:35, 04:24](1229 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:27, 04:15](1227 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:30, 04:18](1233 MB) +PASS -- TEST 'rap_diag_debug_intel' [04:55, 04:37](1307 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:49, 04:34](1231 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:36, 04:27](1231 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:38, 04:29](1232 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:23, 04:16](1225 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:23, 04:16](1223 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:41, 04:30](1226 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:20, 07:10](1225 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:31, 04:24](1218 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [04:32, 04:21](1223 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:29, 04:17](1228 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:31, 07:50](1233 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:14, 05:13] +PASS -- TEST 'control_csawmg_debug_gnu' [02:41, 02:22](1043 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:53, 04:53] ( 837 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:02, 09:01] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [03:58, 03:21](1248 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:09, 05:35](1192 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:45, 02:59](1036 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:55, 05:16](1275 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:28, 07:43](1044 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:57, 03:13](988 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:54, 04:14](1119 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:02, 01:40](953 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:07, 09:07] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:08, 01:42](1285 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:12, 00:46](1190 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:31, 01:06](1138 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:48, 08:48] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:17, 03:52](1067 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:14, 04:14] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:57, 04:46](1101 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:54, 04:41](1104 MB) +PASS -- TEST 'conus13km_debug_intel' [12:26, 11:57](1338 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [12:28, 12:04](986 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:33, 08:14](1252 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [22:58, 22:37](1400 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:13, 04:13] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:17, 04:06](1161 MB) + +PASS -- COMPILE 'hafsw_intel' [09:58, 09:58] ( 1 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:13, 05:21](857 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:42, 05:28](1264 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:31, 06:26](942 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:51, 14:55](942 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:20, 17:10](975 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:15, 05:35](603 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:17, 07:09](608 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:07, 02:36](435 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:10, 07:33](543 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:41, 04:06](604 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:20, 03:43](609 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:37, 04:55](655 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:29, 01:14](446 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:32, 04:32] ( 1462 warnings 1490 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:15, 11:37](630 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [09:45, 09:45] ( 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:45, 17:52](736 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:20, 18:29](835 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:13, 11:13] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:18, 12:09](820 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:39, 10:39] ( 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [06:28, 05:36](923 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:28, 05:36](925 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:07, 16:34](1340 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:31, 07:31] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:26, 02:20](1151 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:25, 01:19](1111 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:11, 02:06](1020 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:11, 02:05](1023 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:15, 02:10](1024 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:26, 02:20](1131 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:15, 02:10](1151 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:11, 02:07](1008 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:26, 04:53](1167 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:27, 04:54](1154 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:09, 03:06](1139 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:10, 03:01](2419 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:18, 03:13](2409 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:18, 04:18] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:58, 09:53](1071 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:08, 06:08] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:15, 02:09](1128 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [00:57, 00:56] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:08, 00:53](338 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:04, 00:52](570 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:50, 00:34](579 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:47, 08:47] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [03:48, 03:15](2020 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [09:44, 09:44] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:48, 07:17](2035 MB) + +PASS -- COMPILE 'atml_intel' [10:20, 10:20] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:35, 05:51](1893 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:23, 05:39](1899 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:15, 02:50](1146 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:07, 06:05] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:50, 05:01](1927 MB) + +PASS -- COMPILE 'atmw_intel' [10:18, 10:18] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:21, 01:46](1933 MB) + +PASS -- COMPILE 'atmaero_intel' [09:45, 09:45] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:30, 03:52](2014 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:08, 04:30](1786 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:07, 04:33](1787 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:10, 04:10] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [17:47, 16:35](4517 MB) + +PASS -- COMPILE 'atm_fbh_intel' [08:30, 08:29] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:15, 10:04](1111 MB) + +PASS -- COMPILE 'datm_cdeps_intelllvm' [11:29, 11:29] +PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [02:57, 02:27](1145 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [02:06, 02:05] +PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [06:13, 06:08](1081 MB) + +PASS -- COMPILE 'atm_gnu' [04:39, 04:39] +PASS -- TEST 'control_c48_gnu' [08:23, 08:00](1521 MB) +PASS -- TEST 'control_stochy_gnu' [02:35, 02:25](721 MB) +PASS -- TEST 'control_ras_gnu' [04:13, 04:03](720 MB) +PASS -- TEST 'control_p8_gnu' [04:45, 04:06](1723 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:52, 04:18](1723 MB) +PASS -- TEST 'control_flake_gnu' [04:58, 04:46](810 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:37, 04:36] +PASS -- TEST 'rap_control_gnu' [12:00, 11:24](1071 MB) +PASS -- TEST 'rap_decomp_gnu' [11:54, 11:16](1072 MB) +PASS -- TEST 'rap_2threads_gnu' [10:23, 09:45](1106 MB) +PASS -- TEST 'rap_restart_gnu' [06:28, 05:40](879 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:39, 11:00](1072 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:25, 11:45](1075 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:33, 08:46](876 MB) +PASS -- TEST 'hrrr_control_gnu' [06:24, 05:44](1060 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:12, 05:39](1128 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:20, 04:35](1033 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:25, 05:47](1055 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:07, 02:48](879 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:12, 02:54](925 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:36, 10:56](1069 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:01, 04:00] +PASS -- TEST 'control_csawmg_gnu' [09:52, 09:21](1052 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:49, 06:49] +PASS -- TEST 'control_diag_debug_gnu' [01:47, 01:16](1618 MB) +PASS -- TEST 'regional_debug_gnu' [07:17, 06:58](1133 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:07, 02:53](1091 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:25, 02:14](1083 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:09, 02:02](1087 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:24, 02:13](1097 MB) +PASS -- TEST 'rap_diag_debug_gnu' [02:33, 02:17](1263 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:39, 03:31](1087 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:21, 02:11](1089 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:27, 02:17](1083 MB) +PASS -- TEST 'control_ras_debug_gnu' [01:19, 01:12](722 MB) +PASS -- TEST 'control_stochy_debug_gnu' [01:32, 01:25](718 MB) +PASS -- TEST 'control_debug_p8_gnu' [01:50, 01:28](1700 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:13, 02:03](1094 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [02:26, 02:12](1090 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:08, 03:33](1093 MB) + +PASS -- COMPILE 'wam_debug_gnu' [02:56, 02:55] +PASS -- TEST 'control_wam_debug_gnu' [05:51, 05:25](1551 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:17, 04:17] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:22, 07:46](952 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:47, 04:01](940 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:20, 06:45](962 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:24, 03:35](873 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:45, 03:58](946 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:15, 05:34](853 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:27, 02:07](856 MB) +PASS -- TEST 'conus13km_control_gnu' [03:04, 02:35](1256 MB) +PASS -- TEST 'conus13km_2threads_gnu' [01:30, 01:09](1166 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [01:51, 01:30](945 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:53, 09:53] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:53, 05:32](982 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [09:07, 09:07] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:46, 02:35](966 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:12, 02:03](957 MB) +PASS -- TEST 'conus13km_debug_gnu' [05:40, 05:18](1281 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [06:09, 05:47](948 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [03:59, 03:37](1176 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [05:46, 05:24](1342 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:35, 09:35] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:13, 02:05](989 MB) + +PASS -- COMPILE 's2swa_gnu' [19:19, 19:18] + +PASS -- COMPILE 's2s_gnu' [17:55, 17:55] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [14:45, 14:00](3068 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [03:41, 03:41] + +PASS -- COMPILE 's2sw_pdlib_gnu' [16:08, 16:07] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [40:32, 39:47](2905 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:19, 04:19] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:43, 15:03](3068 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [14:57, 14:57] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [02:32, 02:27](773 MB) SYNOPSIS: -Starting Date/Time: 20241202 14:46:23 -Ending Date/Time: 20241202 15:09:37 -Total Time: 00h:23m:37s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Starting Date/Time: 20241204 08:00:56 +Ending Date/Time: 20241204 13:21:26 +Total Time: 05h:21m:07s +Compiles Completed: 60/60 +Tests Completed: 248/248 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 2f3769c73d..1e223c75ea 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,20 +1,20 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -e4d3bebab002b60b5af711bfcbbda2307d0925bb +1e6fc62a38e1b61538e203a7f297583333a18d2a 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) - cf01f337a0162dc05889288e19bc9c4811ace762 CICE-interface/CICE (remotes/origin/sync_cice_2024-11) + 513f8d153924e18ae0f91f5440195d15210a489e CICE-interface/CICE (CICE6.0.0-391-g513f8d1) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b769849792dbe799dc1a2e29942864f880ee8445 FV3 (heads/develop) - e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) - b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 6e0467ad07a2231d298dc3be91a923c934354a7f FV3/ccpp/physics (EP4-1071-g6e0467ad) + 7e7719927a80104d1bb4badf790e509f1e4d39b8 FV3 (remotes/origin/rrfsv1-to-ufs/dev4) + f28be0e882fe53886d23076f56908588eac676c2 FV3/atmos_cubed_sphere (remotes/origin/rrfsv1-to-ufs/dev4) + 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) + c2fb52eacb4e0402b2c307241c0c3acb0ea81b1c FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5524-gc2fb52ea) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -27,7 +27,7 @@ Submodule hashes used in testing: 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) + 615236be21904e180c12c4babfde89fdb448a2cf WW3 (remotes/origin/bug/addPIOswitch) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,259 +38,329 @@ 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-20241127 -COMPARISON DIRECTORY: /lfs5/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_433709 +BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20241203 +COMPARISON DIRECTORY: /lfs5/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_2769968 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [45:14, 43:33] ( 1 warnings 1396 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:17, 13:35](2022 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:15, 47:46] ( 1 warnings 1443 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [25:09, 22:54](1885 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:21, 24:03](2026 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:11, 09:36](1136 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:01, 25:53](1850 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [50:15, 48:17] ( 1 warnings 1440 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [24:48, 22:18](1878 MB) - -PASS -- COMPILE 's2swa_intel' [45:14, 44:07] ( 1 warnings 1415 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [20:12, 17:10](2069 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:27, 17:05](2067 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:21, 08:53](1705 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [20:12, 17:17](2069 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [11:20, 08:58](1731 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [19:06, 16:39](2329 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [20:05, 17:21](2044 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [17:17, 14:10](2019 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:25, 17:07](2063 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:14, 09:20](2018 MB) - -PASS -- COMPILE 's2sw_intel' [43:14, 41:20] ( 1 warnings 1300 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [12:19, 09:51](1911 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:30, 14:07](1971 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:09] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [30:18, 27:30](2086 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:11, 06:06] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [14:00, 11:32](1941 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [39:13, 37:14] ( 1018 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:20, 05:29](1968 MB) - -PASS -- COMPILE 's2s_intel' [39:14, 37:47] ( 1 warnings 1041 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [12:50, 10:20](3026 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:50, 03:03](3007 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:47, 01:44](2453 MB) - -PASS -- COMPILE 's2swa_faster_intel' [34:18, 32:17] ( 1 warnings 1631 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [19:32, 16:17](2064 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [47:14, 46:00] ( 1 warnings 1360 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [35:21, 33:07](1924 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [19:20, 16:20](1145 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [41:15, 38:58](1910 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:53] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:09, 38:37](1927 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [39:13, 37:18] ( 1 warnings 1124 remarks ) -PASS -- TEST 'control_flake_intel' [06:28, 04:23](654 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:58, 04:23](1531 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:00, 04:29](1547 MB) -PASS -- TEST 'control_latlon_intel' [06:57, 04:21](1532 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:05, 04:27](1543 MB) -PASS -- TEST 'control_c48_intel' [21:04, 18:15](1705 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:34, 10:13](837 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [21:04, 18:15](1709 MB) -PASS -- TEST 'control_c192_intel' [18:14, 15:50](1694 MB) -PASS -- TEST 'control_c384_intel' [26:01, 22:59](1809 MB) -PASS -- TEST 'control_c384gdas_intel' [17:48, 13:16](996 MB) -PASS -- TEST 'control_stochy_intel' [04:26, 02:08](605 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:25, 01:14](442 MB) -PASS -- TEST 'control_lndp_intel' [03:27, 02:03](609 MB) -PASS -- TEST 'control_iovr4_intel' [05:29, 03:19](604 MB) -PASS -- TEST 'control_iovr5_intel' [05:29, 03:17](604 MB) -PASS -- TEST 'control_p8_intel' [07:16, 04:56](1833 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:24, 04:06](1842 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:06, 04:50](1828 MB) -PASS -- TEST 'control_restart_p8_intel' [04:50, 02:35](1057 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:10, 04:48](1825 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:56, 02:32](1073 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:08, 04:57](1822 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:07, 04:44](1919 MB) -PASS -- TEST 'control_p8_lndp_intel' [11:02, 08:48](1833 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:12, 05:17](1901 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:10, 04:11](1845 MB) -PASS -- TEST 'merra2_thompson_intel' [07:07, 04:28](1835 MB) -PASS -- TEST 'regional_control_intel' [09:54, 07:12](1048 MB) -PASS -- TEST 'regional_restart_intel' [05:41, 03:49](1011 MB) -PASS -- TEST 'regional_decomp_intel' [09:32, 07:21](1036 MB) -PASS -- TEST 'regional_2threads_intel' [06:33, 04:21](1023 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:39, 06:57](1043 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:34, 07:01](1045 MB) - -PASS -- COMPILE 'rrfs_intel' [37:13, 35:39] ( 3 warnings 1100 remarks ) -PASS -- TEST 'rap_control_intel' [11:44, 10:08](988 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:08, 05:28](1184 MB) -PASS -- TEST 'rap_decomp_intel' [12:43, 10:45](980 MB) -PASS -- TEST 'rap_2threads_intel' [11:44, 09:42](1071 MB) -PASS -- TEST 'rap_restart_intel' [07:46, 05:10](983 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:44, 10:10](986 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:42, 10:41](985 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:46, 07:34](1004 MB) -PASS -- TEST 'hrrr_control_intel' [07:41, 05:16](983 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:41, 05:24](976 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:46, 04:49](1049 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:28, 02:43](915 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:54, 10:04](983 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [15:30, 13:23](1930 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:30, 12:56](1936 MB) - -PASS -- COMPILE 'csawmg_intel' [36:13, 34:46] ( 1098 remarks ) -PASS -- TEST 'control_csawmg_intel' [09:37, 08:03](964 MB) -PASS -- TEST 'control_ras_intel' [06:23, 04:18](671 MB) - -PASS -- COMPILE 'wam_intel' [37:13, 35:17] ( 1002 remarks ) -PASS -- TEST 'control_wam_intel' [16:42, 14:14](1607 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [39:14, 37:34] ( 1302 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:53, 03:37](1838 MB) -PASS -- TEST 'regional_control_faster_intel' [08:39, 06:34](1033 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 08:13] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:45, 02:43](1570 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:51, 02:43](1559 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:27, 03:51](777 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:26, 03:30](776 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:42, 05:24](1087 MB) -PASS -- TEST 'control_ras_debug_intel' [05:26, 03:34](784 MB) -PASS -- TEST 'control_diag_debug_intel' [05:47, 03:19](1631 MB) -PASS -- TEST 'control_debug_p8_intel' [05:47, 03:14](1860 MB) -PASS -- TEST 'regional_debug_intel' [23:44, 21:55](1038 MB) -PASS -- TEST 'rap_control_debug_intel' [08:28, 06:14](1165 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:28, 06:04](1158 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:28, 06:11](1163 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:28, 06:14](1163 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:28, 06:12](1165 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:39, 06:29](1252 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:28, 06:19](1168 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:28, 06:21](1165 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:28, 06:19](1170 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:26, 06:04](1159 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:24, 05:57](1161 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:25, 06:04](1162 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:24, 09:56](1158 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:24, 06:02](1157 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:27, 06:06](1165 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:26, 06:06](1164 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:44, 10:36](1171 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:11, 05:04] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:51, 16:30](1645 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:13, 30:46] ( 3 warnings 1032 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [26:04, 23:31](1060 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:34, 08:10](911 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:40, 04:18](873 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:44, 07:50](960 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:44, 04:00](902 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:40, 04:34](854 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:37, 06:10](907 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:24, 02:21](846 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [33:13, 31:51] ( 3 warnings 1206 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:51, 02:38](1100 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:36, 01:13](1041 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:39, 01:30](1016 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [33:13, 31:22] ( 3 warnings 1052 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:45, 05:23](908 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:02] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:29, 06:01](1040 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:28, 05:55](1036 MB) -PASS -- TEST 'conus13km_debug_intel' [19:59, 17:31](1153 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [19:59, 17:42](864 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:53, 10:11](1098 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:54, 17:37](1217 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 05:04] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:28, 06:08](1082 MB) - -PASS -- COMPILE 'hafsw_intel' [41:14, 39:47] ( 1 warnings 1434 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:28, 06:59](693 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:38, 06:02](1084 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:40, 08:54](755 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:31, 15:43](785 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:45, 19:00](803 MB) -PASS -- TEST 'gnv1_nested_intel' [08:42, 05:57](1670 MB) - -PASS -- COMPILE 'hafs_all_intel' [38:14, 36:29] ( 1280 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:19, 08:22](748 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:19, 08:29](736 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:21] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:23, 03:33](1076 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:24, 02:09](1051 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:23, 03:31](935 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:23, 03:30](937 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:22, 03:30](931 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:23, 03:32](1073 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:22, 03:16](1067 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:23, 03:26](927 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:17, 07:34](893 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:15, 07:33](848 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:20, 03:32](1060 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:23, 04:58](2377 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:23, 05:13](2438 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:29] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:21, 08:04](1027 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:11] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:14](1058 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:47] ( 68 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:31, 01:16](239 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:27, 01:05](283 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:40](258 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [38:14, 36:17] ( 1023 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:03, 04:45](1914 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [37:13, 35:48] ( 1 warnings 1028 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [13:08, 10:24](1915 MB) - -PASS -- COMPILE 'atml_intel' [39:14, 37:42] ( 8 warnings 1173 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:03, 05:43](1847 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:03, 05:41](1857 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:42, 03:11](1063 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:10, 06:13] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:07, 07:16](1887 MB) - -PASS -- COMPILE 'atmw_intel' [39:13, 37:48] ( 1276 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:56, 02:27](1852 MB) - -PASS -- COMPILE 'atmaero_intel' [37:13, 36:04] ( 1106 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:57, 05:12](1935 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:00, 06:16](1707 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:52, 06:21](1719 MB) - -PASS -- COMPILE 'atm_fbh_intel' [33:13, 31:13] ( 3 warnings 1003 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:37, 15:11](1050 MB) +PASS -- COMPILE 's2swa_32bit_intel' [45:14, 43:24] ( 1 warnings 1397 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:16, 13:35](2017 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:14, 48:08] ( 1 warnings 1444 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [25:08, 22:52](1885 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:17, 24:08](2031 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:10, 09:40](1142 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:04, 25:52](1849 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [49:14, 47:37] ( 1 warnings 1441 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [24:45, 22:21](1876 MB) + +PASS -- COMPILE 's2swa_intel' [45:14, 43:35] ( 1 warnings 1416 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [20:11, 17:08](2068 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:23, 17:02](2057 MB) +PASS -- TEST 'cpld_restart_p8_intel' [12:15, 08:54](1718 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [19:09, 17:07](2076 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:24, 09:00](1740 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [19:04, 16:31](2327 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [20:07, 17:14](2053 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [16:14, 14:02](2005 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:15, 16:58](2074 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:11, 09:11](2016 MB) + +PASS -- COMPILE 's2sw_intel' [35:13, 33:49] ( 1 warnings 1301 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [12:17, 09:52](1894 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:30, 14:06](1986 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:04] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [30:18, 27:28](2074 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:49] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [14:02, 11:32](1930 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [38:13, 36:55] ( 1019 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:24, 05:29](1968 MB) + +PASS -- COMPILE 's2s_intel' [39:13, 37:32] ( 1 warnings 1042 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [12:48, 10:19](3014 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:48, 03:03](3011 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:48, 01:46](2455 MB) + +PASS -- COMPILE 's2swa_faster_intel' [34:18, 32:31] ( 1 warnings 1632 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [19:32, 16:18](2066 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [47:14, 45:50] ( 1 warnings 1361 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [35:17, 33:07](1938 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [19:20, 16:20](1137 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [41:26, 38:59](1923 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:50] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:08, 38:40](1941 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [39:14, 37:24] ( 1 warnings 1125 remarks ) +PASS -- TEST 'control_flake_intel' [06:30, 04:23](648 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [07:01, 04:23](1538 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:04, 04:35](1536 MB) +PASS -- TEST 'control_latlon_intel' [06:59, 04:23](1540 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:07, 04:28](1545 MB) +PASS -- TEST 'control_c48_intel' [20:07, 18:02](1698 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [12:35, 10:12](831 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [21:06, 18:15](1698 MB) +PASS -- TEST 'control_c192_intel' [18:15, 15:49](1694 MB) +PASS -- TEST 'control_c384_intel' [27:12, 23:04](1814 MB) +PASS -- TEST 'control_c384gdas_intel' [17:58, 13:17](1007 MB) +PASS -- TEST 'control_stochy_intel' [04:28, 02:09](609 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:25, 01:14](446 MB) +PASS -- TEST 'control_lndp_intel' [03:28, 02:02](607 MB) +PASS -- TEST 'control_iovr4_intel' [05:31, 03:16](601 MB) +PASS -- TEST 'control_iovr5_intel' [05:31, 03:14](605 MB) +PASS -- TEST 'control_p8_intel' [07:21, 04:56](1819 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:26, 04:10](1842 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:09, 04:50](1827 MB) +PASS -- TEST 'control_restart_p8_intel' [04:49, 02:35](1060 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:11, 04:48](1823 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:55, 02:31](1087 MB) +FAILED: TEST TIMED OUT -- TEST 'control_decomp_p8_intel' [, ]( MB) +PASS -- TEST 'control_2threads_p8_intel' [07:10, 04:42](1917 MB) +PASS -- TEST 'control_p8_lndp_intel' [11:07, 08:45](1830 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:15, 05:18](1900 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:13, 04:10](1853 MB) +PASS -- TEST 'merra2_thompson_intel' [07:09, 04:27](1844 MB) +PASS -- TEST 'regional_control_intel' [08:57, 07:01](1046 MB) +PASS -- TEST 'regional_restart_intel' [05:36, 03:45](1018 MB) +PASS -- TEST 'regional_decomp_intel' [09:57, 07:26](1042 MB) +PASS -- TEST 'regional_2threads_intel' [06:37, 04:18](1013 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:42, 07:03](1043 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:35, 07:04](1036 MB) + +PASS -- COMPILE 'rrfs_intel' [37:14, 35:22] ( 3 warnings 1101 remarks ) +PASS -- TEST 'rap_control_intel' [12:46, 10:14](983 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:12, 05:31](1192 MB) +PASS -- TEST 'rap_decomp_intel' [12:45, 10:50](978 MB) +PASS -- TEST 'rap_2threads_intel' [11:53, 09:47](1066 MB) +PASS -- TEST 'rap_restart_intel' [07:46, 05:09](987 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:48, 10:16](993 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:49, 10:53](982 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:46, 07:32](997 MB) +PASS -- TEST 'hrrr_control_intel' [07:43, 05:20](979 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:42, 05:33](980 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:49, 04:52](1051 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:28, 02:46](911 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:56, 10:12](981 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [15:34, 13:34](1936 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [15:32, 13:09](1930 MB) + +PASS -- COMPILE 'csawmg_intel' [36:14, 35:06] ( 1099 remarks ) +PASS -- TEST 'control_csawmg_intel' [09:46, 08:03](959 MB) +PASS -- TEST 'control_ras_intel' [06:29, 04:33](669 MB) + +PASS -- COMPILE 'wam_intel' [36:14, 35:08] ( 1003 remarks ) +PASS -- TEST 'control_wam_intel' [16:40, 14:17](1616 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [39:14, 37:42] ( 1303 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:51, 03:36](1836 MB) +PASS -- TEST 'regional_control_faster_intel' [08:36, 06:35](1041 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 08:25] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:48, 02:44](1565 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:54, 02:44](1561 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:29, 03:43](782 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:29, 03:21](778 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:46, 05:26](1083 MB) +PASS -- TEST 'control_ras_debug_intel' [05:29, 03:28](783 MB) +PASS -- TEST 'control_diag_debug_intel' [05:52, 03:21](1637 MB) +PASS -- TEST 'control_debug_p8_intel' [05:53, 03:16](1862 MB) +PASS -- TEST 'regional_debug_intel' [23:50, 21:57](1060 MB) +PASS -- TEST 'rap_control_debug_intel' [08:32, 06:10](1163 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:32, 06:02](1155 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:32, 06:09](1156 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:32, 06:10](1166 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:32, 06:08](1159 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:44, 06:25](1249 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:32, 06:09](1165 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:32, 06:19](1164 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:32, 06:13](1166 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:24, 06:05](1159 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:24, 05:58](1160 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:25, 06:04](1157 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:24, 09:58](1158 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:23, 06:04](1162 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:25, 06:06](1167 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:25, 06:05](1157 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:43, 10:38](1161 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:11, 05:32] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:52, 16:28](1647 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:13, 30:50] ( 3 warnings 1033 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:05, 05:10](1059 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:34, 08:16](914 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:39, 04:20](859 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:44, 07:53](953 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:40, 03:59](904 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:39, 04:38](853 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:47, 06:12](903 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:26, 02:21](851 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [33:13, 31:58] ( 3 warnings 1207 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:52, 02:41](1102 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:38, 01:12](1041 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:29](1012 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [33:13, 31:15] ( 3 warnings 1053 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:47, 05:25](908 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:09] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:29, 06:00](1043 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:28, 05:54](1042 MB) +PASS -- TEST 'conus13km_debug_intel' [19:56, 17:25](1155 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [19:56, 17:41](861 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:52, 10:10](1096 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:52, 17:38](1211 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 05:03] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:29, 06:15](1081 MB) + +PASS -- COMPILE 'hafsw_intel' [41:14, 40:05] ( 1 warnings 1435 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:25, 06:54](698 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:37, 06:09](1076 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:37, 09:05](758 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:30, 15:49](777 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:53, 19:02](795 MB) +PASS -- TEST 'gnv1_nested_intel' [09:50, 06:22](1664 MB) + +PASS -- COMPILE 'hafs_all_intel' [38:13, 36:42] ( 1281 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:20, 08:27](751 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:20, 08:27](746 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:17] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:22, 03:33](1052 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:22, 02:09](1041 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:22, 03:29](943 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:22, 03:33](930 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:22, 03:33](942 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:22, 03:33](1081 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:22, 03:32](1089 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:22, 03:30](946 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:17, 07:39](894 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:19, 07:35](845 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:18, 03:33](1070 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:21, 05:04](2410 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:21, 05:06](2387 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:27] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:23, 08:07](1015 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:21] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:25, 03:32](1060 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:41] ( 68 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:34, 01:19](241 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:29, 01:09](263 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:40](261 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [38:13, 36:51] ( 1024 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:16, 04:46](1880 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [37:13, 35:52] ( 1 warnings 1029 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [13:03, 10:25](1911 MB) + +PASS -- COMPILE 'atml_intel' [39:14, 37:21] ( 8 warnings 1174 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:09, 05:43](1850 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:09, 05:46](1861 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:43, 03:13](1055 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:11, 06:20] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:06, 07:16](1888 MB) + +PASS -- COMPILE 'atmw_intel' [38:14, 36:40] ( 1277 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:52, 02:31](1858 MB) + +PASS -- COMPILE 'atmaero_intel' [37:14, 35:39] ( 1107 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:01, 05:12](1933 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:59, 06:12](1725 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:49, 06:21](1715 MB) + +PASS -- COMPILE 'atm_fbh_intel' [32:13, 31:02] ( 3 warnings 1004 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:36, 15:11](1053 MB) SYNOPSIS: -Starting Date/Time: 20241128 23:15:31 -Ending Date/Time: 20241129 03:38:49 -Total Time: 04h:23m:53s +Starting Date/Time: 20241204 13:58:56 +Ending Date/Time: 20241204 18:19:10 +Total Time: 04h:20m:47s Compiles Completed: 37/37 -Tests Completed: 166/166 +Tests Completed: 165/166 +Failed Tests: +* TEST control_decomp_p8_intel: FAILED: TEST TIMED OUT +-- LOG: /lfs5/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_2769968/control_decomp_p8_intel/err + +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 JET REGRESSION TESTING LOG==== +====START OF JET REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +1e6fc62a38e1b61538e203a7f297583333a18d2a + +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) + 513f8d153924e18ae0f91f5440195d15210a489e CICE-interface/CICE (CICE6.0.0-391-g513f8d1) + 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 7e7719927a80104d1bb4badf790e509f1e4d39b8 FV3 (remotes/origin/rrfsv1-to-ufs/dev4) + f28be0e882fe53886d23076f56908588eac676c2 FV3/atmos_cubed_sphere (remotes/origin/rrfsv1-to-ufs/dev4) + 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) + c2fb52eacb4e0402b2c307241c0c3acb0ea81b1c FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5524-gc2fb52ea) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) +-179cae1dd84401cf25d250bd9102e66560a9d328 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) + 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) + 615236be21904e180c12c4babfde89fdb448a2cf WW3 (remotes/origin/bug/addPIOswitch) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20241203 +COMPARISON DIRECTORY: /lfs5/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_774669 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-e) - USE ECFLOW + +PASS -- COMPILE 'atm_dyn32_intel' [39:14, 38:08] ( 1 warnings 1125 remarks ) +PASS -- TEST 'control_p8_intel' [07:10, 04:46](1820 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:04, 04:48](1827 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:04, 04:30](1915 MB) + +SYNOPSIS: +Starting Date/Time: 20241204 23:54:50 +Ending Date/Time: 20241205 00:42:28 +Total Time: 00h:47m:47s +Compiles Completed: 1/1 +Tests Completed: 3/3 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 9eef8da0bb..24d6c3c46a 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,20 +1,20 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -e4d3bebab002b60b5af711bfcbbda2307d0925bb +1e6fc62a38e1b61538e203a7f297583333a18d2a 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) - cf01f337a0162dc05889288e19bc9c4811ace762 CICE-interface/CICE (remotes/origin/sync_cice_2024-11) + 513f8d153924e18ae0f91f5440195d15210a489e CICE-interface/CICE (CICE6.0.0-391-g513f8d1) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b769849792dbe799dc1a2e29942864f880ee8445 FV3 (heads/develop) - e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) - b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 6e0467ad07a2231d298dc3be91a923c934354a7f FV3/ccpp/physics (EP4-1071-g6e0467ad) + 7e7719927a80104d1bb4badf790e509f1e4d39b8 FV3 (remotes/origin/rrfsv1-to-ufs/dev4) + f28be0e882fe53886d23076f56908588eac676c2 FV3/atmos_cubed_sphere (remotes/origin/rrfsv1-to-ufs/dev4) + 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) + c2fb52eacb4e0402b2c307241c0c3acb0ea81b1c FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5524-gc2fb52ea) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -27,7 +27,7 @@ Submodule hashes used in testing: 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) + 615236be21904e180c12c4babfde89fdb448a2cf WW3 (remotes/origin/bug/addPIOswitch) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,298 +38,298 @@ 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-20241127 -COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2197722 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241203 +COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_4130267 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [19:10, 17:37] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [34:39, 27:38](2083 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 19:52] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [37:54, 21:54](1956 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:19, 23:04](2120 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:17, 08:53](1218 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [41:54, 26:00](1878 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 19:29] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [35:52, 21:28](1951 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 08:07] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [33:51, 30:23](1930 MB) - -PASS -- COMPILE 's2swa_intel' [18:11, 16:57] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [35:34, 27:52](2138 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [35:42, 27:32](2137 MB) -PASS -- TEST 'cpld_restart_p8_intel' [18:45, 14:25](1808 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [36:45, 28:04](2157 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [17:34, 14:32](1699 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [33:30, 25:06](2433 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [35:34, 27:27](2140 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [31:31, 23:13](2037 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [35:42, 27:24](2141 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:24, 16:09](2716 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [17:18, 09:05](2709 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [31:53, 20:07](3705 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:57, 11:03](3503 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [16:28, 07:58](2073 MB) - -PASS -- COMPILE 's2sw_intel' [17:10, 15:40] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [32:00, 27:16](1968 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:15, 11:48](2048 MB) - -PASS -- COMPILE 's2swa_debug_intel' [09:11, 08:07] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [24:36, 22:10](2168 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:11, 07:55] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:16, 10:17](1997 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:10, 15:17] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:12, 04:49](2016 MB) - -PASS -- COMPILE 's2s_intel' [16:10, 14:17] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:53, 08:38](3029 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:53, 02:58](3018 MB) -PASS -- TEST 'cpld_restart_c48_intel' [17:09, 01:55](2475 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:10, 17:47] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [36:46, 28:14](2142 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:11, 20:50] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [37:27, 29:03](2013 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:26, 14:21](1262 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [36:12, 33:24](1919 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:10, 08:13] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:11, 34:47](1966 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:10, 14:27] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [10:26, 03:42](686 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [11:48, 03:32](1573 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [11:53, 03:46](1579 MB) -PASS -- TEST 'control_latlon_intel' [11:45, 03:35](1571 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [11:55, 03:36](1566 MB) -PASS -- TEST 'control_c48_intel' [22:57, 14:58](1710 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [15:36, 08:08](835 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [22:56, 14:47](1707 MB) -PASS -- TEST 'control_c192_intel' [21:01, 13:07](1743 MB) -PASS -- TEST 'control_c384_intel' [25:58, 16:44](1987 MB) -PASS -- TEST 'control_c384gdas_intel' [18:35, 09:54](1329 MB) -PASS -- TEST 'control_stochy_intel' [08:24, 01:49](641 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:37, 01:04](477 MB) -PASS -- TEST 'control_lndp_intel' [06:22, 01:44](644 MB) -PASS -- TEST 'control_iovr4_intel' [07:23, 02:43](640 MB) -PASS -- TEST 'control_iovr5_intel' [06:21, 02:42](634 MB) -PASS -- TEST 'control_p8_intel' [08:10, 04:09](1868 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:11, 03:32](1876 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [08:25, 04:02](1868 MB) -PASS -- TEST 'control_restart_p8_intel' [05:07, 02:18](1093 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:20, 04:03](1867 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:41, 02:16](1104 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:21, 04:10](1859 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:17, 04:19](1941 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:48, 07:20](1870 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:24, 04:56](1933 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:21, 03:29](1887 MB) -PASS -- TEST 'merra2_thompson_intel' [06:35, 03:55](1874 MB) -PASS -- TEST 'regional_control_intel' [08:40, 06:35](1119 MB) -PASS -- TEST 'regional_restart_intel' [05:40, 03:34](1087 MB) -PASS -- TEST 'regional_decomp_intel' [08:35, 06:48](1102 MB) -PASS -- TEST 'regional_2threads_intel' [06:38, 04:40](1083 MB) -PASS -- TEST 'regional_noquilt_intel' [08:39, 06:25](1409 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:37, 06:33](1111 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [10:46, 06:28](1112 MB) -PASS -- TEST 'regional_wofs_intel' [12:37, 07:58](1894 MB) - -PASS -- COMPILE 'rrfs_intel' [16:10, 13:43] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [11:25, 08:28](1063 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:56, 05:13](1264 MB) -PASS -- TEST 'rap_decomp_intel' [12:05, 08:45](1017 MB) -PASS -- TEST 'rap_2threads_intel' [12:05, 08:38](1166 MB) -PASS -- TEST 'rap_restart_intel' [07:29, 04:22](1035 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:21, 08:23](1054 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:10, 08:42](1016 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:39, 06:17](1073 MB) -PASS -- TEST 'hrrr_control_intel' [07:14, 04:21](1020 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:54, 04:26](1013 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:54, 04:19](1079 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:27, 02:20](951 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:19, 08:20](1044 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:23, 09:56](1976 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:22, 09:31](2010 MB) - -PASS -- COMPILE 'csawmg_intel' [16:10, 13:11] -PASS -- TEST 'control_csawmg_intel' [08:42, 06:35](1017 MB) -PASS -- TEST 'control_ras_intel' [05:27, 03:30](714 MB) - -PASS -- COMPILE 'wam_intel' [15:10, 12:45] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:48, 12:47](1644 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [20:10, 13:45] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:21, 03:19](1880 MB) -PASS -- TEST 'regional_control_faster_intel' [08:34, 06:18](1104 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [17:11, 10:53] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:40, 02:19](1603 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:41, 02:15](1596 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:27, 03:07](812 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:23, 02:43](819 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:43, 04:22](1125 MB) -PASS -- TEST 'control_ras_debug_intel' [04:23, 02:44](821 MB) -PASS -- TEST 'control_diag_debug_intel' [04:44, 02:44](1674 MB) -PASS -- TEST 'control_debug_p8_intel' [04:44, 02:46](1895 MB) -PASS -- TEST 'regional_debug_intel' [19:39, 17:08](1095 MB) -PASS -- TEST 'rap_control_debug_intel' [06:22, 04:53](1197 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:23, 04:57](1202 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:20, 04:55](1196 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:20, 04:57](1204 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:20, 04:59](1197 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:37, 05:11](1272 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:26, 04:58](1198 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:27, 05:07](1194 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:26, 05:03](1201 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:25, 05:00](1201 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:24, 04:55](1195 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 04:53](1205 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:21, 07:57](1201 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:21, 05:01](1198 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:25, 05:03](1197 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:26, 04:54](1198 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:27, 08:32](1211 MB) - -PASS -- COMPILE 'wam_debug_intel' [11:10, 07:19] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:42, 13:13](1674 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [23:11, 13:22] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:54, 04:58](1135 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:11, 07:11](989 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:40, 03:48](920 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:09, 07:27](1082 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:20, 03:42](939 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:01, 03:55](896 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:21, 05:24](980 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:35, 02:01](864 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [20:11, 13:24] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:52, 02:34](1159 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:44, 01:10](1109 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:29](1068 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [18:11, 13:31] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:40, 04:34](967 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:10, 06:37] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:20, 04:53](1081 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:20, 04:39](1076 MB) -PASS -- TEST 'conus13km_debug_intel' [16:50, 14:03](1231 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:49, 15:06](918 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:40, 07:53](1166 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:39, 13:48](1293 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:11, 06:34] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:23, 04:54](1132 MB) - -PASS -- COMPILE 'hafsw_intel' [18:10, 15:56] ( 1 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:16, 05:52](738 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:34, 06:18](1128 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:27, 07:26](814 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [31:18, 27:52](841 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [37:30, 34:05](871 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:05, 07:08](500 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:26, 08:25](513 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:54, 03:29](373 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:22, 09:33](487 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:52, 04:41](524 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:48, 04:25](523 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:50, 05:40](574 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:30, 01:33](400 MB) -PASS -- TEST 'gnv1_nested_intel' [08:13, 04:17](1718 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:10, 07:32] ( 1462 warnings 1490 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:04, 13:13](580 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [23:11, 15:28] ( 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:58, 15:13](631 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:01, 14:55](718 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [20:11, 16:32] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:17, 11:10](704 MB) - -PASS -- COMPILE 'hafs_all_intel' [21:10, 14:51] ( 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:17, 07:27](812 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:14, 07:28](794 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:56, 16:19](1199 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [14:11, 10:32] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 02:58](1158 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:55](1113 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:50](1018 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:55](1013 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:51](1021 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 03:00](1145 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:16, 02:59](1154 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:16, 02:51](1025 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:09, 06:32](1019 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:13, 06:26](1003 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:58](1157 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:18, 04:19](2377 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 04:19](2396 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:11, 05:56] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 06:27](1075 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [13:10, 11:20] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:59](1152 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:10, 01:45] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:30, 01:02](254 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:55](320 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:36](322 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:40] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:29, 00:36](565 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:34, 00:22](445 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:11, 14:31] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:11, 04:06](1967 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:10, 14:27] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:00, 08:33](1970 MB) - -PASS -- COMPILE 'atml_intel' [16:11, 14:52] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:25, 04:51](1863 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:24, 04:53](1857 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:53, 02:43](1072 MB) - -PASS -- COMPILE 'atml_debug_intel' [09:11, 07:29] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:30, 05:48](1895 MB) - -PASS -- COMPILE 'atmw_intel' [15:11, 13:38] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:21, 02:19](1906 MB) - -PASS -- COMPILE 'atmaero_intel' [17:11, 15:08] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:08, 04:35](1971 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:11, 05:29](1748 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:02, 05:32](1762 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:11, 06:39] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [24:59, 20:34](4488 MB) - -PASS -- COMPILE 'atm_fbh_intel' [15:11, 13:09] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:28, 14:03](1099 MB) - -PASS -- COMPILE 'hafsw_intelllvm' [10:11, 08:29] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [10:05, 07:54](573 MB) - -PASS -- COMPILE 'hafsw_debug_intelllvm' [06:11, 04:48] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [21:58, 19:18](612 MB) +PASS -- COMPILE 's2swa_32bit_intel' [18:11, 16:23] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [03:03, 27:51](2092 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 19:46] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [16:54, 21:54](1953 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [53:22, 23:03](2135 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [37:26, 08:46](1231 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:56, 25:59](1872 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 19:26] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [15:53, 21:30](1937 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:10, 08:28] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [33:46, 30:49](1925 MB) + +PASS -- COMPILE 's2swa_intel' [18:11, 16:39] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [04:04, 27:34](2140 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [03:00, 27:46](2145 MB) +PASS -- TEST 'cpld_restart_p8_intel' [53:48, 14:27](1805 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [02:53, 27:17](2167 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [53:53, 14:26](1697 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [56:50, 25:20](2470 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [02:53, 27:24](2124 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [54:50, 23:29](2041 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [04:09, 27:39](2142 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [54:39, 22:19](2716 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [39:09, 09:16](2712 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [21:42, 20:00](3745 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [40:48, 11:04](3509 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [43:46, 08:02](2080 MB) + +PASS -- COMPILE 's2sw_intel' [17:11, 15:11] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [00:23, 27:21](1966 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [44:38, 11:44](2055 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:10, 08:27] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [25:25, 23:00](2174 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:10, 07:27] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:05, 10:15](1997 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:11, 15:20] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [37:38, 04:49](2023 MB) + +PASS -- COMPILE 's2s_intel' [17:11, 15:46] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [41:12, 08:37](3027 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [35:11, 02:59](3021 MB) +PASS -- TEST 'cpld_restart_c48_intel' [26:09, 01:55](2470 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:13, 17:16] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [15:33, 27:48](2143 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:13, 18:32] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:18, 29:13](2004 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [37:30, 14:28](1246 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [50:19, 33:44](1926 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 08:08] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [20:21, 34:49](1968 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [25:14, 13:42] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [36:28, 03:45](688 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [36:51, 03:35](1565 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [36:55, 03:37](1570 MB) +PASS -- TEST 'control_latlon_intel' [36:47, 03:34](1570 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [36:58, 03:36](1569 MB) +PASS -- TEST 'control_c48_intel' [47:57, 14:43](1705 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [16:33, 08:14](837 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [47:01, 14:42](1710 MB) +PASS -- TEST 'control_c192_intel' [34:04, 13:06](1731 MB) +PASS -- TEST 'control_c384_intel' [08:07, 24:34](1989 MB) +PASS -- TEST 'control_c384gdas_intel' [53:40, 09:56](1322 MB) +PASS -- TEST 'control_stochy_intel' [54:31, 01:50](637 MB) +PASS -- TEST 'control_stochy_restart_intel' [12:48, 01:03](473 MB) +PASS -- TEST 'control_lndp_intel' [53:26, 01:44](644 MB) +PASS -- TEST 'control_iovr4_intel' [43:35, 02:44](643 MB) +PASS -- TEST 'control_iovr5_intel' [43:31, 02:48](640 MB) +PASS -- TEST 'control_p8_intel' [43:01, 04:13](1862 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [41:16, 03:30](1872 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [41:36, 04:06](1868 MB) +PASS -- TEST 'control_restart_p8_intel' [20:20, 02:19](1085 MB) +PASS -- TEST 'control_noqr_p8_intel' [41:25, 04:02](1867 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [23:43, 02:18](1109 MB) +PASS -- TEST 'control_decomp_p8_intel' [41:22, 04:10](1852 MB) +PASS -- TEST 'control_2threads_p8_intel' [41:18, 04:23](1951 MB) +PASS -- TEST 'control_p8_lndp_intel' [43:56, 07:19](1860 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [44:40, 04:56](1940 MB) +PASS -- TEST 'control_p8_mynn_intel' [43:31, 03:31](1886 MB) +PASS -- TEST 'merra2_thompson_intel' [43:41, 03:53](1876 MB) +PASS -- TEST 'regional_control_intel' [36:45, 06:30](1111 MB) +PASS -- TEST 'regional_restart_intel' [12:41, 03:33](1087 MB) +PASS -- TEST 'regional_decomp_intel' [30:50, 06:54](1102 MB) +PASS -- TEST 'regional_2threads_intel' [26:52, 04:47](1095 MB) +PASS -- TEST 'regional_noquilt_intel' [43:51, 09:43](1411 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [36:47, 06:33](1113 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [31:40, 06:32](1106 MB) +PASS -- TEST 'regional_wofs_intel' [31:37, 07:59](1893 MB) + +PASS -- COMPILE 'rrfs_intel' [30:15, 13:02] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [24:06, 08:28](1058 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [17:53, 05:12](1269 MB) +PASS -- TEST 'rap_decomp_intel' [20:07, 08:45](1012 MB) +PASS -- TEST 'rap_2threads_intel' [20:27, 08:38](1168 MB) +PASS -- TEST 'rap_restart_intel' [09:39, 04:23](1034 MB) +PASS -- TEST 'rap_sfcdiff_intel' [21:08, 08:22](1053 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [19:56, 08:42](1014 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:33, 06:20](1067 MB) +PASS -- TEST 'hrrr_control_intel' [16:02, 04:21](1022 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [15:21, 04:27](1012 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [23:21, 04:13](1089 MB) +PASS -- TEST 'hrrr_control_restart_intel' [07:44, 02:21](941 MB) +PASS -- TEST 'rrfs_v1beta_intel' [27:22, 08:23](1054 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [27:34, 09:53](1977 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [26:32, 09:32](2018 MB) + +PASS -- COMPILE 'csawmg_intel' [40:15, 12:15] +PASS -- TEST 'control_csawmg_intel' [22:44, 06:37](1015 MB) +PASS -- TEST 'control_ras_intel' [19:29, 03:30](717 MB) + +PASS -- COMPILE 'wam_intel' [43:14, 12:18] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [27:55, 12:50](1651 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [44:14, 13:23] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [16:35, 03:16](1876 MB) +PASS -- TEST 'regional_control_faster_intel' [15:38, 06:16](1102 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [40:12, 09:42] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [10:44, 02:19](1599 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:39, 02:18](1602 MB) +PASS -- TEST 'control_stochy_debug_intel' [10:21, 03:03](814 MB) +PASS -- TEST 'control_lndp_debug_intel' [09:22, 02:43](812 MB) +PASS -- TEST 'control_csawmg_debug_intel' [10:40, 04:17](1126 MB) +PASS -- TEST 'control_ras_debug_intel' [08:26, 02:48](825 MB) +PASS -- TEST 'control_diag_debug_intel' [08:47, 02:50](1673 MB) +PASS -- TEST 'control_debug_p8_intel' [07:47, 02:48](1892 MB) +PASS -- TEST 'regional_debug_intel' [21:46, 17:07](1101 MB) +PASS -- TEST 'rap_control_debug_intel' [09:26, 05:06](1196 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:33, 04:55](1200 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:26, 05:01](1202 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:26, 05:06](1198 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 05:03](1201 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:29, 05:12](1279 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:21, 05:14](1202 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:20, 05:06](1204 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:25, 05:07](1200 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:24, 04:51](1204 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:23, 04:51](1195 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:23, 05:05](1203 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:23, 08:11](1195 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:22, 04:57](1198 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:26, 05:04](1202 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:23, 05:01](1204 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:23, 08:39](1203 MB) + +PASS -- COMPILE 'wam_debug_intel' [45:15, 05:57] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:53, 13:33](1683 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [51:16, 12:14] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:03, 04:56](1149 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:14, 07:13](1004 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:44, 03:47](928 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:51, 07:28](1082 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:05, 03:45](940 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:03, 03:56](893 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [14:34, 05:27](971 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [28:41, 02:04](873 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [49:13, 12:17] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:53, 02:34](1163 MB) +PASS -- TEST 'conus13km_2threads_intel' [23:53, 01:12](1113 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [22:49, 01:30](1053 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [48:14, 12:37] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:42, 04:35](963 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [34:13, 06:03] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 04:50](1079 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:22, 05:11](1075 MB) +PASS -- TEST 'conus13km_debug_intel' [19:43, 14:07](1227 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [18:49, 13:48](937 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [21:55, 08:05](1165 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [27:49, 14:09](1292 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [35:13, 06:45] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [13:26, 05:01](1135 MB) + +PASS -- COMPILE 'hafsw_intel' [33:13, 14:48] ( 1 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:18, 05:54](738 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [14:35, 06:25](1128 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [21:30, 07:31](817 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [41:28, 27:55](850 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [53:39, 34:35](876 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [31:05, 07:13](495 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [32:35, 08:30](507 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [26:56, 03:28](372 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:24, 09:34](478 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [31:57, 04:42](524 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [26:02, 04:29](524 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:14, 05:40](568 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [32:33, 01:43](404 MB) +PASS -- TEST 'gnv1_nested_intel' [31:23, 04:22](1719 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [23:12, 06:40] ( 1462 warnings 1490 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [21:01, 13:30](587 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [34:13, 14:23] ( 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [25:11, 15:14](634 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:24, 15:12](717 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [44:14, 15:05] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [21:34, 11:20](701 MB) + +PASS -- COMPILE 'hafs_all_intel' [44:14, 14:06] ( 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [20:26, 07:33](806 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [26:25, 07:33](792 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [32:06, 16:25](1203 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [50:13, 08:22] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [20:23, 03:01](1151 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [56:27, 01:58](1095 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [24:20, 02:58](1016 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [22:20, 02:59](1022 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [27:22, 02:57](1012 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [29:26, 02:59](1151 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [29:22, 02:59](1159 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [31:21, 02:53](1024 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:28, 06:35](1017 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:23, 06:30](1003 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [27:22, 02:59](1143 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [16:20, 04:21](2398 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [47:24, 04:25](2451 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [44:14, 05:00] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [48:24, 06:34](1077 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [46:14, 07:51] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [58:22, 02:59](1157 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [38:13, 01:41] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [55:37, 01:03](252 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [54:32, 00:58](325 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:27, 00:37](320 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [37:13, 01:39] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [52:41, 00:37](556 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:30, 00:21](444 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [54:13, 14:06] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [56:25, 04:11](1968 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [45:13, 13:03] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [00:09, 08:36](1976 MB) + +PASS -- COMPILE 'atml_intel' [46:13, 14:08] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [55:41, 04:56](1856 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [55:38, 04:54](1863 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [24:06, 02:50](1070 MB) + +PASS -- COMPILE 'atml_debug_intel' [29:10, 07:47] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [51:38, 06:00](1890 MB) + +PASS -- COMPILE 'atmw_intel' [30:12, 13:45] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [47:18, 02:21](1900 MB) + +PASS -- COMPILE 'atmaero_intel' [24:11, 12:58] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [48:31, 04:39](1980 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [45:28, 05:26](1757 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [45:13, 05:33](1763 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [17:11, 06:34] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [55:57, 21:06](4500 MB) + +PASS -- COMPILE 'atm_fbh_intel' [24:12, 12:19] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [47:35, 13:51](1114 MB) + +PASS -- COMPILE 'hafsw_intelllvm' [23:11, 07:43] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [41:12, 07:58](573 MB) + +PASS -- COMPILE 'hafsw_debug_intelllvm' [19:10, 04:32] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [37:06, 19:57](567 MB) SYNOPSIS: -Starting Date/Time: 20241201 07:55:37 -Ending Date/Time: 20241201 09:52:58 -Total Time: 01h:57m:52s +Starting Date/Time: 20241204 08:00:22 +Ending Date/Time: 20241204 12:30:01 +Total Time: 04h:30m:22s Compiles Completed: 45/45 Tests Completed: 191/191 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 6e8ba124e6..4eab3b0441 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,20 +1,20 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -e4d3bebab002b60b5af711bfcbbda2307d0925bb +8e98c5cfbea95cd44f47e48440df1d936b16336b 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) - cf01f337a0162dc05889288e19bc9c4811ace762 CICE-interface/CICE (remotes/origin/sync_cice_2024-11) + 513f8d153924e18ae0f91f5440195d15210a489e CICE-interface/CICE (CICE6.0.0-391-g513f8d1) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b769849792dbe799dc1a2e29942864f880ee8445 FV3 (heads/develop) - e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) - b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 6e0467ad07a2231d298dc3be91a923c934354a7f FV3/ccpp/physics (EP4-1071-g6e0467ad) + 7e7719927a80104d1bb4badf790e509f1e4d39b8 FV3 (remotes/origin/rrfsv1-to-ufs/dev4) + f28be0e882fe53886d23076f56908588eac676c2 FV3/atmos_cubed_sphere (remotes/origin/rrfsv1-to-ufs/dev4) + 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) + c2fb52eacb4e0402b2c307241c0c3acb0ea81b1c FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5524-gc2fb52ea) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -27,7 +27,7 @@ Submodule hashes used in testing: 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) + 615236be21904e180c12c4babfde89fdb448a2cf WW3 (remotes/origin/bug/addPIOswitch) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,240 +38,240 @@ 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-20241127 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_5201 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241203 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182792 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:29, 11:19] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [21:46, 02:25](3091 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:27, 12:06] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:48, 02:45](1817 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [03:42, 02:45](1852 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [00:50, 03:17](976 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:49, 03:15](1790 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:26, 11:46] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [22:49, 02:11](1799 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:21, 05:13] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:54, 03:13](1836 MB) - -PASS -- COMPILE 's2swa_intel' [14:27, 11:40] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [21:48, 02:42](3118 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [21:48, 03:01](3111 MB) -PASS -- TEST 'cpld_restart_p8_intel' [04:17, 02:50](3046 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [21:48, 02:39](3137 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [04:17, 02:41](3064 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [21:48, 02:56](3359 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [21:48, 02:54](3101 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [21:49, 02:35](3058 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [21:48, 03:02](3119 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [21:57, 04:24](4105 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [40:44, 04:52](4250 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [21:48, 02:46](3095 MB) - -PASS -- COMPILE 's2sw_intel' [14:29, 10:56] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [21:46, 02:31](1826 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [21:46, 02:36](1888 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:27, 10:03] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [22:48, 02:58](1888 MB) - -PASS -- COMPILE 's2s_intel' [13:26, 10:14] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [22:47, 01:46](2863 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [22:47, 02:29](2872 MB) -PASS -- TEST 'cpld_restart_c48_intel' [17:49, 01:53](2282 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:33, 16:19] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:42, 02:39](3126 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [14:29, 11:09] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:46, 02:06](1831 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [53:04, 02:12](1004 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [49:03, 01:49](1807 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:24, 05:07] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [20:30, 01:56](1845 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:24, 09:30] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [10:31, 02:04](569 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [10:27, 02:06](1468 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:45, 02:03](1470 MB) -PASS -- TEST 'control_latlon_intel' [07:14, 02:09](1469 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:08, 02:23](1466 MB) -PASS -- TEST 'control_c48_intel' [06:13, 02:18](1567 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [05:10, 02:26](691 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [04:51, 02:08](1565 MB) -PASS -- TEST 'control_c192_intel' [04:17, 01:41](1588 MB) -PASS -- TEST 'control_c384_intel' [04:03, 02:07](1889 MB) -PASS -- TEST 'control_c384gdas_intel' [03:56, 03:17](1063 MB) -PASS -- TEST 'control_stochy_intel' [00:48, 01:34](523 MB) -PASS -- TEST 'control_stochy_restart_intel' [43:03, 01:59](326 MB) -PASS -- TEST 'control_lndp_intel' [00:36, 01:45](520 MB) -PASS -- TEST 'control_iovr4_intel' [00:10, 01:25](518 MB) -PASS -- TEST 'control_iovr5_intel' [00:10, 01:24](518 MB) -PASS -- TEST 'control_p8_intel' [00:05, 02:15](1763 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [59:59, 02:11](1759 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [57:48, 02:58](1756 MB) -PASS -- TEST 'control_restart_p8_intel' [40:19, 02:27](911 MB) -PASS -- TEST 'control_noqr_p8_intel' [56:52, 02:36](1753 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [36:34, 02:01](917 MB) -PASS -- TEST 'control_decomp_p8_intel' [56:29, 02:13](1752 MB) -PASS -- TEST 'control_2threads_p8_intel' [56:29, 02:29](1842 MB) -PASS -- TEST 'control_p8_lndp_intel' [56:24, 02:04](1752 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [56:24, 02:03](1812 MB) -PASS -- TEST 'control_p8_mynn_intel' [56:22, 02:49](1773 MB) -PASS -- TEST 'merra2_thompson_intel' [56:04, 03:04](1764 MB) -PASS -- TEST 'regional_control_intel' [55:36, 02:05](879 MB) -PASS -- TEST 'regional_restart_intel' [35:17, 01:38](854 MB) -PASS -- TEST 'regional_decomp_intel' [55:19, 01:49](875 MB) -PASS -- TEST 'regional_2threads_intel' [54:57, 02:02](929 MB) -PASS -- TEST 'regional_noquilt_intel' [53:17, 01:25](1198 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [47:42, 01:40](869 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [47:30, 01:36](870 MB) -PASS -- TEST 'regional_wofs_intel' [42:55, 02:00](1565 MB) - -PASS -- COMPILE 'rrfs_intel' [10:29, 08:49] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [12:18, 03:00](904 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [12:19, 01:59](1056 MB) -PASS -- TEST 'rap_decomp_intel' [12:18, 02:31](905 MB) -PASS -- TEST 'rap_2threads_intel' [12:18, 02:18](981 MB) -PASS -- TEST 'rap_restart_intel' [42:23, 02:33](780 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:18, 03:04](904 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:18, 02:51](900 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [42:23, 02:58](777 MB) -PASS -- TEST 'hrrr_control_intel' [12:18, 02:31](897 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [12:18, 02:32](900 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [12:19, 02:18](971 MB) -PASS -- TEST 'hrrr_control_restart_intel' [40:11, 01:52](729 MB) -PASS -- TEST 'rrfs_v1beta_intel' [38:15, 02:45](902 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [38:15, 02:01](1852 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [36:59, 02:24](1847 MB) - -PASS -- COMPILE 'csawmg_intel' [10:29, 08:02] -PASS -- TEST 'control_csawmg_intel' [36:55, 01:43](856 MB) -PASS -- TEST 'control_ras_intel' [36:50, 02:12](555 MB) - -PASS -- COMPILE 'wam_intel' [10:29, 08:16] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [36:50, 01:52](1550 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:27, 08:24] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [36:42, 02:18](1761 MB) -PASS -- TEST 'regional_control_faster_intel' [36:37, 01:58](869 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:27, 07:37] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [36:04, 01:34](1491 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [35:49, 01:56](1492 MB) -PASS -- TEST 'control_stochy_debug_intel' [35:25, 01:46](694 MB) -PASS -- TEST 'control_lndp_debug_intel' [35:18, 02:09](697 MB) -PASS -- TEST 'control_csawmg_debug_intel' [35:18, 01:50](998 MB) -PASS -- TEST 'control_ras_debug_intel' [34:13, 01:30](702 MB) -PASS -- TEST 'control_diag_debug_intel' [34:09, 01:57](1545 MB) -PASS -- TEST 'control_debug_p8_intel' [32:44, 01:53](1792 MB) -PASS -- TEST 'regional_debug_intel' [32:41, 02:01](883 MB) -PASS -- TEST 'rap_control_debug_intel' [31:15, 02:15](1076 MB) -PASS -- TEST 'hrrr_control_debug_intel' [30:35, 01:43](1074 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [29:05, 01:42](1078 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [28:22, 01:31](1077 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [27:47, 02:12](1079 MB) -PASS -- TEST 'rap_diag_debug_intel' [27:32, 02:16](1160 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [26:21, 01:41](1080 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [26:02, 01:49](1080 MB) -PASS -- TEST 'rap_lndp_debug_intel' [25:47, 01:56](1079 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [25:25, 02:11](1077 MB) -PASS -- TEST 'rap_noah_debug_intel' [25:12, 01:28](1075 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [24:42, 02:07](1077 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [24:33, 01:23](1069 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [24:13, 02:03](1070 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [24:06, 02:10](1077 MB) -PASS -- TEST 'rap_flake_debug_intel' [23:47, 01:33](1075 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [23:42, 02:42](1077 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:20, 04:23] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:26, 01:26](1580 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:27, 08:02] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [22:45, 02:02](932 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [22:36, 02:46](781 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [22:21, 03:13](777 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [22:07, 02:10](843 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [21:54, 02:49](828 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [21:00, 03:09](788 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:58, 02:17](685 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:29, 02:08](662 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:25, 08:03] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [20:30, 02:01](990 MB) -PASS -- TEST 'conus13km_2threads_intel' [09:22, 02:04](988 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [08:48, 02:12](864 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:31, 08:13] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [19:18, 01:35](807 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:23, 04:28] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [18:58, 01:32](955 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [18:37, 02:00](950 MB) -PASS -- TEST 'conus13km_debug_intel' [18:04, 01:27](1041 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:45, 01:44](714 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [15:29, 01:56](1041 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:46, 01:29](1110 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:27, 04:17] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [14:02, 02:12](979 MB) - -PASS -- COMPILE 'hafsw_intel' [16:34, 09:44] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [13:46, 03:01](595 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:44, 02:24](962 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:28, 02:34](647 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:28, 02:21](668 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [13:13, 02:55](689 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [12:45, 02:49](384 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:59, 02:59](391 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [10:38, 02:15](360 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:28, 03:38](369 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:11, 01:54](406 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:31, 02:24](406 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:32, 02:36](475 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:21, 02:25](315 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [11:26, 04:51] ( 1444 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [07:51, 02:12](501 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:33, 09:37] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [07:15, 02:02](510 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [06:38, 02:40](703 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:33, 09:45] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:25, 02:13](705 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:33, 09:07] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [05:07, 02:38](641 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [04:16, 02:34](615 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [03:51, 02:01](879 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:31, 09:51] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [58:27, 02:37](1825 MB) - -PASS -- COMPILE 'atml_intel' [15:29, 09:33] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [10:24, 05:22] ( 866 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [23:46, 08:30] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [58:11, 02:19](3011 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [56:29, 02:06](2896 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [56:27, 02:00](2902 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [19:44, 04:20] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [56:09, 02:03](4374 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:29, 11:14] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [41:07, 02:58](3085 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:31, 11:44] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [41:05, 03:23](1819 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:59, 02:48](1831 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [20:53, 02:43](965 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [41:06, 02:57](1783 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:31, 11:57] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [41:05, 01:45](1815 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:22, 05:12] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [48:15, 03:06](1829 MB) + +PASS -- COMPILE 's2swa_intel' [14:31, 11:20] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [41:05, 02:22](3118 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [41:05, 02:23](3116 MB) +PASS -- TEST 'cpld_restart_p8_intel' [23:27, 02:05](3034 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [41:05, 02:21](3138 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [23:27, 02:00](3065 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [41:05, 02:36](3359 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [41:05, 02:37](3114 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [41:06, 03:10](3057 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [41:05, 02:29](3118 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [41:14, 05:38](4107 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [12:42, 05:19](4254 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [41:05, 02:23](3093 MB) + +PASS -- COMPILE 's2sw_intel' [13:28, 11:03] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [42:08, 02:43](1820 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [42:08, 02:36](1877 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:26, 10:26] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [43:10, 02:50](1872 MB) + +PASS -- COMPILE 's2s_intel' [13:28, 10:11] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [42:07, 02:37](2861 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [42:07, 02:25](2871 MB) +PASS -- TEST 'cpld_restart_c48_intel' [37:07, 02:10](2285 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:35, 16:00] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [37:02, 02:05](3121 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:29, 11:34] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [42:07, 02:36](1825 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:36, 02:36](1003 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [12:36, 02:17](1800 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:06] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [40:54, 01:54](1851 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:25, 09:29] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [29:37, 01:37](570 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [26:39, 02:02](1458 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [26:26, 02:02](1469 MB) +PASS -- TEST 'control_latlon_intel' [26:12, 02:03](1469 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [25:53, 02:16](1466 MB) +PASS -- TEST 'control_c48_intel' [25:51, 02:11](1570 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [25:45, 01:40](691 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [25:22, 02:27](1565 MB) +PASS -- TEST 'control_c192_intel' [25:17, 02:00](1586 MB) +PASS -- TEST 'control_c384_intel' [25:13, 02:10](1878 MB) +PASS -- TEST 'control_c384gdas_intel' [25:11, 03:36](1061 MB) +PASS -- TEST 'control_stochy_intel' [25:06, 01:25](522 MB) +PASS -- TEST 'control_stochy_restart_intel' [21:38, 02:03](330 MB) +PASS -- TEST 'control_lndp_intel' [24:21, 01:30](519 MB) +PASS -- TEST 'control_iovr4_intel' [23:58, 01:34](520 MB) +PASS -- TEST 'control_iovr5_intel' [23:26, 01:43](518 MB) +PASS -- TEST 'control_p8_intel' [23:19, 02:16](1760 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [23:18, 02:48](1753 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [22:57, 02:16](1757 MB) +PASS -- TEST 'control_restart_p8_intel' [16:48, 02:42](912 MB) +PASS -- TEST 'control_noqr_p8_intel' [22:01, 01:58](1756 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [16:04, 02:57](922 MB) +PASS -- TEST 'control_decomp_p8_intel' [21:57, 01:52](1759 MB) +PASS -- TEST 'control_2threads_p8_intel' [20:52, 02:29](1842 MB) +PASS -- TEST 'control_p8_lndp_intel' [20:43, 02:09](1751 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [20:34, 02:56](1812 MB) +PASS -- TEST 'control_p8_mynn_intel' [20:19, 02:49](1770 MB) +PASS -- TEST 'merra2_thompson_intel' [19:59, 02:41](1759 MB) +PASS -- TEST 'regional_control_intel' [19:28, 02:02](875 MB) +PASS -- TEST 'regional_restart_intel' [10:46, 01:20](841 MB) +PASS -- TEST 'regional_decomp_intel' [18:55, 01:19](875 MB) +PASS -- TEST 'regional_2threads_intel' [18:56, 02:15](926 MB) +PASS -- TEST 'regional_noquilt_intel' [18:08, 01:19](1196 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [18:04, 02:21](869 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [16:51, 02:13](875 MB) +PASS -- TEST 'regional_wofs_intel' [16:47, 02:12](1565 MB) + +PASS -- COMPILE 'rrfs_intel' [11:25, 08:52] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [16:41, 02:59](904 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [16:03, 01:59](1060 MB) +PASS -- TEST 'rap_decomp_intel' [15:57, 02:16](908 MB) +PASS -- TEST 'rap_2threads_intel' [15:47, 02:33](985 MB) +PASS -- TEST 'rap_restart_intel' [06:09, 03:10](776 MB) +PASS -- TEST 'rap_sfcdiff_intel' [14:33, 02:45](895 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:50, 02:16](904 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [03:00, 02:29](779 MB) +PASS -- TEST 'hrrr_control_intel' [13:08, 02:27](902 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [12:55, 02:18](901 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [12:49, 02:33](970 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:51, 01:51](732 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:48, 02:26](895 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:16, 02:28](1858 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:11, 01:49](1848 MB) + +PASS -- COMPILE 'csawmg_intel' [10:25, 08:03] +PASS -- TEST 'control_csawmg_intel' [31:42, 01:45](860 MB) +PASS -- TEST 'control_ras_intel' [31:42, 02:16](559 MB) + +PASS -- COMPILE 'wam_intel' [10:24, 08:15] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [31:42, 01:44](1549 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:24, 08:26] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [11:49, 02:46](1749 MB) +PASS -- TEST 'regional_control_faster_intel' [11:26, 01:22](868 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:24, 07:29] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [31:40, 02:05](1491 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [31:40, 02:12](1500 MB) +PASS -- TEST 'control_stochy_debug_intel' [31:40, 02:01](695 MB) +PASS -- TEST 'control_lndp_debug_intel' [31:40, 01:19](695 MB) +PASS -- TEST 'control_csawmg_debug_intel' [31:40, 01:47](999 MB) +PASS -- TEST 'control_ras_debug_intel' [31:40, 02:21](703 MB) +PASS -- TEST 'control_diag_debug_intel' [31:40, 01:33](1550 MB) +PASS -- TEST 'control_debug_p8_intel' [30:58, 02:11](1781 MB) +PASS -- TEST 'regional_debug_intel' [11:24, 01:24](880 MB) +PASS -- TEST 'rap_control_debug_intel' [11:17, 01:42](1076 MB) +PASS -- TEST 'hrrr_control_debug_intel' [11:12, 01:52](1071 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [11:03, 01:41](1074 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [10:35, 01:31](1078 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:15, 02:34](1078 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:52, 02:11](1160 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:09, 01:46](1074 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:51, 01:49](1074 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:04, 01:59](1076 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:59, 02:02](1079 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:06, 01:34](1073 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:09, 01:40](1078 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [06:05, 01:21](1073 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:54, 01:45](1069 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:51, 01:34](1077 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:51, 01:40](1077 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [05:23, 02:46](1076 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:20, 04:24] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [34:44, 01:45](1573 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:24, 08:06] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:33, 01:54](929 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [03:38, 02:11](782 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:37, 02:44](778 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [03:26, 02:09](835 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:05, 02:31](827 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [02:47, 02:29](776 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [54:42, 02:48](683 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [56:49, 01:29](664 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:25, 08:00] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:26, 02:05](991 MB) +PASS -- TEST 'conus13km_2threads_intel' [57:36, 01:35](990 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [56:44, 01:46](865 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:24, 08:11] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [01:40, 02:24](806 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:21, 04:29] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [01:23, 01:57](954 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [01:15, 01:58](952 MB) +PASS -- TEST 'conus13km_debug_intel' [00:52, 01:39](1041 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [00:28, 01:36](714 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [00:26, 01:32](1039 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [00:18, 02:18](1107 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:20] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [59:30, 01:21](981 MB) + +PASS -- COMPILE 'hafsw_intel' [12:26, 09:44] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [59:29, 03:05](594 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [59:29, 01:58](956 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [59:26, 02:50](643 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [58:43, 03:10](665 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [58:42, 02:33](692 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [58:23, 02:11](376 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [58:22, 02:37](395 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [58:22, 02:05](290 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [56:31, 03:19](365 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [56:19, 02:08](399 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [55:46, 02:40](399 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [55:35, 02:13](478 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [55:11, 01:46](322 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:21, 04:48] ( 1444 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [54:55, 01:37](500 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:24, 09:33] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [54:36, 01:59](513 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [53:52, 02:01](698 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:25, 09:47] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [53:47, 02:14](703 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:25, 09:09] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [52:51, 02:22](642 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [51:13, 03:00](614 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [49:44, 01:39](878 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:26, 09:52] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [49:40, 01:43](1819 MB) + +PASS -- COMPILE 'atml_intel' [11:26, 09:25] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [07:21, 05:25] ( 866 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [10:24, 08:28] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [43:48, 02:32](3010 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [43:23, 02:07](2897 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [42:22, 02:40](2902 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:21, 04:17] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [42:01, 02:07](4374 MB) SYNOPSIS: -Starting Date/Time: 20241202 17:23:21 -Ending Date/Time: 20241202 19:43:38 -Total Time: 02h:20m:50s +Starting Date/Time: 20241205 18:04:06 +Ending Date/Time: 20241205 19:52:32 +Total Time: 01h:48m:58s Compiles Completed: 33/33 Tests Completed: 157/157 diff --git a/tests/test_changes.list b/tests/test_changes.list index a61cef6dec..f994535b22 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,53 +1,110 @@ -cpld_control_p8_mixedmode intel -cpld_control_gfsv17 intel -cpld_control_gfsv17_iau intel -cpld_restart_gfsv17 intel -cpld_mpi_gfsv17 intel -cpld_control_sfs intel -cpld_debug_gfsv17 intel -cpld_control_p8 intel -cpld_control_p8.v2.sfc intel -cpld_restart_p8 intel -cpld_control_qr_p8 intel -cpld_restart_qr_p8 intel -cpld_2threads_p8 intel -cpld_decomp_p8 intel -cpld_mpi_p8 intel -cpld_control_ciceC_p8 intel -cpld_control_c192_p8 intel -cpld_restart_c192_p8 intel -cpld_bmark_p8 intel -cpld_restart_bmark_p8 intel -cpld_s2sa_p8 intel -cpld_control_noaero_p8 intel -cpld_control_nowave_noaero_p8 intel -cpld_debug_p8 intel -cpld_debug_noaero_p8 intel -cpld_control_noaero_p8_agrid intel -cpld_control_c48 intel -cpld_warmstart_c48 intel -cpld_restart_c48 intel -cpld_control_p8_faster intel -cpld_control_pdlib_p8 intel -cpld_restart_pdlib_p8 intel -cpld_mpi_pdlib_p8 intel -cpld_debug_pdlib_p8 intel -datm_cdeps_control_cfsr intel -datm_cdeps_restart_cfsr intel -datm_cdeps_control_gefs intel -datm_cdeps_iau_gefs intel -datm_cdeps_stochy_gefs intel -datm_cdeps_ciceC_cfsr intel -datm_cdeps_bulk_cfsr intel -datm_cdeps_bulk_gefs intel -datm_cdeps_mx025_cfsr intel -datm_cdeps_mx025_gefs intel -datm_cdeps_multiple_files_cfsr intel -datm_cdeps_3072x1536_cfsr intel -datm_cdeps_gfs intel -datm_cdeps_debug_cfsr intel -datm_cdeps_control_cfsr_faster intel -atm_ds2s_docn_dice intel -cpld_control_nowave_noaero_p8 gnu -cpld_control_pdlib_p8 gnu -datm_cdeps_control_cfsr gnu \ No newline at end of file +control_p8_mynn intel +regional_control intel +regional_restart intel +regional_decomp intel +regional_2threads intel +regional_noquilt intel +regional_netcdf_parallel intel +regional_2dwrtdecomp intel +regional_wofs intel +rap_control intel +regional_spp_sppt_shum_skeb intel +rap_decomp intel +rap_2threads intel +rap_restart intel +rap_sfcdiff intel +rap_sfcdiff_decomp intel +rap_sfcdiff_restart intel +hrrr_control intel +hrrr_control_decomp intel +hrrr_control_2threads intel +hrrr_control_restart intel +rrfs_v1beta intel +rrfs_v1nssl intel +rrfs_v1nssl_nohailnoccn intel +regional_control_faster intel +regional_debug intel +rap_control_debug intel +hrrr_control_debug intel +hrrr_gf_debug intel +hrrr_c3_debug intel +rap_unified_drag_suite_debug intel +rap_diag_debug intel +rap_cires_ugwp_debug intel +rap_unified_ugwp_debug intel +rap_lndp_debug intel +rap_progcld_thompson_debug intel +rap_noah_debug intel +rap_sfcdiff_debug intel +rap_noah_sfcdiff_cires_ugwp_debug intel +rrfs_v1beta_debug intel +rap_clm_lake_debug intel +rap_flake_debug intel +gnv1_c96_no_nest_debug intel +regional_spp_sppt_shum_skeb_dyn32_phy32 intel +rap_control_dyn32_phy32 intel +hrrr_control_dyn32_phy32 intel +rap_2threads_dyn32_phy32 intel +hrrr_control_2threads_dyn32_phy32 intel +hrrr_control_decomp_dyn32_phy32 intel +rap_restart_dyn32_phy32 intel +hrrr_control_restart_dyn32_phy32 intel +conus13km_control intel +conus13km_2threads intel +conus13km_restart_mismatch intel +rap_control_dyn64_phy32 intel +rap_control_debug_dyn32_phy32 intel +hrrr_control_debug_dyn32_phy32 intel +conus13km_debug intel +conus13km_debug_qr intel +conus13km_debug_2threads intel +conus13km_radar_tten_debug intel +rap_control_dyn64_phy32_debug intel +gnv1_nested intel +cpld_regional_atm_fbh intel +rap_control_dyn32_phy32 intelllvm +rap_control_dyn64_phy32 intelllvm +rap_control gnu +rap_decomp gnu +rap_2threads gnu +rap_restart gnu +rap_sfcdiff gnu +rap_sfcdiff_decomp gnu +rap_sfcdiff_restart gnu +hrrr_control gnu +hrrr_control_noqr gnu +hrrr_control_2threads gnu +hrrr_control_decomp gnu +hrrr_control_restart gnu +hrrr_control_restart_noqr gnu +rrfs_v1beta gnu +regional_debug gnu +rap_control_debug gnu +hrrr_control_debug gnu +hrrr_gf_debug gnu +hrrr_c3_debug gnu +rap_diag_debug gnu +rap_noah_sfcdiff_cires_ugwp_debug gnu +rap_progcld_thompson_debug gnu +rrfs_v1beta_debug gnu +rap_flake_debug gnu +rap_clm_lake_debug gnu +gnv1_c96_no_nest_debug gnu +rap_control_dyn32_phy32 gnu +hrrr_control_dyn32_phy32 gnu +rap_2threads_dyn32_phy32 gnu +hrrr_control_2threads_dyn32_phy32 gnu +hrrr_control_decomp_dyn32_phy32 gnu +rap_restart_dyn32_phy32 gnu +hrrr_control_restart_dyn32_phy32 gnu +conus13km_control gnu +conus13km_2threads gnu +conus13km_restart_mismatch gnu +rap_control_dyn64_phy32 gnu +rap_control_debug_dyn32_phy32 gnu +hrrr_control_debug_dyn32_phy32 gnu +conus13km_debug gnu +conus13km_debug_qr gnu +conus13km_debug_2threads gnu +conus13km_radar_tten_debug gnu +rap_control_dyn64_phy32_debug gnu From 409bc85b64b2ced642b0024cef2cd9c78ce46fd9 Mon Sep 17 00:00:00 2001 From: Nicholas Szapiro <149816583+NickSzapiro-NOAA@users.noreply.github.com> Date: Wed, 11 Dec 2024 13:19:28 -0500 Subject: [PATCH 16/24] Flexible restart write times (restart_fh) for med, ocn, ice, wav (#2419) * UFSWM - Flexible restart write times (restart_fh) for med, ocn, ice, wav * CICE - Flexible restart write times (restart_fh) * CMEPS - Flexible restart write times (restart_fh) * MOM6 - Flexible restart write times (restart_fh) * WW3 - Flexible restart write times (restart_fh) --- CDEPS-interface/cdeps_files.cmake | 1 + .../ufs/cdeps_share/shr_is_restart_fh_mod.F90 | 137 ++++ CICE-interface/CICE | 2 +- CICE-interface/CMakeLists.txt | 2 +- CICE-interface/cice_files.cmake | 7 +- CMEPS-interface/CMEPS | 2 +- CMEPS-interface/CMakeLists.txt | 3 +- MOM6-interface/MOM6 | 2 +- MOM6-interface/mom6_files.cmake | 4 + WW3 | 2 +- tests/bl_date.conf | 2 +- tests/default_vars.sh | 2 + tests/logs/RegressionTests_acorn.log | 522 ++++++------ tests/logs/RegressionTests_derecho.log | 569 ++++++------- tests/logs/RegressionTests_gaea.log | 676 +++++++++------- tests/logs/RegressionTests_hera.log | 763 ++++++++--------- tests/logs/RegressionTests_hercules.log | 765 +++++++++--------- tests/logs/RegressionTests_jet.log | 563 ++++++------- tests/logs/RegressionTests_orion.log | 672 ++++++++------- tests/logs/RegressionTests_wcoss2.log | 541 +++++++------ tests/parm/datm_cdeps_configure.IN | 1 + tests/parm/model_configure.IN | 1 + tests/test_changes.list | 113 +-- tests/tests/cpld_control_p8 | 7 +- 24 files changed, 2824 insertions(+), 2535 deletions(-) create mode 100644 CDEPS-interface/ufs/cdeps_share/shr_is_restart_fh_mod.F90 diff --git a/CDEPS-interface/cdeps_files.cmake b/CDEPS-interface/cdeps_files.cmake index 321b9d84c5..278435745a 100644 --- a/CDEPS-interface/cdeps_files.cmake +++ b/CDEPS-interface/cdeps_files.cmake @@ -4,6 +4,7 @@ list(APPEND ufs_cdeps_share_files ufs/cdeps_share/shr_assert_mod.F90 ufs/cdeps_share/shr_frz_mod.F90 ufs/cdeps_share/shr_infnan_mod.F90 + ufs/cdeps_share/shr_is_restart_fh_mod.F90 ) list(APPEND cdeps_share_files diff --git a/CDEPS-interface/ufs/cdeps_share/shr_is_restart_fh_mod.F90 b/CDEPS-interface/ufs/cdeps_share/shr_is_restart_fh_mod.F90 new file mode 100644 index 0000000000..42739bbe8f --- /dev/null +++ b/CDEPS-interface/ufs/cdeps_share/shr_is_restart_fh_mod.F90 @@ -0,0 +1,137 @@ +module shr_is_restart_fh_mod + + ! Common methods for components to check if it's time to write forecast hour-based restarts + + !use dshr_methods_mod , only : chkerr + use ESMF, only : ESMF_ConfigCreate, ESMF_ConfigDestroy, ESMF_ConfigLoadFile, & + ESMF_ConfigGetLen, ESMF_ConfigGetAttribute, ESMF_TimePrint, & + ESMF_LOGMSG_INFO, ESMF_LogWrite, ESMF_TimeInterval, & + ESMF_Time, ESMF_KIND_R8, ESMF_Config, ESMF_Clock, & + ESMF_TimeIntervalSet, ESMF_TimePrint, operator(+), operator(==), & + ESMF_LogFoundError, ESMF_LOGERR_PASSTHRU + + implicit none + private + + type :: is_restart_fh_type + logical :: write_restartfh = .false. + type(ESMF_Time), allocatable :: restartFhTimes(:) + end type is_restart_fh_type + + public :: init_is_restart_fh, is_restart_fh, finalize_restart_fh, is_restart_fh_type + +contains + + !----------------------------------------------------------------------- + subroutine init_is_restart_fh(currentTime, dtime, lLog, restartfh_info) + ! + ! !DESCRIPTION: + ! Process restart_fh attribute from model_configure in UFS + ! + ! !USES: + ! + ! !ARGUMENTS: + type(ESMF_Time), intent(in) :: currentTime + integer, intent(in) :: dtime ! time step (s) + logical, intent(in) :: lLog ! If true, this task logs restart_fh info + type(is_restart_fh_type), intent(out) :: restartfh_info !restart_fh info for each task + ! + ! !LOCAL VARIABLES: + character(len=256) :: timestr + integer :: n, nfh, fh_s, rc + logical :: isPresent + real(kind=ESMF_KIND_R8), allocatable :: restart_fh(:) + type(ESMF_TimeInterval) :: fhInterval + type(ESMF_Config) :: CF_mc + !----------------------------------------------------------------------- + + ! set up Times to write non-interval restarts + inquire(FILE='model_configure', EXIST=isPresent) + if (isPresent) then !model_configure exists. this is ufs run + CF_mc = ESMF_ConfigCreate(rc=rc) + call ESMF_ConfigLoadFile(config=CF_mc,filename='model_configure' ,rc=rc) + if (ESMF_LogFoundError(rcToCheck=rc, msg=ESMF_LOGERR_PASSTHRU, line=__LINE__, file=__FILE__)) return + + nfh = ESMF_ConfigGetLen(config=CF_mc, label ='restart_fh:',rc=rc) + if (nfh .gt. 0) then + allocate(restart_fh(1:nfh)) + allocate(restartfh_info%restartFhTimes(1:nfh)) !not deallocated here + + call ESMF_ConfigGetAttribute(CF_mc,valueList=restart_fh,label='restart_fh:', rc=rc) + if (ESMF_LogFoundError(rcToCheck=rc, msg=ESMF_LOGERR_PASSTHRU, line=__LINE__, file=__FILE__)) return + ! create a list of times at each restart_fh + do n = 1,nfh + fh_s = NINT(3600*restart_fh(n)) + call ESMF_TimeIntervalSet(fhInterval, s=fh_s, rc=rc) + if (ESMF_LogFoundError(rcToCheck=rc, msg=ESMF_LOGERR_PASSTHRU, line=__LINE__, file=__FILE__)) return + restartfh_info%restartFhTimes(n) = currentTime + fhInterval + call ESMF_TimePrint(restartfh_info%restartFhTimes(n), options="string", & + preString="restart_fh at ", unit=timestr, rc=rc) + if (ESMF_LogFoundError(rcToCheck=rc, msg=ESMF_LOGERR_PASSTHRU, line=__LINE__, file=__FILE__)) return + if (lLog) then + if (mod(fh_s,dtime) /= 0) then + call ESMF_LogWrite('restart time NOT to be written for '//trim(timestr), ESMF_LOGMSG_INFO) + else + call ESMF_LogWrite('restart time to be written for '//trim(timestr), ESMF_LOGMSG_INFO) + end if + end if + end do + deallocate(restart_fh) + end if !nfh>0 + call ESMF_ConfigDestroy(CF_mc, rc=rc) + if (ESMF_LogFoundError(rcToCheck=rc, msg=ESMF_LOGERR_PASSTHRU, line=__LINE__, file=__FILE__)) return + end if !model_configure + + end subroutine init_is_restart_fh + + subroutine is_restart_fh(clock, restartfh_info, lWrite) + ! + ! !DESCRIPTION: + ! True/false if time to write restart + ! + ! !USES: + use ESMF, only : ESMF_ClockGetNextTime + + ! + ! !ARGUMENTS: + type(ESMF_Clock), intent(in) :: clock + type(is_restart_fh_type), intent(inout) :: restartfh_info + logical, intent(out) :: lWrite ! time to write? + ! + ! !LOCAL VARIABLES: + integer :: nfh, rc + type(ESMF_Time) :: nextTime + !----------------------------------------------------------------------- + + restartfh_info%write_restartfh = .false. + if (allocated(restartfh_info%restartFhTimes)) then + ! check if next time is == to any restartfhtime + do nfh = 1,size(restartfh_info%restartFhTimes) + call ESMF_ClockGetNextTime(clock, nextTime=nexttime, rc=rc) + if (ESMF_LogFoundError(rcToCheck=rc, msg=ESMF_LOGERR_PASSTHRU, line=__LINE__, file=__FILE__)) return + if (nextTime == restartfh_info%restartFhTimes(nfh)) restartfh_info%write_restartfh = .true. + end do + end if + + lWrite = restartfh_info%write_restartfh + + end subroutine is_restart_fh + + subroutine finalize_restart_fh(restartfh_info) + ! + ! !DESCRIPTION: + ! Clean-up...release allocated memory + ! + ! !USES: + ! + ! !ARGUMENTS: + type(is_restart_fh_type), intent(inout) :: restartfh_info + ! + ! !LOCAL VARIABLES: + !----------------------------------------------------------------------- + + if (allocated(restartfh_info%restartFhTimes)) deallocate(restartfh_info%restartFhTimes) + + end subroutine finalize_restart_fh + +end module shr_is_restart_fh_mod diff --git a/CICE-interface/CICE b/CICE-interface/CICE index 513f8d1539..ff7fd76118 160000 --- a/CICE-interface/CICE +++ b/CICE-interface/CICE @@ -1 +1 @@ -Subproject commit 513f8d153924e18ae0f91f5440195d15210a489e +Subproject commit ff7fd76118d47ccef6cb934b834161c6be5a9909 diff --git a/CICE-interface/CMakeLists.txt b/CICE-interface/CMakeLists.txt index b027e1d3e2..c64f8bcc2d 100644 --- a/CICE-interface/CMakeLists.txt +++ b/CICE-interface/CMakeLists.txt @@ -63,7 +63,7 @@ list(APPEND lib_src_files ${icepack_files} ${cice_mpi_comm_files} ${cice_nuopc_cmeps_driver_files} - ${cice_cdeps_inline_files}) + ${cice_cdeps_share_files}) list(APPEND _cice_defs FORTRANUNDERSCORE coupled) diff --git a/CICE-interface/cice_files.cmake b/CICE-interface/cice_files.cmake index 2a62c72e30..9ef56bcef8 100644 --- a/CICE-interface/cice_files.cmake +++ b/CICE-interface/cice_files.cmake @@ -151,8 +151,8 @@ list(APPEND cice_nuopc_cmeps_driver_files CICE/cicecore/drivers/nuopc/cmeps/ice_mesh_mod.F90 ) -#-- Using ice prescribed ifndef cesmcoupled -list(APPEND cice_cdeps_inline_files +list(APPEND cice_cdeps_share_files + #-- Using ice prescribed ifndef cesmcoupled ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/share/shr_orb_mod.F90 ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/share/shr_const_mod.F90 ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/share/shr_abort_mod.F90 @@ -168,4 +168,7 @@ list(APPEND cice_cdeps_inline_files ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/streams/dshr_stream_mod.F90 ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/streams/dshr_methods_mod.F90 ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/dshr/dshr_mod.F90 + + #restart_fh + ${PROJECT_SOURCE_DIR}/CDEPS-interface/ufs/cdeps_share/shr_is_restart_fh_mod.F90 ) diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 24e9eed4ff..55576eba97 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 24e9eed4ffe8138bef635c8f916f91b142595675 +Subproject commit 55576eba972ad53cc6546f00d409fa27361f78bd diff --git a/CMEPS-interface/CMakeLists.txt b/CMEPS-interface/CMakeLists.txt index efbd585acc..89a815bd22 100644 --- a/CMEPS-interface/CMakeLists.txt +++ b/CMEPS-interface/CMakeLists.txt @@ -42,7 +42,8 @@ list(APPEND _ufs_util_files ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/share/shr_sys_mod.F90 ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/share/shr_kind_mod.F90 ${PROJECT_SOURCE_DIR}/CDEPS-interface/ufs/cdeps_share/shr_assert_mod.F90 - ${PROJECT_SOURCE_DIR}/CDEPS-interface/ufs/cdeps_share/shr_infnan_mod.F90) + ${PROJECT_SOURCE_DIR}/CDEPS-interface/ufs/cdeps_share/shr_infnan_mod.F90 + ${PROJECT_SOURCE_DIR}/CDEPS-interface/ufs/cdeps_share/shr_is_restart_fh_mod.F90) list(APPEND _mediator_files CMEPS/mediator/med_phases_restart_mod.F90 diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 index 5e0c21f64f..8cc8b70f01 160000 --- a/MOM6-interface/MOM6 +++ b/MOM6-interface/MOM6 @@ -1 +1 @@ -Subproject commit 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 +Subproject commit 8cc8b70f0143e803efb842ed871f9be3062862a4 diff --git a/MOM6-interface/mom6_files.cmake b/MOM6-interface/mom6_files.cmake index 98fb78776e..1256888867 100644 --- a/MOM6-interface/mom6_files.cmake +++ b/MOM6-interface/mom6_files.cmake @@ -315,6 +315,10 @@ list(APPEND mom6_nuopc_src_files MOM6/config_src/drivers/timing_tests/time_MOM_EOS.F90 ) +list(APPEND mom6_nuopc_src_files + ${PROJECT_SOURCE_DIR}/CDEPS-interface/ufs/cdeps_share/shr_is_restart_fh_mod.F90 +) + list(APPEND mom6_solo_src_files MOM6/config_src/drivers/solo_driver/MESO_surface_forcing.F90 MOM6/config_src/drivers/solo_driver/MOM_driver.F90 diff --git a/WW3 b/WW3 index 4f518cf86b..29063ec7b6 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit 4f518cf86baa723f9a1e7f5e4ed375f0d32a6f4a +Subproject commit 29063ec7b631d3a967172e8c45c5af13a18e0a82 diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 507cdf7d86..6c86847984 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20241203 +export BL_DATE=20241206 diff --git a/tests/default_vars.sh b/tests/default_vars.sh index fa43453bd2..54bd1caf4b 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -421,6 +421,7 @@ export CMP_DATAONLY=false export esmf_logkind="ESMF_LOGKIND_MULTI" export DumpFields="false" export MED_history_n=1000000 +export RESTART_FH=" " export_fv3_v16 () { @@ -1359,6 +1360,7 @@ export_cmeps() { export pio_rearranger=box export RUNTYPE=startup export RESTART_N=${FHMAX} + export RESTART_FH=" " export CMEPS_RESTART_DIR=./RESTART/ export cap_dbug_flag=0 export WRITE_ENDOFRUN_RESTART=.false. diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index b782e4b6e1..1791ea1461 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,20 +1,20 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -8e98c5cfbea95cd44f47e48440df1d936b16336b +7f91b3de985a4799ef7f11450059958002f6aa8c 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) - 513f8d153924e18ae0f91f5440195d15210a489e CICE-interface/CICE (CICE6.0.0-391-g513f8d1) + 6c497bdfce0add89af9df9ad4be4a6a1bdf48494 CICE-interface/CICE (remotes/origin/restart_fh) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) + 3d3d28c120a1ad343f91e0e14dd38cd0cde6ae96 CMEPS-interface/CMEPS (remotes/origin/restart_fh) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 7e7719927a80104d1bb4badf790e509f1e4d39b8 FV3 (remotes/origin/rrfsv1-to-ufs/dev4) - f28be0e882fe53886d23076f56908588eac676c2 FV3/atmos_cubed_sphere (remotes/origin/rrfsv1-to-ufs/dev4) + 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) + 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - c2fb52eacb4e0402b2c307241c0c3acb0ea81b1c FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5524-gc2fb52ea) + dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -23,11 +23,11 @@ Submodule hashes used in testing: 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) + e2f6c128f939faec4efa3ce88f3f9025804fb3ae MOM6-interface/MOM6 (remotes/origin/restart_fh) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 615236be21904e180c12c4babfde89fdb448a2cf WW3 (remotes/origin/bug/addPIOswitch) + bdf039138204122991cea42729ee44c17ae7dd49 WW3 (6.07.1-353-gbdf03913) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,268 +38,268 @@ 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-20241203 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3092908 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241206 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1598504 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:26, 11:25] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [41:50, 03:06](3190 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:27, 11:34] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [41:49, 04:12](1906 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:06, 03:42](1954 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [19:47, 03:24](1074 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [41:50, 03:22](1888 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:27, 11:51] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [41:47, 01:30](1901 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:31] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [47:56, 03:30](1949 MB) - -PASS -- COMPILE 's2swa_intel' [13:27, 11:26] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [41:47, 02:26](3228 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [41:47, 02:55](3226 MB) -PASS -- TEST 'cpld_restart_p8_intel' [15:37, 02:38](3156 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [41:47, 02:39](3244 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [23:49, 03:17](3171 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [41:47, 02:50](3464 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [41:47, 02:22](3218 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [41:48, 02:48](3167 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [41:47, 03:25](3228 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [41:47, 03:08](3207 MB) - -PASS -- COMPILE 's2sw_intel' [12:27, 11:13] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [42:49, 02:08](1918 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [42:49, 03:01](1979 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:26, 10:16] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [42:50, 03:20](1976 MB) - -PASS -- COMPILE 's2s_intel' [11:25, 10:14] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [43:49, 01:52](2878 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [43:49, 02:44](2892 MB) -PASS -- TEST 'cpld_restart_c48_intel' [38:21, 02:03](2305 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:32, 15:55] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [37:43, 02:31](3226 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:28, 11:27] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [41:47, 02:36](1921 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:33, 02:00](1106 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [07:28, 02:24](1894 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:11] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [40:36, 02:15](1965 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:26, 09:32] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [32:16, 01:53](663 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [29:39, 01:48](1553 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [26:47, 02:08](1574 MB) -PASS -- TEST 'control_latlon_intel' [26:29, 01:21](1564 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [21:53, 02:06](1564 MB) -PASS -- TEST 'control_c48_intel' [19:17, 01:41](1581 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [17:25, 01:57](707 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [17:25, 02:08](1586 MB) -PASS -- TEST 'control_c192_intel' [16:13, 01:50](1686 MB) -PASS -- TEST 'control_c384_intel' [15:34, 02:58](1982 MB) -PASS -- TEST 'control_c384gdas_intel' [12:24, 03:40](1159 MB) -PASS -- TEST 'control_stochy_intel' [12:06, 01:30](616 MB) -PASS -- TEST 'control_stochy_restart_intel' [06:33, 01:37](421 MB) -PASS -- TEST 'control_lndp_intel' [12:05, 01:50](618 MB) -PASS -- TEST 'control_iovr4_intel' [09:21, 01:45](611 MB) -PASS -- TEST 'control_iovr5_intel' [09:09, 02:18](616 MB) -PASS -- TEST 'control_p8_intel' [08:45, 02:59](1850 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [08:37, 02:57](1848 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [08:37, 02:52](1860 MB) -PASS -- TEST 'control_restart_p8_intel' [01:19, 03:27](1007 MB) -PASS -- TEST 'control_noqr_p8_intel' [08:35, 02:41](1844 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [59:56, 03:12](1014 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:23, 03:03](1854 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:23, 03:25](1932 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:21, 02:10](1853 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:36, 03:25](1909 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:33, 02:47](1858 MB) -PASS -- TEST 'merra2_thompson_intel' [06:24, 04:13](1856 MB) -PASS -- TEST 'regional_control_intel' [06:23, 02:09](899 MB) -PASS -- TEST 'regional_restart_intel' [58:30, 01:15](875 MB) -PASS -- TEST 'regional_decomp_intel' [05:36, 01:28](890 MB) -PASS -- TEST 'regional_2threads_intel' [05:28, 01:14](1023 MB) -PASS -- TEST 'regional_noquilt_intel' [04:48, 01:21](1222 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [03:35, 01:56](903 MB) -PASS -- TEST 'regional_wofs_intel' [01:55, 01:26](1583 MB) - -PASS -- COMPILE 'rrfs_intel' [10:24, 08:45] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [32:25, 03:31](1002 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [32:26, 02:17](1157 MB) -PASS -- TEST 'rap_decomp_intel' [32:25, 02:38](1003 MB) -PASS -- TEST 'rap_2threads_intel' [32:25, 04:11](1081 MB) -PASS -- TEST 'rap_restart_intel' [01:42, 03:23](883 MB) -PASS -- TEST 'rap_sfcdiff_intel' [32:25, 03:13](1001 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [32:25, 03:34](995 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [01:36, 03:49](886 MB) -PASS -- TEST 'hrrr_control_intel' [32:25, 03:29](998 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [32:25, 04:21](992 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [32:26, 03:53](1069 MB) -PASS -- TEST 'hrrr_control_restart_intel' [01:17, 01:58](832 MB) -PASS -- TEST 'rrfs_v1beta_intel' [01:15, 03:58](995 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [00:58, 02:01](1956 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [00:18, 01:40](1944 MB) - -PASS -- COMPILE 'csawmg_intel' [09:23, 08:05] -PASS -- TEST 'control_csawmg_intel' [33:26, 01:37](951 MB) -PASS -- TEST 'control_ras_intel' [33:26, 01:25](655 MB) - -PASS -- COMPILE 'wam_intel' [10:23, 08:13] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [59:36, 01:42](1645 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:23, 08:26] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [59:25, 03:07](1856 MB) -PASS -- TEST 'regional_control_faster_intel' [59:02, 02:11](899 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 07:32] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [57:42, 01:49](1608 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [57:18, 01:53](1609 MB) -PASS -- TEST 'control_stochy_debug_intel' [57:12, 01:35](807 MB) -PASS -- TEST 'control_lndp_debug_intel' [57:12, 02:11](807 MB) -PASS -- TEST 'control_csawmg_debug_intel' [57:02, 02:07](1113 MB) -PASS -- TEST 'control_ras_debug_intel' [56:50, 02:06](811 MB) -PASS -- TEST 'control_diag_debug_intel' [56:50, 01:50](1662 MB) -PASS -- TEST 'control_debug_p8_intel' [55:39, 01:36](1905 MB) -PASS -- TEST 'regional_debug_intel' [55:18, 01:49](922 MB) -PASS -- TEST 'rap_control_debug_intel' [55:04, 01:39](1189 MB) -PASS -- TEST 'hrrr_control_debug_intel' [54:49, 01:49](1185 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [54:32, 01:35](1189 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [53:46, 01:21](1186 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [53:18, 01:55](1190 MB) -PASS -- TEST 'rap_diag_debug_intel' [53:06, 01:43](1272 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [52:55, 01:45](1190 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [52:55, 02:08](1189 MB) -PASS -- TEST 'rap_lndp_debug_intel' [51:48, 01:37](1190 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [51:12, 01:41](1189 MB) -PASS -- TEST 'rap_noah_debug_intel' [51:10, 01:51](1183 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [51:06, 01:51](1187 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [50:40, 01:56](1185 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [50:40, 02:05](1181 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [50:36, 02:07](1188 MB) -PASS -- TEST 'rap_flake_debug_intel' [50:33, 01:44](1191 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [50:15, 04:17](1187 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:20, 04:26] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [35:27, 01:27](1691 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:27, 11:47] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:43, 03:34](3191 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:26, 11:44] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:43, 03:51](1905 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [58:16, 03:52](1934 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [58:09, 03:43](1085 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:44, 03:27](1882 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:28, 11:56] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:42, 01:59](1900 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:22, 05:27] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:49, 03:42](1951 MB) + +PASS -- COMPILE 's2swa_intel' [13:26, 11:36] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [18:43, 03:20](3227 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:43, 02:51](3225 MB) +PASS -- TEST 'cpld_restart_p8_intel' [00:09, 03:15](3156 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [18:43, 03:13](3245 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [53:20, 02:46](3171 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [18:43, 02:44](3460 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [18:43, 02:52](3219 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [18:44, 02:50](3169 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:43, 03:24](3227 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [18:43, 03:05](3206 MB) + +PASS -- COMPILE 's2sw_intel' [12:25, 11:04] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [19:44, 02:19](1918 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [19:44, 03:03](1979 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:26, 10:01] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [20:44, 03:08](1975 MB) + +PASS -- COMPILE 's2s_intel' [12:26, 10:23] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [19:43, 01:54](2877 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [19:43, 02:39](2892 MB) +PASS -- TEST 'cpld_restart_c48_intel' [14:13, 02:18](2304 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:32, 15:56] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [14:38, 02:33](3227 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [12:27, 11:16] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:43, 02:23](1920 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [50:47, 02:36](1092 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [49:02, 02:57](1900 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 05:09] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [18:30, 02:48](1959 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:26, 09:33] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [09:06, 01:38](662 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [09:02, 02:17](1553 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:30, 02:06](1575 MB) +PASS -- TEST 'control_latlon_intel' [03:38, 02:12](1565 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [57:39, 02:14](1564 MB) +PASS -- TEST 'control_c48_intel' [55:58, 01:56](1583 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [55:55, 02:01](701 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [55:38, 02:03](1583 MB) +PASS -- TEST 'control_c192_intel' [55:11, 02:09](1683 MB) +PASS -- TEST 'control_c384_intel' [54:43, 03:04](1964 MB) +PASS -- TEST 'control_c384gdas_intel' [53:08, 04:09](1165 MB) +PASS -- TEST 'control_stochy_intel' [52:20, 01:21](617 MB) +PASS -- TEST 'control_stochy_restart_intel' [44:45, 01:22](426 MB) +PASS -- TEST 'control_lndp_intel' [51:18, 01:38](615 MB) +PASS -- TEST 'control_iovr4_intel' [47:38, 02:11](616 MB) +PASS -- TEST 'control_iovr5_intel' [47:18, 02:03](611 MB) +PASS -- TEST 'control_p8_intel' [46:35, 03:24](1850 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [46:35, 03:43](1856 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [46:30, 03:18](1851 MB) +PASS -- TEST 'control_restart_p8_intel' [38:14, 02:18](1010 MB) +PASS -- TEST 'control_noqr_p8_intel' [46:13, 02:24](1856 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [36:31, 03:04](1014 MB) +PASS -- TEST 'control_decomp_p8_intel' [46:03, 03:01](1844 MB) +PASS -- TEST 'control_2threads_p8_intel' [45:48, 02:02](1933 MB) +PASS -- TEST 'control_p8_lndp_intel' [45:40, 02:19](1851 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [45:40, 02:49](1911 MB) +PASS -- TEST 'control_p8_mynn_intel' [45:30, 03:19](1856 MB) +PASS -- TEST 'merra2_thompson_intel' [45:15, 04:15](1854 MB) +PASS -- TEST 'regional_control_intel' [44:35, 02:07](898 MB) +PASS -- TEST 'regional_restart_intel' [36:42, 02:01](874 MB) +PASS -- TEST 'regional_decomp_intel' [43:43, 01:55](892 MB) +PASS -- TEST 'regional_2threads_intel' [43:24, 01:44](1011 MB) +PASS -- TEST 'regional_noquilt_intel' [42:55, 01:49](1217 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [41:03, 02:01](895 MB) +PASS -- TEST 'regional_wofs_intel' [40:42, 01:39](1582 MB) + +PASS -- COMPILE 'rrfs_intel' [10:24, 08:51] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [09:19, 02:55](1001 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:20, 02:04](1159 MB) +PASS -- TEST 'rap_decomp_intel' [09:19, 03:52](1002 MB) +PASS -- TEST 'rap_2threads_intel' [09:19, 03:51](1086 MB) +PASS -- TEST 'rap_restart_intel' [40:39, 03:55](880 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:19, 03:43](999 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:19, 03:33](996 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [38:41, 03:01](886 MB) +PASS -- TEST 'hrrr_control_intel' [09:19, 02:36](998 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [09:19, 03:58](991 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [38:15, 03:55](1067 MB) +PASS -- TEST 'hrrr_control_restart_intel' [37:46, 02:04](832 MB) +PASS -- TEST 'rrfs_v1beta_intel' [37:38, 03:10](997 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [37:19, 02:14](1956 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [37:17, 01:19](1947 MB) + +PASS -- COMPILE 'csawmg_intel' [09:22, 08:07] +PASS -- TEST 'control_csawmg_intel' [10:21, 01:58](952 MB) +PASS -- TEST 'control_ras_intel' [10:20, 02:10](652 MB) + +PASS -- COMPILE 'wam_intel' [10:24, 08:14] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [36:10, 01:58](1645 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:25, 08:26] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [36:08, 03:35](1856 MB) +PASS -- TEST 'regional_control_faster_intel' [36:05, 01:57](887 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:24, 07:39] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [35:56, 02:04](1607 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [34:59, 01:34](1602 MB) +PASS -- TEST 'control_stochy_debug_intel' [34:48, 01:47](807 MB) +PASS -- TEST 'control_lndp_debug_intel' [34:14, 01:25](805 MB) +PASS -- TEST 'control_csawmg_debug_intel' [33:33, 01:48](1112 MB) +PASS -- TEST 'control_ras_debug_intel' [33:14, 02:09](812 MB) +PASS -- TEST 'control_diag_debug_intel' [33:06, 01:40](1661 MB) +PASS -- TEST 'control_debug_p8_intel' [32:37, 01:23](1905 MB) +PASS -- TEST 'regional_debug_intel' [32:19, 02:05](938 MB) +PASS -- TEST 'rap_control_debug_intel' [32:17, 01:35](1189 MB) +PASS -- TEST 'hrrr_control_debug_intel' [32:06, 01:18](1186 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [31:22, 01:19](1188 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [30:53, 02:11](1190 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [30:46, 02:09](1188 MB) +PASS -- TEST 'rap_diag_debug_intel' [30:11, 02:12](1272 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [29:51, 01:35](1193 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [29:47, 01:42](1189 MB) +PASS -- TEST 'rap_lndp_debug_intel' [29:26, 01:59](1191 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [29:17, 01:36](1190 MB) +PASS -- TEST 'rap_noah_debug_intel' [29:00, 01:21](1182 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [28:52, 01:46](1190 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [28:37, 01:43](1184 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [28:16, 01:43](1178 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [27:46, 01:38](1188 MB) +PASS -- TEST 'rap_flake_debug_intel' [27:42, 02:11](1189 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [27:14, 04:04](1193 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:20, 04:25] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [12:23, 01:28](1690 MB) PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 08:05] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [50:15, 02:34](1029 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [49:18, 03:39](876 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [48:52, 04:09](876 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [48:52, 03:39](929 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [48:49, 04:58](923 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [47:40, 03:20](868 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [36:43, 03:45](789 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [38:29, 01:28](760 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:22, 08:07] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [47:11, 02:16](1082 MB) -PASS -- TEST 'conus13km_2threads_intel' [39:58, 01:37](1064 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [39:03, 02:03](958 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:24, 08:09] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [47:04, 02:26](897 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:20, 04:32] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [45:26, 01:38](1059 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [45:11, 02:05](1064 MB) -PASS -- TEST 'conus13km_debug_intel' [45:10, 01:23](1156 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [44:56, 01:38](822 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [44:47, 01:37](1153 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [44:24, 01:23](1223 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:23] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [44:21, 01:46](1088 MB) - -PASS -- COMPILE 'hafsw_intel' [11:24, 10:06] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [43:30, 02:27](687 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [43:23, 01:42](1047 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [43:14, 02:22](735 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [42:39, 02:35](903 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [41:36, 02:41](782 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [41:33, 02:13](461 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [39:00, 03:06](482 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [38:57, 02:10](377 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [38:34, 03:53](445 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [38:09, 01:50](495 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [38:03, 02:37](497 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [36:57, 02:08](560 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [36:45, 02:09](406 MB) -PASS -- TEST 'gnv1_nested_intel' [35:35, 04:34](1697 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:19, 04:51] ( 1444 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [34:47, 02:07](610 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:26, 09:33] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [34:14, 02:35](602 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [34:06, 02:05](781 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:28, 09:48] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [33:50, 03:03](778 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:26, 09:05] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [33:01, 02:48](736 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [32:56, 02:18](707 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [32:32, 01:17](899 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:26, 09:10] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [32:22, 01:35](766 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [26:57, 01:30](754 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [32:21, 01:50](643 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [30:12, 01:23](643 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [30:06, 01:23](643 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [29:37, 01:37](765 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [29:21, 01:39](765 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [27:55, 01:55](644 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [26:57, 02:16](697 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [26:53, 02:37](669 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [26:20, 02:03](764 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [25:48, 01:25](2031 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [25:43, 02:11](2032 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [14:29, 09:23] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [25:38, 01:59](765 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [08:22, 00:51] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [25:09, 01:26](309 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [24:15, 01:38](447 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [19:43, 01:54](448 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:32, 10:08] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [24:04, 02:24](1912 MB) - -PASS -- COMPILE 'atml_intel' [18:34, 09:30] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [23:59, 03:21](1878 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [23:34, 03:35](1879 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [10:03, 01:57](1036 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:29, 05:13] ( 866 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [22:50, 03:43](1920 MB) - -PASS -- COMPILE 'atmw_intel' [12:26, 08:50] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [22:31, 03:13](1879 MB) - -PASS -- COMPILE 'atmaero_intel' [11:24, 08:32] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [22:30, 02:25](3116 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [22:19, 02:41](3000 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [22:15, 02:58](3006 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:21, 04:25] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [21:31, 02:17](4471 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [27:12, 02:32](1038 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [26:49, 03:12](878 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [26:43, 05:03](875 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [26:16, 03:09](933 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [26:04, 02:51](921 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [25:41, 04:49](869 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [13:58, 03:10](789 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [14:15, 02:09](759 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:23, 08:02] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [24:37, 01:41](1080 MB) +PASS -- TEST 'conus13km_2threads_intel' [18:26, 01:52](1064 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [18:17, 01:31](958 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:23, 08:07] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [23:44, 01:55](898 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:21, 04:32] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [23:39, 02:11](1063 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [23:29, 02:13](1063 MB) +PASS -- TEST 'conus13km_debug_intel' [22:47, 01:26](1155 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [21:17, 02:10](856 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [21:18, 02:04](1131 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:15, 02:10](1215 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 04:22] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [21:12, 01:33](1087 MB) + +PASS -- COMPILE 'hafsw_intel' [14:28, 10:01] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [20:56, 02:25](687 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [20:47, 01:59](1051 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [20:27, 02:50](729 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [20:27, 03:11](889 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:01, 02:33](824 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [17:42, 02:17](461 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [17:13, 02:37](478 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [16:07, 02:36](377 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:54, 03:38](437 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [15:00, 01:55](496 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [14:22, 02:41](494 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [14:17, 01:54](564 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [14:06, 02:14](407 MB) +PASS -- TEST 'gnv1_nested_intel' [13:58, 03:51](1698 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:24, 04:50] ( 1444 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:57, 02:37](668 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [14:29, 09:29] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:41, 01:46](602 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:24, 02:37](782 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [19:34, 09:50] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:05, 02:53](782 MB) + +PASS -- COMPILE 'hafs_all_intel' [20:35, 09:13] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:47, 02:39](732 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:14, 02:50](705 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [09:40, 01:16](898 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [20:35, 09:27] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:31, 01:41](766 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:05, 01:25](755 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [08:49, 01:33](649 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:56, 01:37](642 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:18, 01:37](642 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:29, 01:26](766 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:05, 01:29](765 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:37, 01:33](645 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:23, 01:47](689 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [04:27, 02:29](671 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:32, 01:26](753 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:31, 01:33](2032 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [02:55, 01:34](2033 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [21:35, 09:19] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:24, 01:18](753 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [11:25, 00:51] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:08, 01:22](302 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:03, 01:49](447 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [58:31, 01:34](450 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [20:33, 10:04] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [02:00, 02:09](1916 MB) + +PASS -- COMPILE 'atml_intel' [19:33, 09:30] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [01:44, 02:57](1880 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [01:17, 03:02](1879 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [48:49, 02:16](1025 MB) + +PASS -- COMPILE 'atml_debug_intel' [12:26, 05:20] ( 866 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [00:43, 03:17](1920 MB) + +PASS -- COMPILE 'atmw_intel' [16:30, 09:03] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [00:32, 03:02](1879 MB) + +PASS -- COMPILE 'atmaero_intel' [16:31, 08:32] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [59:58, 02:51](3116 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [59:29, 02:29](2998 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [59:11, 02:33](3006 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [11:24, 04:22] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [58:59, 02:05](4480 MB) SYNOPSIS: -Starting Date/Time: 20241205 18:04:24 -Ending Date/Time: 20241205 20:10:22 -Total Time: 02h:06m:27s +Starting Date/Time: 20241209 18:27:30 +Ending Date/Time: 20241209 20:32:57 +Total Time: 02h:05m:55s Compiles Completed: 37/37 Tests Completed: 177/177 diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index c72284fe98..b5b476322f 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,20 +1,20 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -1e6fc62a38e1b61538e203a7f297583333a18d2a +7e5a67f43c273ddff3fdc3f6cec2ba1b5b1f5be2 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) - 513f8d153924e18ae0f91f5440195d15210a489e CICE-interface/CICE (CICE6.0.0-391-g513f8d1) + 6c497bdfce0add89af9df9ad4be4a6a1bdf48494 CICE-interface/CICE (remotes/origin/restart_fh) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) + 3d3d28c120a1ad343f91e0e14dd38cd0cde6ae96 CMEPS-interface/CMEPS (remotes/origin/restart_fh) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 7e7719927a80104d1bb4badf790e509f1e4d39b8 FV3 (remotes/origin/rrfsv1-to-ufs/dev4) - f28be0e882fe53886d23076f56908588eac676c2 FV3/atmos_cubed_sphere (remotes/origin/rrfsv1-to-ufs/dev4) + 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) + 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - c2fb52eacb4e0402b2c307241c0c3acb0ea81b1c FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5524-gc2fb52ea) + dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -23,11 +23,11 @@ Submodule hashes used in testing: 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) + e2f6c128f939faec4efa3ce88f3f9025804fb3ae MOM6-interface/MOM6 (remotes/origin/restart_fh) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 615236be21904e180c12c4babfde89fdb448a2cf WW3 (remotes/origin/bug/addPIOswitch) + bdf039138204122991cea42729ee44c17ae7dd49 WW3 (6.07.1-353-gbdf03913) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,287 +38,288 @@ 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: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20241203 -COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_99072 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20241206 +COMPARISON DIRECTORY: /glade/derecho/scratch/fandrade/fandrade/FV3_RT/rt_55842 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 -* (-r) - USE ROCOTO - -PASS -- COMPILE 's2swa_32bit_intel' [21:21, 21:21] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:35, 10:15](3198 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:08, 23:08] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [16:03, 14:22](1921 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:04, 15:13](1957 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:00, 07:13](1070 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:54, 16:13](1888 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:06, 23:06] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [14:37, 13:51](1907 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:33, 11:33] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:58, 25:20](1943 MB) - -PASS -- COMPILE 's2swa_intel' [21:21, 21:21] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [15:06, 13:47](3221 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:55, 13:29](3234 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:11, 07:40](3147 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [15:04, 13:36](3251 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:16, 07:44](3177 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [13:44, 12:29](3745 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:32, 13:15](3220 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [12:04, 10:49](3533 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:58, 13:40](3236 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [11:10, 09:05](3817 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:06, 06:30](3619 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [24:43, 17:21](4519 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:57, 10:45](4616 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:00, 07:49](3204 MB) - -PASS -- COMPILE 's2sw_intel' [19:31, 19:31] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:39, 07:33](1924 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:07, 11:56](1999 MB) - -PASS -- COMPILE 's2swa_debug_intel' [11:25, 11:25] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [22:05, 20:53](3302 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:52, 10:52] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:49, 08:47](1959 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:58, 15:58] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:06, 04:53](1986 MB) - -PASS -- COMPILE 's2s_intel' [16:34, 16:34] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [06:00, 05:15](2879 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [02:25, 01:39](2896 MB) -PASS -- TEST 'cpld_restart_c48_intel' [01:48, 00:58](2310 MB) - -PASS -- COMPILE 's2swa_faster_intel' [23:34, 23:34] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [14:41, 13:22](3236 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:16, 21:16] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:46, 23:24](1926 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:41, 12:21](1105 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:37, 27:28](1893 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:59, 10:59] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:45, 27:38](1967 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:15, 14:15] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:38, 03:24](668 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:17, 02:41](1565 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:20, 02:41](1571 MB) -PASS -- TEST 'control_latlon_intel' [03:07, 02:37](1567 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:17, 02:39](1563 MB) -PASS -- TEST 'control_c48_intel' [09:47, 09:14](1588 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [05:31, 05:17](708 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [09:43, 09:11](1589 MB) -PASS -- TEST 'control_c192_intel' [10:48, 09:57](1688 MB) -PASS -- TEST 'control_c384_intel' [13:07, 11:18](1980 MB) -PASS -- TEST 'control_c384gdas_intel' [09:41, 07:12](1179 MB) -PASS -- TEST 'control_stochy_intel' [01:39, 01:24](627 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:06, 00:51](437 MB) -PASS -- TEST 'control_lndp_intel' [01:35, 01:22](623 MB) -PASS -- TEST 'control_iovr4_intel' [02:20, 02:04](617 MB) -PASS -- TEST 'control_iovr5_intel' [02:23, 02:05](620 MB) -PASS -- TEST 'control_p8_intel' [04:55, 03:40](1863 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:28, 03:11](1859 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:54, 03:38](1862 MB) -PASS -- TEST 'control_restart_p8_intel' [03:38, 02:19](1009 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:53, 03:42](1860 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:34, 02:25](1020 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:56, 03:42](1856 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:39, 03:26](1939 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:43, 06:03](1859 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:19, 03:54](1911 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:30, 03:11](1864 MB) -PASS -- TEST 'merra2_thompson_intel' [05:05, 03:34](1856 MB) -PASS -- TEST 'regional_control_intel' [04:56, 04:27](898 MB) -PASS -- TEST 'regional_restart_intel' [02:57, 02:26](876 MB) -PASS -- TEST 'regional_decomp_intel' [05:06, 04:38](893 MB) -PASS -- TEST 'regional_noquilt_intel' [04:52, 04:20](1214 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [04:59, 04:23](903 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [04:54, 04:23](891 MB) -PASS -- TEST 'regional_wofs_intel' [06:19, 05:48](1591 MB) - -PASS -- COMPILE 'rrfs_intel' [12:47, 12:47] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [07:10, 06:07](1006 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:52, 03:56](1164 MB) -PASS -- TEST 'rap_decomp_intel' [07:30, 06:23](1004 MB) -PASS -- TEST 'rap_2threads_intel' [06:48, 05:41](1084 MB) -PASS -- TEST 'rap_restart_intel' [04:20, 03:13](882 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:09, 06:06](1007 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:28, 06:22](1005 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:45, 04:38](883 MB) -PASS -- TEST 'hrrr_control_intel' [04:22, 03:13](999 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:28, 03:18](1000 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [03:57, 02:48](1077 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:02, 01:44](831 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:04, 06:01](1000 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:25, 08:08](1961 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:07, 07:52](1946 MB) - -PASS -- COMPILE 'csawmg_intel' [11:41, 11:41] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [07:00, 06:28](962 MB) -PASS -- TEST 'control_ras_intel' [03:04, 02:50](658 MB) - -PASS -- COMPILE 'wam_intel' [11:34, 11:34] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [10:47, 10:13](1644 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:03, 12:03] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:20, 03:04](1861 MB) -PASS -- TEST 'regional_control_faster_intel' [04:41, 04:11](895 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [14:34, 14:34] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:50, 02:07](1605 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:47, 02:08](1610 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:04, 02:52](806 MB) -PASS -- TEST 'control_lndp_debug_intel' [02:52, 02:39](807 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:48, 04:15](1113 MB) -PASS -- TEST 'control_ras_debug_intel' [02:49, 02:36](813 MB) -PASS -- TEST 'control_diag_debug_intel' [03:23, 02:38](1663 MB) -PASS -- TEST 'control_debug_p8_intel' [03:21, 02:50](1893 MB) -PASS -- TEST 'regional_debug_intel' [16:24, 15:55](923 MB) -PASS -- TEST 'rap_control_debug_intel' [05:04, 04:50](1187 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:48, 04:33](1189 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:01, 04:46](1188 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:54, 04:39](1186 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:00, 04:46](1187 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:24, 04:52](1272 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:01, 04:47](1190 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:59, 04:45](1186 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:07, 04:52](1189 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:55, 04:41](1187 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:57, 04:43](1189 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:53, 04:38](1189 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:55, 07:41](1187 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:54, 04:39](1184 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:00, 04:46](1189 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:55, 04:40](1190 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:11, 08:00](1197 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:14, 07:14] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [12:46, 12:11](1695 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:26, 11:26] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:37, 03:38](1034 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:09, 05:08](879 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:24, 02:47](874 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:49, 04:47](932 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:57, 02:25](927 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:25, 02:53](870 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:53, 03:53](794 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [01:49, 01:33](768 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:23, 11:23] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:37, 01:54](1081 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:39, 01:02](1078 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:50, 01:10](966 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:39, 11:39] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:11, 03:38](903 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:31, 07:31] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:48, 04:35](1063 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:47, 04:32](1067 MB) -PASS -- TEST 'conus13km_debug_intel' [13:29, 12:48](1156 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [13:38, 12:55](843 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:16, 07:39](1146 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:45, 13:08](1214 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:15, 07:15] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:51, 04:37](1093 MB) - -PASS -- COMPILE 'hafsw_intel' [17:40, 17:40] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [05:33, 04:39](703 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:33, 05:10](1065 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:39, 06:31](761 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [11:44, 10:43](875 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [13:03, 11:47](803 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:22, 04:40](472 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:45, 05:44](484 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [02:56, 02:17](390 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:03, 06:11](458 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [03:53, 03:17](509 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [03:49, 03:05](507 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:35, 03:48](572 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:26, 01:12](424 MB) -PASS -- TEST 'gnv1_nested_intel' [06:13, 04:06](1706 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:34, 08:34] ( 1467 warnings 1469 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:45, 11:59](621 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:20, 17:20] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [07:45, 06:53](622 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [07:51, 06:55](683 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [18:52, 18:52] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [06:51, 05:15](668 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:51, 15:51] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [06:37, 05:43](736 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:41, 05:46](725 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:57, 16:12](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:21, 08:21] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:34, 02:28](768 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:40, 01:31](758 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:26, 02:20](647 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:29, 02:22](647 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:29, 02:22](656 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:34, 02:28](768 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:35, 02:28](768 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:26, 02:20](649 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:31, 05:32](694 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:30, 05:31](679 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:33, 02:27](766 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:01, 03:54](2031 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:03, 03:54](2031 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:48, 05:48] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:15, 05:08](754 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:20, 08:20] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:35, 02:29](768 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:37, 02:37] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:26, 01:08](310 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:16, 01:02](451 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:57, 00:42](451 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:58, 13:58] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:48, 03:47](1917 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:48, 12:48] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:45, 07:51](1901 MB) - -PASS -- COMPILE 'atml_intel' [14:45, 14:45] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:13, 06:49](1875 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:20, 06:57](1890 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:47, 04:08](1031 MB) - -PASS -- COMPILE 'atml_debug_intel' [10:34, 10:34] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:35, 06:09](1923 MB) - -PASS -- COMPILE 'atmw_intel' [13:50, 13:49] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:28, 02:15](1879 MB) - -PASS -- COMPILE 'atmaero_intel' [13:02, 13:02] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:23, 04:12](3127 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:29, 04:19](3008 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:18, 04:23](3016 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:07, 08:06] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [24:08, 22:19](4534 MB) - -PASS -- COMPILE 'atm_fbh_intel' [11:29, 11:28] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [08:18, 08:02](845 MB) +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [23:26, 21:25] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:38, 10:12](3203 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:28, 23:15] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:25, 14:12](1914 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:09, 15:12](1947 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:19, 06:56](1079 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:13, 16:02](1887 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:27, 23:12] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:39, 13:50](1908 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:25, 11:55] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:03, 25:22](1945 MB) + +PASS -- COMPILE 's2swa_intel' [23:27, 21:27] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [18:04, 13:28](3222 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:43, 13:49](3238 MB) +PASS -- TEST 'cpld_restart_p8_intel' [12:41, 07:45](3148 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [18:54, 13:51](3250 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [12:51, 07:37](3176 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [16:24, 12:36](3748 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:31, 13:30](3217 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:25, 10:28](3531 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:45, 13:41](3229 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:45, 08:55](3814 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:07, 06:09](3619 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [32:17, 16:49](4517 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [29:41, 10:04](4663 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:09, 07:45](3213 MB) + +PASS -- COMPILE 's2sw_intel' [21:27, 19:22] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:27, 07:21](1913 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:40, 11:44](1983 MB) + +PASS -- COMPILE 's2swa_debug_intel' [13:25, 11:39] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [24:10, 20:38](3304 MB) + +PASS -- COMPILE 's2sw_debug_intel' [13:25, 11:03] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:51, 08:50](1961 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [18:25, 16:02] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:54, 05:00](1983 MB) + +PASS -- COMPILE 's2s_intel' [18:25, 16:29] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:16, 05:45](2885 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:13, 02:08](2891 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:46, 01:25](2308 MB) + +PASS -- COMPILE 's2swa_faster_intel' [26:20, 23:45] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [17:36, 13:31](3230 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:25, 21:51] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:07, 23:27](1924 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:46, 12:04](1108 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [31:10, 27:07](1890 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:21, 11:00] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:53, 26:58](1949 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:20, 14:26] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:37, 03:25](668 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:09, 02:41](1563 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:33, 02:42](1568 MB) +PASS -- TEST 'control_latlon_intel' [04:55, 02:39](1563 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:14, 02:41](1571 MB) +PASS -- TEST 'control_c48_intel' [12:12, 09:13](1589 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:41, 05:15](710 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [12:08, 09:13](1586 MB) +PASS -- TEST 'control_c192_intel' [13:56, 09:58](1690 MB) +PASS -- TEST 'control_c384_intel' [19:01, 11:16](1980 MB) +PASS -- TEST 'control_c384gdas_intel' [18:19, 07:36](1177 MB) +PASS -- TEST 'control_stochy_intel' [03:42, 01:25](624 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:39, 00:52](435 MB) +PASS -- TEST 'control_lndp_intel' [03:44, 01:21](624 MB) +PASS -- TEST 'control_iovr4_intel' [04:37, 02:07](620 MB) +PASS -- TEST 'control_iovr5_intel' [04:32, 02:06](620 MB) +PASS -- TEST 'control_p8_intel' [06:34, 03:30](1863 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:48, 03:10](1862 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:40, 03:28](1864 MB) +PASS -- TEST 'control_restart_p8_intel' [05:34, 02:18](1013 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:35, 03:39](1856 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:22, 02:23](1017 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:25, 03:40](1858 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:20, 03:35](1937 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:10, 06:08](1851 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:37, 04:00](1915 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:43, 03:20](1863 MB) +PASS -- TEST 'merra2_thompson_intel' [06:24, 03:34](1864 MB) +PASS -- TEST 'regional_control_intel' [08:02, 04:49](892 MB) +PASS -- TEST 'regional_restart_intel' [06:00, 02:56](877 MB) +PASS -- TEST 'regional_decomp_intel' [07:50, 05:04](894 MB) +PASS -- TEST 'regional_noquilt_intel' [07:58, 04:50](1217 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:00, 04:48](899 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:55, 04:51](892 MB) +PASS -- TEST 'regional_wofs_intel' [09:06, 05:52](1589 MB) + +PASS -- COMPILE 'rrfs_intel' [15:21, 12:51] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:32, 06:10](1005 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:24, 03:46](1163 MB) +PASS -- TEST 'rap_decomp_intel' [09:32, 06:25](1003 MB) +PASS -- TEST 'rap_2threads_intel' [08:24, 05:41](1088 MB) +PASS -- TEST 'rap_restart_intel' [06:22, 03:13](882 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:34, 06:05](1008 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:34, 06:23](998 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:11, 04:36](883 MB) +PASS -- TEST 'hrrr_control_intel' [06:10, 03:13](1001 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:10, 03:20](999 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:10, 02:48](1074 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:45, 01:44](832 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:33, 06:03](999 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:50, 08:11](1961 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:51, 07:52](1946 MB) + +PASS -- COMPILE 'csawmg_intel' [14:16, 11:49] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [09:09, 06:26](962 MB) +PASS -- TEST 'control_ras_intel' [05:32, 02:51](653 MB) + +PASS -- COMPILE 'wam_intel' [13:17, 11:33] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:20, 10:15](1647 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:23, 11:59] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:34, 03:00](1857 MB) +PASS -- TEST 'regional_control_faster_intel' [07:58, 04:42](898 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:17, 14:32] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:07, 02:08](1599 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:03, 02:07](1601 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:38, 02:53](806 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:42, 02:36](810 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:04, 04:35](1111 MB) +PASS -- TEST 'control_ras_debug_intel' [04:38, 02:40](812 MB) +PASS -- TEST 'control_diag_debug_intel' [05:51, 02:37](1663 MB) +PASS -- TEST 'control_debug_p8_intel' [06:04, 02:45](1892 MB) +PASS -- TEST 'regional_debug_intel' [18:57, 16:28](921 MB) +PASS -- TEST 'rap_control_debug_intel' [07:34, 04:40](1190 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:43, 04:32](1187 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:48, 04:49](1191 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:44, 04:39](1190 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:31, 04:50](1190 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:04, 04:53](1273 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:47, 04:47](1189 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:49, 04:47](1190 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:37, 04:49](1190 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:51, 04:41](1187 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:43, 04:39](1186 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:44, 04:40](1190 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:51, 07:35](1186 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:58, 04:39](1185 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:58, 04:44](1189 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:51, 04:48](1188 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:13, 07:58](1191 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:16, 07:12] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:33, 12:09](1697 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:15, 11:31] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:06, 03:32](1034 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:09, 05:09](878 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:15, 02:47](873 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:01, 04:46](936 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:13, 02:25](924 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:03, 02:54](868 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:59, 03:53](793 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:37, 01:31](770 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:18, 11:19] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:33, 01:49](1077 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:11, 00:56](1076 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:26, 01:05](963 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:19, 11:35] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:05, 03:38](906 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:18, 07:27] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:38, 04:34](1065 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:36, 04:30](1060 MB) +PASS -- TEST 'conus13km_debug_intel' [16:41, 13:04](1144 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:49, 13:13](830 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:21, 07:26](1141 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:48, 12:45](1214 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:20, 07:14] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:40, 04:42](1091 MB) + +PASS -- COMPILE 'hafsw_intel' [19:20, 17:39] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:15, 04:33](701 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:51, 05:05](1063 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:15, 06:26](753 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:07, 10:36](780 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:28, 11:43](796 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:17, 04:41](467 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:40, 05:44](485 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:04, 02:17](402 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:05, 06:11](461 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:07, 03:19](505 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:07, 03:04](505 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:20, 03:47](580 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:38, 01:13](431 MB) +PASS -- TEST 'gnv1_nested_intel' [08:21, 04:00](1701 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:16, 08:41] ( 1467 warnings 1469 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:15, 12:03](623 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:26, 17:12] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:28, 06:55](625 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:49, 06:58](681 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [20:20, 18:48] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:21, 05:18](669 MB) + +PASS -- COMPILE 'hafs_all_intel' [18:22, 15:47] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:40, 05:40](734 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:32, 05:45](722 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:20, 16:14](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:20, 08:26] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:36, 02:29](770 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:36, 01:33](758 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:36, 02:22](647 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:37, 02:24](649 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:28, 02:25](650 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:38, 02:29](767 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:42, 02:29](767 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:41, 02:21](651 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:53, 05:40](697 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:31, 05:38](679 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:41, 02:28](767 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:02, 03:53](2032 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:07, 03:54](2032 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:18, 05:48] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:29, 05:15](755 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:19, 08:14] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:38, 02:28](769 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:12, 02:34] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:46, 01:10](309 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:44, 01:06](451 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:01, 00:44](452 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:20, 13:34] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:26, 03:55](1917 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:18, 12:36] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:29, 08:06](1898 MB) + +PASS -- COMPILE 'atml_intel' [16:28, 14:40] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:43, 07:22](1887 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:44, 07:10](1885 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:15, 05:05](1032 MB) + +PASS -- COMPILE 'atml_debug_intel' [12:18, 10:36] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:00, 06:21](1923 MB) + +PASS -- COMPILE 'atmw_intel' [15:22, 13:33] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:43, 02:13](1886 MB) + +PASS -- COMPILE 'atmaero_intel' [15:21, 12:55] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:59, 04:04](3128 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:00, 04:18](3006 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:14, 04:22](3015 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [10:20, 08:07] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [27:36, 22:04](4541 MB) + +PASS -- COMPILE 'atm_fbh_intel' [13:18, 11:22] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:42, 08:04](846 MB) SYNOPSIS: -Starting Date/Time: 20241204 06:59:39 -Ending Date/Time: 20241204 10:50:25 -Total Time: 03h:51m:53s +Starting Date/Time: 20241210 12:23:44 +Ending Date/Time: 20241210 14:13:43 +Total Time: 01h:51m:02s Compiles Completed: 42/42 Tests Completed: 186/186 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 70ab54cd54..9651e67956 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,20 +1,20 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -1e6fc62a38e1b61538e203a7f297583333a18d2a +7f91b3de985a4799ef7f11450059958002f6aa8c 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) - 513f8d153924e18ae0f91f5440195d15210a489e CICE-interface/CICE (CICE6.0.0-391-g513f8d1) + 6c497bdfce0add89af9df9ad4be4a6a1bdf48494 CICE-interface/CICE (remotes/origin/restart_fh) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) + 3d3d28c120a1ad343f91e0e14dd38cd0cde6ae96 CMEPS-interface/CMEPS (remotes/origin/restart_fh) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 7e7719927a80104d1bb4badf790e509f1e4d39b8 FV3 (remotes/origin/rrfsv1-to-ufs/dev4) - f28be0e882fe53886d23076f56908588eac676c2 FV3/atmos_cubed_sphere (remotes/origin/rrfsv1-to-ufs/dev4) + 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) + 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - c2fb52eacb4e0402b2c307241c0c3acb0ea81b1c FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5524-gc2fb52ea) + dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -23,11 +23,11 @@ Submodule hashes used in testing: 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) + e2f6c128f939faec4efa3ce88f3f9025804fb3ae MOM6-interface/MOM6 (remotes/origin/restart_fh) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 615236be21904e180c12c4babfde89fdb448a2cf WW3 (remotes/origin/bug/addPIOswitch) + bdf039138204122991cea42729ee44c17ae7dd49 WW3 (6.07.1-353-gbdf03913) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,306 +38,382 @@ 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-20241203 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_2501918 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20241206 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1885391 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [27:15, 25:44] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [21:09, 12:55](3186 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:15, 26:33] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [25:45, 14:17](1899 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:53, 14:46](1946 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:13, 07:11](1074 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:05, 15:42](1883 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:17, 22:50] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [24:59, 14:01](1895 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [22:16, 20:28] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [39:03, 28:21](1921 MB) - -PASS -- COMPILE 's2swa_intel' [26:19, 24:51] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [29:16, 16:25](3213 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [29:16, 16:23](3213 MB) -PASS -- TEST 'cpld_restart_p8_intel' [21:11, 09:46](3140 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [31:06, 16:29](3232 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [19:22, 10:05](3159 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [23:27, 14:23](3464 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [28:53, 16:25](3210 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [23:30, 13:58](3156 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [29:16, 16:16](3215 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:07, 10:39](3491 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [16:24, 11:20](3596 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [33:05, 21:22](4257 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:25, 12:26](4354 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [18:52, 10:11](3189 MB) - -PASS -- COMPILE 's2sw_intel' [24:17, 22:20] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [19:25, 08:20](1919 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [24:37, 12:53](1971 MB) - -PASS -- COMPILE 's2swa_debug_intel' [18:15, 16:44] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [36:25, 23:08](3265 MB) - -PASS -- COMPILE 's2sw_debug_intel' [20:14, 18:36] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [22:18, 10:23](1944 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:19, 15:33] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [15:20, 05:29](1964 MB) - -PASS -- COMPILE 's2s_intel' [21:18, 20:01] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [14:31, 05:39](2869 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [11:29, 02:32](2882 MB) -PASS -- TEST 'cpld_restart_c48_intel' [09:16, 01:00](2291 MB) - -PASS -- COMPILE 's2swa_faster_intel' [27:13, 25:13] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [22:34, 19:56](3211 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [23:23, 21:54] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [31:08, 27:49](1911 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:38, 12:25](1101 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [33:23, 29:20](1900 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:12, 13:34] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [39:10, 30:31](1946 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:17, 14:57] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:20, 03:54](652 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:52, 04:04](1551 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:00, 06:56](1560 MB) -PASS -- TEST 'control_latlon_intel' [07:43, 05:41](1553 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:12, 05:52](1560 MB) -PASS -- TEST 'control_c48_intel' [11:54, 09:57](1570 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [09:00, 07:03](695 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [17:53, 15:54](1573 MB) -PASS -- TEST 'control_c192_intel' [17:52, 15:30](1690 MB) -PASS -- TEST 'control_c384_intel' [31:41, 24:14](1970 MB) -PASS -- TEST 'control_c384gdas_intel' [24:22, 15:17](1169 MB) -PASS -- TEST 'control_stochy_intel' [08:47, 02:22](608 MB) -PASS -- TEST 'control_stochy_restart_intel' [08:42, 01:35](415 MB) -PASS -- TEST 'control_lndp_intel' [08:44, 02:12](609 MB) -PASS -- TEST 'control_iovr4_intel' [04:35, 02:52](608 MB) -PASS -- TEST 'control_iovr5_intel' [04:38, 02:52](608 MB) -PASS -- TEST 'control_p8_intel' [12:26, 04:48](1853 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [12:59, 03:55](1846 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [11:28, 04:02](1848 MB) -PASS -- TEST 'control_restart_p8_intel' [04:35, 02:06](1000 MB) -PASS -- TEST 'control_noqr_p8_intel' [12:23, 04:51](1840 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:31, 02:19](1008 MB) -PASS -- TEST 'control_decomp_p8_intel' [12:33, 04:44](1845 MB) -PASS -- TEST 'control_2threads_p8_intel' [11:44, 04:05](1924 MB) -PASS -- TEST 'control_p8_lndp_intel' [15:44, 07:13](1849 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [15:14, 04:58](1895 MB) -PASS -- TEST 'control_p8_mynn_intel' [12:43, 03:58](1848 MB) -PASS -- TEST 'merra2_thompson_intel' [13:51, 04:19](1847 MB) -PASS -- TEST 'regional_control_intel' [07:46, 05:10](883 MB) -PASS -- TEST 'regional_restart_intel' [04:39, 02:38](862 MB) -PASS -- TEST 'regional_decomp_intel' [11:50, 05:13](886 MB) -PASS -- TEST 'regional_2threads_intel' [09:48, 03:09](1013 MB) -PASS -- TEST 'regional_noquilt_intel' [10:59, 04:49](1207 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [11:05, 05:03](884 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:52, 05:02](876 MB) -PASS -- TEST 'regional_wofs_intel' [09:50, 06:42](1571 MB) - -PASS -- COMPILE 'rrfs_intel' [15:14, 13:51] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [17:27, 07:10](986 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:22, 04:16](1169 MB) -PASS -- TEST 'rap_decomp_intel' [17:28, 07:10](990 MB) -PASS -- TEST 'rap_2threads_intel' [16:53, 06:31](1072 MB) -PASS -- TEST 'rap_restart_intel' [06:26, 04:03](873 MB) -PASS -- TEST 'rap_sfcdiff_intel' [17:29, 07:05](988 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [17:28, 07:25](989 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:23, 05:03](877 MB) -PASS -- TEST 'hrrr_control_intel' [10:21, 03:58](987 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [10:21, 04:04](987 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [09:17, 03:21](1064 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:36, 02:13](816 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:24, 07:08](986 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:41, 08:49](1948 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:36, 08:38](1933 MB) - -PASS -- COMPILE 'csawmg_intel' [14:11, 12:59] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [08:47, 06:41](942 MB) -PASS -- TEST 'control_ras_intel' [05:33, 03:41](644 MB) - -PASS -- COMPILE 'wam_intel' [16:11, 14:31] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:09, 12:19](1640 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [18:13, 16:18] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:48, 03:51](1851 MB) -PASS -- TEST 'regional_control_faster_intel' [07:13, 04:43](863 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [18:16, 16:48] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:13, 03:24](1582 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:29, 03:03](1582 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:55, 03:17](784 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:54, 03:19](782 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:13, 04:38](1085 MB) -PASS -- TEST 'control_ras_debug_intel' [04:35, 03:02](793 MB) -PASS -- TEST 'control_diag_debug_intel' [06:27, 03:34](1643 MB) -PASS -- TEST 'control_debug_p8_intel' [06:20, 03:20](1876 MB) -PASS -- TEST 'regional_debug_intel' [19:23, 16:21](892 MB) -PASS -- TEST 'rap_control_debug_intel' [07:49, 05:18](1170 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:44, 05:23](1158 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:45, 05:35](1162 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:50, 05:35](1162 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:01, 05:30](1163 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:10, 05:37](1249 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:43, 05:28](1164 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:39, 05:36](1164 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:44, 05:27](1165 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:49, 05:16](1163 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:48, 05:00](1159 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:48, 05:37](1161 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:47, 07:58](1159 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:51, 05:13](1161 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:48, 05:28](1166 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:54, 05:29](1167 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:27, 08:30](1171 MB) - -PASS -- COMPILE 'wam_debug_intel' [11:14, 09:31] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:44, 13:32](1663 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:15, 12:55] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:44, 03:58](1038 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:21, 06:15](866 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:23, 03:31](868 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:27, 05:20](920 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:00, 02:47](914 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:09, 04:01](860 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [18:19, 04:39](781 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:43, 01:59](749 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [23:18, 21:23] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:05, 02:36](1077 MB) -PASS -- TEST 'conus13km_2threads_intel' [14:36, 01:10](1062 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [15:36, 01:51](955 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [18:20, 16:49] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:17, 04:29](894 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:15, 09:44] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:45, 05:11](1041 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:49, 05:09](1041 MB) -PASS -- TEST 'conus13km_debug_intel' [16:20, 13:41](1127 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:37, 14:03](801 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:36, 08:00](1115 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:38, 13:39](1193 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [16:16, 14:28] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:33, 05:07](1064 MB) - -PASS -- COMPILE 'hafsw_intel' [22:15, 20:12] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:40, 05:18](716 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:52, 04:41](1083 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:02, 08:05](745 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:43, 11:34](772 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:13, 13:21](796 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:26, 05:26](474 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:43, 07:03](502 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [09:11, 02:57](395 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:53, 07:50](490 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [12:54, 03:55](508 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [17:26, 03:45](507 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [18:46, 04:44](585 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [13:57, 01:36](424 MB) -PASS -- TEST 'gnv1_nested_intel' [21:33, 06:18](1700 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [16:18, 14:47] ( 1467 warnings 1469 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [29:23, 12:58](613 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [19:13, 17:31] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [21:55, 07:45](630 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [25:08, 08:43](810 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [21:15, 19:20] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [22:46, 06:11](809 MB) - -PASS -- COMPILE 'hafs_all_intel' [22:15, 20:48] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [21:57, 06:36](735 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [22:48, 06:43](719 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [38:32, 20:11](894 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [17:12, 15:52] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [16:27, 02:43](751 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:57, 01:36](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [19:54, 02:38](642 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [19:31, 02:28](643 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [18:37, 02:30](643 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [18:37, 02:37](752 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [18:38, 02:37](751 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [17:35, 02:27](643 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [19:33, 06:08](694 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [19:37, 06:15](671 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [14:23, 02:37](763 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [15:35, 04:53](2032 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [15:36, 04:40](2033 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [13:16, 11:42] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [16:29, 05:32](748 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [14:17, 12:47] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [12:37, 02:37](751 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:15, 03:41] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [11:41, 01:55](322 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [11:41, 01:22](460 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:59, 01:27](462 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [05:14, 03:18] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [10:31, 00:40](445 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [04:43, 00:41](255 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:11, 14:21] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [11:57, 04:15](1917 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:12, 13:42] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [15:27, 08:42](1901 MB) - -PASS -- COMPILE 'atml_intel' [17:18, 15:21] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [14:39, 09:38](1876 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [14:31, 09:34](1880 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:47, 04:48](1014 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:14, 12:09] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:26, 07:33](1903 MB) - -PASS -- COMPILE 'atmw_intel' [15:15, 13:11] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:05, 03:21](1878 MB) - -PASS -- COMPILE 'atmaero_intel' [13:12, 11:49] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [12:02, 07:05](3099 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [11:10, 08:01](2989 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:41, 08:29](2995 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [11:15, 09:36] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:50, 18:23](4439 MB) - -PASS -- COMPILE 'atm_fbh_intel' [14:11, 13:06] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [12:28, 09:34](829 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [24:16, 22:24] -PASS -- TEST 'cpld_control_gfsv17_intelllvm' [18:41, 14:33](1900 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [13:12, 11:30] -PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [33:28, 28:51](1931 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [22:16, 20:12] -PASS -- TEST 'cpld_control_sfs_intelllvm' [17:59, 14:03](1893 MB) - -PASS -- COMPILE 's2swa_intelllvm' [17:17, 16:03] -PASS -- TEST 'cpld_control_p8_intelllvm' [22:01, 16:46](3216 MB) +PASS -- COMPILE 's2swa_32bit_intel' [48:15, 46:27] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:46, 12:54](3184 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:15, 20:53] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [17:32, 14:16](1901 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:24, 14:51](1938 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:18, 06:46](1074 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:12, 15:28](1876 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:14, 21:33] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [15:59, 13:43](1895 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:12, 11:14] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [30:15, 27:07](1923 MB) + +PASS -- COMPILE 's2swa_intel' [47:15, 45:16] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [19:43, 16:15](3215 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:03, 16:14](3208 MB) +PASS -- TEST 'cpld_restart_p8_intel' [22:13, 12:09](3141 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [19:43, 16:37](3232 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [22:19, 13:43](3157 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [17:16, 14:10](3460 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [18:32, 15:53](3208 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [16:36, 13:35](3159 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:48, 16:15](3213 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:41, 10:22](3492 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [22:09, 11:35](3596 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [33:50, 21:20](4258 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [26:04, 12:14](4353 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [14:15, 09:55](3193 MB) + +PASS -- COMPILE 's2sw_intel' [16:15, 15:02] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:34, 07:41](1916 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:02, 12:47](1973 MB) + +PASS -- COMPILE 's2swa_debug_intel' [12:12, 10:27] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [25:28, 22:46](3268 MB) + +PASS -- COMPILE 's2sw_debug_intel' [12:12, 10:34] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:13, 09:39](1937 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:16, 14:04] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:37, 05:30](1974 MB) + +PASS -- COMPILE 's2s_intel' [15:16, 13:36] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:11, 05:34](2877 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:15, 01:42](2880 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:10, 01:01](2295 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:11, 17:49] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [20:23, 15:57](3213 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:14, 19:37] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:33, 24:41](1914 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [25:11, 15:06](1106 MB) +FAILED: TEST TIMED OUT -- TEST 'cpld_mpi_pdlib_p8_intel' [, ]( MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:15, 10:27] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:16, 30:45](1944 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:11, 14:20] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:27, 03:49](654 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:07, 03:23](1547 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:07, 03:28](1560 MB) +PASS -- TEST 'control_latlon_intel' [05:57, 03:10](1560 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:14, 03:22](1556 MB) +PASS -- TEST 'control_c48_intel' [12:08, 09:58](1569 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:52, 05:40](696 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [14:13, 11:13](1573 MB) +PASS -- TEST 'control_c192_intel' [13:52, 11:26](1688 MB) +PASS -- TEST 'control_c384_intel' [27:21, 24:01](1964 MB) +PASS -- TEST 'control_c384gdas_intel' [19:01, 14:47](1170 MB) +PASS -- TEST 'control_stochy_intel' [04:26, 02:06](612 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:30, 01:01](413 MB) +PASS -- TEST 'control_lndp_intel' [03:29, 01:52](609 MB) +PASS -- TEST 'control_iovr4_intel' [04:25, 02:39](608 MB) +PASS -- TEST 'control_iovr5_intel' [04:30, 02:40](609 MB) +PASS -- TEST 'control_p8_intel' [06:06, 04:00](1848 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:21, 03:26](1841 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:07, 03:59](1848 MB) +PASS -- TEST 'control_restart_p8_intel' [04:57, 02:06](999 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:58, 04:03](1842 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:54, 02:02](994 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:57, 03:58](1841 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:54, 03:25](1926 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:50, 06:17](1845 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:01, 04:13](1905 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:12, 03:23](1854 MB) +PASS -- TEST 'merra2_thompson_intel' [07:06, 03:44](1841 MB) +PASS -- TEST 'regional_control_intel' [06:47, 04:40](875 MB) +PASS -- TEST 'regional_restart_intel' [04:36, 02:53](858 MB) +PASS -- TEST 'regional_decomp_intel' [06:39, 04:55](877 MB) +PASS -- TEST 'regional_2threads_intel' [05:40, 03:05](1010 MB) +PASS -- TEST 'regional_noquilt_intel' [06:40, 04:37](1206 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:50, 04:47](876 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:41, 04:44](883 MB) +PASS -- TEST 'regional_wofs_intel' [09:41, 06:53](1574 MB) + +PASS -- COMPILE 'rrfs_intel' [13:11, 12:00] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:10, 06:51](989 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:18, 03:59](1170 MB) +PASS -- TEST 'rap_decomp_intel' [10:05, 07:14](994 MB) +PASS -- TEST 'rap_2threads_intel' [09:11, 06:13](1073 MB) +PASS -- TEST 'rap_restart_intel' [05:39, 03:52](869 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:10, 06:53](987 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:10, 07:01](989 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:51, 05:01](878 MB) +PASS -- TEST 'hrrr_control_intel' [07:02, 03:51](982 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:02, 03:57](987 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:10, 03:09](1061 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:30, 01:53](816 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:06, 06:46](988 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:48, 08:40](1945 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:48, 08:27](1934 MB) + +PASS -- COMPILE 'csawmg_intel' [12:12, 10:58] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:59, 06:39](933 MB) +PASS -- TEST 'control_ras_intel' [05:48, 03:22](642 MB) + +PASS -- COMPILE 'wam_intel' [13:11, 11:16] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:10, 11:52](1641 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:13, 11:33] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:57, 03:13](1841 MB) +PASS -- TEST 'regional_control_faster_intel' [06:43, 04:35](878 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:11, 11:38] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:04, 02:49](1579 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:48, 02:51](1582 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:29, 03:09](781 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:27, 02:53](781 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:36, 04:16](1085 MB) +PASS -- TEST 'control_ras_debug_intel' [05:31, 02:54](788 MB) +PASS -- TEST 'control_diag_debug_intel' [05:49, 03:12](1644 MB) +PASS -- TEST 'control_debug_p8_intel' [04:50, 03:02](1869 MB) +PASS -- TEST 'regional_debug_intel' [18:42, 16:32](892 MB) +PASS -- TEST 'rap_control_debug_intel' [06:29, 05:02](1170 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:26, 04:59](1163 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:24, 05:07](1163 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:50, 05:09](1163 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:38, 05:04](1169 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:49, 05:19](1248 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:40, 05:15](1163 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:31, 05:11](1164 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:25, 05:10](1167 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:28, 05:13](1163 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:28, 05:04](1159 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:23, 05:21](1165 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:31, 08:12](1160 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:29, 04:58](1158 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:29, 05:05](1166 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:28, 05:08](1168 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:58, 08:23](1169 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:11, 08:04] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:37, 13:55](1661 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:12, 11:02] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:17, 03:50](1043 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:03, 05:59](867 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:04, 03:27](866 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:45, 05:23](927 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:55, 02:41](915 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:59, 03:33](867 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:25, 04:36](780 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:39, 01:51](753 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:15, 11:04] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:32, 02:00](1073 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:16, 01:11](1061 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:23, 01:26](948 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:13, 11:37] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:02, 04:34](894 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:11, 08:05] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:22, 05:03](1045 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:27, 05:03](1044 MB) +PASS -- TEST 'conus13km_debug_intel' [18:40, 14:24](1125 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:55, 16:43](801 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [13:48, 10:04](1122 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:48, 14:41](1192 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:11, 07:36] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:33, 05:03](1072 MB) + +PASS -- COMPILE 'hafsw_intel' [16:12, 14:40] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:47, 05:20](716 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:31, 04:31](1080 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:58, 10:18](742 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:10, 12:51](774 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:37, 16:18](808 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:38, 06:15](468 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:27, 09:48](499 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [11:18, 02:46](397 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [23:45, 15:09](484 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:54, 05:26](508 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [10:38, 04:53](507 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [12:06, 07:58](587 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:18, 01:33](427 MB) +PASS -- TEST 'gnv1_nested_intel' [17:43, 08:10](1700 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [11:13, 09:33] ( 1467 warnings 1469 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [21:24, 18:27](612 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [15:15, 13:20] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:14, 11:20](633 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:15, 12:59](812 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:14, 13:59] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [18:26, 09:34](810 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:13, 13:00] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [14:55, 07:57](738 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [15:13, 07:56](715 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [27:16, 20:28](891 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [12:11, 10:57] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [11:34, 07:34](751 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:08, 01:52](751 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:46, 03:25](642 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:30, 03:06](644 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:34, 03:02](643 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [07:33, 03:11](763 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [11:16, 07:42](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [11:16, 07:25](644 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:49, 07:58](693 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:49, 08:54](676 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [11:08, 07:26](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [13:10, 09:17](2031 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [13:05, 09:13](2035 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:11, 06:33] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [14:11, 09:57](747 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:13, 11:16] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [10:05, 06:58](751 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [08:14, 06:43] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [09:53, 02:22](314 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [09:32, 02:19](461 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:47, 00:55](460 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [04:11, 02:44] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [08:00, 01:29](449 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [03:20, 00:29](253 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [29:16, 28:06] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [11:27, 04:28](1917 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:14, 12:36] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [15:18, 08:40](1907 MB) + +PASS -- COMPILE 'atml_intel' [14:11, 12:55] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [14:07, 07:28](1882 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [13:28, 07:34](1878 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:11, 03:56](1028 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:12, 08:42] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:06, 06:24](1911 MB) + +PASS -- COMPILE 'atmw_intel' [14:11, 12:57] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:52, 02:51](1879 MB) + +PASS -- COMPILE 'atmaero_intel' [14:12, 12:18] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [11:22, 06:31](3098 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [11:13, 06:38](2983 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:08, 07:16](2995 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [11:15, 09:08] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:10, 19:12](4442 MB) + +PASS -- COMPILE 'atm_fbh_intel' [13:14, 11:33] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:59, 09:31](834 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [35:13, 33:41] +PASS -- TEST 'cpld_control_gfsv17_intelllvm' [18:47, 15:46](1907 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [42:13, 40:13] +PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [30:00, 27:30](1924 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [31:14, 29:26] +PASS -- TEST 'cpld_control_sfs_intelllvm' [16:47, 14:22](1892 MB) + +PASS -- COMPILE 's2swa_intelllvm' [32:12, 30:29] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_p8_intelllvm' [, ]( MB) SYNOPSIS: -Starting Date/Time: 20241204 08:58:37 -Ending Date/Time: 20241204 11:27:16 -Total Time: 02h:30m:33s +Starting Date/Time: 20241208 23:28:13 +Ending Date/Time: 20241209 01:49:48 +Total Time: 02h:22m:30s Compiles Completed: 47/47 -Tests Completed: 193/193 +Tests Completed: 191/193 +Failed Tests: +* TEST cpld_mpi_pdlib_p8_intel: FAILED: TEST TIMED OUT +-- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1885391/cpld_mpi_pdlib_p8_intel/err +* TEST cpld_control_p8_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2419/ufs-weather-model/tests/logs/log_gaea/run_cpld_control_p8_intelllvm.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 GAEA REGRESSION TESTING LOG==== +====START OF GAEA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +7f91b3de985a4799ef7f11450059958002f6aa8c + +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) + 6c497bdfce0add89af9df9ad4be4a6a1bdf48494 CICE-interface/CICE (remotes/origin/restart_fh) + 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) + 3d3d28c120a1ad343f91e0e14dd38cd0cde6ae96 CMEPS-interface/CMEPS (remotes/origin/restart_fh) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) + 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) + 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) + dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) +-179cae1dd84401cf25d250bd9102e66560a9d328 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) + e2f6c128f939faec4efa3ce88f3f9025804fb3ae MOM6-interface/MOM6 (remotes/origin/restart_fh) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) + bdf039138204122991cea42729ee44c17ae7dd49 WW3 (6.07.1-353-gbdf03913) + 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: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20241206 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1778618 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2sw_pdlib_intel' [19:11, 17:16] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [26:57, 24:51](1920 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [31:48, 29:08](1887 MB) + +PASS -- COMPILE 's2swa_intelllvm' [15:11, 13:09] +PASS -- TEST 'cpld_control_p8_intelllvm' [18:06, 15:21](3212 MB) + +SYNOPSIS: +Starting Date/Time: 20241209 22:44:00 +Ending Date/Time: 20241210 00:03:18 +Total Time: 01h:19m:38s +Compiles Completed: 2/2 +Tests Completed: 3/3 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 a1f64df572..ec87e4b41b 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,21 +1,21 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -1e6fc62a38e1b61538e203a7f297583333a18d2a +7f91b3de985a4799ef7f11450059958002f6aa8c Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 513f8d153924e18ae0f91f5440195d15210a489e CICE-interface/CICE (CICE6.0.0-391-g513f8d1) - 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) + 6c497bdfce0add89af9df9ad4be4a6a1bdf48494 CICE-interface/CICE (remotes/origin/restart_fh) + 3d3d28c120a1ad343f91e0e14dd38cd0cde6ae96 CMEPS-interface/CMEPS (remotes/origin/restart_fh) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 7e7719927a80104d1bb4badf790e509f1e4d39b8 FV3 (remotes/origin/rrfsv1-to-ufs/dev4) + 1648e176fa869d0ca9ce9ea5822b3594afd8c353 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) + e2f6c128f939faec4efa3ce88f3f9025804fb3ae MOM6-interface/MOM6 (remotes/origin/restart_fh) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 615236be21904e180c12c4babfde89fdb448a2cf WW3 (remotes/origin/bug/addPIOswitch) + bdf039138204122991cea42729ee44c17ae7dd49 WW3 (6.07.1-353-gbdf03913) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -26,388 +26,389 @@ 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-20241203 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_320435 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241206 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_198625 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:11, 12:55] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:25, 11:33](3318 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 16:27] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:03, 19:34](1983 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:23, 20:46](2173 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:12, 08:13](1259 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:01, 23:12](1870 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:11, 16:02] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [21:49, 19:14](1955 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:10, 06:02] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:06, 26:27](1917 MB) - -PASS -- COMPILE 's2swa_intel' [14:11, 13:02] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:17, 13:58](3346 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:31, 13:59](3353 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:34, 07:27](3254 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:18, 13:59](3368 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:33, 07:26](3271 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [16:16, 13:16](3626 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [16:16, 14:07](3336 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:22, 11:40](3217 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:32, 14:07](3351 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:10, 10:17](3525 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:44, 06:30](3620 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [23:58, 16:04](4297 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:39, 09:07](4373 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:13, 07:27](3292 MB) - -PASS -- COMPILE 's2sw_intel' [14:11, 12:09] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [12:11, 09:11](1982 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:21, 11:13](2032 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:10, 06:02] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [25:09, 22:39](3419 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:44] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:57, 09:54](2004 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:11, 11:24] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:58, 04:24](2040 MB) - -PASS -- COMPILE 's2s_intel' [13:11, 11:47] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:40, 08:03](2988 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:41, 02:24](3032 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:38, 01:24](2488 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:10, 16:37] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:12, 13:35](3359 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:10, 15:37] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:06, 28:04](2024 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:13, 13:46](1272 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [36:06, 33:25](1943 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:10, 05:24] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:13, 29:17](1952 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:11, 10:49] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:25, 03:21](697 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:46, 03:11](1589 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:49, 03:17](1589 MB) -PASS -- TEST 'control_latlon_intel' [05:40, 03:14](1582 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:47, 03:15](1587 MB) -PASS -- TEST 'control_c48_intel' [13:42, 11:32](1720 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:28, 06:31](852 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [13:40, 11:34](1729 MB) -PASS -- TEST 'control_c192_intel' [13:53, 11:57](1754 MB) -PASS -- TEST 'control_c384_intel' [16:54, 13:33](1995 MB) -PASS -- TEST 'control_c384gdas_intel' [12:58, 08:09](1379 MB) -PASS -- TEST 'control_stochy_intel' [03:24, 01:38](655 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:26, 00:59](503 MB) -PASS -- TEST 'control_lndp_intel' [03:23, 01:53](658 MB) -PASS -- TEST 'control_iovr4_intel' [04:32, 02:31](656 MB) -PASS -- TEST 'control_iovr5_intel' [04:32, 02:29](652 MB) -PASS -- TEST 'control_p8_intel' [06:00, 03:48](1893 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:03, 03:10](1890 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:49, 03:36](1875 MB) -PASS -- TEST 'control_restart_p8_intel' [04:47, 02:14](1121 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:49, 03:38](1877 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:52, 02:00](1171 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:45, 03:44](1866 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:46, 03:32](1963 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:44, 06:35](1860 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:49, 04:08](1951 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:50, 03:07](1901 MB) -PASS -- TEST 'merra2_thompson_intel' [05:53, 03:23](1898 MB) -PASS -- TEST 'regional_control_intel' [07:36, 05:22](1125 MB) -PASS -- TEST 'regional_restart_intel' [04:35, 02:53](1099 MB) -PASS -- TEST 'regional_decomp_intel' [07:33, 05:41](1117 MB) -PASS -- TEST 'regional_2threads_intel' [05:34, 03:25](1119 MB) -PASS -- TEST 'regional_noquilt_intel' [07:39, 05:18](1428 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:38, 05:18](1111 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:34, 05:19](1126 MB) -PASS -- TEST 'regional_wofs_intel' [08:37, 06:52](1907 MB) - -PASS -- COMPILE 'rrfs_intel' [12:12, 10:12] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:38, 07:47](1098 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:04, 04:06](1268 MB) -PASS -- TEST 'rap_decomp_intel' [10:33, 08:11](1033 MB) -PASS -- TEST 'rap_2threads_intel' [09:32, 07:34](1187 MB) -PASS -- TEST 'rap_restart_intel' [05:42, 04:05](1101 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:37, 07:46](1112 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:34, 08:11](1038 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:40, 05:52](1124 MB) -PASS -- TEST 'hrrr_control_intel' [05:42, 04:01](1038 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:33, 04:09](1034 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:31, 03:43](1094 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:26, 02:09](997 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:41, 07:45](1098 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:23, 09:19](1980 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:24, 09:06](2070 MB) - -PASS -- COMPILE 'csawmg_intel' [11:11, 10:02] -PASS -- TEST 'control_csawmg_intel' [08:38, 06:11](1020 MB) -PASS -- TEST 'control_ras_intel' [05:20, 03:16](744 MB) - -PASS -- COMPILE 'wam_intel' [11:11, 10:06] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:46, 11:12](1666 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:17] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:45, 02:49](1884 MB) -PASS -- TEST 'regional_control_faster_intel' [06:32, 04:53](1120 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 07:32] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:46, 02:13](1608 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:49, 02:09](1613 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:23, 03:08](832 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:46](832 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:39, 04:22](1139 MB) -PASS -- TEST 'control_ras_debug_intel' [04:22, 02:48](834 MB) -PASS -- TEST 'control_diag_debug_intel' [04:50, 02:45](1683 MB) -PASS -- TEST 'control_debug_p8_intel' [04:46, 02:35](1909 MB) -PASS -- TEST 'regional_debug_intel' [19:40, 17:52](1109 MB) -PASS -- TEST 'rap_control_debug_intel' [06:25, 05:04](1213 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:21, 04:49](1211 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:21, 05:00](1219 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:20, 04:57](1216 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 04:57](1209 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:35, 05:24](1294 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 05:05](1214 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:19, 05:03](1216 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:21, 05:10](1218 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:21, 05:09](1216 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:21, 05:03](1218 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:21, 05:00](1210 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:21, 08:13](1217 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:20, 04:55](1213 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:22, 05:06](1210 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:21, 05:02](1213 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:37, 09:02](1215 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:11, 04:17] -PASS -- TEST 'control_csawmg_debug_gnu' [04:40, 02:21](720 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:10, 04:31] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:44, 13:36](1675 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 09:54] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:59, 03:53](1142 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:36, 06:30](1054 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:37, 03:25](990 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:29, 06:12](1100 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:29, 03:10](951 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:29, 03:36](922 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:40, 04:55](1029 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:26, 01:53](929 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 10:00] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:51, 02:00](1193 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:42, 00:50](1105 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:12](1096 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 10:05] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:38, 04:13](988 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:10, 04:35] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:22, 04:56](1096 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 04:47](1092 MB) -PASS -- TEST 'conus13km_debug_intel' [15:46, 14:02](1235 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:44, 14:12](933 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:40, 07:59](1158 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:39, 13:50](1308 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:24] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:22, 05:12](1141 MB) - -PASS -- COMPILE 'hafsw_intel' [13:11, 11:49] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:17, 04:59](715 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:32, 05:28](1108 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:23, 06:54](820 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:15, 15:01](843 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:27, 18:32](866 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:53, 05:35](491 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:18, 06:44](511 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:49, 02:42](372 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:37, 07:21](482 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:48, 03:56](518 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:45, 03:43](520 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:54, 04:06](572 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:28, 01:12](401 MB) -PASS -- TEST 'gnv1_nested_intel' [07:34, 04:03](1739 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:11, 04:57] ( 1462 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:51, 13:00](575 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:20] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:57, 10:19](660 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:02, 10:20](726 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 11:52] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:30, 08:14](723 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:11, 10:45] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:15, 06:39](820 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:16, 06:43](802 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:59, 16:26](1156 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:14, 06:37] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:48](1160 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:42](1111 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:43](1029 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:40](1033 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:44](1038 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 02:50](1160 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 02:46](1165 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:19, 02:39](1018 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:13, 06:21](1071 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:07, 06:20](1046 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 02:47](1158 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:17, 03:56](2462 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 04:00](2515 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:14] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:17](1090 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:25] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:47](1161 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:00] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:28, 00:45](262 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:50](331 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:24, 00:31](322 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:18] -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:30, 00:33](558 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:31, 00:17](455 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 11:01] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:00, 03:45](1996 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 10:20] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:59, 08:00](1961 MB) - -PASS -- COMPILE 'atml_intel' [12:11, 10:53] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:58, 04:21](1849 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:53, 04:13](1860 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:41, 02:21](1103 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:11, 05:44] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:51, 05:48](1892 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 10:48] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:46, 01:55](1915 MB) - -PASS -- COMPILE 'atmaero_intel' [12:11, 10:25] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:53, 04:09](3175 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:53, 04:54](3093 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:43, 04:59](3105 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:33] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_fbh_intel' [11:11, 09:39] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:26, 11:21](1108 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:11, 06:32] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:41, 08:22](1053 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:11, 06:47] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:37, 04:56](986 MB) - -PASS -- COMPILE 'atm_gnu' [06:10, 04:29] -PASS -- TEST 'control_c48_gnu' [11:37, 09:29](1512 MB) -PASS -- TEST 'control_stochy_gnu' [05:20, 03:26](492 MB) -PASS -- TEST 'control_ras_gnu' [06:19, 04:59](498 MB) -PASS -- TEST 'control_p8_gnu' [07:53, 05:17](1455 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [07:48, 05:10](1457 MB) -PASS -- TEST 'control_flake_gnu' [12:24, 10:31](536 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:10, 04:08] -PASS -- TEST 'rap_control_gnu' [13:31, 11:25](840 MB) -PASS -- TEST 'rap_decomp_gnu' [13:30, 11:35](807 MB) -PASS -- TEST 'rap_2threads_gnu' [12:35, 10:26](918 MB) -PASS -- TEST 'rap_restart_gnu' [07:38, 05:48](575 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [13:35, 11:28](843 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:31, 11:39](808 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:39, 08:29](582 MB) -PASS -- TEST 'hrrr_control_gnu' [07:45, 05:52](806 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:30, 05:54](794 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [07:30, 05:17](906 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:29, 05:55](808 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:24, 03:02](562 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:23, 03:00](651 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [13:38, 11:10](806 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:10, 03:51] -PASS -- TEST 'control_csawmg_gnu' [10:33, 08:32](738 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:10, 06:23] -PASS -- TEST 'control_diag_debug_gnu' [03:38, 01:38](1267 MB) -PASS -- TEST 'regional_debug_gnu' [12:34, 10:34](741 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:23, 02:37](817 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:22, 02:35](814 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:20, 02:38](816 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:20, 02:40](816 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:32, 02:48](902 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:19, 04:08](815 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:20, 02:40](825 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:19, 02:37](813 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:19, 01:36](453 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:19, 01:45](447 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:40, 01:36](1440 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:22, 02:36](823 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:21, 02:44](823 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:35, 04:25](825 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:10, 02:22] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:10, 04:03] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:28, 09:47](702 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:33, 05:08](699 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:33, 08:58](739 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:29, 04:44](740 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:27, 05:16](690 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:34, 07:16](552 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:24, 02:38](535 MB) -PASS -- TEST 'conus13km_control_gnu' [05:49, 03:09](867 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:46, 05:40](867 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:43, 01:48](550 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:10, 09:53] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:36, 05:52](722 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:10, 06:25] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:20, 02:33](710 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:21, 02:31](709 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:45, 06:55](884 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:40, 06:55](573 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [09:35, 07:49](890 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:36, 06:51](957 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:10, 06:23] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:20, 02:37](733 MB) - -PASS -- COMPILE 's2swa_gnu' [18:11, 16:20] - -PASS -- COMPILE 's2s_gnu' [17:11, 15:59] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [21:06, 18:34](1496 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:10, 02:58] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 15:59] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [34:08, 31:57](1463 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 02:51] - -PASS -- COMPILE 'datm_cdeps_gnu' [17:11, 15:29] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:16, 03:03](697 MB) +PASS -- COMPILE 's2swa_32bit_intel' [15:13, 13:19] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:20, 11:32](3320 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:13, 15:58] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:08, 19:43](1975 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:25, 20:37](2159 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:15, 08:16](1271 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:05, 23:18](1870 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:13, 16:43] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:44, 19:17](1971 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:12, 06:30] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:59, 26:36](1930 MB) + +PASS -- COMPILE 's2swa_intel' [15:13, 13:14] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [18:21, 15:26](3314 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:22, 13:54](3356 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:27, 07:22](3251 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:15, 13:54](3383 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:25, 07:20](3279 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:16, 13:09](3626 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:12, 14:02](3346 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:18, 11:32](3220 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:22, 13:57](3363 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:13, 10:19](3522 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:00, 06:24](3616 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [24:16, 15:56](4327 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:12, 09:08](4380 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:11, 07:17](3307 MB) + +PASS -- COMPILE 's2sw_intel' [14:12, 12:26] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:55, 09:09](2000 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:58, 10:58](2055 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:12, 06:31] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [25:04, 22:34](3400 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:12, 05:58] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:02, 09:48](2022 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:12, 11:37] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:01, 04:22](2028 MB) + +PASS -- COMPILE 's2s_intel' [13:13, 11:48] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:42, 07:51](3041 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:42, 02:25](3016 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:39, 01:25](2481 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:12, 16:53] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:19, 13:31](3346 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:13, 15:08] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:10, 28:02](2016 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:22, 13:57](1271 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:11, 33:07](1935 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:12, 05:36] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:15, 29:53](1953 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:12, 10:45] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:24, 03:26](702 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:39, 03:12](1586 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:41, 03:15](1591 MB) +PASS -- TEST 'control_latlon_intel' [05:42, 03:14](1586 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:48, 03:14](1583 MB) +PASS -- TEST 'control_c48_intel' [13:46, 11:40](1714 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:28, 06:32](853 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [13:45, 11:38](1731 MB) +PASS -- TEST 'control_c192_intel' [13:55, 12:00](1751 MB) +PASS -- TEST 'control_c384_intel' [17:01, 13:33](1978 MB) +PASS -- TEST 'control_c384gdas_intel' [12:01, 08:04](1374 MB) +PASS -- TEST 'control_stochy_intel' [03:24, 01:44](659 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:28, 01:00](500 MB) +PASS -- TEST 'control_lndp_intel' [03:24, 01:33](656 MB) +PASS -- TEST 'control_iovr4_intel' [04:25, 02:29](656 MB) +PASS -- TEST 'control_iovr5_intel' [04:24, 02:31](651 MB) +PASS -- TEST 'control_p8_intel' [05:59, 03:41](1884 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:58, 03:09](1875 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:52, 03:36](1876 MB) +PASS -- TEST 'control_restart_p8_intel' [03:49, 02:04](1131 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:48, 03:37](1880 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:54, 02:04](1156 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:44, 03:47](1863 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:49, 03:32](1955 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:43, 06:37](1875 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:57, 04:12](1958 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:55, 03:09](1896 MB) +PASS -- TEST 'merra2_thompson_intel' [05:50, 03:24](1895 MB) +PASS -- TEST 'regional_control_intel' [07:38, 05:23](1123 MB) +PASS -- TEST 'regional_restart_intel' [04:40, 02:57](1101 MB) +PASS -- TEST 'regional_decomp_intel' [07:35, 05:40](1107 MB) +PASS -- TEST 'regional_2threads_intel' [05:37, 03:26](1113 MB) +PASS -- TEST 'regional_noquilt_intel' [07:42, 05:20](1420 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:40, 05:41](1127 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:36, 05:24](1122 MB) +PASS -- TEST 'regional_wofs_intel' [09:40, 07:08](1902 MB) + +PASS -- COMPILE 'rrfs_intel' [12:12, 10:28] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:45, 07:50](1110 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:06, 04:05](1269 MB) +PASS -- TEST 'rap_decomp_intel' [10:39, 08:10](1033 MB) +PASS -- TEST 'rap_2threads_intel' [09:37, 07:26](1187 MB) +PASS -- TEST 'rap_restart_intel' [06:48, 04:21](1101 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:42, 08:14](1106 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:39, 08:12](1042 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:46, 05:55](1132 MB) +PASS -- TEST 'hrrr_control_intel' [05:42, 04:02](1042 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:36, 04:08](1028 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:35, 03:45](1100 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:31, 02:10](996 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:47, 07:41](1099 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:28, 09:26](1988 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:28, 09:07](2058 MB) + +PASS -- COMPILE 'csawmg_intel' [11:12, 09:56] +PASS -- TEST 'control_csawmg_intel' [08:37, 06:12](1018 MB) +PASS -- TEST 'control_ras_intel' [05:23, 03:18](738 MB) + +PASS -- COMPILE 'wam_intel' [11:12, 10:01] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:52, 11:15](1666 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:18] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:54, 02:56](1851 MB) +PASS -- TEST 'regional_control_faster_intel' [06:41, 04:59](1116 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 07:38] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:48, 02:15](1609 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:51, 02:13](1613 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:25, 03:06](831 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:25, 02:52](828 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:43, 04:20](1139 MB) +PASS -- TEST 'control_ras_debug_intel' [04:25, 02:56](834 MB) +PASS -- TEST 'control_diag_debug_intel' [04:52, 02:45](1687 MB) +PASS -- TEST 'control_debug_p8_intel' [04:48, 02:39](1904 MB) +PASS -- TEST 'regional_debug_intel' [19:42, 17:36](1087 MB) +PASS -- TEST 'rap_control_debug_intel' [06:26, 05:06](1210 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:27, 05:00](1205 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:26, 05:02](1209 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:28, 05:08](1217 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:27, 04:59](1210 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:36, 05:25](1296 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:25, 05:18](1214 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:24, 05:19](1212 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:24, 05:06](1211 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:25, 05:04](1217 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:25, 04:59](1216 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:23, 04:52](1214 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:23, 08:11](1215 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 05:03](1216 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 05:04](1215 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:23, 04:59](1209 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:42, 08:49](1221 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:11, 04:26] +PASS -- TEST 'control_csawmg_debug_gnu' [04:38, 02:25](714 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 04:50] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:50, 13:35](1687 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 09:50] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:02, 03:54](1139 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:44, 06:33](1057 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:41, 03:31](988 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:38, 06:14](1101 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:36, 03:14](951 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:32, 03:38](932 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:54, 04:57](1031 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:32, 01:52](922 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 10:04] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:56, 02:01](1186 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:41, 00:51](1106 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:48, 01:12](1096 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:12, 10:09] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:41, 04:15](983 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:42] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:24, 05:11](1094 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:25, 05:03](1096 MB) +PASS -- TEST 'conus13km_debug_intel' [16:51, 14:32](1239 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:55, 14:03](931 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 07:52](1166 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:47, 14:04](1313 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:52] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:27, 05:17](1136 MB) + +PASS -- COMPILE 'hafsw_intel' [14:12, 12:09] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:22, 05:12](721 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:34, 06:10](1107 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:25, 07:01](816 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:27, 14:44](852 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:32, 18:44](872 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:02, 05:30](490 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:23, 06:51](507 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:45, 02:47](369 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:33, 07:17](472 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:48, 03:45](518 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:49, 03:37](516 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:53, 04:11](584 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:30, 01:16](397 MB) +PASS -- TEST 'gnv1_nested_intel' [07:35, 04:19](1729 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:12, 05:11] ( 1462 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:56, 13:09](573 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:12, 11:35] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:10, 10:17](659 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:14, 10:19](733 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 11:41] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:33, 08:16](712 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:11, 10:40] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:29, 06:33](816 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:17, 06:35](794 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:54, 16:46](1220 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:39] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:53](1141 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:23, 01:40](1111 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:36](1027 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:45](1030 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:41](1022 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:47](1163 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:44](1163 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:42](1032 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:23, 06:33](1067 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:16, 06:23](1049 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:19, 02:49](1154 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:20, 04:20](2439 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:20, 03:59](2523 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:17] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:19, 06:22](1086 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:12, 06:43] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:20, 02:47](1154 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:58] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:30, 00:44](256 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:49](328 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:31](320 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:20] +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:34, 00:30](570 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:37, 00:17](452 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:12, 10:40] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:04, 03:43](1996 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 10:32] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:56, 08:03](1984 MB) + +PASS -- COMPILE 'atml_intel' [12:11, 10:56] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:57, 04:20](1873 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:55, 04:20](1857 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:47, 02:23](1096 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:12, 05:27] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:55, 05:44](1900 MB) + +PASS -- COMPILE 'atmw_intel' [13:12, 11:13] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:56, 01:56](1914 MB) + +PASS -- COMPILE 'atmaero_intel' [12:13, 10:36] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:00, 04:36](3172 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:02, 04:53](3099 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:47, 04:57](3106 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:12, 04:54] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_fbh_intel' [11:12, 09:49] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:29, 11:35](1130 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:12, 06:40] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:39, 08:29](1052 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:11, 06:50] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:37, 04:56](980 MB) + +PASS -- COMPILE 'atm_gnu' [06:12, 04:29] +PASS -- TEST 'control_c48_gnu' [11:37, 09:33](1510 MB) +PASS -- TEST 'control_stochy_gnu' [05:21, 03:30](496 MB) +PASS -- TEST 'control_ras_gnu' [06:21, 04:55](503 MB) +PASS -- TEST 'control_p8_gnu' [07:53, 05:15](1458 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [07:49, 05:12](1446 MB) +PASS -- TEST 'control_flake_gnu' [12:24, 10:44](543 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:12, 04:25] +PASS -- TEST 'rap_control_gnu' [13:37, 11:28](809 MB) +PASS -- TEST 'rap_decomp_gnu' [13:30, 11:35](804 MB) +PASS -- TEST 'rap_2threads_gnu' [12:34, 10:25](916 MB) +PASS -- TEST 'rap_restart_gnu' [07:41, 05:47](572 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:39, 11:30](835 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:35, 11:44](847 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:44, 08:30](576 MB) +PASS -- TEST 'hrrr_control_gnu' [07:40, 05:54](804 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:35, 05:59](825 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [07:33, 05:21](905 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:30, 05:54](837 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:29, 03:02](559 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:28, 03:01](648 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [13:44, 11:10](802 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:12, 03:56] +PASS -- TEST 'control_csawmg_gnu' [10:36, 08:35](737 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:33] +PASS -- TEST 'control_diag_debug_gnu' [03:43, 01:36](1267 MB) +PASS -- TEST 'regional_debug_gnu' [13:38, 11:34](737 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:24, 02:37](809 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:23, 02:32](808 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:23, 02:39](814 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:22, 02:40](817 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:33, 02:53](901 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:22, 04:05](813 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:23, 02:39](814 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:24, 02:42](807 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:22, 01:36](450 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:21, 01:48](443 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:42, 01:36](1436 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:24, 02:36](817 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:26, 02:37](819 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:39, 04:23](820 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:21] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:05] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:33, 09:47](701 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:35, 05:09](695 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:37, 09:01](741 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:29, 04:44](737 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:30, 05:17](690 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:36, 07:17](554 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:29, 02:51](530 MB) +PASS -- TEST 'conus13km_control_gnu' [05:53, 03:13](865 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:47, 06:02](866 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:45, 01:52](550 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:39] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:39, 05:52](723 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:31] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:24, 02:34](711 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:23, 02:33](709 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:53, 06:49](880 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:44, 06:52](572 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [09:41, 07:48](885 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:42, 06:52](950 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:30] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:23, 02:39](728 MB) + +PASS -- COMPILE 's2swa_gnu' [18:12, 16:32] + +PASS -- COMPILE 's2s_gnu' [17:12, 16:00] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [22:08, 19:28](1506 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [05:11, 03:08] + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:12, 15:48] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [37:13, 34:19](1453 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:55] + +PASS -- COMPILE 'datm_cdeps_gnu' [17:12, 15:21] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:18, 03:01](698 MB) SYNOPSIS: -Starting Date/Time: 20241204 13:06:09 -Ending Date/Time: 20241204 15:05:01 -Total Time: 01h:59m:10s +Starting Date/Time: 20241209 03:11:58 +Ending Date/Time: 20241209 06:06:55 +Total Time: 02h:55m:12s Compiles Completed: 61/61 Tests Completed: 249/249 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 32045bdc51..71d678769d 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,20 +1,20 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -1e6fc62a38e1b61538e203a7f297583333a18d2a +7f91b3de985a4799ef7f11450059958002f6aa8c 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) - 513f8d153924e18ae0f91f5440195d15210a489e CICE-interface/CICE (CICE6.0.0-391-g513f8d1) + 6c497bdfce0add89af9df9ad4be4a6a1bdf48494 CICE-interface/CICE (remotes/origin/restart_fh) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) + 3d3d28c120a1ad343f91e0e14dd38cd0cde6ae96 CMEPS-interface/CMEPS (remotes/origin/restart_fh) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 7e7719927a80104d1bb4badf790e509f1e4d39b8 FV3 (remotes/origin/rrfsv1-to-ufs/dev4) - f28be0e882fe53886d23076f56908588eac676c2 FV3/atmos_cubed_sphere (remotes/origin/rrfsv1-to-ufs/dev4) + 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) + 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - c2fb52eacb4e0402b2c307241c0c3acb0ea81b1c FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5524-gc2fb52ea) + dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -23,11 +23,11 @@ Submodule hashes used in testing: 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) + e2f6c128f939faec4efa3ce88f3f9025804fb3ae MOM6-interface/MOM6 (remotes/origin/restart_fh) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 615236be21904e180c12c4babfde89fdb448a2cf WW3 (remotes/origin/bug/addPIOswitch) + bdf039138204122991cea42729ee44c17ae7dd49 WW3 (6.07.1-353-gbdf03913) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,385 +38,386 @@ 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-20241203 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_3083472 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20241206 +COMPARISON DIRECTORY: /work2/noaa/epic/nandoam/stmp/hercules/nandoam/FV3_RT/rt_2040785 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-r) - USE ROCOTO - -PASS -- COMPILE 's2swa_32bit_intel' [12:29, 12:29] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:02, 14:13](2134 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:18, 21:18] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:12, 17:23](1982 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:39, 18:35](2291 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:04, 07:01](1360 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:07, 23:07](1909 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:14, 18:13] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:40, 17:12](1984 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:32, 08:31] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:21, 24:30](1956 MB) - -PASS -- COMPILE 's2swa_intel' [14:10, 14:10] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [15:02, 14:21](2205 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:18, 14:38](2208 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:09, 09:07](1976 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [15:17, 14:29](2225 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:48, 07:47](1737 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [17:10, 16:24](2567 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [15:12, 14:36](2194 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:08, 12:27](2097 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:03, 14:19](2205 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:49, 15:33](2992 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [08:03, 06:17](2929 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [21:24, 16:44](3858 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:09, 09:23](3647 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:39, 07:02](2119 MB) - -PASS -- COMPILE 's2sw_intel' [13:54, 13:54] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [14:07, 13:32](2014 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:01, 10:23](2106 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:10, 08:10] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [20:46, 20:03](2226 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:50, 07:47] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:26, 07:51](2047 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:30, 12:29] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:48, 05:14](2076 MB) - -PASS -- COMPILE 's2s_intel' [12:29, 12:26] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [06:23, 05:57](3036 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [02:16, 01:49](3019 MB) -PASS -- TEST 'cpld_restart_c48_intel' [01:40, 01:07](2457 MB) - -PASS -- COMPILE 's2swa_faster_intel' [12:15, 12:15] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [14:42, 13:51](2204 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [14:58, 14:58] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:42, 23:53](2070 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:30, 11:55](1437 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:34, 26:51](1992 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:15, 05:15] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:44, 27:05](2009 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:12, 10:12] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:08, 02:56](705 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:13, 02:50](1584 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:18, 02:52](1593 MB) -PASS -- TEST 'control_latlon_intel' [03:06, 02:47](1586 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:15, 02:48](1583 MB) -PASS -- TEST 'control_c48_intel' [10:57, 10:35](1705 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:10, 05:59](820 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [10:53, 10:37](1696 MB) -PASS -- TEST 'control_c192_intel' [10:47, 10:16](1768 MB) -PASS -- TEST 'control_c384_intel' [13:03, 11:57](2007 MB) -PASS -- TEST 'control_c384gdas_intel' [08:45, 07:21](1483 MB) -PASS -- TEST 'control_stochy_intel' [01:41, 01:29](663 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:09, 00:55](530 MB) -PASS -- TEST 'control_lndp_intel' [01:36, 01:23](665 MB) -PASS -- TEST 'control_iovr4_intel' [02:33, 02:16](662 MB) -PASS -- TEST 'control_iovr5_intel' [02:23, 02:11](667 MB) -PASS -- TEST 'control_p8_intel' [04:01, 03:18](1882 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:34, 02:54](1904 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:48, 03:08](1888 MB) -PASS -- TEST 'control_restart_p8_intel' [02:37, 01:52](1147 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:46, 03:09](1869 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:39, 01:54](1207 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:55, 03:13](1864 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:44, 03:00](1953 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:25, 07:04](1873 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:29, 03:43](1971 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:28, 02:44](1901 MB) -PASS -- TEST 'merra2_thompson_intel' [03:58, 03:09](1914 MB) -PASS -- TEST 'regional_control_intel' [04:53, 04:38](1220 MB) -PASS -- TEST 'regional_restart_intel' [02:48, 02:36](1185 MB) -PASS -- TEST 'regional_decomp_intel' [05:08, 04:50](1210 MB) -PASS -- TEST 'regional_2threads_intel' [03:16, 02:58](1181 MB) -PASS -- TEST 'regional_noquilt_intel' [04:53, 04:33](1549 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [04:55, 04:37](1224 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:09, 04:41](1225 MB) -PASS -- TEST 'regional_wofs_intel' [06:26, 06:06](2079 MB) - -PASS -- COMPILE 'rrfs_intel' [09:23, 09:23] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [07:26, 06:49](1194 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:13, 03:36](1375 MB) -PASS -- TEST 'rap_decomp_intel' [07:43, 07:05](1153 MB) -PASS -- TEST 'rap_2threads_intel' [07:03, 06:25](1378 MB) -PASS -- TEST 'rap_restart_intel' [04:22, 03:37](1116 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:10, 06:35](1202 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:41, 07:03](1144 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:59, 05:13](1181 MB) -PASS -- TEST 'hrrr_control_intel' [04:08, 03:29](1073 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:15, 03:32](1047 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [09:04, 08:22](1122 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:14, 01:57](1013 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:27, 06:46](1226 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:07, 09:43](2000 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:12, 09:03](2174 MB) - -PASS -- COMPILE 'csawmg_intel' [08:19, 08:19] -PASS -- TEST 'control_csawmg_intel' [05:51, 05:31](1054 MB) -PASS -- TEST 'control_ras_intel' [03:08, 02:58](824 MB) - -PASS -- COMPILE 'wam_intel' [08:28, 08:28] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [10:28, 10:02](1660 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [08:49, 08:49] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:00, 02:25](1893 MB) -PASS -- TEST 'regional_control_faster_intel' [04:43, 04:24](1226 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:03, 06:03] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:23, 01:56](1604 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:25, 01:55](1620 MB) -PASS -- TEST 'control_stochy_debug_intel' [02:47, 02:40](835 MB) -PASS -- TEST 'control_lndp_debug_intel' [02:39, 02:28](840 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:01, 04:45](1149 MB) -PASS -- TEST 'control_ras_debug_intel' [02:43, 02:32](842 MB) -PASS -- TEST 'control_diag_debug_intel' [02:55, 02:30](1700 MB) -PASS -- TEST 'control_debug_p8_intel' [02:42, 02:18](1914 MB) -PASS -- TEST 'regional_debug_intel' [15:39, 15:18](1157 MB) -PASS -- TEST 'rap_control_debug_intel' [04:39, 04:27](1234 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:40, 04:29](1214 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:35, 04:24](1229 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:27, 04:15](1227 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:30, 04:18](1233 MB) -PASS -- TEST 'rap_diag_debug_intel' [04:55, 04:37](1307 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:49, 04:34](1231 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:36, 04:27](1231 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:38, 04:29](1232 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:23, 04:16](1225 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:23, 04:16](1223 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:41, 04:30](1226 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:20, 07:10](1225 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:31, 04:24](1218 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [04:32, 04:21](1223 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:29, 04:17](1228 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:31, 07:50](1233 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:14, 05:13] -PASS -- TEST 'control_csawmg_debug_gnu' [02:41, 02:22](1043 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:53, 04:53] ( 837 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:02, 09:01] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [03:58, 03:21](1248 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:09, 05:35](1192 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:45, 02:59](1036 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:55, 05:16](1275 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:28, 07:43](1044 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:57, 03:13](988 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:54, 04:14](1119 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:02, 01:40](953 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:07, 09:07] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:08, 01:42](1285 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:12, 00:46](1190 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:31, 01:06](1138 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:48, 08:48] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:17, 03:52](1067 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:14, 04:14] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:57, 04:46](1101 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:54, 04:41](1104 MB) -PASS -- TEST 'conus13km_debug_intel' [12:26, 11:57](1338 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [12:28, 12:04](986 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:33, 08:14](1252 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [22:58, 22:37](1400 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:13, 04:13] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:17, 04:06](1161 MB) - -PASS -- COMPILE 'hafsw_intel' [09:58, 09:58] ( 1 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:13, 05:21](857 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:42, 05:28](1264 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:31, 06:26](942 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:51, 14:55](942 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:20, 17:10](975 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:15, 05:35](603 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:17, 07:09](608 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:07, 02:36](435 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:10, 07:33](543 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:41, 04:06](604 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:20, 03:43](609 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:37, 04:55](655 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:29, 01:14](446 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:32, 04:32] ( 1462 warnings 1490 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:15, 11:37](630 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [09:45, 09:45] ( 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:45, 17:52](736 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:20, 18:29](835 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:13, 11:13] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:18, 12:09](820 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:39, 10:39] ( 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [06:28, 05:36](923 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:28, 05:36](925 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:07, 16:34](1340 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:31, 07:31] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:26, 02:20](1151 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:25, 01:19](1111 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:11, 02:06](1020 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:11, 02:05](1023 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:15, 02:10](1024 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:26, 02:20](1131 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:15, 02:10](1151 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:11, 02:07](1008 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:26, 04:53](1167 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:27, 04:54](1154 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:09, 03:06](1139 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:10, 03:01](2419 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:18, 03:13](2409 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:18, 04:18] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:58, 09:53](1071 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:08, 06:08] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:15, 02:09](1128 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [00:57, 00:56] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:08, 00:53](338 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:04, 00:52](570 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:50, 00:34](579 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:47, 08:47] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [03:48, 03:15](2020 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [09:44, 09:44] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:48, 07:17](2035 MB) - -PASS -- COMPILE 'atml_intel' [10:20, 10:20] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:35, 05:51](1893 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:23, 05:39](1899 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:15, 02:50](1146 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:07, 06:05] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:50, 05:01](1927 MB) - -PASS -- COMPILE 'atmw_intel' [10:18, 10:18] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:21, 01:46](1933 MB) - -PASS -- COMPILE 'atmaero_intel' [09:45, 09:45] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:30, 03:52](2014 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:08, 04:30](1786 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:07, 04:33](1787 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:10, 04:10] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [17:47, 16:35](4517 MB) - -PASS -- COMPILE 'atm_fbh_intel' [08:30, 08:29] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:15, 10:04](1111 MB) - -PASS -- COMPILE 'datm_cdeps_intelllvm' [11:29, 11:29] -PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [02:57, 02:27](1145 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [02:06, 02:05] -PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [06:13, 06:08](1081 MB) - -PASS -- COMPILE 'atm_gnu' [04:39, 04:39] -PASS -- TEST 'control_c48_gnu' [08:23, 08:00](1521 MB) -PASS -- TEST 'control_stochy_gnu' [02:35, 02:25](721 MB) -PASS -- TEST 'control_ras_gnu' [04:13, 04:03](720 MB) -PASS -- TEST 'control_p8_gnu' [04:45, 04:06](1723 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:52, 04:18](1723 MB) -PASS -- TEST 'control_flake_gnu' [04:58, 04:46](810 MB) - -PASS -- COMPILE 'rrfs_gnu' [04:37, 04:36] -PASS -- TEST 'rap_control_gnu' [12:00, 11:24](1071 MB) -PASS -- TEST 'rap_decomp_gnu' [11:54, 11:16](1072 MB) -PASS -- TEST 'rap_2threads_gnu' [10:23, 09:45](1106 MB) -PASS -- TEST 'rap_restart_gnu' [06:28, 05:40](879 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:39, 11:00](1072 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:25, 11:45](1075 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:33, 08:46](876 MB) -PASS -- TEST 'hrrr_control_gnu' [06:24, 05:44](1060 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:12, 05:39](1128 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:20, 04:35](1033 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:25, 05:47](1055 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:07, 02:48](879 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:12, 02:54](925 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:36, 10:56](1069 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:01, 04:00] -PASS -- TEST 'control_csawmg_gnu' [09:52, 09:21](1052 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:49, 06:49] -PASS -- TEST 'control_diag_debug_gnu' [01:47, 01:16](1618 MB) -PASS -- TEST 'regional_debug_gnu' [07:17, 06:58](1133 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:07, 02:53](1091 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:25, 02:14](1083 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:09, 02:02](1087 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:24, 02:13](1097 MB) -PASS -- TEST 'rap_diag_debug_gnu' [02:33, 02:17](1263 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:39, 03:31](1087 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:21, 02:11](1089 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:27, 02:17](1083 MB) -PASS -- TEST 'control_ras_debug_gnu' [01:19, 01:12](722 MB) -PASS -- TEST 'control_stochy_debug_gnu' [01:32, 01:25](718 MB) -PASS -- TEST 'control_debug_p8_gnu' [01:50, 01:28](1700 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:13, 02:03](1094 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [02:26, 02:12](1090 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:08, 03:33](1093 MB) - -PASS -- COMPILE 'wam_debug_gnu' [02:56, 02:55] -PASS -- TEST 'control_wam_debug_gnu' [05:51, 05:25](1551 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:17, 04:17] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:22, 07:46](952 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:47, 04:01](940 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:20, 06:45](962 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:24, 03:35](873 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:45, 03:58](946 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:15, 05:34](853 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:27, 02:07](856 MB) -PASS -- TEST 'conus13km_control_gnu' [03:04, 02:35](1256 MB) -PASS -- TEST 'conus13km_2threads_gnu' [01:30, 01:09](1166 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [01:51, 01:30](945 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:53, 09:53] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:53, 05:32](982 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [09:07, 09:07] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:46, 02:35](966 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:12, 02:03](957 MB) -PASS -- TEST 'conus13km_debug_gnu' [05:40, 05:18](1281 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:09, 05:47](948 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [03:59, 03:37](1176 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [05:46, 05:24](1342 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:35, 09:35] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:13, 02:05](989 MB) - -PASS -- COMPILE 's2swa_gnu' [19:19, 19:18] - -PASS -- COMPILE 's2s_gnu' [17:55, 17:55] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [14:45, 14:00](3068 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [03:41, 03:41] - -PASS -- COMPILE 's2sw_pdlib_gnu' [16:08, 16:07] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [40:32, 39:47](2905 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:19, 04:19] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:43, 15:03](3068 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [14:57, 14:57] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [02:32, 02:27](773 MB) +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [13:10, 11:17] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [21:00, 15:03](2133 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:10, 16:41] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:06, 17:10](1999 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:27, 18:10](2292 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:18, 07:07](1358 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:57, 18:25](1910 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:10, 19:15] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:37, 16:47](1984 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:10, 06:03] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:09, 25:06](1970 MB) + +PASS -- COMPILE 's2swa_intel' [14:10, 12:15] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [21:02, 16:21](2203 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:04, 15:29](2197 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:03, 07:34](1969 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [20:54, 15:28](2216 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:11, 07:46](1730 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [23:01, 17:31](2571 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [20:01, 15:17](2188 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:59, 12:52](2095 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [20:03, 15:32](2203 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [21:33, 16:54](2988 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:01, 06:07](2903 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [26:09, 18:15](3851 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:49, 10:17](3680 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:57, 07:50](2101 MB) + +PASS -- COMPILE 's2sw_intel' [13:10, 11:50] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [17:52, 15:04](2011 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:58, 11:07](2114 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:10, 06:04] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [23:00, 19:59](2228 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:10, 05:36] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:53, 08:57](2036 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:10, 11:13] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:54, 05:45](2070 MB) + +PASS -- COMPILE 's2s_intel' [13:10, 11:20] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [12:39, 07:16](3041 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [08:38, 03:26](3019 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:38, 01:08](2466 MB) + +PASS -- COMPILE 's2swa_faster_intel' [14:10, 11:38] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:01, 13:39](2208 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:10, 15:37] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:55, 25:00](2066 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:03, 11:26](1397 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:51, 25:56](1982 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:10, 05:16] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:50, 28:45](2006 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:10, 08:57] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:19, 03:00](712 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:28, 02:54](1581 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:32, 03:00](1607 MB) +PASS -- TEST 'control_latlon_intel' [05:26, 02:47](1596 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:33, 02:51](1589 MB) +PASS -- TEST 'control_c48_intel' [13:32, 10:17](1702 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:22, 05:54](837 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [12:29, 10:26](1693 MB) +PASS -- TEST 'control_c192_intel' [12:39, 10:20](1756 MB) +PASS -- TEST 'control_c384_intel' [15:14, 12:10](2018 MB) +PASS -- TEST 'control_c384gdas_intel' [10:50, 07:19](1488 MB) +PASS -- TEST 'control_stochy_intel' [03:19, 01:31](655 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:26, 00:54](531 MB) +PASS -- TEST 'control_lndp_intel' [03:17, 01:27](666 MB) +PASS -- TEST 'control_iovr4_intel' [04:18, 02:11](662 MB) +PASS -- TEST 'control_iovr5_intel' [04:18, 02:10](664 MB) +PASS -- TEST 'control_p8_intel' [05:49, 03:22](1881 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:50, 03:28](1888 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:47, 04:07](1872 MB) +PASS -- TEST 'control_restart_p8_intel' [03:38, 01:47](1168 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:41, 04:21](1879 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:52, 01:48](1217 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:38, 03:44](1880 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:43, 03:04](1961 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:27, 05:39](1879 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:48, 03:40](1963 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:51, 02:44](1903 MB) +PASS -- TEST 'merra2_thompson_intel' [04:57, 03:01](1901 MB) +PASS -- TEST 'regional_control_intel' [06:26, 04:38](1227 MB) +PASS -- TEST 'regional_restart_intel' [04:27, 02:40](1178 MB) +PASS -- TEST 'regional_decomp_intel' [06:25, 04:55](1212 MB) +PASS -- TEST 'regional_2threads_intel' [04:23, 03:02](1200 MB) +PASS -- TEST 'regional_noquilt_intel' [06:28, 04:37](1551 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:28, 04:42](1225 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:23, 04:36](1222 MB) +PASS -- TEST 'regional_wofs_intel' [07:24, 06:03](2079 MB) + +PASS -- COMPILE 'rrfs_intel' [10:10, 08:48] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:46, 06:39](1188 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:47, 03:30](1416 MB) +PASS -- TEST 'rap_decomp_intel' [08:38, 06:57](1146 MB) +PASS -- TEST 'rap_2threads_intel' [08:36, 06:20](1381 MB) +PASS -- TEST 'rap_restart_intel' [05:40, 03:33](1141 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:45, 06:38](1235 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:33, 07:08](1170 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:51, 04:59](1189 MB) +PASS -- TEST 'hrrr_control_intel' [05:40, 03:26](1083 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:36, 03:39](1044 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:34, 03:15](1106 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:34, 01:59](1018 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:53, 06:40](1203 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:20, 09:22](2004 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:20, 09:03](2175 MB) + +PASS -- COMPILE 'csawmg_intel' [10:10, 08:28] +PASS -- TEST 'control_csawmg_intel' [07:25, 05:33](1049 MB) +PASS -- TEST 'control_ras_intel' [04:17, 02:52](837 MB) + +PASS -- COMPILE 'wam_intel' [10:10, 08:47] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [11:35, 09:54](1659 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:10, 08:27] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:55, 03:25](1888 MB) +PASS -- TEST 'regional_control_faster_intel' [06:26, 04:19](1226 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:10, 07:14] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:30, 01:57](1613 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:32, 01:57](1626 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:17, 02:42](829 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:17, 02:31](837 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:27, 04:31](1145 MB) +PASS -- TEST 'control_ras_debug_intel' [04:17, 02:32](842 MB) +PASS -- TEST 'control_diag_debug_intel' [04:32, 02:32](1700 MB) +PASS -- TEST 'control_debug_p8_intel' [04:31, 02:41](1908 MB) +PASS -- TEST 'regional_debug_intel' [18:27, 16:23](1146 MB) +PASS -- TEST 'rap_control_debug_intel' [10:19, 08:07](1229 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:18, 04:17](1226 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:19, 04:21](1215 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:17, 04:32](1230 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:17, 04:23](1233 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:25, 04:31](1315 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:18, 04:21](1223 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:17, 04:24](1230 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:18, 04:16](1233 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:18, 04:12](1226 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:18, 04:22](1219 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:17, 04:16](1223 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:19, 07:06](1228 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:16, 04:29](1221 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:17, 04:26](1227 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:18, 04:13](1215 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:49, 07:21](1229 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:10, 04:27] +PASS -- TEST 'control_csawmg_debug_gnu' [03:26, 01:57](1041 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:10, 04:41] ( 837 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:10, 08:03] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:44, 03:14](1244 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:42, 05:27](1147 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:39, 02:55](1015 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:40, 05:25](1282 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:38, 02:42](1040 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:43, 03:05](994 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:50, 04:08](1091 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:38, 01:37](950 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:10, 08:21] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:35, 01:42](1277 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:26, 00:43](1189 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:29, 01:02](1137 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:10, 08:17] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:28, 03:52](1074 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:10, 03:49] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:17, 04:43](1099 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:18, 04:48](1101 MB) +PASS -- TEST 'conus13km_debug_intel' [13:30, 11:52](1346 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [14:29, 12:28](997 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:25, 08:00](1241 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:32, 12:10](1410 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:10, 03:46] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:19, 04:13](1170 MB) + +PASS -- COMPILE 'hafsw_intel' [12:10, 10:33] ( 1 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:03, 05:21](843 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:21, 05:00](1273 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:11, 07:03](924 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:04, 14:20](949 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:09, 17:07](995 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:50, 05:27](598 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:15, 06:56](606 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:40, 02:41](438 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:51, 07:38](568 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:44, 03:55](604 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:41, 03:42](608 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:45, 04:47](662 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:24, 01:15](446 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:10, 04:40] ( 1462 warnings 1490 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:45, 13:03](628 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:10, 09:29] ( 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [20:51, 18:20](753 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [21:54, 19:26](839 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:11, 10:12] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:19, 11:56](806 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:10, 10:18] ( 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:03, 05:32](940 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:02, 05:37](896 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:44, 16:35](1344 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:10, 07:30] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:15, 02:11](1145 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:19](1111 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:14, 02:04](1018 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:15, 02:06](1031 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:14, 02:08](1016 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:15, 02:10](1161 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:15, 02:10](1160 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:14, 02:06](1020 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:48, 04:54](1157 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:49, 04:51](1153 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:10](1155 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:15, 02:59](2462 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:15, 03:02](2400 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:48] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:15, 05:15](1085 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:10, 05:26] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:15, 02:08](1159 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 00:57] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:25, 00:53](331 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:21, 00:50](575 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:22, 00:33](575 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:11, 09:06] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:48, 03:14](2017 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:11, 08:46] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:42, 07:09](2024 MB) + +PASS -- COMPILE 'atml_intel' [11:11, 09:17] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:55, 05:57](1880 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:51, 06:00](1885 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:34, 03:03](1145 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:10, 04:22] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:51, 06:02](1925 MB) + +PASS -- COMPILE 'atmw_intel' [10:10, 09:02] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:46, 01:47](1926 MB) + +PASS -- COMPILE 'atmaero_intel' [10:10, 08:36] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:43, 03:47](2004 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:44, 04:28](1782 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:40, 04:30](1798 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:10, 03:37] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [20:21, 17:35](4513 MB) + +PASS -- COMPILE 'atm_fbh_intel' [09:10, 07:52] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:23, 09:47](1111 MB) + +PASS -- COMPILE 'datm_cdeps_intelllvm' [12:10, 10:44] +PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [04:15, 02:19](1152 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [04:10, 02:21] +PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [07:15, 06:01](1075 MB) + +PASS -- COMPILE 'atm_gnu' [06:10, 04:40] +PASS -- TEST 'control_c48_gnu' [09:39, 07:46](1545 MB) +PASS -- TEST 'control_stochy_gnu' [04:19, 02:30](718 MB) +PASS -- TEST 'control_ras_gnu' [05:17, 03:48](726 MB) +PASS -- TEST 'control_p8_gnu' [06:48, 04:28](1716 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:36, 04:00](1696 MB) +PASS -- TEST 'control_flake_gnu' [06:20, 04:30](808 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:10, 04:37] +PASS -- TEST 'rap_control_gnu' [10:35, 08:23](1075 MB) +PASS -- TEST 'rap_decomp_gnu' [10:33, 08:18](1077 MB) +PASS -- TEST 'rap_2threads_gnu' [09:45, 07:22](1116 MB) +PASS -- TEST 'rap_restart_gnu' [07:53, 04:06](877 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [09:47, 08:03](1071 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:44, 08:15](1070 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:47, 06:00](876 MB) +PASS -- TEST 'hrrr_control_gnu' [05:48, 04:09](1059 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:33, 04:04](1128 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:33, 03:35](1021 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:31, 04:07](1060 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:20, 02:07](876 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:19, 02:13](924 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [09:51, 07:56](1068 MB) + +PASS -- COMPILE 'csawmg_gnu' [06:10, 04:31] +PASS -- TEST 'control_csawmg_gnu' [08:25, 07:01](1053 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [10:10, 08:50] +PASS -- TEST 'control_diag_debug_gnu' [03:30, 01:19](1620 MB) +PASS -- TEST 'regional_debug_gnu' [09:26, 07:31](1119 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:17, 02:14](1087 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:23, 02:08](1084 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:19, 02:14](1083 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:17, 02:19](1083 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:25, 02:24](1260 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:16, 03:34](1083 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:17, 02:19](1090 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:16, 02:17](1081 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:16, 01:14](720 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:18, 01:16](721 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:32, 01:20](1714 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:17, 02:14](1088 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:19, 02:06](1092 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:46, 03:43](1090 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:10, 03:00] +PASS -- TEST 'control_wam_debug_gnu' [07:32, 05:18](1554 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:11, 05:36] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:31, 07:35](952 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:47, 03:51](940 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:41, 06:57](968 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:36, 03:27](880 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:36, 03:54](941 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:38, 05:49](853 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:20, 02:05](854 MB) +PASS -- TEST 'conus13km_control_gnu' [04:41, 02:43](1256 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:30, 01:17](1162 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [04:29, 01:35](919 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [15:11, 13:13] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:30, 04:31](982 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [12:11, 10:55] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:17, 02:07](967 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:24, 02:03](964 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:31, 05:23](1277 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:29, 05:32](947 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [06:27, 03:27](1186 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:27, 05:40](1347 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [14:11, 12:18] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [05:18, 02:13](995 MB) + +PASS -- COMPILE 's2swa_gnu' [22:11, 20:54] + +PASS -- COMPILE 's2s_gnu' [21:11, 19:09] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [22:00, 18:19](2707 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [13:10, 11:22] + +PASS -- COMPILE 's2sw_pdlib_gnu' [21:10, 19:14] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [43:56, 40:22](3023 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [11:10, 09:22] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [18:46, 15:36](2926 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [17:10, 15:12] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:15, 02:19](769 MB) SYNOPSIS: -Starting Date/Time: 20241204 08:00:56 -Ending Date/Time: 20241204 13:21:26 -Total Time: 05h:21m:07s +Starting Date/Time: 20241208 21:44:53 +Ending Date/Time: 20241208 23:50:42 +Total Time: 02h:06m:11s Compiles Completed: 60/60 Tests Completed: 248/248 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 1e223c75ea..3d2d628540 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,20 +1,20 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -1e6fc62a38e1b61538e203a7f297583333a18d2a +7f91b3de985a4799ef7f11450059958002f6aa8c 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) - 513f8d153924e18ae0f91f5440195d15210a489e CICE-interface/CICE (CICE6.0.0-391-g513f8d1) + 6c497bdfce0add89af9df9ad4be4a6a1bdf48494 CICE-interface/CICE (remotes/origin/restart_fh) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) + 3d3d28c120a1ad343f91e0e14dd38cd0cde6ae96 CMEPS-interface/CMEPS (remotes/origin/restart_fh) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 7e7719927a80104d1bb4badf790e509f1e4d39b8 FV3 (remotes/origin/rrfsv1-to-ufs/dev4) - f28be0e882fe53886d23076f56908588eac676c2 FV3/atmos_cubed_sphere (remotes/origin/rrfsv1-to-ufs/dev4) + 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) + 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - c2fb52eacb4e0402b2c307241c0c3acb0ea81b1c FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5524-gc2fb52ea) + dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -23,11 +23,11 @@ Submodule hashes used in testing: 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) + e2f6c128f939faec4efa3ce88f3f9025804fb3ae MOM6-interface/MOM6 (remotes/origin/restart_fh) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 615236be21904e180c12c4babfde89fdb448a2cf WW3 (remotes/origin/bug/addPIOswitch) + bdf039138204122991cea42729ee44c17ae7dd49 WW3 (6.07.1-353-gbdf03913) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,262 +38,269 @@ 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-20241203 -COMPARISON DIRECTORY: /lfs5/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_2769968 +BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20241206 +COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1163981 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic +* (-a) - HPC PROJECT ACCOUNT: h-nems +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [45:14, 43:24] ( 1 warnings 1397 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:16, 13:35](2017 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:14, 48:08] ( 1 warnings 1444 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [25:08, 22:52](1885 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:17, 24:08](2031 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:10, 09:40](1142 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:04, 25:52](1849 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [49:14, 47:37] ( 1 warnings 1441 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [24:45, 22:21](1876 MB) - -PASS -- COMPILE 's2swa_intel' [45:14, 43:35] ( 1 warnings 1416 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [20:11, 17:08](2068 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:23, 17:02](2057 MB) -PASS -- TEST 'cpld_restart_p8_intel' [12:15, 08:54](1718 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [19:09, 17:07](2076 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [11:24, 09:00](1740 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [19:04, 16:31](2327 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [20:07, 17:14](2053 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [16:14, 14:02](2005 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:15, 16:58](2074 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:11, 09:11](2016 MB) - -PASS -- COMPILE 's2sw_intel' [35:13, 33:49] ( 1 warnings 1301 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [12:17, 09:52](1894 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:30, 14:06](1986 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:04] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [30:18, 27:28](2074 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:49] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [14:02, 11:32](1930 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [38:13, 36:55] ( 1019 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:24, 05:29](1968 MB) - -PASS -- COMPILE 's2s_intel' [39:13, 37:32] ( 1 warnings 1042 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [12:48, 10:19](3014 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:48, 03:03](3011 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:48, 01:46](2455 MB) - -PASS -- COMPILE 's2swa_faster_intel' [34:18, 32:31] ( 1 warnings 1632 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [19:32, 16:18](2066 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [47:14, 45:50] ( 1 warnings 1361 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [35:17, 33:07](1938 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [19:20, 16:20](1137 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [41:26, 38:59](1923 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:50] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:08, 38:40](1941 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [39:14, 37:24] ( 1 warnings 1125 remarks ) -PASS -- TEST 'control_flake_intel' [06:30, 04:23](648 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [07:01, 04:23](1538 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:04, 04:35](1536 MB) -PASS -- TEST 'control_latlon_intel' [06:59, 04:23](1540 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:07, 04:28](1545 MB) -PASS -- TEST 'control_c48_intel' [20:07, 18:02](1698 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:35, 10:12](831 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [21:06, 18:15](1698 MB) -PASS -- TEST 'control_c192_intel' [18:15, 15:49](1694 MB) -PASS -- TEST 'control_c384_intel' [27:12, 23:04](1814 MB) -PASS -- TEST 'control_c384gdas_intel' [17:58, 13:17](1007 MB) -PASS -- TEST 'control_stochy_intel' [04:28, 02:09](609 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:25, 01:14](446 MB) -PASS -- TEST 'control_lndp_intel' [03:28, 02:02](607 MB) -PASS -- TEST 'control_iovr4_intel' [05:31, 03:16](601 MB) -PASS -- TEST 'control_iovr5_intel' [05:31, 03:14](605 MB) -PASS -- TEST 'control_p8_intel' [07:21, 04:56](1819 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:26, 04:10](1842 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:09, 04:50](1827 MB) -PASS -- TEST 'control_restart_p8_intel' [04:49, 02:35](1060 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:11, 04:48](1823 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:55, 02:31](1087 MB) -FAILED: TEST TIMED OUT -- TEST 'control_decomp_p8_intel' [, ]( MB) -PASS -- TEST 'control_2threads_p8_intel' [07:10, 04:42](1917 MB) -PASS -- TEST 'control_p8_lndp_intel' [11:07, 08:45](1830 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:15, 05:18](1900 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:13, 04:10](1853 MB) -PASS -- TEST 'merra2_thompson_intel' [07:09, 04:27](1844 MB) -PASS -- TEST 'regional_control_intel' [08:57, 07:01](1046 MB) -PASS -- TEST 'regional_restart_intel' [05:36, 03:45](1018 MB) -PASS -- TEST 'regional_decomp_intel' [09:57, 07:26](1042 MB) -PASS -- TEST 'regional_2threads_intel' [06:37, 04:18](1013 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:42, 07:03](1043 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:35, 07:04](1036 MB) - -PASS -- COMPILE 'rrfs_intel' [37:14, 35:22] ( 3 warnings 1101 remarks ) -PASS -- TEST 'rap_control_intel' [12:46, 10:14](983 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:12, 05:31](1192 MB) -PASS -- TEST 'rap_decomp_intel' [12:45, 10:50](978 MB) -PASS -- TEST 'rap_2threads_intel' [11:53, 09:47](1066 MB) -PASS -- TEST 'rap_restart_intel' [07:46, 05:09](987 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:48, 10:16](993 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:49, 10:53](982 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:46, 07:32](997 MB) -PASS -- TEST 'hrrr_control_intel' [07:43, 05:20](979 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:42, 05:33](980 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:49, 04:52](1051 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:28, 02:46](911 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:56, 10:12](981 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [15:34, 13:34](1936 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [15:32, 13:09](1930 MB) - -PASS -- COMPILE 'csawmg_intel' [36:14, 35:06] ( 1099 remarks ) -PASS -- TEST 'control_csawmg_intel' [09:46, 08:03](959 MB) -PASS -- TEST 'control_ras_intel' [06:29, 04:33](669 MB) - -PASS -- COMPILE 'wam_intel' [36:14, 35:08] ( 1003 remarks ) -PASS -- TEST 'control_wam_intel' [16:40, 14:17](1616 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [39:14, 37:42] ( 1303 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:51, 03:36](1836 MB) -PASS -- TEST 'regional_control_faster_intel' [08:36, 06:35](1041 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 08:25] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:48, 02:44](1565 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:54, 02:44](1561 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:29, 03:43](782 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:29, 03:21](778 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:46, 05:26](1083 MB) -PASS -- TEST 'control_ras_debug_intel' [05:29, 03:28](783 MB) -PASS -- TEST 'control_diag_debug_intel' [05:52, 03:21](1637 MB) -PASS -- TEST 'control_debug_p8_intel' [05:53, 03:16](1862 MB) -PASS -- TEST 'regional_debug_intel' [23:50, 21:57](1060 MB) -PASS -- TEST 'rap_control_debug_intel' [08:32, 06:10](1163 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:32, 06:02](1155 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:32, 06:09](1156 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:32, 06:10](1166 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:32, 06:08](1159 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:44, 06:25](1249 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:32, 06:09](1165 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:32, 06:19](1164 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:32, 06:13](1166 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:24, 06:05](1159 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:24, 05:58](1160 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:25, 06:04](1157 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:24, 09:58](1158 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:23, 06:04](1162 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:25, 06:06](1167 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:25, 06:05](1157 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:43, 10:38](1161 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:11, 05:32] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:52, 16:28](1647 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:13, 30:50] ( 3 warnings 1033 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:05, 05:10](1059 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:34, 08:16](914 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:39, 04:20](859 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:44, 07:53](953 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:40, 03:59](904 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:39, 04:38](853 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:47, 06:12](903 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:26, 02:21](851 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [33:13, 31:58] ( 3 warnings 1207 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:52, 02:41](1102 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:38, 01:12](1041 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:29](1012 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [33:13, 31:15] ( 3 warnings 1053 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:47, 05:25](908 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:09] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:29, 06:00](1043 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:28, 05:54](1042 MB) -PASS -- TEST 'conus13km_debug_intel' [19:56, 17:25](1155 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [19:56, 17:41](861 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:52, 10:10](1096 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:52, 17:38](1211 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 05:03] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:29, 06:15](1081 MB) - -PASS -- COMPILE 'hafsw_intel' [41:14, 40:05] ( 1 warnings 1435 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:25, 06:54](698 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:37, 06:09](1076 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:37, 09:05](758 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:30, 15:49](777 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:53, 19:02](795 MB) -PASS -- TEST 'gnv1_nested_intel' [09:50, 06:22](1664 MB) - -PASS -- COMPILE 'hafs_all_intel' [38:13, 36:42] ( 1281 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:20, 08:27](751 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:20, 08:27](746 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:17] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:22, 03:33](1052 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:22, 02:09](1041 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:22, 03:29](943 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:22, 03:33](930 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:22, 03:33](942 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:22, 03:33](1081 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:22, 03:32](1089 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:22, 03:30](946 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:17, 07:39](894 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:19, 07:35](845 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:18, 03:33](1070 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:21, 05:04](2410 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:21, 05:06](2387 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:27] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:23, 08:07](1015 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:21] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:25, 03:32](1060 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:41] ( 68 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:34, 01:19](241 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:29, 01:09](263 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:40](261 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [38:13, 36:51] ( 1024 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:16, 04:46](1880 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [37:13, 35:52] ( 1 warnings 1029 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [13:03, 10:25](1911 MB) - -PASS -- COMPILE 'atml_intel' [39:14, 37:21] ( 8 warnings 1174 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:09, 05:43](1850 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:09, 05:46](1861 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:43, 03:13](1055 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:11, 06:20] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:06, 07:16](1888 MB) - -PASS -- COMPILE 'atmw_intel' [38:14, 36:40] ( 1277 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:52, 02:31](1858 MB) - -PASS -- COMPILE 'atmaero_intel' [37:14, 35:39] ( 1107 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:01, 05:12](1933 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:59, 06:12](1725 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:49, 06:21](1715 MB) - -PASS -- COMPILE 'atm_fbh_intel' [32:13, 31:02] ( 3 warnings 1004 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:36, 15:11](1053 MB) +PASS -- COMPILE 's2swa_32bit_intel' [45:14, 43:59] ( 1 warnings 1397 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [29:17, 13:36](2004 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:14, 47:28] ( 1 warnings 1444 remarks ) +FAILED: TEST TIMED OUT -- TEST 'cpld_control_gfsv17_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'cpld_control_gfsv17_iau_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_gfsv17_intel' [, ]( MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [43:12, 28:08](1829 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [49:14, 48:07] ( 1 warnings 1441 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [38:50, 24:36](1856 MB) + +PASS -- COMPILE 's2swa_intel' [45:14, 43:26] ( 1 warnings 1416 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [33:21, 17:48](2015 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [36:28, 16:58](2049 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:15, 08:55](1696 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [33:13, 17:28](2072 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:19, 09:03](1719 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [32:10, 16:32](2325 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [33:07, 17:18](2026 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [30:17, 14:20](1979 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [33:25, 17:18](2039 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [28:16, 09:32](1973 MB) + +PASS -- COMPILE 's2sw_intel' [43:14, 41:59] ( 1 warnings 1301 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [27:23, 10:06](1895 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [32:33, 14:47](1941 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:11, 07:02] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [40:24, 27:33](2083 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:11, 05:59] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [19:59, 11:41](1929 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [39:13, 37:16] ( 1019 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:14, 05:31](1965 MB) + +PASS -- COMPILE 's2s_intel' [44:14, 37:58] ( 1 warnings 1042 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [12:47, 10:22](3004 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:47, 03:06](3006 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:47, 01:47](2452 MB) + +PASS -- COMPILE 's2swa_faster_intel' [44:19, 32:45] ( 1 warnings 1632 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [19:22, 16:17](2052 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [58:16, 46:32] ( 1 warnings 1361 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [38:18, 33:16](1936 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [19:18, 16:37](1133 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [41:16, 39:12](1905 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:12, 06:08] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:07, 38:41](1942 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [39:13, 37:43] ( 1 warnings 1125 remarks ) +PASS -- TEST 'control_flake_intel' [06:35, 04:23](651 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [07:07, 04:16](1531 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:08, 04:23](1541 MB) +PASS -- TEST 'control_latlon_intel' [07:05, 04:13](1539 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:13, 04:15](1524 MB) +PASS -- TEST 'control_c48_intel' [23:14, 18:12](1699 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [12:38, 10:13](832 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [23:14, 18:11](1702 MB) +PASS -- TEST 'control_c192_intel' [19:21, 16:15](1687 MB) +PASS -- TEST 'control_c384_intel' [26:14, 23:05](1815 MB) +PASS -- TEST 'control_c384gdas_intel' [21:06, 13:18](1007 MB) +PASS -- TEST 'control_stochy_intel' [04:31, 02:07](604 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:25, 01:13](438 MB) +PASS -- TEST 'control_lndp_intel' [03:31, 02:03](603 MB) +PASS -- TEST 'control_iovr4_intel' [05:34, 03:15](604 MB) +PASS -- TEST 'control_iovr5_intel' [05:34, 03:14](603 MB) +PASS -- TEST 'control_p8_intel' [08:25, 04:56](1820 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [11:33, 03:55](1835 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:17, 04:46](1817 MB) +PASS -- TEST 'control_restart_p8_intel' [04:55, 02:34](1056 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:22, 04:45](1818 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:53, 02:30](1057 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:19, 04:48](1814 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:18, 04:39](1909 MB) +PASS -- TEST 'control_p8_lndp_intel' [11:10, 08:35](1829 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [12:20, 05:12](1891 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:22, 04:02](1846 MB) +PASS -- TEST 'merra2_thompson_intel' [07:17, 04:27](1835 MB) +PASS -- TEST 'regional_control_intel' [14:04, 07:09](1036 MB) +PASS -- TEST 'regional_restart_intel' [08:39, 03:51](1027 MB) +PASS -- TEST 'regional_decomp_intel' [11:03, 07:27](1036 MB) +PASS -- TEST 'regional_2threads_intel' [07:03, 04:27](1029 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [10:41, 07:12](1042 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:35, 07:07](1045 MB) + +PASS -- COMPILE 'rrfs_intel' [36:13, 35:04] ( 3 warnings 1101 remarks ) +PASS -- TEST 'rap_control_intel' [12:45, 10:10](990 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [32:15, 27:18](1187 MB) +PASS -- TEST 'rap_decomp_intel' [12:45, 10:39](983 MB) +PASS -- TEST 'rap_2threads_intel' [11:46, 09:41](1071 MB) +PASS -- TEST 'rap_restart_intel' [07:48, 05:10](986 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:46, 10:07](987 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:44, 10:40](978 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:49, 07:29](995 MB) +PASS -- TEST 'hrrr_control_intel' [07:41, 05:09](988 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:39, 05:22](972 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:47, 04:41](1041 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:27, 02:42](910 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:58, 10:04](986 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [15:31, 13:25](1934 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:30, 12:47](1928 MB) + +PASS -- COMPILE 'csawmg_intel' [36:13, 35:03] ( 1099 remarks ) +PASS -- TEST 'control_csawmg_intel' [09:36, 08:03](970 MB) +PASS -- TEST 'control_ras_intel' [06:23, 04:19](664 MB) + +PASS -- COMPILE 'wam_intel' [37:13, 35:38] ( 1003 remarks ) +PASS -- TEST 'control_wam_intel' [16:52, 14:23](1616 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [39:13, 37:29] ( 1303 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:01, 03:38](1833 MB) +PASS -- TEST 'regional_control_faster_intel' [08:42, 06:29](1034 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 08:43] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:44, 02:41](1567 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:49, 02:40](1557 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:26, 03:45](771 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:26, 03:23](777 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:40, 05:23](1083 MB) +PASS -- TEST 'control_ras_debug_intel' [05:26, 03:25](802 MB) +PASS -- TEST 'control_diag_debug_intel' [05:47, 03:19](1638 MB) +PASS -- TEST 'control_debug_p8_intel' [05:47, 03:14](1855 MB) +PASS -- TEST 'regional_debug_intel' [24:46, 22:01](1074 MB) +PASS -- TEST 'rap_control_debug_intel' [07:28, 06:05](1166 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:27, 05:59](1155 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:28, 06:09](1164 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:27, 06:06](1168 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:27, 06:07](1184 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:35, 06:22](1248 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:34, 06:12](1165 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:24, 06:15](1168 MB) +PASS -- TEST 'rap_lndp_debug_intel' [09:28, 06:09](1168 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [09:26, 06:05](1161 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:24, 05:59](1158 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:25, 06:09](1166 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:27, 09:57](1163 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:26, 05:59](1159 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:26, 06:04](1171 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:23, 06:06](1159 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:44, 10:34](1165 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 05:03] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:51, 16:39](1642 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:13, 30:53] ( 3 warnings 1033 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:03, 05:06](1060 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [13:44, 08:09](908 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:43, 04:16](867 MB) +FAILED: TEST TIMED OUT -- TEST 'rap_2threads_dyn32_phy32_intel' [, ]( MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:39, 04:00](906 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:43, 04:31](850 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:44, 06:13](899 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:27, 02:18](847 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [34:12, 32:20] ( 3 warnings 1207 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:48, 02:39](1101 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:40, 01:13](1047 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:41, 01:28](1011 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [33:12, 31:29] ( 3 warnings 1053 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:48, 05:25](900 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:12] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:24, 06:00](1036 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:28, 08:14](1043 MB) +PASS -- TEST 'conus13km_debug_intel' [19:56, 17:36](1152 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [19:56, 17:39](857 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:50, 10:13](1100 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:51, 17:43](1215 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 05:06] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:26, 06:07](1096 MB) + +PASS -- COMPILE 'hafsw_intel' [41:13, 39:59] ( 1 warnings 1435 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [17:20, 06:47](718 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [15:36, 06:09](1077 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [25:38, 08:49](760 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [26:31, 15:38](783 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [29:50, 19:07](802 MB) +PASS -- TEST 'gnv1_nested_intel' [27:46, 06:30](1665 MB) + +PASS -- COMPILE 'hafs_all_intel' [38:13, 36:28] ( 1281 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [25:19, 08:22](750 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [25:17, 08:22](736 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:07] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:24, 03:35](1067 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:23, 02:12](1024 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:24, 03:29](937 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:24, 03:32](933 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:24, 03:33](937 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:24, 03:34](1069 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:24, 03:35](1087 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:24, 03:29](937 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:13, 07:35](902 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:13, 07:33](853 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:20, 03:34](1078 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:24, 05:01](2418 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:24, 05:05](2372 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:20] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:21, 08:06](1026 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:17] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:19, 03:31](1077 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:42] ( 68 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:36, 01:06](241 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:29, 00:57](262 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:39](263 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [38:14, 36:28] ( 1024 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [11:10, 04:47](1895 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [37:15, 36:03] ( 1 warnings 1029 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [16:14, 10:29](1913 MB) + +PASS -- COMPILE 'atml_intel' [39:14, 37:54] ( 8 warnings 1174 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:02, 05:49](1845 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:02, 05:48](1852 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:45, 03:02](1064 MB) + +PASS -- COMPILE 'atml_debug_intel' [20:12, 06:34] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:04, 07:13](1871 MB) + +PASS -- COMPILE 'atmw_intel' [50:16, 37:05] ( 1277 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:59, 02:28](1853 MB) + +PASS -- COMPILE 'atmaero_intel' [41:13, 35:49] ( 1107 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [12:03, 05:19](1879 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:58, 06:22](1693 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:48, 06:29](1725 MB) + +PASS -- COMPILE 'atm_fbh_intel' [37:13, 31:30] ( 3 warnings 1004 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:35, 15:14](1059 MB) SYNOPSIS: -Starting Date/Time: 20241204 13:58:56 -Ending Date/Time: 20241204 18:19:10 -Total Time: 04h:20m:47s +Starting Date/Time: 20241209 03:48:21 +Ending Date/Time: 20241209 08:21:39 +Total Time: 04h:33m:47s Compiles Completed: 37/37 -Tests Completed: 165/166 +Tests Completed: 162/166 Failed Tests: -* TEST control_decomp_p8_intel: FAILED: TEST TIMED OUT --- LOG: /lfs5/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_2769968/control_decomp_p8_intel/err +* TEST cpld_control_gfsv17_intel: FAILED: TEST TIMED OUT +-- LOG: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1163981/cpld_control_gfsv17_intel/err +* TEST cpld_control_gfsv17_iau_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST cpld_restart_gfsv17_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST rap_2threads_dyn32_phy32_intel: FAILED: TEST TIMED OUT +-- LOG: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1163981/rap_2threads_dyn32_phy32_intel/err NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -306,20 +313,20 @@ Result: FAILURE ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -1e6fc62a38e1b61538e203a7f297583333a18d2a +7f91b3de985a4799ef7f11450059958002f6aa8c 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) - 513f8d153924e18ae0f91f5440195d15210a489e CICE-interface/CICE (CICE6.0.0-391-g513f8d1) + 6c497bdfce0add89af9df9ad4be4a6a1bdf48494 CICE-interface/CICE (remotes/origin/restart_fh) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) + 3d3d28c120a1ad343f91e0e14dd38cd0cde6ae96 CMEPS-interface/CMEPS (remotes/origin/restart_fh) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 7e7719927a80104d1bb4badf790e509f1e4d39b8 FV3 (remotes/origin/rrfsv1-to-ufs/dev4) - f28be0e882fe53886d23076f56908588eac676c2 FV3/atmos_cubed_sphere (remotes/origin/rrfsv1-to-ufs/dev4) + 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) + 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - c2fb52eacb4e0402b2c307241c0c3acb0ea81b1c FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5524-gc2fb52ea) + dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -328,11 +335,11 @@ Submodule hashes used in testing: 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) + e2f6c128f939faec4efa3ce88f3f9025804fb3ae MOM6-interface/MOM6 (remotes/origin/restart_fh) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 615236be21904e180c12c4babfde89fdb448a2cf WW3 (remotes/origin/bug/addPIOswitch) + bdf039138204122991cea42729ee44c17ae7dd49 WW3 (6.07.1-353-gbdf03913) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -343,24 +350,28 @@ 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-20241203 -COMPARISON DIRECTORY: /lfs5/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_774669 +BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20241206 +COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1996816 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic +* (-a) - HPC PROJECT ACCOUNT: h-nems +* (-b) - NEW BASELINES FROM FILE: test_changes.list * (-e) - USE ECFLOW -PASS -- COMPILE 'atm_dyn32_intel' [39:14, 38:08] ( 1 warnings 1125 remarks ) -PASS -- TEST 'control_p8_intel' [07:10, 04:46](1820 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:04, 04:48](1827 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:04, 04:30](1915 MB) +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [50:15, 48:57] ( 1 warnings 1444 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [25:25, 22:25](1887 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:23, 24:02](2028 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [16:18, 09:37](1142 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:13, 30:50] ( 3 warnings 1033 remarks ) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:50, 07:55](952 MB) SYNOPSIS: -Starting Date/Time: 20241204 23:54:50 -Ending Date/Time: 20241205 00:42:28 -Total Time: 00h:47m:47s -Compiles Completed: 1/1 -Tests Completed: 3/3 +Starting Date/Time: 20241209 20:07:56 +Ending Date/Time: 20241209 21:51:21 +Total Time: 01h:43m:40s +Compiles Completed: 2/2 +Tests Completed: 4/4 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 24d6c3c46a..cff8004775 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,20 +1,20 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -1e6fc62a38e1b61538e203a7f297583333a18d2a +7f91b3de985a4799ef7f11450059958002f6aa8c 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) - 513f8d153924e18ae0f91f5440195d15210a489e CICE-interface/CICE (CICE6.0.0-391-g513f8d1) + 6c497bdfce0add89af9df9ad4be4a6a1bdf48494 CICE-interface/CICE (remotes/origin/restart_fh) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) + 3d3d28c120a1ad343f91e0e14dd38cd0cde6ae96 CMEPS-interface/CMEPS (remotes/origin/restart_fh) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 7e7719927a80104d1bb4badf790e509f1e4d39b8 FV3 (remotes/origin/rrfsv1-to-ufs/dev4) - f28be0e882fe53886d23076f56908588eac676c2 FV3/atmos_cubed_sphere (remotes/origin/rrfsv1-to-ufs/dev4) + 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) + 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - c2fb52eacb4e0402b2c307241c0c3acb0ea81b1c FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5524-gc2fb52ea) + dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -23,11 +23,11 @@ Submodule hashes used in testing: 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) + e2f6c128f939faec4efa3ce88f3f9025804fb3ae MOM6-interface/MOM6 (remotes/origin/restart_fh) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 615236be21904e180c12c4babfde89fdb448a2cf WW3 (remotes/origin/bug/addPIOswitch) + bdf039138204122991cea42729ee44c17ae7dd49 WW3 (6.07.1-353-gbdf03913) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,300 +38,382 @@ 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-20241203 -COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_4130267 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241206 +COMPARISON DIRECTORY: /work2/noaa/epic/nandoam/stmp/orion/nandoam/FV3_RT/rt_1671569 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [18:11, 16:23] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [03:03, 27:51](2092 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 19:46] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [16:54, 21:54](1953 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [53:22, 23:03](2135 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [37:26, 08:46](1231 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:56, 25:59](1872 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 19:26] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [15:53, 21:30](1937 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:10, 08:28] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [33:46, 30:49](1925 MB) - -PASS -- COMPILE 's2swa_intel' [18:11, 16:39] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [04:04, 27:34](2140 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [03:00, 27:46](2145 MB) -PASS -- TEST 'cpld_restart_p8_intel' [53:48, 14:27](1805 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [02:53, 27:17](2167 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [53:53, 14:26](1697 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [56:50, 25:20](2470 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [02:53, 27:24](2124 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [54:50, 23:29](2041 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [04:09, 27:39](2142 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [54:39, 22:19](2716 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [39:09, 09:16](2712 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [21:42, 20:00](3745 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [40:48, 11:04](3509 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [43:46, 08:02](2080 MB) - -PASS -- COMPILE 's2sw_intel' [17:11, 15:11] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [00:23, 27:21](1966 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [44:38, 11:44](2055 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:10, 08:27] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [25:25, 23:00](2174 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:10, 07:27] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:05, 10:15](1997 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:11, 15:20] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [37:38, 04:49](2023 MB) - -PASS -- COMPILE 's2s_intel' [17:11, 15:46] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [41:12, 08:37](3027 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [35:11, 02:59](3021 MB) -PASS -- TEST 'cpld_restart_c48_intel' [26:09, 01:55](2470 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:13, 17:16] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [15:33, 27:48](2143 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:13, 18:32] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:18, 29:13](2004 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [37:30, 14:28](1246 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [50:19, 33:44](1926 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 08:08] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [20:21, 34:49](1968 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [25:14, 13:42] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [36:28, 03:45](688 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [36:51, 03:35](1565 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [36:55, 03:37](1570 MB) -PASS -- TEST 'control_latlon_intel' [36:47, 03:34](1570 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [36:58, 03:36](1569 MB) -PASS -- TEST 'control_c48_intel' [47:57, 14:43](1705 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [16:33, 08:14](837 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [47:01, 14:42](1710 MB) -PASS -- TEST 'control_c192_intel' [34:04, 13:06](1731 MB) -PASS -- TEST 'control_c384_intel' [08:07, 24:34](1989 MB) -PASS -- TEST 'control_c384gdas_intel' [53:40, 09:56](1322 MB) -PASS -- TEST 'control_stochy_intel' [54:31, 01:50](637 MB) -PASS -- TEST 'control_stochy_restart_intel' [12:48, 01:03](473 MB) -PASS -- TEST 'control_lndp_intel' [53:26, 01:44](644 MB) -PASS -- TEST 'control_iovr4_intel' [43:35, 02:44](643 MB) -PASS -- TEST 'control_iovr5_intel' [43:31, 02:48](640 MB) -PASS -- TEST 'control_p8_intel' [43:01, 04:13](1862 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [41:16, 03:30](1872 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [41:36, 04:06](1868 MB) -PASS -- TEST 'control_restart_p8_intel' [20:20, 02:19](1085 MB) -PASS -- TEST 'control_noqr_p8_intel' [41:25, 04:02](1867 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [23:43, 02:18](1109 MB) -PASS -- TEST 'control_decomp_p8_intel' [41:22, 04:10](1852 MB) -PASS -- TEST 'control_2threads_p8_intel' [41:18, 04:23](1951 MB) -PASS -- TEST 'control_p8_lndp_intel' [43:56, 07:19](1860 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [44:40, 04:56](1940 MB) -PASS -- TEST 'control_p8_mynn_intel' [43:31, 03:31](1886 MB) -PASS -- TEST 'merra2_thompson_intel' [43:41, 03:53](1876 MB) -PASS -- TEST 'regional_control_intel' [36:45, 06:30](1111 MB) -PASS -- TEST 'regional_restart_intel' [12:41, 03:33](1087 MB) -PASS -- TEST 'regional_decomp_intel' [30:50, 06:54](1102 MB) -PASS -- TEST 'regional_2threads_intel' [26:52, 04:47](1095 MB) -PASS -- TEST 'regional_noquilt_intel' [43:51, 09:43](1411 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [36:47, 06:33](1113 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [31:40, 06:32](1106 MB) -PASS -- TEST 'regional_wofs_intel' [31:37, 07:59](1893 MB) - -PASS -- COMPILE 'rrfs_intel' [30:15, 13:02] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [24:06, 08:28](1058 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [17:53, 05:12](1269 MB) -PASS -- TEST 'rap_decomp_intel' [20:07, 08:45](1012 MB) -PASS -- TEST 'rap_2threads_intel' [20:27, 08:38](1168 MB) -PASS -- TEST 'rap_restart_intel' [09:39, 04:23](1034 MB) -PASS -- TEST 'rap_sfcdiff_intel' [21:08, 08:22](1053 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [19:56, 08:42](1014 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:33, 06:20](1067 MB) -PASS -- TEST 'hrrr_control_intel' [16:02, 04:21](1022 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [15:21, 04:27](1012 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [23:21, 04:13](1089 MB) -PASS -- TEST 'hrrr_control_restart_intel' [07:44, 02:21](941 MB) -PASS -- TEST 'rrfs_v1beta_intel' [27:22, 08:23](1054 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [27:34, 09:53](1977 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [26:32, 09:32](2018 MB) - -PASS -- COMPILE 'csawmg_intel' [40:15, 12:15] -PASS -- TEST 'control_csawmg_intel' [22:44, 06:37](1015 MB) -PASS -- TEST 'control_ras_intel' [19:29, 03:30](717 MB) - -PASS -- COMPILE 'wam_intel' [43:14, 12:18] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [27:55, 12:50](1651 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [44:14, 13:23] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [16:35, 03:16](1876 MB) -PASS -- TEST 'regional_control_faster_intel' [15:38, 06:16](1102 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [40:12, 09:42] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [10:44, 02:19](1599 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:39, 02:18](1602 MB) -PASS -- TEST 'control_stochy_debug_intel' [10:21, 03:03](814 MB) -PASS -- TEST 'control_lndp_debug_intel' [09:22, 02:43](812 MB) -PASS -- TEST 'control_csawmg_debug_intel' [10:40, 04:17](1126 MB) -PASS -- TEST 'control_ras_debug_intel' [08:26, 02:48](825 MB) -PASS -- TEST 'control_diag_debug_intel' [08:47, 02:50](1673 MB) -PASS -- TEST 'control_debug_p8_intel' [07:47, 02:48](1892 MB) -PASS -- TEST 'regional_debug_intel' [21:46, 17:07](1101 MB) -PASS -- TEST 'rap_control_debug_intel' [09:26, 05:06](1196 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:33, 04:55](1200 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:26, 05:01](1202 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:26, 05:06](1198 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 05:03](1201 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:29, 05:12](1279 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:21, 05:14](1202 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:20, 05:06](1204 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:25, 05:07](1200 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:24, 04:51](1204 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:23, 04:51](1195 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:23, 05:05](1203 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:23, 08:11](1195 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:22, 04:57](1198 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:26, 05:04](1202 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:23, 05:01](1204 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:23, 08:39](1203 MB) - -PASS -- COMPILE 'wam_debug_intel' [45:15, 05:57] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:53, 13:33](1683 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [51:16, 12:14] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:03, 04:56](1149 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:14, 07:13](1004 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:44, 03:47](928 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:51, 07:28](1082 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:05, 03:45](940 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:03, 03:56](893 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [14:34, 05:27](971 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [28:41, 02:04](873 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [49:13, 12:17] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:53, 02:34](1163 MB) -PASS -- TEST 'conus13km_2threads_intel' [23:53, 01:12](1113 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [22:49, 01:30](1053 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [48:14, 12:37] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:42, 04:35](963 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [34:13, 06:03] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 04:50](1079 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:22, 05:11](1075 MB) -PASS -- TEST 'conus13km_debug_intel' [19:43, 14:07](1227 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [18:49, 13:48](937 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [21:55, 08:05](1165 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [27:49, 14:09](1292 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [35:13, 06:45] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [13:26, 05:01](1135 MB) - -PASS -- COMPILE 'hafsw_intel' [33:13, 14:48] ( 1 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:18, 05:54](738 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [14:35, 06:25](1128 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [21:30, 07:31](817 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [41:28, 27:55](850 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [53:39, 34:35](876 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [31:05, 07:13](495 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [32:35, 08:30](507 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [26:56, 03:28](372 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:24, 09:34](478 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [31:57, 04:42](524 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [26:02, 04:29](524 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:14, 05:40](568 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [32:33, 01:43](404 MB) -PASS -- TEST 'gnv1_nested_intel' [31:23, 04:22](1719 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [23:12, 06:40] ( 1462 warnings 1490 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [21:01, 13:30](587 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [34:13, 14:23] ( 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [25:11, 15:14](634 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:24, 15:12](717 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [44:14, 15:05] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [21:34, 11:20](701 MB) - -PASS -- COMPILE 'hafs_all_intel' [44:14, 14:06] ( 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [20:26, 07:33](806 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [26:25, 07:33](792 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [32:06, 16:25](1203 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [50:13, 08:22] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [20:23, 03:01](1151 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [56:27, 01:58](1095 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [24:20, 02:58](1016 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [22:20, 02:59](1022 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [27:22, 02:57](1012 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [29:26, 02:59](1151 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [29:22, 02:59](1159 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [31:21, 02:53](1024 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:28, 06:35](1017 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:23, 06:30](1003 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [27:22, 02:59](1143 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [16:20, 04:21](2398 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [47:24, 04:25](2451 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [44:14, 05:00] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [48:24, 06:34](1077 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [46:14, 07:51] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [58:22, 02:59](1157 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [38:13, 01:41] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [55:37, 01:03](252 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [54:32, 00:58](325 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:27, 00:37](320 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [37:13, 01:39] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [52:41, 00:37](556 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:30, 00:21](444 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [54:13, 14:06] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [56:25, 04:11](1968 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [45:13, 13:03] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [00:09, 08:36](1976 MB) - -PASS -- COMPILE 'atml_intel' [46:13, 14:08] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [55:41, 04:56](1856 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [55:38, 04:54](1863 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [24:06, 02:50](1070 MB) - -PASS -- COMPILE 'atml_debug_intel' [29:10, 07:47] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [51:38, 06:00](1890 MB) - -PASS -- COMPILE 'atmw_intel' [30:12, 13:45] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [47:18, 02:21](1900 MB) - -PASS -- COMPILE 'atmaero_intel' [24:11, 12:58] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [48:31, 04:39](1980 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [45:28, 05:26](1757 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [45:13, 05:33](1763 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [17:11, 06:34] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [55:57, 21:06](4500 MB) - -PASS -- COMPILE 'atm_fbh_intel' [24:12, 12:19] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [47:35, 13:51](1114 MB) - -PASS -- COMPILE 'hafsw_intelllvm' [23:11, 07:43] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [41:12, 07:58](573 MB) - -PASS -- COMPILE 'hafsw_debug_intelllvm' [19:10, 04:32] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [37:06, 19:57](567 MB) +FAILED: UNABLE TO FINISH COMPILE -- COMPILE 's2swa_32bit_intel' [, ] +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'cpld_control_p8_mixedmode_intel' [, ]( MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:12, 21:16] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [49:43, 25:09](1954 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:18, 25:07](2136 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [14:20, 10:24](1243 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [49:40, 29:14](1871 MB) + +FAILED: UNABLE TO FINISH COMPILE -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [, ] +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'cpld_control_sfs_intel' [, ]( MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:14, 08:30] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [52:56, 32:08](1927 MB) + +PASS -- COMPILE 's2swa_intel' [18:13, 17:00] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [47:54, 29:54](2137 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [49:44, 28:41](2140 MB) +PASS -- TEST 'cpld_restart_p8_intel' [17:41, 14:15](1806 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [44:45, 28:58](2155 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [20:50, 15:31](1696 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [40:39, 26:46](2441 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [46:40, 29:04](2117 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [36:37, 24:37](2033 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [44:46, 28:56](2140 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [30:28, 17:23](2712 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [28:19, 10:10](2711 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [03:44, 21:40](3707 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [27:33, 13:25](3542 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [21:32, 09:07](2073 MB) + +PASS -- COMPILE 's2sw_intel' [18:13, 16:21] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [39:23, 27:56](1969 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [24:31, 12:51](2055 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:12, 08:44] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [27:31, 24:04](2171 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:13, 08:24] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [31:16, 11:19](1989 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:13, 15:27] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [19:30, 05:59](2022 MB) + +FAILED: UNABLE TO FINISH COMPILE -- COMPILE 's2s_intel' [, ] +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'cpld_control_c48_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'cpld_warmstart_c48_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'cpld_restart_c48_intel' [, ]( MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:11, 17:11] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [54:47, 29:37](2147 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [19:11, 18:02] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [52:28, 30:32](2006 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [20:43, 15:53](1259 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [38:23, 35:03](1923 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:11, 08:14] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [45:26, 35:59](1970 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:14, 13:44] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [37:28, 03:47](691 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [39:49, 03:36](1575 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [39:56, 03:41](1578 MB) +PASS -- TEST 'control_latlon_intel' [37:45, 03:39](1574 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [41:55, 03:40](1572 MB) +PASS -- TEST 'control_c48_intel' [33:53, 14:43](1703 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [16:34, 08:09](827 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [38:55, 14:48](1708 MB) +PASS -- TEST 'control_c192_intel' [50:07, 13:12](1739 MB) +PASS -- TEST 'control_c384_intel' [45:54, 16:47](1979 MB) +PASS -- TEST 'control_c384gdas_intel' [39:53, 11:03](1336 MB) +PASS -- TEST 'control_stochy_intel' [28:27, 01:51](639 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:43, 01:05](472 MB) +PASS -- TEST 'control_lndp_intel' [26:22, 01:45](641 MB) +PASS -- TEST 'control_iovr4_intel' [26:25, 02:45](643 MB) +PASS -- TEST 'control_iovr5_intel' [25:24, 02:45](632 MB) +PASS -- TEST 'control_p8_intel' [16:03, 05:15](1860 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [15:12, 04:33](1873 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [15:20, 04:54](1865 MB) +PASS -- TEST 'control_restart_p8_intel' [05:30, 02:17](1088 MB) +PASS -- TEST 'control_noqr_p8_intel' [13:12, 04:59](1850 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [07:37, 03:24](1121 MB) +PASS -- TEST 'control_decomp_p8_intel' [12:04, 05:10](1849 MB) +PASS -- TEST 'control_2threads_p8_intel' [11:58, 05:27](1942 MB) +PASS -- TEST 'control_p8_lndp_intel' [14:38, 08:27](1862 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [11:30, 06:05](1935 MB) +PASS -- TEST 'control_p8_mynn_intel' [10:27, 04:29](1879 MB) +PASS -- TEST 'merra2_thompson_intel' [10:34, 04:54](1878 MB) +PASS -- TEST 'regional_control_intel' [12:39, 07:45](1106 MB) +PASS -- TEST 'regional_restart_intel' [05:43, 03:30](1087 MB) +PASS -- TEST 'regional_decomp_intel' [13:36, 08:09](1101 MB) +PASS -- TEST 'regional_2threads_intel' [09:37, 06:00](1094 MB) +PASS -- TEST 'regional_noquilt_intel' [10:43, 07:35](1411 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:42, 06:27](1107 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:36, 07:38](1107 MB) +PASS -- TEST 'regional_wofs_intel' [10:35, 08:04](1891 MB) + +PASS -- COMPILE 'rrfs_intel' [15:11, 13:14] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:21, 08:28](1059 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:57, 05:09](1265 MB) +PASS -- TEST 'rap_decomp_intel' [11:20, 08:44](1012 MB) +PASS -- TEST 'rap_2threads_intel' [11:00, 08:37](1171 MB) +PASS -- TEST 'rap_restart_intel' [07:30, 04:23](1030 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:05, 08:24](1055 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:01, 08:43](1017 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:35, 06:17](1072 MB) +PASS -- TEST 'hrrr_control_intel' [08:19, 04:23](1021 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:59, 04:27](1019 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:55, 04:13](1080 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:51, 02:22](945 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:25, 08:21](1048 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:27, 09:58](1977 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:23, 09:31](2014 MB) + +PASS -- COMPILE 'csawmg_intel' [14:11, 12:46] +PASS -- TEST 'control_csawmg_intel' [08:43, 06:47](1013 MB) +PASS -- TEST 'control_ras_intel' [05:27, 03:29](715 MB) + +PASS -- COMPILE 'wam_intel' [14:11, 12:32] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:54, 12:51](1654 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [16:11, 13:08] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:28, 04:25](1871 MB) +PASS -- TEST 'regional_control_faster_intel' [10:36, 07:17](1112 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:11, 09:43] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:44, 02:19](1604 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:49, 02:12](1605 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:26, 03:02](812 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:23, 02:44](809 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:39, 04:51](1121 MB) +PASS -- TEST 'control_ras_debug_intel' [04:22, 02:47](816 MB) +PASS -- TEST 'control_diag_debug_intel' [05:46, 02:46](1668 MB) +PASS -- TEST 'control_debug_p8_intel' [06:46, 03:32](1897 MB) +PASS -- TEST 'regional_debug_intel' [20:42, 18:22](1076 MB) +PASS -- TEST 'rap_control_debug_intel' [06:26, 04:54](1203 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:26, 04:48](1202 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:24, 04:58](1192 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:22, 04:58](1190 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:24, 04:59](1198 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:35, 05:12](1274 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:25, 04:59](1193 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:22, 05:01](1191 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:23, 04:59](1196 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 04:51](1197 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:24, 04:58](1201 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 04:58](1197 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:23, 08:07](1195 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:26, 04:48](1201 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 04:54](1205 MB) +PASS -- TEST 'rap_flake_debug_intel' [10:24, 05:02](1198 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:27, 08:29](1200 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:11, 06:15] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:47, 13:21](1676 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [24:10, 13:14] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:55, 05:05](1138 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [13:17, 07:13](1001 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:37, 03:48](927 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [13:09, 07:29](1086 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [11:12, 03:44](937 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [11:27, 03:57](889 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:42, 05:30](976 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [10:41, 02:07](869 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:10, 12:21] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [09:55, 02:35](1159 MB) +PASS -- TEST 'conus13km_2threads_intel' [07:46, 01:18](1114 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [07:43, 01:31](1061 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [24:10, 13:14] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [10:44, 04:35](972 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [20:13, 06:16] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [11:27, 04:49](1080 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [12:27, 04:52](1077 MB) +PASS -- TEST 'conus13km_debug_intel' [22:56, 13:50](1254 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [24:54, 14:30](922 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [16:44, 08:05](1164 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:44, 13:44](1298 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [27:11, 06:26] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [14:26, 04:50](1136 MB) + +PASS -- COMPILE 'hafsw_intel' [31:11, 15:04] ( 1 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [15:19, 06:30](738 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [15:34, 07:03](1120 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [21:28, 08:14](814 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [42:19, 29:16](846 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [48:31, 35:12](868 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [21:16, 07:55](498 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [22:37, 09:45](506 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [15:00, 03:48](374 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [21:55, 11:06](470 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [14:59, 05:27](525 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:59, 05:14](522 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [12:15, 06:26](568 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:33, 01:47](404 MB) +PASS -- TEST 'gnv1_nested_intel' [11:32, 04:33](1715 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [41:13, 07:35] ( 1462 warnings 1490 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:13, 13:43](581 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [48:12, 14:55] ( 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [20:06, 15:30](636 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [20:05, 15:54](718 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [41:12, 15:32] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:53, 11:26](713 MB) + +PASS -- COMPILE 'hafs_all_intel' [40:11, 14:57] ( 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:20, 08:04](805 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:19, 08:06](789 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:00, 16:29](1200 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [31:11, 07:52] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:59](1143 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:21, 01:55](1107 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:51](1021 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:56](1007 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:57](1015 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:59](1131 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 02:58](1158 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:52](1014 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:16, 06:43](1017 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:10, 06:33](1005 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 02:58](1149 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 04:19](2398 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:20, 04:21](2398 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [24:11, 05:21] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:19, 06:32](1080 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [31:12, 09:08] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [06:18, 02:59](1155 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [23:12, 01:32] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:32, 01:24](255 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:25, 01:12](324 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:45](330 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [15:11, 01:48] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [03:30, 00:42](564 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:34, 00:23](445 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [24:11, 14:36] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:10, 05:22](1968 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:10, 12:59] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [14:11, 10:15](1971 MB) + +PASS -- COMPILE 'atml_intel' [15:10, 14:07] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:41, 08:24](1863 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [12:39, 09:19](1867 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:13, 05:51](1058 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:10, 07:25] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:35, 07:41](1895 MB) + +PASS -- COMPILE 'atmw_intel' [15:11, 13:48] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:17, 02:12](1894 MB) + +PASS -- COMPILE 'atmaero_intel' [15:10, 13:22] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:10, 04:54](1976 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:13, 05:25](1763 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:08, 05:26](1756 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:10, 06:15] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [24:13, 21:10](4495 MB) + +PASS -- COMPILE 'atm_fbh_intel' [14:10, 12:36] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:30, 13:57](1116 MB) + +PASS -- COMPILE 'hafsw_intelllvm' [10:10, 08:11] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [11:21, 08:52](564 MB) + +PASS -- COMPILE 'hafsw_debug_intelllvm' [06:10, 04:58] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [23:09, 20:04](561 MB) SYNOPSIS: -Starting Date/Time: 20241204 08:00:22 -Ending Date/Time: 20241204 12:30:01 -Total Time: 04h:30m:22s -Compiles Completed: 45/45 -Tests Completed: 191/191 +Starting Date/Time: 20241208 21:46:38 +Ending Date/Time: 20241209 00:12:19 +Total Time: 02h:26m:09s +Compiles Completed: 42/45 +Tests Completed: 186/191 +Failed Compiles: +* COMPILE s2swa_32bit_intel: FAILED: UNABLE TO FINISH COMPILE +-- LOG: /work/noaa/epic/nandoam/regression-testing/wm/orion/2419/ufs-weather-model/tests/logs/log_orion/compile_s2swa_32bit_intel.log +* COMPILE s2swa_32bit_pdlib_sfs_intel: FAILED: UNABLE TO FINISH COMPILE +-- LOG: /work/noaa/epic/nandoam/regression-testing/wm/orion/2419/ufs-weather-model/tests/logs/log_orion/compile_s2swa_32bit_pdlib_sfs_intel.log +* COMPILE s2s_intel: FAILED: UNABLE TO FINISH COMPILE +-- LOG: /work/noaa/epic/nandoam/regression-testing/wm/orion/2419/ufs-weather-model/tests/logs/log_orion/compile_s2s_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: +7f91b3de985a4799ef7f11450059958002f6aa8c + +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) + 6c497bdfce0add89af9df9ad4be4a6a1bdf48494 CICE-interface/CICE (remotes/origin/restart_fh) + 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) + 3d3d28c120a1ad343f91e0e14dd38cd0cde6ae96 CMEPS-interface/CMEPS (remotes/origin/restart_fh) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) + 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) + 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) + dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) +-179cae1dd84401cf25d250bd9102e66560a9d328 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) + e2f6c128f939faec4efa3ce88f3f9025804fb3ae MOM6-interface/MOM6 (remotes/origin/restart_fh) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) + bdf039138204122991cea42729ee44c17ae7dd49 WW3 (6.07.1-353-gbdf03913) + 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-20241206 +COMPARISON DIRECTORY: /work2/noaa/epic/nandoam/stmp/orion/nandoam/FV3_RT/rt_1572727 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [33:12, 16:48] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [59:38, 28:38](2077 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:12, 19:34] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [02:06, 24:21](1945 MB) + +PASS -- COMPILE 's2s_intel' [31:12, 14:44] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [35:07, 09:17](3041 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [30:06, 04:13](3022 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:57, 01:38](2483 MB) + +SYNOPSIS: +Starting Date/Time: 20241209 14:17:43 +Ending Date/Time: 20241209 15:51:53 +Total Time: 01h:34m:30s +Compiles Completed: 3/3 +Tests Completed: 5/5 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 4eab3b0441..09d219daef 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,20 +1,20 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -8e98c5cfbea95cd44f47e48440df1d936b16336b +7f91b3de985a4799ef7f11450059958002f6aa8c 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) - 513f8d153924e18ae0f91f5440195d15210a489e CICE-interface/CICE (CICE6.0.0-391-g513f8d1) + 6c497bdfce0add89af9df9ad4be4a6a1bdf48494 CICE-interface/CICE (remotes/origin/restart_fh) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) + 3d3d28c120a1ad343f91e0e14dd38cd0cde6ae96 CMEPS-interface/CMEPS (remotes/origin/restart_fh) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 7e7719927a80104d1bb4badf790e509f1e4d39b8 FV3 (remotes/origin/rrfsv1-to-ufs/dev4) - f28be0e882fe53886d23076f56908588eac676c2 FV3/atmos_cubed_sphere (remotes/origin/rrfsv1-to-ufs/dev4) + 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) + 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - c2fb52eacb4e0402b2c307241c0c3acb0ea81b1c FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5524-gc2fb52ea) + dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -23,11 +23,11 @@ Submodule hashes used in testing: 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) + e2f6c128f939faec4efa3ce88f3f9025804fb3ae MOM6-interface/MOM6 (remotes/origin/restart_fh) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 615236be21904e180c12c4babfde89fdb448a2cf WW3 (remotes/origin/bug/addPIOswitch) + bdf039138204122991cea42729ee44c17ae7dd49 WW3 (6.07.1-353-gbdf03913) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,242 +38,311 @@ 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-20241203 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182792 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241206 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_140731 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:29, 11:14] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [41:07, 02:58](3085 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:31, 11:44] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [41:05, 03:23](1819 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:59, 02:48](1831 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [20:53, 02:43](965 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [41:06, 02:57](1783 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:31, 11:57] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [41:05, 01:45](1815 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:22, 05:12] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [48:15, 03:06](1829 MB) - -PASS -- COMPILE 's2swa_intel' [14:31, 11:20] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [41:05, 02:22](3118 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [41:05, 02:23](3116 MB) -PASS -- TEST 'cpld_restart_p8_intel' [23:27, 02:05](3034 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [41:05, 02:21](3138 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [23:27, 02:00](3065 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [41:05, 02:36](3359 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [41:05, 02:37](3114 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [41:06, 03:10](3057 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [41:05, 02:29](3118 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [41:14, 05:38](4107 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [12:42, 05:19](4254 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [41:05, 02:23](3093 MB) - -PASS -- COMPILE 's2sw_intel' [13:28, 11:03] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [42:08, 02:43](1820 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [42:08, 02:36](1877 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:26, 10:26] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [43:10, 02:50](1872 MB) - -PASS -- COMPILE 's2s_intel' [13:28, 10:11] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [42:07, 02:37](2861 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [42:07, 02:25](2871 MB) -PASS -- TEST 'cpld_restart_c48_intel' [37:07, 02:10](2285 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:35, 16:00] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [37:02, 02:05](3121 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:29, 11:34] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [42:07, 02:36](1825 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:36, 02:36](1003 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [12:36, 02:17](1800 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:06] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [40:54, 01:54](1851 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:25, 09:29] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [29:37, 01:37](570 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [26:39, 02:02](1458 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [26:26, 02:02](1469 MB) -PASS -- TEST 'control_latlon_intel' [26:12, 02:03](1469 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [25:53, 02:16](1466 MB) -PASS -- TEST 'control_c48_intel' [25:51, 02:11](1570 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [25:45, 01:40](691 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [25:22, 02:27](1565 MB) -PASS -- TEST 'control_c192_intel' [25:17, 02:00](1586 MB) -PASS -- TEST 'control_c384_intel' [25:13, 02:10](1878 MB) -PASS -- TEST 'control_c384gdas_intel' [25:11, 03:36](1061 MB) -PASS -- TEST 'control_stochy_intel' [25:06, 01:25](522 MB) -PASS -- TEST 'control_stochy_restart_intel' [21:38, 02:03](330 MB) -PASS -- TEST 'control_lndp_intel' [24:21, 01:30](519 MB) -PASS -- TEST 'control_iovr4_intel' [23:58, 01:34](520 MB) -PASS -- TEST 'control_iovr5_intel' [23:26, 01:43](518 MB) -PASS -- TEST 'control_p8_intel' [23:19, 02:16](1760 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [23:18, 02:48](1753 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [22:57, 02:16](1757 MB) -PASS -- TEST 'control_restart_p8_intel' [16:48, 02:42](912 MB) -PASS -- TEST 'control_noqr_p8_intel' [22:01, 01:58](1756 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [16:04, 02:57](922 MB) -PASS -- TEST 'control_decomp_p8_intel' [21:57, 01:52](1759 MB) -PASS -- TEST 'control_2threads_p8_intel' [20:52, 02:29](1842 MB) -PASS -- TEST 'control_p8_lndp_intel' [20:43, 02:09](1751 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [20:34, 02:56](1812 MB) -PASS -- TEST 'control_p8_mynn_intel' [20:19, 02:49](1770 MB) -PASS -- TEST 'merra2_thompson_intel' [19:59, 02:41](1759 MB) -PASS -- TEST 'regional_control_intel' [19:28, 02:02](875 MB) -PASS -- TEST 'regional_restart_intel' [10:46, 01:20](841 MB) -PASS -- TEST 'regional_decomp_intel' [18:55, 01:19](875 MB) -PASS -- TEST 'regional_2threads_intel' [18:56, 02:15](926 MB) -PASS -- TEST 'regional_noquilt_intel' [18:08, 01:19](1196 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [18:04, 02:21](869 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [16:51, 02:13](875 MB) -PASS -- TEST 'regional_wofs_intel' [16:47, 02:12](1565 MB) - -PASS -- COMPILE 'rrfs_intel' [11:25, 08:52] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [16:41, 02:59](904 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [16:03, 01:59](1060 MB) -PASS -- TEST 'rap_decomp_intel' [15:57, 02:16](908 MB) -PASS -- TEST 'rap_2threads_intel' [15:47, 02:33](985 MB) -PASS -- TEST 'rap_restart_intel' [06:09, 03:10](776 MB) -PASS -- TEST 'rap_sfcdiff_intel' [14:33, 02:45](895 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:50, 02:16](904 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [03:00, 02:29](779 MB) -PASS -- TEST 'hrrr_control_intel' [13:08, 02:27](902 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [12:55, 02:18](901 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [12:49, 02:33](970 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:51, 01:51](732 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:48, 02:26](895 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [12:16, 02:28](1858 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:11, 01:49](1848 MB) - -PASS -- COMPILE 'csawmg_intel' [10:25, 08:03] -PASS -- TEST 'control_csawmg_intel' [31:42, 01:45](860 MB) -PASS -- TEST 'control_ras_intel' [31:42, 02:16](559 MB) - -PASS -- COMPILE 'wam_intel' [10:24, 08:15] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [31:42, 01:44](1549 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:24, 08:26] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [11:49, 02:46](1749 MB) -PASS -- TEST 'regional_control_faster_intel' [11:26, 01:22](868 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:24, 07:29] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [31:40, 02:05](1491 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [31:40, 02:12](1500 MB) -PASS -- TEST 'control_stochy_debug_intel' [31:40, 02:01](695 MB) -PASS -- TEST 'control_lndp_debug_intel' [31:40, 01:19](695 MB) -PASS -- TEST 'control_csawmg_debug_intel' [31:40, 01:47](999 MB) -PASS -- TEST 'control_ras_debug_intel' [31:40, 02:21](703 MB) -PASS -- TEST 'control_diag_debug_intel' [31:40, 01:33](1550 MB) -PASS -- TEST 'control_debug_p8_intel' [30:58, 02:11](1781 MB) -PASS -- TEST 'regional_debug_intel' [11:24, 01:24](880 MB) -PASS -- TEST 'rap_control_debug_intel' [11:17, 01:42](1076 MB) -PASS -- TEST 'hrrr_control_debug_intel' [11:12, 01:52](1071 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [11:03, 01:41](1074 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [10:35, 01:31](1078 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:15, 02:34](1078 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:52, 02:11](1160 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:09, 01:46](1074 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:51, 01:49](1074 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:04, 01:59](1076 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:59, 02:02](1079 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:06, 01:34](1073 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:09, 01:40](1078 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [06:05, 01:21](1073 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:54, 01:45](1069 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:51, 01:34](1077 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:51, 01:40](1077 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [05:23, 02:46](1076 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:20, 04:24] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [34:44, 01:45](1573 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:24, 08:06] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:33, 01:54](929 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [03:38, 02:11](782 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:37, 02:44](778 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [03:26, 02:09](835 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:05, 02:31](827 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [02:47, 02:29](776 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [54:42, 02:48](683 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [56:49, 01:29](664 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:25, 08:00] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:26, 02:05](991 MB) -PASS -- TEST 'conus13km_2threads_intel' [57:36, 01:35](990 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [56:44, 01:46](865 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:24, 08:11] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [01:40, 02:24](806 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:21, 04:29] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [01:23, 01:57](954 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [01:15, 01:58](952 MB) -PASS -- TEST 'conus13km_debug_intel' [00:52, 01:39](1041 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [00:28, 01:36](714 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [00:26, 01:32](1039 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [00:18, 02:18](1107 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:20] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [59:30, 01:21](981 MB) - -PASS -- COMPILE 'hafsw_intel' [12:26, 09:44] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [59:29, 03:05](594 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [59:29, 01:58](956 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [59:26, 02:50](643 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [58:43, 03:10](665 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [58:42, 02:33](692 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [58:23, 02:11](376 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [58:22, 02:37](395 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [58:22, 02:05](290 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [56:31, 03:19](365 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [56:19, 02:08](399 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [55:46, 02:40](399 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [55:35, 02:13](478 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [55:11, 01:46](322 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:21, 04:48] ( 1444 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [54:55, 01:37](500 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:24, 09:33] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [54:36, 01:59](513 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [53:52, 02:01](698 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:25, 09:47] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [53:47, 02:14](703 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:25, 09:09] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [52:51, 02:22](642 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [51:13, 03:00](614 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [49:44, 01:39](878 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:26, 09:52] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [49:40, 01:43](1819 MB) - -PASS -- COMPILE 'atml_intel' [11:26, 09:25] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [07:21, 05:25] ( 866 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [10:24, 08:28] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [43:48, 02:32](3010 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [43:23, 02:07](2897 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [42:22, 02:40](2902 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:21, 04:17] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [42:01, 02:07](4374 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:29, 11:23] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [19:17, 02:30](3085 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:27, 11:58] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:19, 03:30](1802 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [58:09, 02:44](1826 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [58:08, 02:45](977 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:20, 03:07](1789 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:29, 12:09] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:17, 01:32](1800 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:22, 05:17] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:26, 02:45](1834 MB) + +PASS -- COMPILE 's2swa_intel' [13:30, 11:29] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [19:16, 02:00](3115 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:16, 03:15](3117 MB) +PASS -- TEST 'cpld_restart_p8_intel' [00:43, 02:18](3045 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [19:16, 03:13](3138 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [59:19, 02:34](3066 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [19:16, 01:49](3358 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [19:16, 01:54](3106 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [19:17, 02:57](3051 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:16, 02:12](3116 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:25, 05:23](4107 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [41:00, 04:39](4255 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [19:16, 02:03](3099 MB) + +PASS -- COMPILE 's2sw_intel' [12:27, 10:48] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [20:20, 02:33](1832 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_nowave_noaero_p8_intel' [, ]( MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:28, 10:14] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [20:18, 02:25](1872 MB) + +PASS -- COMPILE 's2s_intel' [12:28, 10:17] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [20:17, 02:23](2858 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [20:17, 02:07](2871 MB) +PASS -- TEST 'cpld_restart_c48_intel' [15:16, 02:11](2280 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:31, 16:10] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [15:16, 02:59](3114 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:30, 11:56] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:16, 02:35](1832 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [48:32, 02:12](1004 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [48:13, 02:07](1795 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:21, 05:17] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [18:04, 02:02](1844 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:46] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:43, 02:05](569 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:25, 02:10](1465 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:34, 02:15](1475 MB) +PASS -- TEST 'control_latlon_intel' [02:42, 01:54](1469 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [01:51, 02:03](1466 MB) +PASS -- TEST 'control_c48_intel' [01:16, 02:17](1571 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [01:16, 01:54](692 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [01:09, 02:17](1569 MB) +PASS -- TEST 'control_c192_intel' [00:48, 01:56](1590 MB) +PASS -- TEST 'control_c384_intel' [00:31, 02:39](1881 MB) +PASS -- TEST 'control_c384gdas_intel' [00:11, 02:51](1082 MB) +PASS -- TEST 'control_stochy_intel' [59:19, 02:08](522 MB) +PASS -- TEST 'control_stochy_restart_intel' [47:37, 01:53](378 MB) +PASS -- TEST 'control_lndp_intel' [59:18, 02:11](522 MB) +PASS -- TEST 'control_iovr4_intel' [58:42, 01:53](521 MB) +PASS -- TEST 'control_iovr5_intel' [58:36, 01:44](516 MB) +PASS -- TEST 'control_p8_intel' [58:35, 02:30](1765 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [58:20, 02:16](1746 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [58:20, 02:42](1762 MB) +PASS -- TEST 'control_restart_p8_intel' [44:06, 02:20](912 MB) +PASS -- TEST 'control_noqr_p8_intel' [58:13, 01:52](1753 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [43:59, 02:20](921 MB) +PASS -- TEST 'control_decomp_p8_intel' [58:13, 01:45](1759 MB) +PASS -- TEST 'control_2threads_p8_intel' [57:35, 02:29](1836 MB) +PASS -- TEST 'control_p8_lndp_intel' [57:02, 02:23](1757 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [56:44, 02:25](1815 MB) +PASS -- TEST 'control_p8_mynn_intel' [56:03, 02:46](1768 MB) +PASS -- TEST 'merra2_thompson_intel' [56:00, 02:47](1760 MB) +PASS -- TEST 'regional_control_intel' [54:04, 02:08](871 MB) +PASS -- TEST 'regional_restart_intel' [40:09, 02:07](852 MB) +PASS -- TEST 'regional_decomp_intel' [53:56, 01:49](880 MB) +PASS -- TEST 'regional_2threads_intel' [53:15, 01:35](922 MB) +PASS -- TEST 'regional_noquilt_intel' [49:50, 01:22](1199 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [48:09, 02:08](877 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [47:39, 01:12](860 MB) +PASS -- TEST 'regional_wofs_intel' [47:09, 01:38](1568 MB) + +PASS -- COMPILE 'rrfs_intel' [10:23, 08:55] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [09:54, 03:15](899 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:55, 01:42](1058 MB) +PASS -- TEST 'rap_decomp_intel' [09:54, 03:02](909 MB) +PASS -- TEST 'rap_2threads_intel' [09:54, 02:43](983 MB) +PASS -- TEST 'rap_restart_intel' [46:48, 02:42](777 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:54, 03:20](900 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:54, 02:46](900 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [46:00, 02:39](782 MB) +PASS -- TEST 'hrrr_control_intel' [09:54, 03:17](902 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [09:54, 03:14](899 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [09:05, 02:43](976 MB) +PASS -- TEST 'hrrr_control_restart_intel' [45:59, 02:03](730 MB) +PASS -- TEST 'rrfs_v1beta_intel' [44:44, 02:55](899 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [44:00, 02:16](1858 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [43:52, 01:39](1842 MB) + +PASS -- COMPILE 'csawmg_intel' [09:23, 08:08] +PASS -- TEST 'control_csawmg_intel' [10:55, 01:58](861 MB) +PASS -- TEST 'control_ras_intel' [10:55, 01:27](558 MB) + +PASS -- COMPILE 'wam_intel' [11:24, 08:23] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [43:11, 01:52](1552 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:26, 08:39] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [42:54, 02:27](1754 MB) +PASS -- TEST 'regional_control_faster_intel' [42:30, 01:35](880 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:25, 07:48] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [42:07, 01:52](1489 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [42:03, 01:54](1491 MB) +PASS -- TEST 'control_stochy_debug_intel' [40:28, 01:45](692 MB) +PASS -- TEST 'control_lndp_debug_intel' [40:20, 02:03](695 MB) +PASS -- TEST 'control_csawmg_debug_intel' [40:18, 01:29](998 MB) +PASS -- TEST 'control_ras_debug_intel' [40:07, 02:08](700 MB) +PASS -- TEST 'control_diag_debug_intel' [39:58, 01:56](1552 MB) +PASS -- TEST 'control_debug_p8_intel' [39:04, 01:58](1783 MB) +PASS -- TEST 'regional_debug_intel' [38:44, 01:11](881 MB) +PASS -- TEST 'rap_control_debug_intel' [37:22, 01:43](1079 MB) +PASS -- TEST 'hrrr_control_debug_intel' [36:56, 01:53](1067 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [36:37, 01:42](1075 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [36:37, 01:40](1077 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [36:22, 01:41](1078 MB) +PASS -- TEST 'rap_diag_debug_intel' [36:14, 01:38](1160 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [35:50, 01:33](1078 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [35:32, 01:30](1079 MB) +PASS -- TEST 'rap_lndp_debug_intel' [35:15, 01:29](1079 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [35:11, 01:36](1078 MB) +PASS -- TEST 'rap_noah_debug_intel' [34:53, 01:19](1071 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [34:51, 02:07](1075 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [34:31, 01:50](1073 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [34:29, 01:59](1071 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [34:19, 02:08](1074 MB) +PASS -- TEST 'rap_flake_debug_intel' [34:16, 02:06](1080 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [34:02, 02:40](1084 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:22, 04:32] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [10:53, 01:54](1579 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:25, 08:10] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [33:33, 01:32](930 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [33:26, 02:38](783 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [33:21, 03:22](782 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [33:13, 02:43](834 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [31:14, 03:33](826 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [30:15, 02:29](777 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [23:31, 02:23](682 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [25:30, 01:18](659 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:24, 08:10] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [29:50, 02:08](991 MB) +PASS -- TEST 'conus13km_2threads_intel' [23:49, 01:53](988 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [22:49, 01:47](863 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:23, 08:15] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [29:47, 02:25](804 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:33] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [29:20, 01:58](954 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [29:19, 02:03](952 MB) +PASS -- TEST 'conus13km_debug_intel' [29:08, 01:27](1040 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [29:07, 01:36](708 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [28:55, 01:42](1045 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [28:32, 01:56](1109 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:19] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [28:19, 02:18](981 MB) + +PASS -- COMPILE 'hafsw_intel' [12:29, 09:55] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [28:08, 02:48](592 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [27:48, 01:51](957 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [27:39, 02:51](642 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [27:19, 02:47](672 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [27:16, 02:43](692 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [26:57, 02:04](373 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [26:29, 03:08](390 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [26:19, 02:26](280 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [26:01, 03:47](367 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [25:37, 02:31](399 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [25:35, 01:55](407 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [24:33, 02:25](469 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [24:07, 01:29](305 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:23, 04:54] ( 1444 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [23:58, 02:14](499 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:28, 09:39] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [21:59, 01:58](508 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [20:39, 01:47](699 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:33, 09:50] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [20:39, 02:04](702 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:30, 09:15] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [20:30, 03:10](641 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [20:23, 03:06](613 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:08, 01:40](879 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:28, 09:59] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [20:07, 01:45](1812 MB) + +PASS -- COMPILE 'atml_intel' [13:27, 09:31] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [08:23, 05:32] ( 866 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [11:25, 08:32] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [20:03, 02:34](3010 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [19:35, 01:58](2891 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [19:25, 01:55](2897 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:22, 04:20] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [19:02, 02:26](4384 MB) SYNOPSIS: -Starting Date/Time: 20241205 18:04:06 -Ending Date/Time: 20241205 19:52:32 -Total Time: 01h:48m:58s +Starting Date/Time: 20241209 18:26:53 +Ending Date/Time: 20241209 20:13:42 +Total Time: 01h:47m:19s Compiles Completed: 33/33 -Tests Completed: 157/157 +Tests Completed: 156/157 +Failed Tests: +* TEST cpld_control_nowave_noaero_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/NickSzapiro-NOAA/ufs-weather-model/tests/logs/log_wcoss2/run_cpld_control_nowave_noaero_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 WCOSS2 REGRESSION TESTING LOG==== +====START OF WCOSS2 REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +7f91b3de985a4799ef7f11450059958002f6aa8c + +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) + 6c497bdfce0add89af9df9ad4be4a6a1bdf48494 CICE-interface/CICE (remotes/origin/restart_fh) + 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) + 3d3d28c120a1ad343f91e0e14dd38cd0cde6ae96 CMEPS-interface/CMEPS (remotes/origin/restart_fh) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) + 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) + 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) + dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) +-179cae1dd84401cf25d250bd9102e66560a9d328 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) + e2f6c128f939faec4efa3ce88f3f9025804fb3ae MOM6-interface/MOM6 (remotes/origin/restart_fh) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) + bdf039138204122991cea42729ee44c17ae7dd49 WW3 (6.07.1-353-gbdf03913) + 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: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241206 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_192903 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: GFS-DEV +* (-n) - RUN SINGLE TEST: cpld_control_nowave_noaero_p8 +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2sw_intel' [13:26, 11:04] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [46:16, 02:36](1877 MB) + +SYNOPSIS: +Starting Date/Time: 20241210 14:00:10 +Ending Date/Time: 20241210 14:30:33 +Total Time: 00h:30m:44s +Compiles Completed: 1/1 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/parm/datm_cdeps_configure.IN b/tests/parm/datm_cdeps_configure.IN index 1b38eb9a5f..3d159eb5b7 100644 --- a/tests/parm/datm_cdeps_configure.IN +++ b/tests/parm/datm_cdeps_configure.IN @@ -7,3 +7,4 @@ start_second: 0 nhours_fcst: @[FHMAX] dt_atmos: @[DT_ATMOS] fhrot: @[FHROT] +restart_fh: @[RESTART_FH] diff --git a/tests/parm/model_configure.IN b/tests/parm/model_configure.IN index a112bc0a01..cb7637225a 100644 --- a/tests/parm/model_configure.IN +++ b/tests/parm/model_configure.IN @@ -9,6 +9,7 @@ fhrot: @[FHROT] dt_atmos: @[DT_ATMOS] restart_interval: @[RESTART_INTERVAL] +restart_fh: @[RESTART_FH] quilting: @[QUILTING] quilting_restart: @[QUILTING_RESTART] diff --git a/tests/test_changes.list b/tests/test_changes.list index f994535b22..32bee137ed 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,110 +1,3 @@ -control_p8_mynn intel -regional_control intel -regional_restart intel -regional_decomp intel -regional_2threads intel -regional_noquilt intel -regional_netcdf_parallel intel -regional_2dwrtdecomp intel -regional_wofs intel -rap_control intel -regional_spp_sppt_shum_skeb intel -rap_decomp intel -rap_2threads intel -rap_restart intel -rap_sfcdiff intel -rap_sfcdiff_decomp intel -rap_sfcdiff_restart intel -hrrr_control intel -hrrr_control_decomp intel -hrrr_control_2threads intel -hrrr_control_restart intel -rrfs_v1beta intel -rrfs_v1nssl intel -rrfs_v1nssl_nohailnoccn intel -regional_control_faster intel -regional_debug intel -rap_control_debug intel -hrrr_control_debug intel -hrrr_gf_debug intel -hrrr_c3_debug intel -rap_unified_drag_suite_debug intel -rap_diag_debug intel -rap_cires_ugwp_debug intel -rap_unified_ugwp_debug intel -rap_lndp_debug intel -rap_progcld_thompson_debug intel -rap_noah_debug intel -rap_sfcdiff_debug intel -rap_noah_sfcdiff_cires_ugwp_debug intel -rrfs_v1beta_debug intel -rap_clm_lake_debug intel -rap_flake_debug intel -gnv1_c96_no_nest_debug intel -regional_spp_sppt_shum_skeb_dyn32_phy32 intel -rap_control_dyn32_phy32 intel -hrrr_control_dyn32_phy32 intel -rap_2threads_dyn32_phy32 intel -hrrr_control_2threads_dyn32_phy32 intel -hrrr_control_decomp_dyn32_phy32 intel -rap_restart_dyn32_phy32 intel -hrrr_control_restart_dyn32_phy32 intel -conus13km_control intel -conus13km_2threads intel -conus13km_restart_mismatch intel -rap_control_dyn64_phy32 intel -rap_control_debug_dyn32_phy32 intel -hrrr_control_debug_dyn32_phy32 intel -conus13km_debug intel -conus13km_debug_qr intel -conus13km_debug_2threads intel -conus13km_radar_tten_debug intel -rap_control_dyn64_phy32_debug intel -gnv1_nested intel -cpld_regional_atm_fbh intel -rap_control_dyn32_phy32 intelllvm -rap_control_dyn64_phy32 intelllvm -rap_control gnu -rap_decomp gnu -rap_2threads gnu -rap_restart gnu -rap_sfcdiff gnu -rap_sfcdiff_decomp gnu -rap_sfcdiff_restart gnu -hrrr_control gnu -hrrr_control_noqr gnu -hrrr_control_2threads gnu -hrrr_control_decomp gnu -hrrr_control_restart gnu -hrrr_control_restart_noqr gnu -rrfs_v1beta gnu -regional_debug gnu -rap_control_debug gnu -hrrr_control_debug gnu -hrrr_gf_debug gnu -hrrr_c3_debug gnu -rap_diag_debug gnu -rap_noah_sfcdiff_cires_ugwp_debug gnu -rap_progcld_thompson_debug gnu -rrfs_v1beta_debug gnu -rap_flake_debug gnu -rap_clm_lake_debug gnu -gnv1_c96_no_nest_debug gnu -rap_control_dyn32_phy32 gnu -hrrr_control_dyn32_phy32 gnu -rap_2threads_dyn32_phy32 gnu -hrrr_control_2threads_dyn32_phy32 gnu -hrrr_control_decomp_dyn32_phy32 gnu -rap_restart_dyn32_phy32 gnu -hrrr_control_restart_dyn32_phy32 gnu -conus13km_control gnu -conus13km_2threads gnu -conus13km_restart_mismatch gnu -rap_control_dyn64_phy32 gnu -rap_control_debug_dyn32_phy32 gnu -hrrr_control_debug_dyn32_phy32 gnu -conus13km_debug gnu -conus13km_debug_qr gnu -conus13km_debug_2threads gnu -conus13km_radar_tten_debug gnu -rap_control_dyn64_phy32_debug gnu +cpld_control_p8 intel +cpld_restart_p8 intel +cpld_control_p8 intelllvm diff --git a/tests/tests/cpld_control_p8 b/tests/tests/cpld_control_p8 index f3cb8da89c..1886a0de60 100644 --- a/tests/tests/cpld_control_p8 +++ b/tests/tests/cpld_control_p8 @@ -63,10 +63,14 @@ export LIST_FILES="sfcf021.tile1.nc \ RESTART/20210323.060000.sfc_data.tile4.nc \ RESTART/20210323.060000.sfc_data.tile5.nc \ RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210322.090000.MOM.res.nc \ RESTART/20210323.060000.MOM.res.nc \ + RESTART/iced.2021-03-22-32400.nc \ RESTART/iced.2021-03-23-21600.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ - ufs.cpld.ww3.r.2021-03-23-21600.nc \ + ufs.cpld.ww3.r.2021-03-22-32400.nc \ + ufs.cpld.ww3.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " export DT_ATMOS=720 @@ -78,6 +82,7 @@ export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" export OUTPUT_FH='0 21 24' +export RESTART_FH="0.5 3" export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True From 6ec6b458b6dc09af48658146d3908502b18272cf Mon Sep 17 00:00:00 2001 From: Nicholas Szapiro <149816583+NickSzapiro-NOAA@users.noreply.github.com> Date: Mon, 16 Dec 2024 15:47:06 -0500 Subject: [PATCH 17/24] Sync with ESCOMP/CDEPS (2024-12) + Update global_control.nml.IN based on GW specs (#2528) + Sync with ESCOMP/CMEPS (#2469) * UFSWM - Sync with ESCOMP/CDEPS (2024-12). Sync with ESCOMP/CMEPS (2024-12). Make additional changes to global_control.nml.IN based on GW needs. * CDEPS - Sync with ESCOMP/main (2024-12) * CMEPS - Sync with ESCOMP/main (2024-12) --- CDEPS-interface/CDEPS | 2 +- CDEPS-interface/CMakeLists.txt | 11 +- CDEPS-interface/cdeps_files.cmake | 8 + CMEPS-interface/CMEPS | 2 +- CMEPS-interface/CMakeLists.txt | 2 +- tests/bl_date.conf | 2 +- tests/default_vars.sh | 11 +- tests/fv3_conf/cpld_datm_cdeps.IN | 5 + tests/fv3_conf/cpld_datm_cdeps_gfs.IN | 7 +- tests/logs/RegressionTests_acorn.log | 522 ++++++++-------- tests/logs/RegressionTests_derecho.log | 536 ++++++++-------- tests/logs/RegressionTests_gaea.log | 671 +++++++++----------- tests/logs/RegressionTests_hera.log | 762 +++++++++++------------ tests/logs/RegressionTests_hercules.log | 756 +++++++++++----------- tests/logs/RegressionTests_jet.log | 562 +++++++---------- tests/logs/RegressionTests_orion.log | 663 +++++++++----------- tests/logs/RegressionTests_wcoss2.log | 537 +++++++--------- tests/parm/global_control.nml.IN | 86 +-- tests/parm/global_control_lnd_iau.nml.IN | 53 +- tests/test_changes.list | 6 +- tests/tests/control_c48_lnd_iau | 2 + tests/tests/cpld_debug_pdlib_p8 | 4 - 22 files changed, 2441 insertions(+), 2769 deletions(-) diff --git a/CDEPS-interface/CDEPS b/CDEPS-interface/CDEPS index 1f9eaaa142..34d1eab8e4 160000 --- a/CDEPS-interface/CDEPS +++ b/CDEPS-interface/CDEPS @@ -1 +1 @@ -Subproject commit 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae +Subproject commit 34d1eab8e432cedf8a81976e3b675b32f41b043f diff --git a/CDEPS-interface/CMakeLists.txt b/CDEPS-interface/CMakeLists.txt index afea540965..4f5c086013 100644 --- a/CDEPS-interface/CMakeLists.txt +++ b/CDEPS-interface/CMakeLists.txt @@ -95,6 +95,14 @@ target_include_directories(dwav PRIVATE $) +target_link_libraries(dglc PRIVATE dshr share streams) +target_link_libraries(dglc PRIVATE esmf PIO::PIO_Fortran) + # CDEPS add_library(cdeps STATIC $ $ @@ -104,7 +112,8 @@ add_library(cdeps STATIC $ $ $ $ - $) + $ + $) add_library(cdeps::cdeps ALIAS cdeps) target_include_directories(cdeps PUBLIC $ $) diff --git a/CDEPS-interface/cdeps_files.cmake b/CDEPS-interface/cdeps_files.cmake index 278435745a..cb247d500c 100644 --- a/CDEPS-interface/cdeps_files.cmake +++ b/CDEPS-interface/cdeps_files.cmake @@ -25,6 +25,7 @@ list(APPEND cdeps_share_files CDEPS/share/shr_timer_mod.F90 CDEPS/share/shr_file_mod.F90 CDEPS/share/shr_nl_mod.F90 + CDEPS/share/nuopc_shr_methods.F90 ) list(APPEND cdeps_streams_files @@ -68,6 +69,8 @@ list(APPEND cdeps_docn_files CDEPS/docn/docn_datamode_iaf_mod.F90 CDEPS/docn/docn_datamode_som_mod.F90 CDEPS/docn/docn_datamode_cplhist_mod.F90 + CDEPS/docn/docn_datamode_multilev_mod.F90 + CDEPS/docn/docn_datamode_multilev_dom_mod.F90 CDEPS/docn/docn_import_data_mod.F90 CDEPS/docn/ocn_comp_nuopc.F90 ) @@ -79,3 +82,8 @@ list(APPEND cdeps_drof_files list(APPEND cdeps_dwav_files CDEPS/dwav/wav_comp_nuopc.F90 ) + +list(APPEND cdeps_dglc_files + CDEPS/dglc/dglc_datamode_noevolve_mod.F90 + CDEPS/dglc/glc_comp_nuopc.F90 +) diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 55576eba97..b5d1cc189f 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 55576eba972ad53cc6546f00d409fa27361f78bd +Subproject commit b5d1cc189fced4abcb13fc70ed2febb2aef61757 diff --git a/CMEPS-interface/CMakeLists.txt b/CMEPS-interface/CMakeLists.txt index 89a815bd22..bd22b3d3a4 100644 --- a/CMEPS-interface/CMakeLists.txt +++ b/CMEPS-interface/CMakeLists.txt @@ -43,6 +43,7 @@ list(APPEND _ufs_util_files ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/share/shr_kind_mod.F90 ${PROJECT_SOURCE_DIR}/CDEPS-interface/ufs/cdeps_share/shr_assert_mod.F90 ${PROJECT_SOURCE_DIR}/CDEPS-interface/ufs/cdeps_share/shr_infnan_mod.F90 + ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/share/nuopc_shr_methods.F90 ${PROJECT_SOURCE_DIR}/CDEPS-interface/ufs/cdeps_share/shr_is_restart_fh_mod.F90) list(APPEND _mediator_files @@ -66,7 +67,6 @@ list(APPEND _mediator_files CMEPS/mediator/med_phases_prep_ocn_mod.F90 CMEPS/mediator/esmFlds.F90 CMEPS/mediator/med.F90 - CMEPS/mediator/med_time_mod.F90 CMEPS/mediator/med_phases_ocnalb_mod.F90 CMEPS/mediator/med_phases_prep_wav_mod.F90 CMEPS/mediator/med_utils_mod.F90 diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 6c86847984..4c10448ff8 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20241206 +export BL_DATE=20241212 diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 54bd1caf4b..d8b58c91aa 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -891,19 +891,10 @@ export MAX_OUTPUT_FIELDS=310 export UPDATE_FULL_OMEGA=.false. # Stochastic physics -export HIDE_LAND_PERT=' ' -export HIDE_NEST='!' -export HIDE_SPPT='!' -export HIDE_SKEB='!' -export HIDE_SHUM='!' -export HIDE_OCNSPPT='!' -export HIDE_EPBL='!' -export HIDE_IAU='!' - export LCNORM=.false. export PERT_MP=.false. export PERT_RADTEND=.false. -export PERT_CLDS=.true. +export PERT_CLDS=.false. export STOCHINI=.false. export DO_SPPT=.false. diff --git a/tests/fv3_conf/cpld_datm_cdeps.IN b/tests/fv3_conf/cpld_datm_cdeps.IN index fa6fda2bd6..6dcac52772 100644 --- a/tests/fv3_conf/cpld_datm_cdeps.IN +++ b/tests/fv3_conf/cpld_datm_cdeps.IN @@ -46,4 +46,9 @@ else cp ../${DEP_RUN}${RT_SUFFIX}/${CICE_RESTART_DIR}/iced.2011-10-01-43200.nc ./INPUT RFILE="iced.2011-10-01-43200.nc" ls -1 "./INPUT/"${RFILE}>ice.restart_file + +# CDEPS restart and pointer files + RFILE="DATM_${DATM_SRC}.datm.r.2011-10-01-43200.nc" + cp ../${DEP_RUN}${RT_SUFFIX}/${RFILE} ./INPUT + ls -1 "./INPUT/"${RFILE}>rpointer.atm fi diff --git a/tests/fv3_conf/cpld_datm_cdeps_gfs.IN b/tests/fv3_conf/cpld_datm_cdeps_gfs.IN index b15df08c17..904f89d024 100644 --- a/tests/fv3_conf/cpld_datm_cdeps_gfs.IN +++ b/tests/fv3_conf/cpld_datm_cdeps_gfs.IN @@ -35,7 +35,7 @@ else cp ../${DEP_RUN}${RT_SUFFIX}/${MOM6_RESTART_DIR}/MOM.res.2021-03-22-18*.nc ./INPUT/MOM.res.nc # CMEPS restart and pointer files - RFILE="DATM_${DATM_SRC}.cpl.r.2021-03-22-64800.nc.nc" + RFILE="DATM_${DATM_SRC}.cpl.r.2021-03-22-64800.nc" cp ../${DEP_RUN}${RT_SUFFIX}/${CMEPS_RESTART_DIR}/${RFILE} . ls -1 ${RFILE}>rpointer.cpl @@ -43,4 +43,9 @@ else cp ../${DEP_RUN}${RT_SUFFIX}/${CICE_RESTART_DIR}/iced.2021-03-22-64800.nc ./INPUT RFILE="iced.2021-03-22-64800.nc" ls -1 "./INPUT/"${RFILE}>ice.restart_file + +# CDEPS restart and pointer files + RFILE="DATM_${DATM_SRC}.datm.r.2021-03-22-64800.nc" + cp ../${DEP_RUN}${RT_SUFFIX}/${RFILE} ./INPUT + ls -1 "./INPUT/"${RFILE}>rpointer.atm fi diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 1791ea1461..3d67e59cd4 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,15 +1,15 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -7f91b3de985a4799ef7f11450059958002f6aa8c +19498cc1894245fe8afe365dd87dbe5d8862b35f 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) - 6c497bdfce0add89af9df9ad4be4a6a1bdf48494 CICE-interface/CICE (remotes/origin/restart_fh) + 51f8cd20c15fe39ef1168d59d5077812b6508544 CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-10) + ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - 3d3d28c120a1ad343f91e0e14dd38cd0cde6ae96 CMEPS-interface/CMEPS (remotes/origin/restart_fh) + 507ca48f4586fbeb7b0e23e5cfa9321bc3f02a1d CMEPS-interface/CMEPS (cmeps_v0.4.1-3103-g507ca48f) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) @@ -23,11 +23,11 @@ Submodule hashes used in testing: 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) - e2f6c128f939faec4efa3ce88f3f9025804fb3ae MOM6-interface/MOM6 (remotes/origin/restart_fh) + 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - bdf039138204122991cea42729ee44c17ae7dd49 WW3 (6.07.1-353-gbdf03913) + 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,268 +38,268 @@ 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-20241206 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1598504 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241212 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1416340 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:27, 11:47] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:43, 03:34](3191 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:26, 11:44] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:43, 03:51](1905 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [58:16, 03:52](1934 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [58:09, 03:43](1085 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:44, 03:27](1882 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:28, 11:56] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:42, 01:59](1900 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:22, 05:27] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:49, 03:42](1951 MB) - -PASS -- COMPILE 's2swa_intel' [13:26, 11:36] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [18:43, 03:20](3227 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:43, 02:51](3225 MB) -PASS -- TEST 'cpld_restart_p8_intel' [00:09, 03:15](3156 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [18:43, 03:13](3245 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [53:20, 02:46](3171 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [18:43, 02:44](3460 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [18:43, 02:52](3219 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [18:44, 02:50](3169 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:43, 03:24](3227 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [18:43, 03:05](3206 MB) - -PASS -- COMPILE 's2sw_intel' [12:25, 11:04] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [19:44, 02:19](1918 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [19:44, 03:03](1979 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:26, 10:01] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [20:44, 03:08](1975 MB) - -PASS -- COMPILE 's2s_intel' [12:26, 10:23] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [19:43, 01:54](2877 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [19:43, 02:39](2892 MB) -PASS -- TEST 'cpld_restart_c48_intel' [14:13, 02:18](2304 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:32, 15:56] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [14:38, 02:33](3227 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [12:27, 11:16] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:43, 02:23](1920 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [50:47, 02:36](1092 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [49:02, 02:57](1900 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 05:09] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [18:30, 02:48](1959 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:26, 09:33] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [09:06, 01:38](662 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [09:02, 02:17](1553 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:30, 02:06](1575 MB) -PASS -- TEST 'control_latlon_intel' [03:38, 02:12](1565 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [57:39, 02:14](1564 MB) -PASS -- TEST 'control_c48_intel' [55:58, 01:56](1583 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [55:55, 02:01](701 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [55:38, 02:03](1583 MB) -PASS -- TEST 'control_c192_intel' [55:11, 02:09](1683 MB) -PASS -- TEST 'control_c384_intel' [54:43, 03:04](1964 MB) -PASS -- TEST 'control_c384gdas_intel' [53:08, 04:09](1165 MB) -PASS -- TEST 'control_stochy_intel' [52:20, 01:21](617 MB) -PASS -- TEST 'control_stochy_restart_intel' [44:45, 01:22](426 MB) -PASS -- TEST 'control_lndp_intel' [51:18, 01:38](615 MB) -PASS -- TEST 'control_iovr4_intel' [47:38, 02:11](616 MB) -PASS -- TEST 'control_iovr5_intel' [47:18, 02:03](611 MB) -PASS -- TEST 'control_p8_intel' [46:35, 03:24](1850 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [46:35, 03:43](1856 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [46:30, 03:18](1851 MB) -PASS -- TEST 'control_restart_p8_intel' [38:14, 02:18](1010 MB) -PASS -- TEST 'control_noqr_p8_intel' [46:13, 02:24](1856 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [36:31, 03:04](1014 MB) -PASS -- TEST 'control_decomp_p8_intel' [46:03, 03:01](1844 MB) -PASS -- TEST 'control_2threads_p8_intel' [45:48, 02:02](1933 MB) -PASS -- TEST 'control_p8_lndp_intel' [45:40, 02:19](1851 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [45:40, 02:49](1911 MB) -PASS -- TEST 'control_p8_mynn_intel' [45:30, 03:19](1856 MB) -PASS -- TEST 'merra2_thompson_intel' [45:15, 04:15](1854 MB) -PASS -- TEST 'regional_control_intel' [44:35, 02:07](898 MB) -PASS -- TEST 'regional_restart_intel' [36:42, 02:01](874 MB) -PASS -- TEST 'regional_decomp_intel' [43:43, 01:55](892 MB) -PASS -- TEST 'regional_2threads_intel' [43:24, 01:44](1011 MB) -PASS -- TEST 'regional_noquilt_intel' [42:55, 01:49](1217 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [41:03, 02:01](895 MB) -PASS -- TEST 'regional_wofs_intel' [40:42, 01:39](1582 MB) - -PASS -- COMPILE 'rrfs_intel' [10:24, 08:51] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [09:19, 02:55](1001 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:20, 02:04](1159 MB) -PASS -- TEST 'rap_decomp_intel' [09:19, 03:52](1002 MB) -PASS -- TEST 'rap_2threads_intel' [09:19, 03:51](1086 MB) -PASS -- TEST 'rap_restart_intel' [40:39, 03:55](880 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:19, 03:43](999 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:19, 03:33](996 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [38:41, 03:01](886 MB) -PASS -- TEST 'hrrr_control_intel' [09:19, 02:36](998 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [09:19, 03:58](991 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [38:15, 03:55](1067 MB) -PASS -- TEST 'hrrr_control_restart_intel' [37:46, 02:04](832 MB) -PASS -- TEST 'rrfs_v1beta_intel' [37:38, 03:10](997 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [37:19, 02:14](1956 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [37:17, 01:19](1947 MB) - -PASS -- COMPILE 'csawmg_intel' [09:22, 08:07] -PASS -- TEST 'control_csawmg_intel' [10:21, 01:58](952 MB) -PASS -- TEST 'control_ras_intel' [10:20, 02:10](652 MB) - -PASS -- COMPILE 'wam_intel' [10:24, 08:14] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [36:10, 01:58](1645 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:25, 08:26] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [36:08, 03:35](1856 MB) -PASS -- TEST 'regional_control_faster_intel' [36:05, 01:57](887 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:24, 07:39] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [35:56, 02:04](1607 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [34:59, 01:34](1602 MB) -PASS -- TEST 'control_stochy_debug_intel' [34:48, 01:47](807 MB) -PASS -- TEST 'control_lndp_debug_intel' [34:14, 01:25](805 MB) -PASS -- TEST 'control_csawmg_debug_intel' [33:33, 01:48](1112 MB) -PASS -- TEST 'control_ras_debug_intel' [33:14, 02:09](812 MB) -PASS -- TEST 'control_diag_debug_intel' [33:06, 01:40](1661 MB) -PASS -- TEST 'control_debug_p8_intel' [32:37, 01:23](1905 MB) -PASS -- TEST 'regional_debug_intel' [32:19, 02:05](938 MB) -PASS -- TEST 'rap_control_debug_intel' [32:17, 01:35](1189 MB) -PASS -- TEST 'hrrr_control_debug_intel' [32:06, 01:18](1186 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [31:22, 01:19](1188 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [30:53, 02:11](1190 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [30:46, 02:09](1188 MB) -PASS -- TEST 'rap_diag_debug_intel' [30:11, 02:12](1272 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [29:51, 01:35](1193 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [29:47, 01:42](1189 MB) -PASS -- TEST 'rap_lndp_debug_intel' [29:26, 01:59](1191 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [29:17, 01:36](1190 MB) -PASS -- TEST 'rap_noah_debug_intel' [29:00, 01:21](1182 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [28:52, 01:46](1190 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [28:37, 01:43](1184 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [28:16, 01:43](1178 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [27:46, 01:38](1188 MB) -PASS -- TEST 'rap_flake_debug_intel' [27:42, 02:11](1189 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [27:14, 04:04](1193 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:20, 04:25] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [12:23, 01:28](1690 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 08:05] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [27:12, 02:32](1038 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [26:49, 03:12](878 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [26:43, 05:03](875 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [26:16, 03:09](933 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [26:04, 02:51](921 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [25:41, 04:49](869 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [13:58, 03:10](789 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [14:15, 02:09](759 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:23, 08:02] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [24:37, 01:41](1080 MB) -PASS -- TEST 'conus13km_2threads_intel' [18:26, 01:52](1064 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [18:17, 01:31](958 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:23, 08:07] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [23:44, 01:55](898 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:21, 04:32] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [23:39, 02:11](1063 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [23:29, 02:13](1063 MB) -PASS -- TEST 'conus13km_debug_intel' [22:47, 01:26](1155 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [21:17, 02:10](856 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [21:18, 02:04](1131 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:15, 02:10](1215 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 04:22] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [21:12, 01:33](1087 MB) - -PASS -- COMPILE 'hafsw_intel' [14:28, 10:01] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [20:56, 02:25](687 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [20:47, 01:59](1051 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [20:27, 02:50](729 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [20:27, 03:11](889 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:01, 02:33](824 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [17:42, 02:17](461 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [17:13, 02:37](478 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [16:07, 02:36](377 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:54, 03:38](437 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [15:00, 01:55](496 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [14:22, 02:41](494 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [14:17, 01:54](564 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [14:06, 02:14](407 MB) -PASS -- TEST 'gnv1_nested_intel' [13:58, 03:51](1698 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:24, 04:50] ( 1444 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:57, 02:37](668 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [14:29, 09:29] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:41, 01:46](602 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:24, 02:37](782 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [19:34, 09:50] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:05, 02:53](782 MB) - -PASS -- COMPILE 'hafs_all_intel' [20:35, 09:13] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:47, 02:39](732 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:14, 02:50](705 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [09:40, 01:16](898 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [20:35, 09:27] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:31, 01:41](766 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:05, 01:25](755 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [08:49, 01:33](649 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:56, 01:37](642 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:18, 01:37](642 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:29, 01:26](766 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:05, 01:29](765 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:37, 01:33](645 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:23, 01:47](689 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [04:27, 02:29](671 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:32, 01:26](753 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:31, 01:33](2032 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [02:55, 01:34](2033 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [21:35, 09:19] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:24, 01:18](753 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [11:25, 00:51] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:08, 01:22](302 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:03, 01:49](447 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [58:31, 01:34](450 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [20:33, 10:04] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [02:00, 02:09](1916 MB) - -PASS -- COMPILE 'atml_intel' [19:33, 09:30] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [01:44, 02:57](1880 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [01:17, 03:02](1879 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [48:49, 02:16](1025 MB) - -PASS -- COMPILE 'atml_debug_intel' [12:26, 05:20] ( 866 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [00:43, 03:17](1920 MB) - -PASS -- COMPILE 'atmw_intel' [16:30, 09:03] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [00:32, 03:02](1879 MB) - -PASS -- COMPILE 'atmaero_intel' [16:31, 08:32] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [59:58, 02:51](3116 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [59:29, 02:29](2998 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [59:11, 02:33](3006 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [11:24, 04:22] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [58:59, 02:05](4480 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:25, 11:29] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:39, 02:37](3189 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:26, 11:58] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [10:39, 03:44](1905 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [50:15, 04:22](1965 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [49:33, 03:59](1075 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [10:40, 03:26](1882 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:27, 11:57] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [10:38, 02:16](1902 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:26] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [16:46, 03:26](1954 MB) + +PASS -- COMPILE 's2swa_intel' [13:28, 11:39] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [10:37, 03:13](3228 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:37, 02:47](3226 MB) +PASS -- TEST 'cpld_restart_p8_intel' [49:01, 02:33](3156 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:37, 03:09](3244 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [45:17, 01:56](3173 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:37, 02:27](3461 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:37, 02:26](3220 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:38, 02:42](3168 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:37, 02:58](3227 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:37, 03:08](3200 MB) + +PASS -- COMPILE 's2sw_intel' [12:27, 10:53] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:38, 01:58](1917 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:38, 03:02](1980 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:25, 09:59] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [12:39, 03:15](1977 MB) + +PASS -- COMPILE 's2s_intel' [11:25, 10:14] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [12:39, 02:52](2884 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [12:39, 02:45](2891 MB) +PASS -- TEST 'cpld_restart_c48_intel' [07:10, 01:36](2308 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:32, 15:45] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [06:33, 02:48](3227 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [12:27, 11:14] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [11:38, 02:24](1918 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [42:42, 02:18](1109 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [42:37, 02:48](1901 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:15] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [09:26, 02:23](1957 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:29] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [01:04, 01:29](662 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [58:27, 01:28](1556 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [56:09, 01:42](1564 MB) +PASS -- TEST 'control_latlon_intel' [55:32, 01:59](1562 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [52:11, 01:55](1560 MB) +PASS -- TEST 'control_c48_intel' [48:11, 02:19](1581 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [46:32, 02:11](707 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [46:32, 01:47](1579 MB) +PASS -- TEST 'control_c192_intel' [45:05, 02:04](1687 MB) +PASS -- TEST 'control_c384_intel' [44:21, 02:39](1968 MB) +PASS -- TEST 'control_c384gdas_intel' [44:02, 03:36](1162 MB) +PASS -- TEST 'control_stochy_intel' [42:03, 01:22](614 MB) +PASS -- TEST 'control_stochy_restart_intel' [36:30, 01:41](423 MB) +PASS -- TEST 'control_lndp_intel' [41:13, 01:49](615 MB) +PASS -- TEST 'control_iovr4_intel' [40:52, 01:47](616 MB) +PASS -- TEST 'control_iovr5_intel' [40:30, 01:44](616 MB) +PASS -- TEST 'control_p8_intel' [40:24, 02:55](1850 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [39:33, 03:36](1856 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [39:24, 02:57](1849 MB) +PASS -- TEST 'control_restart_p8_intel' [29:00, 02:45](1009 MB) +PASS -- TEST 'control_noqr_p8_intel' [39:20, 02:36](1855 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [27:39, 02:34](1014 MB) +PASS -- TEST 'control_decomp_p8_intel' [39:15, 02:22](1855 MB) +PASS -- TEST 'control_2threads_p8_intel' [39:00, 02:37](1934 MB) +PASS -- TEST 'control_p8_lndp_intel' [38:31, 01:49](1852 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [38:08, 03:07](1908 MB) +PASS -- TEST 'control_p8_mynn_intel' [38:00, 02:50](1857 MB) +PASS -- TEST 'merra2_thompson_intel' [37:57, 03:51](1854 MB) +PASS -- TEST 'regional_control_intel' [36:57, 02:05](887 MB) +PASS -- TEST 'regional_restart_intel' [29:03, 01:20](874 MB) +PASS -- TEST 'regional_decomp_intel' [34:41, 01:30](891 MB) +PASS -- TEST 'regional_2threads_intel' [33:17, 02:08](1020 MB) +PASS -- TEST 'regional_noquilt_intel' [32:32, 01:12](1219 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [32:32, 01:58](896 MB) +PASS -- TEST 'regional_wofs_intel' [31:53, 01:48](1591 MB) + +PASS -- COMPILE 'rrfs_intel' [10:25, 08:43] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [02:14, 03:15](1002 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [02:15, 02:26](1158 MB) +PASS -- TEST 'rap_decomp_intel' [02:14, 04:01](999 MB) +PASS -- TEST 'rap_2threads_intel' [02:14, 02:39](1083 MB) +PASS -- TEST 'rap_restart_intel' [31:54, 03:19](882 MB) +PASS -- TEST 'rap_sfcdiff_intel' [02:13, 03:43](998 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [02:13, 03:26](997 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [30:34, 03:09](886 MB) +PASS -- TEST 'hrrr_control_intel' [02:13, 03:44](999 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [02:13, 02:35](991 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [30:22, 03:47](1067 MB) +PASS -- TEST 'hrrr_control_restart_intel' [30:12, 01:37](833 MB) +PASS -- TEST 'rrfs_v1beta_intel' [28:10, 04:02](995 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [28:08, 01:37](1956 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [28:00, 01:52](1947 MB) + +PASS -- COMPILE 'csawmg_intel' [09:23, 08:05] +PASS -- TEST 'control_csawmg_intel' [02:15, 01:22](952 MB) +PASS -- TEST 'control_ras_intel' [02:15, 01:43](655 MB) + +PASS -- COMPILE 'wam_intel' [09:23, 08:13] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [02:15, 02:04](1639 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:23, 08:27] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [27:52, 03:19](1849 MB) +PASS -- TEST 'regional_control_faster_intel' [27:47, 02:09](896 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:22, 07:37] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [27:35, 02:10](1602 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [27:20, 01:34](1610 MB) +PASS -- TEST 'control_stochy_debug_intel' [26:43, 01:39](803 MB) +PASS -- TEST 'control_lndp_debug_intel' [25:42, 01:40](808 MB) +PASS -- TEST 'control_csawmg_debug_intel' [25:36, 01:56](1112 MB) +PASS -- TEST 'control_ras_debug_intel' [24:52, 01:49](814 MB) +PASS -- TEST 'control_diag_debug_intel' [24:43, 02:17](1655 MB) +PASS -- TEST 'control_debug_p8_intel' [24:41, 01:43](1903 MB) +PASS -- TEST 'regional_debug_intel' [24:29, 02:02](940 MB) +PASS -- TEST 'rap_control_debug_intel' [24:30, 01:36](1192 MB) +PASS -- TEST 'hrrr_control_debug_intel' [24:12, 01:27](1183 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [24:03, 01:25](1185 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [23:42, 01:47](1187 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [22:43, 01:45](1189 MB) +PASS -- TEST 'rap_diag_debug_intel' [22:40, 02:01](1271 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [22:26, 02:03](1192 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [21:39, 01:37](1189 MB) +PASS -- TEST 'rap_lndp_debug_intel' [21:17, 01:57](1190 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [21:08, 02:06](1189 MB) +PASS -- TEST 'rap_noah_debug_intel' [21:00, 02:08](1182 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [20:59, 01:43](1193 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [20:55, 01:40](1185 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [20:39, 01:33](1183 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [20:11, 01:37](1187 MB) +PASS -- TEST 'rap_flake_debug_intel' [20:10, 01:37](1189 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [19:30, 03:25](1189 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:19, 04:25] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [04:18, 02:01](1686 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 08:07] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [19:23, 01:39](1025 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [18:58, 03:05](875 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [17:48, 04:44](876 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [17:44, 02:51](931 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [17:41, 04:45](921 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [16:54, 03:15](867 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:37, 03:20](791 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:28, 01:49](762 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:25, 08:06] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [16:30, 01:53](1080 MB) +PASS -- TEST 'conus13km_2threads_intel' [09:17, 02:02](1063 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [06:56, 01:18](958 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:24, 08:15] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [15:46, 02:22](897 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:30] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [15:34, 01:54](1060 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [15:28, 02:01](1056 MB) +PASS -- TEST 'conus13km_debug_intel' [15:21, 01:52](1170 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [14:59, 02:09](835 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [14:12, 02:14](1137 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:05, 01:32](1244 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:25] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [12:54, 02:14](1088 MB) + +PASS -- COMPILE 'hafsw_intel' [13:28, 09:59] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [12:06, 02:20](684 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [11:54, 01:49](1048 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:43, 02:17](754 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [11:34, 03:13](766 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [10:25, 03:15](790 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:22, 01:55](464 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:05, 02:57](480 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [09:36, 02:05](377 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:39, 03:24](432 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:52, 02:21](498 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:15, 02:20](497 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:16, 02:19](561 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:00, 02:12](405 MB) +PASS -- TEST 'gnv1_nested_intel' [04:58, 04:08](1696 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:23, 04:51] ( 1444 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [04:54, 01:58](618 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [15:29, 09:45] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [03:51, 02:13](607 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [03:21, 01:54](782 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:28, 09:50] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [03:17, 02:14](784 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:32, 09:07] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [02:57, 02:20](734 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [02:20, 02:53](716 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [02:12, 01:36](896 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [21:34, 09:18] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [01:59, 02:11](765 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [55:33, 02:09](755 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [01:20, 01:47](643 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [59:48, 01:41](646 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [59:10, 01:38](643 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [58:07, 01:30](753 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [58:03, 02:06](765 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [57:40, 01:42](646 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [57:18, 02:25](690 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [55:57, 02:32](677 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [55:24, 01:54](766 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [55:02, 01:17](2033 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [54:52, 02:08](2032 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [21:37, 09:13] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [54:47, 01:59](753 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [12:26, 00:48] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [54:44, 01:53](302 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [53:45, 02:13](447 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [48:12, 01:23](451 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [21:35, 10:08] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [53:26, 01:48](1915 MB) + +PASS -- COMPILE 'atml_intel' [21:36, 09:33] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [53:18, 03:13](1878 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [52:43, 02:59](1878 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [39:17, 02:08](1021 MB) + +PASS -- COMPILE 'atml_debug_intel' [16:30, 05:24] ( 866 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [52:41, 03:03](1922 MB) + +PASS -- COMPILE 'atmw_intel' [15:30, 09:05] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [52:14, 03:08](1880 MB) + +PASS -- COMPILE 'atmaero_intel' [15:29, 08:35] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [51:12, 03:14](3117 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [51:08, 03:04](2997 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [50:38, 02:42](3005 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [11:25, 04:25] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [50:05, 02:23](4471 MB) SYNOPSIS: -Starting Date/Time: 20241209 18:27:30 -Ending Date/Time: 20241209 20:32:57 -Total Time: 02h:05m:55s +Starting Date/Time: 20241213 20:35:35 +Ending Date/Time: 20241213 22:42:00 +Total Time: 02h:06m:54s Compiles Completed: 37/37 Tests Completed: 177/177 diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index b5b476322f..6b0e18d0c7 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,15 +1,15 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -7e5a67f43c273ddff3fdc3f6cec2ba1b5b1f5be2 +19498cc1894245fe8afe365dd87dbe5d8862b35f 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) - 6c497bdfce0add89af9df9ad4be4a6a1bdf48494 CICE-interface/CICE (remotes/origin/restart_fh) + 51f8cd20c15fe39ef1168d59d5077812b6508544 CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-10) + ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - 3d3d28c120a1ad343f91e0e14dd38cd0cde6ae96 CMEPS-interface/CMEPS (remotes/origin/restart_fh) + 507ca48f4586fbeb7b0e23e5cfa9321bc3f02a1d CMEPS-interface/CMEPS (cmeps_v0.4.1-3103-g507ca48f) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) @@ -23,11 +23,11 @@ Submodule hashes used in testing: 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) - e2f6c128f939faec4efa3ce88f3f9025804fb3ae MOM6-interface/MOM6 (remotes/origin/restart_fh) + 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - bdf039138204122991cea42729ee44c17ae7dd49 WW3 (6.07.1-353-gbdf03913) + 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,288 +38,288 @@ 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: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20241206 -COMPARISON DIRECTORY: /glade/derecho/scratch/fandrade/fandrade/FV3_RT/rt_55842 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20241212 +COMPARISON DIRECTORY: /glade/derecho/scratch/fandrade/fandrade/FV3_RT/rt_58609 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [23:26, 21:25] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:38, 10:12](3203 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:28, 23:15] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:25, 14:12](1914 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:09, 15:12](1947 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:19, 06:56](1079 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:13, 16:02](1887 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:27, 23:12] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:39, 13:50](1908 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:25, 11:55] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:03, 25:22](1945 MB) - -PASS -- COMPILE 's2swa_intel' [23:27, 21:27] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [18:04, 13:28](3222 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:43, 13:49](3238 MB) -PASS -- TEST 'cpld_restart_p8_intel' [12:41, 07:45](3148 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [18:54, 13:51](3250 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [12:51, 07:37](3176 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [16:24, 12:36](3748 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:31, 13:30](3217 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:25, 10:28](3531 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:45, 13:41](3229 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:45, 08:55](3814 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:07, 06:09](3619 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [32:17, 16:49](4517 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [29:41, 10:04](4663 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:09, 07:45](3213 MB) - -PASS -- COMPILE 's2sw_intel' [21:27, 19:22] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:27, 07:21](1913 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:40, 11:44](1983 MB) - -PASS -- COMPILE 's2swa_debug_intel' [13:25, 11:39] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [24:10, 20:38](3304 MB) - -PASS -- COMPILE 's2sw_debug_intel' [13:25, 11:03] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:51, 08:50](1961 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [18:25, 16:02] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:54, 05:00](1983 MB) - -PASS -- COMPILE 's2s_intel' [18:25, 16:29] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:16, 05:45](2885 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:13, 02:08](2891 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:46, 01:25](2308 MB) - -PASS -- COMPILE 's2swa_faster_intel' [26:20, 23:45] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [17:36, 13:31](3230 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:25, 21:51] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:07, 23:27](1924 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:46, 12:04](1108 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [31:10, 27:07](1890 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:21, 11:00] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:53, 26:58](1949 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:20, 14:26] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:37, 03:25](668 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:09, 02:41](1563 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:33, 02:42](1568 MB) -PASS -- TEST 'control_latlon_intel' [04:55, 02:39](1563 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:14, 02:41](1571 MB) -PASS -- TEST 'control_c48_intel' [12:12, 09:13](1589 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:41, 05:15](710 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [12:08, 09:13](1586 MB) -PASS -- TEST 'control_c192_intel' [13:56, 09:58](1690 MB) -PASS -- TEST 'control_c384_intel' [19:01, 11:16](1980 MB) -PASS -- TEST 'control_c384gdas_intel' [18:19, 07:36](1177 MB) -PASS -- TEST 'control_stochy_intel' [03:42, 01:25](624 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:39, 00:52](435 MB) -PASS -- TEST 'control_lndp_intel' [03:44, 01:21](624 MB) -PASS -- TEST 'control_iovr4_intel' [04:37, 02:07](620 MB) -PASS -- TEST 'control_iovr5_intel' [04:32, 02:06](620 MB) -PASS -- TEST 'control_p8_intel' [06:34, 03:30](1863 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:48, 03:10](1862 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:40, 03:28](1864 MB) -PASS -- TEST 'control_restart_p8_intel' [05:34, 02:18](1013 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:35, 03:39](1856 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:22, 02:23](1017 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:25, 03:40](1858 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:20, 03:35](1937 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:10, 06:08](1851 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:37, 04:00](1915 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:43, 03:20](1863 MB) -PASS -- TEST 'merra2_thompson_intel' [06:24, 03:34](1864 MB) -PASS -- TEST 'regional_control_intel' [08:02, 04:49](892 MB) -PASS -- TEST 'regional_restart_intel' [06:00, 02:56](877 MB) -PASS -- TEST 'regional_decomp_intel' [07:50, 05:04](894 MB) -PASS -- TEST 'regional_noquilt_intel' [07:58, 04:50](1217 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:00, 04:48](899 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:55, 04:51](892 MB) -PASS -- TEST 'regional_wofs_intel' [09:06, 05:52](1589 MB) - -PASS -- COMPILE 'rrfs_intel' [15:21, 12:51] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:32, 06:10](1005 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:24, 03:46](1163 MB) -PASS -- TEST 'rap_decomp_intel' [09:32, 06:25](1003 MB) -PASS -- TEST 'rap_2threads_intel' [08:24, 05:41](1088 MB) -PASS -- TEST 'rap_restart_intel' [06:22, 03:13](882 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:34, 06:05](1008 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:34, 06:23](998 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:11, 04:36](883 MB) -PASS -- TEST 'hrrr_control_intel' [06:10, 03:13](1001 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:10, 03:20](999 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:10, 02:48](1074 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:45, 01:44](832 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:33, 06:03](999 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:50, 08:11](1961 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:51, 07:52](1946 MB) - -PASS -- COMPILE 'csawmg_intel' [14:16, 11:49] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [09:09, 06:26](962 MB) -PASS -- TEST 'control_ras_intel' [05:32, 02:51](653 MB) - -PASS -- COMPILE 'wam_intel' [13:17, 11:33] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:20, 10:15](1647 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:23, 11:59] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:34, 03:00](1857 MB) -PASS -- TEST 'regional_control_faster_intel' [07:58, 04:42](898 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:17, 14:32] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:07, 02:08](1599 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:03, 02:07](1601 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:38, 02:53](806 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:42, 02:36](810 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:04, 04:35](1111 MB) -PASS -- TEST 'control_ras_debug_intel' [04:38, 02:40](812 MB) -PASS -- TEST 'control_diag_debug_intel' [05:51, 02:37](1663 MB) -PASS -- TEST 'control_debug_p8_intel' [06:04, 02:45](1892 MB) -PASS -- TEST 'regional_debug_intel' [18:57, 16:28](921 MB) -PASS -- TEST 'rap_control_debug_intel' [07:34, 04:40](1190 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:43, 04:32](1187 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:48, 04:49](1191 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:44, 04:39](1190 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:31, 04:50](1190 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:04, 04:53](1273 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:47, 04:47](1189 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:49, 04:47](1190 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:37, 04:49](1190 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:51, 04:41](1187 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:43, 04:39](1186 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:44, 04:40](1190 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:51, 07:35](1186 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:58, 04:39](1185 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:58, 04:44](1189 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:51, 04:48](1188 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:13, 07:58](1191 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:16, 07:12] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:33, 12:09](1697 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:15, 11:31] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:06, 03:32](1034 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:09, 05:09](878 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:15, 02:47](873 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:01, 04:46](936 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:13, 02:25](924 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:03, 02:54](868 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:59, 03:53](793 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:37, 01:31](770 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:18, 11:19] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:33, 01:49](1077 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:11, 00:56](1076 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:26, 01:05](963 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:19, 11:35] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:05, 03:38](906 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:18, 07:27] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:38, 04:34](1065 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:36, 04:30](1060 MB) -PASS -- TEST 'conus13km_debug_intel' [16:41, 13:04](1144 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:49, 13:13](830 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:21, 07:26](1141 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:48, 12:45](1214 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:20, 07:14] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:40, 04:42](1091 MB) - -PASS -- COMPILE 'hafsw_intel' [19:20, 17:39] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:15, 04:33](701 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:51, 05:05](1063 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:15, 06:26](753 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:07, 10:36](780 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:28, 11:43](796 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:17, 04:41](467 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:40, 05:44](485 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:04, 02:17](402 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:05, 06:11](461 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:07, 03:19](505 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:07, 03:04](505 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:20, 03:47](580 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:38, 01:13](431 MB) -PASS -- TEST 'gnv1_nested_intel' [08:21, 04:00](1701 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:16, 08:41] ( 1467 warnings 1469 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:15, 12:03](623 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [19:26, 17:12] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:28, 06:55](625 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:49, 06:58](681 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [20:20, 18:48] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:21, 05:18](669 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:22, 15:47] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:40, 05:40](734 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:32, 05:45](722 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:20, 16:14](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:20, 08:26] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:36, 02:29](770 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:36, 01:33](758 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:36, 02:22](647 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:37, 02:24](649 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:28, 02:25](650 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:38, 02:29](767 MB) +PASS -- COMPILE 's2swa_32bit_intel' [23:21, 21:23] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:41, 10:17](3199 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:24, 23:34] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:31, 14:19](1912 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:47, 15:21](1900 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:52, 07:12](1081 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:20, 16:09](1885 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:25, 23:06] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:46, 13:54](1904 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:21, 11:45] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:24, 25:11](1941 MB) + +PASS -- COMPILE 's2swa_intel' [23:25, 21:31] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [19:09, 13:42](3222 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:58, 13:45](3233 MB) +PASS -- TEST 'cpld_restart_p8_intel' [13:05, 07:43](3151 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [18:47, 13:44](3249 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [13:18, 07:44](3176 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [17:29, 12:49](3752 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:29, 13:28](3215 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:28, 10:43](3540 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:57, 13:55](3236 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:01, 09:10](3814 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [14:12, 06:27](3616 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [34:13, 16:58](4519 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [35:24, 10:19](4662 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:06, 07:56](3204 MB) + +PASS -- COMPILE 's2sw_intel' [21:22, 19:41] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:43, 07:35](1921 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:58, 11:48](1989 MB) + +PASS -- COMPILE 's2swa_debug_intel' [13:22, 11:28] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [25:16, 21:04](3304 MB) + +PASS -- COMPILE 's2sw_debug_intel' [13:22, 11:01] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:56, 08:46](1954 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [18:23, 16:02] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:51, 04:57](1985 MB) + +PASS -- COMPILE 's2s_intel' [18:24, 16:26] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:13, 05:47](2883 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:16, 02:11](2894 MB) +PASS -- TEST 'cpld_restart_c48_intel' [05:31, 01:27](2301 MB) + +PASS -- COMPILE 's2swa_faster_intel' [25:22, 23:40] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [17:46, 13:31](3230 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:16, 21:41] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [28:33, 23:35](1929 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:48, 12:20](1101 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [31:20, 27:28](1899 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:16, 11:03] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:07, 27:25](1965 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:20, 14:15] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:41, 03:25](668 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:12, 02:42](1570 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:29, 02:45](1570 MB) +PASS -- TEST 'control_latlon_intel' [06:14, 02:40](1566 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:18, 02:43](1564 MB) +PASS -- TEST 'control_c48_intel' [12:19, 09:16](1587 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:39, 05:18](710 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [12:19, 09:18](1586 MB) +PASS -- TEST 'control_c192_intel' [14:34, 10:00](1696 MB) +PASS -- TEST 'control_c384_intel' [20:21, 11:19](1980 MB) +PASS -- TEST 'control_c384gdas_intel' [17:25, 07:11](1173 MB) +PASS -- TEST 'control_stochy_intel' [03:46, 01:26](624 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:53, 00:52](434 MB) +PASS -- TEST 'control_lndp_intel' [03:47, 01:23](621 MB) +PASS -- TEST 'control_iovr4_intel' [04:46, 02:07](622 MB) +PASS -- TEST 'control_iovr5_intel' [04:55, 02:08](617 MB) +PASS -- TEST 'control_p8_intel' [07:45, 03:38](1861 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:40, 03:09](1856 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:59, 03:33](1860 MB) +PASS -- TEST 'control_restart_p8_intel' [05:32, 02:23](1011 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:45, 03:39](1845 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:32, 02:11](1016 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:42, 03:36](1856 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:28, 03:27](1935 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:10, 06:08](1856 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:32, 04:11](1912 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:36, 03:13](1857 MB) +PASS -- TEST 'merra2_thompson_intel' [06:46, 03:30](1858 MB) +PASS -- TEST 'regional_control_intel' [08:08, 04:51](896 MB) +PASS -- TEST 'regional_restart_intel' [06:18, 02:55](879 MB) +PASS -- TEST 'regional_decomp_intel' [07:56, 05:07](899 MB) +PASS -- TEST 'regional_noquilt_intel' [07:55, 04:52](1215 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:06, 04:53](893 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:09, 04:54](893 MB) +PASS -- TEST 'regional_wofs_intel' [09:09, 05:52](1594 MB) + +PASS -- COMPILE 'rrfs_intel' [15:20, 12:51] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:40, 06:08](1003 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:58, 03:44](1161 MB) +PASS -- TEST 'rap_decomp_intel' [09:40, 06:28](1004 MB) +PASS -- TEST 'rap_2threads_intel' [08:30, 05:41](1085 MB) +PASS -- TEST 'rap_restart_intel' [06:14, 03:15](883 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:39, 06:06](1005 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:39, 06:23](1002 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:21, 04:37](883 MB) +PASS -- TEST 'hrrr_control_intel' [06:14, 03:15](1000 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:14, 03:19](996 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:14, 02:48](1076 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:57, 01:47](831 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:42, 06:01](999 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:02, 08:11](1960 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:57, 07:52](1945 MB) + +PASS -- COMPILE 'csawmg_intel' [14:19, 11:45] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [10:26, 06:34](959 MB) +PASS -- TEST 'control_ras_intel' [05:57, 02:53](657 MB) + +PASS -- COMPILE 'wam_intel' [13:19, 11:26] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:48, 10:18](1651 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:34, 11:57] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:43, 03:06](1852 MB) +PASS -- TEST 'regional_control_faster_intel' [08:05, 04:41](892 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [17:29, 14:31] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:13, 02:12](1604 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:16, 02:08](1607 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:42, 02:54](805 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:45, 02:35](809 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:27, 04:31](1110 MB) +PASS -- TEST 'control_ras_debug_intel' [05:38, 02:38](815 MB) +PASS -- TEST 'control_diag_debug_intel' [07:15, 02:35](1658 MB) +PASS -- TEST 'control_debug_p8_intel' [06:07, 03:08](1900 MB) +PASS -- TEST 'regional_debug_intel' [19:58, 16:30](922 MB) +PASS -- TEST 'rap_control_debug_intel' [07:40, 04:41](1191 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:56, 04:43](1184 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:51, 04:39](1190 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:56, 04:42](1188 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:52, 04:42](1189 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:31, 04:59](1272 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:48, 04:52](1190 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:51, 04:48](1190 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:01, 04:47](1191 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:04, 04:47](1189 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:58, 04:37](1188 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:00, 04:42](1187 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:47, 07:32](1186 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:01, 04:36](1185 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:51, 04:41](1189 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:53, 04:42](1190 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:17, 08:13](1187 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:29, 07:09] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:05, 12:05](1692 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:24, 11:28] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:29, 03:33](1027 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:06, 05:08](874 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:09, 02:46](872 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:22, 04:47](934 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:22, 02:26](930 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:23, 02:55](871 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:01, 03:54](794 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:52, 01:32](771 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:19, 11:20] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:17, 01:49](1077 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:22, 00:57](1073 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [05:13, 01:08](964 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:19, 11:36] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:09, 03:39](902 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:28, 07:28] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:52, 04:35](1065 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:39, 04:31](1065 MB) +PASS -- TEST 'conus13km_debug_intel' [17:25, 12:59](1144 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:04, 12:55](828 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:43, 07:29](1142 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:57, 13:20](1227 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:18, 07:14] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:55, 04:38](1094 MB) + +PASS -- COMPILE 'hafsw_intel' [20:20, 17:44] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:33, 04:37](701 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:58, 05:08](1063 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:56, 06:30](755 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:10, 10:50](777 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:12, 11:43](791 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:25, 04:41](472 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:32, 05:44](484 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:13, 02:18](396 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:00, 06:14](458 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:17, 03:18](504 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:25, 03:06](506 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:24, 03:50](573 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:38, 01:14](429 MB) +PASS -- TEST 'gnv1_nested_intel' [08:28, 04:03](1702 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [11:13, 08:48] ( 1467 warnings 1469 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:28, 12:07](624 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:20, 17:28] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:58, 06:54](624 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:44, 07:04](680 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [21:30, 18:49] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:50, 05:21](671 MB) + +PASS -- COMPILE 'hafs_all_intel' [18:19, 15:50] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:40, 05:41](735 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:51, 05:45](724 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:31, 16:15](895 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:25, 08:26] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:27, 02:29](756 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:49, 01:33](758 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:37, 02:22](655 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:51, 02:24](644 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:47, 02:24](646 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:41, 02:29](767 MB) PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:42, 02:29](767 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:41, 02:21](651 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:53, 05:40](697 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:31, 05:38](679 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:41, 02:28](767 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:02, 03:53](2032 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:07, 03:54](2032 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:39, 02:21](647 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:50, 05:44](698 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:43, 05:43](680 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:37, 02:28](768 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:02, 03:54](2032 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:54, 03:54](1970 MB) -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:18, 05:48] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:29, 05:15](755 MB) +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:15, 05:50] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:41, 05:15](740 MB) -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:19, 08:14] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:38, 02:28](769 MB) +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:24, 08:25] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:42, 02:29](768 MB) -PASS -- COMPILE 'datm_cdeps_land_intel' [04:12, 02:34] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:46, 01:10](309 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:44, 01:06](451 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:01, 00:44](452 MB) +PASS -- COMPILE 'datm_cdeps_land_intel' [04:30, 02:39] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:52, 01:11](309 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:49, 01:06](450 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:42, 00:43](451 MB) -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:20, 13:34] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:26, 03:55](1917 MB) +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:38, 13:45] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:43, 03:59](1913 MB) -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:18, 12:36] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:29, 08:06](1898 MB) +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:29, 12:35] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:36, 08:02](1899 MB) -PASS -- COMPILE 'atml_intel' [16:28, 14:40] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:43, 07:22](1887 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:44, 07:10](1885 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:15, 05:05](1032 MB) +PASS -- COMPILE 'atml_intel' [17:28, 14:43] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:47, 07:09](1889 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:32, 07:05](1887 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:04, 03:56](1024 MB) -PASS -- COMPILE 'atml_debug_intel' [12:18, 10:36] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:00, 06:21](1923 MB) +PASS -- COMPILE 'atml_debug_intel' [12:20, 10:31] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:29, 06:17](1920 MB) -PASS -- COMPILE 'atmw_intel' [15:22, 13:33] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:43, 02:13](1886 MB) +PASS -- COMPILE 'atmw_intel' [16:29, 13:39] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:21, 02:16](1880 MB) -PASS -- COMPILE 'atmaero_intel' [15:21, 12:55] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:59, 04:04](3128 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:00, 04:18](3006 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:14, 04:22](3015 MB) +PASS -- COMPILE 'atmaero_intel' [15:21, 12:51] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:04, 04:13](3126 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:52, 04:18](3007 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:19, 04:25](3016 MB) -PASS -- COMPILE 'atmaq_debug_intel' [10:20, 08:07] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [27:36, 22:04](4541 MB) +PASS -- COMPILE 'atmaq_debug_intel' [10:23, 07:56] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [28:27, 21:58](4551 MB) -PASS -- COMPILE 'atm_fbh_intel' [13:18, 11:22] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:42, 08:04](846 MB) +PASS -- COMPILE 'atm_fbh_intel' [13:28, 11:24] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:46, 08:05](846 MB) SYNOPSIS: -Starting Date/Time: 20241210 12:23:44 -Ending Date/Time: 20241210 14:13:43 -Total Time: 01h:51m:02s +Starting Date/Time: 20241213 12:45:33 +Ending Date/Time: 20241213 14:37:48 +Total Time: 01h:53m:20s Compiles Completed: 42/42 Tests Completed: 186/186 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 9651e67956..c1de3958b8 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,15 +1,15 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -7f91b3de985a4799ef7f11450059958002f6aa8c +19498cc1894245fe8afe365dd87dbe5d8862b35f 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) - 6c497bdfce0add89af9df9ad4be4a6a1bdf48494 CICE-interface/CICE (remotes/origin/restart_fh) + 51f8cd20c15fe39ef1168d59d5077812b6508544 CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-10) + ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - 3d3d28c120a1ad343f91e0e14dd38cd0cde6ae96 CMEPS-interface/CMEPS (remotes/origin/restart_fh) + 507ca48f4586fbeb7b0e23e5cfa9321bc3f02a1d CMEPS-interface/CMEPS (cmeps_v0.4.1-3103-g507ca48f) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) @@ -23,11 +23,11 @@ Submodule hashes used in testing: 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) - e2f6c128f939faec4efa3ce88f3f9025804fb3ae MOM6-interface/MOM6 (remotes/origin/restart_fh) + 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - bdf039138204122991cea42729ee44c17ae7dd49 WW3 (6.07.1-353-gbdf03913) + 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,382 +38,307 @@ 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-20241206 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1885391 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20241212 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1810864 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [48:15, 46:27] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:46, 12:54](3184 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:15, 20:53] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [17:32, 14:16](1901 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:24, 14:51](1938 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:18, 06:46](1074 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:12, 15:28](1876 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:14, 21:33] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [15:59, 13:43](1895 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:12, 11:14] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [30:15, 27:07](1923 MB) - -PASS -- COMPILE 's2swa_intel' [47:15, 45:16] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [19:43, 16:15](3215 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:03, 16:14](3208 MB) -PASS -- TEST 'cpld_restart_p8_intel' [22:13, 12:09](3141 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [19:43, 16:37](3232 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [22:19, 13:43](3157 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [17:16, 14:10](3460 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [18:32, 15:53](3208 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [16:36, 13:35](3159 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:48, 16:15](3213 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [15:41, 10:22](3492 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [22:09, 11:35](3596 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [33:50, 21:20](4258 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [26:04, 12:14](4353 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [14:15, 09:55](3193 MB) - -PASS -- COMPILE 's2sw_intel' [16:15, 15:02] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:34, 07:41](1916 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:02, 12:47](1973 MB) - -PASS -- COMPILE 's2swa_debug_intel' [12:12, 10:27] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [25:28, 22:46](3268 MB) - -PASS -- COMPILE 's2sw_debug_intel' [12:12, 10:34] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:13, 09:39](1937 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:16, 14:04] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:37, 05:30](1974 MB) - -PASS -- COMPILE 's2s_intel' [15:16, 13:36] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:11, 05:34](2877 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:15, 01:42](2880 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:10, 01:01](2295 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:11, 17:49] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [20:23, 15:57](3213 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:14, 19:37] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:33, 24:41](1914 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [25:11, 15:06](1106 MB) -FAILED: TEST TIMED OUT -- TEST 'cpld_mpi_pdlib_p8_intel' [, ]( MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:15, 10:27] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:16, 30:45](1944 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:11, 14:20] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:27, 03:49](654 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:07, 03:23](1547 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:07, 03:28](1560 MB) -PASS -- TEST 'control_latlon_intel' [05:57, 03:10](1560 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:14, 03:22](1556 MB) -PASS -- TEST 'control_c48_intel' [12:08, 09:58](1569 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:52, 05:40](696 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [14:13, 11:13](1573 MB) -PASS -- TEST 'control_c192_intel' [13:52, 11:26](1688 MB) -PASS -- TEST 'control_c384_intel' [27:21, 24:01](1964 MB) -PASS -- TEST 'control_c384gdas_intel' [19:01, 14:47](1170 MB) -PASS -- TEST 'control_stochy_intel' [04:26, 02:06](612 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:30, 01:01](413 MB) -PASS -- TEST 'control_lndp_intel' [03:29, 01:52](609 MB) -PASS -- TEST 'control_iovr4_intel' [04:25, 02:39](608 MB) -PASS -- TEST 'control_iovr5_intel' [04:30, 02:40](609 MB) -PASS -- TEST 'control_p8_intel' [06:06, 04:00](1848 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:21, 03:26](1841 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:07, 03:59](1848 MB) -PASS -- TEST 'control_restart_p8_intel' [04:57, 02:06](999 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:58, 04:03](1842 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:54, 02:02](994 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:57, 03:58](1841 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:54, 03:25](1926 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:50, 06:17](1845 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:01, 04:13](1905 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:12, 03:23](1854 MB) -PASS -- TEST 'merra2_thompson_intel' [07:06, 03:44](1841 MB) -PASS -- TEST 'regional_control_intel' [06:47, 04:40](875 MB) -PASS -- TEST 'regional_restart_intel' [04:36, 02:53](858 MB) -PASS -- TEST 'regional_decomp_intel' [06:39, 04:55](877 MB) -PASS -- TEST 'regional_2threads_intel' [05:40, 03:05](1010 MB) -PASS -- TEST 'regional_noquilt_intel' [06:40, 04:37](1206 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:50, 04:47](876 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:41, 04:44](883 MB) -PASS -- TEST 'regional_wofs_intel' [09:41, 06:53](1574 MB) - -PASS -- COMPILE 'rrfs_intel' [13:11, 12:00] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:10, 06:51](989 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:18, 03:59](1170 MB) -PASS -- TEST 'rap_decomp_intel' [10:05, 07:14](994 MB) -PASS -- TEST 'rap_2threads_intel' [09:11, 06:13](1073 MB) -PASS -- TEST 'rap_restart_intel' [05:39, 03:52](869 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:10, 06:53](987 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:10, 07:01](989 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:51, 05:01](878 MB) -PASS -- TEST 'hrrr_control_intel' [07:02, 03:51](982 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:02, 03:57](987 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:10, 03:09](1061 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:30, 01:53](816 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:06, 06:46](988 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:48, 08:40](1945 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:48, 08:27](1934 MB) - -PASS -- COMPILE 'csawmg_intel' [12:12, 10:58] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [08:59, 06:39](933 MB) -PASS -- TEST 'control_ras_intel' [05:48, 03:22](642 MB) - -PASS -- COMPILE 'wam_intel' [13:11, 11:16] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:10, 11:52](1641 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:13, 11:33] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:57, 03:13](1841 MB) -PASS -- TEST 'regional_control_faster_intel' [06:43, 04:35](878 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [13:11, 11:38] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:04, 02:49](1579 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:48, 02:51](1582 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:29, 03:09](781 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:27, 02:53](781 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:36, 04:16](1085 MB) -PASS -- TEST 'control_ras_debug_intel' [05:31, 02:54](788 MB) -PASS -- TEST 'control_diag_debug_intel' [05:49, 03:12](1644 MB) -PASS -- TEST 'control_debug_p8_intel' [04:50, 03:02](1869 MB) -PASS -- TEST 'regional_debug_intel' [18:42, 16:32](892 MB) -PASS -- TEST 'rap_control_debug_intel' [06:29, 05:02](1170 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:26, 04:59](1163 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:24, 05:07](1163 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:50, 05:09](1163 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:38, 05:04](1169 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:49, 05:19](1248 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:40, 05:15](1163 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:31, 05:11](1164 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:25, 05:10](1167 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:28, 05:13](1163 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:28, 05:04](1159 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:23, 05:21](1165 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:31, 08:12](1160 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:29, 04:58](1158 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:29, 05:05](1166 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:28, 05:08](1168 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:58, 08:23](1169 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:11, 08:04] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:37, 13:55](1661 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:12, 11:02] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:17, 03:50](1043 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:03, 05:59](867 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:04, 03:27](866 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:45, 05:23](927 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:55, 02:41](915 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:59, 03:33](867 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:25, 04:36](780 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:39, 01:51](753 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:15, 11:04] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:32, 02:00](1073 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:16, 01:11](1061 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:23, 01:26](948 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:13, 11:37] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:02, 04:34](894 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:11, 08:05] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:22, 05:03](1045 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:27, 05:03](1044 MB) -PASS -- TEST 'conus13km_debug_intel' [18:40, 14:24](1125 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:55, 16:43](801 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [13:48, 10:04](1122 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:48, 14:41](1192 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:11, 07:36] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:33, 05:03](1072 MB) - -PASS -- COMPILE 'hafsw_intel' [16:12, 14:40] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:47, 05:20](716 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:31, 04:31](1080 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:58, 10:18](742 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:10, 12:51](774 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:37, 16:18](808 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:38, 06:15](468 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:27, 09:48](499 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [11:18, 02:46](397 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [23:45, 15:09](484 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:54, 05:26](508 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [10:38, 04:53](507 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [12:06, 07:58](587 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:18, 01:33](427 MB) -PASS -- TEST 'gnv1_nested_intel' [17:43, 08:10](1700 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [11:13, 09:33] ( 1467 warnings 1469 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [21:24, 18:27](612 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [15:15, 13:20] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:14, 11:20](633 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:15, 12:59](812 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:14, 13:59] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [18:26, 09:34](810 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:13, 13:00] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [14:55, 07:57](738 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [15:13, 07:56](715 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [27:16, 20:28](891 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [12:11, 10:57] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [11:34, 07:34](751 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:08, 01:52](751 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:46, 03:25](642 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:30, 03:06](644 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:34, 03:02](643 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [07:33, 03:11](763 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [11:16, 07:42](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [11:16, 07:25](644 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:49, 07:58](693 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:49, 08:54](676 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [11:08, 07:26](763 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [13:10, 09:17](2031 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [13:05, 09:13](2035 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:11, 06:33] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [14:11, 09:57](747 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [13:13, 11:16] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [10:05, 06:58](751 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [08:14, 06:43] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [09:53, 02:22](314 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [09:32, 02:19](461 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:47, 00:55](460 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [04:11, 02:44] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [08:00, 01:29](449 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [03:20, 00:29](253 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [29:16, 28:06] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [11:27, 04:28](1917 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:14, 12:36] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [15:18, 08:40](1907 MB) - -PASS -- COMPILE 'atml_intel' [14:11, 12:55] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [14:07, 07:28](1882 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [13:28, 07:34](1878 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:11, 03:56](1028 MB) - -PASS -- COMPILE 'atml_debug_intel' [10:12, 08:42] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:06, 06:24](1911 MB) - -PASS -- COMPILE 'atmw_intel' [14:11, 12:57] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:52, 02:51](1879 MB) - -PASS -- COMPILE 'atmaero_intel' [14:12, 12:18] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [11:22, 06:31](3098 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [11:13, 06:38](2983 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:08, 07:16](2995 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [11:15, 09:08] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:10, 19:12](4442 MB) - -PASS -- COMPILE 'atm_fbh_intel' [13:14, 11:33] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:59, 09:31](834 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [35:13, 33:41] -PASS -- TEST 'cpld_control_gfsv17_intelllvm' [18:47, 15:46](1907 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [42:13, 40:13] -PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [30:00, 27:30](1924 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [31:14, 29:26] -PASS -- TEST 'cpld_control_sfs_intelllvm' [16:47, 14:22](1892 MB) - -PASS -- COMPILE 's2swa_intelllvm' [32:12, 30:29] -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_p8_intelllvm' [, ]( MB) +PASS -- COMPILE 's2swa_32bit_intel' [16:12, 14:10] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:29, 11:27](3185 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:12, 18:16] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [16:50, 13:44](1897 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:48, 14:25](1938 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:49, 06:27](1073 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:51, 15:05](1877 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:12, 18:26] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [16:36, 13:30](1901 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 06:57] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [30:18, 27:56](1934 MB) + +PASS -- COMPILE 's2swa_intel' [16:12, 14:17] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [18:35, 14:49](3210 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:33, 14:50](3212 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:55, 08:42](3136 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [18:20, 14:49](3236 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:59, 08:33](3156 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [17:28, 13:11](3465 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [18:28, 14:46](3209 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [16:28, 12:09](3155 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:33, 14:52](3210 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:09, 09:43](3492 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:51, 06:36](3596 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [24:48, 19:05](4262 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:17, 11:48](4353 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:27, 08:46](3194 MB) + +PASS -- COMPILE 's2sw_intel' [15:12, 13:18] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:42, 07:06](1920 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:36, 12:10](1964 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:11, 07:48] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [23:48, 21:28](3266 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:11, 06:57] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:59, 09:02](1939 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:13, 12:49] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:28, 04:53](1975 MB) + +PASS -- COMPILE 's2s_intel' [13:12, 11:49] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:30, 05:34](2869 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:46, 01:42](2872 MB) +PASS -- TEST 'cpld_restart_c48_intel' [05:51, 01:09](2295 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:12, 14:44] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [17:25, 14:55](3214 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [19:12, 17:50] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [25:48, 24:08](1912 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:51, 12:21](1100 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [30:49, 28:23](1891 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:13, 10:09] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:51, 29:53](1942 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:11, 12:31] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:20, 03:37](654 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:44, 03:09](1551 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:26, 03:12](1566 MB) +PASS -- TEST 'control_latlon_intel' [05:26, 03:10](1559 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:34, 03:08](1558 MB) +PASS -- TEST 'control_c48_intel' [11:38, 10:00](1572 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:26, 05:41](696 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [11:36, 09:55](1573 MB) +PASS -- TEST 'control_c192_intel' [12:33, 11:01](1690 MB) +PASS -- TEST 'control_c384_intel' [25:51, 23:36](1970 MB) +PASS -- TEST 'control_c384gdas_intel' [17:19, 14:26](1170 MB) +PASS -- TEST 'control_stochy_intel' [03:19, 01:49](610 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:19, 01:00](419 MB) +PASS -- TEST 'control_lndp_intel' [03:21, 01:35](607 MB) +PASS -- TEST 'control_iovr4_intel' [04:31, 02:23](607 MB) +PASS -- TEST 'control_iovr5_intel' [04:25, 02:29](609 MB) +PASS -- TEST 'control_p8_intel' [05:50, 03:30](1853 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:58, 03:08](1845 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:50, 03:29](1845 MB) +PASS -- TEST 'control_restart_p8_intel' [03:46, 01:53](1002 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:51, 03:30](1842 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:46, 01:54](990 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:50, 03:33](1837 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:34, 03:10](1929 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:26, 06:07](1846 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:37, 03:58](1902 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:36, 03:03](1847 MB) +PASS -- TEST 'merra2_thompson_intel' [05:37, 03:18](1843 MB) +PASS -- TEST 'regional_control_intel' [06:25, 04:36](877 MB) +PASS -- TEST 'regional_restart_intel' [04:58, 02:34](861 MB) +PASS -- TEST 'regional_decomp_intel' [06:30, 04:51](878 MB) +PASS -- TEST 'regional_2threads_intel' [04:38, 03:01](1015 MB) +PASS -- TEST 'regional_noquilt_intel' [06:33, 04:44](1210 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:32, 04:38](880 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:27, 04:42](876 MB) +PASS -- TEST 'regional_wofs_intel' [09:24, 06:35](1571 MB) + +PASS -- COMPILE 'rrfs_intel' [13:12, 12:04] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:40, 06:44](989 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:52, 03:58](1169 MB) +PASS -- TEST 'rap_decomp_intel' [08:40, 07:01](991 MB) +PASS -- TEST 'rap_2threads_intel' [07:39, 06:03](1072 MB) +PASS -- TEST 'rap_restart_intel' [05:33, 03:26](874 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:40, 06:38](985 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:40, 06:51](988 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:00, 04:54](875 MB) +PASS -- TEST 'hrrr_control_intel' [05:35, 03:34](989 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:35, 03:41](981 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:34, 03:04](1067 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:28, 01:55](820 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:40, 06:37](987 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:24, 08:29](1949 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:23, 08:18](1932 MB) + +PASS -- COMPILE 'csawmg_intel' [12:12, 10:10] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:27, 06:30](944 MB) +PASS -- TEST 'control_ras_intel' [05:19, 03:20](644 MB) + +PASS -- COMPILE 'wam_intel' [12:14, 10:24] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:51, 11:38](1640 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [19:13, 17:12] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:01, 02:55](1841 MB) +PASS -- TEST 'regional_control_faster_intel' [06:36, 04:28](885 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [12:11, 10:10] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:39, 02:28](1576 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:14, 02:23](1582 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:57, 03:06](782 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:32, 02:51](779 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:25, 04:18](1084 MB) +PASS -- TEST 'control_ras_debug_intel' [04:24, 02:46](787 MB) +PASS -- TEST 'control_diag_debug_intel' [04:34, 02:46](1638 MB) +PASS -- TEST 'control_debug_p8_intel' [04:29, 02:44](1876 MB) +PASS -- TEST 'regional_debug_intel' [18:28, 17:01](891 MB) +PASS -- TEST 'rap_control_debug_intel' [06:20, 05:02](1168 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:19, 04:53](1161 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:21, 05:07](1162 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:21, 05:20](1159 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:20, 05:33](1164 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:56, 05:31](1249 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:04, 05:02](1165 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:02, 05:01](1164 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:06, 04:56](1165 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:02, 04:58](1164 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:02, 04:51](1160 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:06, 04:55](1161 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:06, 08:01](1163 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:01, 04:57](1161 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:54, 04:58](1162 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:53, 05:02](1166 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:04, 08:26](1170 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:11, 06:22] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:50, 13:03](1661 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:12, 10:10] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:50, 03:46](1041 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:30, 05:43](868 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:32, 03:12](867 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:28, 05:15](922 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:28, 02:41](916 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:31, 03:19](867 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:27, 04:29](783 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:23, 01:43](755 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 10:03] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:47, 01:58](1078 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:39, 01:04](1060 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:57, 01:14](949 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 09:37] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:29, 04:18](893 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:56] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:18, 04:57](1043 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:18, 04:51](1042 MB) +PASS -- TEST 'conus13km_debug_intel' [15:47, 13:16](1126 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:01, 13:44](802 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:55, 07:55](1117 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:57, 13:33](1194 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:10, 06:01] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:21, 05:20](1071 MB) + +PASS -- COMPILE 'hafsw_intel' [13:11, 11:31] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:06, 05:11](719 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:35, 04:25](1080 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:22, 07:31](742 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:08, 11:20](774 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:19, 12:42](804 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:50, 05:15](473 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:09, 06:35](500 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:40, 02:45](399 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:41, 07:30](497 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:40, 04:32](507 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:43, 03:51](506 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:44, 04:32](581 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:32, 01:31](426 MB) +PASS -- TEST 'gnv1_nested_intel' [07:03, 04:53](1697 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:11, 06:55] ( 1467 warnings 1469 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:46, 12:47](613 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:11, 11:04] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:56, 07:31](632 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:58, 07:36](810 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 12:00] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:43, 05:57](812 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:11, 10:53] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:13, 06:08](734 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:04, 06:13](720 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [24:05, 21:12](891 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [12:11, 10:20] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:13, 02:41](752 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:17, 02:16](740 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:54, 02:28](643 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:49, 02:30](641 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:49, 02:31](640 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:48, 02:36](764 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:48, 02:35](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:35, 02:27](646 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:47, 06:04](695 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:43, 06:08](677 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:36](764 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 04:42](2030 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 04:42](2031 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 05:17] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 05:25](747 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [11:11, 09:44] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:37](764 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:31] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:36, 02:37](315 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:31, 01:56](463 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:32, 00:50](462 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:42] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [03:21, 00:33](450 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:40, 00:33](250 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:11, 12:21] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:56, 03:53](1909 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:11, 11:54] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:05, 08:38](1895 MB) + +PASS -- COMPILE 'atml_intel' [13:11, 11:48] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:18, 06:44](1878 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:28, 06:55](1881 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:29, 03:40](1029 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:15, 06:11] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:08, 06:11](1908 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 11:01] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:51, 02:09](1878 MB) + +PASS -- COMPILE 'atmaero_intel' [13:12, 11:31] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [10:08, 05:59](3099 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:54, 06:35](2988 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:49, 06:46](2994 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:10, 07:48] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [21:12, 18:13](4447 MB) + +PASS -- COMPILE 'atm_fbh_intel' [12:11, 10:51] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:29, 09:28](832 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [21:11, 19:56] +PASS -- TEST 'cpld_control_gfsv17_intelllvm' [15:51, 13:32](1899 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [11:11, 09:19] +PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [29:10, 27:09](1927 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [21:18, 19:15] +PASS -- TEST 'cpld_control_sfs_intelllvm' [15:34, 13:10](1897 MB) + +PASS -- COMPILE 's2swa_intelllvm' [16:11, 14:37] +PASS -- TEST 'cpld_control_p8_intelllvm' [18:08, 15:18](3215 MB) SYNOPSIS: -Starting Date/Time: 20241208 23:28:13 -Ending Date/Time: 20241209 01:49:48 -Total Time: 02h:22m:30s +Starting Date/Time: 20241213 14:40:18 +Ending Date/Time: 20241213 16:23:10 +Total Time: 01h:43m:50s Compiles Completed: 47/47 -Tests Completed: 191/193 -Failed Tests: -* TEST cpld_mpi_pdlib_p8_intel: FAILED: TEST TIMED OUT --- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1885391/cpld_mpi_pdlib_p8_intel/err -* TEST cpld_control_p8_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2419/ufs-weather-model/tests/logs/log_gaea/run_cpld_control_p8_intelllvm.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 GAEA REGRESSION TESTING LOG==== -====START OF GAEA REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -7f91b3de985a4799ef7f11450059958002f6aa8c - -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) - 6c497bdfce0add89af9df9ad4be4a6a1bdf48494 CICE-interface/CICE (remotes/origin/restart_fh) - 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - 3d3d28c120a1ad343f91e0e14dd38cd0cde6ae96 CMEPS-interface/CMEPS (remotes/origin/restart_fh) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) - 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) - 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) --179cae1dd84401cf25d250bd9102e66560a9d328 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) - e2f6c128f939faec4efa3ce88f3f9025804fb3ae MOM6-interface/MOM6 (remotes/origin/restart_fh) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - bdf039138204122991cea42729ee44c17ae7dd49 WW3 (6.07.1-353-gbdf03913) - 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: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20241206 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1778618 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-b) - NEW BASELINES FROM FILE: test_changes.list -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2sw_pdlib_intel' [19:11, 17:16] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [26:57, 24:51](1920 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [31:48, 29:08](1887 MB) - -PASS -- COMPILE 's2swa_intelllvm' [15:11, 13:09] -PASS -- TEST 'cpld_control_p8_intelllvm' [18:06, 15:21](3212 MB) - -SYNOPSIS: -Starting Date/Time: 20241209 22:44:00 -Ending Date/Time: 20241210 00:03:18 -Total Time: 01h:19m:38s -Compiles Completed: 2/2 -Tests Completed: 3/3 +Tests Completed: 193/193 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 ec87e4b41b..f15a14c9f6 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,21 +1,21 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -7f91b3de985a4799ef7f11450059958002f6aa8c +19498cc1894245fe8afe365dd87dbe5d8862b35f Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 6c497bdfce0add89af9df9ad4be4a6a1bdf48494 CICE-interface/CICE (remotes/origin/restart_fh) - 3d3d28c120a1ad343f91e0e14dd38cd0cde6ae96 CMEPS-interface/CMEPS (remotes/origin/restart_fh) + 51f8cd20c15fe39ef1168d59d5077812b6508544 CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-10) + ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) + 507ca48f4586fbeb7b0e23e5cfa9321bc3f02a1d CMEPS-interface/CMEPS (cmeps_v0.4.1-3103-g507ca48f) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 1648e176fa869d0ca9ce9ea5822b3594afd8c353 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) - e2f6c128f939faec4efa3ce88f3f9025804fb3ae MOM6-interface/MOM6 (remotes/origin/restart_fh) + 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - bdf039138204122991cea42729ee44c17ae7dd49 WW3 (6.07.1-353-gbdf03913) + 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -26,389 +26,389 @@ 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-20241206 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_198625 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241212 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1726892 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [15:13, 13:19] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:20, 11:32](3320 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:13, 15:58] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:08, 19:43](1975 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:25, 20:37](2159 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:15, 08:16](1271 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:05, 23:18](1870 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:13, 16:43] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [21:44, 19:17](1971 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:12, 06:30] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:59, 26:36](1930 MB) - -PASS -- COMPILE 's2swa_intel' [15:13, 13:14] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [18:21, 15:26](3314 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:22, 13:54](3356 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:27, 07:22](3251 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:15, 13:54](3383 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:25, 07:20](3279 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:16, 13:09](3626 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [16:12, 14:02](3346 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:18, 11:32](3220 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:22, 13:57](3363 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:13, 10:19](3522 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:00, 06:24](3616 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [24:16, 15:56](4327 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:12, 09:08](4380 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:11, 07:17](3307 MB) - -PASS -- COMPILE 's2sw_intel' [14:12, 12:26] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [11:55, 09:09](2000 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:58, 10:58](2055 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:12, 06:31] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [25:04, 22:34](3400 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:12, 05:58] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:02, 09:48](2022 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:12, 11:37] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:01, 04:22](2028 MB) - -PASS -- COMPILE 's2s_intel' [13:13, 11:48] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:42, 07:51](3041 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:42, 02:25](3016 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:39, 01:25](2481 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:12, 16:53] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:19, 13:31](3346 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:13, 15:08] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:10, 28:02](2016 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:22, 13:57](1271 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:11, 33:07](1935 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:12, 05:36] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:15, 29:53](1953 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:12, 10:45] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:24, 03:26](702 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:39, 03:12](1586 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:41, 03:15](1591 MB) -PASS -- TEST 'control_latlon_intel' [05:42, 03:14](1586 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:48, 03:14](1583 MB) -PASS -- TEST 'control_c48_intel' [13:46, 11:40](1714 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:28, 06:32](853 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [13:45, 11:38](1731 MB) -PASS -- TEST 'control_c192_intel' [13:55, 12:00](1751 MB) -PASS -- TEST 'control_c384_intel' [17:01, 13:33](1978 MB) -PASS -- TEST 'control_c384gdas_intel' [12:01, 08:04](1374 MB) -PASS -- TEST 'control_stochy_intel' [03:24, 01:44](659 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:28, 01:00](500 MB) -PASS -- TEST 'control_lndp_intel' [03:24, 01:33](656 MB) -PASS -- TEST 'control_iovr4_intel' [04:25, 02:29](656 MB) -PASS -- TEST 'control_iovr5_intel' [04:24, 02:31](651 MB) -PASS -- TEST 'control_p8_intel' [05:59, 03:41](1884 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:58, 03:09](1875 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:52, 03:36](1876 MB) -PASS -- TEST 'control_restart_p8_intel' [03:49, 02:04](1131 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:48, 03:37](1880 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:54, 02:04](1156 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:44, 03:47](1863 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:49, 03:32](1955 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:43, 06:37](1875 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:57, 04:12](1958 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:55, 03:09](1896 MB) -PASS -- TEST 'merra2_thompson_intel' [05:50, 03:24](1895 MB) -PASS -- TEST 'regional_control_intel' [07:38, 05:23](1123 MB) -PASS -- TEST 'regional_restart_intel' [04:40, 02:57](1101 MB) -PASS -- TEST 'regional_decomp_intel' [07:35, 05:40](1107 MB) -PASS -- TEST 'regional_2threads_intel' [05:37, 03:26](1113 MB) -PASS -- TEST 'regional_noquilt_intel' [07:42, 05:20](1420 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:40, 05:41](1127 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:36, 05:24](1122 MB) -PASS -- TEST 'regional_wofs_intel' [09:40, 07:08](1902 MB) - -PASS -- COMPILE 'rrfs_intel' [12:12, 10:28] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:45, 07:50](1110 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:06, 04:05](1269 MB) -PASS -- TEST 'rap_decomp_intel' [10:39, 08:10](1033 MB) -PASS -- TEST 'rap_2threads_intel' [09:37, 07:26](1187 MB) -PASS -- TEST 'rap_restart_intel' [06:48, 04:21](1101 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:42, 08:14](1106 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:39, 08:12](1042 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:46, 05:55](1132 MB) -PASS -- TEST 'hrrr_control_intel' [05:42, 04:02](1042 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:36, 04:08](1028 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:35, 03:45](1100 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:31, 02:10](996 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:47, 07:41](1099 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:28, 09:26](1988 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:28, 09:07](2058 MB) - -PASS -- COMPILE 'csawmg_intel' [11:12, 09:56] -PASS -- TEST 'control_csawmg_intel' [08:37, 06:12](1018 MB) -PASS -- TEST 'control_ras_intel' [05:23, 03:18](738 MB) - -PASS -- COMPILE 'wam_intel' [11:12, 10:01] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:52, 11:15](1666 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:18] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:54, 02:56](1851 MB) -PASS -- TEST 'regional_control_faster_intel' [06:41, 04:59](1116 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 07:38] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:48, 02:15](1609 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:51, 02:13](1613 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:25, 03:06](831 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:25, 02:52](828 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:43, 04:20](1139 MB) -PASS -- TEST 'control_ras_debug_intel' [04:25, 02:56](834 MB) -PASS -- TEST 'control_diag_debug_intel' [04:52, 02:45](1687 MB) -PASS -- TEST 'control_debug_p8_intel' [04:48, 02:39](1904 MB) -PASS -- TEST 'regional_debug_intel' [19:42, 17:36](1087 MB) -PASS -- TEST 'rap_control_debug_intel' [06:26, 05:06](1210 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:27, 05:00](1205 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:26, 05:02](1209 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:28, 05:08](1217 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:27, 04:59](1210 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:36, 05:25](1296 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:25, 05:18](1214 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:24, 05:19](1212 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:24, 05:06](1211 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:25, 05:04](1217 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:25, 04:59](1216 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:23, 04:52](1214 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:23, 08:11](1215 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 05:03](1216 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 05:04](1215 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:23, 04:59](1209 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:42, 08:49](1221 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:11, 04:26] -PASS -- TEST 'control_csawmg_debug_gnu' [04:38, 02:25](714 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:11, 04:50] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:50, 13:35](1687 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 09:50] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:02, 03:54](1139 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:44, 06:33](1057 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:41, 03:31](988 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:38, 06:14](1101 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:36, 03:14](951 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:32, 03:38](932 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:54, 04:57](1031 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:32, 01:52](922 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 10:04] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:56, 02:01](1186 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:41, 00:51](1106 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:48, 01:12](1096 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:12, 10:09] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:41, 04:15](983 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:42] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:24, 05:11](1094 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:25, 05:03](1096 MB) -PASS -- TEST 'conus13km_debug_intel' [16:51, 14:32](1239 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:55, 14:03](931 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 07:52](1166 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:47, 14:04](1313 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:52] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:27, 05:17](1136 MB) - -PASS -- COMPILE 'hafsw_intel' [14:12, 12:09] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:22, 05:12](721 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:34, 06:10](1107 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:25, 07:01](816 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:27, 14:44](852 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:32, 18:44](872 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:02, 05:30](490 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:23, 06:51](507 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:45, 02:47](369 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:33, 07:17](472 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:48, 03:45](518 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:49, 03:37](516 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:53, 04:11](584 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:30, 01:16](397 MB) -PASS -- TEST 'gnv1_nested_intel' [07:35, 04:19](1729 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:12, 05:11] ( 1462 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:56, 13:09](573 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:12, 11:35] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:10, 10:17](659 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:14, 10:19](733 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 11:41] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:33, 08:16](712 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:11, 10:40] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:29, 06:33](816 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:17, 06:35](794 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:54, 16:46](1220 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:39] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:53](1141 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:23, 01:40](1111 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:36](1027 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:45](1030 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:41](1022 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:47](1163 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:44](1163 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:42](1032 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:23, 06:33](1067 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:16, 06:23](1049 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:19, 02:49](1154 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:20, 04:20](2439 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:20, 03:59](2523 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:17] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:19, 06:22](1086 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:12, 06:43] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:20, 02:47](1154 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:58] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:30, 00:44](256 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:49](328 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:31](320 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:20] -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:34, 00:30](570 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:37, 00:17](452 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:12, 10:40] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:04, 03:43](1996 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 10:32] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:56, 08:03](1984 MB) - -PASS -- COMPILE 'atml_intel' [12:11, 10:56] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:57, 04:20](1873 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:55, 04:20](1857 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:47, 02:23](1096 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:12, 05:27] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:55, 05:44](1900 MB) - -PASS -- COMPILE 'atmw_intel' [13:12, 11:13] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:56, 01:56](1914 MB) - -PASS -- COMPILE 'atmaero_intel' [12:13, 10:36] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:00, 04:36](3172 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:02, 04:53](3099 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:47, 04:57](3106 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:12, 04:54] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_fbh_intel' [11:12, 09:49] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:29, 11:35](1130 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:12, 06:40] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:39, 08:29](1052 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:11, 06:50] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:37, 04:56](980 MB) - -PASS -- COMPILE 'atm_gnu' [06:12, 04:29] -PASS -- TEST 'control_c48_gnu' [11:37, 09:33](1510 MB) -PASS -- TEST 'control_stochy_gnu' [05:21, 03:30](496 MB) -PASS -- TEST 'control_ras_gnu' [06:21, 04:55](503 MB) -PASS -- TEST 'control_p8_gnu' [07:53, 05:15](1458 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [07:49, 05:12](1446 MB) -PASS -- TEST 'control_flake_gnu' [12:24, 10:44](543 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:12, 04:25] -PASS -- TEST 'rap_control_gnu' [13:37, 11:28](809 MB) -PASS -- TEST 'rap_decomp_gnu' [13:30, 11:35](804 MB) -PASS -- TEST 'rap_2threads_gnu' [12:34, 10:25](916 MB) -PASS -- TEST 'rap_restart_gnu' [07:41, 05:47](572 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [13:39, 11:30](835 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:35, 11:44](847 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:44, 08:30](576 MB) -PASS -- TEST 'hrrr_control_gnu' [07:40, 05:54](804 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:35, 05:59](825 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [07:33, 05:21](905 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:30, 05:54](837 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:29, 03:02](559 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:28, 03:01](648 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [13:44, 11:10](802 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:12, 03:56] -PASS -- TEST 'control_csawmg_gnu' [10:36, 08:35](737 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:33] -PASS -- TEST 'control_diag_debug_gnu' [03:43, 01:36](1267 MB) -PASS -- TEST 'regional_debug_gnu' [13:38, 11:34](737 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:24, 02:37](809 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:23, 02:32](808 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:23, 02:39](814 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:22, 02:40](817 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:33, 02:53](901 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:22, 04:05](813 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:23, 02:39](814 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:24, 02:42](807 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:22, 01:36](450 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:21, 01:48](443 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:42, 01:36](1436 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:24, 02:36](817 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:26, 02:37](819 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:39, 04:23](820 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:21] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:05] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:33, 09:47](701 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:35, 05:09](695 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:37, 09:01](741 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:29, 04:44](737 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:30, 05:17](690 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:36, 07:17](554 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:29, 02:51](530 MB) -PASS -- TEST 'conus13km_control_gnu' [05:53, 03:13](865 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:47, 06:02](866 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:45, 01:52](550 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:39] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:39, 05:52](723 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:31] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:24, 02:34](711 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:23, 02:33](709 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:53, 06:49](880 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:44, 06:52](572 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [09:41, 07:48](885 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:42, 06:52](950 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:30] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:23, 02:39](728 MB) - -PASS -- COMPILE 's2swa_gnu' [18:12, 16:32] - -PASS -- COMPILE 's2s_gnu' [17:12, 16:00] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [22:08, 19:28](1506 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [05:11, 03:08] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:12, 15:48] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [37:13, 34:19](1453 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:55] - -PASS -- COMPILE 'datm_cdeps_gnu' [17:12, 15:21] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:18, 03:01](698 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:11, 13:02] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:18, 11:45](3318 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:12, 15:54] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [25:09, 19:51](1966 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:30, 20:50](2172 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:27, 08:19](1273 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:05, 23:07](1871 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:12, 15:53] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [24:49, 19:36](1955 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 05:55] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:57, 26:28](1922 MB) + +PASS -- COMPILE 's2swa_intel' [14:11, 13:02] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [19:24, 15:28](3358 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:32, 14:11](3354 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:29, 07:30](3253 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [18:16, 14:23](3346 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:32, 07:32](3278 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [17:06, 13:30](3638 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:06, 14:15](3340 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:20, 11:34](3225 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:23, 14:10](3362 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:27, 10:35](3522 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:05, 07:01](3615 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [29:30, 16:33](4289 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [22:59, 09:33](4381 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:11, 07:22](3301 MB) + +PASS -- COMPILE 's2sw_intel' [14:12, 12:20] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [13:10, 09:18](1989 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:20, 11:12](2062 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:12, 05:52] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [25:05, 22:53](3394 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:12, 05:51] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:55, 10:05](2010 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:12, 11:28] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:02, 04:26](2021 MB) + +PASS -- COMPILE 's2s_intel' [13:11, 11:48] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:44, 07:52](3039 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:44, 02:25](3044 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:42, 01:25](2479 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:12, 16:41] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:19, 13:45](3329 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:12, 15:04] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:12, 28:09](2019 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:23, 14:08](1256 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [36:13, 33:15](1923 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:13, 05:55] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:10, 30:14](1925 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:13, 11:15] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:24, 03:21](699 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:41, 03:15](1593 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:45, 03:18](1593 MB) +PASS -- TEST 'control_latlon_intel' [05:38, 03:12](1581 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:45, 03:17](1583 MB) +PASS -- TEST 'control_c48_intel' [13:43, 11:34](1715 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:27, 06:32](858 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [13:41, 11:36](1721 MB) +PASS -- TEST 'control_c192_intel' [13:57, 12:03](1766 MB) +PASS -- TEST 'control_c384_intel' [18:01, 14:10](1996 MB) +PASS -- TEST 'control_c384gdas_intel' [12:58, 08:10](1376 MB) +PASS -- TEST 'control_stochy_intel' [03:22, 01:38](653 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:32, 00:59](504 MB) +PASS -- TEST 'control_lndp_intel' [03:23, 01:33](658 MB) +PASS -- TEST 'control_iovr4_intel' [04:25, 02:29](646 MB) +PASS -- TEST 'control_iovr5_intel' [04:25, 02:30](648 MB) +PASS -- TEST 'control_p8_intel' [05:56, 03:43](1865 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:00, 03:05](1890 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:51, 03:39](1876 MB) +PASS -- TEST 'control_restart_p8_intel' [03:49, 02:07](1130 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:51, 03:39](1872 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:58, 02:06](1156 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:52, 03:45](1866 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:49, 03:30](1952 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:43, 06:38](1876 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:53, 04:12](1950 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:56, 03:08](1897 MB) +PASS -- TEST 'merra2_thompson_intel' [05:49, 03:26](1896 MB) +PASS -- TEST 'regional_control_intel' [07:36, 05:29](1115 MB) +PASS -- TEST 'regional_restart_intel' [05:41, 02:58](1102 MB) +PASS -- TEST 'regional_decomp_intel' [07:33, 05:45](1121 MB) +PASS -- TEST 'regional_2threads_intel' [05:35, 03:35](1117 MB) +PASS -- TEST 'regional_noquilt_intel' [07:42, 05:19](1425 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:40, 05:26](1119 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:36, 05:28](1126 MB) +PASS -- TEST 'regional_wofs_intel' [08:36, 07:02](1895 MB) + +PASS -- COMPILE 'rrfs_intel' [12:11, 10:12] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:41, 07:53](1113 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:08, 04:18](1263 MB) +PASS -- TEST 'rap_decomp_intel' [10:37, 08:15](1036 MB) +PASS -- TEST 'rap_2threads_intel' [09:37, 07:24](1185 MB) +PASS -- TEST 'rap_restart_intel' [05:47, 04:05](1100 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:40, 08:05](1107 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:35, 08:14](1041 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:48, 05:56](1126 MB) +PASS -- TEST 'hrrr_control_intel' [06:42, 04:01](1044 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:40, 04:09](1031 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:36, 03:43](1094 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:32, 02:10](997 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:54, 07:49](1098 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:32, 09:32](1986 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:29, 09:15](2061 MB) + +PASS -- COMPILE 'csawmg_intel' [11:15, 10:07] +PASS -- TEST 'control_csawmg_intel' [10:38, 06:23](1020 MB) +PASS -- TEST 'control_ras_intel' [07:24, 03:20](755 MB) + +PASS -- COMPILE 'wam_intel' [11:12, 10:07] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:50, 11:28](1660 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:07] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:56, 02:48](1889 MB) +PASS -- TEST 'regional_control_faster_intel' [08:39, 04:58](1118 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:13, 07:32] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:47, 02:18](1614 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:52, 02:18](1608 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:27, 03:09](827 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:25, 02:45](830 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:41, 04:27](1135 MB) +PASS -- TEST 'control_ras_debug_intel' [04:25, 02:50](837 MB) +PASS -- TEST 'control_diag_debug_intel' [05:55, 02:55](1692 MB) +PASS -- TEST 'control_debug_p8_intel' [05:48, 02:45](1907 MB) +PASS -- TEST 'regional_debug_intel' [19:37, 17:49](1102 MB) +PASS -- TEST 'rap_control_debug_intel' [08:25, 05:00](1215 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:24, 05:11](1212 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:27, 05:00](1209 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:23, 05:08](1218 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:23, 05:04](1206 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:38, 05:23](1294 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:24, 05:16](1222 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:25, 05:07](1219 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:24, 05:05](1219 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:26, 04:59](1215 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:26, 05:01](1213 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:26, 05:02](1214 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:21, 08:17](1207 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:27, 04:55](1218 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:25, 05:03](1219 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:22, 05:11](1216 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:45, 08:54](1217 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:11, 04:29] +PASS -- TEST 'control_csawmg_debug_gnu' [04:41, 02:27](730 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 04:40] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:54, 13:52](1684 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 09:59] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:03, 03:56](1137 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:43, 06:33](1057 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:36, 03:27](997 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:41, 06:17](1098 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:33, 03:13](954 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:34, 03:40](934 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:45, 04:59](1037 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:27, 01:52](931 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 10:02] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:56, 02:03](1192 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:46, 00:54](1108 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:44, 01:11](1095 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 10:06] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:43, 04:16](985 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:44] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:22, 04:58](1097 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 05:04](1092 MB) +PASS -- TEST 'conus13km_debug_intel' [15:55, 13:55](1230 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:45, 14:30](922 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:42, 08:08](1160 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:50, 14:12](1309 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:42] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:26, 05:13](1133 MB) + +PASS -- COMPILE 'hafsw_intel' [13:12, 11:36] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:33, 05:32](720 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [11:40, 07:32](1111 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:41, 07:41](808 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:25, 14:58](838 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:40, 18:46](880 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:03, 05:43](495 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:31, 07:11](504 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:00, 02:54](366 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:54, 07:40](477 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:47, 04:03](518 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:00, 04:10](517 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:55, 04:28](577 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:14](399 MB) +PASS -- TEST 'gnv1_nested_intel' [07:36, 04:07](1724 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:11, 05:06] ( 1462 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:00, 13:32](587 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:20] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:07, 10:25](656 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:17, 10:38](732 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 11:43] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:38, 08:14](673 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:11, 10:58] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:19, 06:59](824 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:17, 07:04](806 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:59, 16:30](1230 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:12, 06:39] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:21, 02:44](1156 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:22, 01:42](1109 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:19, 02:43](1029 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:45](1034 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:41](1045 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:19, 02:44](1159 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:21, 02:45](1151 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:19, 02:36](1026 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:27, 06:25](1086 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:26, 06:29](1047 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:52](1152 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 04:04](2468 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:24, 03:59](2452 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:30] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:23, 06:31](1079 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:32] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:22, 02:48](1161 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:10] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:31, 00:44](259 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:26, 00:49](324 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:31](325 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:21] +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:33, 00:31](565 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:33, 00:16](461 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 10:54] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:02, 03:44](1979 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 10:19] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:55, 08:01](2007 MB) + +PASS -- COMPILE 'atml_intel' [12:12, 10:57] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:14, 04:26](1836 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:02, 04:19](1867 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:48, 02:21](1100 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:12, 05:55] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:01, 05:53](1882 MB) + +PASS -- COMPILE 'atmw_intel' [12:12, 10:58] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:49, 01:57](1918 MB) + +PASS -- COMPILE 'atmaero_intel' [12:11, 10:35] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:01, 04:09](3191 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:55, 04:59](3098 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:51, 05:04](3103 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:44] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_fbh_intel' [11:12, 09:54] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:31, 11:50](1124 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:11, 06:41] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:41, 08:25](1051 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:12, 06:48] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:41, 04:56](983 MB) + +PASS -- COMPILE 'atm_gnu' [06:11, 04:27] +PASS -- TEST 'control_c48_gnu' [11:46, 09:39](1509 MB) +PASS -- TEST 'control_stochy_gnu' [05:25, 03:30](500 MB) +PASS -- TEST 'control_ras_gnu' [06:22, 04:56](503 MB) +PASS -- TEST 'control_p8_gnu' [07:53, 05:19](1447 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [07:47, 05:15](1447 MB) +PASS -- TEST 'control_flake_gnu' [12:25, 10:39](537 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:12, 04:16] +PASS -- TEST 'rap_control_gnu' [13:37, 11:31](807 MB) +PASS -- TEST 'rap_decomp_gnu' [13:33, 11:43](807 MB) +PASS -- TEST 'rap_2threads_gnu' [12:42, 10:32](917 MB) +PASS -- TEST 'rap_restart_gnu' [07:46, 05:56](573 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:42, 11:27](806 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:32, 11:44](839 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:45, 08:27](577 MB) +PASS -- TEST 'hrrr_control_gnu' [07:49, 05:55](801 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:42, 05:59](826 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [07:45, 05:21](902 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:39, 05:59](839 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [05:45, 03:13](558 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:33, 03:09](651 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [13:50, 11:11](805 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:12, 03:54] +PASS -- TEST 'control_csawmg_gnu' [10:42, 08:35](734 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:12, 06:37] +PASS -- TEST 'control_diag_debug_gnu' [03:48, 01:41](1268 MB) +PASS -- TEST 'regional_debug_gnu' [13:37, 11:41](743 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:27, 02:38](822 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:27, 02:40](823 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:25, 02:40](818 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:27, 02:35](817 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:55, 02:50](909 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:23, 04:08](819 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [05:29, 02:38](819 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [05:27, 02:39](816 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:24, 01:35](456 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:24, 01:45](448 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:42, 01:42](1432 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:23, 02:46](816 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:28, 02:47](821 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:42, 04:35](827 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:12, 02:25] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:12, 04:06] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:39, 09:52](697 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:38, 05:22](694 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [11:36, 09:12](742 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:34, 04:52](738 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:33, 05:23](692 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:35, 07:18](551 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:30, 02:44](530 MB) +PASS -- TEST 'conus13km_control_gnu' [06:03, 03:24](874 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:43, 05:45](869 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:45, 01:56](549 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:12, 09:47] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:48, 06:14](723 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:12, 06:35] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:29, 02:47](708 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:29, 02:38](707 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:55, 07:04](880 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:51, 07:07](567 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [09:45, 07:42](882 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:43, 06:54](947 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:13, 06:38] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:23, 02:40](727 MB) + +PASS -- COMPILE 's2swa_gnu' [18:12, 16:29] + +PASS -- COMPILE 's2s_gnu' [17:13, 15:49] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [21:10, 18:56](1507 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [05:12, 03:08] + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 15:51] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [34:44, 31:31](1443 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:03] + +PASS -- COMPILE 'datm_cdeps_gnu' [17:12, 15:23] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:20, 03:07](697 MB) SYNOPSIS: -Starting Date/Time: 20241209 03:11:58 -Ending Date/Time: 20241209 06:06:55 -Total Time: 02h:55m:12s +Starting Date/Time: 20241213 19:39:36 +Ending Date/Time: 20241213 22:33:23 +Total Time: 02h:54m:07s Compiles Completed: 61/61 Tests Completed: 249/249 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 71d678769d..5f63170f1e 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,15 +1,15 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -7f91b3de985a4799ef7f11450059958002f6aa8c +19498cc1894245fe8afe365dd87dbe5d8862b35f 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) - 6c497bdfce0add89af9df9ad4be4a6a1bdf48494 CICE-interface/CICE (remotes/origin/restart_fh) + 51f8cd20c15fe39ef1168d59d5077812b6508544 CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-10) + ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - 3d3d28c120a1ad343f91e0e14dd38cd0cde6ae96 CMEPS-interface/CMEPS (remotes/origin/restart_fh) + 507ca48f4586fbeb7b0e23e5cfa9321bc3f02a1d CMEPS-interface/CMEPS (cmeps_v0.4.1-3103-g507ca48f) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) @@ -23,11 +23,11 @@ Submodule hashes used in testing: 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) - e2f6c128f939faec4efa3ce88f3f9025804fb3ae MOM6-interface/MOM6 (remotes/origin/restart_fh) + 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - bdf039138204122991cea42729ee44c17ae7dd49 WW3 (6.07.1-353-gbdf03913) + 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,386 +38,386 @@ 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-20241206 -COMPARISON DIRECTORY: /work2/noaa/epic/nandoam/stmp/hercules/nandoam/FV3_RT/rt_2040785 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20241212 +COMPARISON DIRECTORY: /work2/noaa/epic/nandoam/stmp/hercules/nandoam/FV3_RT/rt_2796377 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:10, 11:17] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [21:00, 15:03](2133 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:10, 16:41] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:06, 17:10](1999 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:27, 18:10](2292 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:18, 07:07](1358 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:57, 18:25](1910 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:10, 19:15] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:37, 16:47](1984 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:10, 06:03] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:09, 25:06](1970 MB) - -PASS -- COMPILE 's2swa_intel' [14:10, 12:15] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [21:02, 16:21](2203 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:04, 15:29](2197 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:03, 07:34](1969 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [20:54, 15:28](2216 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:11, 07:46](1730 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [23:01, 17:31](2571 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [20:01, 15:17](2188 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:59, 12:52](2095 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [20:03, 15:32](2203 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [21:33, 16:54](2988 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:01, 06:07](2903 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [26:09, 18:15](3851 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:49, 10:17](3680 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:57, 07:50](2101 MB) - -PASS -- COMPILE 's2sw_intel' [13:10, 11:50] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [17:52, 15:04](2011 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:58, 11:07](2114 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:10, 06:04] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [23:00, 19:59](2228 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:10, 05:36] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:53, 08:57](2036 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:10, 11:13] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:54, 05:45](2070 MB) - -PASS -- COMPILE 's2s_intel' [13:10, 11:20] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [12:39, 07:16](3041 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [08:38, 03:26](3019 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:38, 01:08](2466 MB) - -PASS -- COMPILE 's2swa_faster_intel' [14:10, 11:38] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:01, 13:39](2208 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:10, 15:37] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:55, 25:00](2066 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:03, 11:26](1397 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:51, 25:56](1982 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:10, 05:16] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:50, 28:45](2006 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:10, 08:57] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:19, 03:00](712 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:28, 02:54](1581 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:32, 03:00](1607 MB) -PASS -- TEST 'control_latlon_intel' [05:26, 02:47](1596 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:33, 02:51](1589 MB) -PASS -- TEST 'control_c48_intel' [13:32, 10:17](1702 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:22, 05:54](837 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [12:29, 10:26](1693 MB) -PASS -- TEST 'control_c192_intel' [12:39, 10:20](1756 MB) -PASS -- TEST 'control_c384_intel' [15:14, 12:10](2018 MB) -PASS -- TEST 'control_c384gdas_intel' [10:50, 07:19](1488 MB) -PASS -- TEST 'control_stochy_intel' [03:19, 01:31](655 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:26, 00:54](531 MB) -PASS -- TEST 'control_lndp_intel' [03:17, 01:27](666 MB) -PASS -- TEST 'control_iovr4_intel' [04:18, 02:11](662 MB) -PASS -- TEST 'control_iovr5_intel' [04:18, 02:10](664 MB) -PASS -- TEST 'control_p8_intel' [05:49, 03:22](1881 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:50, 03:28](1888 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:47, 04:07](1872 MB) -PASS -- TEST 'control_restart_p8_intel' [03:38, 01:47](1168 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:41, 04:21](1879 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:52, 01:48](1217 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:38, 03:44](1880 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:43, 03:04](1961 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:27, 05:39](1879 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:48, 03:40](1963 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:51, 02:44](1903 MB) -PASS -- TEST 'merra2_thompson_intel' [04:57, 03:01](1901 MB) -PASS -- TEST 'regional_control_intel' [06:26, 04:38](1227 MB) -PASS -- TEST 'regional_restart_intel' [04:27, 02:40](1178 MB) -PASS -- TEST 'regional_decomp_intel' [06:25, 04:55](1212 MB) -PASS -- TEST 'regional_2threads_intel' [04:23, 03:02](1200 MB) -PASS -- TEST 'regional_noquilt_intel' [06:28, 04:37](1551 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:28, 04:42](1225 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:23, 04:36](1222 MB) -PASS -- TEST 'regional_wofs_intel' [07:24, 06:03](2079 MB) - -PASS -- COMPILE 'rrfs_intel' [10:10, 08:48] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:46, 06:39](1188 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:47, 03:30](1416 MB) -PASS -- TEST 'rap_decomp_intel' [08:38, 06:57](1146 MB) -PASS -- TEST 'rap_2threads_intel' [08:36, 06:20](1381 MB) -PASS -- TEST 'rap_restart_intel' [05:40, 03:33](1141 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:45, 06:38](1235 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:33, 07:08](1170 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:51, 04:59](1189 MB) -PASS -- TEST 'hrrr_control_intel' [05:40, 03:26](1083 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:36, 03:39](1044 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:34, 03:15](1106 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:34, 01:59](1018 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:53, 06:40](1203 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:20, 09:22](2004 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:20, 09:03](2175 MB) - -PASS -- COMPILE 'csawmg_intel' [10:10, 08:28] -PASS -- TEST 'control_csawmg_intel' [07:25, 05:33](1049 MB) -PASS -- TEST 'control_ras_intel' [04:17, 02:52](837 MB) - -PASS -- COMPILE 'wam_intel' [10:10, 08:47] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [11:35, 09:54](1659 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:10, 08:27] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:55, 03:25](1888 MB) -PASS -- TEST 'regional_control_faster_intel' [06:26, 04:19](1226 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:10, 07:14] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:30, 01:57](1613 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:32, 01:57](1626 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:17, 02:42](829 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:17, 02:31](837 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:27, 04:31](1145 MB) -PASS -- TEST 'control_ras_debug_intel' [04:17, 02:32](842 MB) -PASS -- TEST 'control_diag_debug_intel' [04:32, 02:32](1700 MB) -PASS -- TEST 'control_debug_p8_intel' [04:31, 02:41](1908 MB) -PASS -- TEST 'regional_debug_intel' [18:27, 16:23](1146 MB) -PASS -- TEST 'rap_control_debug_intel' [10:19, 08:07](1229 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:18, 04:17](1226 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:19, 04:21](1215 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:17, 04:32](1230 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:17, 04:23](1233 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:25, 04:31](1315 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:18, 04:21](1223 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:17, 04:24](1230 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:18, 04:16](1233 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:18, 04:12](1226 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:18, 04:22](1219 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:17, 04:16](1223 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:19, 07:06](1228 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:16, 04:29](1221 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:17, 04:26](1227 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:18, 04:13](1215 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:49, 07:21](1229 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:10, 04:27] -PASS -- TEST 'control_csawmg_debug_gnu' [03:26, 01:57](1041 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:10, 04:41] ( 837 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:10, 08:03] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:44, 03:14](1244 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:42, 05:27](1147 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:39, 02:55](1015 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:40, 05:25](1282 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:38, 02:42](1040 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:43, 03:05](994 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:50, 04:08](1091 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:38, 01:37](950 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:10, 08:21] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:35, 01:42](1277 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:26, 00:43](1189 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:29, 01:02](1137 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:10, 08:17] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:28, 03:52](1074 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:10, 03:49] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:17, 04:43](1099 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:18, 04:48](1101 MB) -PASS -- TEST 'conus13km_debug_intel' [13:30, 11:52](1346 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [14:29, 12:28](997 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:25, 08:00](1241 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:32, 12:10](1410 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:10, 03:46] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:19, 04:13](1170 MB) - -PASS -- COMPILE 'hafsw_intel' [12:10, 10:33] ( 1 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:03, 05:21](843 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:21, 05:00](1273 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:11, 07:03](924 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:04, 14:20](949 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:09, 17:07](995 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:50, 05:27](598 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:15, 06:56](606 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:40, 02:41](438 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:51, 07:38](568 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:44, 03:55](604 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:41, 03:42](608 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:45, 04:47](662 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:24, 01:15](446 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:10, 04:40] ( 1462 warnings 1490 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:45, 13:03](628 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:10, 09:29] ( 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [20:51, 18:20](753 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [21:54, 19:26](839 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:11, 10:12] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:19, 11:56](806 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:10, 10:18] ( 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:03, 05:32](940 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:02, 05:37](896 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:44, 16:35](1344 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:10, 07:30] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:15, 02:11](1145 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:19](1111 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:14, 02:04](1018 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:15, 02:06](1031 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:14, 02:08](1016 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:15, 02:10](1161 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:15, 02:10](1160 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:14, 02:06](1020 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:48, 04:54](1157 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:49, 04:51](1153 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:10](1155 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:15, 02:59](2462 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:15, 03:02](2400 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:48] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:15, 05:15](1085 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:10, 05:26] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:15, 02:08](1159 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 00:57] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:25, 00:53](331 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:21, 00:50](575 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:22, 00:33](575 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:11, 09:06] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:48, 03:14](2017 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:11, 08:46] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:42, 07:09](2024 MB) - -PASS -- COMPILE 'atml_intel' [11:11, 09:17] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:55, 05:57](1880 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:51, 06:00](1885 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:34, 03:03](1145 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:10, 04:22] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:51, 06:02](1925 MB) - -PASS -- COMPILE 'atmw_intel' [10:10, 09:02] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:46, 01:47](1926 MB) - -PASS -- COMPILE 'atmaero_intel' [10:10, 08:36] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:43, 03:47](2004 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:44, 04:28](1782 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:40, 04:30](1798 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:10, 03:37] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [20:21, 17:35](4513 MB) - -PASS -- COMPILE 'atm_fbh_intel' [09:10, 07:52] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:23, 09:47](1111 MB) - -PASS -- COMPILE 'datm_cdeps_intelllvm' [12:10, 10:44] -PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [04:15, 02:19](1152 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [04:10, 02:21] -PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [07:15, 06:01](1075 MB) - -PASS -- COMPILE 'atm_gnu' [06:10, 04:40] -PASS -- TEST 'control_c48_gnu' [09:39, 07:46](1545 MB) -PASS -- TEST 'control_stochy_gnu' [04:19, 02:30](718 MB) -PASS -- TEST 'control_ras_gnu' [05:17, 03:48](726 MB) -PASS -- TEST 'control_p8_gnu' [06:48, 04:28](1716 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:36, 04:00](1696 MB) -PASS -- TEST 'control_flake_gnu' [06:20, 04:30](808 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:10, 04:37] -PASS -- TEST 'rap_control_gnu' [10:35, 08:23](1075 MB) -PASS -- TEST 'rap_decomp_gnu' [10:33, 08:18](1077 MB) -PASS -- TEST 'rap_2threads_gnu' [09:45, 07:22](1116 MB) -PASS -- TEST 'rap_restart_gnu' [07:53, 04:06](877 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [09:47, 08:03](1071 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:44, 08:15](1070 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:47, 06:00](876 MB) -PASS -- TEST 'hrrr_control_gnu' [05:48, 04:09](1059 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:33, 04:04](1128 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:33, 03:35](1021 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:31, 04:07](1060 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:20, 02:07](876 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:19, 02:13](924 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [09:51, 07:56](1068 MB) - -PASS -- COMPILE 'csawmg_gnu' [06:10, 04:31] -PASS -- TEST 'control_csawmg_gnu' [08:25, 07:01](1053 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [10:10, 08:50] -PASS -- TEST 'control_diag_debug_gnu' [03:30, 01:19](1620 MB) -PASS -- TEST 'regional_debug_gnu' [09:26, 07:31](1119 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:17, 02:14](1087 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:23, 02:08](1084 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:19, 02:14](1083 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:17, 02:19](1083 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:25, 02:24](1260 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:16, 03:34](1083 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:17, 02:19](1090 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:16, 02:17](1081 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:16, 01:14](720 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:18, 01:16](721 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:32, 01:20](1714 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:17, 02:14](1088 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:19, 02:06](1092 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:46, 03:43](1090 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:10, 03:00] -PASS -- TEST 'control_wam_debug_gnu' [07:32, 05:18](1554 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:11, 05:36] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:31, 07:35](952 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:47, 03:51](940 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:41, 06:57](968 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:36, 03:27](880 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:36, 03:54](941 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:38, 05:49](853 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:20, 02:05](854 MB) -PASS -- TEST 'conus13km_control_gnu' [04:41, 02:43](1256 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:30, 01:17](1162 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [04:29, 01:35](919 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [15:11, 13:13] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:30, 04:31](982 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [12:11, 10:55] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:17, 02:07](967 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:24, 02:03](964 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:31, 05:23](1277 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:29, 05:32](947 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [06:27, 03:27](1186 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:27, 05:40](1347 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [14:11, 12:18] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [05:18, 02:13](995 MB) - -PASS -- COMPILE 's2swa_gnu' [22:11, 20:54] - -PASS -- COMPILE 's2s_gnu' [21:11, 19:09] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [22:00, 18:19](2707 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [13:10, 11:22] - -PASS -- COMPILE 's2sw_pdlib_gnu' [21:10, 19:14] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [43:56, 40:22](3023 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [11:10, 09:22] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [18:46, 15:36](2926 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [17:10, 15:12] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:15, 02:19](769 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:11, 12:54] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:58, 13:47](2137 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 18:24] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [29:10, 18:04](2006 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:31, 19:42](2304 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:27, 07:55](1327 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [31:08, 19:28](1904 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:11, 15:46] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [31:38, 17:57](1975 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 06:40] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:13, 24:51](1970 MB) + +PASS -- COMPILE 's2swa_intel' [14:11, 12:14] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [31:19, 16:25](2208 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [32:09, 15:14](2196 MB) +PASS -- TEST 'cpld_restart_p8_intel' [16:16, 08:52](1991 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [30:06, 15:38](2226 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:13, 07:51](1742 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [18:46, 16:40](2564 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [30:06, 15:20](2191 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:56, 12:01](2102 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [32:10, 15:25](2205 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [18:41, 15:46](2986 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:12, 06:33](2902 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [28:44, 18:13](3847 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:14, 10:09](3681 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [14:56, 07:58](2114 MB) + +PASS -- COMPILE 's2sw_intel' [12:11, 11:05] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:51, 13:53](2015 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:56, 10:32](2119 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:26] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [23:06, 19:40](2243 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:11, 06:15] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:55, 09:41](2047 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:11, 11:13] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:06, 04:34](2063 MB) + +PASS -- COMPILE 's2s_intel' [12:12, 10:59] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:41, 06:10](3033 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:43, 01:56](3024 MB) +PASS -- TEST 'cpld_restart_c48_intel' [17:41, 02:18](2473 MB) + +PASS -- COMPILE 's2swa_faster_intel' [15:11, 12:19] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [24:07, 15:29](2208 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 18:05] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:04, 25:40](2065 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:09, 13:16](1427 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:51, 26:31](1996 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:11, 05:33] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [43:53, 28:26](1994 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:11, 09:25] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [12:21, 04:22](723 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [10:30, 02:56](1580 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [10:35, 02:51](1607 MB) +PASS -- TEST 'control_latlon_intel' [10:28, 02:45](1581 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:35, 02:55](1596 MB) +PASS -- TEST 'control_c48_intel' [17:32, 10:18](1706 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [13:26, 05:55](830 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [17:32, 10:19](1702 MB) +PASS -- TEST 'control_c192_intel' [17:43, 10:20](1779 MB) +PASS -- TEST 'control_c384_intel' [22:23, 14:52](2010 MB) +PASS -- TEST 'control_c384gdas_intel' [13:45, 07:31](1497 MB) +PASS -- TEST 'control_stochy_intel' [05:17, 01:31](673 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:23, 00:59](540 MB) +PASS -- TEST 'control_lndp_intel' [04:16, 01:22](665 MB) +PASS -- TEST 'control_iovr4_intel' [04:17, 02:09](655 MB) +PASS -- TEST 'control_iovr5_intel' [04:19, 02:17](657 MB) +PASS -- TEST 'control_p8_intel' [05:50, 03:14](1883 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:53, 04:10](1904 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:50, 04:11](1881 MB) +PASS -- TEST 'control_restart_p8_intel' [03:49, 01:51](1154 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:45, 04:26](1867 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:56, 01:50](1202 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:44, 04:16](1875 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:46, 04:31](1952 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:27, 06:41](1881 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:49, 04:21](1967 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:51, 03:52](1904 MB) +PASS -- TEST 'merra2_thompson_intel' [05:56, 03:11](1904 MB) +PASS -- TEST 'regional_control_intel' [09:31, 05:57](1221 MB) +PASS -- TEST 'regional_restart_intel' [07:29, 03:31](1182 MB) +PASS -- TEST 'regional_decomp_intel' [08:22, 05:47](1209 MB) +PASS -- TEST 'regional_2threads_intel' [04:31, 02:59](1182 MB) +PASS -- TEST 'regional_noquilt_intel' [06:29, 04:33](1547 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:30, 04:35](1226 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:24, 04:45](1234 MB) +PASS -- TEST 'regional_wofs_intel' [07:28, 06:01](2081 MB) + +PASS -- COMPILE 'rrfs_intel' [11:11, 09:30] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:47, 06:48](1202 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:47, 03:29](1382 MB) +PASS -- TEST 'rap_decomp_intel' [09:38, 07:14](1138 MB) +PASS -- TEST 'rap_2threads_intel' [08:42, 06:32](1368 MB) +PASS -- TEST 'rap_restart_intel' [06:40, 03:33](1153 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:38, 06:44](1208 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:36, 06:57](1153 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:04, 05:10](1203 MB) +PASS -- TEST 'hrrr_control_intel' [05:49, 03:26](1086 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:33, 03:36](1043 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:37, 03:13](1116 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:32, 01:59](1017 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:55, 06:39](1202 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [15:20, 09:36](1998 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:19, 09:17](2196 MB) + +PASS -- COMPILE 'csawmg_intel' [10:11, 09:04] +PASS -- TEST 'control_csawmg_intel' [13:29, 06:56](1054 MB) +PASS -- TEST 'control_ras_intel' [09:17, 02:54](822 MB) + +PASS -- COMPILE 'wam_intel' [11:10, 09:31] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [16:34, 10:11](1660 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:10, 09:26] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [08:54, 03:17](1906 MB) +PASS -- TEST 'regional_control_faster_intel' [10:27, 05:19](1224 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [12:11, 08:00] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:28, 02:02](1619 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:32, 02:01](1632 MB) +PASS -- TEST 'control_stochy_debug_intel' [08:16, 02:34](844 MB) +PASS -- TEST 'control_lndp_debug_intel' [08:17, 02:33](841 MB) +PASS -- TEST 'control_csawmg_debug_intel' [09:23, 04:52](1144 MB) +PASS -- TEST 'control_ras_debug_intel' [06:16, 02:33](835 MB) +PASS -- TEST 'control_diag_debug_intel' [05:33, 02:27](1693 MB) +PASS -- TEST 'control_debug_p8_intel' [04:31, 02:50](1908 MB) +PASS -- TEST 'regional_debug_intel' [17:31, 15:23](1146 MB) +PASS -- TEST 'rap_control_debug_intel' [06:16, 04:23](1217 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:23, 04:13](1218 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:18, 04:18](1230 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:17, 04:17](1230 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:17, 04:23](1224 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:27, 04:37](1319 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:18, 04:41](1232 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:17, 04:24](1240 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:17, 04:18](1237 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:17, 07:52](1236 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:17, 04:28](1227 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:19, 04:20](1234 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:17, 06:59](1219 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:17, 04:20](1221 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:17, 04:26](1223 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:17, 04:18](1234 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:51, 07:15](1213 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [08:11, 04:54] +PASS -- TEST 'control_csawmg_debug_gnu' [03:33, 02:06](1039 MB) + +PASS -- COMPILE 'wam_debug_intel' [12:11, 06:43] ( 837 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:11, 11:04] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:53, 03:12](1254 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:48, 05:37](1162 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:53, 02:53](1040 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:31, 05:15](1290 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:35, 02:46](1033 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:36, 03:04](1021 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [15:48, 04:16](1089 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [13:27, 01:36](950 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:11, 13:12] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:36, 01:39](1301 MB) +PASS -- TEST 'conus13km_2threads_intel' [11:27, 00:52](1193 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [11:27, 01:04](1145 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:11, 13:27] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:27, 03:55](1093 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:11, 07:05] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:34](1105 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:18, 04:27](1102 MB) +PASS -- TEST 'conus13km_debug_intel' [13:34, 12:02](1341 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [23:33, 12:23](999 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:26, 07:46](1242 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [22:27, 12:04](1396 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:11, 04:34] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [13:18, 04:23](1166 MB) + +PASS -- COMPILE 'hafsw_intel' [20:11, 14:47] ( 1 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:06, 05:39](840 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:23, 06:05](1253 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [19:13, 07:38](919 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [21:11, 14:42](945 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:12, 17:04](976 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [19:53, 07:11](602 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:15, 09:25](610 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:42, 03:41](435 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:00, 10:05](543 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [15:45, 04:57](600 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [15:43, 04:45](599 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [15:45, 05:14](655 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [12:24, 01:45](454 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [14:10, 08:21] ( 1462 warnings 1490 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [21:43, 11:51](634 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:10, 11:05] ( 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [27:50, 18:48](733 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [31:52, 18:46](799 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:10, 11:18] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [23:25, 11:55](814 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:10, 13:13] ( 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [18:10, 05:44](926 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [19:03, 05:52](907 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [27:43, 16:33](1345 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [13:11, 11:41] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [13:16, 02:12](1133 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:21](1110 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [12:15, 02:06](1014 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [11:14, 02:07](1024 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [09:15, 02:08](1020 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [09:15, 02:09](1152 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [09:15, 02:12](1148 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [09:15, 02:06](1024 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:57, 04:57](1170 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:50, 04:56](1157 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:15, 02:10](1148 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:15, 03:01](2458 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:15, 03:03](2418 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:10, 05:41] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:16, 05:10](1085 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:10, 06:06] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [06:15, 02:10](1136 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:10, 02:24] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:27, 00:57](340 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:20, 00:57](576 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [20:25, 00:31](574 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:10, 09:01] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [17:47, 04:26](2016 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:10, 09:01] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [17:43, 08:46](2030 MB) + +PASS -- COMPILE 'atml_intel' [15:11, 13:26] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [16:02, 06:46](1898 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [24:53, 06:35](1889 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:32, 03:16](1153 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:10, 07:00] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [25:52, 08:31](1926 MB) + +PASS -- COMPILE 'atmw_intel' [16:11, 14:18] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [19:49, 02:55](1939 MB) + +PASS -- COMPILE 'atmaero_intel' [14:10, 12:41] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [21:44, 05:09](2010 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [21:44, 04:32](1778 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [21:39, 04:34](1791 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [11:10, 09:04] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [34:28, 17:13](4534 MB) + +PASS -- COMPILE 'atm_fbh_intel' [18:11, 12:30] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [26:25, 09:56](1106 MB) + +PASS -- COMPILE 'datm_cdeps_intelllvm' [28:11, 22:48] +PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [18:16, 02:18](1135 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [07:10, 03:55] +PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [22:15, 06:05](1077 MB) + +PASS -- COMPILE 'atm_gnu' [09:11, 05:31] +PASS -- TEST 'control_c48_gnu' [23:40, 07:48](1544 MB) +PASS -- TEST 'control_stochy_gnu' [17:25, 02:24](721 MB) +PASS -- TEST 'control_ras_gnu' [17:21, 03:52](732 MB) +PASS -- TEST 'control_p8_gnu' [24:52, 05:26](1718 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [25:45, 05:19](1719 MB) +PASS -- TEST 'control_flake_gnu' [23:22, 04:44](791 MB) + +PASS -- COMPILE 'rrfs_gnu' [09:11, 06:04] +PASS -- TEST 'rap_control_gnu' [28:41, 08:22](1072 MB) +PASS -- TEST 'rap_decomp_gnu' [28:34, 08:18](1070 MB) +PASS -- TEST 'rap_2threads_gnu' [27:56, 07:33](1116 MB) +PASS -- TEST 'rap_restart_gnu' [06:50, 04:12](884 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [27:41, 08:12](1073 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [27:38, 08:29](1074 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:42, 06:22](875 MB) +PASS -- TEST 'hrrr_control_gnu' [22:39, 04:21](1060 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [20:44, 04:17](1127 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [16:33, 03:46](1006 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [14:33, 04:16](1060 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [05:30, 02:14](874 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:30, 02:04](925 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [17:54, 08:07](1069 MB) + +PASS -- COMPILE 'csawmg_gnu' [08:10, 05:23] +PASS -- TEST 'control_csawmg_gnu' [19:28, 11:32](1059 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [24:10, 22:30] +PASS -- TEST 'control_diag_debug_gnu' [08:34, 01:26](1619 MB) +PASS -- TEST 'regional_debug_gnu' [15:29, 08:04](1130 MB) +PASS -- TEST 'rap_control_debug_gnu' [07:17, 02:22](1089 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [07:17, 02:14](1076 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [06:16, 02:32](1084 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [05:16, 02:14](1087 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:33, 02:27](1266 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:18, 03:26](1085 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:17, 02:15](1087 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:17, 02:17](1089 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:16, 01:22](718 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:16, 01:17](714 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:29, 01:15](1693 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:18, 02:05](1090 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:18, 02:13](1091 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:55, 03:35](1094 MB) + +PASS -- COMPILE 'wam_debug_gnu' [13:11, 12:01] +PASS -- TEST 'control_wam_debug_gnu' [07:33, 05:30](1558 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:10, 06:05] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:47, 07:57](956 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:48, 04:09](962 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:35, 07:00](959 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:39, 03:37](872 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:40, 03:57](939 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:40, 05:51](854 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:20, 02:06](852 MB) +PASS -- TEST 'conus13km_control_gnu' [05:39, 02:40](1254 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:27, 01:26](1163 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:28, 01:37](938 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [23:14, 21:53] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:38, 04:41](984 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [09:11, 07:58] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:20, 02:07](969 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:17, 02:04](964 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:31, 05:33](1276 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [09:30, 05:52](945 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [06:27, 03:30](1187 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:26, 05:41](1344 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:48] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:18, 02:10](996 MB) + +PASS -- COMPILE 's2swa_gnu' [18:11, 16:52] + +PASS -- COMPILE 's2s_gnu' [18:11, 16:19] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [20:13, 17:04](2694 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [24:11, 21:53] + +PASS -- COMPILE 's2sw_pdlib_gnu' [30:11, 27:48] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [43:58, 41:53](2902 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [23:13, 19:50] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [19:06, 16:28](3033 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [26:10, 23:00] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:15, 02:24](765 MB) SYNOPSIS: -Starting Date/Time: 20241208 21:44:53 -Ending Date/Time: 20241208 23:50:42 -Total Time: 02h:06m:11s +Starting Date/Time: 20241213 13:42:54 +Ending Date/Time: 20241213 16:22:14 +Total Time: 02h:40m:03s Compiles Completed: 60/60 Tests Completed: 248/248 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 3d2d628540..b2f7ed858a 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,15 +1,15 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -7f91b3de985a4799ef7f11450059958002f6aa8c +19498cc1894245fe8afe365dd87dbe5d8862b35f 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) - 6c497bdfce0add89af9df9ad4be4a6a1bdf48494 CICE-interface/CICE (remotes/origin/restart_fh) + 51f8cd20c15fe39ef1168d59d5077812b6508544 CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-10) + ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - 3d3d28c120a1ad343f91e0e14dd38cd0cde6ae96 CMEPS-interface/CMEPS (remotes/origin/restart_fh) + 507ca48f4586fbeb7b0e23e5cfa9321bc3f02a1d CMEPS-interface/CMEPS (cmeps_v0.4.1-3103-g507ca48f) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) @@ -23,11 +23,11 @@ Submodule hashes used in testing: 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) - e2f6c128f939faec4efa3ce88f3f9025804fb3ae MOM6-interface/MOM6 (remotes/origin/restart_fh) + 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - bdf039138204122991cea42729ee44c17ae7dd49 WW3 (6.07.1-353-gbdf03913) + 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,340 +38,260 @@ 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-20241206 -COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1163981 +BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20241212 +COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1986325 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [45:14, 43:59] ( 1 warnings 1397 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [29:17, 13:36](2004 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:14, 47:28] ( 1 warnings 1444 remarks ) -FAILED: TEST TIMED OUT -- TEST 'cpld_control_gfsv17_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'cpld_control_gfsv17_iau_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_gfsv17_intel' [, ]( MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [43:12, 28:08](1829 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [49:14, 48:07] ( 1 warnings 1441 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [38:50, 24:36](1856 MB) - -PASS -- COMPILE 's2swa_intel' [45:14, 43:26] ( 1 warnings 1416 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [33:21, 17:48](2015 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [36:28, 16:58](2049 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:15, 08:55](1696 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [33:13, 17:28](2072 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [11:19, 09:03](1719 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [32:10, 16:32](2325 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [33:07, 17:18](2026 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [30:17, 14:20](1979 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [33:25, 17:18](2039 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [28:16, 09:32](1973 MB) - -PASS -- COMPILE 's2sw_intel' [43:14, 41:59] ( 1 warnings 1301 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [27:23, 10:06](1895 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [32:33, 14:47](1941 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:11, 07:02] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [40:24, 27:33](2083 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:11, 05:59] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [19:59, 11:41](1929 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [39:13, 37:16] ( 1019 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:14, 05:31](1965 MB) - -PASS -- COMPILE 's2s_intel' [44:14, 37:58] ( 1 warnings 1042 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [12:47, 10:22](3004 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:47, 03:06](3006 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:47, 01:47](2452 MB) - -PASS -- COMPILE 's2swa_faster_intel' [44:19, 32:45] ( 1 warnings 1632 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [19:22, 16:17](2052 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [58:16, 46:32] ( 1 warnings 1361 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [38:18, 33:16](1936 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [19:18, 16:37](1133 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [41:16, 39:12](1905 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:12, 06:08] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:07, 38:41](1942 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [39:13, 37:43] ( 1 warnings 1125 remarks ) -PASS -- TEST 'control_flake_intel' [06:35, 04:23](651 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [07:07, 04:16](1531 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:08, 04:23](1541 MB) -PASS -- TEST 'control_latlon_intel' [07:05, 04:13](1539 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:13, 04:15](1524 MB) -PASS -- TEST 'control_c48_intel' [23:14, 18:12](1699 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:38, 10:13](832 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [23:14, 18:11](1702 MB) -PASS -- TEST 'control_c192_intel' [19:21, 16:15](1687 MB) -PASS -- TEST 'control_c384_intel' [26:14, 23:05](1815 MB) -PASS -- TEST 'control_c384gdas_intel' [21:06, 13:18](1007 MB) -PASS -- TEST 'control_stochy_intel' [04:31, 02:07](604 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:25, 01:13](438 MB) -PASS -- TEST 'control_lndp_intel' [03:31, 02:03](603 MB) -PASS -- TEST 'control_iovr4_intel' [05:34, 03:15](604 MB) -PASS -- TEST 'control_iovr5_intel' [05:34, 03:14](603 MB) -PASS -- TEST 'control_p8_intel' [08:25, 04:56](1820 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [11:33, 03:55](1835 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:17, 04:46](1817 MB) -PASS -- TEST 'control_restart_p8_intel' [04:55, 02:34](1056 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:22, 04:45](1818 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:53, 02:30](1057 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:19, 04:48](1814 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:18, 04:39](1909 MB) -PASS -- TEST 'control_p8_lndp_intel' [11:10, 08:35](1829 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [12:20, 05:12](1891 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:22, 04:02](1846 MB) -PASS -- TEST 'merra2_thompson_intel' [07:17, 04:27](1835 MB) -PASS -- TEST 'regional_control_intel' [14:04, 07:09](1036 MB) -PASS -- TEST 'regional_restart_intel' [08:39, 03:51](1027 MB) -PASS -- TEST 'regional_decomp_intel' [11:03, 07:27](1036 MB) -PASS -- TEST 'regional_2threads_intel' [07:03, 04:27](1029 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [10:41, 07:12](1042 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:35, 07:07](1045 MB) - -PASS -- COMPILE 'rrfs_intel' [36:13, 35:04] ( 3 warnings 1101 remarks ) -PASS -- TEST 'rap_control_intel' [12:45, 10:10](990 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [32:15, 27:18](1187 MB) -PASS -- TEST 'rap_decomp_intel' [12:45, 10:39](983 MB) -PASS -- TEST 'rap_2threads_intel' [11:46, 09:41](1071 MB) -PASS -- TEST 'rap_restart_intel' [07:48, 05:10](986 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:46, 10:07](987 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:44, 10:40](978 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:49, 07:29](995 MB) -PASS -- TEST 'hrrr_control_intel' [07:41, 05:09](988 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:39, 05:22](972 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:47, 04:41](1041 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:27, 02:42](910 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:58, 10:04](986 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [15:31, 13:25](1934 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:30, 12:47](1928 MB) - -PASS -- COMPILE 'csawmg_intel' [36:13, 35:03] ( 1099 remarks ) -PASS -- TEST 'control_csawmg_intel' [09:36, 08:03](970 MB) -PASS -- TEST 'control_ras_intel' [06:23, 04:19](664 MB) - -PASS -- COMPILE 'wam_intel' [37:13, 35:38] ( 1003 remarks ) -PASS -- TEST 'control_wam_intel' [16:52, 14:23](1616 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [39:13, 37:29] ( 1303 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:01, 03:38](1833 MB) -PASS -- TEST 'regional_control_faster_intel' [08:42, 06:29](1034 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 08:43] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:44, 02:41](1567 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:49, 02:40](1557 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:26, 03:45](771 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:26, 03:23](777 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:40, 05:23](1083 MB) -PASS -- TEST 'control_ras_debug_intel' [05:26, 03:25](802 MB) -PASS -- TEST 'control_diag_debug_intel' [05:47, 03:19](1638 MB) -PASS -- TEST 'control_debug_p8_intel' [05:47, 03:14](1855 MB) -PASS -- TEST 'regional_debug_intel' [24:46, 22:01](1074 MB) -PASS -- TEST 'rap_control_debug_intel' [07:28, 06:05](1166 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:27, 05:59](1155 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:28, 06:09](1164 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:27, 06:06](1168 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:27, 06:07](1184 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:35, 06:22](1248 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:34, 06:12](1165 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:24, 06:15](1168 MB) -PASS -- TEST 'rap_lndp_debug_intel' [09:28, 06:09](1168 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [09:26, 06:05](1161 MB) -PASS -- TEST 'rap_noah_debug_intel' [08:24, 05:59](1158 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:25, 06:09](1166 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:27, 09:57](1163 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:26, 05:59](1159 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:26, 06:04](1171 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:23, 06:06](1159 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:44, 10:34](1165 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:11, 05:03] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:51, 16:39](1642 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:13, 30:53] ( 3 warnings 1033 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:03, 05:06](1060 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [13:44, 08:09](908 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:43, 04:16](867 MB) -FAILED: TEST TIMED OUT -- TEST 'rap_2threads_dyn32_phy32_intel' [, ]( MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:39, 04:00](906 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:43, 04:31](850 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:44, 06:13](899 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:27, 02:18](847 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [34:12, 32:20] ( 3 warnings 1207 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:48, 02:39](1101 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:40, 01:13](1047 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:41, 01:28](1011 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [33:12, 31:29] ( 3 warnings 1053 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:48, 05:25](900 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:12] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:24, 06:00](1036 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:28, 08:14](1043 MB) -PASS -- TEST 'conus13km_debug_intel' [19:56, 17:36](1152 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [19:56, 17:39](857 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:50, 10:13](1100 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:51, 17:43](1215 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 05:06] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:26, 06:07](1096 MB) - -PASS -- COMPILE 'hafsw_intel' [41:13, 39:59] ( 1 warnings 1435 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [17:20, 06:47](718 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [15:36, 06:09](1077 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [25:38, 08:49](760 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [26:31, 15:38](783 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [29:50, 19:07](802 MB) -PASS -- TEST 'gnv1_nested_intel' [27:46, 06:30](1665 MB) - -PASS -- COMPILE 'hafs_all_intel' [38:13, 36:28] ( 1281 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [25:19, 08:22](750 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [25:17, 08:22](736 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:07] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:24, 03:35](1067 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:23, 02:12](1024 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:24, 03:29](937 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:24, 03:32](933 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:24, 03:33](937 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:24, 03:34](1069 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:24, 03:35](1087 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:24, 03:29](937 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:13, 07:35](902 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:13, 07:33](853 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:20, 03:34](1078 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:24, 05:01](2418 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:24, 05:05](2372 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:20] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:21, 08:06](1026 MB) +PASS -- COMPILE 's2swa_32bit_intel' [44:15, 43:00] ( 1 warnings 1397 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [21:15, 13:35](2017 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:15, 47:58] ( 1 warnings 1444 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [28:10, 25:07](1870 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [29:18, 26:23](2003 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:10, 09:45](1134 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [31:01, 28:02](1825 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [50:15, 48:53] ( 1 warnings 1441 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [35:51, 24:48](1869 MB) + +PASS -- COMPILE 's2swa_intel' [46:15, 44:22] ( 1 warnings 1416 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [23:15, 17:51](2046 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [26:25, 16:50](2048 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:18, 08:59](1709 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [23:12, 17:11](2065 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:21, 09:01](1717 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [22:08, 16:28](2322 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [23:04, 17:20](2016 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [19:17, 14:01](1999 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [23:20, 17:14](2036 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [23:11, 09:06](2012 MB) + +PASS -- COMPILE 's2sw_intel' [43:15, 41:53] ( 1 warnings 1301 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [12:23, 09:46](1914 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [17:32, 14:09](1975 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:22] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [38:18, 27:36](2031 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:11, 06:08] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [21:02, 11:39](1918 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [39:13, 37:08] ( 1019 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:24, 05:30](1953 MB) + +PASS -- COMPILE 's2s_intel' [43:14, 38:02] ( 1 warnings 1042 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [12:49, 10:21](3006 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:49, 03:05](3008 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:49, 01:46](2458 MB) + +PASS -- COMPILE 's2swa_faster_intel' [42:19, 32:11] ( 1 warnings 1632 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [19:30, 16:20](2046 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [55:15, 46:36] ( 1 warnings 1361 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [39:31, 33:17](1935 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [21:23, 16:32](1131 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [42:11, 39:19](1908 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:12, 05:58] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:09, 38:42](1930 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [39:13, 37:46] ( 1 warnings 1125 remarks ) +PASS -- TEST 'control_flake_intel' [15:32, 04:20](652 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [29:12, 04:13](1542 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [33:13, 04:35](1537 MB) +PASS -- TEST 'control_latlon_intel' [33:09, 04:18](1526 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [21:14, 04:16](1542 MB) +PASS -- TEST 'control_c48_intel' [34:12, 18:06](1700 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [12:34, 10:12](834 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [35:14, 18:07](1703 MB) +PASS -- TEST 'control_c192_intel' [44:26, 16:07](1682 MB) +PASS -- TEST 'control_c384_intel' [56:26, 23:09](1819 MB) +PASS -- TEST 'control_c384gdas_intel' [48:09, 13:21](1009 MB) +PASS -- TEST 'control_stochy_intel' [04:30, 02:10](604 MB) +PASS -- TEST 'control_stochy_restart_intel' [29:30, 01:13](434 MB) +PASS -- TEST 'control_lndp_intel' [12:30, 01:59](605 MB) +PASS -- TEST 'control_iovr4_intel' [05:32, 03:17](596 MB) +PASS -- TEST 'control_iovr5_intel' [05:33, 03:15](601 MB) +PASS -- TEST 'control_p8_intel' [33:28, 04:54](1830 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [32:35, 04:05](1831 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [33:20, 04:47](1830 MB) +PASS -- TEST 'control_restart_p8_intel' [11:49, 02:33](1055 MB) +PASS -- TEST 'control_noqr_p8_intel' [33:23, 04:46](1812 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [10:52, 02:29](1075 MB) +PASS -- TEST 'control_decomp_p8_intel' [20:25, 04:47](1822 MB) +PASS -- TEST 'control_2threads_p8_intel' [33:19, 04:40](1899 MB) +PASS -- TEST 'control_p8_lndp_intel' [29:13, 08:32](1829 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [34:24, 05:20](1894 MB) +PASS -- TEST 'control_p8_mynn_intel' [32:26, 04:05](1838 MB) +PASS -- TEST 'merra2_thompson_intel' [25:23, 04:18](1842 MB) +PASS -- TEST 'regional_control_intel' [11:04, 07:10](1035 MB) +PASS -- TEST 'regional_restart_intel' [21:43, 03:50](1018 MB) +PASS -- TEST 'regional_decomp_intel' [10:05, 07:27](1043 MB) +PASS -- TEST 'regional_2threads_intel' [17:04, 04:20](1023 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [33:49, 07:20](1044 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [30:40, 07:07](1036 MB) + +PASS -- COMPILE 'rrfs_intel' [36:13, 34:54] ( 3 warnings 1101 remarks ) +PASS -- TEST 'rap_control_intel' [28:48, 10:02](984 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [27:04, 05:30](1191 MB) +PASS -- TEST 'rap_decomp_intel' [29:43, 10:35](979 MB) +PASS -- TEST 'rap_2threads_intel' [28:48, 09:34](1070 MB) +PASS -- TEST 'rap_restart_intel' [07:48, 05:13](987 MB) +PASS -- TEST 'rap_sfcdiff_intel' [31:46, 10:03](987 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [31:42, 10:48](975 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:47, 07:29](1001 MB) +PASS -- TEST 'hrrr_control_intel' [22:46, 05:12](984 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [21:41, 05:17](977 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [16:40, 04:49](1048 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:28, 02:44](920 MB) +PASS -- TEST 'rrfs_v1beta_intel' [18:52, 10:05](977 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [21:27, 13:22](1926 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [17:27, 12:57](1926 MB) + +PASS -- COMPILE 'csawmg_intel' [36:13, 34:56] ( 1099 remarks ) +PASS -- TEST 'control_csawmg_intel' [12:39, 08:11](963 MB) +PASS -- TEST 'control_ras_intel' [09:21, 04:26](674 MB) + +PASS -- COMPILE 'wam_intel' [37:14, 35:55] ( 1003 remarks ) +PASS -- TEST 'control_wam_intel' [16:47, 14:23](1613 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [39:13, 37:32] ( 1303 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:48, 03:38](1828 MB) +PASS -- TEST 'regional_control_faster_intel' [09:36, 06:45](1025 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:11, 08:23] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [10:41, 02:41](1564 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [11:44, 02:40](1542 MB) +PASS -- TEST 'control_stochy_debug_intel' [08:21, 03:49](772 MB) +PASS -- TEST 'control_lndp_debug_intel' [08:21, 03:20](773 MB) +PASS -- TEST 'control_csawmg_debug_intel' [13:35, 05:24](1084 MB) +PASS -- TEST 'control_ras_debug_intel' [11:22, 03:22](788 MB) +PASS -- TEST 'control_diag_debug_intel' [10:45, 03:17](1630 MB) +PASS -- TEST 'control_debug_p8_intel' [10:44, 03:13](1853 MB) +PASS -- TEST 'regional_debug_intel' [28:46, 22:00](1070 MB) +PASS -- TEST 'rap_control_debug_intel' [12:25, 06:02](1162 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:22, 05:57](1154 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:25, 06:06](1160 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:24, 06:05](1168 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:25, 06:05](1163 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:35, 06:27](1242 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:26, 06:15](1161 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:24, 06:19](1162 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:25, 06:11](1162 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:26, 06:03](1160 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:24, 05:57](1159 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:26, 06:02](1165 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:27, 10:00](1152 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:26, 06:01](1156 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:25, 06:05](1165 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:26, 06:07](1164 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:48, 10:37](1168 MB) + +PASS -- COMPILE 'wam_debug_intel' [18:11, 05:06] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [19:43, 16:34](1645 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [35:13, 30:47] ( 3 warnings 1033 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:09, 05:01](1070 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:39, 08:18](912 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:43, 04:19](875 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:54, 07:54](957 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:51, 04:04](899 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:42, 04:38](853 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:39, 06:20](898 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:26, 02:20](836 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [34:13, 32:02] ( 3 warnings 1207 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:00, 02:39](1097 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:44, 01:16](1039 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:44, 01:34](1012 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [33:13, 31:33] ( 3 warnings 1053 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:45, 05:29](904 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 05:13] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:26, 06:04](1033 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:22, 05:56](1027 MB) +PASS -- TEST 'conus13km_debug_intel' [19:57, 17:37](1153 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:47, 17:48](857 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:39, 10:13](1089 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:38, 17:40](1209 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:11, 05:00] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:25, 06:09](1082 MB) + +PASS -- COMPILE 'hafsw_intel' [42:14, 40:13] ( 1 warnings 1435 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [21:24, 06:45](703 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [20:38, 06:21](1079 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [23:38, 09:05](752 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:29, 15:27](783 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [33:49, 19:04](807 MB) +PASS -- TEST 'gnv1_nested_intel' [21:46, 07:03](1668 MB) + +PASS -- COMPILE 'hafs_all_intel' [39:13, 37:47] ( 1281 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [25:19, 08:14](751 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [27:21, 08:22](735 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:15] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:21, 03:40](1078 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:22, 02:10](1045 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:20, 03:29](950 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:22, 03:41](942 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:20, 03:33](938 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:22, 03:41](1074 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:21, 03:41](1077 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:21, 03:35](931 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:15, 07:50](892 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:17, 07:45](854 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:18, 03:42](1078 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:22, 05:10](2423 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [08:22, 05:09](2430 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:21] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:22, 08:09](1020 MB) PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:17] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:19, 03:31](1077 MB) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:33](1077 MB) -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:42] ( 68 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:36, 01:06](241 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:29, 00:57](262 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:39](263 MB) +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:43] ( 68 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:35, 01:07](237 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:29, 01:00](261 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:37](264 MB) -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [38:14, 36:28] ( 1024 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [11:10, 04:47](1895 MB) +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [38:13, 36:25] ( 1024 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:14, 04:43](1899 MB) -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [37:15, 36:03] ( 1 warnings 1029 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [16:14, 10:29](1913 MB) +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [37:13, 35:59] ( 1 warnings 1029 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [12:58, 10:26](1915 MB) -PASS -- COMPILE 'atml_intel' [39:14, 37:54] ( 8 warnings 1174 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:02, 05:49](1845 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:02, 05:48](1852 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:45, 03:02](1064 MB) +PASS -- COMPILE 'atml_intel' [39:14, 37:56] ( 8 warnings 1174 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:03, 05:34](1840 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [12:04, 05:42](1847 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:42, 03:07](1060 MB) -PASS -- COMPILE 'atml_debug_intel' [20:12, 06:34] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:04, 07:13](1871 MB) +PASS -- COMPILE 'atml_debug_intel' [08:12, 06:16] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [20:16, 07:22](1881 MB) -PASS -- COMPILE 'atmw_intel' [50:16, 37:05] ( 1277 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:59, 02:28](1853 MB) +PASS -- COMPILE 'atmw_intel' [40:14, 38:14] ( 1277 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:00, 02:26](1844 MB) -PASS -- COMPILE 'atmaero_intel' [41:13, 35:49] ( 1107 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [12:03, 05:19](1879 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:58, 06:22](1693 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:48, 06:29](1725 MB) +PASS -- COMPILE 'atmaero_intel' [42:13, 36:22] ( 1107 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [12:58, 05:27](1935 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [14:58, 06:20](1702 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:50, 06:24](1688 MB) -PASS -- COMPILE 'atm_fbh_intel' [37:13, 31:30] ( 3 warnings 1004 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:35, 15:14](1059 MB) +PASS -- COMPILE 'atm_fbh_intel' [33:13, 31:25] ( 3 warnings 1004 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:38, 15:11](1059 MB) SYNOPSIS: -Starting Date/Time: 20241209 03:48:21 -Ending Date/Time: 20241209 08:21:39 -Total Time: 04h:33m:47s +Starting Date/Time: 20241213 19:41:31 +Ending Date/Time: 20241214 00:15:47 +Total Time: 04h:34m:55s Compiles Completed: 37/37 -Tests Completed: 162/166 -Failed Tests: -* TEST cpld_control_gfsv17_intel: FAILED: TEST TIMED OUT --- LOG: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1163981/cpld_control_gfsv17_intel/err -* TEST cpld_control_gfsv17_iau_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST cpld_restart_gfsv17_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST rap_2threads_dyn32_phy32_intel: FAILED: TEST TIMED OUT --- LOG: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1163981/rap_2threads_dyn32_phy32_intel/err - -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 JET REGRESSION TESTING LOG==== -====START OF JET REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -7f91b3de985a4799ef7f11450059958002f6aa8c - -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) - 6c497bdfce0add89af9df9ad4be4a6a1bdf48494 CICE-interface/CICE (remotes/origin/restart_fh) - 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - 3d3d28c120a1ad343f91e0e14dd38cd0cde6ae96 CMEPS-interface/CMEPS (remotes/origin/restart_fh) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) - 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) - 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) --179cae1dd84401cf25d250bd9102e66560a9d328 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) - e2f6c128f939faec4efa3ce88f3f9025804fb3ae MOM6-interface/MOM6 (remotes/origin/restart_fh) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - bdf039138204122991cea42729ee44c17ae7dd49 WW3 (6.07.1-353-gbdf03913) - 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20241206 -COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1996816 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: h-nems -* (-b) - NEW BASELINES FROM FILE: test_changes.list -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [50:15, 48:57] ( 1 warnings 1444 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [25:25, 22:25](1887 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:23, 24:02](2028 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [16:18, 09:37](1142 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:13, 30:50] ( 3 warnings 1033 remarks ) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:50, 07:55](952 MB) - -SYNOPSIS: -Starting Date/Time: 20241209 20:07:56 -Ending Date/Time: 20241209 21:51:21 -Total Time: 01h:43m:40s -Compiles Completed: 2/2 -Tests Completed: 4/4 +Tests Completed: 166/166 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index cff8004775..08ca47330b 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,15 +1,15 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -7f91b3de985a4799ef7f11450059958002f6aa8c +19498cc1894245fe8afe365dd87dbe5d8862b35f 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) - 6c497bdfce0add89af9df9ad4be4a6a1bdf48494 CICE-interface/CICE (remotes/origin/restart_fh) + 51f8cd20c15fe39ef1168d59d5077812b6508544 CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-10) + ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - 3d3d28c120a1ad343f91e0e14dd38cd0cde6ae96 CMEPS-interface/CMEPS (remotes/origin/restart_fh) + 507ca48f4586fbeb7b0e23e5cfa9321bc3f02a1d CMEPS-interface/CMEPS (cmeps_v0.4.1-3103-g507ca48f) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) @@ -23,11 +23,11 @@ Submodule hashes used in testing: 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) - e2f6c128f939faec4efa3ce88f3f9025804fb3ae MOM6-interface/MOM6 (remotes/origin/restart_fh) + 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - bdf039138204122991cea42729ee44c17ae7dd49 WW3 (6.07.1-353-gbdf03913) + 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,382 +38,301 @@ 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-20241206 -COMPARISON DIRECTORY: /work2/noaa/epic/nandoam/stmp/orion/nandoam/FV3_RT/rt_1671569 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241212 +COMPARISON DIRECTORY: /work2/noaa/epic/nandoam/stmp/orion/nandoam/FV3_RT/rt_1620443 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -FAILED: UNABLE TO FINISH COMPILE -- COMPILE 's2swa_32bit_intel' [, ] -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'cpld_control_p8_mixedmode_intel' [, ]( MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:12, 21:16] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [49:43, 25:09](1954 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:18, 25:07](2136 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [14:20, 10:24](1243 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [49:40, 29:14](1871 MB) - -FAILED: UNABLE TO FINISH COMPILE -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [, ] -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'cpld_control_sfs_intel' [, ]( MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:14, 08:30] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [52:56, 32:08](1927 MB) - -PASS -- COMPILE 's2swa_intel' [18:13, 17:00] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [47:54, 29:54](2137 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [49:44, 28:41](2140 MB) -PASS -- TEST 'cpld_restart_p8_intel' [17:41, 14:15](1806 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [44:45, 28:58](2155 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [20:50, 15:31](1696 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [40:39, 26:46](2441 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [46:40, 29:04](2117 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [36:37, 24:37](2033 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [44:46, 28:56](2140 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [30:28, 17:23](2712 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [28:19, 10:10](2711 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [03:44, 21:40](3707 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [27:33, 13:25](3542 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [21:32, 09:07](2073 MB) - -PASS -- COMPILE 's2sw_intel' [18:13, 16:21] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [39:23, 27:56](1969 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [24:31, 12:51](2055 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:12, 08:44] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [27:31, 24:04](2171 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:13, 08:24] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [31:16, 11:19](1989 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:13, 15:27] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [19:30, 05:59](2022 MB) - -FAILED: UNABLE TO FINISH COMPILE -- COMPILE 's2s_intel' [, ] -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'cpld_control_c48_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'cpld_warmstart_c48_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'cpld_restart_c48_intel' [, ]( MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:11, 17:11] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [54:47, 29:37](2147 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [19:11, 18:02] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [52:28, 30:32](2006 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [20:43, 15:53](1259 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [38:23, 35:03](1923 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:11, 08:14] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [45:26, 35:59](1970 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:14, 13:44] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [37:28, 03:47](691 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [39:49, 03:36](1575 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [39:56, 03:41](1578 MB) -PASS -- TEST 'control_latlon_intel' [37:45, 03:39](1574 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [41:55, 03:40](1572 MB) -PASS -- TEST 'control_c48_intel' [33:53, 14:43](1703 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [16:34, 08:09](827 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [38:55, 14:48](1708 MB) -PASS -- TEST 'control_c192_intel' [50:07, 13:12](1739 MB) -PASS -- TEST 'control_c384_intel' [45:54, 16:47](1979 MB) -PASS -- TEST 'control_c384gdas_intel' [39:53, 11:03](1336 MB) -PASS -- TEST 'control_stochy_intel' [28:27, 01:51](639 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:43, 01:05](472 MB) -PASS -- TEST 'control_lndp_intel' [26:22, 01:45](641 MB) -PASS -- TEST 'control_iovr4_intel' [26:25, 02:45](643 MB) -PASS -- TEST 'control_iovr5_intel' [25:24, 02:45](632 MB) -PASS -- TEST 'control_p8_intel' [16:03, 05:15](1860 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [15:12, 04:33](1873 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [15:20, 04:54](1865 MB) -PASS -- TEST 'control_restart_p8_intel' [05:30, 02:17](1088 MB) -PASS -- TEST 'control_noqr_p8_intel' [13:12, 04:59](1850 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [07:37, 03:24](1121 MB) -PASS -- TEST 'control_decomp_p8_intel' [12:04, 05:10](1849 MB) -PASS -- TEST 'control_2threads_p8_intel' [11:58, 05:27](1942 MB) -PASS -- TEST 'control_p8_lndp_intel' [14:38, 08:27](1862 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [11:30, 06:05](1935 MB) -PASS -- TEST 'control_p8_mynn_intel' [10:27, 04:29](1879 MB) -PASS -- TEST 'merra2_thompson_intel' [10:34, 04:54](1878 MB) -PASS -- TEST 'regional_control_intel' [12:39, 07:45](1106 MB) -PASS -- TEST 'regional_restart_intel' [05:43, 03:30](1087 MB) -PASS -- TEST 'regional_decomp_intel' [13:36, 08:09](1101 MB) -PASS -- TEST 'regional_2threads_intel' [09:37, 06:00](1094 MB) -PASS -- TEST 'regional_noquilt_intel' [10:43, 07:35](1411 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:42, 06:27](1107 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:36, 07:38](1107 MB) -PASS -- TEST 'regional_wofs_intel' [10:35, 08:04](1891 MB) +PASS -- COMPILE 's2swa_32bit_intel' [21:11, 17:57] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [30:52, 27:41](2082 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 18:56] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [27:01, 23:42](1955 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:17, 25:09](2118 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:32, 08:59](1224 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [31:11, 27:40](1856 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:11, 19:58] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [30:56, 24:21](1950 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:10, 08:14] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [33:49, 30:58](1932 MB) + +PASS -- COMPILE 's2swa_intel' [21:10, 17:57] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [33:16, 29:21](2145 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [30:51, 27:28](2144 MB) +PASS -- TEST 'cpld_restart_p8_intel' [17:57, 14:18](1807 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [30:41, 27:17](2160 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [18:11, 14:35](1696 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [27:33, 25:01](2442 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [30:41, 27:21](2125 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [25:42, 22:52](2045 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [30:51, 27:15](2149 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:39, 16:02](2717 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:28, 08:59](2709 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [38:02, 22:01](3694 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [25:21, 12:22](3534 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:34, 07:59](2076 MB) + +PASS -- COMPILE 's2sw_intel' [19:10, 16:10] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [29:18, 26:56](1979 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:38, 11:45](2050 MB) + +PASS -- COMPILE 's2swa_debug_intel' [12:10, 08:47] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [25:38, 23:06](2175 MB) + +PASS -- COMPILE 's2sw_debug_intel' [11:10, 07:51] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:20, 09:57](1993 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [19:10, 15:34] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:26, 04:47](2029 MB) + +PASS -- COMPILE 's2s_intel' [19:10, 15:56] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:00, 08:09](3027 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:04, 02:32](3020 MB) +PASS -- TEST 'cpld_restart_c48_intel' [07:59, 02:52](2477 MB) + +PASS -- COMPILE 's2swa_faster_intel' [20:11, 18:35] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [31:37, 28:22](2146 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 19:18] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [32:25, 29:27](2004 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [20:33, 16:04](1245 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [40:24, 35:01](1938 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 07:41] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [38:42, 35:32](1967 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:10, 13:50] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:28, 03:50](684 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:42, 03:35](1572 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:47, 03:42](1572 MB) +PASS -- TEST 'control_latlon_intel' [05:51, 03:32](1575 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:58, 03:36](1573 MB) +PASS -- TEST 'control_c48_intel' [17:00, 14:46](1704 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:32, 08:11](834 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [16:56, 14:44](1713 MB) +PASS -- TEST 'control_c192_intel' [16:13, 13:16](1743 MB) +PASS -- TEST 'control_c384_intel' [20:20, 16:33](1980 MB) +PASS -- TEST 'control_c384gdas_intel' [15:31, 10:02](1335 MB) +PASS -- TEST 'control_stochy_intel' [03:25, 01:49](639 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:53, 01:07](471 MB) +PASS -- TEST 'control_lndp_intel' [03:21, 01:45](643 MB) +PASS -- TEST 'control_iovr4_intel' [05:25, 02:44](644 MB) +PASS -- TEST 'control_iovr5_intel' [05:23, 02:44](635 MB) +PASS -- TEST 'control_p8_intel' [06:23, 04:02](1865 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:21, 03:49](1874 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:30, 03:57](1873 MB) +PASS -- TEST 'control_restart_p8_intel' [05:29, 02:14](1088 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:28, 04:03](1849 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:46, 02:11](1124 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:14, 04:05](1853 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:16, 04:09](1947 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:44, 07:11](1870 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:34, 04:44](1932 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:29, 03:25](1877 MB) +PASS -- TEST 'merra2_thompson_intel' [06:40, 03:44](1873 MB) +PASS -- TEST 'regional_control_intel' [08:44, 06:27](1106 MB) +PASS -- TEST 'regional_restart_intel' [05:37, 03:30](1088 MB) +PASS -- TEST 'regional_decomp_intel' [08:43, 06:55](1102 MB) +PASS -- TEST 'regional_2threads_intel' [06:43, 04:37](1109 MB) +PASS -- TEST 'regional_noquilt_intel' [08:54, 06:19](1409 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:50, 06:30](1114 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:42, 06:28](1107 MB) +PASS -- TEST 'regional_wofs_intel' [09:42, 08:06](1893 MB) PASS -- COMPILE 'rrfs_intel' [15:11, 13:14] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [11:21, 08:28](1059 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:57, 05:09](1265 MB) -PASS -- TEST 'rap_decomp_intel' [11:20, 08:44](1012 MB) -PASS -- TEST 'rap_2threads_intel' [11:00, 08:37](1171 MB) -PASS -- TEST 'rap_restart_intel' [07:30, 04:23](1030 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:05, 08:24](1055 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:01, 08:43](1017 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:35, 06:17](1072 MB) -PASS -- TEST 'hrrr_control_intel' [08:19, 04:23](1021 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:59, 04:27](1019 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:55, 04:13](1080 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:51, 02:22](945 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:25, 08:21](1048 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:27, 09:58](1977 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:23, 09:31](2014 MB) - -PASS -- COMPILE 'csawmg_intel' [14:11, 12:46] -PASS -- TEST 'control_csawmg_intel' [08:43, 06:47](1013 MB) -PASS -- TEST 'control_ras_intel' [05:27, 03:29](715 MB) - -PASS -- COMPILE 'wam_intel' [14:11, 12:32] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:54, 12:51](1654 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [16:11, 13:08] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:28, 04:25](1871 MB) -PASS -- TEST 'regional_control_faster_intel' [10:36, 07:17](1112 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:11, 09:43] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:44, 02:19](1604 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:49, 02:12](1605 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:26, 03:02](812 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:23, 02:44](809 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:39, 04:51](1121 MB) -PASS -- TEST 'control_ras_debug_intel' [04:22, 02:47](816 MB) -PASS -- TEST 'control_diag_debug_intel' [05:46, 02:46](1668 MB) -PASS -- TEST 'control_debug_p8_intel' [06:46, 03:32](1897 MB) -PASS -- TEST 'regional_debug_intel' [20:42, 18:22](1076 MB) -PASS -- TEST 'rap_control_debug_intel' [06:26, 04:54](1203 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:26, 04:48](1202 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:24, 04:58](1192 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:22, 04:58](1190 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:24, 04:59](1198 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:35, 05:12](1274 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:25, 04:59](1193 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:22, 05:01](1191 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:23, 04:59](1196 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 04:51](1197 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:24, 04:58](1201 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 04:58](1197 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:23, 08:07](1195 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:26, 04:48](1201 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 04:54](1205 MB) -PASS -- TEST 'rap_flake_debug_intel' [10:24, 05:02](1198 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:27, 08:29](1200 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:11, 06:15] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:47, 13:21](1676 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [24:10, 13:14] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:55, 05:05](1138 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [13:17, 07:13](1001 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:37, 03:48](927 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [13:09, 07:29](1086 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [11:12, 03:44](937 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [11:27, 03:57](889 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:42, 05:30](976 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [10:41, 02:07](869 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:10, 12:21] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [09:55, 02:35](1159 MB) -PASS -- TEST 'conus13km_2threads_intel' [07:46, 01:18](1114 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [07:43, 01:31](1061 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [24:10, 13:14] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [10:44, 04:35](972 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [20:13, 06:16] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [11:27, 04:49](1080 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [12:27, 04:52](1077 MB) -PASS -- TEST 'conus13km_debug_intel' [22:56, 13:50](1254 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [24:54, 14:30](922 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [16:44, 08:05](1164 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:44, 13:44](1298 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [27:11, 06:26] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [14:26, 04:50](1136 MB) - -PASS -- COMPILE 'hafsw_intel' [31:11, 15:04] ( 1 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [15:19, 06:30](738 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [15:34, 07:03](1120 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [21:28, 08:14](814 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [42:19, 29:16](846 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [48:31, 35:12](868 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [21:16, 07:55](498 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [22:37, 09:45](506 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [15:00, 03:48](374 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [21:55, 11:06](470 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [14:59, 05:27](525 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:59, 05:14](522 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [12:15, 06:26](568 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:33, 01:47](404 MB) -PASS -- TEST 'gnv1_nested_intel' [11:32, 04:33](1715 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [41:13, 07:35] ( 1462 warnings 1490 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:13, 13:43](581 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [48:12, 14:55] ( 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [20:06, 15:30](636 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [20:05, 15:54](718 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [41:12, 15:32] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:53, 11:26](713 MB) - -PASS -- COMPILE 'hafs_all_intel' [40:11, 14:57] ( 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:20, 08:04](805 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:19, 08:06](789 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:00, 16:29](1200 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [31:11, 07:52] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:59](1143 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:21, 01:55](1107 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:51](1021 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:56](1007 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:57](1015 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:59](1131 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 02:58](1158 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:52](1014 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:16, 06:43](1017 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:10, 06:33](1005 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 02:58](1149 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 04:19](2398 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:20, 04:21](2398 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [24:11, 05:21] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:19, 06:32](1080 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [31:12, 09:08] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [06:18, 02:59](1155 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [23:12, 01:32] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:32, 01:24](255 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:25, 01:12](324 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:45](330 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [15:11, 01:48] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [03:30, 00:42](564 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:34, 00:23](445 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [24:11, 14:36] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:10, 05:22](1968 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:10, 12:59] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [14:11, 10:15](1971 MB) - -PASS -- COMPILE 'atml_intel' [15:10, 14:07] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:41, 08:24](1863 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [12:39, 09:19](1867 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:13, 05:51](1058 MB) - -PASS -- COMPILE 'atml_debug_intel' [09:10, 07:25] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:35, 07:41](1895 MB) - -PASS -- COMPILE 'atmw_intel' [15:11, 13:48] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:17, 02:12](1894 MB) - -PASS -- COMPILE 'atmaero_intel' [15:10, 13:22] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:10, 04:54](1976 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:13, 05:25](1763 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:08, 05:26](1756 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:10, 06:15] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [24:13, 21:10](4495 MB) - -PASS -- COMPILE 'atm_fbh_intel' [14:10, 12:36] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:30, 13:57](1116 MB) - -PASS -- COMPILE 'hafsw_intelllvm' [10:10, 08:11] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [11:21, 08:52](564 MB) - -PASS -- COMPILE 'hafsw_debug_intelllvm' [06:10, 04:58] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [23:09, 20:04](561 MB) +PASS -- TEST 'rap_control_intel' [11:14, 08:28](1060 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:04, 05:06](1267 MB) +PASS -- TEST 'rap_decomp_intel' [10:59, 08:49](1013 MB) +PASS -- TEST 'rap_2threads_intel' [10:59, 08:36](1170 MB) +PASS -- TEST 'rap_restart_intel' [10:46, 04:26](1034 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:05, 08:24](1057 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:04, 08:45](1017 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [11:53, 06:22](1065 MB) +PASS -- TEST 'hrrr_control_intel' [07:06, 04:21](1022 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:03, 04:26](1011 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:06, 04:12](1086 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:44, 02:21](936 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:25, 08:20](1048 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:27, 09:56](1974 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:27, 09:33](2018 MB) + +PASS -- COMPILE 'csawmg_intel' [14:11, 12:54] +PASS -- TEST 'control_csawmg_intel' [10:35, 07:36](1017 MB) +PASS -- TEST 'control_ras_intel' [06:31, 03:30](717 MB) + +PASS -- COMPILE 'wam_intel' [14:10, 12:48] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:04, 12:48](1647 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:10, 13:29] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:32, 03:36](1881 MB) +PASS -- TEST 'regional_control_faster_intel' [08:36, 06:15](1105 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:10, 10:01] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:44, 02:16](1599 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:49, 02:16](1596 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:22, 03:02](807 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:44](813 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:40, 04:47](1124 MB) +PASS -- TEST 'control_ras_debug_intel' [04:22, 02:43](820 MB) +PASS -- TEST 'control_diag_debug_intel' [04:46, 02:46](1665 MB) +PASS -- TEST 'control_debug_p8_intel' [04:48, 02:42](1893 MB) +PASS -- TEST 'regional_debug_intel' [19:41, 17:22](1092 MB) +PASS -- TEST 'rap_control_debug_intel' [06:24, 04:56](1196 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:23, 04:44](1197 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:23, 04:53](1200 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:59](1198 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:24, 05:07](1205 MB) +PASS -- TEST 'rap_diag_debug_intel' [10:36, 05:08](1285 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:29, 05:04](1207 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:23, 05:05](1196 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:23, 05:06](1193 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [11:26, 05:00](1202 MB) +PASS -- TEST 'rap_noah_debug_intel' [09:25, 04:52](1199 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [10:27, 04:58](1199 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:26, 07:55](1193 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:26, 04:46](1199 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:26, 05:02](1199 MB) +PASS -- TEST 'rap_flake_debug_intel' [09:26, 05:05](1202 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:33, 08:42](1200 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:11, 06:40] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:45, 13:14](1678 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [19:11, 12:41] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:56, 05:09](1142 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:25, 07:14](1002 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:08, 03:51](922 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:17, 07:29](1076 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:10, 03:46](939 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:02, 03:57](893 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [12:39, 05:27](974 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:46, 02:04](881 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:10, 12:20] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:59, 02:52](1160 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:45, 01:07](1105 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:43, 01:27](1066 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:10, 13:34] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:54, 04:39](973 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:10, 06:46] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:25, 04:53](1086 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:25, 04:43](1075 MB) +PASS -- TEST 'conus13km_debug_intel' [16:54, 13:49](1227 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:52, 14:06](924 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:45, 08:17](1163 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:44, 13:42](1301 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:11, 06:54] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:27, 05:04](1129 MB) + +PASS -- COMPILE 'hafsw_intel' [17:11, 15:35] ( 1 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:24, 06:17](743 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:31, 06:49](1127 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:36, 07:56](815 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [31:26, 28:29](846 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [37:38, 34:40](1025 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:12, 07:48](497 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:36, 09:28](512 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:56, 03:44](377 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:49, 10:56](473 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:59, 05:13](524 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:01, 05:01](528 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:02, 06:17](571 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:34, 01:44](401 MB) +PASS -- TEST 'gnv1_nested_intel' [11:41, 04:31](1716 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:11, 07:33] ( 1462 warnings 1490 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:10, 13:38](580 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:11, 15:06] ( 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [21:19, 15:37](657 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [21:30, 15:24](719 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 15:03] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [19:10, 11:27](710 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:11, 14:04] ( 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [14:20, 08:18](805 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:13, 08:12](790 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:06, 16:27](1201 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:10, 08:19] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:20, 03:00](1151 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:55](1095 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:19, 02:52](1020 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:20, 02:55](1016 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:20, 02:55](1013 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:19, 02:59](1158 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:22, 02:59](1156 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:19, 02:51](1024 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:19, 06:38](1028 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:23, 06:38](1015 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:17, 02:59](1156 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:20, 04:19](2454 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:19, 04:21](2463 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 05:04] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:19, 06:31](1087 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:10, 08:02] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 03:00](1160 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:10, 01:20] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:30, 01:20](253 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 01:07](325 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:42](321 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:40] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:31, 00:37](558 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:33, 00:23](446 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:10, 14:07] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:20, 04:25](1972 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:11, 13:18] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:07, 08:32](1967 MB) + +PASS -- COMPILE 'atml_intel' [16:11, 14:15] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:43, 07:09](1863 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:33, 06:54](1856 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:12, 03:36](1056 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:10, 07:30] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:41, 06:39](1886 MB) + +PASS -- COMPILE 'atmw_intel' [15:10, 13:46] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:19, 02:12](1907 MB) + +PASS -- COMPILE 'atmaero_intel' [15:10, 13:16] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:17, 04:34](1972 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:11, 05:24](1761 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:06, 05:27](1755 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:10, 06:43] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [25:10, 21:12](4474 MB) + +PASS -- COMPILE 'atm_fbh_intel' [14:10, 12:12] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:31, 13:53](1116 MB) + +PASS -- COMPILE 'hafsw_intelllvm' [09:10, 07:57] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [11:43, 08:32](575 MB) + +PASS -- COMPILE 'hafsw_debug_intelllvm' [06:10, 04:53] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [22:08, 20:05](566 MB) SYNOPSIS: -Starting Date/Time: 20241208 21:46:38 -Ending Date/Time: 20241209 00:12:19 -Total Time: 02h:26m:09s -Compiles Completed: 42/45 -Tests Completed: 186/191 -Failed Compiles: -* COMPILE s2swa_32bit_intel: FAILED: UNABLE TO FINISH COMPILE --- LOG: /work/noaa/epic/nandoam/regression-testing/wm/orion/2419/ufs-weather-model/tests/logs/log_orion/compile_s2swa_32bit_intel.log -* COMPILE s2swa_32bit_pdlib_sfs_intel: FAILED: UNABLE TO FINISH COMPILE --- LOG: /work/noaa/epic/nandoam/regression-testing/wm/orion/2419/ufs-weather-model/tests/logs/log_orion/compile_s2swa_32bit_pdlib_sfs_intel.log -* COMPILE s2s_intel: FAILED: UNABLE TO FINISH COMPILE --- LOG: /work/noaa/epic/nandoam/regression-testing/wm/orion/2419/ufs-weather-model/tests/logs/log_orion/compile_s2s_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: -7f91b3de985a4799ef7f11450059958002f6aa8c - -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) - 6c497bdfce0add89af9df9ad4be4a6a1bdf48494 CICE-interface/CICE (remotes/origin/restart_fh) - 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - 3d3d28c120a1ad343f91e0e14dd38cd0cde6ae96 CMEPS-interface/CMEPS (remotes/origin/restart_fh) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) - 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) - 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) --179cae1dd84401cf25d250bd9102e66560a9d328 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) - e2f6c128f939faec4efa3ce88f3f9025804fb3ae MOM6-interface/MOM6 (remotes/origin/restart_fh) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - bdf039138204122991cea42729ee44c17ae7dd49 WW3 (6.07.1-353-gbdf03913) - 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-20241206 -COMPARISON DIRECTORY: /work2/noaa/epic/nandoam/stmp/orion/nandoam/FV3_RT/rt_1572727 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-b) - NEW BASELINES FROM FILE: test_changes.list -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [33:12, 16:48] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [59:38, 28:38](2077 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:12, 19:34] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [02:06, 24:21](1945 MB) - -PASS -- COMPILE 's2s_intel' [31:12, 14:44] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [35:07, 09:17](3041 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [30:06, 04:13](3022 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:57, 01:38](2483 MB) - -SYNOPSIS: -Starting Date/Time: 20241209 14:17:43 -Ending Date/Time: 20241209 15:51:53 -Total Time: 01h:34m:30s -Compiles Completed: 3/3 -Tests Completed: 5/5 +Starting Date/Time: 20241213 13:42:22 +Ending Date/Time: 20241213 15:40:57 +Total Time: 01h:59m:15s +Compiles Completed: 45/45 +Tests Completed: 191/191 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 09d219daef..8f53d5f439 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,15 +1,15 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -7f91b3de985a4799ef7f11450059958002f6aa8c +19498cc1894245fe8afe365dd87dbe5d8862b35f 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) - 6c497bdfce0add89af9df9ad4be4a6a1bdf48494 CICE-interface/CICE (remotes/origin/restart_fh) + 51f8cd20c15fe39ef1168d59d5077812b6508544 CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-10) + ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - 3d3d28c120a1ad343f91e0e14dd38cd0cde6ae96 CMEPS-interface/CMEPS (remotes/origin/restart_fh) + 507ca48f4586fbeb7b0e23e5cfa9321bc3f02a1d CMEPS-interface/CMEPS (cmeps_v0.4.1-3103-g507ca48f) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) @@ -23,11 +23,11 @@ Submodule hashes used in testing: 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) - e2f6c128f939faec4efa3ce88f3f9025804fb3ae MOM6-interface/MOM6 (remotes/origin/restart_fh) + 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - bdf039138204122991cea42729ee44c17ae7dd49 WW3 (6.07.1-353-gbdf03913) + 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,311 +38,242 @@ 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-20241206 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_140731 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241212 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10719 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:29, 11:23] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [19:17, 02:30](3085 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:27, 11:58] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:19, 03:30](1802 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [58:09, 02:44](1826 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [58:08, 02:45](977 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:20, 03:07](1789 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:29, 12:09] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:17, 01:32](1800 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:22, 05:17] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:26, 02:45](1834 MB) - -PASS -- COMPILE 's2swa_intel' [13:30, 11:29] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [19:16, 02:00](3115 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:16, 03:15](3117 MB) -PASS -- TEST 'cpld_restart_p8_intel' [00:43, 02:18](3045 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [19:16, 03:13](3138 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [59:19, 02:34](3066 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [19:16, 01:49](3358 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [19:16, 01:54](3106 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [19:17, 02:57](3051 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:16, 02:12](3116 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:25, 05:23](4107 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [41:00, 04:39](4255 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [19:16, 02:03](3099 MB) - -PASS -- COMPILE 's2sw_intel' [12:27, 10:48] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [20:20, 02:33](1832 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_nowave_noaero_p8_intel' [, ]( MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:28, 10:14] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [20:18, 02:25](1872 MB) - -PASS -- COMPILE 's2s_intel' [12:28, 10:17] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [20:17, 02:23](2858 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [20:17, 02:07](2871 MB) -PASS -- TEST 'cpld_restart_c48_intel' [15:16, 02:11](2280 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:31, 16:10] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [15:16, 02:59](3114 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:30, 11:56] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:16, 02:35](1832 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [48:32, 02:12](1004 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [48:13, 02:07](1795 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:21, 05:17] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [18:04, 02:02](1844 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:46] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:43, 02:05](569 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:25, 02:10](1465 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:34, 02:15](1475 MB) -PASS -- TEST 'control_latlon_intel' [02:42, 01:54](1469 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [01:51, 02:03](1466 MB) -PASS -- TEST 'control_c48_intel' [01:16, 02:17](1571 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [01:16, 01:54](692 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [01:09, 02:17](1569 MB) -PASS -- TEST 'control_c192_intel' [00:48, 01:56](1590 MB) -PASS -- TEST 'control_c384_intel' [00:31, 02:39](1881 MB) -PASS -- TEST 'control_c384gdas_intel' [00:11, 02:51](1082 MB) -PASS -- TEST 'control_stochy_intel' [59:19, 02:08](522 MB) -PASS -- TEST 'control_stochy_restart_intel' [47:37, 01:53](378 MB) -PASS -- TEST 'control_lndp_intel' [59:18, 02:11](522 MB) -PASS -- TEST 'control_iovr4_intel' [58:42, 01:53](521 MB) -PASS -- TEST 'control_iovr5_intel' [58:36, 01:44](516 MB) -PASS -- TEST 'control_p8_intel' [58:35, 02:30](1765 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [58:20, 02:16](1746 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [58:20, 02:42](1762 MB) -PASS -- TEST 'control_restart_p8_intel' [44:06, 02:20](912 MB) -PASS -- TEST 'control_noqr_p8_intel' [58:13, 01:52](1753 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [43:59, 02:20](921 MB) -PASS -- TEST 'control_decomp_p8_intel' [58:13, 01:45](1759 MB) -PASS -- TEST 'control_2threads_p8_intel' [57:35, 02:29](1836 MB) -PASS -- TEST 'control_p8_lndp_intel' [57:02, 02:23](1757 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [56:44, 02:25](1815 MB) -PASS -- TEST 'control_p8_mynn_intel' [56:03, 02:46](1768 MB) -PASS -- TEST 'merra2_thompson_intel' [56:00, 02:47](1760 MB) -PASS -- TEST 'regional_control_intel' [54:04, 02:08](871 MB) -PASS -- TEST 'regional_restart_intel' [40:09, 02:07](852 MB) -PASS -- TEST 'regional_decomp_intel' [53:56, 01:49](880 MB) -PASS -- TEST 'regional_2threads_intel' [53:15, 01:35](922 MB) -PASS -- TEST 'regional_noquilt_intel' [49:50, 01:22](1199 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [48:09, 02:08](877 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [47:39, 01:12](860 MB) -PASS -- TEST 'regional_wofs_intel' [47:09, 01:38](1568 MB) - -PASS -- COMPILE 'rrfs_intel' [10:23, 08:55] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [09:54, 03:15](899 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:55, 01:42](1058 MB) -PASS -- TEST 'rap_decomp_intel' [09:54, 03:02](909 MB) -PASS -- TEST 'rap_2threads_intel' [09:54, 02:43](983 MB) -PASS -- TEST 'rap_restart_intel' [46:48, 02:42](777 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:54, 03:20](900 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:54, 02:46](900 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [46:00, 02:39](782 MB) -PASS -- TEST 'hrrr_control_intel' [09:54, 03:17](902 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [09:54, 03:14](899 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [09:05, 02:43](976 MB) -PASS -- TEST 'hrrr_control_restart_intel' [45:59, 02:03](730 MB) -PASS -- TEST 'rrfs_v1beta_intel' [44:44, 02:55](899 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [44:00, 02:16](1858 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [43:52, 01:39](1842 MB) - -PASS -- COMPILE 'csawmg_intel' [09:23, 08:08] -PASS -- TEST 'control_csawmg_intel' [10:55, 01:58](861 MB) -PASS -- TEST 'control_ras_intel' [10:55, 01:27](558 MB) - -PASS -- COMPILE 'wam_intel' [11:24, 08:23] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [43:11, 01:52](1552 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:26, 08:39] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [42:54, 02:27](1754 MB) -PASS -- TEST 'regional_control_faster_intel' [42:30, 01:35](880 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:25, 07:48] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [42:07, 01:52](1489 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [42:03, 01:54](1491 MB) -PASS -- TEST 'control_stochy_debug_intel' [40:28, 01:45](692 MB) -PASS -- TEST 'control_lndp_debug_intel' [40:20, 02:03](695 MB) -PASS -- TEST 'control_csawmg_debug_intel' [40:18, 01:29](998 MB) -PASS -- TEST 'control_ras_debug_intel' [40:07, 02:08](700 MB) -PASS -- TEST 'control_diag_debug_intel' [39:58, 01:56](1552 MB) -PASS -- TEST 'control_debug_p8_intel' [39:04, 01:58](1783 MB) -PASS -- TEST 'regional_debug_intel' [38:44, 01:11](881 MB) -PASS -- TEST 'rap_control_debug_intel' [37:22, 01:43](1079 MB) -PASS -- TEST 'hrrr_control_debug_intel' [36:56, 01:53](1067 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [36:37, 01:42](1075 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [36:37, 01:40](1077 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [36:22, 01:41](1078 MB) -PASS -- TEST 'rap_diag_debug_intel' [36:14, 01:38](1160 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [35:50, 01:33](1078 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [35:32, 01:30](1079 MB) -PASS -- TEST 'rap_lndp_debug_intel' [35:15, 01:29](1079 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [35:11, 01:36](1078 MB) -PASS -- TEST 'rap_noah_debug_intel' [34:53, 01:19](1071 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [34:51, 02:07](1075 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [34:31, 01:50](1073 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [34:29, 01:59](1071 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [34:19, 02:08](1074 MB) -PASS -- TEST 'rap_flake_debug_intel' [34:16, 02:06](1080 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [34:02, 02:40](1084 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:22, 04:32] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [10:53, 01:54](1579 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:25, 08:10] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [33:33, 01:32](930 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [33:26, 02:38](783 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [33:21, 03:22](782 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [33:13, 02:43](834 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [31:14, 03:33](826 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [30:15, 02:29](777 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [23:31, 02:23](682 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [25:30, 01:18](659 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:24, 08:10] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [29:50, 02:08](991 MB) -PASS -- TEST 'conus13km_2threads_intel' [23:49, 01:53](988 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [22:49, 01:47](863 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:23, 08:15] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [29:47, 02:25](804 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:33] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [29:20, 01:58](954 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [29:19, 02:03](952 MB) -PASS -- TEST 'conus13km_debug_intel' [29:08, 01:27](1040 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [29:07, 01:36](708 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [28:55, 01:42](1045 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [28:32, 01:56](1109 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:19] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [28:19, 02:18](981 MB) - -PASS -- COMPILE 'hafsw_intel' [12:29, 09:55] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [28:08, 02:48](592 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [27:48, 01:51](957 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [27:39, 02:51](642 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [27:19, 02:47](672 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [27:16, 02:43](692 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [26:57, 02:04](373 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [26:29, 03:08](390 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [26:19, 02:26](280 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [26:01, 03:47](367 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [25:37, 02:31](399 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [25:35, 01:55](407 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [24:33, 02:25](469 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [24:07, 01:29](305 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:23, 04:54] ( 1444 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [23:58, 02:14](499 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:28, 09:39] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [21:59, 01:58](508 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [20:39, 01:47](699 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:33, 09:50] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [20:39, 02:04](702 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:30, 09:15] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [20:30, 03:10](641 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [20:23, 03:06](613 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:08, 01:40](879 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:28, 09:59] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [20:07, 01:45](1812 MB) - -PASS -- COMPILE 'atml_intel' [13:27, 09:31] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [08:23, 05:32] ( 866 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [11:25, 08:32] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [20:03, 02:34](3010 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [19:35, 01:58](2891 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [19:25, 01:55](2897 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:22, 04:20] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [19:02, 02:26](4384 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:29, 11:24] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:47, 02:17](3087 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:30, 11:50] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [07:45, 03:39](1820 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [42:22, 03:00](1828 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [41:40, 02:32](975 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [07:46, 03:31](1792 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:30, 12:24] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [07:45, 01:56](1808 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:18] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [14:55, 02:25](1835 MB) + +PASS -- COMPILE 's2swa_intel' [13:29, 11:35] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:47, 02:53](3122 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:47, 02:40](3106 MB) +PASS -- TEST 'cpld_restart_p8_intel' [44:54, 02:52](3042 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:47, 02:58](3135 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [44:57, 02:48](3066 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [08:46, 01:49](3356 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:46, 01:44](3113 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:47, 02:26](3058 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:47, 02:07](3120 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [08:55, 05:39](4112 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [22:13, 05:02](4253 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:47, 02:00](3096 MB) + +PASS -- COMPILE 's2sw_intel' [13:29, 10:46] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:47, 02:21](1831 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:46, 02:55](1881 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:27, 10:04] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:48, 02:06](1886 MB) + +PASS -- COMPILE 's2s_intel' [12:27, 10:17] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:48, 01:59](2860 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [09:48, 01:48](2873 MB) +PASS -- TEST 'cpld_restart_c48_intel' [01:44, 02:15](2290 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:34, 16:18] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [03:41, 02:38](3117 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:29, 11:38] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [08:47, 02:38](1824 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [33:58, 02:24](1004 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [33:32, 02:59](1794 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:28, 05:12] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [07:26, 02:14](1856 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:28, 09:25] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [57:42, 02:05](564 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [53:49, 02:17](1464 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [52:22, 01:51](1475 MB) +PASS -- TEST 'control_latlon_intel' [52:09, 02:05](1470 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [48:59, 01:52](1467 MB) +PASS -- TEST 'control_c48_intel' [48:02, 01:32](1565 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [47:18, 02:01](689 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [47:03, 01:52](1569 MB) +PASS -- TEST 'control_c192_intel' [46:18, 02:10](1587 MB) +PASS -- TEST 'control_c384_intel' [45:56, 03:03](1878 MB) +PASS -- TEST 'control_c384gdas_intel' [44:59, 03:25](1077 MB) +PASS -- TEST 'control_stochy_intel' [44:30, 01:56](521 MB) +PASS -- TEST 'control_stochy_restart_intel' [34:55, 01:56](326 MB) +PASS -- TEST 'control_lndp_intel' [43:07, 02:00](519 MB) +PASS -- TEST 'control_iovr4_intel' [43:05, 02:21](521 MB) +PASS -- TEST 'control_iovr5_intel' [43:00, 02:21](519 MB) +PASS -- TEST 'control_p8_intel' [43:00, 02:02](1758 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [43:00, 02:36](1754 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [42:27, 02:27](1759 MB) +PASS -- TEST 'control_restart_p8_intel' [32:33, 02:10](912 MB) +PASS -- TEST 'control_noqr_p8_intel' [40:47, 02:27](1746 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [31:18, 02:05](918 MB) +PASS -- TEST 'control_decomp_p8_intel' [40:10, 02:23](1756 MB) +PASS -- TEST 'control_2threads_p8_intel' [40:10, 02:39](1834 MB) +PASS -- TEST 'control_p8_lndp_intel' [39:40, 02:06](1761 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [39:40, 02:55](1811 MB) +PASS -- TEST 'control_p8_mynn_intel' [39:23, 02:57](1772 MB) +PASS -- TEST 'merra2_thompson_intel' [38:55, 03:19](1761 MB) +PASS -- TEST 'regional_control_intel' [38:26, 01:26](871 MB) +PASS -- TEST 'regional_restart_intel' [20:14, 01:31](851 MB) +PASS -- TEST 'regional_decomp_intel' [38:18, 01:52](880 MB) +PASS -- TEST 'regional_2threads_intel' [37:04, 02:00](926 MB) +PASS -- TEST 'regional_noquilt_intel' [34:34, 01:44](1204 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [33:20, 02:11](877 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [33:20, 01:27](870 MB) +PASS -- TEST 'regional_wofs_intel' [32:31, 01:46](1570 MB) + +PASS -- COMPILE 'rrfs_intel' [10:26, 08:42] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [59:21, 02:14](896 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [59:22, 01:55](1057 MB) +PASS -- TEST 'rap_decomp_intel' [59:21, 02:06](907 MB) +PASS -- TEST 'rap_2threads_intel' [59:21, 02:16](990 MB) +PASS -- TEST 'rap_restart_intel' [31:48, 02:52](778 MB) +PASS -- TEST 'rap_sfcdiff_intel' [59:21, 02:52](901 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [59:21, 02:41](902 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [31:07, 02:57](777 MB) +PASS -- TEST 'hrrr_control_intel' [59:21, 02:45](901 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [59:21, 02:44](903 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [58:26, 02:57](975 MB) +PASS -- TEST 'hrrr_control_restart_intel' [31:07, 02:20](733 MB) +PASS -- TEST 'rrfs_v1beta_intel' [29:55, 02:16](897 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [29:15, 01:53](1857 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [29:00, 02:20](1848 MB) + +PASS -- COMPILE 'csawmg_intel' [15:32, 08:06] +PASS -- TEST 'control_csawmg_intel' [28:43, 01:44](857 MB) +PASS -- TEST 'control_ras_intel' [28:02, 01:34](557 MB) + +PASS -- COMPILE 'wam_intel' [15:32, 08:13] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [28:02, 01:19](1551 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [16:33, 08:22] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [27:47, 02:01](1749 MB) +PASS -- TEST 'regional_control_faster_intel' [27:24, 01:52](868 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [15:32, 07:34] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [27:03, 01:24](1491 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [25:26, 02:11](1493 MB) +PASS -- TEST 'control_stochy_debug_intel' [22:12, 01:20](693 MB) +PASS -- TEST 'control_lndp_debug_intel' [21:54, 01:45](694 MB) +PASS -- TEST 'control_csawmg_debug_intel' [20:44, 01:40](998 MB) +PASS -- TEST 'control_ras_debug_intel' [20:12, 02:22](704 MB) +PASS -- TEST 'control_diag_debug_intel' [19:58, 02:03](1554 MB) +PASS -- TEST 'control_debug_p8_intel' [19:20, 01:25](1792 MB) +PASS -- TEST 'regional_debug_intel' [18:00, 01:25](892 MB) +PASS -- TEST 'rap_control_debug_intel' [17:43, 01:46](1079 MB) +PASS -- TEST 'hrrr_control_debug_intel' [17:42, 01:38](1067 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [17:40, 01:37](1075 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [17:20, 01:44](1077 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [16:24, 01:28](1079 MB) +PASS -- TEST 'rap_diag_debug_intel' [16:18, 02:09](1159 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [16:12, 02:14](1080 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [15:23, 01:49](1081 MB) +PASS -- TEST 'rap_lndp_debug_intel' [15:16, 01:55](1078 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [15:15, 01:52](1090 MB) +PASS -- TEST 'rap_noah_debug_intel' [15:13, 01:48](1070 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [13:31, 01:26](1075 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:28, 02:24](1073 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [13:25, 01:36](1069 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [12:29, 02:17](1074 MB) +PASS -- TEST 'rap_flake_debug_intel' [12:21, 02:20](1078 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:10, 02:38](1077 MB) + +PASS -- COMPILE 'wam_debug_intel' [11:26, 04:21] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [11:45, 01:56](1577 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:31, 08:03] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:23, 02:27](929 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:36, 02:51](783 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [10:03, 03:30](776 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:45, 02:37](835 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:24, 03:04](824 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:20, 02:44](776 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [58:15, 02:15](678 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [00:15, 01:31](663 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:28, 07:59] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [09:09, 01:54](990 MB) +PASS -- TEST 'conus13km_2threads_intel' [59:14, 02:12](990 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [58:42, 01:19](865 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:28, 08:07] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:16, 02:07](809 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [15:32, 04:33] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:54, 02:24](952 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:09, 01:32](949 MB) +PASS -- TEST 'conus13km_debug_intel' [06:03, 01:35](1041 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [06:03, 01:26](713 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [05:50, 01:26](1042 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [05:44, 01:28](1107 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:31, 04:20] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:50, 02:05](978 MB) + +PASS -- COMPILE 'hafsw_intel' [19:42, 09:50] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [04:44, 02:28](591 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:44, 01:50](958 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [04:40, 02:42](644 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [04:40, 03:12](668 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [04:39, 02:36](690 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [02:59, 02:14](376 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [02:53, 03:09](387 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [01:54, 02:31](373 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [01:53, 03:48](365 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [01:14, 02:16](401 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [58:16, 02:21](464 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [57:40, 02:35](474 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [57:24, 01:29](301 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [15:38, 04:52] ( 1444 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [57:25, 01:43](500 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:45, 09:40] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [56:20, 02:04](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [54:41, 02:07](698 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [20:45, 09:53] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [54:35, 02:41](702 MB) + +PASS -- COMPILE 'hafs_all_intel' [19:35, 09:07] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [54:16, 02:22](638 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [54:00, 02:30](622 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [53:46, 02:03](879 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [19:44, 10:01] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [53:10, 02:33](1818 MB) + +PASS -- COMPILE 'atml_intel' [19:43, 09:35] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [13:36, 05:20] ( 866 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [15:29, 08:32] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [52:34, 02:22](3009 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [52:09, 02:00](2891 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [51:56, 02:56](2906 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [11:26, 04:24] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [51:49, 02:31](4375 MB) SYNOPSIS: -Starting Date/Time: 20241209 18:26:53 -Ending Date/Time: 20241209 20:13:42 -Total Time: 01h:47m:19s +Starting Date/Time: 20241213 20:37:26 +Ending Date/Time: 20241213 22:40:47 +Total Time: 02h:04m:00s Compiles Completed: 33/33 -Tests Completed: 156/157 -Failed Tests: -* TEST cpld_control_nowave_noaero_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/NickSzapiro-NOAA/ufs-weather-model/tests/logs/log_wcoss2/run_cpld_control_nowave_noaero_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 WCOSS2 REGRESSION TESTING LOG==== -====START OF WCOSS2 REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -7f91b3de985a4799ef7f11450059958002f6aa8c - -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) - 6c497bdfce0add89af9df9ad4be4a6a1bdf48494 CICE-interface/CICE (remotes/origin/restart_fh) - 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - 3d3d28c120a1ad343f91e0e14dd38cd0cde6ae96 CMEPS-interface/CMEPS (remotes/origin/restart_fh) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) - 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) - 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) --179cae1dd84401cf25d250bd9102e66560a9d328 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) - e2f6c128f939faec4efa3ce88f3f9025804fb3ae MOM6-interface/MOM6 (remotes/origin/restart_fh) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - bdf039138204122991cea42729ee44c17ae7dd49 WW3 (6.07.1-353-gbdf03913) - 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: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241206 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_192903 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: GFS-DEV -* (-n) - RUN SINGLE TEST: cpld_control_nowave_noaero_p8 -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2sw_intel' [13:26, 11:04] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [46:16, 02:36](1877 MB) - -SYNOPSIS: -Starting Date/Time: 20241210 14:00:10 -Ending Date/Time: 20241210 14:30:33 -Total Time: 00h:30m:44s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 157/157 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/parm/global_control.nml.IN b/tests/parm/global_control.nml.IN index aeb1c11b2e..77f3c513ae 100644 --- a/tests/parm/global_control.nml.IN +++ b/tests/parm/global_control.nml.IN @@ -251,15 +251,15 @@ ca_trigger = @[CA_TRIGGER] nspinup = @[NSPINUP] iseed_ca = @[ISEED_CA] -@[HIDE_LAND_PERT] lndp_type = @[LNDP_TYPE] -@[HIDE_LAND_PERT] n_var_lndp = @[N_VAR_LNDP] -@[HIDE_NEST] lcnorm = @[LCNORM] -@[HIDE_SPPT] pert_mp = @[PERT_MP] -@[HIDE_SPPT] pert_radtend = @[PERT_RADTEND] -@[HIDE_SPPT] pert_clds = @[PERT_CLDS] -@[HIDE_IAU] iau_inc_files= @[IAU_INC_FILES] -@[HIDE_IAU] iau_drymassfixer = .false. -@[HIDE_IAU] iau_filter_increments = @[IAU_FILTER_INCREMENTS] + lndp_type = @[LNDP_TYPE] + n_var_lndp = @[N_VAR_LNDP] + lcnorm = @[LCNORM] + pert_mp = @[PERT_MP] + pert_radtend = @[PERT_RADTEND] + pert_clds = @[PERT_CLDS] + iau_inc_files= @[IAU_INC_FILES] + iau_drymassfixer = .false. + iau_filter_increments = @[IAU_FILTER_INCREMENTS] / &cires_ugwp_nml @@ -391,43 +391,43 @@ / &nam_stochy -@[HIDE_SKEB] skeb = @[SKEB] -@[HIDE_SKEB] iseed_skeb = @[ISEED_SKEB] -@[HIDE_SKEB] skeb_tau = @[SKEB_TAU] -@[HIDE_SKEB] skeb_lscale = @[SKEB_LSCALE] -@[HIDE_SKEB] skebnorm = @[SKEBNORM] -@[HIDE_SKEB] skeb_npass = @[SKEB_NPASS] -@[HIDE_SKEB] skeb_vdof = @[SKEB_VDOF] -@[HIDE_SHUM] shum = @[SHUM] -@[HIDE_SHUM] iseed_shum = @[ISEED_SHUM] -@[HIDE_SHUM] shum_tau = @[SHUM_TAU] -@[HIDE_SHUM] shum_lscale = @[SHUM_LSCALE] -@[HIDE_SPPT] sppt = @[SPPT] -@[HIDE_SPPT] iseed_sppt = @[ISEED_SPPT] -@[HIDE_SPPT] sppt_tau = @[SPPT_TAU] -@[HIDE_SPPT] sppt_lscale = @[SPPT_LSCALE] -@[HIDE_SPPT] sppt_logit = @[SPPT_LOGIT] -@[HIDE_SPPT] sppt_sfclimit = @[SPPT_SFCLIMIT] -@[HIDE_SPPT] use_zmtnblck = @[USE_ZMTNBLCK] -@[HIDE_SPPT] pbl_taper = @[PBL_TAPER] -@[HIDE_OCNSPPT] OCNSPPT = @[OCNSPPT] -@[HIDE_OCNSPPT] OCNSPPT_LSCALE = @[OCNSPPT_LSCALE] -@[HIDE_OCNSPPT] OCNSPPT_TAU = @[OCNSPPT_TAU] -@[HIDE_OCNSPPT] ISEED_OCNSPPT =@[ISEED_OCNSPPT] -@[HIDE_EPBL] EPBL = @[EPBL] -@[HIDE_EPBL] EPBL_LSCALE = @[EPBL_LSCALE] -@[HIDE_EPBL] EPBL_TAU = @[EPBL_TAU] -@[HIDE_EPBL] ISEED_EPBL = @[ISEED_EPBL] + skeb = @[SKEB] + iseed_skeb = @[ISEED_SKEB] + skeb_tau = @[SKEB_TAU] + skeb_lscale = @[SKEB_LSCALE] + skebnorm = @[SKEBNORM] + skeb_npass = @[SKEB_NPASS] + skeb_vdof = @[SKEB_VDOF] + shum = @[SHUM] + iseed_shum = @[ISEED_SHUM] + shum_tau = @[SHUM_TAU] + shum_lscale = @[SHUM_LSCALE] + sppt = @[SPPT] + iseed_sppt = @[ISEED_SPPT] + sppt_tau = @[SPPT_TAU] + sppt_lscale = @[SPPT_LSCALE] + sppt_logit = @[SPPT_LOGIT] + sppt_sfclimit = @[SPPT_SFCLIMIT] + use_zmtnblck = @[USE_ZMTNBLCK] + pbl_taper = @[PBL_TAPER] + OCNSPPT = @[OCNSPPT] + OCNSPPT_LSCALE = @[OCNSPPT_LSCALE] + OCNSPPT_TAU = @[OCNSPPT_TAU] + ISEED_OCNSPPT =@[ISEED_OCNSPPT] + EPBL = @[EPBL] + EPBL_LSCALE = @[EPBL_LSCALE] + EPBL_TAU = @[EPBL_TAU] + ISEED_EPBL = @[ISEED_EPBL] / &nam_sfcperts -@[HIDE_LAND_PERT] lndp_type = @[LNDP_TYPE] -@[HIDE_LAND_PERT] lndp_model_type = @[LNDP_MODEL_TYPE] -@[HIDE_LAND_PERT] LNDP_TAU=@[LNDP_TAU] -@[HIDE_LAND_PERT] LNDP_LSCALE=@[LNDP_LSCALE] -@[HIDE_LAND_PERT] ISEED_LNDP=@[ISEED_LNDP] -@[HIDE_LAND_PERT] lndp_var_list = @[LNDP_VAR_LIST] -@[HIDE_LAND_PERT] lndp_prt_list = @[LNDP_PRT_LIST] + lndp_type = @[LNDP_TYPE] + lndp_model_type = @[LNDP_MODEL_TYPE] + LNDP_TAU=@[LNDP_TAU] + LNDP_LSCALE=@[LNDP_LSCALE] + ISEED_LNDP=@[ISEED_LNDP] + lndp_var_list = @[LNDP_VAR_LIST] + lndp_prt_list = @[LNDP_PRT_LIST] / &MOM_input_nml diff --git a/tests/parm/global_control_lnd_iau.nml.IN b/tests/parm/global_control_lnd_iau.nml.IN index 170230dc63..c781e0d6b3 100644 --- a/tests/parm/global_control_lnd_iau.nml.IN +++ b/tests/parm/global_control_lnd_iau.nml.IN @@ -251,15 +251,6 @@ ca_trigger = @[CA_TRIGGER] nspinup = @[NSPINUP] iseed_ca = @[ISEED_CA] -@[HIDE_LAND_PERT] lndp_type = @[LNDP_TYPE] -@[HIDE_LAND_PERT] n_var_lndp = @[N_VAR_LNDP] -@[HIDE_NEST] lcnorm = @[LCNORM] -@[HIDE_SPPT] pert_mp = @[PERT_MP] -@[HIDE_SPPT] pert_radtend = @[PERT_RADTEND] -@[HIDE_SPPT] pert_clds = @[PERT_CLDS] -@[HIDE_IAU] iau_inc_files= @[IAU_INC_FILES] -@[HIDE_IAU] iau_drymassfixer = .false. -@[HIDE_IAU] iau_filter_increments = @[IAU_FILTER_INCREMENTS] / &land_iau_nml @@ -403,44 +394,14 @@ grid_file = 'INPUT/grid_spec.nc' / -&nam_stochy -@[HIDE_SKEB] skeb = @[SKEB] -@[HIDE_SKEB] iseed_skeb = @[ISEED_SKEB] -@[HIDE_SKEB] skeb_tau = @[SKEB_TAU] -@[HIDE_SKEB] skeb_lscale = @[SKEB_LSCALE] -@[HIDE_SKEB] skebnorm = @[SKEBNORM] -@[HIDE_SKEB] skeb_npass = @[SKEB_NPASS] -@[HIDE_SKEB] skeb_vdof = @[SKEB_VDOF] -@[HIDE_SHUM] shum = @[SHUM] -@[HIDE_SHUM] iseed_shum = @[ISEED_SHUM] -@[HIDE_SHUM] shum_tau = @[SHUM_TAU] -@[HIDE_SHUM] shum_lscale = @[SHUM_LSCALE] -@[HIDE_SPPT] sppt = @[SPPT] -@[HIDE_SPPT] iseed_sppt = @[ISEED_SPPT] -@[HIDE_SPPT] sppt_tau = @[SPPT_TAU] -@[HIDE_SPPT] sppt_lscale = @[SPPT_LSCALE] -@[HIDE_SPPT] sppt_logit = @[SPPT_LOGIT] -@[HIDE_SPPT] sppt_sfclimit = @[SPPT_SFCLIMIT] -@[HIDE_SPPT] use_zmtnblck = @[USE_ZMTNBLCK] -@[HIDE_SPPT] pbl_taper = @[PBL_TAPER] -@[HIDE_OCNSPPT] OCNSPPT = @[OCNSPPT] -@[HIDE_OCNSPPT] OCNSPPT_LSCALE = @[OCNSPPT_LSCALE] -@[HIDE_OCNSPPT] OCNSPPT_TAU = @[OCNSPPT_TAU] -@[HIDE_OCNSPPT] ISEED_OCNSPPT =@[ISEED_OCNSPPT] -@[HIDE_EPBL] EPBL = @[EPBL] -@[HIDE_EPBL] EPBL_LSCALE = @[EPBL_LSCALE] -@[HIDE_EPBL] EPBL_TAU = @[EPBL_TAU] -@[HIDE_EPBL] ISEED_EPBL = @[ISEED_EPBL] -/ - &nam_sfcperts -@[HIDE_LAND_PERT] lndp_type = @[LNDP_TYPE] -@[HIDE_LAND_PERT] lndp_model_type = @[LNDP_MODEL_TYPE] -@[HIDE_LAND_PERT] LNDP_TAU=@[LNDP_TAU] -@[HIDE_LAND_PERT] LNDP_LSCALE=@[LNDP_LSCALE] -@[HIDE_LAND_PERT] ISEED_LNDP=@[ISEED_LNDP] -@[HIDE_LAND_PERT] lndp_var_list = @[LNDP_VAR_LIST] -@[HIDE_LAND_PERT] lndp_prt_list = @[LNDP_PRT_LIST] + lndp_type = @[LNDP_TYPE] + lndp_model_type = @[LNDP_MODEL_TYPE] + LNDP_TAU=@[LNDP_TAU] + LNDP_LSCALE=@[LNDP_LSCALE] + ISEED_LNDP=@[ISEED_LNDP] + lndp_var_list = @[LNDP_VAR_LIST] + lndp_prt_list = @[LNDP_PRT_LIST] / &MOM_input_nml diff --git a/tests/test_changes.list b/tests/test_changes.list index 32bee137ed..c4ea4a8d43 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,3 +1,3 @@ -cpld_control_p8 intel -cpld_restart_p8 intel -cpld_control_p8 intelllvm +hafs_regional_docn intel +hafs_regional_docn_oisst intel +hafs_regional_datm_cdeps intel diff --git a/tests/tests/control_c48_lnd_iau b/tests/tests/control_c48_lnd_iau index 702c908d93..9852b68dbd 100644 --- a/tests/tests/control_c48_lnd_iau +++ b/tests/tests/control_c48_lnd_iau @@ -75,6 +75,8 @@ export IOVR=3 export IMO=192 export JMO=94 +export PERT_CLDS=.true. + export FNSMCC_control="'global_soilmgldas.statsgo.t92.192.94.grb'" export FNMSKH_control="'global_slmask.t62.192.94.grb'" export FNSMCC=${FNSMCC_control} diff --git a/tests/tests/cpld_debug_pdlib_p8 b/tests/tests/cpld_debug_pdlib_p8 index e2d0ea77c7..43ac0ebc3b 100644 --- a/tests/tests/cpld_debug_pdlib_p8 +++ b/tests/tests/cpld_debug_pdlib_p8 @@ -122,9 +122,5 @@ export K_SPLIT=2 export N_SPLIT=5 # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. From e1193704767800bfaece56eb2a4b058bd4d0afbc Mon Sep 17 00:00:00 2001 From: Brian Curtis <64433609+BrianCurtis-NOAA@users.noreply.github.com> Date: Wed, 18 Dec 2024 12:33:19 -0500 Subject: [PATCH 18/24] Gaea C6 support for UFSWM (#2448) * UFSWM - Gaea C6 Support --------- Co-authored-by: JONG KIM Co-authored-by: Ratko Vasic --- ...tel.cmake => configure_gaeac5.intel.cmake} | 0 ...cmake => configure_gaeac5.intelllvm.cmake} | 0 cmake/configure_gaeac6.intel.cmake | 4 + cmake/configure_gaeac6.intelllvm.cmake | 2 + ...fs_gaea.intel.lua => ufs_gaeac5.intel.lua} | 4 +- ...intelllvm.lua => ufs_gaeac5.intelllvm.lua} | 4 +- modulefiles/ufs_gaeac6.intel.lua | 33 + modulefiles/ufs_gaeac6.intelllvm.lua | 40 + tests/compile.sh | 16 +- tests/default_vars.sh | 22 +- tests/detect_machine.sh | 15 +- ..._slurm.IN_gaea => compile_slurm.IN_gaeac5} | 0 tests/fv3_conf/compile_slurm.IN_gaeac6 | 22 + ...{fv3_slurm.IN_gaea => fv3_slurm.IN_gaeac5} | 0 tests/fv3_conf/fv3_slurm.IN_gaeac6 | 49 ++ tests/logs/RegressionTests_gaea.log | 349 -------- tests/logs/RegressionTests_gaeac5.log | 348 ++++++++ tests/logs/RegressionTests_gaeac6.log | 332 ++++++++ tests/logs/RegressionTests_hera.log | 749 +++++++++--------- tests/module-setup.sh | 9 +- tests/rt.conf | 22 +- tests/rt.sh | 35 +- tests/rt_utils.sh | 14 +- tests/run_test.sh | 12 +- tests/test_changes.list | 3 - tests/tests/atmaero_control_p8 | 4 + tests/tests/control_p8.v2.sfc | 2 +- tests/tests/control_wam | 2 +- tests/tests/control_wam_debug | 2 +- tests/tests/cpld_control_c192_p8 | 4 +- tests/tests/cpld_control_ciceC_p8 | 4 + tests/tests/cpld_control_p8 | 2 +- tests/tests/cpld_control_p8.v2.sfc | 2 +- tests/tests/cpld_control_p8_faster | 4 + tests/tests/cpld_control_p8_mixedmode | 4 + tests/tests/cpld_control_qr_p8 | 4 + tests/tests/cpld_debug_gfsv17 | 5 +- tests/tests/cpld_debug_p8 | 4 + tests/tests/cpld_debug_pdlib_p8 | 5 +- tests/tests/cpld_decomp_p8 | 2 +- tests/tests/cpld_mpi_p8 | 2 +- tests/tests/cpld_restart_p8 | 2 +- tests/tests/cpld_restart_qr_p8 | 4 + tests/tests/regional_atmaq | 2 +- tests/tests/regional_atmaq_debug | 4 +- tests/tests/regional_atmaq_faster | 2 +- tests/tests/regional_debug | 7 +- 47 files changed, 1372 insertions(+), 785 deletions(-) rename cmake/{configure_gaea.intel.cmake => configure_gaeac5.intel.cmake} (100%) rename cmake/{configure_gaea.intelllvm.cmake => configure_gaeac5.intelllvm.cmake} (100%) create mode 100644 cmake/configure_gaeac6.intel.cmake create mode 100644 cmake/configure_gaeac6.intelllvm.cmake rename modulefiles/{ufs_gaea.intel.lua => ufs_gaeac5.intel.lua} (93%) rename modulefiles/{ufs_gaea.intelllvm.lua => ufs_gaeac5.intelllvm.lua} (94%) create mode 100644 modulefiles/ufs_gaeac6.intel.lua create mode 100644 modulefiles/ufs_gaeac6.intelllvm.lua rename tests/fv3_conf/{compile_slurm.IN_gaea => compile_slurm.IN_gaeac5} (100%) create mode 100644 tests/fv3_conf/compile_slurm.IN_gaeac6 rename tests/fv3_conf/{fv3_slurm.IN_gaea => fv3_slurm.IN_gaeac5} (100%) create mode 100644 tests/fv3_conf/fv3_slurm.IN_gaeac6 delete mode 100644 tests/logs/RegressionTests_gaea.log create mode 100644 tests/logs/RegressionTests_gaeac5.log create mode 100644 tests/logs/RegressionTests_gaeac6.log diff --git a/cmake/configure_gaea.intel.cmake b/cmake/configure_gaeac5.intel.cmake similarity index 100% rename from cmake/configure_gaea.intel.cmake rename to cmake/configure_gaeac5.intel.cmake diff --git a/cmake/configure_gaea.intelllvm.cmake b/cmake/configure_gaeac5.intelllvm.cmake similarity index 100% rename from cmake/configure_gaea.intelllvm.cmake rename to cmake/configure_gaeac5.intelllvm.cmake diff --git a/cmake/configure_gaeac6.intel.cmake b/cmake/configure_gaeac6.intel.cmake new file mode 100644 index 0000000000..6037c6379f --- /dev/null +++ b/cmake/configure_gaeac6.intel.cmake @@ -0,0 +1,4 @@ +set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) +set(MOM6_Extra_FORTRAN_FLAGS "-xsse2") +set(HYCOM_Extra_FORTRAN_FLAGS "-xSSE4.2") +set(HYCOM_Extra_C_FLAGS "-xSSE4.2") \ No newline at end of file diff --git a/cmake/configure_gaeac6.intelllvm.cmake b/cmake/configure_gaeac6.intelllvm.cmake new file mode 100644 index 0000000000..42e6486231 --- /dev/null +++ b/cmake/configure_gaeac6.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/modulefiles/ufs_gaea.intel.lua b/modulefiles/ufs_gaeac5.intel.lua similarity index 93% rename from modulefiles/ufs_gaea.intel.lua rename to modulefiles/ufs_gaeac5.intel.lua index 834c8fc41f..4641f2dbfd 100644 --- a/modulefiles/ufs_gaea.intel.lua +++ b/modulefiles/ufs_gaeac5.intel.lua @@ -3,7 +3,7 @@ help([[ on the NOAA RDHPC machine Gaea C5 using Intel-2023.1.0. ]]) -whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea ]===]) +whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea C5 ]===]) prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core") @@ -30,4 +30,4 @@ unload("cray-libsci") setenv("CC","cc") setenv("CXX","CC") setenv("FC","ftn") -setenv("CMAKE_Platform","gaea.intel") +setenv("CMAKE_Platform","gaeac5.intel") diff --git a/modulefiles/ufs_gaea.intelllvm.lua b/modulefiles/ufs_gaeac5.intelllvm.lua similarity index 94% rename from modulefiles/ufs_gaea.intelllvm.lua rename to modulefiles/ufs_gaeac5.intelllvm.lua index 01d8585454..4bfddf2e90 100644 --- a/modulefiles/ufs_gaea.intelllvm.lua +++ b/modulefiles/ufs_gaeac5.intelllvm.lua @@ -3,7 +3,7 @@ help([[ on the NOAA RDHPC machine Gaea C5 using Intel-2023.1.0. ]]) -whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea ]===]) +whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea C5]===]) prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core") @@ -36,4 +36,4 @@ setenv("I_MPI_F90", "ifx") setenv("CC","cc") setenv("CXX","CC") setenv("FC","ftn") -setenv("CMAKE_Platform","gaea.intelllvm") +setenv("CMAKE_Platform","gaeac5.intelllvm") diff --git a/modulefiles/ufs_gaeac6.intel.lua b/modulefiles/ufs_gaeac6.intel.lua new file mode 100644 index 0000000000..ce59797288 --- /dev/null +++ b/modulefiles/ufs_gaeac6.intel.lua @@ -0,0 +1,33 @@ +help([[ + This module loads libraries required for building and running UFS Weather Model + on the NOAA RDHPC machine Gaea C6 using Intel-2023.2.0. +]]) + +whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea C6]===]) + +prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/c6/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core") + +stack_intel_ver=os.getenv("stack_intel_ver") or "2023.2.0" +load(pathJoin("stack-intel", stack_intel_ver)) + +stack_cray_mpich_ver=os.getenv("stack_cray_mpich_ver") or "8.1.29" +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") + +setenv("CC","cc") +setenv("CXX","CC") +setenv("FC","ftn") +setenv("CMAKE_Platform","gaeac6.intel") diff --git a/modulefiles/ufs_gaeac6.intelllvm.lua b/modulefiles/ufs_gaeac6.intelllvm.lua new file mode 100644 index 0000000000..abf311b4ec --- /dev/null +++ b/modulefiles/ufs_gaeac6.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 C6 using Intel-2023.2.0. +]]) + +whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea C6]===]) + +prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/c6/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core") + +stack_intel_ver=os.getenv("stack_intel_ver") or "2023.2.0" +load(pathJoin("stack-intel", stack_intel_ver)) + +stack_cray_mpich_ver=os.getenv("stack_cray_mpich_ver") or "8.1.29" +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.2.0") +load("intel-oneapi/2023.2.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","gaeac6.intelllvm") diff --git a/tests/compile.sh b/tests/compile.sh index dd8f91ced1..2c00304e28 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -61,7 +61,10 @@ case ${MACHINE_ID} in ;; *) # Activate lua environment for gaea c5 - if [[ ${MACHINE_ID} == gaea ]]; then + if [[ ${MACHINE_ID} == gaeac5 ]]; then + module reset + fi + if [[ ${MACHINE_ID} == gaeac6 ]]; then module reset elif [[ ${MACHINE_ID} == hercules ]]; then module purge @@ -97,17 +100,6 @@ SUITES=$(grep -Po "\-DCCPP_SUITES=\K[^ ]*" <<< "${MAKE_OPT}") export SUITES set -ex -# Valid applications -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" - fi -fi - CMAKE_FLAGS=$(set -e; trim "${CMAKE_FLAGS}") echo "CMAKE_FLAGS = ${CMAKE_FLAGS}" diff --git a/tests/default_vars.sh b/tests/default_vars.sh index d8b58c91aa..ce7eca3ac9 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -300,7 +300,7 @@ elif [[ ${MACHINE_ID} = s4 ]]; then export ICE_tasks_cpl_bmrk=48 export WAV_tasks_cpl_bmrk=80 -elif [[ ${MACHINE_ID} = gaea ]]; then +elif [[ ${MACHINE_ID} = gaeac5 ]]; then export TPN=128 @@ -321,6 +321,26 @@ elif [[ ${MACHINE_ID} = gaea ]]; then export WPG_cpl_atmw_gdas=24 export WAV_tasks_atmw_gdas=264 +elif [[ ${MACHINE_ID} = gaeac6 ]]; then + + export TPN=192 + + export INPES_dflt=3 + export JNPES_dflt=8 + export INPES_thrd=3 + export JNPES_thrd=4 + export INPES_c384=6 + export JNPES_c384=8 + export THRD_c384=1 + export INPES_c768=8 + export JNPES_c768=16 + export THRD_c768=2 + + export THRD_cpl_atmw_gdas=3 + export INPES_cpl_atmw_gdas=6 + export JNPES_cpl_atmw_gdas=8 + export WPG_cpl_atmw_gdas=24 + export WAV_tasks_atmw_gdas=264 elif [[ ${MACHINE_ID} = derecho ]]; then export TPN=128 diff --git a/tests/detect_machine.sh b/tests/detect_machine.sh index 0bd0535d8a..99419f3555 100755 --- a/tests/detect_machine.sh +++ b/tests/detect_machine.sh @@ -21,8 +21,10 @@ case $(hostname -f) in dlogin0[1-9].dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood01-9 dlogin10.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood10 - gaea5[1-8]) MACHINE_ID=gaea ;; ### gaea51-58 - gaea5[1-8].ncrc.gov) MACHINE_ID=gaea ;; ### gaea51-58 + gaea5[1-8]) MACHINE_ID=gaeac5 ;; ### gaea51-58 + gaea5[1-8].ncrc.gov) MACHINE_ID=gaeac5 ;; ### gaea51-58 + gaea6[1-8]) MACHINE_ID=gaeac6 ;; ### gaea61-68 + gaea6[1-8].ncrc.gov) MACHINE_ID=gaeac6 ;; ### gaea61-68 hfe0[1-9]) MACHINE_ID=hera ;; ### hera01-09 hfe1[0-2]) MACHINE_ID=hera ;; ### hera10-12 @@ -94,9 +96,12 @@ elif [[ -d /work ]]; then else MACHINE_ID=orion fi -elif [[ -d /gpfs && -d /ncrc ]]; then - # We are on GAEA. - MACHINE_ID=gaea +elif [[ -d /gpfs/f5 && -d /ncrc ]]; then + # We are on GAEA C5. + MACHINE_ID=gaeac5 +elif [[ -d /gpfs/f6 && -d /ncrc ]]; then + # We are on GAEA C6. + MACHINE_ID=gaeac6 elif [[ -d /data/prod ]]; then # We are on SSEC's S4 MACHINE_ID=s4 diff --git a/tests/fv3_conf/compile_slurm.IN_gaea b/tests/fv3_conf/compile_slurm.IN_gaeac5 similarity index 100% rename from tests/fv3_conf/compile_slurm.IN_gaea rename to tests/fv3_conf/compile_slurm.IN_gaeac5 diff --git a/tests/fv3_conf/compile_slurm.IN_gaeac6 b/tests/fv3_conf/compile_slurm.IN_gaeac6 new file mode 100644 index 0000000000..9f5bf9c304 --- /dev/null +++ b/tests/fv3_conf/compile_slurm.IN_gaeac6 @@ -0,0 +1,22 @@ +#!/bin/bash -l +#SBATCH -e err +#SBATCH -o out +#SBATCH --account=@[ACCNR] +##SBATCH --qos=@[QUEUE] +#SBATCH --clusters=es +#SBATCH --partition=eslogin_c6 +#SBATCH --nodes=1 +#SBATCH --ntasks-per-node=8 +#SBATCH --mem-per-cpu=4G +#SBATCH --time=180 +#SBATCH --job-name="@[JBNME]" + +set -eux + +echo -n " $( date +%s )," > job_timestamp.txt +echo "Compile started: " `date` + +@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_ID] @[RT_COMPILER] + +echo "Compile ended: " `date` +echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/fv3_slurm.IN_gaea b/tests/fv3_conf/fv3_slurm.IN_gaeac5 similarity index 100% rename from tests/fv3_conf/fv3_slurm.IN_gaea rename to tests/fv3_conf/fv3_slurm.IN_gaeac5 diff --git a/tests/fv3_conf/fv3_slurm.IN_gaeac6 b/tests/fv3_conf/fv3_slurm.IN_gaeac6 new file mode 100644 index 0000000000..9511554fb7 --- /dev/null +++ b/tests/fv3_conf/fv3_slurm.IN_gaeac6 @@ -0,0 +1,49 @@ +#!/bin/bash -l +#SBATCH -e err +#SBATCH -o out +#SBATCH --job-name="@[JBNME]" +#SBATCH --account=@[ACCNR] +#SBATCH --qos=@[QUEUE] +#SBATCH --clusters=c6 +#SBATCH --partition=batch +#SBATCH --nodes=@[NODES] +#SBATCH --ntasks-per-node=@[TPN] +#SBATCH --time=@[WLCLK] + +set -eux +echo -n " $( date +%s )," > job_timestamp.txt + +set +x +MACHINE_ID=gaeac6 +source ./module-setup.sh +module use --prepend $PWD/modulefiles +module load modules.fv3 +module list +set -x + +echo "Model started: " `date` + +export OMP_NUM_THREADS=@[THRD] +export OMP_STACKSIZE=1024M +export NC_BLKSZ=1M +export ESMF_RUNTIME_PROFILE=ON +export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" +export FI_VERBS_PREFER_XRC=0 +export FI_CXI_RX_MATCH_MODE=hybrid +export COMEX_EAGER_THRESHOLD=65536 +export FI_CXI_RDZV_THRESHOLD=65536 + +# Avoid job errors because of filesystem synchronization delays +sync && sleep 1 + +# This "if" block is part of the rt.sh self-tests in error-test.conf. It emulates the model failing to run. +if [ "${JOB_SHOULD_FAIL:-NO}" = WHEN_RUNNING ] ; then + echo "The job should abort now, with exit status 1." 1>&2 + echo "If error checking is working, the metascheduler should mark the job as failed." 1>&2 + false +fi + +srun --label -n @[TASKS] ./fv3.exe + +echo "Model ended: " `date` +echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log deleted file mode 100644 index c1de3958b8..0000000000 --- a/tests/logs/RegressionTests_gaea.log +++ /dev/null @@ -1,349 +0,0 @@ -====START OF GAEA REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -19498cc1894245fe8afe365dd87dbe5d8862b35f - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 51f8cd20c15fe39ef1168d59d5077812b6508544 CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-10) - ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) - 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - 507ca48f4586fbeb7b0e23e5cfa9321bc3f02a1d CMEPS-interface/CMEPS (cmeps_v0.4.1-3103-g507ca48f) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) - 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) - 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) --179cae1dd84401cf25d250bd9102e66560a9d328 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) - 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) - 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: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20241212 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1810864 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [16:12, 14:10] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:29, 11:27](3185 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:12, 18:16] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [16:50, 13:44](1897 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:48, 14:25](1938 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:49, 06:27](1073 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:51, 15:05](1877 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:12, 18:26] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [16:36, 13:30](1901 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 06:57] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [30:18, 27:56](1934 MB) - -PASS -- COMPILE 's2swa_intel' [16:12, 14:17] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [18:35, 14:49](3210 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:33, 14:50](3212 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:55, 08:42](3136 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [18:20, 14:49](3236 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:59, 08:33](3156 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [17:28, 13:11](3465 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [18:28, 14:46](3209 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [16:28, 12:09](3155 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:33, 14:52](3210 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:09, 09:43](3492 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:51, 06:36](3596 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [24:48, 19:05](4262 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:17, 11:48](4353 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:27, 08:46](3194 MB) - -PASS -- COMPILE 's2sw_intel' [15:12, 13:18] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:42, 07:06](1920 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:36, 12:10](1964 MB) - -PASS -- COMPILE 's2swa_debug_intel' [09:11, 07:48] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [23:48, 21:28](3266 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:11, 06:57] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:59, 09:02](1939 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [14:13, 12:49] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:28, 04:53](1975 MB) - -PASS -- COMPILE 's2s_intel' [13:12, 11:49] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:30, 05:34](2869 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:46, 01:42](2872 MB) -PASS -- TEST 'cpld_restart_c48_intel' [05:51, 01:09](2295 MB) - -PASS -- COMPILE 's2swa_faster_intel' [16:12, 14:44] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [17:25, 14:55](3214 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [19:12, 17:50] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [25:48, 24:08](1912 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:51, 12:21](1100 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [30:49, 28:23](1891 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:13, 10:09] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:51, 29:53](1942 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:11, 12:31] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:20, 03:37](654 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:44, 03:09](1551 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:26, 03:12](1566 MB) -PASS -- TEST 'control_latlon_intel' [05:26, 03:10](1559 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:34, 03:08](1558 MB) -PASS -- TEST 'control_c48_intel' [11:38, 10:00](1572 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:26, 05:41](696 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [11:36, 09:55](1573 MB) -PASS -- TEST 'control_c192_intel' [12:33, 11:01](1690 MB) -PASS -- TEST 'control_c384_intel' [25:51, 23:36](1970 MB) -PASS -- TEST 'control_c384gdas_intel' [17:19, 14:26](1170 MB) -PASS -- TEST 'control_stochy_intel' [03:19, 01:49](610 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:19, 01:00](419 MB) -PASS -- TEST 'control_lndp_intel' [03:21, 01:35](607 MB) -PASS -- TEST 'control_iovr4_intel' [04:31, 02:23](607 MB) -PASS -- TEST 'control_iovr5_intel' [04:25, 02:29](609 MB) -PASS -- TEST 'control_p8_intel' [05:50, 03:30](1853 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:58, 03:08](1845 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:50, 03:29](1845 MB) -PASS -- TEST 'control_restart_p8_intel' [03:46, 01:53](1002 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:51, 03:30](1842 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:46, 01:54](990 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:50, 03:33](1837 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:34, 03:10](1929 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:26, 06:07](1846 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:37, 03:58](1902 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:36, 03:03](1847 MB) -PASS -- TEST 'merra2_thompson_intel' [05:37, 03:18](1843 MB) -PASS -- TEST 'regional_control_intel' [06:25, 04:36](877 MB) -PASS -- TEST 'regional_restart_intel' [04:58, 02:34](861 MB) -PASS -- TEST 'regional_decomp_intel' [06:30, 04:51](878 MB) -PASS -- TEST 'regional_2threads_intel' [04:38, 03:01](1015 MB) -PASS -- TEST 'regional_noquilt_intel' [06:33, 04:44](1210 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:32, 04:38](880 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:27, 04:42](876 MB) -PASS -- TEST 'regional_wofs_intel' [09:24, 06:35](1571 MB) - -PASS -- COMPILE 'rrfs_intel' [13:12, 12:04] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:40, 06:44](989 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:52, 03:58](1169 MB) -PASS -- TEST 'rap_decomp_intel' [08:40, 07:01](991 MB) -PASS -- TEST 'rap_2threads_intel' [07:39, 06:03](1072 MB) -PASS -- TEST 'rap_restart_intel' [05:33, 03:26](874 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:40, 06:38](985 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:40, 06:51](988 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:00, 04:54](875 MB) -PASS -- TEST 'hrrr_control_intel' [05:35, 03:34](989 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:35, 03:41](981 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:34, 03:04](1067 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:28, 01:55](820 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:40, 06:37](987 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:24, 08:29](1949 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:23, 08:18](1932 MB) - -PASS -- COMPILE 'csawmg_intel' [12:12, 10:10] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [08:27, 06:30](944 MB) -PASS -- TEST 'control_ras_intel' [05:19, 03:20](644 MB) - -PASS -- COMPILE 'wam_intel' [12:14, 10:24] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:51, 11:38](1640 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [19:13, 17:12] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:01, 02:55](1841 MB) -PASS -- TEST 'regional_control_faster_intel' [06:36, 04:28](885 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [12:11, 10:10] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:39, 02:28](1576 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:14, 02:23](1582 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:57, 03:06](782 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:32, 02:51](779 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:25, 04:18](1084 MB) -PASS -- TEST 'control_ras_debug_intel' [04:24, 02:46](787 MB) -PASS -- TEST 'control_diag_debug_intel' [04:34, 02:46](1638 MB) -PASS -- TEST 'control_debug_p8_intel' [04:29, 02:44](1876 MB) -PASS -- TEST 'regional_debug_intel' [18:28, 17:01](891 MB) -PASS -- TEST 'rap_control_debug_intel' [06:20, 05:02](1168 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:19, 04:53](1161 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:21, 05:07](1162 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:21, 05:20](1159 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:20, 05:33](1164 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:56, 05:31](1249 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:04, 05:02](1165 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:02, 05:01](1164 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:06, 04:56](1165 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:02, 04:58](1164 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:02, 04:51](1160 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:06, 04:55](1161 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:06, 08:01](1163 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:01, 04:57](1161 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:54, 04:58](1162 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:53, 05:02](1166 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:04, 08:26](1170 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:11, 06:22] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:50, 13:03](1661 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:12, 10:10] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:50, 03:46](1041 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:30, 05:43](868 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:32, 03:12](867 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:28, 05:15](922 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:28, 02:41](916 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:31, 03:19](867 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:27, 04:29](783 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:23, 01:43](755 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 10:03] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:47, 01:58](1078 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:39, 01:04](1060 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:57, 01:14](949 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 09:37] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:29, 04:18](893 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:56] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:18, 04:57](1043 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:18, 04:51](1042 MB) -PASS -- TEST 'conus13km_debug_intel' [15:47, 13:16](1126 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:01, 13:44](802 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:55, 07:55](1117 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:57, 13:33](1194 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:10, 06:01] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:21, 05:20](1071 MB) - -PASS -- COMPILE 'hafsw_intel' [13:11, 11:31] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:06, 05:11](719 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:35, 04:25](1080 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:22, 07:31](742 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:08, 11:20](774 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:19, 12:42](804 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:50, 05:15](473 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:09, 06:35](500 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:40, 02:45](399 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:41, 07:30](497 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:40, 04:32](507 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:43, 03:51](506 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:44, 04:32](581 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:32, 01:31](426 MB) -PASS -- TEST 'gnv1_nested_intel' [07:03, 04:53](1697 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:11, 06:55] ( 1467 warnings 1469 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:46, 12:47](613 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [12:11, 11:04] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:56, 07:31](632 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:58, 07:36](810 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 12:00] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:43, 05:57](812 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:11, 10:53] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:13, 06:08](734 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:04, 06:13](720 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [24:05, 21:12](891 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [12:11, 10:20] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:13, 02:41](752 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:17, 02:16](740 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:54, 02:28](643 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:49, 02:30](641 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:49, 02:31](640 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:48, 02:36](764 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:48, 02:35](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:35, 02:27](646 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:47, 06:04](695 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:43, 06:08](677 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:36](764 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 04:42](2030 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 04:42](2031 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 05:17] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 05:25](747 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:11, 09:44] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:37](764 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:31] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:36, 02:37](315 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:31, 01:56](463 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:32, 00:50](462 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:42] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [03:21, 00:33](450 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:40, 00:33](250 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:11, 12:21] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:56, 03:53](1909 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:11, 11:54] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:05, 08:38](1895 MB) - -PASS -- COMPILE 'atml_intel' [13:11, 11:48] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:18, 06:44](1878 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:28, 06:55](1881 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:29, 03:40](1029 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:15, 06:11] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:08, 06:11](1908 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 11:01] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:51, 02:09](1878 MB) - -PASS -- COMPILE 'atmaero_intel' [13:12, 11:31] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [10:08, 05:59](3099 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:54, 06:35](2988 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:49, 06:46](2994 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:10, 07:48] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [21:12, 18:13](4447 MB) - -PASS -- COMPILE 'atm_fbh_intel' [12:11, 10:51] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:29, 09:28](832 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [21:11, 19:56] -PASS -- TEST 'cpld_control_gfsv17_intelllvm' [15:51, 13:32](1899 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [11:11, 09:19] -PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [29:10, 27:09](1927 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [21:18, 19:15] -PASS -- TEST 'cpld_control_sfs_intelllvm' [15:34, 13:10](1897 MB) - -PASS -- COMPILE 's2swa_intelllvm' [16:11, 14:37] -PASS -- TEST 'cpld_control_p8_intelllvm' [18:08, 15:18](3215 MB) - -SYNOPSIS: -Starting Date/Time: 20241213 14:40:18 -Ending Date/Time: 20241213 16:23:10 -Total Time: 01h:43m:50s -Compiles Completed: 47/47 -Tests Completed: 193/193 - -NOTES: -A file 'test_changes.list' was generated but is empty. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: SUCCESS - -====END OF GAEA REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_gaeac5.log b/tests/logs/RegressionTests_gaeac5.log new file mode 100644 index 0000000000..f6097ed8bc --- /dev/null +++ b/tests/logs/RegressionTests_gaeac5.log @@ -0,0 +1,348 @@ +====START OF GAEAC5 REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +b1937471fe0ef4580b44cd3a01d2754110ec8c7d + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 34d1eab8e432cedf8a81976e3b675b32f41b043f CDEPS-interface/CDEPS (cdeps0.4.17-304-g34d1eab) + ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) + 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) + b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) + 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) + 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) + dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) +-179cae1dd84401cf25d250bd9102e66560a9d328 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) + 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) + 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) + 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: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20241212 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_1945712 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [15:13, 13:29] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:18, 11:04](3181 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:14, 17:30] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [15:44, 13:18](1907 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:50, 14:20](1938 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:47, 06:33](1072 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:44, 14:51](1885 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:14, 18:16] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [15:31, 13:16](1903 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:11, 08:19] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:48, 27:16](1923 MB) + +PASS -- COMPILE 's2swa_intel' [15:13, 13:34] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [17:15, 14:19](3215 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:13, 14:23](3214 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:57, 07:51](3136 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [17:12, 14:22](3232 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:56, 07:59](3160 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:07, 12:55](3460 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:09, 14:05](3208 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:09, 12:01](3158 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:13, 14:36](3215 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:39, 09:36](3490 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:00, 06:29](3600 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [24:13, 18:46](4256 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:57, 11:37](4354 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:06, 08:23](3195 MB) + +PASS -- COMPILE 's2sw_intel' [15:13, 13:28] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:54, 07:06](1907 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:57, 11:52](1973 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:11, 08:04] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [23:55, 21:32](3264 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:11, 08:09] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:46, 09:09](1945 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:13, 11:17] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:49, 04:46](1968 MB) + +PASS -- COMPILE 's2s_intel' [13:13, 11:24] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:36, 05:32](2878 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:37, 01:49](2880 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:32, 01:00](2296 MB) + +PASS -- COMPILE 's2swa_faster_intel' [15:11, 13:36] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:56, 14:17](3209 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 18:24] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [26:46, 24:34](1920 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:47, 12:23](1087 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [30:52, 28:20](1887 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:10, 06:52] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:48, 29:36](1943 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:12, 10:29] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:19, 04:11](656 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:28, 02:58](1551 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:27, 03:04](1567 MB) +PASS -- TEST 'control_latlon_intel' [04:24, 02:58](1561 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:34, 02:59](1556 MB) +PASS -- TEST 'control_c48_intel' [11:34, 09:56](1572 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:13, 05:41](696 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [11:31, 09:56](1575 MB) +PASS -- TEST 'control_c192_intel' [12:30, 10:46](1691 MB) +PASS -- TEST 'control_c384_intel' [25:49, 23:22](1966 MB) +PASS -- TEST 'control_c384gdas_intel' [17:15, 14:24](1176 MB) +PASS -- TEST 'control_stochy_intel' [03:19, 01:40](612 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:21, 00:59](418 MB) +PASS -- TEST 'control_lndp_intel' [03:18, 01:34](609 MB) +PASS -- TEST 'control_iovr4_intel' [05:07, 02:22](609 MB) +PASS -- TEST 'control_iovr5_intel' [05:06, 02:24](609 MB) +PASS -- TEST 'control_p8_intel' [05:40, 03:17](1842 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:22, 02:54](1850 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:40, 03:17](1840 MB) +PASS -- TEST 'control_restart_p8_intel' [03:37, 01:52](1003 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:40, 03:15](1844 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:37, 01:51](1009 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:36, 03:21](1845 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:51, 03:01](1925 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:28, 05:52](1841 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:36, 03:44](1894 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:34, 02:51](1855 MB) +PASS -- TEST 'merra2_thompson_intel' [05:41, 03:53](1847 MB) +PASS -- TEST 'regional_control_intel' [06:27, 04:38](877 MB) +PASS -- TEST 'regional_restart_intel' [05:01, 02:31](863 MB) +PASS -- TEST 'regional_decomp_intel' [06:26, 04:47](876 MB) +PASS -- TEST 'regional_2threads_intel' [04:25, 02:59](1002 MB) +PASS -- TEST 'regional_noquilt_intel' [06:26, 04:30](1208 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:32, 04:36](879 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:24, 04:46](876 MB) +PASS -- TEST 'regional_wofs_intel' [09:24, 06:30](1573 MB) + +PASS -- COMPILE 'rrfs_intel' [11:12, 10:07] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:36, 06:41](990 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:48, 03:56](1169 MB) +PASS -- TEST 'rap_decomp_intel' [08:36, 06:55](989 MB) +PASS -- TEST 'rap_2threads_intel' [07:34, 06:01](1069 MB) +PASS -- TEST 'rap_restart_intel' [05:32, 03:27](875 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:36, 06:31](985 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:36, 07:00](987 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:32, 04:58](877 MB) +PASS -- TEST 'hrrr_control_intel' [05:34, 03:32](984 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:34, 03:35](980 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:33, 03:06](1064 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:21, 01:54](816 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:37, 06:32](983 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:24, 08:27](1946 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:20, 08:19](1933 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 09:26] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:29, 06:23](945 MB) +PASS -- TEST 'control_ras_intel' [05:19, 03:13](644 MB) + +PASS -- COMPILE 'wam_intel' [11:11, 09:36] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:49, 11:24](1640 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:11, 09:31] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:34, 02:44](1845 MB) +PASS -- TEST 'regional_control_faster_intel' [06:29, 04:24](879 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:11, 10:03] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:31, 02:16](1574 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:36, 02:12](1581 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:21, 03:02](785 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:21, 02:42](782 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:28, 04:11](1084 MB) +PASS -- TEST 'control_ras_debug_intel' [04:24, 02:46](790 MB) +PASS -- TEST 'control_diag_debug_intel' [05:09, 02:38](1635 MB) +PASS -- TEST 'control_debug_p8_intel' [05:05, 02:28](1872 MB) +PASS -- TEST 'regional_debug_intel' [17:27, 16:10](900 MB) +PASS -- TEST 'rap_control_debug_intel' [06:19, 04:55](1165 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:19, 05:04](1159 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:20, 04:55](1164 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:19, 04:53](1160 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:20, 04:51](1165 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:24, 05:04](1246 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:19, 05:20](1164 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:18, 05:20](1166 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:25, 05:24](1166 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:23, 05:09](1162 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:23, 05:06](1163 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:57, 04:50](1166 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:37, 07:46](1158 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:16, 04:52](1161 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:39, 05:00](1166 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:31, 04:51](1166 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:39, 08:53](1169 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:11, 06:05] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:48, 12:42](1668 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 09:42] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:54, 03:47](1040 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:30, 05:31](866 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:30, 03:00](864 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:28, 05:13](921 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:27, 02:41](917 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:27, 03:07](862 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:28, 04:12](777 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:23, 01:41](753 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 10:04] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:48, 01:55](1075 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:42, 00:59](1063 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:14](953 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:12, 10:12] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:33, 04:01](898 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:12, 07:46] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:44](1041 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:19, 04:41](1040 MB) +PASS -- TEST 'conus13km_debug_intel' [14:47, 13:10](1125 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:50, 13:14](803 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:43, 07:43](1116 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:46, 13:10](1192 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:11, 07:17] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 04:59](1067 MB) + +PASS -- COMPILE 'hafsw_intel' [15:11, 13:29] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:06, 04:59](712 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:25, 04:17](1074 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:12, 07:31](745 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:08, 11:12](780 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:13, 12:36](803 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:49, 05:21](472 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:10, 06:42](500 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:42, 02:41](399 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:42, 07:27](486 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:40, 03:43](509 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:43, 03:29](506 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:47, 04:34](586 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:29](424 MB) +PASS -- TEST 'gnv1_nested_intel' [07:13, 04:30](1697 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:11, 08:23] ( 1467 warnings 1469 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:47, 12:59](611 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [14:11, 13:05] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:53, 07:30](629 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:01, 07:36](809 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 12:02] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:03, 05:53](808 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:12, 11:08] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:01, 06:07](736 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:07, 06:09](716 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:09, 20:13](891 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [11:11, 09:41] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:26, 02:41](764 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:17, 01:34](752 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:28](642 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:28](643 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:30](643 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:35](763 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:35](765 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:27](645 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:50, 06:04](695 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:47, 06:12](675 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:36](764 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:20, 04:38](2034 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 04:39](2030 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 05:08] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 05:25](749 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [12:17, 10:53] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:36](764 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:10, 02:40] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:34, 01:24](316 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:30, 01:08](463 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:50](461 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [04:10, 02:54] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:36, 00:29](448 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:39, 00:16](250 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:11, 12:54] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:43, 03:32](1918 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:11, 09:59] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:41, 07:52](1900 MB) + +PASS -- COMPILE 'atml_intel' [12:11, 11:03] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:43, 06:35](1882 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:43, 06:22](1870 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:31, 04:22](1028 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:11, 07:46] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:40, 06:06](1913 MB) + +PASS -- COMPILE 'atmw_intel' [12:12, 11:01] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:34, 01:47](1878 MB) + +PASS -- COMPILE 'atmaero_intel' [12:13, 10:22] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:39, 05:02](3098 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:41, 05:23](2989 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:36, 05:24](2998 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:10, 07:07] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [21:09, 18:12](4439 MB) + +PASS -- COMPILE 'atm_fbh_intel' [11:11, 09:36] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:28, 09:30](828 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [19:12, 17:46] +PASS -- TEST 'cpld_control_gfsv17_intelllvm' [15:50, 13:31](1901 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [08:10, 06:52] +PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [28:48, 27:08](1926 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [19:13, 17:29] +PASS -- TEST 'cpld_control_sfs_intelllvm' [15:32, 13:20](1894 MB) + +PASS -- COMPILE 's2swa_intelllvm' [15:11, 13:19] +PASS -- TEST 'cpld_control_p8_intelllvm' [16:59, 14:16](3216 MB) + +SYNOPSIS: +Starting Date/Time: 20241218 08:20:58 +Ending Date/Time: 20241218 10:01:14 +Total Time: 01h:41m:12s +Compiles Completed: 47/47 +Tests Completed: 193/193 + +NOTES: +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: SUCCESS + +====END OF GAEAC5 REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_gaeac6.log b/tests/logs/RegressionTests_gaeac6.log new file mode 100644 index 0000000000..e228d116ad --- /dev/null +++ b/tests/logs/RegressionTests_gaeac6.log @@ -0,0 +1,332 @@ +====START OF GAEAC6 REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +b1937471fe0ef4580b44cd3a01d2754110ec8c7d + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 34d1eab8e432cedf8a81976e3b675b32f41b043f CDEPS-interface/CDEPS (cdeps0.4.17-304-g34d1eab) + ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) + 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) + b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) + 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) + 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) + dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) +-179cae1dd84401cf25d250bd9102e66560a9d328 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) + 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) + 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) + 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: /gpfs/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20241212 +COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_3091871 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: bil-fire8 +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [10:23, 08:19] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:31, 07:06](2034 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [02:24, 00:57] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [11:31, 09:39](1914 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [12:30, 10:14](1961 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [06:29, 04:41](1087 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [13:30, 11:13](1905 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [45:20, 43:13] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [11:21, 09:22](1916 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:12, 03:53] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [19:30, 17:35](1953 MB) + +PASS -- COMPILE 's2swa_intel' [10:11, 08:44] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [20:35, 09:15](2065 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [23:40, 09:21](2065 MB) +PASS -- TEST 'cpld_restart_p8_intel' [18:32, 04:56](1627 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [20:33, 09:24](2084 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [18:31, 05:01](1457 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [16:31, 08:39](2257 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [20:32, 08:57](2066 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [18:31, 07:22](2016 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:33, 09:14](2066 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [25:55, 06:01](2439 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [16:51, 03:56](2667 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [32:42, 11:22](3587 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:40, 06:30](3435 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:29, 05:09](1919 MB) + +PASS -- COMPILE 's2sw_intel' [10:11, 08:20] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:26, 04:51](1935 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:27, 07:56](1859 MB) + +PASS -- COMPILE 's2swa_debug_intel' [33:12, 31:26] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [25:28, 14:15](2090 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:11, 03:49] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:28, 05:56](1957 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:15, 08:27] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:31, 03:14](1989 MB) + +PASS -- COMPILE 's2s_intel' [01:15, 59:59] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [06:19, 04:12](2876 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:24, 01:17](2877 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:20, 00:49](2296 MB) + +PASS -- COMPILE 's2swa_faster_intel' [32:19, 30:57] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:30, 09:04](2066 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [12:12, 11:06] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [33:28, 17:46](1930 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:27, 09:01](1103 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:28, 20:54](1913 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:12, 03:53] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:28, 19:59](1969 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [08:12, 06:39] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [15:20, 02:33](535 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [20:27, 02:15](1429 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [19:29, 02:08](1441 MB) +PASS -- TEST 'control_latlon_intel' [19:26, 02:04](1436 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [20:31, 02:12](1426 MB) +PASS -- TEST 'control_c48_intel' [25:28, 07:27](1571 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [19:21, 04:15](696 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [25:29, 07:27](1571 MB) +PASS -- TEST 'control_c192_intel' [26:33, 07:42](1701 MB) +PASS -- TEST 'control_c384_intel' [36:41, 16:35](1964 MB) +PASS -- TEST 'control_c384gdas_intel' [30:57, 10:00](1176 MB) +PASS -- TEST 'control_stochy_intel' [16:20, 01:10](486 MB) +PASS -- TEST 'control_stochy_restart_intel' [11:15, 00:42](290 MB) +PASS -- TEST 'control_lndp_intel' [17:20, 01:07](486 MB) +PASS -- TEST 'control_iovr4_intel' [19:20, 01:47](484 MB) +PASS -- TEST 'control_iovr5_intel' [17:20, 01:42](483 MB) +PASS -- TEST 'control_p8_intel' [20:31, 02:21](1727 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [21:28, 02:01](1720 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [21:25, 02:21](1728 MB) +PASS -- TEST 'control_restart_p8_intel' [11:24, 01:22](873 MB) +PASS -- TEST 'control_noqr_p8_intel' [20:21, 02:18](1727 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [07:21, 01:22](866 MB) +PASS -- TEST 'control_decomp_p8_intel' [20:20, 02:25](1722 MB) +PASS -- TEST 'control_2threads_p8_intel' [17:19, 02:13](1806 MB) +PASS -- TEST 'control_p8_lndp_intel' [17:20, 04:10](1724 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [14:21, 02:37](1777 MB) +PASS -- TEST 'control_p8_mynn_intel' [13:22, 02:13](1732 MB) +PASS -- TEST 'merra2_thompson_intel' [12:21, 02:14](1727 MB) +PASS -- TEST 'regional_control_intel' [10:20, 03:20](878 MB) +PASS -- TEST 'regional_restart_intel' [06:19, 01:51](861 MB) +PASS -- TEST 'regional_decomp_intel' [09:20, 03:32](875 MB) +PASS -- TEST 'regional_2threads_intel' [11:20, 02:09](1035 MB) +PASS -- TEST 'regional_noquilt_intel' [12:19, 03:16](1210 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [14:22, 03:22](881 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [13:18, 03:18](874 MB) +PASS -- TEST 'regional_wofs_intel' [14:20, 04:25](1574 MB) + +PASS -- COMPILE 'rrfs_intel' [08:12, 06:10] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [13:19, 04:47](865 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:33, 02:51](1159 MB) +PASS -- TEST 'rap_decomp_intel' [11:20, 05:00](869 MB) +PASS -- TEST 'rap_2threads_intel' [10:19, 04:22](948 MB) +PASS -- TEST 'rap_restart_intel' [04:20, 02:29](745 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:18, 04:48](866 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:20, 04:57](866 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:23, 03:33](744 MB) +PASS -- TEST 'hrrr_control_intel' [07:19, 02:34](860 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:19, 02:36](859 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:19, 02:18](1079 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:17, 01:24](693 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:19, 04:43](862 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:17, 06:07](1819 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:16, 05:54](1812 MB) + +PASS -- COMPILE 'csawmg_intel' [07:11, 06:06] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [07:17, 04:12](821 MB) +PASS -- TEST 'control_ras_intel' [04:14, 02:26](518 MB) + +PASS -- COMPILE 'wam_intel' [07:11, 05:45] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [09:25, 07:31](1517 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [07:11, 06:00] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:23, 01:54](1725 MB) +PASS -- TEST 'regional_control_faster_intel' [05:19, 03:11](874 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 05:47] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:21, 01:33](1455 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:22, 01:29](1457 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:14, 02:03](662 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:15, 01:54](660 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:18, 02:49](963 MB) +PASS -- TEST 'control_ras_debug_intel' [04:14, 01:54](665 MB) +PASS -- TEST 'control_diag_debug_intel' [03:20, 01:48](1517 MB) +PASS -- TEST 'control_debug_p8_intel' [04:20, 01:50](1749 MB) +PASS -- TEST 'regional_debug_intel' [13:22, 11:20](892 MB) +PASS -- TEST 'rap_control_debug_intel' [05:15, 03:20](1039 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:16, 03:19](1037 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:14, 03:26](1040 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:14, 03:21](1041 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:14, 03:19](1038 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:17, 03:33](1125 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:14, 03:26](1043 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:15, 03:27](1038 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:18, 03:20](1039 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:15, 03:20](1038 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:14, 03:17](1036 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:15, 03:21](1037 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:14, 05:22](1037 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:15, 03:20](1033 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:16, 03:21](1042 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:16, 03:20](1039 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:24, 05:40](1043 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:11, 03:13] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [10:21, 08:45](1545 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 05:52] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:30, 02:41](1036 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:18, 04:01](747 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:17, 02:19](747 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:19, 03:44](800 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:17, 01:59](939 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:17, 02:20](745 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:30, 03:01](649 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:16, 01:12](628 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:10, 05:39] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:25, 01:22](952 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:16, 00:44](1083 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:19, 00:52](824 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:10, 05:53] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:20, 02:44](771 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:10, 03:16] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:15, 03:17](919 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:14, 03:14](916 MB) +PASS -- TEST 'conus13km_debug_intel' [11:23, 08:59](1003 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [11:24, 09:03](672 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [07:22, 05:21](1135 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [11:22, 09:04](1072 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 03:01] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:14, 03:19](944 MB) + +PASS -- COMPILE 'hafsw_intel' [09:12, 07:19] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [05:41, 03:34](718 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:16, 02:53](1070 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:46, 04:44](779 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [11:41, 08:02](811 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [11:47, 08:41](831 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:29, 03:31](484 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:45, 04:23](486 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:23, 01:44](400 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:56, 04:42](458 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:26, 02:32](503 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:25, 02:22](503 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:29, 02:56](583 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:19, 00:59](429 MB) +PASS -- TEST 'gnv1_nested_intel' [04:41, 02:56](1698 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:10, 03:18] ( 1467 warnings 1469 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [10:28, 08:14](605 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [09:11, 07:21] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [07:33, 05:09](637 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [07:38, 05:13](797 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:18, 14:21] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [06:36, 03:50](794 MB) + +PASS -- COMPILE 'hafs_all_intel' [09:11, 07:34] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [06:42, 04:20](772 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:43, 04:22](751 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [12:35, 10:53](890 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:11, 05:07] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:13, 01:42](763 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:13, 01:02](751 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:13, 01:36](644 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:13, 01:39](640 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:13, 02:46](642 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:15, 01:41](764 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:13, 01:42](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:14, 01:45](644 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:27, 03:58](705 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:38, 04:02](684 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 01:56](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:17, 02:43](2031 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:14, 02:46](2029 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:22] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:13, 03:46](748 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:12, 04:55] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:13, 01:41](764 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:39] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:22, 01:00](315 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:19, 00:50](461 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:36](460 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:10, 06:28] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:24, 02:26](1783 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:10, 06:04] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:22, 05:24](1788 MB) + +PASS -- COMPILE 'atml_intel' [08:10, 06:35] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:25, 04:13](1892 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [05:23, 03:55](1895 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:17, 02:11](1045 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:12, 04:00] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:23, 04:29](1922 MB) + +PASS -- COMPILE 'atmw_intel' [09:12, 07:16] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:21, 01:17](1764 MB) + +PASS -- COMPILE 'atmaero_intel' [07:10, 06:03] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:23, 02:58](1943 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:27, 03:51](1600 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:20, 03:19](1610 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:10, 03:18] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [15:49, 13:29](4442 MB) + +PASS -- COMPILE 'atm_fbh_intel' [07:10, 05:33] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [08:20, 06:02](833 MB) + +SYNOPSIS: +Starting Date/Time: 20241217 15:25:48 +Ending Date/Time: 20241217 17:54:03 +Total Time: 02h:28m:37s +Compiles Completed: 42/42 +Tests Completed: 187/187 + +NOTES: +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: SUCCESS + +====END OF GAEAC6 REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index f15a14c9f6..a9755fd5e0 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,13 +1,13 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -19498cc1894245fe8afe365dd87dbe5d8862b35f +b1937471fe0ef4580b44cd3a01d2754110ec8c7d Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 51f8cd20c15fe39ef1168d59d5077812b6508544 CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-10) + 34d1eab8e432cedf8a81976e3b675b32f41b043f CDEPS-interface/CDEPS (cdeps0.4.17-304-g34d1eab) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) - 507ca48f4586fbeb7b0e23e5cfa9321bc3f02a1d CMEPS-interface/CMEPS (cmeps_v0.4.1-3103-g507ca48f) + b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) @@ -27,388 +27,387 @@ 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-20241212 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1726892 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3124958 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:11, 13:02] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:18, 11:45](3318 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:12, 15:54] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [25:09, 19:51](1966 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:30, 20:50](2172 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:27, 08:19](1273 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:05, 23:07](1871 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:12, 15:53] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [24:49, 19:36](1955 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 05:55] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:57, 26:28](1922 MB) - -PASS -- COMPILE 's2swa_intel' [14:11, 13:02] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [19:24, 15:28](3358 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:32, 14:11](3354 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:29, 07:30](3253 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [18:16, 14:23](3346 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:32, 07:32](3278 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [17:06, 13:30](3638 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:06, 14:15](3340 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [15:20, 11:34](3225 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:23, 14:10](3362 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [19:27, 10:35](3522 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:05, 07:01](3615 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [29:30, 16:33](4289 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [22:59, 09:33](4381 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:11, 07:22](3301 MB) - -PASS -- COMPILE 's2sw_intel' [14:12, 12:20] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [13:10, 09:18](1989 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:20, 11:12](2062 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:12, 05:52] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [25:05, 22:53](3394 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:12, 05:51] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:55, 10:05](2010 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:12, 11:28] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:02, 04:26](2021 MB) - -PASS -- COMPILE 's2s_intel' [13:11, 11:48] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:44, 07:52](3039 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:44, 02:25](3044 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:42, 01:25](2479 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:12, 16:41] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:19, 13:45](3329 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:12, 15:04] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:12, 28:09](2019 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:23, 14:08](1256 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [36:13, 33:15](1923 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:13, 05:55] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:10, 30:14](1925 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:13, 11:15] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:24, 03:21](699 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:41, 03:15](1593 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:45, 03:18](1593 MB) -PASS -- TEST 'control_latlon_intel' [05:38, 03:12](1581 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:45, 03:17](1583 MB) -PASS -- TEST 'control_c48_intel' [13:43, 11:34](1715 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:27, 06:32](858 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [13:41, 11:36](1721 MB) -PASS -- TEST 'control_c192_intel' [13:57, 12:03](1766 MB) -PASS -- TEST 'control_c384_intel' [18:01, 14:10](1996 MB) -PASS -- TEST 'control_c384gdas_intel' [12:58, 08:10](1376 MB) -PASS -- TEST 'control_stochy_intel' [03:22, 01:38](653 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:32, 00:59](504 MB) -PASS -- TEST 'control_lndp_intel' [03:23, 01:33](658 MB) -PASS -- TEST 'control_iovr4_intel' [04:25, 02:29](646 MB) -PASS -- TEST 'control_iovr5_intel' [04:25, 02:30](648 MB) -PASS -- TEST 'control_p8_intel' [05:56, 03:43](1865 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:00, 03:05](1890 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:51, 03:39](1876 MB) -PASS -- TEST 'control_restart_p8_intel' [03:49, 02:07](1130 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:51, 03:39](1872 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:58, 02:06](1156 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:52, 03:45](1866 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:49, 03:30](1952 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:43, 06:38](1876 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:53, 04:12](1950 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:56, 03:08](1897 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:10, 12:51] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:38, 11:44](3299 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 16:20] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [26:05, 19:40](1975 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:20, 20:39](2164 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:12, 08:13](1280 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:06, 23:10](1881 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:11, 15:47] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [24:44, 19:20](1964 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:10, 06:09] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:01, 26:37](1918 MB) + +PASS -- COMPILE 's2swa_intel' [14:10, 13:00] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [18:39, 15:24](3339 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:40, 14:07](3316 MB) +PASS -- TEST 'cpld_restart_p8_intel' [12:18, 07:26](3258 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:33, 14:05](3376 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:23, 07:26](3271 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [16:30, 13:12](3639 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:30, 14:06](3337 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:34, 11:33](3221 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:41, 14:04](3326 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:39, 10:22](3521 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:37, 06:19](3621 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [31:09, 15:58](4293 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:46, 09:04](4332 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:34, 07:17](3283 MB) + +PASS -- COMPILE 's2sw_intel' [14:11, 12:14] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [12:35, 09:23](1989 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:36, 10:57](2071 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:10, 06:07] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [25:17, 22:38](3407 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:10, 05:40] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:58, 09:58](2005 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:10, 11:15] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:04, 04:22](2022 MB) + +PASS -- COMPILE 's2s_intel' [13:10, 11:47] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:49, 07:53](3031 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:45, 02:25](3026 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:40, 01:27](2484 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:11, 16:42] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:40, 13:27](3340 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:12, 15:23] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:16, 27:56](2021 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:23, 13:48](1268 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:05, 33:08](1929 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:40] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:07, 29:46](1966 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:11, 10:56] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:23, 03:22](708 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:44, 03:24](1571 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:45, 03:19](1588 MB) +PASS -- TEST 'control_latlon_intel' [05:37, 03:11](1592 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:44, 03:14](1583 MB) +PASS -- TEST 'control_c48_intel' [13:48, 11:37](1724 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:26, 06:32](849 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [13:53, 11:39](1721 MB) +PASS -- TEST 'control_c192_intel' [14:06, 12:00](1767 MB) +PASS -- TEST 'control_c384_intel' [17:03, 13:43](1977 MB) +PASS -- TEST 'control_c384gdas_intel' [13:15, 08:09](1375 MB) +PASS -- TEST 'control_stochy_intel' [03:24, 01:39](659 MB) +PASS -- TEST 'control_stochy_restart_intel' [04:26, 01:02](496 MB) +PASS -- TEST 'control_lndp_intel' [03:23, 01:32](660 MB) +PASS -- TEST 'control_iovr4_intel' [04:26, 02:28](656 MB) +PASS -- TEST 'control_iovr5_intel' [04:27, 02:27](651 MB) +PASS -- TEST 'control_p8_intel' [09:53, 03:45](1883 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:54, 03:09](1892 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:54, 03:40](1872 MB) +PASS -- TEST 'control_restart_p8_intel' [04:51, 02:10](1128 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:51, 03:42](1865 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:04, 02:16](1175 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:46, 03:49](1840 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:46, 03:32](1962 MB) +PASS -- TEST 'control_p8_lndp_intel' [10:40, 06:45](1880 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:55, 04:14](1948 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:56, 03:20](1905 MB) PASS -- TEST 'merra2_thompson_intel' [05:49, 03:26](1896 MB) -PASS -- TEST 'regional_control_intel' [07:36, 05:29](1115 MB) -PASS -- TEST 'regional_restart_intel' [05:41, 02:58](1102 MB) -PASS -- TEST 'regional_decomp_intel' [07:33, 05:45](1121 MB) -PASS -- TEST 'regional_2threads_intel' [05:35, 03:35](1117 MB) -PASS -- TEST 'regional_noquilt_intel' [07:42, 05:19](1425 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:40, 05:26](1119 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:36, 05:28](1126 MB) -PASS -- TEST 'regional_wofs_intel' [08:36, 07:02](1895 MB) - -PASS -- COMPILE 'rrfs_intel' [12:11, 10:12] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:41, 07:53](1113 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:08, 04:18](1263 MB) -PASS -- TEST 'rap_decomp_intel' [10:37, 08:15](1036 MB) -PASS -- TEST 'rap_2threads_intel' [09:37, 07:24](1185 MB) -PASS -- TEST 'rap_restart_intel' [05:47, 04:05](1100 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:40, 08:05](1107 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:35, 08:14](1041 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:48, 05:56](1126 MB) -PASS -- TEST 'hrrr_control_intel' [06:42, 04:01](1044 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:40, 04:09](1031 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:36, 03:43](1094 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:32, 02:10](997 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:54, 07:49](1098 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [12:32, 09:32](1986 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:29, 09:15](2061 MB) - -PASS -- COMPILE 'csawmg_intel' [11:15, 10:07] -PASS -- TEST 'control_csawmg_intel' [10:38, 06:23](1020 MB) -PASS -- TEST 'control_ras_intel' [07:24, 03:20](755 MB) - -PASS -- COMPILE 'wam_intel' [11:12, 10:07] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:50, 11:28](1660 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:07] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:56, 02:48](1889 MB) -PASS -- TEST 'regional_control_faster_intel' [08:39, 04:58](1118 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:13, 07:32] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:47, 02:18](1614 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:52, 02:18](1608 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:27, 03:09](827 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:25, 02:45](830 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:41, 04:27](1135 MB) -PASS -- TEST 'control_ras_debug_intel' [04:25, 02:50](837 MB) -PASS -- TEST 'control_diag_debug_intel' [05:55, 02:55](1692 MB) -PASS -- TEST 'control_debug_p8_intel' [05:48, 02:45](1907 MB) -PASS -- TEST 'regional_debug_intel' [19:37, 17:49](1102 MB) -PASS -- TEST 'rap_control_debug_intel' [08:25, 05:00](1215 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:24, 05:11](1212 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:27, 05:00](1209 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:23, 05:08](1218 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:23, 05:04](1206 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:38, 05:23](1294 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:24, 05:16](1222 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:25, 05:07](1219 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:24, 05:05](1219 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:26, 04:59](1215 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:26, 05:01](1213 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:26, 05:02](1214 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:21, 08:17](1207 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:27, 04:55](1218 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:25, 05:03](1219 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:22, 05:11](1216 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:45, 08:54](1217 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:11, 04:29] -PASS -- TEST 'control_csawmg_debug_gnu' [04:41, 02:27](730 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:11, 04:40] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:54, 13:52](1684 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 09:59] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:03, 03:56](1137 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:43, 06:33](1057 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:36, 03:27](997 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:41, 06:17](1098 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:33, 03:13](954 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:34, 03:40](934 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:45, 04:59](1037 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:27, 01:52](931 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 10:02] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:56, 02:03](1192 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:46, 00:54](1108 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:44, 01:11](1095 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 10:06] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:43, 04:16](985 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:44] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:22, 04:58](1097 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 05:04](1092 MB) -PASS -- TEST 'conus13km_debug_intel' [15:55, 13:55](1230 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:45, 14:30](922 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:42, 08:08](1160 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:50, 14:12](1309 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:42] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:26, 05:13](1133 MB) - -PASS -- COMPILE 'hafsw_intel' [13:12, 11:36] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:33, 05:32](720 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [11:40, 07:32](1111 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:41, 07:41](808 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:25, 14:58](838 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:40, 18:46](880 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:03, 05:43](495 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:31, 07:11](504 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:00, 02:54](366 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:54, 07:40](477 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:47, 04:03](518 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:00, 04:10](517 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:55, 04:28](577 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:14](399 MB) -PASS -- TEST 'gnv1_nested_intel' [07:36, 04:07](1724 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:11, 05:06] ( 1462 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:00, 13:32](587 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:20] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:07, 10:25](656 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:17, 10:38](732 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 11:43] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:38, 08:14](673 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:11, 10:58] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:19, 06:59](824 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:17, 07:04](806 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:59, 16:30](1230 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:12, 06:39] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:21, 02:44](1156 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:22, 01:42](1109 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:19, 02:43](1029 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:45](1034 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:41](1045 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:19, 02:44](1159 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:21, 02:45](1151 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:19, 02:36](1026 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:27, 06:25](1086 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:26, 06:29](1047 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:52](1152 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 04:04](2468 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:24, 03:59](2452 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:30] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:23, 06:31](1079 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:32] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:22, 02:48](1161 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:10] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:31, 00:44](259 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:26, 00:49](324 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:31](325 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:21] -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:33, 00:31](565 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:33, 00:16](461 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 10:54] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:02, 03:44](1979 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 10:19] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:55, 08:01](2007 MB) - -PASS -- COMPILE 'atml_intel' [12:12, 10:57] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:14, 04:26](1836 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:02, 04:19](1867 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:48, 02:21](1100 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:12, 05:55] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:01, 05:53](1882 MB) - -PASS -- COMPILE 'atmw_intel' [12:12, 10:58] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:49, 01:57](1918 MB) +PASS -- TEST 'regional_control_intel' [09:32, 05:31](1125 MB) +PASS -- TEST 'regional_restart_intel' [05:36, 02:53](1101 MB) +PASS -- TEST 'regional_decomp_intel' [09:33, 05:43](1113 MB) +PASS -- TEST 'regional_2threads_intel' [05:40, 03:25](1110 MB) +PASS -- TEST 'regional_noquilt_intel' [07:35, 05:25](1413 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:39, 05:26](1121 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:33, 05:30](1128 MB) +PASS -- TEST 'regional_wofs_intel' [08:38, 06:57](1898 MB) + +PASS -- COMPILE 'rrfs_intel' [12:11, 10:25] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:41, 07:52](1109 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:05, 04:16](1270 MB) +PASS -- TEST 'rap_decomp_intel' [10:34, 08:14](1032 MB) +PASS -- TEST 'rap_2threads_intel' [09:36, 07:25](1188 MB) +PASS -- TEST 'rap_restart_intel' [05:42, 04:04](1093 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:41, 07:50](1104 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:41, 08:10](1031 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:43, 05:54](1128 MB) +PASS -- TEST 'hrrr_control_intel' [06:38, 04:13](1041 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:35, 04:09](1031 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:40, 03:42](1098 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:27, 02:09](994 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:46, 07:43](1109 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:28, 09:29](1973 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:27, 09:13](2067 MB) + +PASS -- COMPILE 'csawmg_intel' [11:12, 09:49] +PASS -- TEST 'control_csawmg_intel' [08:35, 06:12](1016 MB) +PASS -- TEST 'control_ras_intel' [06:22, 03:19](750 MB) + +PASS -- COMPILE 'wam_intel' [11:11, 10:02] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:49, 11:19](1656 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:13] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:48, 02:45](1866 MB) +PASS -- TEST 'regional_control_faster_intel' [07:35, 04:50](1117 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 07:32] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:51, 02:13](1621 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:54, 02:12](1613 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:26, 03:00](830 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:27, 02:46](825 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:46, 04:17](1139 MB) +PASS -- TEST 'control_ras_debug_intel' [04:27, 02:46](834 MB) +PASS -- TEST 'control_diag_debug_intel' [04:53, 02:46](1685 MB) +PASS -- TEST 'control_debug_p8_intel' [04:51, 02:40](1907 MB) +PASS -- TEST 'regional_debug_intel' [19:47, 17:54](1098 MB) +PASS -- TEST 'rap_control_debug_intel' [07:29, 05:07](1219 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:31, 04:54](1210 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:24, 04:55](1216 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:26, 05:01](1213 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:25, 04:59](1217 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:37, 05:13](1298 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:23, 05:14](1216 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:22, 05:20](1215 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:24, 05:07](1217 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 04:56](1214 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:24, 04:54](1220 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:23, 04:57](1213 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:22, 08:05](1210 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:21, 05:04](1214 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:25, 04:59](1215 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:22, 04:59](1210 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:40, 08:50](1222 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [10:11, 04:18] +PASS -- TEST 'control_csawmg_debug_gnu' [05:33, 02:23](716 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:11, 04:48] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [19:49, 13:58](1670 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 09:51] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:03, 03:58](1141 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:40, 06:33](1074 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:36, 03:26](990 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:33, 06:16](1107 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:33, 03:15](959 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:28, 03:37](921 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:40, 05:05](1031 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:28, 01:51](921 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 09:55] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:55, 02:00](1198 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:45, 00:49](1107 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:44, 01:21](1079 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 09:56] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:41, 04:19](984 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:57] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [09:25, 05:01](1095 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:23, 04:57](1088 MB) +PASS -- TEST 'conus13km_debug_intel' [18:51, 13:49](1231 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [18:50, 14:08](927 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:43, 08:03](1158 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:45, 14:00](1301 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:28] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:25, 05:04](1133 MB) + +PASS -- COMPILE 'hafsw_intel' [13:12, 11:44] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:21, 04:59](719 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:34, 05:53](1113 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:22, 07:03](832 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:19, 14:58](844 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:29, 18:43](872 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:15, 05:34](490 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:28, 06:50](509 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:43, 02:44](371 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:29, 07:23](480 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:46, 03:45](521 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:01, 03:31](519 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:53, 04:08](578 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:09](402 MB) +PASS -- TEST 'gnv1_nested_intel' [06:28, 04:01](1731 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:12, 05:01] ( 1462 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:53, 13:25](581 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:14, 11:33] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:00, 10:12](623 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:04, 10:16](727 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:10, 11:31] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:57, 08:09](685 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:10, 10:52] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:27, 06:32](823 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:17, 06:38](796 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:04, 16:25](1219 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [11:11, 06:37] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 02:49](1160 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:42](1100 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:48](1022 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:42](1032 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:41](1030 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 02:47](1161 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:47](1158 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:42](1022 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [14:26, 06:52](1071 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:25, 06:29](1044 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:15, 02:45](1146 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:20, 03:48](2463 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:23, 04:00](2447 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:10, 03:29] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:15](1088 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [11:12, 06:34] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:47](1174 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:17] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:29, 00:50](264 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:24, 00:52](325 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:32](327 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [06:10, 01:20] +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [03:33, 00:52](561 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:43, 00:18](462 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:11, 10:59] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:05, 03:42](1987 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:11, 10:25] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:02, 08:03](1995 MB) + +PASS -- COMPILE 'atml_intel' [13:11, 11:04] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:09, 04:21](1858 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:06, 04:25](1861 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:47, 02:22](1100 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:12, 05:47] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:03, 05:50](1880 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 10:58] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:48, 01:57](1913 MB) PASS -- COMPILE 'atmaero_intel' [12:11, 10:35] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:01, 04:09](3191 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:55, 04:59](3098 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:51, 05:04](3103 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:44] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_fbh_intel' [11:12, 09:54] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:31, 11:50](1124 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:11, 06:41] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:41, 08:25](1051 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:12, 06:48] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:41, 04:56](983 MB) - -PASS -- COMPILE 'atm_gnu' [06:11, 04:27] -PASS -- TEST 'control_c48_gnu' [11:46, 09:39](1509 MB) -PASS -- TEST 'control_stochy_gnu' [05:25, 03:30](500 MB) -PASS -- TEST 'control_ras_gnu' [06:22, 04:56](503 MB) -PASS -- TEST 'control_p8_gnu' [07:53, 05:19](1447 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [07:47, 05:15](1447 MB) -PASS -- TEST 'control_flake_gnu' [12:25, 10:39](537 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:12, 04:16] -PASS -- TEST 'rap_control_gnu' [13:37, 11:31](807 MB) -PASS -- TEST 'rap_decomp_gnu' [13:33, 11:43](807 MB) -PASS -- TEST 'rap_2threads_gnu' [12:42, 10:32](917 MB) -PASS -- TEST 'rap_restart_gnu' [07:46, 05:56](573 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [13:42, 11:27](806 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:32, 11:44](839 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:45, 08:27](577 MB) -PASS -- TEST 'hrrr_control_gnu' [07:49, 05:55](801 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:42, 05:59](826 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [07:45, 05:21](902 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:39, 05:59](839 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [05:45, 03:13](558 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:33, 03:09](651 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [13:50, 11:11](805 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:12, 03:54] -PASS -- TEST 'control_csawmg_gnu' [10:42, 08:35](734 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:12, 06:37] -PASS -- TEST 'control_diag_debug_gnu' [03:48, 01:41](1268 MB) -PASS -- TEST 'regional_debug_gnu' [13:37, 11:41](743 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:27, 02:38](822 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:27, 02:40](823 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:25, 02:40](818 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:27, 02:35](817 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:55, 02:50](909 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:23, 04:08](819 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [05:29, 02:38](819 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [05:27, 02:39](816 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:24, 01:35](456 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:24, 01:45](448 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:42, 01:42](1432 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:23, 02:46](816 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:28, 02:47](821 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:42, 04:35](827 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:12, 02:25] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:12, 04:06] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:39, 09:52](697 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:38, 05:22](694 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [11:36, 09:12](742 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:34, 04:52](738 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:33, 05:23](692 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:35, 07:18](551 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:30, 02:44](530 MB) -PASS -- TEST 'conus13km_control_gnu' [06:03, 03:24](874 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:43, 05:45](869 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:45, 01:56](549 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:12, 09:47] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:48, 06:14](723 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:12, 06:35] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:29, 02:47](708 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:29, 02:38](707 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:55, 07:04](880 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:51, 07:07](567 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [09:45, 07:42](882 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:43, 06:54](947 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:13, 06:38] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:23, 02:40](727 MB) - -PASS -- COMPILE 's2swa_gnu' [18:12, 16:29] - -PASS -- COMPILE 's2s_gnu' [17:13, 15:49] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [21:10, 18:56](1507 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [05:12, 03:08] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 15:51] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [34:44, 31:31](1443 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:03] - -PASS -- COMPILE 'datm_cdeps_gnu' [17:12, 15:23] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:20, 03:07](697 MB) +PASS -- TEST 'atmaero_control_p8_intel' [07:01, 04:09](3197 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:57, 05:05](3094 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:48, 05:03](3103 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:10, 04:47] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_fbh_intel' [11:11, 09:57] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:35, 11:33](1123 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:11, 06:51] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:56, 08:26](1056 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:10, 06:57] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [07:42, 05:06](987 MB) + +PASS -- COMPILE 'atm_gnu' [06:11, 04:35] +PASS -- TEST 'control_c48_gnu' [11:44, 09:33](1510 MB) +PASS -- TEST 'control_stochy_gnu' [05:25, 03:27](493 MB) +PASS -- TEST 'control_ras_gnu' [06:24, 04:56](499 MB) +PASS -- TEST 'control_p8_gnu' [07:57, 05:13](1455 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [08:07, 05:12](1449 MB) +PASS -- TEST 'control_flake_gnu' [12:28, 10:33](538 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:11, 04:26] +PASS -- TEST 'rap_control_gnu' [13:32, 11:34](811 MB) +PASS -- TEST 'rap_decomp_gnu' [14:33, 12:16](806 MB) +PASS -- TEST 'rap_2threads_gnu' [12:37, 10:50](924 MB) +PASS -- TEST 'rap_restart_gnu' [07:38, 05:52](579 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:35, 11:31](817 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [14:33, 12:12](810 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:37, 08:32](584 MB) +PASS -- TEST 'hrrr_control_gnu' [07:49, 06:02](837 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [08:33, 06:00](825 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [07:32, 05:29](909 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:35, 05:58](840 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:24, 03:04](559 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:26, 03:05](656 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [13:43, 11:17](803 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 03:55] +PASS -- TEST 'control_csawmg_gnu' [11:37, 08:37](738 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:28] +PASS -- TEST 'control_diag_debug_gnu' [05:04, 01:39](1266 MB) +PASS -- TEST 'regional_debug_gnu' [13:38, 11:07](739 MB) +PASS -- TEST 'rap_control_debug_gnu' [05:23, 02:40](816 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [05:24, 02:39](812 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [05:24, 02:41](817 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:25, 02:40](820 MB) +PASS -- TEST 'rap_diag_debug_gnu' [05:44, 02:54](900 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:26, 04:12](814 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:20, 02:46](814 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:22, 02:45](810 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:20, 01:36](452 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:20, 01:46](450 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:38, 01:36](1437 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:31, 02:39](816 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:22, 02:43](816 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:39, 04:22](819 MB) + +PASS -- COMPILE 'wam_debug_gnu' [06:11, 02:27] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [08:11, 04:09] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:29, 09:51](698 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:28, 05:08](690 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:35, 09:03](744 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:39, 04:44](738 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:28, 05:21](693 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:34, 07:19](553 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [05:24, 02:39](533 MB) +PASS -- TEST 'conus13km_control_gnu' [06:04, 03:14](864 MB) +PASS -- TEST 'conus13km_2threads_gnu' [08:44, 05:51](874 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [04:42, 01:53](560 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [15:12, 09:22] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:37, 05:59](720 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [12:12, 06:29] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:21, 02:39](708 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:23, 02:34](706 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:53, 06:57](883 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:49, 06:56](576 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [09:40, 07:29](885 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:40, 06:46](954 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [12:11, 06:25] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:23, 02:35](734 MB) + +PASS -- COMPILE 's2swa_gnu' [22:11, 16:43] + +PASS -- COMPILE 's2s_gnu' [21:11, 15:51] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [21:16, 18:44](1497 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [08:11, 03:03] + +PASS -- COMPILE 's2sw_pdlib_gnu' [19:12, 15:51] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [34:03, 31:44](1465 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:10, 02:57] + +PASS -- COMPILE 'datm_cdeps_gnu' [17:11, 15:45] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:17, 03:04](700 MB) SYNOPSIS: -Starting Date/Time: 20241213 19:39:36 -Ending Date/Time: 20241213 22:33:23 -Total Time: 02h:54m:07s +Starting Date/Time: 20241217 16:48:26 +Ending Date/Time: 20241217 18:52:39 +Total Time: 02h:04m:33s Compiles Completed: 61/61 Tests Completed: 249/249 diff --git a/tests/module-setup.sh b/tests/module-setup.sh index 5bbba3e465..d39bbeb95c 100755 --- a/tests/module-setup.sh +++ b/tests/module-setup.sh @@ -65,7 +65,7 @@ elif [[ ${MACHINE_ID} = frontera ]] ; then fi module purge -elif [[ ${MACHINE_ID} = gaea ]] ; then +elif [[ ${MACHINE_ID} = gaeac5 ]] ; then # We are on GAEA if ( ! eval module help > /dev/null 2>&1 ) ; then # We cannot simply load the module command. The GAEA @@ -76,7 +76,12 @@ elif [[ ${MACHINE_ID} = gaea ]] ; then source /etc/profile fi module reset - +elif [[ ${MACHINE_ID} = gaeac6 ]]; then + if ( ! eval module help > /dev/null 2>&1 ) ; then + source /opt/cray/pe/lmod/lmod/init/bash + fi + module reset + elif [[ ${MACHINE_ID} = expanse ]]; then # We are on SDSC Expanse if ( ! eval module help > /dev/null 2>&1 ) ; then diff --git a/tests/rt.conf b/tests/rt.conf index 6c1b30a747..1ed8c56eae 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -293,9 +293,9 @@ RUN | datm_cdeps_lnd_era5 | - wcoss2 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 +COMPILE | datm_cdeps_lm4 | intel | -DAPP=LND-LM4 | + hera orion gaeac5 | fv3 | +RUN | datm_cdeps_lm4_gswp3 | + hera orion gaeac5 | baseline | +RUN | datm_cdeps_lm4_gswp3_rst | + hera orion gaeac5 | | datm_cdeps_lm4_gswp3 ### AMIP+ tests ### COMPILE | atm_ds2s_docn_pcice | intel | -DAPP=ATM_DS2S-PCICE -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | @@ -342,17 +342,17 @@ RUN | cpld_regional_atm_fbh | - wcoss2 noaacloud aco # Coupled gfs17 tests on Gaea -COMPILE | s2swa_32bit_pdlib | intelllvm | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON | + gaea | fv3 | -RUN | cpld_control_gfsv17 | + gaea | baseline | +COMPILE | s2swa_32bit_pdlib | intelllvm | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON | + gaeac5 | fv3 | +RUN | cpld_control_gfsv17 | + gaeac5 | baseline | -COMPILE | s2swa_32bit_pdlib_debug | intelllvm | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON | + gaea | fv3 | -RUN | cpld_debug_gfsv17 | + gaea | baseline | +COMPILE | s2swa_32bit_pdlib_debug | intelllvm | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON | + gaeac5 | fv3 | +RUN | cpld_debug_gfsv17 | + gaeac5 | baseline | -COMPILE | s2swa_32bit_pdlib_sfs | intelllvm | -DAPP=S2SWA -D32BIT=ON -DHYDRO=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON | + gaea | fv3 | -RUN | cpld_control_sfs | + gaea | baseline | +COMPILE | s2swa_32bit_pdlib_sfs | intelllvm | -DAPP=S2SWA -D32BIT=ON -DHYDRO=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON | + gaeac5 | fv3 | +RUN | cpld_control_sfs | + gaeac5 | baseline | -COMPILE | s2swa | intelllvm | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 | + gaea | fv3 | -RUN | cpld_control_p8 | + gaea | baseline | +COMPILE | s2swa | intelllvm | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 | + gaeac5 | fv3 | +RUN | cpld_control_p8 | + gaeac5 | baseline | # Regional RRFS tests on Hera COMPILE | rrfs_dyn32_phy32 | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_RAP -D32BIT=ON -DCCPP_32BIT=ON | + hera | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 672c876e53..6fed829859 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -709,8 +709,8 @@ case ${MACHINE_ID} in PTMP="/lfs/h2/emc/ptmp" SCHEDULER="pbs" ;; - gaea) - echo "rt.sh: Setting up gaea..." + gaeac5) + echo "rt.sh: Setting up gaea c5..." if [[ "${ROCOTO:-false}" == true ]] ; then module use /ncrc/proj/epic/rocoto/modulefiles module load rocoto @@ -738,6 +738,37 @@ case ${MACHINE_ID} in STMP=${STMP:-${dprefix}/RT_BASELINE} PTMP=${PTMP:-${dprefix}/RT_RUNDIRS} + SCHEDULER="slurm" + ;; + gaeac6) + echo "rt.sh: Setting up gaea c6..." + if [[ "${ROCOTO:-false}" == true ]] ; then + module use /ncrc/proj/epic/c6/modulefiles + module load rocoto/1.3.7 + ROCOTO_SCHEDULER="slurm" + fi + + export LD_PRELOAD=/usr/lib64/libstdc++.so.6 + module use /ncrc/proj/epic/spack-stack/c6/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core + module load stack-intel/2023.2.0 + module load cray-mpich/8.1.29 + module load python/3.10.13 + if [[ "${ECFLOW:-false}" == true ]] ; then + module use /ncrc/proj/epic/spack-stack/modulefiles + module load ecflow/5.8.4 + ECF_HOST=$(hostname) + ECF_PORT=$(( $(id -u) + 1500 )) + export ECF_PORT ECF_HOST + fi + + DISKNM=/gpfs/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT + QUEUE=normal + COMPILE_QUEUE=normal + PARTITION=c6 + dprefix=${dprefix:-/gpfs/f6/${ACCNR}/proj-shared/${USER}} + STMP=${STMP:-${dprefix}/RT_BASELINE} + PTMP=${PTMP:-${dprefix}/RT_RUNDIRS} + SCHEDULER="slurm" ;; hera) diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index ecf4259421..6e43e1e914 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -312,7 +312,10 @@ rocoto_create_compile_task() { if [[ ${MACHINE_ID} == s4 ]]; then BUILD_WALLTIME="01:00:00" fi - if [[ ${MACHINE_ID} == gaea ]]; then + if [[ ${MACHINE_ID} == gaeac5 ]]; then + BUILD_WALLTIME="01:00:00" + fi + if [[ ${MACHINE_ID} == gaeac6 ]]; then BUILD_WALLTIME="01:00:00" fi @@ -325,10 +328,15 @@ rocoto_create_compile_task() { ${COMPILE_QUEUE} EOF - if [[ "${MACHINE_ID}" == gaea ]] ; then + if [[ "${MACHINE_ID}" == gaeac5 ]] ; then cat << EOF >> "${ROCOTO_XML}" --clusters=es eslogin_c5 +EOF + elif [[ "${MACHINE_ID}" == gaeac6 ]] ; then + cat << EOF >> "${ROCOTO_XML}" + --clusters=es + eslogin_c6 EOF elif [[ -n "${PARTITION}" || ${MACHINE_ID} != hera ]] ; then cat << EOF >> "${ROCOTO_XML}" @@ -369,7 +377,7 @@ rocoto_create_run_task() { ${ROCOTO_NODESIZE:+${ROCOTO_NODESIZE}} EOF - if [[ "${MACHINE_ID}" == gaea ]] ; then + if [[ "${MACHINE_ID}" == gaeac5 || "${MACHINE_ID}" == gaeac6 ]] ; then cat << EOF >> "${ROCOTO_XML}" --clusters=${PARTITION} --partition=batch diff --git a/tests/run_test.sh b/tests/run_test.sh index 8e8e7c34d3..1724a2b6d7 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -116,11 +116,19 @@ case ${MACHINE_ID} in stampede|expanse|noaacloud) echo "No special nccmp load necessary" ;; - gaea) + gaeac5) module use /ncrc/proj/epic/spack-stack/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core module load stack-intel/2023.2.0 stack-cray-mpich/8.1.28 module load nccmp/1.9.0.1 ;; + gaeac6) + module use /ncrc/proj/epic/spack-stack/c6/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core + module load stack-intel/2023.2.0 stack-cray-mpich/8.1.29 + module load nccmp/1.9.0.1 + #module use modulefiles + #module load modules.fv3 + #module load gcc-native/12.3 + ;; derecho) module load nccmp ;; @@ -462,7 +470,7 @@ if [[ ${skip_check_results} == false ]]; then else if [[ ${i##*.} == nc* ]] ; then - if [[ " orion hercules hera wcoss2 acorn derecho gaea jet s4 noaacloud " =~ ${MACHINE_ID} ]]; then + if [[ " orion hercules hera wcoss2 acorn derecho gaeac5 gaeac6 jet s4 noaacloud " =~ ${MACHINE_ID} ]]; then printf "USING NCCMP.." >> "${RT_LOG}" printf "USING NCCMP.." if [[ ${CMP_DATAONLY} == false ]]; then diff --git a/tests/test_changes.list b/tests/test_changes.list index c4ea4a8d43..e69de29bb2 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,3 +0,0 @@ -hafs_regional_docn intel -hafs_regional_docn_oisst intel -hafs_regional_datm_cdeps intel diff --git a/tests/tests/atmaero_control_p8 b/tests/tests/atmaero_control_p8 index 6d4012d580..afb6629547 100644 --- a/tests/tests/atmaero_control_p8 +++ b/tests/tests/atmaero_control_p8 @@ -180,3 +180,7 @@ export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. export SATMEDMF=.true. + +if [[ $MACHINE_ID = gaeac6 ]]; then + TPN=96 +fi diff --git a/tests/tests/control_p8.v2.sfc b/tests/tests/control_p8.v2.sfc index d08987ae87..d1afdbc4ca 100644 --- a/tests/tests/control_p8.v2.sfc +++ b/tests/tests/control_p8.v2.sfc @@ -153,6 +153,6 @@ export DOGP_SGS_CNV=.true. export SATMEDMF=.true. -if [[ " hera orion hercules gaea jet " =~ " ${MACHINE_ID} " ]] ; then +if [[ " hera orion hercules gaeac5 gaeac6 jet " =~ " ${MACHINE_ID} " ]] ; then ZSTANDARD_LEVEL=5 fi diff --git a/tests/tests/control_wam b/tests/tests/control_wam index 5018e6208c..d70921938b 100644 --- a/tests/tests/control_wam +++ b/tests/tests/control_wam @@ -106,6 +106,6 @@ export DIAG_TABLE=diag_table_wam export INPUT_NML=wam_v17.nml.IN -if [[ " hera orion hercules gaea jet " =~ " ${MACHINE_ID} " ]] ; then +if [[ " hera orion hercules gaeac5 gaeac6 jet " =~ " ${MACHINE_ID} " ]] ; then ZSTANDARD_LEVEL=5 fi diff --git a/tests/tests/control_wam_debug b/tests/tests/control_wam_debug index 4c1852e2e0..c52d742268 100644 --- a/tests/tests/control_wam_debug +++ b/tests/tests/control_wam_debug @@ -107,6 +107,6 @@ export DIAG_TABLE=diag_table_wam export INPUT_NML=wam_v17.nml.IN -if [[ " hera orion hercules gaea jet " =~ " ${MACHINE_ID} " ]] ; then +if [[ " hera orion hercules gaeac5 gaeac6 jet " =~ " ${MACHINE_ID} " ]] ; then ZSTANDARD_LEVEL=5 fi diff --git a/tests/tests/cpld_control_c192_p8 b/tests/tests/cpld_control_c192_p8 index b70352aee0..dbd5840f43 100644 --- a/tests/tests/cpld_control_c192_p8 +++ b/tests/tests/cpld_control_c192_p8 @@ -140,8 +140,8 @@ export FNABSC="'C192.maximum_snow_albedo.tileX.nc'" export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = derecho ]]; then - TPN=96 +if [[ $MACHINE_ID = derecho ]] || [[ $MACHINE_ID = gaeac6 ]]; then + TPN=144 fi # HR4 GFSv17 GWD update diff --git a/tests/tests/cpld_control_ciceC_p8 b/tests/tests/cpld_control_ciceC_p8 index 07057d8073..20aeff2e64 100644 --- a/tests/tests/cpld_control_ciceC_p8 +++ b/tests/tests/cpld_control_ciceC_p8 @@ -93,3 +93,7 @@ export N_SPLIT=5 # HR4 GFSv17 GWD update export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. + +if [[ $MACHINE_ID = gaeac6 ]]; then + TPN=96 +fi diff --git a/tests/tests/cpld_control_p8 b/tests/tests/cpld_control_p8 index 1886a0de60..843f2828e3 100644 --- a/tests/tests/cpld_control_p8 +++ b/tests/tests/cpld_control_p8 @@ -90,7 +90,7 @@ export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = derecho ]]; then +if [[ $MACHINE_ID = derecho ]] || [[ $MACHINE_ID = gaeac6 ]]; then TPN=96 fi diff --git a/tests/tests/cpld_control_p8.v2.sfc b/tests/tests/cpld_control_p8.v2.sfc index bc6e073c61..14bec35bf2 100644 --- a/tests/tests/cpld_control_p8.v2.sfc +++ b/tests/tests/cpld_control_p8.v2.sfc @@ -87,7 +87,7 @@ export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN export V2_SFC_FILE=true -if [[ $MACHINE_ID = derecho ]]; then +if [[ $MACHINE_ID = derecho ]] || [[ $MACHINE_ID = gaeac6 ]]; then TPN=96 fi diff --git a/tests/tests/cpld_control_p8_faster b/tests/tests/cpld_control_p8_faster index 4e972c16aa..69cb7525a5 100644 --- a/tests/tests/cpld_control_p8_faster +++ b/tests/tests/cpld_control_p8_faster @@ -96,3 +96,7 @@ export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. export DO_GSL_DRAG_TOFD=.true. + +if [[ $MACHINE_ID = gaeac6 ]]; then + TPN=96 +fi diff --git a/tests/tests/cpld_control_p8_mixedmode b/tests/tests/cpld_control_p8_mixedmode index 0d35ba3114..e23f9a0bc2 100644 --- a/tests/tests/cpld_control_p8_mixedmode +++ b/tests/tests/cpld_control_p8_mixedmode @@ -92,3 +92,7 @@ export N_SPLIT=5 # HR4 GFSv17 GWD update export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. + +if [[ $MACHINE_ID = gaeac6 ]]; then + TPN=96 +fi diff --git a/tests/tests/cpld_control_qr_p8 b/tests/tests/cpld_control_qr_p8 index 48bb88f2ab..4ede95ef1f 100644 --- a/tests/tests/cpld_control_qr_p8 +++ b/tests/tests/cpld_control_qr_p8 @@ -92,3 +92,7 @@ export N_SPLIT=5 # HR4 GFSv17 GWD update export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. + +if [[ $MACHINE_ID = gaeac6 ]]; then + TPN=96 +fi diff --git a/tests/tests/cpld_debug_gfsv17 b/tests/tests/cpld_debug_gfsv17 index 63328b4d97..457a73b303 100644 --- a/tests/tests/cpld_debug_gfsv17 +++ b/tests/tests/cpld_debug_gfsv17 @@ -112,7 +112,10 @@ export N_SPLIT=5 if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 fi -if [[ $MACHINE_ID = gaea ]] && [[ $RT_COMPILER = intelllvm ]]; then +if [[ $MACHINE_ID = gaeac5 ]] && [[ $RT_COMPILER = intelllvm ]]; then + WLCLK=40 +fi +if [[ $MACHINE_ID = gaeac6 ]] && [[ $RT_COMPILER = intelllvm ]]; then WLCLK=40 fi if [[ $MACHINE_ID = orion ]]; then diff --git a/tests/tests/cpld_debug_p8 b/tests/tests/cpld_debug_p8 index 663e21eccf..4c1ca3a24a 100644 --- a/tests/tests/cpld_debug_p8 +++ b/tests/tests/cpld_debug_p8 @@ -81,6 +81,10 @@ if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 fi +if [[ $MACHINE_ID = gaeac6 ]] ; then + TPN=96 +fi + export K_SPLIT=4 export N_SPLIT=5 diff --git a/tests/tests/cpld_debug_pdlib_p8 b/tests/tests/cpld_debug_pdlib_p8 index 43ac0ebc3b..8b1cdb1617 100644 --- a/tests/tests/cpld_debug_pdlib_p8 +++ b/tests/tests/cpld_debug_pdlib_p8 @@ -109,7 +109,10 @@ fi if [[ $MACHINE_ID = orion ]]; then WLCLK=50 fi -if [[ $MACHINE_ID = gaea ]]; then +if [[ $MACHINE_ID = gaeac5 ]] && [[ $RT_COMPILER = intelllvm ]]; then + WLCLK=50 +fi +if [[ $MACHINE_ID = gaeac6 ]] && [[ $RT_COMPILER = intelllvm ]]; then WLCLK=50 fi if [[ $MACHINE_ID = wcoss2 ]]; then diff --git a/tests/tests/cpld_decomp_p8 b/tests/tests/cpld_decomp_p8 index 382960bfc1..515b922ea4 100644 --- a/tests/tests/cpld_decomp_p8 +++ b/tests/tests/cpld_decomp_p8 @@ -87,7 +87,7 @@ export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = derecho ]]; then +if [[ $MACHINE_ID = derecho ]] || [[ $MACHINE_ID = gaeac6 ]]; then TPN=96 fi diff --git a/tests/tests/cpld_mpi_p8 b/tests/tests/cpld_mpi_p8 index 8c9244e675..884acdd47f 100644 --- a/tests/tests/cpld_mpi_p8 +++ b/tests/tests/cpld_mpi_p8 @@ -87,7 +87,7 @@ export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = derecho ]]; then +if [[ $MACHINE_ID = derecho ]] || [[ $MACHINE_ID = gaeac6 ]]; then TPN=96 fi diff --git a/tests/tests/cpld_restart_p8 b/tests/tests/cpld_restart_p8 index 0409d3d20d..fc7d2348fb 100644 --- a/tests/tests/cpld_restart_p8 +++ b/tests/tests/cpld_restart_p8 @@ -93,7 +93,7 @@ export CICE_DIAGFREQ=`expr $((FHMAX-$FHROT)) \* 3600 / $DT_CICE` export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = derecho ]]; then +if [[ $MACHINE_ID = derecho ]] || [[ $MACHINE_ID = gaeac6 ]]; then TPN=96 fi diff --git a/tests/tests/cpld_restart_qr_p8 b/tests/tests/cpld_restart_qr_p8 index e1d8b85d16..cf0967282a 100644 --- a/tests/tests/cpld_restart_qr_p8 +++ b/tests/tests/cpld_restart_qr_p8 @@ -100,3 +100,7 @@ export N_SPLIT=5 # HR4 GFSv17 GWD update export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. + +if [[ $MACHINE_ID = gaeac6 ]]; then + TPN=96 +fi diff --git a/tests/tests/regional_atmaq b/tests/tests/regional_atmaq index df4603f299..68d0f30739 100644 --- a/tests/tests/regional_atmaq +++ b/tests/tests/regional_atmaq @@ -99,6 +99,6 @@ export CCPP_SUITE=FV3_GFS_v15p2 if [[ $MACHINE_ID = hera ]]; then TPN=30 -elif [[ $MACHINE_ID = gaea ]]; then +elif [[ $MACHINE_ID = gaeac5 ]]; then TPN=16 fi diff --git a/tests/tests/regional_atmaq_debug b/tests/tests/regional_atmaq_debug index 30783d3b52..e45187a264 100644 --- a/tests/tests/regional_atmaq_debug +++ b/tests/tests/regional_atmaq_debug @@ -98,6 +98,8 @@ export CCPP_SUITE=FV3_GFS_v15p2 if [[ $MACHINE_ID = hera ]]; then TPN=30 WLCLK=60 -elif [[ $MACHINE_ID = gaea ]]; then +elif [[ $MACHINE_ID = gaeac5 ]]; then TPN=16 +elif [[ $MACHINE_ID = gaeac6 ]]; then + TPN=128 fi diff --git a/tests/tests/regional_atmaq_faster b/tests/tests/regional_atmaq_faster index 6ccb25375a..17491bc515 100644 --- a/tests/tests/regional_atmaq_faster +++ b/tests/tests/regional_atmaq_faster @@ -93,6 +93,6 @@ export CCPP_SUITE=FV3_GFS_v15p2 if [[ $MACHINE_ID = hera ]]; then TPN=30 -elif [[ $MACHINE_ID = gaea ]]; then +elif [[ $MACHINE_ID = gaeac5 ]]; then TPN=18 fi diff --git a/tests/tests/regional_debug b/tests/tests/regional_debug index f4f6326b90..13f2e328cd 100644 --- a/tests/tests/regional_debug +++ b/tests/tests/regional_debug @@ -41,6 +41,11 @@ if [[ " hera orion hercules jet " =~ " ${MACHINE_ID} " ]] ; then ZSTANDARD_LEVEL=5 fi -if [[ $MACHINE_ID = gaea && $RT_COMPILER = intelllvm ]]; then +if [[ $MACHINE_ID = gaeac5 && $RT_COMPILER = intelllvm ]]; then WLCLK=50 fi + +if [[ $MACHINE_ID = gaeac6 && $RT_COMPILER = intelllvm ]]; then + WLCLK=50 +fi + From 295008915d1ad09fb5d4e24624d0c19627273af4 Mon Sep 17 00:00:00 2001 From: Nicholas Szapiro <149816583+NickSzapiro-NOAA@users.noreply.github.com> Date: Mon, 23 Dec 2024 16:27:06 -0500 Subject: [PATCH 19/24] Sync with ESCOMP/CDEPS (2024-12-16) + Add support for traditional threading (#2533) (#2538) * UFSWM - This PR adds support for traditional (non esmf managed) threading. ESMF managed threading is still default. * UFSWM - Sync with ESCOMP/CDEPS (2024-12-16) * CDEPS - Sync with ESCOMP/CDEPS (2024-12-16) --------- Co-authored-by: Dusan Jovic --- CDEPS-interface/CDEPS | 2 +- tests-dev/ufs_test_utils.sh | 9 +- tests/default_vars.sh | 227 ++--- tests/fv3_conf/fv3_qsub.IN_acorn | 3 +- tests/fv3_conf/fv3_qsub.IN_wcoss2 | 3 +- tests/logs/RegressionTests_acorn.log | 492 +++++------ tests/logs/RegressionTests_derecho.log | 621 +++++++------ tests/logs/RegressionTests_gaeac5.log | 584 ++++++------- tests/logs/RegressionTests_gaeac6.log | 530 +++++------ tests/logs/RegressionTests_hera.log | 752 ++++++++-------- tests/logs/RegressionTests_hercules.log | 824 ++++++++++-------- tests/logs/RegressionTests_jet.log | 495 ++++++----- tests/logs/RegressionTests_orion.log | 646 ++++++++------ tests/logs/RegressionTests_wcoss2.log | 529 ++++++----- tests/parm/params_grib2_tbl_new | 0 tests/parm/ufs.configure.atm.IN | 3 +- tests/parm/ufs.configure.atm_esmf.IN | 27 - tests/parm/ufs.configure.atm_lm4.IN | 2 +- tests/parm/ufs.configure.atm_lnd.IN | 2 +- tests/parm/ufs.configure.atmaero.IN | 4 +- tests/parm/ufs.configure.atmaero_esmf.IN | 40 - tests/parm/ufs.configure.atmaq.IN | 2 +- tests/parm/ufs.configure.atmw.IN | 2 +- tests/parm/ufs.configure.blocked_atm_wav.IN | 2 +- .../ufs.configure.blocked_atm_wav_2way.IN | 2 +- tests/parm/ufs.configure.cpld_atm_fbh.IN | 2 +- tests/parm/ufs.configure.datm_cdeps.IN | 2 +- tests/parm/ufs.configure.hafs_atm.IN | 2 +- tests/parm/ufs.configure.hafs_atm_docn.IN | 2 +- tests/parm/ufs.configure.hafs_atm_ocn.IN | 2 +- tests/parm/ufs.configure.hafs_atm_ocn_wav.IN | 2 +- .../ufs.configure.hafs_atm_ocn_wav_inline.IN | 2 +- .../ufs.configure.hafs_atm_ocn_wav_mom6.IN | 2 +- tests/parm/ufs.configure.hafs_atm_wav.IN | 2 +- tests/parm/ufs.configure.leapfrog_atm_wav.IN | 4 +- .../ufs.configure.leapfrog_atm_wav_esmf.IN | 41 - tests/parm/ufs.configure.s2s.IN | 20 +- ...ux_esmf.IN => ufs.configure.s2s_aoflux.IN} | 2 +- tests/parm/ufs.configure.s2s_esmf.IN | 139 --- tests/parm/ufs.configure.s2sa.IN | 7 +- tests/parm/ufs.configure.s2sa_esmf.IN | 137 --- tests/parm/ufs.configure.s2sw.IN | 9 +- tests/parm/ufs.configure.s2sw_esmf.IN | 149 ---- ...ast_esmf.IN => ufs.configure.s2sw_fast.IN} | 2 +- tests/parm/ufs.configure.s2swa.IN | 8 +- tests/parm/ufs.configure.s2swa_esmf.IN | 161 ---- ...st_esmf.IN => ufs.configure.s2swa_fast.IN} | 3 +- tests/rt.sh | 6 +- tests/rt_utils.sh | 126 ++- tests/run_test.sh | 19 +- tests/tests/atm_ds2s_docn_dice | 2 +- tests/tests/atm_ds2s_docn_pcice | 2 +- tests/tests/atmaero_control_p8 | 2 +- tests/tests/atmaero_control_p8_rad | 2 +- tests/tests/atmaero_control_p8_rad_micro | 2 +- tests/tests/control_2threads_p8 | 3 + tests/tests/conus13km_2threads | 3 + tests/tests/conus13km_debug_2threads | 3 + tests/tests/cpld_2threads_p8 | 9 +- tests/tests/cpld_control_c192_p8 | 5 +- tests/tests/cpld_control_c48 | 2 +- tests/tests/cpld_control_noaero_p8 | 4 +- tests/tests/cpld_control_noaero_p8_agrid | 2 +- tests/tests/cpld_control_nowave_noaero_p8 | 4 +- tests/tests/cpld_control_pdlib_p8 | 2 +- tests/tests/cpld_debug_noaero_p8 | 2 +- tests/tests/cpld_debug_pdlib_p8 | 2 +- tests/tests/cpld_mpi_pdlib_p8 | 2 +- tests/tests/cpld_restart_c48 | 2 +- tests/tests/cpld_restart_pdlib_p8 | 2 +- tests/tests/cpld_s2sa_p8 | 2 +- tests/tests/cpld_warmstart_c48 | 2 +- tests/tests/hrrr_control_2threads | 5 + tests/tests/hrrr_control_2threads_dyn32_phy32 | 5 + tests/tests/rap_2threads | 6 + tests/tests/rap_2threads_dyn32_phy32 | 6 + tests/tests/regional_2threads | 3 + 77 files changed, 3271 insertions(+), 3469 deletions(-) mode change 100755 => 100644 tests/parm/params_grib2_tbl_new delete mode 100644 tests/parm/ufs.configure.atm_esmf.IN delete mode 100644 tests/parm/ufs.configure.atmaero_esmf.IN delete mode 100644 tests/parm/ufs.configure.leapfrog_atm_wav_esmf.IN rename tests/parm/{ufs.configure.s2s_aoflux_esmf.IN => ufs.configure.s2s_aoflux.IN} (98%) delete mode 100644 tests/parm/ufs.configure.s2s_esmf.IN delete mode 100644 tests/parm/ufs.configure.s2sa_esmf.IN delete mode 100644 tests/parm/ufs.configure.s2sw_esmf.IN rename tests/parm/{ufs.configure.s2sw_fast_esmf.IN => ufs.configure.s2sw_fast.IN} (98%) delete mode 100644 tests/parm/ufs.configure.s2swa_esmf.IN rename tests/parm/{ufs.configure.s2swa_fast_esmf.IN => ufs.configure.s2swa_fast.IN} (98%) diff --git a/CDEPS-interface/CDEPS b/CDEPS-interface/CDEPS index 34d1eab8e4..2eccb9f74e 160000 --- a/CDEPS-interface/CDEPS +++ b/CDEPS-interface/CDEPS @@ -1 +1 @@ -Subproject commit 34d1eab8e432cedf8a81976e3b675b32f41b043f +Subproject commit 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 diff --git a/tests-dev/ufs_test_utils.sh b/tests-dev/ufs_test_utils.sh index 4b103dc39f..683690c751 100644 --- a/tests-dev/ufs_test_utils.sh +++ b/tests-dev/ufs_test_utils.sh @@ -5,8 +5,13 @@ function set_run_task() { source default_vars.sh source rt_utils.sh source "${PATHRT}"/tests/"${TEST_NAME}" - compute_petbounds_and_tasks - + #jkim compute_petbounds_and_tasks + if [[ ${ESMF_THREADING} == true ]]; then + compute_petbounds_and_tasks_esmf_threading + else + compute_petbounds_and_tasks_traditional_threading + fi + TPN=$(( TPN / THRD )) NODES=$(( TASKS / TPN )) if (( NODES * TPN < TASKS )); then diff --git a/tests/default_vars.sh b/tests/default_vars.sh index ce7eca3ac9..81dd617d49 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -7,116 +7,118 @@ # ############################################################################### - THRD=1 - - export INPES_atmaero=4 - export JNPES_atmaero=8 - export WPG_atmaero=6 - - export THRD_cpl_atmw=1 - export INPES_cpl_atmw=3 - export JNPES_cpl_atmw=8 - export WPG_cpl_atmw=6 - export WAV_tasks_cpl_atmw=30 - export WAV_thrds_cpl_atmw=1 - - export THRD_cpl_c48=1 - export INPES_cpl_c48=1 - export JNPES_cpl_c48=1 - export WPG_cpl_c48=6 - export OCN_tasks_cpl_c48=4 - export ICE_tasks_cpl_c48=4 - - export THRD_cpl_dflt=1 - export INPES_cpl_dflt=3 - export JNPES_cpl_dflt=8; - export WPG_cpl_dflt=6 - export OCN_tasks_cpl_dflt=20 - export ICE_tasks_cpl_dflt=10 - export WAV_tasks_cpl_dflt=20 - - export THRD_cpl_thrd=2 - export INPES_cpl_thrd=3 - export JNPES_cpl_thrd=4 - export WPG_cpl_thrd=6 - export OCN_tasks_cpl_thrd=20 - export OCN_thrds_cpl_thrd=1 - export ICE_tasks_cpl_thrd=10 - export ICE_thrds_cpl_thrd=1 - export WAV_tasks_cpl_thrd=12 - export WAV_thrds_cpl_thrd=2 - - export THRD_cpl_dcmp=1 - export INPES_cpl_dcmp=4 - export JNPES_cpl_dcmp=6 - export WPG_cpl_dcmp=6 - export OCN_tasks_cpl_dcmp=20 - export ICE_tasks_cpl_dcmp=10 - export WAV_tasks_cpl_dcmp=20 - - export THRD_cpl_mpi=1 - export INPES_cpl_mpi=4 - export JNPES_cpl_mpi=8 - export WPG_cpl_mpi=6 - export OCN_tasks_cpl_mpi=34 - export ICE_tasks_cpl_mpi=20 - export WAV_tasks_cpl_mpi=28 - - export THRD_cpl_bmrk=2 - export INPES_cpl_bmrk=8 - export JNPES_cpl_bmrk=8 - export WPG_cpl_bmrk=48 - export OCN_tasks_cpl_bmrk=120 - export OCN_thrds_cpl_bmrk=1 - export ICE_tasks_cpl_bmrk=48 - export ICE_thrds_cpl_bmrk=1 - export WAV_tasks_cpl_bmrk=80 - export WAV_thrds_cpl_bmrk=2 - - export THRD_cpl_c192=2 - export INPES_cpl_c192=6 - export JNPES_cpl_c192=8 - export WPG_cpl_c192=12 - export OCN_tasks_cpl_c192=60 - export ICE_tasks_cpl_c192=24 - export WAV_tasks_cpl_c192=80 - - export ATM_compute_tasks_cdeps_100=12 - export OCN_tasks_cdeps_100=16 - export ICE_tasks_cdeps_100=12 - - export ATM_compute_tasks_cdeps_025=40 - export OCN_tasks_cdeps_025=120 - export ICE_tasks_cdeps_025=48 - - export INPES_aqm=33 - export JNPES_aqm=8 - - export THRD_cpl_unstr=1 - export INPES_cpl_unstr=3 - export JNPES_cpl_unstr=8 - export WPG_cpl_unstr=6 - export OCN_tasks_cpl_unstr=20 - export ICE_tasks_cpl_unstr=10 - export WAV_tasks_cpl_unstr=60 - - export THRD_cpl_unstr_mpi=1 - export INPES_cpl_unstr_mpi=4 - export JNPES_cpl_unstr_mpi=8 - export WPG_cpl_unstr_mpi=6 - export OCN_tasks_cpl_unstr_mpi=34 - export ICE_tasks_cpl_unstr_mpi=20 - export WAV_tasks_cpl_unstr_mpi=50 - - export aqm_omp_num_threads=1 - export atm_omp_num_threads=1 - export chm_omp_num_threads=1 - export ice_omp_num_threads=1 - export lnd_omp_num_threads=1 - export med_omp_num_threads=1 - export ocn_omp_num_threads=1 - export wav_omp_num_threads=1 - export fbh_omp_num_threads=1 +THRD=1 + +export INPES_atmaero=4 +export JNPES_atmaero=8 +export WPG_atmaero=6 + +export THRD_cpl_atmw=1 +export INPES_cpl_atmw=3 +export JNPES_cpl_atmw=8 +export WPG_cpl_atmw=6 +export WAV_tasks_cpl_atmw=30 +export WAV_thrds_cpl_atmw=1 + +export THRD_cpl_c48=1 +export INPES_cpl_c48=1 +export JNPES_cpl_c48=1 +export WPG_cpl_c48=6 +export OCN_tasks_cpl_c48=4 +export ICE_tasks_cpl_c48=4 + +export THRD_cpl_dflt=1 +export INPES_cpl_dflt=3 +export JNPES_cpl_dflt=8; +export WPG_cpl_dflt=6 +export OCN_tasks_cpl_dflt=20 +export ICE_tasks_cpl_dflt=10 +export WAV_tasks_cpl_dflt=20 + +export THRD_cpl_thrd=2 +export INPES_cpl_thrd=3 +export JNPES_cpl_thrd=4 +export WPG_cpl_thrd=6 +export OCN_tasks_cpl_thrd=20 +export OCN_thrds_cpl_thrd=1 +export ICE_tasks_cpl_thrd=10 +export ICE_thrds_cpl_thrd=1 +export WAV_tasks_cpl_thrd=12 +export WAV_thrds_cpl_thrd=2 + +export THRD_cpl_dcmp=1 +export INPES_cpl_dcmp=4 +export JNPES_cpl_dcmp=6 +export WPG_cpl_dcmp=6 +export OCN_tasks_cpl_dcmp=20 +export ICE_tasks_cpl_dcmp=10 +export WAV_tasks_cpl_dcmp=20 + +export THRD_cpl_mpi=1 +export INPES_cpl_mpi=4 +export JNPES_cpl_mpi=8 +export WPG_cpl_mpi=6 +export OCN_tasks_cpl_mpi=34 +export ICE_tasks_cpl_mpi=20 +export WAV_tasks_cpl_mpi=28 + +export THRD_cpl_bmrk=2 +export INPES_cpl_bmrk=8 +export JNPES_cpl_bmrk=8 +export WPG_cpl_bmrk=48 +export OCN_tasks_cpl_bmrk=120 +export OCN_thrds_cpl_bmrk=1 +export ICE_tasks_cpl_bmrk=48 +export ICE_thrds_cpl_bmrk=1 +export WAV_tasks_cpl_bmrk=80 +export WAV_thrds_cpl_bmrk=2 + +export THRD_cpl_c192=2 +export INPES_cpl_c192=6 +export JNPES_cpl_c192=8 +export WPG_cpl_c192=12 +export OCN_tasks_cpl_c192=60 +export ICE_tasks_cpl_c192=24 +export WAV_tasks_cpl_c192=80 + +export ATM_compute_tasks_cdeps_100=12 +export OCN_tasks_cdeps_100=16 +export ICE_tasks_cdeps_100=12 + +export ATM_compute_tasks_cdeps_025=40 +export OCN_tasks_cdeps_025=120 +export ICE_tasks_cdeps_025=48 + +export INPES_aqm=33 +export JNPES_aqm=8 + +export THRD_cpl_unstr=1 +export INPES_cpl_unstr=3 +export JNPES_cpl_unstr=8 +export WPG_cpl_unstr=6 +export OCN_tasks_cpl_unstr=20 +export ICE_tasks_cpl_unstr=10 +export WAV_tasks_cpl_unstr=60 + +export THRD_cpl_unstr_mpi=1 +export INPES_cpl_unstr_mpi=4 +export JNPES_cpl_unstr_mpi=8 +export WPG_cpl_unstr_mpi=6 +export OCN_tasks_cpl_unstr_mpi=34 +export ICE_tasks_cpl_unstr_mpi=20 +export WAV_tasks_cpl_unstr_mpi=50 + +export aqm_omp_num_threads=1 +export atm_omp_num_threads=1 +export chm_omp_num_threads=1 +export ice_omp_num_threads=1 +export lnd_omp_num_threads=1 +export med_omp_num_threads=1 +export ocn_omp_num_threads=1 +export wav_omp_num_threads=1 +export fbh_omp_num_threads=1 + +export histaux_enabled=.false. if [[ ${MACHINE_ID} = wcoss2 || ${MACHINE_ID} = acorn ]]; then @@ -439,6 +441,7 @@ export CMP_DATAONLY=false # Defaults for ufs.configure export esmf_logkind="ESMF_LOGKIND_MULTI" +export ESMF_THREADING=true export DumpFields="false" export MED_history_n=1000000 export RESTART_FH=" " @@ -525,7 +528,7 @@ else fi # ufs.configure defaults -export UFS_CONFIGURE=ufs.configure.atm_esmf.IN +export UFS_CONFIGURE=ufs.configure.atm.IN export MODEL_CONFIGURE=model_configure.IN export atm_model=fv3 @@ -1354,7 +1357,7 @@ export_fire_behavior() { # Defaults for the coupled 5-component export_cmeps() { - export UFS_CONFIGURE=ufs.configure.s2swa_fast_esmf.IN + export UFS_CONFIGURE=ufs.configure.s2swa_fast.IN export med_model=cmeps export atm_model=fv3 export chm_model=gocart diff --git a/tests/fv3_conf/fv3_qsub.IN_acorn b/tests/fv3_conf/fv3_qsub.IN_acorn index b3d0102328..5cb4781c23 100644 --- a/tests/fv3_conf/fv3_qsub.IN_acorn +++ b/tests/fv3_conf/fv3_qsub.IN_acorn @@ -10,10 +10,11 @@ #PBS -l walltime=00:@[WLCLK]:00 set -eux -echo -n " $( date +%s )," > job_timestamp.txt cd $PBS_O_WORKDIR +echo -n " $( date +%s )," > job_timestamp.txt + set +x module use $PWD/modulefiles module load modules.fv3 diff --git a/tests/fv3_conf/fv3_qsub.IN_wcoss2 b/tests/fv3_conf/fv3_qsub.IN_wcoss2 index b3d0102328..5cb4781c23 100644 --- a/tests/fv3_conf/fv3_qsub.IN_wcoss2 +++ b/tests/fv3_conf/fv3_qsub.IN_wcoss2 @@ -10,10 +10,11 @@ #PBS -l walltime=00:@[WLCLK]:00 set -eux -echo -n " $( date +%s )," > job_timestamp.txt cd $PBS_O_WORKDIR +echo -n " $( date +%s )," > job_timestamp.txt + set +x module use $PWD/modulefiles module load modules.fv3 diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 3d67e59cd4..9e0b6478cc 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,15 +1,15 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -19498cc1894245fe8afe365dd87dbe5d8862b35f +572eba512daea70468af6d74c0134781118e9f0a Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 51f8cd20c15fe39ef1168d59d5077812b6508544 CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-10) + c7ea491e6fd99e459af977bfd57fa14aa6a349eb CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-12-16) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - 507ca48f4586fbeb7b0e23e5cfa9321bc3f02a1d CMEPS-interface/CMEPS (cmeps_v0.4.1-3103-g507ca48f) + b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) @@ -39,267 +39,267 @@ 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-20241212 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1416340 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3668978 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:25, 11:29] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:39, 02:37](3189 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:26, 11:31] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:29, 11:16](3190 MB) -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:26, 11:58] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [10:39, 03:44](1905 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [50:15, 04:22](1965 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [49:33, 03:59](1075 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [10:40, 03:26](1882 MB) +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:26, 12:11] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:22, 15:48](1907 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [30:34, 16:41](1950 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [19:14, 07:41](1081 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:25, 18:24](1888 MB) -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:27, 11:57] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [10:38, 02:16](1902 MB) +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:26, 12:05] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:23, 15:19](1902 MB) -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:26] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [16:46, 03:26](1954 MB) +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:28] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [32:24, 28:17](1943 MB) -PASS -- COMPILE 's2swa_intel' [13:28, 11:39] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [10:37, 03:13](3228 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:37, 02:47](3226 MB) -PASS -- TEST 'cpld_restart_p8_intel' [49:01, 02:33](3156 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:37, 03:09](3244 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [45:17, 01:56](3173 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:37, 02:27](3461 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:37, 02:26](3220 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:38, 02:42](3168 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:37, 02:58](3227 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:37, 03:08](3200 MB) +PASS -- COMPILE 's2swa_intel' [13:28, 11:33] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [25:12, 14:37](3226 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [29:40, 14:26](3226 MB) +PASS -- TEST 'cpld_restart_p8_intel' [15:53, 08:03](3156 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [25:06, 14:29](3245 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [15:58, 07:59](3171 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [37:39, 30:00](3451 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [26:17, 14:21](3218 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [22:24, 11:38](3168 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [29:38, 14:24](3228 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:06, 08:09](3202 MB) -PASS -- COMPILE 's2sw_intel' [12:27, 10:53] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [11:38, 01:58](1917 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:38, 03:02](1980 MB) +PASS -- COMPILE 's2sw_intel' [12:27, 11:08] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:31, 07:37](1917 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:01, 12:13](1980 MB) -PASS -- COMPILE 's2s_aoflux_intel' [11:25, 09:59] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [12:39, 03:15](1977 MB) +PASS -- COMPILE 's2s_aoflux_intel' [12:26, 10:21] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:56, 05:06](1979 MB) PASS -- COMPILE 's2s_intel' [11:25, 10:14] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [12:39, 02:52](2884 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [12:39, 02:45](2891 MB) -PASS -- TEST 'cpld_restart_c48_intel' [07:10, 01:36](2308 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:32, 15:45] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [06:33, 02:48](3227 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [12:27, 11:14] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [11:38, 02:24](1918 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [42:42, 02:18](1109 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [42:37, 02:48](1901 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:15] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [09:26, 02:23](1957 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:29] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [01:04, 01:29](662 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [58:27, 01:28](1556 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [56:09, 01:42](1564 MB) -PASS -- TEST 'control_latlon_intel' [55:32, 01:59](1562 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [52:11, 01:55](1560 MB) -PASS -- TEST 'control_c48_intel' [48:11, 02:19](1581 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [46:32, 02:11](707 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [46:32, 01:47](1579 MB) -PASS -- TEST 'control_c192_intel' [45:05, 02:04](1687 MB) -PASS -- TEST 'control_c384_intel' [44:21, 02:39](1968 MB) -PASS -- TEST 'control_c384gdas_intel' [44:02, 03:36](1162 MB) -PASS -- TEST 'control_stochy_intel' [42:03, 01:22](614 MB) -PASS -- TEST 'control_stochy_restart_intel' [36:30, 01:41](423 MB) -PASS -- TEST 'control_lndp_intel' [41:13, 01:49](615 MB) -PASS -- TEST 'control_iovr4_intel' [40:52, 01:47](616 MB) -PASS -- TEST 'control_iovr5_intel' [40:30, 01:44](616 MB) -PASS -- TEST 'control_p8_intel' [40:24, 02:55](1850 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [39:33, 03:36](1856 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [39:24, 02:57](1849 MB) -PASS -- TEST 'control_restart_p8_intel' [29:00, 02:45](1009 MB) -PASS -- TEST 'control_noqr_p8_intel' [39:20, 02:36](1855 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [27:39, 02:34](1014 MB) -PASS -- TEST 'control_decomp_p8_intel' [39:15, 02:22](1855 MB) -PASS -- TEST 'control_2threads_p8_intel' [39:00, 02:37](1934 MB) -PASS -- TEST 'control_p8_lndp_intel' [38:31, 01:49](1852 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [38:08, 03:07](1908 MB) -PASS -- TEST 'control_p8_mynn_intel' [38:00, 02:50](1857 MB) -PASS -- TEST 'merra2_thompson_intel' [37:57, 03:51](1854 MB) -PASS -- TEST 'regional_control_intel' [36:57, 02:05](887 MB) -PASS -- TEST 'regional_restart_intel' [29:03, 01:20](874 MB) -PASS -- TEST 'regional_decomp_intel' [34:41, 01:30](891 MB) -PASS -- TEST 'regional_2threads_intel' [33:17, 02:08](1020 MB) -PASS -- TEST 'regional_noquilt_intel' [32:32, 01:12](1219 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [32:32, 01:58](896 MB) -PASS -- TEST 'regional_wofs_intel' [31:53, 01:48](1591 MB) - -PASS -- COMPILE 'rrfs_intel' [10:25, 08:43] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [02:14, 03:15](1002 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [02:15, 02:26](1158 MB) -PASS -- TEST 'rap_decomp_intel' [02:14, 04:01](999 MB) -PASS -- TEST 'rap_2threads_intel' [02:14, 02:39](1083 MB) -PASS -- TEST 'rap_restart_intel' [31:54, 03:19](882 MB) -PASS -- TEST 'rap_sfcdiff_intel' [02:13, 03:43](998 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [02:13, 03:26](997 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [30:34, 03:09](886 MB) -PASS -- TEST 'hrrr_control_intel' [02:13, 03:44](999 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [02:13, 02:35](991 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [30:22, 03:47](1067 MB) -PASS -- TEST 'hrrr_control_restart_intel' [30:12, 01:37](833 MB) -PASS -- TEST 'rrfs_v1beta_intel' [28:10, 04:02](995 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [28:08, 01:37](1956 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [28:00, 01:52](1947 MB) - -PASS -- COMPILE 'csawmg_intel' [09:23, 08:05] -PASS -- TEST 'control_csawmg_intel' [02:15, 01:22](952 MB) -PASS -- TEST 'control_ras_intel' [02:15, 01:43](655 MB) - -PASS -- COMPILE 'wam_intel' [09:23, 08:13] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [02:15, 02:04](1639 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:23, 08:27] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [27:52, 03:19](1849 MB) -PASS -- TEST 'regional_control_faster_intel' [27:47, 02:09](896 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:22, 07:37] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [27:35, 02:10](1602 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [27:20, 01:34](1610 MB) -PASS -- TEST 'control_stochy_debug_intel' [26:43, 01:39](803 MB) -PASS -- TEST 'control_lndp_debug_intel' [25:42, 01:40](808 MB) -PASS -- TEST 'control_csawmg_debug_intel' [25:36, 01:56](1112 MB) -PASS -- TEST 'control_ras_debug_intel' [24:52, 01:49](814 MB) -PASS -- TEST 'control_diag_debug_intel' [24:43, 02:17](1655 MB) -PASS -- TEST 'control_debug_p8_intel' [24:41, 01:43](1903 MB) -PASS -- TEST 'regional_debug_intel' [24:29, 02:02](940 MB) -PASS -- TEST 'rap_control_debug_intel' [24:30, 01:36](1192 MB) -PASS -- TEST 'hrrr_control_debug_intel' [24:12, 01:27](1183 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [24:03, 01:25](1185 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [23:42, 01:47](1187 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [22:43, 01:45](1189 MB) -PASS -- TEST 'rap_diag_debug_intel' [22:40, 02:01](1271 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [22:26, 02:03](1192 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [21:39, 01:37](1189 MB) -PASS -- TEST 'rap_lndp_debug_intel' [21:17, 01:57](1190 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [21:08, 02:06](1189 MB) -PASS -- TEST 'rap_noah_debug_intel' [21:00, 02:08](1182 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [20:59, 01:43](1193 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [20:55, 01:40](1185 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [20:39, 01:33](1183 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [20:11, 01:37](1187 MB) -PASS -- TEST 'rap_flake_debug_intel' [20:10, 01:37](1189 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [19:30, 03:25](1189 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:19, 04:25] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [04:18, 02:01](1686 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 08:07] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [19:23, 01:39](1025 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [18:58, 03:05](875 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [17:48, 04:44](876 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [17:44, 02:51](931 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [17:41, 04:45](921 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [16:54, 03:15](867 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:37, 03:20](791 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:28, 01:49](762 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:25, 08:06] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [16:30, 01:53](1080 MB) -PASS -- TEST 'conus13km_2threads_intel' [09:17, 02:02](1063 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [06:56, 01:18](958 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:24, 08:15] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [15:46, 02:22](897 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:30] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [15:34, 01:54](1060 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [15:28, 02:01](1056 MB) -PASS -- TEST 'conus13km_debug_intel' [15:21, 01:52](1170 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [14:59, 02:09](835 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [14:12, 02:14](1137 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:05, 01:32](1244 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:25] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [12:54, 02:14](1088 MB) - -PASS -- COMPILE 'hafsw_intel' [13:28, 09:59] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [12:06, 02:20](684 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [11:54, 01:49](1048 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:43, 02:17](754 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [11:34, 03:13](766 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [10:25, 03:15](790 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:22, 01:55](464 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:05, 02:57](480 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [09:36, 02:05](377 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:39, 03:24](432 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:52, 02:21](498 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:15, 02:20](497 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:16, 02:19](561 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:00, 02:12](405 MB) -PASS -- TEST 'gnv1_nested_intel' [04:58, 04:08](1696 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:23, 04:51] ( 1444 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [04:54, 01:58](618 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [15:29, 09:45] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [03:51, 02:13](607 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [03:21, 01:54](782 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:28, 09:50] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [03:17, 02:14](784 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:32, 09:07] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [02:57, 02:20](734 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [02:20, 02:53](716 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [02:12, 01:36](896 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [21:34, 09:18] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [01:59, 02:11](765 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [55:33, 02:09](755 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [01:20, 01:47](643 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [59:48, 01:41](646 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [59:10, 01:38](643 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [58:07, 01:30](753 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [58:03, 02:06](765 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [57:40, 01:42](646 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [57:18, 02:25](690 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [55:57, 02:32](677 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [55:24, 01:54](766 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [55:02, 01:17](2033 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [54:52, 02:08](2032 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [21:37, 09:13] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [54:47, 01:59](753 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [12:26, 00:48] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [54:44, 01:53](302 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [53:45, 02:13](447 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [48:12, 01:23](451 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [21:35, 10:08] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [53:26, 01:48](1915 MB) - -PASS -- COMPILE 'atml_intel' [21:36, 09:33] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [53:18, 03:13](1878 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [52:43, 02:59](1878 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [39:17, 02:08](1021 MB) - -PASS -- COMPILE 'atml_debug_intel' [16:30, 05:24] ( 866 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [52:41, 03:03](1922 MB) - -PASS -- COMPILE 'atmw_intel' [15:30, 09:05] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [52:14, 03:08](1880 MB) +PASS -- TEST 'cpld_control_c48_intel' [08:28, 06:09](2878 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:26, 02:12](2892 MB) +PASS -- TEST 'cpld_restart_c48_intel' [05:07, 01:26](2303 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:31, 15:49] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [29:19, 14:18](3225 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:29, 11:38] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [29:06, 25:47](1918 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [18:59, 13:01](1089 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [37:05, 30:28](1899 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:12] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [50:20, 30:06](1967 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:27] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [19:48, 03:55](662 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [20:09, 03:12](1557 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [18:09, 03:16](1565 MB) +PASS -- TEST 'control_latlon_intel' [19:02, 03:18](1564 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [16:15, 03:20](1570 MB) +PASS -- TEST 'control_c48_intel' [19:24, 10:26](1581 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [12:58, 05:59](707 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [16:20, 10:26](1578 MB) +PASS -- TEST 'control_c192_intel' [18:18, 11:32](1687 MB) +PASS -- TEST 'control_c384_intel' [19:36, 14:00](1985 MB) +PASS -- TEST 'control_c384gdas_intel' [16:23, 09:03](1160 MB) +PASS -- TEST 'control_stochy_intel' [06:33, 01:51](617 MB) +PASS -- TEST 'control_stochy_restart_intel' [07:36, 01:14](422 MB) +PASS -- TEST 'control_lndp_intel' [05:32, 01:48](615 MB) +PASS -- TEST 'control_iovr4_intel' [06:35, 02:42](610 MB) +PASS -- TEST 'control_iovr5_intel' [06:34, 02:35](617 MB) +PASS -- TEST 'control_p8_intel' [09:19, 03:37](1850 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [09:21, 03:06](1857 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [10:22, 03:45](1849 MB) +PASS -- TEST 'control_restart_p8_intel' [06:17, 02:07](991 MB) +PASS -- TEST 'control_noqr_p8_intel' [09:38, 03:37](1855 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [07:40, 02:09](1019 MB) +PASS -- TEST 'control_decomp_p8_intel' [10:36, 03:43](1854 MB) +PASS -- TEST 'control_2threads_p8_intel' [14:44, 07:36](1930 MB) +PASS -- TEST 'control_p8_lndp_intel' [13:01, 06:24](1859 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [12:24, 04:03](1908 MB) +PASS -- TEST 'control_p8_mynn_intel' [11:11, 03:10](1857 MB) +PASS -- TEST 'merra2_thompson_intel' [12:52, 03:27](1854 MB) +PASS -- TEST 'regional_control_intel' [08:54, 05:21](891 MB) +PASS -- TEST 'regional_restart_intel' [05:49, 03:00](876 MB) +PASS -- TEST 'regional_decomp_intel' [09:49, 05:24](887 MB) +PASS -- TEST 'regional_2threads_intel' [13:51, 07:33](1017 MB) +PASS -- TEST 'regional_noquilt_intel' [09:51, 04:59](1219 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:49, 05:09](891 MB) +PASS -- TEST 'regional_wofs_intel' [10:50, 06:56](1583 MB) + +PASS -- COMPILE 'rrfs_intel' [10:23, 08:46] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [13:25, 07:14](1000 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:15, 04:29](1159 MB) +PASS -- TEST 'rap_decomp_intel' [11:31, 07:32](1003 MB) +PASS -- TEST 'rap_2threads_intel' [20:32, 15:57](1076 MB) +PASS -- TEST 'rap_restart_intel' [10:36, 03:56](883 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:23, 07:18](999 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:32, 07:35](996 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [13:28, 05:23](888 MB) +PASS -- TEST 'hrrr_control_intel' [10:26, 03:51](996 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [10:29, 03:55](991 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [14:42, 08:01](1068 MB) +PASS -- TEST 'hrrr_control_restart_intel' [08:37, 02:05](833 MB) +PASS -- TEST 'rrfs_v1beta_intel' [15:22, 07:10](995 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:39, 09:28](1956 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:40, 09:14](1944 MB) + +PASS -- COMPILE 'csawmg_intel' [09:22, 08:04] +PASS -- TEST 'control_csawmg_intel' [23:08, 06:56](952 MB) +PASS -- TEST 'control_ras_intel' [16:42, 03:26](650 MB) + +PASS -- COMPILE 'wam_intel' [10:23, 08:13] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [17:08, 12:13](1640 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:23, 08:26] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [08:21, 03:06](1849 MB) +PASS -- TEST 'regional_control_faster_intel' [06:47, 05:06](893 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 07:27] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [22:20, 02:38](1607 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [22:29, 02:37](1603 MB) +PASS -- TEST 'control_stochy_debug_intel' [18:48, 03:37](806 MB) +PASS -- TEST 'control_lndp_debug_intel' [18:49, 03:06](805 MB) +PASS -- TEST 'control_csawmg_debug_intel' [24:19, 05:01](1112 MB) +PASS -- TEST 'control_ras_debug_intel' [18:49, 03:14](810 MB) +PASS -- TEST 'control_diag_debug_intel' [22:24, 03:19](1655 MB) +PASS -- TEST 'control_debug_p8_intel' [22:15, 02:59](1904 MB) +PASS -- TEST 'regional_debug_intel' [23:16, 18:17](939 MB) +PASS -- TEST 'rap_control_debug_intel' [10:37, 05:42](1192 MB) +PASS -- TEST 'hrrr_control_debug_intel' [10:39, 05:34](1184 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [09:35, 05:37](1186 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [09:35, 05:47](1188 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:33, 05:38](1189 MB) +PASS -- TEST 'rap_diag_debug_intel' [10:46, 05:47](1272 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:34, 05:49](1192 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:34, 05:52](1188 MB) +PASS -- TEST 'rap_lndp_debug_intel' [12:38, 05:33](1192 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [13:40, 05:31](1188 MB) +PASS -- TEST 'rap_noah_debug_intel' [13:39, 05:31](1183 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [12:38, 05:45](1189 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:41, 09:03](1185 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [10:36, 05:28](1183 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [11:38, 05:33](1188 MB) +PASS -- TEST 'rap_flake_debug_intel' [11:37, 05:46](1189 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [16:41, 09:29](1189 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:19, 04:23] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [26:18, 14:10](1686 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:22, 08:03] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:16, 04:22](1029 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [12:17, 05:58](875 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [11:30, 03:26](880 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [20:23, 13:47](922 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:52, 07:13](930 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:59, 03:34](870 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:32, 04:29](789 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:30, 02:00](763 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:25, 08:05] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [08:13, 02:20](1082 MB) +PASS -- TEST 'conus13km_2threads_intel' [13:10, 02:00](1057 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:55, 01:29](958 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:23, 08:08] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:55, 04:10](897 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:28] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:34, 05:18](1059 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:36, 05:13](1057 MB) +PASS -- TEST 'conus13km_debug_intel' [21:19, 14:59](1157 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [21:14, 14:58](855 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [29:20, 23:05](1144 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:16, 14:48](1240 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:14] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:35, 05:37](1087 MB) + +PASS -- COMPILE 'hafsw_intel' [11:25, 10:01] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [22:51, 06:16](686 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [22:55, 05:49](1053 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:58, 07:43](730 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:47, 12:40](773 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:03, 14:05](934 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:07, 05:48](461 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:47, 07:19](483 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [19:26, 03:10](377 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [44:14, 08:35](433 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [13:06, 04:09](499 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:07, 03:52](498 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [21:28, 05:17](561 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [16:46, 01:59](406 MB) +PASS -- TEST 'gnv1_nested_intel' [10:26, 05:08](1697 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:20, 04:51] ( 1444 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [30:34, 14:35](666 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:27, 09:44] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [28:34, 08:26](605 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [33:47, 08:14](782 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:28, 09:54] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [36:01, 06:24](783 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:29, 09:17] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [16:46, 07:05](733 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [15:43, 07:11](718 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:33, 16:20](898 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [19:32, 09:18] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:25, 02:42](753 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:27, 01:39](755 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:22, 02:33](644 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:24, 02:35](645 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:22, 02:39](646 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:24, 02:42](766 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:24, 02:52](764 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:25, 02:38](644 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:28, 06:10](690 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:20, 06:09](673 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:23, 02:46](765 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:29, 04:45](2033 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [08:28, 04:38](2033 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [17:33, 09:22] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [07:26, 02:50](765 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [10:24, 00:51] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:40, 01:13](302 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [06:35, 01:19](449 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:32, 00:56](448 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [19:33, 10:06] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:35, 03:53](1913 MB) + +PASS -- COMPILE 'atml_intel' [19:35, 09:32] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:29, 05:06](1879 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:27, 05:17](1883 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [12:04, 03:02](1034 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:27, 05:16] ( 866 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:28, 06:35](1922 MB) + +PASS -- COMPILE 'atmw_intel' [14:28, 08:58] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:21, 02:15](1880 MB) PASS -- COMPILE 'atmaero_intel' [15:29, 08:35] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [51:12, 03:14](3117 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [51:08, 03:04](2997 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [50:38, 02:42](3005 MB) +PASS -- TEST 'atmaero_control_p8_intel' [09:58, 04:22](3116 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [12:05, 05:05](2996 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:43, 05:09](3009 MB) -PASS -- COMPILE 'atmaq_debug_intel' [11:25, 04:25] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [50:05, 02:23](4471 MB) +PASS -- COMPILE 'atmaq_debug_intel' [12:26, 04:22] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [28:36, 22:19](4471 MB) SYNOPSIS: -Starting Date/Time: 20241213 20:35:35 -Ending Date/Time: 20241213 22:42:00 -Total Time: 02h:06m:54s +Starting Date/Time: 20241223 13:31:07 +Ending Date/Time: 20241223 15:39:46 +Total Time: 02h:09m:07s Compiles Completed: 37/37 Tests Completed: 177/177 diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 6b0e18d0c7..6c985749ee 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,15 +1,15 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -19498cc1894245fe8afe365dd87dbe5d8862b35f +348b89d2a1b0728bea91816776db00f4bb8f6f24 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 51f8cd20c15fe39ef1168d59d5077812b6508544 CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-10) + c7ea491e6fd99e459af977bfd57fa14aa6a349eb CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-12-16) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - 507ca48f4586fbeb7b0e23e5cfa9321bc3f02a1d CMEPS-interface/CMEPS (cmeps_v0.4.1-3103-g507ca48f) + b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) @@ -39,289 +39,358 @@ 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-20241212 -COMPARISON DIRECTORY: /glade/derecho/scratch/fandrade/fandrade/FV3_RT/rt_58609 +COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_92764 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 -* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [23:21, 21:23] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:41, 10:17](3199 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:24, 23:34] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:31, 14:19](1912 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:47, 15:21](1900 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:52, 07:12](1081 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:20, 16:09](1885 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:25, 23:06] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:46, 13:54](1904 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:21, 11:45] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:24, 25:11](1941 MB) - -PASS -- COMPILE 's2swa_intel' [23:25, 21:31] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [19:09, 13:42](3222 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:58, 13:45](3233 MB) -PASS -- TEST 'cpld_restart_p8_intel' [13:05, 07:43](3151 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [18:47, 13:44](3249 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [13:18, 07:44](3176 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [17:29, 12:49](3752 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:29, 13:28](3215 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [15:28, 10:43](3540 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:57, 13:55](3236 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [15:01, 09:10](3814 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [14:12, 06:27](3616 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [34:13, 16:58](4519 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [35:24, 10:19](4662 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:06, 07:56](3204 MB) - -PASS -- COMPILE 's2sw_intel' [21:22, 19:41] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:43, 07:35](1921 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:58, 11:48](1989 MB) - -PASS -- COMPILE 's2swa_debug_intel' [13:22, 11:28] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [25:16, 21:04](3304 MB) - -PASS -- COMPILE 's2sw_debug_intel' [13:22, 11:01] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:56, 08:46](1954 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [18:23, 16:02] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:51, 04:57](1985 MB) - -PASS -- COMPILE 's2s_intel' [18:24, 16:26] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:13, 05:47](2883 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:16, 02:11](2894 MB) -PASS -- TEST 'cpld_restart_c48_intel' [05:31, 01:27](2301 MB) - -PASS -- COMPILE 's2swa_faster_intel' [25:22, 23:40] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [17:46, 13:31](3230 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [23:16, 21:41] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [28:33, 23:35](1929 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:48, 12:20](1101 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [31:20, 27:28](1899 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:16, 11:03] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:07, 27:25](1965 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:20, 14:15] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:41, 03:25](668 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:12, 02:42](1570 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:29, 02:45](1570 MB) -PASS -- TEST 'control_latlon_intel' [06:14, 02:40](1566 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:18, 02:43](1564 MB) -PASS -- TEST 'control_c48_intel' [12:19, 09:16](1587 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:39, 05:18](710 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [12:19, 09:18](1586 MB) -PASS -- TEST 'control_c192_intel' [14:34, 10:00](1696 MB) -PASS -- TEST 'control_c384_intel' [20:21, 11:19](1980 MB) -PASS -- TEST 'control_c384gdas_intel' [17:25, 07:11](1173 MB) -PASS -- TEST 'control_stochy_intel' [03:46, 01:26](624 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:53, 00:52](434 MB) -PASS -- TEST 'control_lndp_intel' [03:47, 01:23](621 MB) -PASS -- TEST 'control_iovr4_intel' [04:46, 02:07](622 MB) -PASS -- TEST 'control_iovr5_intel' [04:55, 02:08](617 MB) -PASS -- TEST 'control_p8_intel' [07:45, 03:38](1861 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:40, 03:09](1856 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:59, 03:33](1860 MB) -PASS -- TEST 'control_restart_p8_intel' [05:32, 02:23](1011 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:45, 03:39](1845 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:32, 02:11](1016 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:42, 03:36](1856 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:28, 03:27](1935 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:10, 06:08](1856 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:32, 04:11](1912 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:36, 03:13](1857 MB) -PASS -- TEST 'merra2_thompson_intel' [06:46, 03:30](1858 MB) -PASS -- TEST 'regional_control_intel' [08:08, 04:51](896 MB) -PASS -- TEST 'regional_restart_intel' [06:18, 02:55](879 MB) -PASS -- TEST 'regional_decomp_intel' [07:56, 05:07](899 MB) -PASS -- TEST 'regional_noquilt_intel' [07:55, 04:52](1215 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:06, 04:53](893 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:09, 04:54](893 MB) -PASS -- TEST 'regional_wofs_intel' [09:09, 05:52](1594 MB) - -PASS -- COMPILE 'rrfs_intel' [15:20, 12:51] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:40, 06:08](1003 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:58, 03:44](1161 MB) -PASS -- TEST 'rap_decomp_intel' [09:40, 06:28](1004 MB) -PASS -- TEST 'rap_2threads_intel' [08:30, 05:41](1085 MB) -PASS -- TEST 'rap_restart_intel' [06:14, 03:15](883 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:39, 06:06](1005 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:39, 06:23](1002 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:21, 04:37](883 MB) -PASS -- TEST 'hrrr_control_intel' [06:14, 03:15](1000 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:14, 03:19](996 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:14, 02:48](1076 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:57, 01:47](831 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:42, 06:01](999 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:02, 08:11](1960 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:57, 07:52](1945 MB) - -PASS -- COMPILE 'csawmg_intel' [14:19, 11:45] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [10:26, 06:34](959 MB) -PASS -- TEST 'control_ras_intel' [05:57, 02:53](657 MB) - -PASS -- COMPILE 'wam_intel' [13:19, 11:26] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:48, 10:18](1651 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:34, 11:57] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:43, 03:06](1852 MB) -PASS -- TEST 'regional_control_faster_intel' [08:05, 04:41](892 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [17:29, 14:31] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:13, 02:12](1604 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:16, 02:08](1607 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:42, 02:54](805 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:45, 02:35](809 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:27, 04:31](1110 MB) -PASS -- TEST 'control_ras_debug_intel' [05:38, 02:38](815 MB) -PASS -- TEST 'control_diag_debug_intel' [07:15, 02:35](1658 MB) -PASS -- TEST 'control_debug_p8_intel' [06:07, 03:08](1900 MB) -PASS -- TEST 'regional_debug_intel' [19:58, 16:30](922 MB) -PASS -- TEST 'rap_control_debug_intel' [07:40, 04:41](1191 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:56, 04:43](1184 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:51, 04:39](1190 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:56, 04:42](1188 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:52, 04:42](1189 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:31, 04:59](1272 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:48, 04:52](1190 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:51, 04:48](1190 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:01, 04:47](1191 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:04, 04:47](1189 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:58, 04:37](1188 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:00, 04:42](1187 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:47, 07:32](1186 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:01, 04:36](1185 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:51, 04:41](1189 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:53, 04:42](1190 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:17, 08:13](1187 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:29, 07:09] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:05, 12:05](1692 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:24, 11:28] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:29, 03:33](1027 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:06, 05:08](874 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:09, 02:46](872 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:22, 04:47](934 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:22, 02:26](930 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:23, 02:55](871 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:01, 03:54](794 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:52, 01:32](771 MB) +PASS -- COMPILE 's2swa_32bit_intel' [23:25, 21:26] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:35, 10:14](3201 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:27, 23:16] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:04, 14:08](1912 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:23, 15:02](1957 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:19, 07:07](1085 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:59, 16:02](1888 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:26, 23:19] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:21, 13:51](1908 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:24, 11:45] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:51, 25:15](1944 MB) + +PASS -- COMPILE 's2swa_intel' [23:26, 21:26] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [18:56, 13:49](3225 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:43, 13:52](3230 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:59, 07:35](3153 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [18:42, 13:43](3254 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:51, 07:29](3175 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [28:37, 24:22](3793 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:24, 13:23](3214 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:32, 10:41](3531 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:44, 13:35](3232 MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_control_c192_p8_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_c192_p8_intel' [, ]( MB) +PASS -- TEST 'cpld_bmark_p8_intel' [29:26, 16:43](4541 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [29:13, 10:26](4677 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:15, 07:52](3205 MB) + +PASS -- COMPILE 's2sw_intel' [21:26, 19:51] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:26, 07:26](1921 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:37, 11:42](1982 MB) + +PASS -- COMPILE 's2swa_debug_intel' [13:24, 11:45] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [25:09, 20:58](3302 MB) + +PASS -- COMPILE 's2sw_debug_intel' [13:24, 11:05] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:38, 08:56](1950 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [18:26, 16:04] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:43, 05:07](1977 MB) + +PASS -- COMPILE 's2s_intel' [18:25, 16:34] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:07, 05:46](2884 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:08, 02:07](2891 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:31, 01:23](2308 MB) + +PASS -- COMPILE 's2swa_faster_intel' [25:23, 23:57] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [17:18, 13:21](3233 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:17, 21:51] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [26:51, 23:28](1922 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:58, 12:03](1102 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [30:46, 27:08](1895 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:17, 11:04] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:45, 27:11](1964 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:17, 14:19] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:40, 03:25](668 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:02, 02:42](1563 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:11, 02:41](1568 MB) +PASS -- TEST 'control_latlon_intel' [05:55, 02:39](1570 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:00, 02:40](1571 MB) +PASS -- TEST 'control_c48_intel' [12:14, 09:12](1586 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:41, 05:16](710 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [12:17, 09:14](1590 MB) +PASS -- TEST 'control_c192_intel' [14:15, 09:57](1695 MB) +PASS -- TEST 'control_c384_intel' [17:57, 11:13](1979 MB) +PASS -- TEST 'control_c384gdas_intel' [16:05, 07:07](1171 MB) +PASS -- TEST 'control_stochy_intel' [03:41, 01:25](624 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:35, 00:50](433 MB) +PASS -- TEST 'control_lndp_intel' [03:34, 01:20](621 MB) +PASS -- TEST 'control_iovr4_intel' [04:40, 02:05](620 MB) +PASS -- TEST 'control_iovr5_intel' [04:40, 02:06](619 MB) +PASS -- TEST 'control_p8_intel' [06:30, 03:32](1857 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:40, 03:04](1851 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:34, 03:29](1852 MB) +PASS -- TEST 'control_restart_p8_intel' [05:19, 02:12](1009 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:28, 03:34](1844 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:19, 02:15](1020 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:30, 03:41](1846 MB) +PASS -- TEST 'control_2threads_p8_intel' [09:26, 05:56](1934 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:18, 06:00](1859 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:30, 03:49](1909 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:35, 03:13](1862 MB) +PASS -- TEST 'merra2_thompson_intel' [06:17, 03:19](1863 MB) +PASS -- TEST 'regional_control_intel' [07:53, 04:47](891 MB) +PASS -- TEST 'regional_restart_intel' [06:02, 02:53](878 MB) +PASS -- TEST 'regional_decomp_intel' [07:53, 05:01](896 MB) +PASS -- TEST 'regional_noquilt_intel' [06:51, 04:42](1216 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:59, 04:43](902 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:55, 04:46](883 MB) +PASS -- TEST 'regional_wofs_intel' [08:51, 05:51](1589 MB) + +PASS -- COMPILE 'rrfs_intel' [15:16, 12:53] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:33, 06:09](1006 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:06, 03:50](1165 MB) +PASS -- TEST 'rap_decomp_intel' [09:33, 06:23](1005 MB) +PASS -- TEST 'rap_2threads_intel' [14:14, 11:27](1088 MB) +PASS -- TEST 'rap_restart_intel' [06:19, 03:14](883 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:33, 06:06](1006 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:34, 06:22](1003 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:03, 04:36](882 MB) +PASS -- TEST 'hrrr_control_intel' [06:13, 03:13](999 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:13, 03:17](998 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [09:31, 05:42](1077 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:41, 01:45](836 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:34, 06:01](993 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:44, 08:12](1958 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:43, 07:52](1947 MB) + +PASS -- COMPILE 'csawmg_intel' [14:17, 11:46] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:56, 06:20](960 MB) +PASS -- TEST 'control_ras_intel' [05:43, 02:51](658 MB) + +PASS -- COMPILE 'wam_intel' [13:18, 11:39] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:44, 10:23](1649 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:15, 12:06] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:22, 03:05](1866 MB) +PASS -- TEST 'regional_control_faster_intel' [08:03, 04:33](894 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:25, 14:33] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:07, 02:07](1605 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:08, 02:05](1602 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:45, 02:51](807 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:44, 02:35](807 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:57, 04:43](1112 MB) +PASS -- TEST 'control_ras_debug_intel' [04:40, 02:39](812 MB) +PASS -- TEST 'control_diag_debug_intel' [06:11, 02:37](1663 MB) +PASS -- TEST 'control_debug_p8_intel' [05:54, 02:51](1894 MB) +PASS -- TEST 'regional_debug_intel' [18:56, 16:15](917 MB) +PASS -- TEST 'rap_control_debug_intel' [07:43, 04:40](1191 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:31, 04:33](1183 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:35, 04:38](1187 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:34, 04:45](1192 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:42, 04:38](1191 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:08, 04:54](1271 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:40, 04:46](1189 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:36, 04:48](1190 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:37, 04:46](1191 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:39, 04:45](1190 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:30, 04:45](1187 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:32, 04:39](1185 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:44, 07:44](1183 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:40, 04:36](1185 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:46, 04:47](1191 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:44, 04:40](1190 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:20, 07:58](1195 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:15, 07:09] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:07, 12:16](1690 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:13, 11:31] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:40, 03:35](1032 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:05, 05:08](876 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:09, 02:45](872 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [12:52, 09:41](926 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:14, 04:56](927 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:11, 02:54](867 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:54, 03:55](794 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:27, 01:36](768 MB) PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:19, 11:20] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:17, 01:49](1077 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:22, 00:57](1073 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [05:13, 01:08](964 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:19, 11:36] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:09, 03:39](902 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:28, 07:28] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:52, 04:35](1065 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:39, 04:31](1065 MB) -PASS -- TEST 'conus13km_debug_intel' [17:25, 12:59](1144 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:04, 12:55](828 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:43, 07:29](1142 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:57, 13:20](1227 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:18, 07:14] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:55, 04:38](1094 MB) - -PASS -- COMPILE 'hafsw_intel' [20:20, 17:44] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:33, 04:37](701 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:58, 05:08](1063 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:56, 06:30](755 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:10, 10:50](777 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:12, 11:43](791 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:25, 04:41](472 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:32, 05:44](484 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:13, 02:18](396 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:00, 06:14](458 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:17, 03:18](504 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:25, 03:06](506 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:24, 03:50](573 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:38, 01:14](429 MB) -PASS -- TEST 'gnv1_nested_intel' [08:28, 04:03](1702 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [11:13, 08:48] ( 1467 warnings 1469 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:28, 12:07](624 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [19:20, 17:28] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:58, 06:54](624 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:44, 07:04](680 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [21:30, 18:49] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:50, 05:21](671 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:19, 15:50] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:40, 05:41](735 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:51, 05:45](724 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:31, 16:15](895 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:25, 08:26] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:27, 02:29](756 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:49, 01:33](758 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:37, 02:22](655 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:51, 02:24](644 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:47, 02:24](646 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:41, 02:29](767 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:42, 02:29](767 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:39, 02:21](647 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:50, 05:44](698 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:43, 05:43](680 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:37, 02:28](768 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:02, 03:54](2032 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:54, 03:54](1970 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:15, 05:50] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:41, 05:15](740 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:24, 08:25] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:42, 02:29](768 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:30, 02:39] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:52, 01:11](309 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:49, 01:06](450 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:42, 00:43](451 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:38, 13:45] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:43, 03:59](1913 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:29, 12:35] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:36, 08:02](1899 MB) - -PASS -- COMPILE 'atml_intel' [17:28, 14:43] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:47, 07:09](1889 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:32, 07:05](1887 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:04, 03:56](1024 MB) - -PASS -- COMPILE 'atml_debug_intel' [12:20, 10:31] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:29, 06:17](1920 MB) - -PASS -- COMPILE 'atmw_intel' [16:29, 13:39] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:21, 02:16](1880 MB) - -PASS -- COMPILE 'atmaero_intel' [15:21, 12:51] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:04, 04:13](3126 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:52, 04:18](3007 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:19, 04:25](3016 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [10:23, 07:56] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [28:27, 21:58](4551 MB) - -PASS -- COMPILE 'atm_fbh_intel' [13:28, 11:24] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:46, 08:05](846 MB) +PASS -- TEST 'conus13km_control_intel' [05:14, 01:48](1079 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:16, 01:26](1077 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:13, 01:13](963 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:19, 11:43] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:02, 03:37](901 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:18, 07:35] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:27, 04:35](1062 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:37, 04:28](1064 MB) +PASS -- TEST 'conus13km_debug_intel' [16:21, 12:48](1150 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:29, 12:45](827 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [17:16, 13:46](1146 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:22, 12:59](1216 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:19, 07:21] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:37, 04:47](1092 MB) + +PASS -- COMPILE 'hafsw_intel' [19:21, 17:46] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:26, 04:32](697 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:02, 05:21](1064 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:52, 06:24](755 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:42, 10:34](780 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:52, 11:41](799 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:21, 04:45](471 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:29, 05:49](484 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:54, 02:32](391 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:51, 06:11](459 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:10, 03:15](507 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:14, 03:03](505 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:17, 03:46](576 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:40, 01:10](424 MB) +PASS -- TEST 'gnv1_nested_intel' [08:20, 03:55](1705 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [11:19, 08:51] ( 1467 warnings 1469 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:10, 12:00](620 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:21, 17:31] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:16, 06:53](623 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:22, 06:56](683 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [21:25, 18:56] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:06, 05:19](666 MB) + +PASS -- COMPILE 'hafs_all_intel' [18:25, 16:01] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:31, 05:38](735 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:33, 05:39](724 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:18, 16:16](896 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:20, 08:25] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:26, 02:29](770 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:29, 01:31](756 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:34, 02:20](646 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:42, 02:22](649 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:39, 02:23](647 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:35, 02:29](767 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:38, 02:29](757 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:35, 02:20](648 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:54, 05:38](695 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:11, 05:37](683 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:24, 02:28](769 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:29, 03:53](2034 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:33, 03:52](2033 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:12, 05:51] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:24, 05:16](753 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:18, 08:24] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:31, 02:27](766 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:19, 02:45] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:37, 01:06](312 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:28, 01:01](450 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:42](449 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:20, 13:51] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:31, 03:56](1908 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:20, 12:52] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:26, 08:02](1909 MB) + +PASS -- COMPILE 'atml_intel' [17:20, 14:40] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:45, 06:06](1882 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:42, 06:18](1884 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:00, 03:40](1035 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:17, 10:35] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:51, 06:10](1935 MB) + +PASS -- COMPILE 'atmw_intel' [16:19, 13:47] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:30, 02:18](1878 MB) + +PASS -- COMPILE 'atmaero_intel' [15:21, 12:59] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:35, 04:14](3126 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:41, 04:16](3006 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:20, 04:22](3017 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [10:17, 08:08] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [26:31, 21:47](4536 MB) + +PASS -- COMPILE 'atm_fbh_intel' [14:17, 11:34] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:43, 08:02](844 MB) SYNOPSIS: -Starting Date/Time: 20241213 12:45:33 -Ending Date/Time: 20241213 14:37:48 -Total Time: 01h:53m:20s +Starting Date/Time: 20241221 10:24:25 +Ending Date/Time: 20241221 12:15:10 +Total Time: 01h:51m:50s Compiles Completed: 42/42 -Tests Completed: 186/186 +Tests Completed: 184/186 +Failed Tests: +* TEST cpld_control_c192_p8_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /glade/derecho/scratch/jongkim/UFS-RT/pr-2538/tests/logs/log_derecho/run_cpld_control_c192_p8_intel.log +* TEST cpld_restart_c192_p8_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A + +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 DERECHO REGRESSION TESTING LOG==== +====START OF DERECHO REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +348b89d2a1b0728bea91816776db00f4bb8f6f24 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + c7ea491e6fd99e459af977bfd57fa14aa6a349eb CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-12-16) + ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) + 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) + b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) + 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) + 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) + dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) +-179cae1dd84401cf25d250bd9102e66560a9d328 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) + 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) + 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) + 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: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20241212 +COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_59508 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: nral0032 + +PASS -- COMPILE 's2swa_intel' [23:22, 21:38] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:26, 09:00](3813 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:49, 06:26](3618 MB) + +SYNOPSIS: +Starting Date/Time: 20241222 05:52:15 +Ending Date/Time: 20241222 06:39:52 +Total Time: 00h:47m:51s +Compiles Completed: 1/1 +Tests Completed: 2/2 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaeac5.log b/tests/logs/RegressionTests_gaeac5.log index f6097ed8bc..87d19d3ade 100644 --- a/tests/logs/RegressionTests_gaeac5.log +++ b/tests/logs/RegressionTests_gaeac5.log @@ -1,12 +1,12 @@ ====START OF GAEAC5 REGRESSION TESTING LOG==== UFSWM hash used in testing: -b1937471fe0ef4580b44cd3a01d2754110ec8c7d +527939eb224c50a4d9f66a6099cc2b8b03baf6c8 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 34d1eab8e432cedf8a81976e3b675b32f41b043f CDEPS-interface/CDEPS (cdeps0.4.17-304-g34d1eab) + c7ea491e6fd99e459af977bfd57fa14aa6a349eb CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-12-16) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) @@ -39,303 +39,303 @@ 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-20241212 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_1945712 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_3484141 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [15:13, 13:29] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:18, 11:04](3181 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:14, 17:30] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [15:44, 13:18](1907 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:50, 14:20](1938 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:47, 06:33](1072 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:44, 14:51](1885 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:14, 18:16] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [15:31, 13:16](1903 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:11, 08:19] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:48, 27:16](1923 MB) - -PASS -- COMPILE 's2swa_intel' [15:13, 13:34] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [17:15, 14:19](3215 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:13, 14:23](3214 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:57, 07:51](3136 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [17:12, 14:22](3232 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:56, 07:59](3160 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:07, 12:55](3460 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [16:09, 14:05](3208 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:09, 12:01](3158 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:13, 14:36](3215 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:39, 09:36](3490 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:00, 06:29](3600 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [24:13, 18:46](4256 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:57, 11:37](4354 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:06, 08:23](3195 MB) - -PASS -- COMPILE 's2sw_intel' [15:13, 13:28] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:54, 07:06](1907 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:57, 11:52](1973 MB) - -PASS -- COMPILE 's2swa_debug_intel' [09:11, 08:04] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [23:55, 21:32](3264 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:11, 08:09] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:46, 09:09](1945 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:13, 11:17] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:49, 04:46](1968 MB) - -PASS -- COMPILE 's2s_intel' [13:13, 11:24] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [07:36, 05:32](2878 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:37, 01:49](2880 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:32, 01:00](2296 MB) - -PASS -- COMPILE 's2swa_faster_intel' [15:11, 13:36] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:56, 14:17](3209 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 18:24] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [26:46, 24:34](1920 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:47, 12:23](1087 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [30:52, 28:20](1887 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:10, 06:52] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:48, 29:36](1943 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:12, 10:29] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:19, 04:11](656 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:28, 02:58](1551 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:27, 03:04](1567 MB) -PASS -- TEST 'control_latlon_intel' [04:24, 02:58](1561 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:34, 02:59](1556 MB) -PASS -- TEST 'control_c48_intel' [11:34, 09:56](1572 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:13, 05:41](696 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [11:31, 09:56](1575 MB) -PASS -- TEST 'control_c192_intel' [12:30, 10:46](1691 MB) -PASS -- TEST 'control_c384_intel' [25:49, 23:22](1966 MB) -PASS -- TEST 'control_c384gdas_intel' [17:15, 14:24](1176 MB) -PASS -- TEST 'control_stochy_intel' [03:19, 01:40](612 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:21, 00:59](418 MB) -PASS -- TEST 'control_lndp_intel' [03:18, 01:34](609 MB) -PASS -- TEST 'control_iovr4_intel' [05:07, 02:22](609 MB) -PASS -- TEST 'control_iovr5_intel' [05:06, 02:24](609 MB) -PASS -- TEST 'control_p8_intel' [05:40, 03:17](1842 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:22, 02:54](1850 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:40, 03:17](1840 MB) -PASS -- TEST 'control_restart_p8_intel' [03:37, 01:52](1003 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:40, 03:15](1844 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:37, 01:51](1009 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:36, 03:21](1845 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:51, 03:01](1925 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:28, 05:52](1841 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:36, 03:44](1894 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:34, 02:51](1855 MB) -PASS -- TEST 'merra2_thompson_intel' [05:41, 03:53](1847 MB) -PASS -- TEST 'regional_control_intel' [06:27, 04:38](877 MB) -PASS -- TEST 'regional_restart_intel' [05:01, 02:31](863 MB) -PASS -- TEST 'regional_decomp_intel' [06:26, 04:47](876 MB) -PASS -- TEST 'regional_2threads_intel' [04:25, 02:59](1002 MB) -PASS -- TEST 'regional_noquilt_intel' [06:26, 04:30](1208 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:32, 04:36](879 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:24, 04:46](876 MB) -PASS -- TEST 'regional_wofs_intel' [09:24, 06:30](1573 MB) - -PASS -- COMPILE 'rrfs_intel' [11:12, 10:07] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:36, 06:41](990 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:48, 03:56](1169 MB) -PASS -- TEST 'rap_decomp_intel' [08:36, 06:55](989 MB) -PASS -- TEST 'rap_2threads_intel' [07:34, 06:01](1069 MB) -PASS -- TEST 'rap_restart_intel' [05:32, 03:27](875 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:36, 06:31](985 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:36, 07:00](987 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:32, 04:58](877 MB) -PASS -- TEST 'hrrr_control_intel' [05:34, 03:32](984 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:34, 03:35](980 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:33, 03:06](1064 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:21, 01:54](816 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:37, 06:32](983 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:24, 08:27](1946 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:20, 08:19](1933 MB) - -PASS -- COMPILE 'csawmg_intel' [11:11, 09:26] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [08:29, 06:23](945 MB) -PASS -- TEST 'control_ras_intel' [05:19, 03:13](644 MB) - -PASS -- COMPILE 'wam_intel' [11:11, 09:36] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:49, 11:24](1640 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [11:11, 09:31] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:34, 02:44](1845 MB) -PASS -- TEST 'regional_control_faster_intel' [06:29, 04:24](879 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:11, 10:03] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:31, 02:16](1574 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:36, 02:12](1581 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:21, 03:02](785 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:21, 02:42](782 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:28, 04:11](1084 MB) -PASS -- TEST 'control_ras_debug_intel' [04:24, 02:46](790 MB) -PASS -- TEST 'control_diag_debug_intel' [05:09, 02:38](1635 MB) -PASS -- TEST 'control_debug_p8_intel' [05:05, 02:28](1872 MB) -PASS -- TEST 'regional_debug_intel' [17:27, 16:10](900 MB) -PASS -- TEST 'rap_control_debug_intel' [06:19, 04:55](1165 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:19, 05:04](1159 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:20, 04:55](1164 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:19, 04:53](1160 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:20, 04:51](1165 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:24, 05:04](1246 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:19, 05:20](1164 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:18, 05:20](1166 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:25, 05:24](1166 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:23, 05:09](1162 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:23, 05:06](1163 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:57, 04:50](1166 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:37, 07:46](1158 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:16, 04:52](1161 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:39, 05:00](1166 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:31, 04:51](1166 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:39, 08:53](1169 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:11, 06:05] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:48, 12:42](1668 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 09:42] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:54, 03:47](1040 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:30, 05:31](866 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:30, 03:00](864 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:28, 05:13](921 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:27, 02:41](917 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:27, 03:07](862 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:28, 04:12](777 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:23, 01:41](753 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 10:04] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:48, 01:55](1075 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:42, 00:59](1063 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:14](953 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:12, 10:12] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:33, 04:01](898 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:12, 07:46] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:44](1041 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:19, 04:41](1040 MB) -PASS -- TEST 'conus13km_debug_intel' [14:47, 13:10](1125 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:50, 13:14](803 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:43, 07:43](1116 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:46, 13:10](1192 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:11, 07:17] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 04:59](1067 MB) - -PASS -- COMPILE 'hafsw_intel' [15:11, 13:29] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:06, 04:59](712 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:25, 04:17](1074 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:12, 07:31](745 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:08, 11:12](780 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:13, 12:36](803 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:49, 05:21](472 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:10, 06:42](500 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:42, 02:41](399 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:42, 07:27](486 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:40, 03:43](509 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:43, 03:29](506 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:47, 04:34](586 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:29](424 MB) -PASS -- TEST 'gnv1_nested_intel' [07:13, 04:30](1697 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:11, 08:23] ( 1467 warnings 1469 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:47, 12:59](611 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [14:11, 13:05] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:53, 07:30](629 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:01, 07:36](809 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 12:02] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:03, 05:53](808 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:12, 11:08] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:01, 06:07](736 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:07, 06:09](716 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:09, 20:13](891 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [11:11, 09:41] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:26, 02:41](764 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:17, 01:34](752 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:28](642 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:28](643 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:30](643 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:35](763 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:35](765 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:27](645 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:50, 06:04](695 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:47, 06:12](675 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:36](764 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:20, 04:38](2034 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 04:39](2030 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 05:08] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 05:25](749 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [12:17, 10:53] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:36](764 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:10, 02:40] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:34, 01:24](316 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:30, 01:08](463 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:50](461 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [04:10, 02:54] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:36, 00:29](448 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:39, 00:16](250 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:11, 12:54] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:43, 03:32](1918 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:11, 09:59] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:41, 07:52](1900 MB) - -PASS -- COMPILE 'atml_intel' [12:11, 11:03] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:43, 06:35](1882 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:43, 06:22](1870 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:31, 04:22](1028 MB) - -PASS -- COMPILE 'atml_debug_intel' [10:11, 07:46] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:40, 06:06](1913 MB) - -PASS -- COMPILE 'atmw_intel' [12:12, 11:01] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:34, 01:47](1878 MB) - -PASS -- COMPILE 'atmaero_intel' [12:13, 10:22] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:39, 05:02](3098 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:41, 05:23](2989 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:36, 05:24](2998 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:10, 07:07] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [21:09, 18:12](4439 MB) - -PASS -- COMPILE 'atm_fbh_intel' [11:11, 09:36] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:28, 09:30](828 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [19:12, 17:46] -PASS -- TEST 'cpld_control_gfsv17_intelllvm' [15:50, 13:31](1901 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [08:10, 06:52] -PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [28:48, 27:08](1926 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [19:13, 17:29] -PASS -- TEST 'cpld_control_sfs_intelllvm' [15:32, 13:20](1894 MB) - -PASS -- COMPILE 's2swa_intelllvm' [15:11, 13:19] -PASS -- TEST 'cpld_control_p8_intelllvm' [16:59, 14:16](3216 MB) +PASS -- COMPILE 's2swa_32bit_intel' [16:11, 14:11] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:54, 12:00](3183 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:16, 18:54] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:14, 14:38](1899 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:07, 15:20](1954 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:02, 07:07](1072 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:52, 16:49](1884 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:15, 18:31] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:38, 14:30](1896 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:10, 08:12] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:49, 27:30](1920 MB) + +PASS -- COMPILE 's2swa_intel' [14:11, 13:09] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [18:24, 15:33](3214 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:37, 15:22](3213 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:59, 08:41](3134 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [18:36, 15:29](3237 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:02, 08:55](3161 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [20:32, 17:26](3441 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:52, 15:03](3206 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:33, 12:45](3155 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:37, 15:33](3211 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:29, 09:50](3491 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:01, 07:16](3597 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [23:13, 18:40](4278 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:54, 11:38](4362 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:05, 09:13](3191 MB) + +PASS -- COMPILE 's2sw_intel' [15:11, 13:36] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:48, 07:33](1912 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:25, 12:20](1971 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:10, 07:53] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [25:05, 22:22](3267 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:11, 08:01] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:49, 08:54](1940 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:11, 12:01] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:56, 05:04](1973 MB) + +PASS -- COMPILE 's2s_intel' [13:11, 12:06] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:47, 05:35](2877 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:40, 01:45](2880 MB) +PASS -- TEST 'cpld_restart_c48_intel' [05:05, 01:08](2296 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:13, 14:22] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [17:59, 15:29](3215 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:12, 19:04] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:09, 25:03](1920 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:22, 12:21](1104 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [31:07, 28:44](1887 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:15, 07:55] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:49, 29:54](1948 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:11, 11:50] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:29, 03:43](655 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:22, 03:06](1552 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:54, 03:28](1567 MB) +PASS -- TEST 'control_latlon_intel' [05:51, 03:22](1557 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:02, 03:28](1552 MB) +PASS -- TEST 'control_c48_intel' [12:08, 10:07](1570 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:43, 05:44](694 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [14:00, 11:15](1569 MB) +PASS -- TEST 'control_c192_intel' [13:57, 11:20](1686 MB) +PASS -- TEST 'control_c384_intel' [26:20, 23:42](1973 MB) +PASS -- TEST 'control_c384gdas_intel' [17:35, 14:34](1171 MB) +PASS -- TEST 'control_stochy_intel' [03:30, 01:46](611 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:24, 01:37](419 MB) +PASS -- TEST 'control_lndp_intel' [04:50, 01:41](608 MB) +PASS -- TEST 'control_iovr4_intel' [05:08, 02:27](609 MB) +PASS -- TEST 'control_iovr5_intel' [04:22, 02:34](606 MB) +PASS -- TEST 'control_p8_intel' [05:40, 03:37](1838 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:57, 03:19](1846 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:49, 03:44](1838 MB) +PASS -- TEST 'control_restart_p8_intel' [03:44, 01:56](1003 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:48, 03:35](1834 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:02, 01:55](1009 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:42, 03:49](1835 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:58, 03:30](1918 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:33, 06:18](1846 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:43, 04:14](1899 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:48, 03:14](1857 MB) +PASS -- TEST 'merra2_thompson_intel' [05:43, 03:31](1840 MB) +PASS -- TEST 'regional_control_intel' [06:26, 04:42](876 MB) +PASS -- TEST 'regional_restart_intel' [04:29, 02:36](863 MB) +PASS -- TEST 'regional_decomp_intel' [06:26, 04:49](876 MB) +PASS -- TEST 'regional_2threads_intel' [05:26, 03:39](1009 MB) +PASS -- TEST 'regional_noquilt_intel' [06:27, 04:36](1211 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:49, 04:44](883 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:41, 04:42](883 MB) +PASS -- TEST 'regional_wofs_intel' [08:37, 06:22](1573 MB) + +PASS -- COMPILE 'rrfs_intel' [13:11, 11:34] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:46, 06:51](985 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:00, 04:00](1171 MB) +PASS -- TEST 'rap_decomp_intel' [09:39, 07:10](988 MB) +PASS -- TEST 'rap_2threads_intel' [09:37, 07:18](1062 MB) +PASS -- TEST 'rap_restart_intel' [05:51, 03:31](873 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:38, 06:49](989 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:37, 07:05](988 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:46, 04:53](874 MB) +PASS -- TEST 'hrrr_control_intel' [05:38, 03:47](984 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:35, 03:49](982 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:34, 03:43](1054 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:27, 01:53](820 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:34, 06:39](981 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:22, 08:50](1943 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:24, 08:26](1933 MB) + +PASS -- COMPILE 'csawmg_intel' [12:11, 10:44] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:30, 06:34](944 MB) +PASS -- TEST 'control_ras_intel' [05:22, 03:15](643 MB) + +PASS -- COMPILE 'wam_intel' [12:11, 10:18] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:49, 11:47](1639 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:12, 11:50] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:40, 03:05](1844 MB) +PASS -- TEST 'regional_control_faster_intel' [06:29, 04:28](876 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:17, 11:17] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:33, 02:40](1582 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:38, 02:35](1581 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:22, 03:20](785 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:19, 02:48](785 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:28, 04:15](1088 MB) +PASS -- TEST 'control_ras_debug_intel' [04:21, 02:52](791 MB) +PASS -- TEST 'control_diag_debug_intel' [04:35, 02:56](1643 MB) +PASS -- TEST 'control_debug_p8_intel' [04:29, 02:50](1875 MB) +PASS -- TEST 'regional_debug_intel' [18:28, 16:31](891 MB) +PASS -- TEST 'rap_control_debug_intel' [06:21, 05:06](1164 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:21, 04:59](1163 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:20, 05:00](1164 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:23, 05:09](1158 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 05:03](1165 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:27, 05:14](1249 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:23, 05:10](1163 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:22, 05:03](1167 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:22, 05:07](1168 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 05:01](1164 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:18, 05:05](1161 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:25, 05:06](1166 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:22, 07:56](1161 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:23, 05:16](1162 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:27, 05:04](1162 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:26, 05:01](1167 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:42, 08:37](1168 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:21, 07:52] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:48, 13:13](1663 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:17, 10:56] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:02, 03:47](1041 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:36, 05:54](866 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:45, 03:19](868 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:14, 06:26](909 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:36, 03:15](911 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:38, 03:45](862 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:38, 04:09](778 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:59, 01:44](749 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:10, 10:03] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:14, 02:02](1072 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:30, 00:57](1053 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:52, 01:21](950 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:15, 10:31] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:11, 04:20](895 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:11, 07:23] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:25, 04:58](1042 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:57, 04:51](1039 MB) +PASS -- TEST 'conus13km_debug_intel' [16:02, 13:17](1132 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:03, 13:34](804 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:53, 10:47](1108 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:55, 13:31](1193 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:11, 07:55] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:25, 05:10](1064 MB) + +PASS -- COMPILE 'hafsw_intel' [16:11, 14:16] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:05, 05:10](719 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:31, 04:22](1080 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:19, 07:46](744 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:07, 11:26](771 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:26, 13:04](803 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:54, 05:26](469 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:14, 06:40](499 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:34, 02:46](397 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:56, 07:28](486 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:46, 03:45](506 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:49, 03:34](510 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:01, 04:40](586 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:58, 01:30](423 MB) +PASS -- TEST 'gnv1_nested_intel' [08:50, 05:19](1698 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:11, 08:59] ( 1467 warnings 1469 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:09, 12:50](612 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:12, 13:56] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:13, 07:31](629 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:10, 07:42](810 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:17, 12:47] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:13, 06:02](806 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:12, 11:59] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:06, 06:15](737 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:12, 06:19](718 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:11, 20:08](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [12:11, 10:22] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:21, 02:37](765 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:23, 01:36](752 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:21, 02:27](644 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:21, 02:28](642 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:43](644 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:20, 02:37](765 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:20, 02:38](764 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:20, 02:29](643 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:57, 06:12](695 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:58, 06:12](674 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:19, 02:36](764 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:23, 04:40](2031 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:22, 04:39](2031 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:10, 05:37] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:20, 05:25](749 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [12:11, 10:09] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:23, 02:36](764 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:55] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:41, 02:00](314 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:36, 01:26](462 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:37, 00:58](463 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 02:05] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:48, 00:36](449 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:58, 00:16](250 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 10:55] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:53, 04:34](1913 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:13, 10:32] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [10:50, 08:35](1900 MB) + +PASS -- COMPILE 'atml_intel' [13:11, 11:23] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:56, 07:23](1882 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:56, 07:14](1883 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:33, 04:45](1028 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:11, 07:48] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:56, 06:18](1904 MB) + +PASS -- COMPILE 'atmw_intel' [13:11, 11:30] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:46, 02:24](1878 MB) + +PASS -- COMPILE 'atmaero_intel' [13:11, 11:11] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:57, 06:16](3099 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:54, 06:46](2984 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:47, 06:50](2994 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:11, 07:15] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [21:38, 18:16](4444 MB) + +PASS -- COMPILE 'atm_fbh_intel' [11:13, 09:56] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:39, 09:31](832 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [21:12, 19:22] +PASS -- TEST 'cpld_control_gfsv17_intelllvm' [17:12, 14:45](1899 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [10:11, 09:09] +PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [30:50, 27:29](1924 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [21:11, 19:15] +PASS -- TEST 'cpld_control_sfs_intelllvm' [16:38, 14:18](1896 MB) + +PASS -- COMPILE 's2swa_intelllvm' [17:12, 15:30] +PASS -- TEST 'cpld_control_p8_intelllvm' [18:19, 15:47](3211 MB) SYNOPSIS: -Starting Date/Time: 20241218 08:20:58 -Ending Date/Time: 20241218 10:01:14 -Total Time: 01h:41m:12s +Starting Date/Time: 20241219 19:59:31 +Ending Date/Time: 20241219 21:47:24 +Total Time: 01h:48m:51s Compiles Completed: 47/47 Tests Completed: 193/193 diff --git a/tests/logs/RegressionTests_gaeac6.log b/tests/logs/RegressionTests_gaeac6.log index e228d116ad..45982f69d1 100644 --- a/tests/logs/RegressionTests_gaeac6.log +++ b/tests/logs/RegressionTests_gaeac6.log @@ -1,12 +1,12 @@ ====START OF GAEAC6 REGRESSION TESTING LOG==== UFSWM hash used in testing: -b1937471fe0ef4580b44cd3a01d2754110ec8c7d +527939eb224c50a4d9f66a6099cc2b8b03baf6c8 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 34d1eab8e432cedf8a81976e3b675b32f41b043f CDEPS-interface/CDEPS (cdeps0.4.17-304-g34d1eab) + c7ea491e6fd99e459af977bfd57fa14aa6a349eb CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-12-16) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) @@ -39,287 +39,287 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /gpfs/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20241212 -COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_3091871 +COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_2173325 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: bil-fire8 * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [10:23, 08:19] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:31, 07:06](2034 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [02:24, 00:57] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [11:31, 09:39](1914 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [12:30, 10:14](1961 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [06:29, 04:41](1087 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [13:30, 11:13](1905 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [45:20, 43:13] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [11:21, 09:22](1916 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:12, 03:53] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [19:30, 17:35](1953 MB) - -PASS -- COMPILE 's2swa_intel' [10:11, 08:44] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [20:35, 09:15](2065 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [23:40, 09:21](2065 MB) -PASS -- TEST 'cpld_restart_p8_intel' [18:32, 04:56](1627 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [20:33, 09:24](2084 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [18:31, 05:01](1457 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [16:31, 08:39](2257 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [20:32, 08:57](2066 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [18:31, 07:22](2016 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:33, 09:14](2066 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [25:55, 06:01](2439 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [16:51, 03:56](2667 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [32:42, 11:22](3587 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:40, 06:30](3435 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:29, 05:09](1919 MB) - -PASS -- COMPILE 's2sw_intel' [10:11, 08:20] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:26, 04:51](1935 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:27, 07:56](1859 MB) - -PASS -- COMPILE 's2swa_debug_intel' [33:12, 31:26] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [25:28, 14:15](2090 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:11, 03:49] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:28, 05:56](1957 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:15, 08:27] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:31, 03:14](1989 MB) - -PASS -- COMPILE 's2s_intel' [01:15, 59:59] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [06:19, 04:12](2876 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:24, 01:17](2877 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:20, 00:49](2296 MB) - -PASS -- COMPILE 's2swa_faster_intel' [32:19, 30:57] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:30, 09:04](2066 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [12:12, 11:06] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [33:28, 17:46](1930 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:27, 09:01](1103 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:28, 20:54](1913 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:12, 03:53] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:28, 19:59](1969 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [08:12, 06:39] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [15:20, 02:33](535 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [20:27, 02:15](1429 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [19:29, 02:08](1441 MB) -PASS -- TEST 'control_latlon_intel' [19:26, 02:04](1436 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [20:31, 02:12](1426 MB) -PASS -- TEST 'control_c48_intel' [25:28, 07:27](1571 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [19:21, 04:15](696 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [25:29, 07:27](1571 MB) -PASS -- TEST 'control_c192_intel' [26:33, 07:42](1701 MB) -PASS -- TEST 'control_c384_intel' [36:41, 16:35](1964 MB) -PASS -- TEST 'control_c384gdas_intel' [30:57, 10:00](1176 MB) -PASS -- TEST 'control_stochy_intel' [16:20, 01:10](486 MB) -PASS -- TEST 'control_stochy_restart_intel' [11:15, 00:42](290 MB) -PASS -- TEST 'control_lndp_intel' [17:20, 01:07](486 MB) -PASS -- TEST 'control_iovr4_intel' [19:20, 01:47](484 MB) -PASS -- TEST 'control_iovr5_intel' [17:20, 01:42](483 MB) -PASS -- TEST 'control_p8_intel' [20:31, 02:21](1727 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [21:28, 02:01](1720 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [21:25, 02:21](1728 MB) -PASS -- TEST 'control_restart_p8_intel' [11:24, 01:22](873 MB) -PASS -- TEST 'control_noqr_p8_intel' [20:21, 02:18](1727 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [07:21, 01:22](866 MB) -PASS -- TEST 'control_decomp_p8_intel' [20:20, 02:25](1722 MB) -PASS -- TEST 'control_2threads_p8_intel' [17:19, 02:13](1806 MB) -PASS -- TEST 'control_p8_lndp_intel' [17:20, 04:10](1724 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [14:21, 02:37](1777 MB) -PASS -- TEST 'control_p8_mynn_intel' [13:22, 02:13](1732 MB) -PASS -- TEST 'merra2_thompson_intel' [12:21, 02:14](1727 MB) -PASS -- TEST 'regional_control_intel' [10:20, 03:20](878 MB) -PASS -- TEST 'regional_restart_intel' [06:19, 01:51](861 MB) -PASS -- TEST 'regional_decomp_intel' [09:20, 03:32](875 MB) -PASS -- TEST 'regional_2threads_intel' [11:20, 02:09](1035 MB) -PASS -- TEST 'regional_noquilt_intel' [12:19, 03:16](1210 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [14:22, 03:22](881 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [13:18, 03:18](874 MB) -PASS -- TEST 'regional_wofs_intel' [14:20, 04:25](1574 MB) - -PASS -- COMPILE 'rrfs_intel' [08:12, 06:10] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [13:19, 04:47](865 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:33, 02:51](1159 MB) -PASS -- TEST 'rap_decomp_intel' [11:20, 05:00](869 MB) -PASS -- TEST 'rap_2threads_intel' [10:19, 04:22](948 MB) -PASS -- TEST 'rap_restart_intel' [04:20, 02:29](745 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:18, 04:48](866 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:20, 04:57](866 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:23, 03:33](744 MB) -PASS -- TEST 'hrrr_control_intel' [07:19, 02:34](860 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:19, 02:36](859 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:19, 02:18](1079 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:17, 01:24](693 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:19, 04:43](862 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:17, 06:07](1819 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:16, 05:54](1812 MB) - -PASS -- COMPILE 'csawmg_intel' [07:11, 06:06] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [07:17, 04:12](821 MB) -PASS -- TEST 'control_ras_intel' [04:14, 02:26](518 MB) - -PASS -- COMPILE 'wam_intel' [07:11, 05:45] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [09:25, 07:31](1517 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [07:11, 06:00] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:23, 01:54](1725 MB) -PASS -- TEST 'regional_control_faster_intel' [05:19, 03:11](874 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 05:47] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:21, 01:33](1455 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:22, 01:29](1457 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:14, 02:03](662 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:15, 01:54](660 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:18, 02:49](963 MB) -PASS -- TEST 'control_ras_debug_intel' [04:14, 01:54](665 MB) -PASS -- TEST 'control_diag_debug_intel' [03:20, 01:48](1517 MB) -PASS -- TEST 'control_debug_p8_intel' [04:20, 01:50](1749 MB) -PASS -- TEST 'regional_debug_intel' [13:22, 11:20](892 MB) -PASS -- TEST 'rap_control_debug_intel' [05:15, 03:20](1039 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:16, 03:19](1037 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:14, 03:26](1040 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:14, 03:21](1041 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:14, 03:19](1038 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:17, 03:33](1125 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:14, 03:26](1043 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:15, 03:27](1038 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:18, 03:20](1039 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:15, 03:20](1038 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:14, 03:17](1036 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:15, 03:21](1037 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:14, 05:22](1037 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:15, 03:20](1033 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:16, 03:21](1042 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:16, 03:20](1039 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:24, 05:40](1043 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:11, 03:13] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [10:21, 08:45](1545 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 05:52] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:30, 02:41](1036 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:18, 04:01](747 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:17, 02:19](747 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:19, 03:44](800 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:17, 01:59](939 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:17, 02:20](745 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:30, 03:01](649 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:16, 01:12](628 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:10, 05:39] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:25, 01:22](952 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:16, 00:44](1083 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:19, 00:52](824 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:10, 05:53] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:20, 02:44](771 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:10, 03:16] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:15, 03:17](919 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:14, 03:14](916 MB) -PASS -- TEST 'conus13km_debug_intel' [11:23, 08:59](1003 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [11:24, 09:03](672 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [07:22, 05:21](1135 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [11:22, 09:04](1072 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 03:01] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:14, 03:19](944 MB) - -PASS -- COMPILE 'hafsw_intel' [09:12, 07:19] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [05:41, 03:34](718 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:16, 02:53](1070 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:46, 04:44](779 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [11:41, 08:02](811 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [11:47, 08:41](831 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:29, 03:31](484 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:45, 04:23](486 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:23, 01:44](400 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:56, 04:42](458 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:26, 02:32](503 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:25, 02:22](503 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:29, 02:56](583 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:19, 00:59](429 MB) -PASS -- TEST 'gnv1_nested_intel' [04:41, 02:56](1698 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:10, 03:18] ( 1467 warnings 1469 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [10:28, 08:14](605 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [09:11, 07:21] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [07:33, 05:09](637 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [07:38, 05:13](797 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:18, 14:21] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [06:36, 03:50](794 MB) - -PASS -- COMPILE 'hafs_all_intel' [09:11, 07:34] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [06:42, 04:20](772 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:43, 04:22](751 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [12:35, 10:53](890 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:11, 05:07] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:13, 01:42](763 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:13, 01:02](751 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:13, 01:36](644 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:13, 01:39](640 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:13, 02:46](642 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:15, 01:41](764 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:13, 01:42](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:14, 01:45](644 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:27, 03:58](705 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:38, 04:02](684 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 01:56](763 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:17, 02:43](2031 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:14, 02:46](2029 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:22] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:13, 03:46](748 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:12, 04:55] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:13, 01:41](764 MB) +PASS -- COMPILE 's2swa_32bit_intel' [10:10, 08:49] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:40, 07:06](2030 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [02:14, 00:26] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [12:35, 10:30](1919 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [13:37, 11:13](1963 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [07:27, 05:08](1087 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [14:33, 12:16](1903 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [03:14, 01:21] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [24:26, 22:13](1917 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [26:11, 24:29] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [19:32, 17:44](1950 MB) + +PASS -- COMPILE 's2swa_intel' [10:10, 08:15] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:40, 09:12](2065 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:46, 09:12](2064 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:30, 04:56](1624 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:35, 09:12](2096 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:29, 05:00](1465 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [12:31, 10:34](2223 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:30, 08:59](2059 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:39, 08:03](2017 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:46, 09:11](2059 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [08:16, 05:57](2436 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [06:50, 04:14](2665 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [15:50, 11:16](3604 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [26:33, 22:42](3434 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:37, 05:09](1922 MB) + +PASS -- COMPILE 's2sw_intel' [09:10, 07:26] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:31, 04:49](1935 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:36, 07:55](1849 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:10, 03:49] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:39, 14:18](2087 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:10, 03:40] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:32, 05:55](1964 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [00:12, 58:15] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:34, 03:15](1991 MB) + +PASS -- COMPILE 's2s_intel' [09:10, 07:04] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [06:23, 04:11](2867 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:23, 01:17](2878 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:18, 00:45](2295 MB) + +PASS -- COMPILE 's2swa_faster_intel' [37:13, 35:11] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:38, 09:02](2067 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:11, 11:11] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:33, 17:43](1943 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:28, 08:59](1095 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:29, 20:55](1922 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 03:43] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [21:33, 19:44](1959 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [08:11, 06:33] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:17, 02:33](529 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:24, 02:06](1427 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:28, 02:10](1439 MB) +PASS -- TEST 'control_latlon_intel' [03:21, 02:02](1436 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:25, 02:05](1428 MB) +PASS -- TEST 'control_c48_intel' [09:23, 07:27](1569 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:19, 04:15](696 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [09:23, 07:28](1575 MB) +PASS -- TEST 'control_c192_intel' [09:27, 07:36](1695 MB) +PASS -- TEST 'control_c384_intel' [18:38, 16:29](1959 MB) +PASS -- TEST 'control_c384gdas_intel' [12:00, 09:53](1178 MB) +PASS -- TEST 'control_stochy_intel' [03:17, 01:11](488 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:14, 00:43](290 MB) +PASS -- TEST 'control_lndp_intel' [03:18, 01:09](492 MB) +PASS -- TEST 'control_iovr4_intel' [03:19, 01:41](483 MB) +PASS -- TEST 'control_iovr5_intel' [03:18, 01:42](483 MB) +PASS -- TEST 'control_p8_intel' [04:29, 02:20](1720 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:29, 02:01](1728 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:23, 02:20](1726 MB) +PASS -- TEST 'control_restart_p8_intel' [03:22, 01:20](876 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:21, 02:21](1712 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:21, 01:19](884 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:21, 02:23](1718 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:21, 02:45](1798 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:21, 04:10](1720 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:25, 02:35](1772 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:25, 02:01](1727 MB) +PASS -- TEST 'merra2_thompson_intel' [04:23, 02:14](1726 MB) +PASS -- TEST 'regional_control_intel' [05:17, 03:19](877 MB) +PASS -- TEST 'regional_restart_intel' [03:19, 01:52](859 MB) +PASS -- TEST 'regional_decomp_intel' [05:19, 03:29](885 MB) +PASS -- TEST 'regional_2threads_intel' [04:17, 02:31](1016 MB) +PASS -- TEST 'regional_noquilt_intel' [05:20, 03:18](1205 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:22, 03:21](861 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:17, 03:21](877 MB) +PASS -- TEST 'regional_wofs_intel' [06:18, 04:25](1572 MB) + +PASS -- COMPILE 'rrfs_intel' [07:11, 06:00] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [06:23, 04:51](865 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:32, 03:12](1161 MB) +PASS -- TEST 'rap_decomp_intel' [06:18, 04:59](870 MB) +PASS -- TEST 'rap_2threads_intel' [07:18, 05:48](945 MB) +PASS -- TEST 'rap_restart_intel' [04:19, 02:30](745 MB) +PASS -- TEST 'rap_sfcdiff_intel' [06:22, 04:46](866 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [06:18, 04:59](866 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:23, 03:35](744 MB) +PASS -- TEST 'hrrr_control_intel' [04:23, 02:34](860 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:18, 02:38](860 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:19, 02:57](933 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:17, 01:24](694 MB) +PASS -- TEST 'rrfs_v1beta_intel' [06:23, 04:43](861 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [07:16, 06:04](1822 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:16, 05:55](1814 MB) + +PASS -- COMPILE 'csawmg_intel' [54:12, 52:32] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [06:18, 04:12](821 MB) +PASS -- TEST 'control_ras_intel' [04:14, 02:12](521 MB) + +PASS -- COMPILE 'wam_intel' [07:11, 05:47] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [09:24, 07:31](1508 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [07:11, 05:56] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:26, 01:58](1725 MB) +PASS -- TEST 'regional_control_faster_intel' [05:19, 03:11](880 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 05:35] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:22, 01:32](1459 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:24, 01:29](1462 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:15, 02:07](660 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:15, 01:52](661 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:19, 02:50](964 MB) +PASS -- TEST 'control_ras_debug_intel' [03:15, 01:54](669 MB) +PASS -- TEST 'control_diag_debug_intel' [03:21, 01:50](1516 MB) +PASS -- TEST 'control_debug_p8_intel' [03:17, 01:45](1757 MB) +PASS -- TEST 'regional_debug_intel' [13:17, 11:13](893 MB) +PASS -- TEST 'rap_control_debug_intel' [05:15, 03:23](1044 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:16, 03:19](1036 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:15, 03:22](1042 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:15, 03:24](1042 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:15, 03:20](1039 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:18, 03:32](1125 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:15, 03:26](1042 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:15, 03:24](1040 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:16, 03:23](1040 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:17, 03:18](1037 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:15, 03:19](1039 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:15, 03:23](1039 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:15, 05:18](1037 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:15, 03:20](1037 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:15, 03:21](1042 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:14, 03:23](1039 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:22, 05:41](1046 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:10, 03:07] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [10:20, 08:45](1539 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 05:46] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:31, 02:41](1040 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:22, 04:05](747 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:20, 02:12](743 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:18, 04:56](793 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:18, 02:36](792 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:17, 02:19](739 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:19, 03:01](645 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:14, 01:13](633 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:11, 05:44] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:28, 01:23](953 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:18, 00:44](1072 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:19, 00:52](826 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:11, 06:20] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:24, 02:45](771 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 03:12] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:15, 03:15](919 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:15, 03:09](916 MB) +PASS -- TEST 'conus13km_debug_intel' [10:25, 08:51](1006 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [10:25, 09:01](672 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:22, 07:52](1127 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [10:21, 08:41](1069 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 03:12] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:16, 03:19](942 MB) + +PASS -- COMPILE 'hafsw_intel' [09:11, 07:37] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [05:44, 03:34](716 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:18, 02:54](1071 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:51, 04:47](778 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [09:46, 08:02](819 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [10:52, 08:35](833 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:36, 03:31](469 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:50, 11:28](488 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:27, 01:44](405 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:10, 04:37](456 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:25, 02:33](500 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:31, 02:22](504 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:29, 03:00](585 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:19, 00:59](428 MB) +PASS -- TEST 'gnv1_nested_intel' [04:50, 02:55](1709 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:11, 03:18] ( 1467 warnings 1469 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [10:34, 08:16](602 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [08:13, 06:34] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [07:37, 05:08](639 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [07:37, 05:08](798 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [09:11, 07:26] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:53, 03:51](795 MB) + +PASS -- COMPILE 'hafs_all_intel' [09:11, 07:26] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [06:42, 04:17](765 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:43, 04:23](750 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [12:33, 10:58](890 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:11, 04:47] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:13, 01:42](751 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:13, 01:03](752 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:13, 01:37](642 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:13, 01:37](649 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:13, 01:38](644 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:13, 01:41](763 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:13, 01:41](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:13, 01:35](642 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:28, 04:04](707 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:26, 04:00](685 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:12, 01:42](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:13, 02:44](2032 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:13, 02:45](2031 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 02:25] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:14, 03:46](749 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 05:01] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:14, 01:41](764 MB) PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:39] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:22, 01:00](315 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:19, 00:50](461 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:36](460 MB) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:21, 00:57](316 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:18, 00:48](461 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:17, 00:36](460 MB) -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:10, 06:28] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:24, 02:26](1783 MB) +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:10, 06:35] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:26, 02:26](1794 MB) PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:10, 06:04] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:22, 05:24](1788 MB) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:26, 06:03](1782 MB) -PASS -- COMPILE 'atml_intel' [08:10, 06:35] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:25, 04:13](1892 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [05:23, 03:55](1895 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:17, 02:11](1045 MB) +PASS -- COMPILE 'atml_intel' [08:10, 06:45] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:31, 03:50](1893 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [05:31, 04:00](1896 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:18, 02:07](1044 MB) -PASS -- COMPILE 'atml_debug_intel' [05:12, 04:00] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:23, 04:29](1922 MB) +PASS -- COMPILE 'atml_debug_intel' [05:10, 03:53] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:26, 04:04](1927 MB) -PASS -- COMPILE 'atmw_intel' [09:12, 07:16] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:21, 01:17](1764 MB) +PASS -- COMPILE 'atmw_intel' [09:10, 07:31] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:24, 01:17](1758 MB) -PASS -- COMPILE 'atmaero_intel' [07:10, 06:03] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:23, 02:58](1943 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:27, 03:51](1600 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:20, 03:19](1610 MB) +PASS -- COMPILE 'atmaero_intel' [07:10, 06:02] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:28, 02:44](1958 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:27, 03:15](1597 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:23, 03:19](1607 MB) -PASS -- COMPILE 'atmaq_debug_intel' [05:10, 03:18] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [15:49, 13:29](4442 MB) +PASS -- COMPILE 'atmaq_debug_intel' [04:10, 03:00] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [15:41, 13:43](4442 MB) -PASS -- COMPILE 'atm_fbh_intel' [07:10, 05:33] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [08:20, 06:02](833 MB) +PASS -- COMPILE 'atm_fbh_intel' [07:10, 05:40] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [07:18, 06:04](830 MB) SYNOPSIS: -Starting Date/Time: 20241217 15:25:48 -Ending Date/Time: 20241217 17:54:03 -Total Time: 02h:28m:37s +Starting Date/Time: 20241219 20:00:12 +Ending Date/Time: 20241219 22:30:16 +Total Time: 02h:30m:34s Compiles Completed: 42/42 Tests Completed: 187/187 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index a9755fd5e0..383e5b8d6c 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,11 +1,11 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -b1937471fe0ef4580b44cd3a01d2754110ec8c7d +527939eb224c50a4d9f66a6099cc2b8b03baf6c8 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 34d1eab8e432cedf8a81976e3b675b32f41b043f CDEPS-interface/CDEPS (cdeps0.4.17-304-g34d1eab) + c7ea491e6fd99e459af977bfd57fa14aa6a349eb CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-12-16) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) @@ -27,387 +27,387 @@ 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-20241212 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3124958 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3071368 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:10, 12:51] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:38, 11:44](3299 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 16:20] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [26:05, 19:40](1975 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:20, 20:39](2164 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:12, 08:13](1280 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:06, 23:10](1881 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:11, 15:47] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [24:44, 19:20](1964 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:10, 06:09] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:01, 26:37](1918 MB) - -PASS -- COMPILE 's2swa_intel' [14:10, 13:00] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [18:39, 15:24](3339 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:40, 14:07](3316 MB) -PASS -- TEST 'cpld_restart_p8_intel' [12:18, 07:26](3258 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:33, 14:05](3376 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:23, 07:26](3271 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [16:30, 13:12](3639 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [16:30, 14:06](3337 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:34, 11:33](3221 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:41, 14:04](3326 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:39, 10:22](3521 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:37, 06:19](3621 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [31:09, 15:58](4293 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:46, 09:04](4332 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:34, 07:17](3283 MB) - -PASS -- COMPILE 's2sw_intel' [14:11, 12:14] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [12:35, 09:23](1989 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:36, 10:57](2071 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:10, 06:07] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [25:17, 22:38](3407 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:10, 05:40] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:58, 09:58](2005 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:10, 11:15] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:04, 04:22](2022 MB) - -PASS -- COMPILE 's2s_intel' [13:10, 11:47] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:49, 07:53](3031 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:45, 02:25](3026 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:40, 01:27](2484 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:11, 16:42] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:40, 13:27](3340 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:12, 15:23] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:16, 27:56](2021 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:23, 13:48](1268 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:05, 33:08](1929 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:40] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:07, 29:46](1966 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:11, 10:56] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:23, 03:22](708 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:44, 03:24](1571 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:45, 03:19](1588 MB) -PASS -- TEST 'control_latlon_intel' [05:37, 03:11](1592 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:44, 03:14](1583 MB) -PASS -- TEST 'control_c48_intel' [13:48, 11:37](1724 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:26, 06:32](849 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [13:53, 11:39](1721 MB) -PASS -- TEST 'control_c192_intel' [14:06, 12:00](1767 MB) -PASS -- TEST 'control_c384_intel' [17:03, 13:43](1977 MB) -PASS -- TEST 'control_c384gdas_intel' [13:15, 08:09](1375 MB) -PASS -- TEST 'control_stochy_intel' [03:24, 01:39](659 MB) -PASS -- TEST 'control_stochy_restart_intel' [04:26, 01:02](496 MB) -PASS -- TEST 'control_lndp_intel' [03:23, 01:32](660 MB) -PASS -- TEST 'control_iovr4_intel' [04:26, 02:28](656 MB) -PASS -- TEST 'control_iovr5_intel' [04:27, 02:27](651 MB) -PASS -- TEST 'control_p8_intel' [09:53, 03:45](1883 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:54, 03:09](1892 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [08:54, 03:40](1872 MB) -PASS -- TEST 'control_restart_p8_intel' [04:51, 02:10](1128 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:51, 03:42](1865 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:04, 02:16](1175 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:46, 03:49](1840 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:46, 03:32](1962 MB) -PASS -- TEST 'control_p8_lndp_intel' [10:40, 06:45](1880 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:55, 04:14](1948 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:56, 03:20](1905 MB) -PASS -- TEST 'merra2_thompson_intel' [05:49, 03:26](1896 MB) -PASS -- TEST 'regional_control_intel' [09:32, 05:31](1125 MB) -PASS -- TEST 'regional_restart_intel' [05:36, 02:53](1101 MB) -PASS -- TEST 'regional_decomp_intel' [09:33, 05:43](1113 MB) -PASS -- TEST 'regional_2threads_intel' [05:40, 03:25](1110 MB) -PASS -- TEST 'regional_noquilt_intel' [07:35, 05:25](1413 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:39, 05:26](1121 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:33, 05:30](1128 MB) -PASS -- TEST 'regional_wofs_intel' [08:38, 06:57](1898 MB) - -PASS -- COMPILE 'rrfs_intel' [12:11, 10:25] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:41, 07:52](1109 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:05, 04:16](1270 MB) -PASS -- TEST 'rap_decomp_intel' [10:34, 08:14](1032 MB) -PASS -- TEST 'rap_2threads_intel' [09:36, 07:25](1188 MB) -PASS -- TEST 'rap_restart_intel' [05:42, 04:04](1093 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:41, 07:50](1104 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:41, 08:10](1031 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:43, 05:54](1128 MB) -PASS -- TEST 'hrrr_control_intel' [06:38, 04:13](1041 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:35, 04:09](1031 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:40, 03:42](1098 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:27, 02:09](994 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:46, 07:43](1109 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:28, 09:29](1973 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:27, 09:13](2067 MB) - -PASS -- COMPILE 'csawmg_intel' [11:12, 09:49] -PASS -- TEST 'control_csawmg_intel' [08:35, 06:12](1016 MB) -PASS -- TEST 'control_ras_intel' [06:22, 03:19](750 MB) - -PASS -- COMPILE 'wam_intel' [11:11, 10:02] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:49, 11:19](1656 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:13] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:48, 02:45](1866 MB) -PASS -- TEST 'regional_control_faster_intel' [07:35, 04:50](1117 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 07:32] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:51, 02:13](1621 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:54, 02:12](1613 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:26, 03:00](830 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:27, 02:46](825 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:46, 04:17](1139 MB) -PASS -- TEST 'control_ras_debug_intel' [04:27, 02:46](834 MB) -PASS -- TEST 'control_diag_debug_intel' [04:53, 02:46](1685 MB) -PASS -- TEST 'control_debug_p8_intel' [04:51, 02:40](1907 MB) -PASS -- TEST 'regional_debug_intel' [19:47, 17:54](1098 MB) -PASS -- TEST 'rap_control_debug_intel' [07:29, 05:07](1219 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:31, 04:54](1210 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:24, 04:55](1216 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:26, 05:01](1213 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:25, 04:59](1217 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:37, 05:13](1298 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:23, 05:14](1216 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:22, 05:20](1215 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:24, 05:07](1217 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 04:56](1214 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:24, 04:54](1220 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:23, 04:57](1213 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:22, 08:05](1210 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:21, 05:04](1214 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:25, 04:59](1215 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:22, 04:59](1210 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:40, 08:50](1222 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [10:11, 04:18] -PASS -- TEST 'control_csawmg_debug_gnu' [05:33, 02:23](716 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:11, 04:48] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [19:49, 13:58](1670 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 09:51] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:03, 03:58](1141 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:40, 06:33](1074 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:36, 03:26](990 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:33, 06:16](1107 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:33, 03:15](959 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:28, 03:37](921 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:40, 05:05](1031 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:28, 01:51](921 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 09:55] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:55, 02:00](1198 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:45, 00:49](1107 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:44, 01:21](1079 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 09:56] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:41, 04:19](984 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:57] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [09:25, 05:01](1095 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:23, 04:57](1088 MB) -PASS -- TEST 'conus13km_debug_intel' [18:51, 13:49](1231 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [18:50, 14:08](927 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:43, 08:03](1158 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:45, 14:00](1301 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:28] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:25, 05:04](1133 MB) - -PASS -- COMPILE 'hafsw_intel' [13:12, 11:44] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:21, 04:59](719 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:34, 05:53](1113 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:22, 07:03](832 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:19, 14:58](844 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:29, 18:43](872 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:15, 05:34](490 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:28, 06:50](509 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:43, 02:44](371 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:29, 07:23](480 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:46, 03:45](521 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:01, 03:31](519 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:53, 04:08](578 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:09](402 MB) -PASS -- TEST 'gnv1_nested_intel' [06:28, 04:01](1731 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:12, 05:01] ( 1462 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:53, 13:25](581 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:14, 11:33] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:00, 10:12](623 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:04, 10:16](727 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:10, 11:31] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:57, 08:09](685 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:10, 10:52] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:27, 06:32](823 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:17, 06:38](796 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:04, 16:25](1219 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [11:11, 06:37] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 02:49](1160 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:42](1100 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:48](1022 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:42](1032 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:41](1030 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 02:47](1161 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:47](1158 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:42](1022 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [14:26, 06:52](1071 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:25, 06:29](1044 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:15, 02:45](1146 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:20, 03:48](2463 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:23, 04:00](2447 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:10, 03:29] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:15](1088 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:12, 06:34] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:47](1174 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:17] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:29, 00:50](264 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:24, 00:52](325 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:32](327 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [06:10, 01:20] -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [03:33, 00:52](561 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:43, 00:18](462 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:11, 10:59] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:05, 03:42](1987 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:11, 10:25] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:02, 08:03](1995 MB) - -PASS -- COMPILE 'atml_intel' [13:11, 11:04] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:09, 04:21](1858 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:06, 04:25](1861 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:47, 02:22](1100 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:12, 05:47] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:03, 05:50](1880 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 10:58] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:48, 01:57](1913 MB) - -PASS -- COMPILE 'atmaero_intel' [12:11, 10:35] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:01, 04:09](3197 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:57, 05:05](3094 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:48, 05:03](3103 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:10, 04:47] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_fbh_intel' [11:11, 09:57] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:35, 11:33](1123 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:11, 06:51] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:56, 08:26](1056 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:10, 06:57] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [07:42, 05:06](987 MB) - -PASS -- COMPILE 'atm_gnu' [06:11, 04:35] -PASS -- TEST 'control_c48_gnu' [11:44, 09:33](1510 MB) -PASS -- TEST 'control_stochy_gnu' [05:25, 03:27](493 MB) -PASS -- TEST 'control_ras_gnu' [06:24, 04:56](499 MB) -PASS -- TEST 'control_p8_gnu' [07:57, 05:13](1455 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [08:07, 05:12](1449 MB) -PASS -- TEST 'control_flake_gnu' [12:28, 10:33](538 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:11, 04:26] -PASS -- TEST 'rap_control_gnu' [13:32, 11:34](811 MB) -PASS -- TEST 'rap_decomp_gnu' [14:33, 12:16](806 MB) -PASS -- TEST 'rap_2threads_gnu' [12:37, 10:50](924 MB) -PASS -- TEST 'rap_restart_gnu' [07:38, 05:52](579 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [13:35, 11:31](817 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [14:33, 12:12](810 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:37, 08:32](584 MB) -PASS -- TEST 'hrrr_control_gnu' [07:49, 06:02](837 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [08:33, 06:00](825 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [07:32, 05:29](909 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:35, 05:58](840 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:24, 03:04](559 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:26, 03:05](656 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [13:43, 11:17](803 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:11, 03:55] -PASS -- TEST 'control_csawmg_gnu' [11:37, 08:37](738 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:28] -PASS -- TEST 'control_diag_debug_gnu' [05:04, 01:39](1266 MB) -PASS -- TEST 'regional_debug_gnu' [13:38, 11:07](739 MB) -PASS -- TEST 'rap_control_debug_gnu' [05:23, 02:40](816 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [05:24, 02:39](812 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [05:24, 02:41](817 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:25, 02:40](820 MB) -PASS -- TEST 'rap_diag_debug_gnu' [05:44, 02:54](900 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:26, 04:12](814 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:20, 02:46](814 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:22, 02:45](810 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:20, 01:36](452 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:20, 01:46](450 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:38, 01:36](1437 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:31, 02:39](816 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:22, 02:43](816 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:39, 04:22](819 MB) - -PASS -- COMPILE 'wam_debug_gnu' [06:11, 02:27] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [08:11, 04:09] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:29, 09:51](698 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:28, 05:08](690 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:35, 09:03](744 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:39, 04:44](738 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:28, 05:21](693 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:34, 07:19](553 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [05:24, 02:39](533 MB) -PASS -- TEST 'conus13km_control_gnu' [06:04, 03:14](864 MB) -PASS -- TEST 'conus13km_2threads_gnu' [08:44, 05:51](874 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [04:42, 01:53](560 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [15:12, 09:22] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:37, 05:59](720 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [12:12, 06:29] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:21, 02:39](708 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:23, 02:34](706 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:53, 06:57](883 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:49, 06:56](576 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [09:40, 07:29](885 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:40, 06:46](954 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [12:11, 06:25] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:23, 02:35](734 MB) - -PASS -- COMPILE 's2swa_gnu' [22:11, 16:43] - -PASS -- COMPILE 's2s_gnu' [21:11, 15:51] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [21:16, 18:44](1497 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [08:11, 03:03] - -PASS -- COMPILE 's2sw_pdlib_gnu' [19:12, 15:51] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [34:03, 31:44](1465 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:10, 02:57] - -PASS -- COMPILE 'datm_cdeps_gnu' [17:11, 15:45] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:17, 03:04](700 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:10, 13:04] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:29, 11:44](3322 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 16:13] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:05, 19:47](1986 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:22, 20:50](2178 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:17, 08:15](1278 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:11, 23:31](1878 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:11, 16:13] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:45, 19:22](1968 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:10, 05:59] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [30:09, 27:34](1932 MB) + +PASS -- COMPILE 's2swa_intel' [14:10, 13:04] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [18:28, 15:58](3351 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:31, 14:07](3345 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:21, 07:41](3239 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [17:21, 14:30](3344 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:27, 07:24](3275 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [18:19, 15:48](3538 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:21, 14:16](3317 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:25, 11:51](3221 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:29, 14:19](3357 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:16, 10:33](3518 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:58, 06:31](3619 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [26:20, 16:51](4285 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:16, 09:11](4393 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:45, 07:31](3308 MB) + +PASS -- COMPILE 's2sw_intel' [14:10, 12:18] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [12:16, 09:13](1994 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:26, 11:13](2058 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:10, 05:57] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [25:19, 22:46](3409 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:10, 05:45] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:12, 09:52](2007 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:10, 11:22] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:18, 04:22](2041 MB) + +PASS -- COMPILE 's2s_intel' [13:11, 11:28] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:53, 07:51](3040 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:49, 02:23](3026 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:42, 01:32](2485 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:12, 18:04] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:12, 13:23](3338 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:12, 15:50] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:31, 28:06](2010 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:25, 13:49](1282 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [36:15, 33:14](1934 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:39] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:20, 29:54](1977 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:11, 11:19] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:24, 03:25](701 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:44, 03:12](1590 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:45, 03:17](1581 MB) +PASS -- TEST 'control_latlon_intel' [05:36, 03:22](1584 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:44, 03:18](1588 MB) +PASS -- TEST 'control_c48_intel' [13:41, 11:39](1726 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:29, 06:31](849 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [13:45, 11:36](1732 MB) +PASS -- TEST 'control_c192_intel' [14:09, 12:05](1755 MB) +PASS -- TEST 'control_c384_intel' [16:56, 13:39](1985 MB) +PASS -- TEST 'control_c384gdas_intel' [13:12, 08:07](1373 MB) +PASS -- TEST 'control_stochy_intel' [03:21, 01:38](658 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:24, 00:58](500 MB) +PASS -- TEST 'control_lndp_intel' [03:20, 01:33](661 MB) +PASS -- TEST 'control_iovr4_intel' [04:22, 02:31](659 MB) +PASS -- TEST 'control_iovr5_intel' [04:22, 02:29](657 MB) +PASS -- TEST 'control_p8_intel' [05:54, 03:42](1881 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:55, 03:08](1888 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:47, 03:38](1873 MB) +PASS -- TEST 'control_restart_p8_intel' [03:45, 02:04](1130 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:48, 03:38](1863 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:00, 02:01](1171 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:45, 03:43](1863 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:44, 04:11](1945 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:41, 06:34](1878 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:50, 04:10](1953 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:52, 03:05](1896 MB) +PASS -- TEST 'merra2_thompson_intel' [05:48, 03:25](1865 MB) +PASS -- TEST 'regional_control_intel' [07:34, 05:18](1132 MB) +PASS -- TEST 'regional_restart_intel' [04:48, 02:52](1099 MB) +PASS -- TEST 'regional_decomp_intel' [07:34, 05:44](1117 MB) +PASS -- TEST 'regional_2threads_intel' [06:39, 04:00](1063 MB) +PASS -- TEST 'regional_noquilt_intel' [07:35, 05:22](1427 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:38, 05:20](1123 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:34, 05:24](1120 MB) +PASS -- TEST 'regional_wofs_intel' [08:36, 07:05](1899 MB) + +PASS -- COMPILE 'rrfs_intel' [12:12, 10:30] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:46, 07:52](1114 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:06, 04:12](1264 MB) +PASS -- TEST 'rap_decomp_intel' [10:40, 08:13](1038 MB) +PASS -- TEST 'rap_2threads_intel' [10:37, 08:46](1092 MB) +PASS -- TEST 'rap_restart_intel' [06:48, 04:06](1105 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:42, 07:49](1110 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:36, 08:10](1040 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:48, 05:54](1126 MB) +PASS -- TEST 'hrrr_control_intel' [05:43, 04:02](1036 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:40, 04:09](1026 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:36, 04:20](1089 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:26, 02:14](997 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:47, 07:45](1095 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:29, 09:40](1974 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:35, 09:17](2054 MB) + +PASS -- COMPILE 'csawmg_intel' [12:10, 10:13] +PASS -- TEST 'control_csawmg_intel' [08:38, 06:12](1021 MB) +PASS -- TEST 'control_ras_intel' [05:22, 03:17](744 MB) + +PASS -- COMPILE 'wam_intel' [12:10, 10:30] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:53, 11:21](1660 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:40] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:59, 02:51](1887 MB) +PASS -- TEST 'regional_control_faster_intel' [06:40, 04:55](1104 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 08:09] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:52, 02:12](1613 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:54, 02:11](1608 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:25, 03:05](823 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:25, 02:51](832 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:46, 04:20](1135 MB) +PASS -- TEST 'control_ras_debug_intel' [04:27, 02:52](835 MB) +PASS -- TEST 'control_diag_debug_intel' [04:55, 02:48](1696 MB) +PASS -- TEST 'control_debug_p8_intel' [04:52, 02:40](1900 MB) +PASS -- TEST 'regional_debug_intel' [19:42, 17:37](1110 MB) +PASS -- TEST 'rap_control_debug_intel' [06:27, 05:02](1208 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:26, 04:57](1213 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:22, 05:02](1216 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:22, 04:56](1216 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:23, 05:04](1212 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:48, 05:23](1291 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:24, 05:11](1219 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:24, 05:19](1205 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:26, 05:05](1221 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:23, 04:58](1210 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:24, 04:56](1218 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 05:03](1211 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:22, 08:06](1214 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:25, 04:56](1214 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:25, 04:55](1216 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:24, 05:03](1209 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:43, 08:43](1223 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:10, 04:21] +PASS -- TEST 'control_csawmg_debug_gnu' [05:00, 02:26](723 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:10, 04:42] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:06, 13:40](1682 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:12, 10:10] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:04, 03:59](1139 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:38, 06:34](1058 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:40, 03:27](991 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:33, 07:29](1003 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:35, 03:50](971 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:32, 03:38](930 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:39, 04:55](1038 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:29, 01:52](930 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:11, 10:10] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:59, 02:02](1188 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:41, 01:00](1119 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:14](1092 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:12, 10:04] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:41, 04:16](982 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:10, 04:34] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:22, 05:04](1093 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:23, 04:57](1086 MB) +PASS -- TEST 'conus13km_debug_intel' [16:03, 14:02](1230 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:49, 14:31](925 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [15:43, 12:19](1166 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:43, 14:12](1303 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:38] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:24, 05:04](1138 MB) + +PASS -- COMPILE 'hafsw_intel' [13:12, 11:51] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:19, 05:04](717 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:29, 06:03](1115 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:24, 07:08](815 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [19:23, 15:07](851 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:48, 18:41](874 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:07, 05:33](493 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:24, 06:50](505 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:45, 02:44](369 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:55, 07:27](479 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:45, 03:49](523 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:58, 03:49](519 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:51, 04:13](579 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:12](401 MB) +PASS -- TEST 'gnv1_nested_intel' [07:34, 04:08](1713 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:11, 05:11] ( 1462 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:51, 13:09](589 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:31] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:59, 10:16](626 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:02, 10:19](699 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 11:19] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:44, 08:16](716 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:11, 10:58] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:19, 06:41](824 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:17, 06:43](792 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:57, 16:29](1212 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:28] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 02:51](1152 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:21, 01:41](1107 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:42](1043 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:39](1030 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:43](1026 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 02:44](1155 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:43](1153 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:20, 02:38](1029 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:34, 06:30](1069 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:21, 06:21](1045 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:48](1160 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 04:02](2456 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:19, 04:01](2515 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:35] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:28](1085 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:31] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:46](1156 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:09] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:30, 00:44](262 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:50](328 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:31](323 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:18] +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:32, 00:34](563 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:35, 00:17](464 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 10:46] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:20, 03:49](1947 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 10:26] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:06, 08:08](1987 MB) + +PASS -- COMPILE 'atml_intel' [12:11, 10:49] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:06, 04:22](1858 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:59, 04:21](1866 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:42, 02:53](1088 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:11, 05:51] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:02, 05:50](1869 MB) + +PASS -- COMPILE 'atmw_intel' [13:11, 11:08] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:50, 01:56](1920 MB) + +PASS -- COMPILE 'atmaero_intel' [12:12, 10:42] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:55, 04:13](3184 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:07, 05:14](3090 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:46, 04:58](3103 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:47] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_fbh_intel' [11:11, 09:58] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:28, 11:47](1117 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:11, 06:43] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:39, 08:31](1050 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:11, 06:54] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:45, 04:56](991 MB) + +PASS -- COMPILE 'atm_gnu' [06:11, 04:32] +PASS -- TEST 'control_c48_gnu' [11:39, 09:34](1516 MB) +PASS -- TEST 'control_stochy_gnu' [05:24, 03:30](493 MB) +PASS -- TEST 'control_ras_gnu' [06:27, 05:00](498 MB) +PASS -- TEST 'control_p8_gnu' [08:06, 05:16](1458 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [07:58, 05:09](1434 MB) +PASS -- TEST 'control_flake_gnu' [12:24, 10:41](538 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:11, 04:18] +PASS -- TEST 'rap_control_gnu' [13:42, 11:30](812 MB) +PASS -- TEST 'rap_decomp_gnu' [13:32, 11:38](809 MB) +PASS -- TEST 'rap_2threads_gnu' [18:37, 16:55](912 MB) +PASS -- TEST 'rap_restart_gnu' [08:40, 05:52](576 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:36, 11:25](808 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:32, 11:41](808 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:50, 08:35](581 MB) +PASS -- TEST 'hrrr_control_gnu' [07:38, 05:55](812 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:36, 05:56](826 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [10:34, 08:24](902 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:31, 05:57](838 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [05:25, 03:03](557 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:25, 02:58](650 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [13:40, 11:18](808 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 03:56] +PASS -- TEST 'control_csawmg_gnu' [10:33, 08:38](737 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:36] +PASS -- TEST 'control_diag_debug_gnu' [03:45, 01:52](1268 MB) +PASS -- TEST 'regional_debug_gnu' [12:39, 10:27](748 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:22, 02:43](814 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:24, 02:41](811 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:20, 02:47](814 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [05:21, 03:10](821 MB) +PASS -- TEST 'rap_diag_debug_gnu' [05:39, 03:23](903 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:23, 04:15](810 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:20, 02:38](819 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:20, 02:40](814 MB) +PASS -- TEST 'control_ras_debug_gnu' [04:19, 01:36](453 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:20, 01:44](447 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:38, 01:35](1437 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:22, 02:38](816 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:20, 02:39](821 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:35, 04:27](819 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:10, 02:29] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 04:12] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [12:36, 09:52](700 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:33, 05:11](698 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [17:32, 15:03](738 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [09:27, 07:47](734 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:27, 05:16](693 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:37, 07:39](552 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:25, 02:37](534 MB) +PASS -- TEST 'conus13km_control_gnu' [05:54, 03:13](866 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:44, 01:34](873 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:44, 01:48](549 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:12, 09:30] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:37, 05:54](722 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:10, 06:36] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:22, 02:34](710 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:22, 02:37](710 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:48, 07:05](884 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:50, 06:59](573 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [07:38, 05:45](889 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:37, 06:53](953 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:35] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:21, 02:36](728 MB) + +PASS -- COMPILE 's2swa_gnu' [18:11, 16:23] + +PASS -- COMPILE 's2s_gnu' [17:11, 16:03] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [21:08, 18:53](1507 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:10, 03:06] + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:11, 16:21] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [33:13, 30:47](1458 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 03:00] + +PASS -- COMPILE 'datm_cdeps_gnu' [17:11, 15:39] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:18, 03:05](693 MB) SYNOPSIS: -Starting Date/Time: 20241217 16:48:26 -Ending Date/Time: 20241217 18:52:39 -Total Time: 02h:04m:33s +Starting Date/Time: 20241220 00:57:41 +Ending Date/Time: 20241220 02:59:22 +Total Time: 02h:01m:56s Compiles Completed: 61/61 Tests Completed: 249/249 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 5f63170f1e..a9ffbca476 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,15 +1,15 @@ -====START OF HERCULES REGRESSION TESTING LOG==== +====START OF hercules REGRESSION TESTING LOG==== UFSWM hash used in testing: -19498cc1894245fe8afe365dd87dbe5d8862b35f +527939eb224c50a4d9f66a6099cc2b8b03baf6c8 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 51f8cd20c15fe39ef1168d59d5077812b6508544 CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-10) + c7ea491e6fd99e459af977bfd57fa14aa6a349eb CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-12-16) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - 507ca48f4586fbeb7b0e23e5cfa9321bc3f02a1d CMEPS-interface/CMEPS (cmeps_v0.4.1-3103-g507ca48f) + b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) @@ -31,7 +31,6 @@ Submodule hashes used in testing: 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). @@ -39,387 +38,452 @@ 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-20241212 -COMPARISON DIRECTORY: /work2/noaa/epic/nandoam/stmp/hercules/nandoam/FV3_RT/rt_2796377 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/jongkim/FV3_RT/rt_626753 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [14:11, 12:54] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:58, 13:47](2137 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 18:24] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [29:10, 18:04](2006 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:31, 19:42](2304 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:27, 07:55](1327 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [31:08, 19:28](1904 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:11, 15:46] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [31:38, 17:57](1975 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 06:40] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:13, 24:51](1970 MB) - -PASS -- COMPILE 's2swa_intel' [14:11, 12:14] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [31:19, 16:25](2208 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [32:09, 15:14](2196 MB) -PASS -- TEST 'cpld_restart_p8_intel' [16:16, 08:52](1991 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [30:06, 15:38](2226 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:13, 07:51](1742 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [18:46, 16:40](2564 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [30:06, 15:20](2191 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:56, 12:01](2102 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [32:10, 15:25](2205 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [18:41, 15:46](2986 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:12, 06:33](2902 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [28:44, 18:13](3847 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:14, 10:09](3681 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [14:56, 07:58](2114 MB) - -PASS -- COMPILE 's2sw_intel' [12:11, 11:05] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:51, 13:53](2015 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:56, 10:32](2119 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:26] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [23:06, 19:40](2243 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:11, 06:15] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:55, 09:41](2047 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:11, 11:13] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:06, 04:34](2063 MB) - -PASS -- COMPILE 's2s_intel' [12:12, 10:59] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:41, 06:10](3033 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:43, 01:56](3024 MB) -PASS -- TEST 'cpld_restart_c48_intel' [17:41, 02:18](2473 MB) - -PASS -- COMPILE 's2swa_faster_intel' [15:11, 12:19] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [24:07, 15:29](2208 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 18:05] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:04, 25:40](2065 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:09, 13:16](1427 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:51, 26:31](1996 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:11, 05:33] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [43:53, 28:26](1994 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:11, 09:25] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [12:21, 04:22](723 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [10:30, 02:56](1580 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [10:35, 02:51](1607 MB) -PASS -- TEST 'control_latlon_intel' [10:28, 02:45](1581 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:35, 02:55](1596 MB) -PASS -- TEST 'control_c48_intel' [17:32, 10:18](1706 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [13:26, 05:55](830 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [17:32, 10:19](1702 MB) -PASS -- TEST 'control_c192_intel' [17:43, 10:20](1779 MB) -PASS -- TEST 'control_c384_intel' [22:23, 14:52](2010 MB) -PASS -- TEST 'control_c384gdas_intel' [13:45, 07:31](1497 MB) -PASS -- TEST 'control_stochy_intel' [05:17, 01:31](673 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:23, 00:59](540 MB) -PASS -- TEST 'control_lndp_intel' [04:16, 01:22](665 MB) -PASS -- TEST 'control_iovr4_intel' [04:17, 02:09](655 MB) -PASS -- TEST 'control_iovr5_intel' [04:19, 02:17](657 MB) -PASS -- TEST 'control_p8_intel' [05:50, 03:14](1883 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:53, 04:10](1904 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:50, 04:11](1881 MB) -PASS -- TEST 'control_restart_p8_intel' [03:49, 01:51](1154 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:45, 04:26](1867 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:56, 01:50](1202 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:44, 04:16](1875 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:46, 04:31](1952 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:27, 06:41](1881 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:49, 04:21](1967 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:51, 03:52](1904 MB) -PASS -- TEST 'merra2_thompson_intel' [05:56, 03:11](1904 MB) -PASS -- TEST 'regional_control_intel' [09:31, 05:57](1221 MB) -PASS -- TEST 'regional_restart_intel' [07:29, 03:31](1182 MB) -PASS -- TEST 'regional_decomp_intel' [08:22, 05:47](1209 MB) -PASS -- TEST 'regional_2threads_intel' [04:31, 02:59](1182 MB) -PASS -- TEST 'regional_noquilt_intel' [06:29, 04:33](1547 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:30, 04:35](1226 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:24, 04:45](1234 MB) -PASS -- TEST 'regional_wofs_intel' [07:28, 06:01](2081 MB) - -PASS -- COMPILE 'rrfs_intel' [11:11, 09:30] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:47, 06:48](1202 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:47, 03:29](1382 MB) -PASS -- TEST 'rap_decomp_intel' [09:38, 07:14](1138 MB) -PASS -- TEST 'rap_2threads_intel' [08:42, 06:32](1368 MB) -PASS -- TEST 'rap_restart_intel' [06:40, 03:33](1153 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:38, 06:44](1208 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:36, 06:57](1153 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:04, 05:10](1203 MB) -PASS -- TEST 'hrrr_control_intel' [05:49, 03:26](1086 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:33, 03:36](1043 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:37, 03:13](1116 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:32, 01:59](1017 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:55, 06:39](1202 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [15:20, 09:36](1998 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:19, 09:17](2196 MB) - -PASS -- COMPILE 'csawmg_intel' [10:11, 09:04] -PASS -- TEST 'control_csawmg_intel' [13:29, 06:56](1054 MB) -PASS -- TEST 'control_ras_intel' [09:17, 02:54](822 MB) - -PASS -- COMPILE 'wam_intel' [11:10, 09:31] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [16:34, 10:11](1660 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [11:10, 09:26] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [08:54, 03:17](1906 MB) -PASS -- TEST 'regional_control_faster_intel' [10:27, 05:19](1224 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [12:11, 08:00] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:28, 02:02](1619 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:32, 02:01](1632 MB) -PASS -- TEST 'control_stochy_debug_intel' [08:16, 02:34](844 MB) -PASS -- TEST 'control_lndp_debug_intel' [08:17, 02:33](841 MB) -PASS -- TEST 'control_csawmg_debug_intel' [09:23, 04:52](1144 MB) -PASS -- TEST 'control_ras_debug_intel' [06:16, 02:33](835 MB) -PASS -- TEST 'control_diag_debug_intel' [05:33, 02:27](1693 MB) -PASS -- TEST 'control_debug_p8_intel' [04:31, 02:50](1908 MB) -PASS -- TEST 'regional_debug_intel' [17:31, 15:23](1146 MB) -PASS -- TEST 'rap_control_debug_intel' [06:16, 04:23](1217 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:23, 04:13](1218 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:18, 04:18](1230 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:17, 04:17](1230 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:17, 04:23](1224 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:27, 04:37](1319 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:18, 04:41](1232 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:17, 04:24](1240 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:17, 04:18](1237 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:17, 07:52](1236 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:17, 04:28](1227 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:19, 04:20](1234 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:17, 06:59](1219 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:17, 04:20](1221 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:17, 04:26](1223 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:17, 04:18](1234 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:51, 07:15](1213 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [08:11, 04:54] -PASS -- TEST 'control_csawmg_debug_gnu' [03:33, 02:06](1039 MB) - -PASS -- COMPILE 'wam_debug_intel' [12:11, 06:43] ( 837 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:11, 11:04] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:53, 03:12](1254 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:48, 05:37](1162 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:53, 02:53](1040 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:31, 05:15](1290 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:35, 02:46](1033 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:36, 03:04](1021 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [15:48, 04:16](1089 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [13:27, 01:36](950 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:11, 13:12] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:36, 01:39](1301 MB) -PASS -- TEST 'conus13km_2threads_intel' [11:27, 00:52](1193 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [11:27, 01:04](1145 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:11, 13:27] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:27, 03:55](1093 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:11, 07:05] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:34](1105 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:18, 04:27](1102 MB) -PASS -- TEST 'conus13km_debug_intel' [13:34, 12:02](1341 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [23:33, 12:23](999 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:26, 07:46](1242 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [22:27, 12:04](1396 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:11, 04:34] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [13:18, 04:23](1166 MB) - -PASS -- COMPILE 'hafsw_intel' [20:11, 14:47] ( 1 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:06, 05:39](840 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:23, 06:05](1253 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [19:13, 07:38](919 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [21:11, 14:42](945 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:12, 17:04](976 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [19:53, 07:11](602 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:15, 09:25](610 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:42, 03:41](435 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:00, 10:05](543 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [15:45, 04:57](600 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [15:43, 04:45](599 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [15:45, 05:14](655 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [12:24, 01:45](454 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [14:10, 08:21] ( 1462 warnings 1490 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [21:43, 11:51](634 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:10, 11:05] ( 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [27:50, 18:48](733 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [31:52, 18:46](799 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:10, 11:18] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [23:25, 11:55](814 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:10, 13:13] ( 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [18:10, 05:44](926 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [19:03, 05:52](907 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [27:43, 16:33](1345 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:11, 11:41] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [13:16, 02:12](1133 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:21](1110 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [12:15, 02:06](1014 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [11:14, 02:07](1024 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [09:15, 02:08](1020 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [09:15, 02:09](1152 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [09:15, 02:12](1148 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [09:15, 02:06](1024 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:57, 04:57](1170 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:50, 04:56](1157 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:15, 02:10](1148 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:15, 03:01](2458 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:15, 03:03](2418 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:10, 05:41] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:16, 05:10](1085 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:10, 06:06] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [06:15, 02:10](1136 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:10, 02:24] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:27, 00:57](340 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:20, 00:57](576 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [20:25, 00:31](574 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:10, 09:01] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [17:47, 04:26](2016 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:10, 09:01] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [17:43, 08:46](2030 MB) - -PASS -- COMPILE 'atml_intel' [15:11, 13:26] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [16:02, 06:46](1898 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [24:53, 06:35](1889 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:32, 03:16](1153 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:10, 07:00] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [25:52, 08:31](1926 MB) - -PASS -- COMPILE 'atmw_intel' [16:11, 14:18] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [19:49, 02:55](1939 MB) - -PASS -- COMPILE 'atmaero_intel' [14:10, 12:41] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [21:44, 05:09](2010 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [21:44, 04:32](1778 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [21:39, 04:34](1791 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [11:10, 09:04] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [34:28, 17:13](4534 MB) - -PASS -- COMPILE 'atm_fbh_intel' [18:11, 12:30] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [26:25, 09:56](1106 MB) - -PASS -- COMPILE 'datm_cdeps_intelllvm' [28:11, 22:48] -PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [18:16, 02:18](1135 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [07:10, 03:55] -PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [22:15, 06:05](1077 MB) - -PASS -- COMPILE 'atm_gnu' [09:11, 05:31] -PASS -- TEST 'control_c48_gnu' [23:40, 07:48](1544 MB) -PASS -- TEST 'control_stochy_gnu' [17:25, 02:24](721 MB) -PASS -- TEST 'control_ras_gnu' [17:21, 03:52](732 MB) -PASS -- TEST 'control_p8_gnu' [24:52, 05:26](1718 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [25:45, 05:19](1719 MB) -PASS -- TEST 'control_flake_gnu' [23:22, 04:44](791 MB) - -PASS -- COMPILE 'rrfs_gnu' [09:11, 06:04] -PASS -- TEST 'rap_control_gnu' [28:41, 08:22](1072 MB) -PASS -- TEST 'rap_decomp_gnu' [28:34, 08:18](1070 MB) -PASS -- TEST 'rap_2threads_gnu' [27:56, 07:33](1116 MB) -PASS -- TEST 'rap_restart_gnu' [06:50, 04:12](884 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [27:41, 08:12](1073 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [27:38, 08:29](1074 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:42, 06:22](875 MB) -PASS -- TEST 'hrrr_control_gnu' [22:39, 04:21](1060 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [20:44, 04:17](1127 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [16:33, 03:46](1006 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [14:33, 04:16](1060 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [05:30, 02:14](874 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:30, 02:04](925 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [17:54, 08:07](1069 MB) - -PASS -- COMPILE 'csawmg_gnu' [08:10, 05:23] -PASS -- TEST 'control_csawmg_gnu' [19:28, 11:32](1059 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [24:10, 22:30] -PASS -- TEST 'control_diag_debug_gnu' [08:34, 01:26](1619 MB) -PASS -- TEST 'regional_debug_gnu' [15:29, 08:04](1130 MB) -PASS -- TEST 'rap_control_debug_gnu' [07:17, 02:22](1089 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [07:17, 02:14](1076 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [06:16, 02:32](1084 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [05:16, 02:14](1087 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:33, 02:27](1266 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:18, 03:26](1085 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:17, 02:15](1087 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:17, 02:17](1089 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:16, 01:22](718 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:16, 01:17](714 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:29, 01:15](1693 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:18, 02:05](1090 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:18, 02:13](1091 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:55, 03:35](1094 MB) - -PASS -- COMPILE 'wam_debug_gnu' [13:11, 12:01] -PASS -- TEST 'control_wam_debug_gnu' [07:33, 05:30](1558 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:10, 06:05] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:47, 07:57](956 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:48, 04:09](962 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:35, 07:00](959 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:39, 03:37](872 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:40, 03:57](939 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:40, 05:51](854 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:20, 02:06](852 MB) -PASS -- TEST 'conus13km_control_gnu' [05:39, 02:40](1254 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:27, 01:26](1163 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:28, 01:37](938 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [23:14, 21:53] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:38, 04:41](984 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [09:11, 07:58] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:20, 02:07](969 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:17, 02:04](964 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:31, 05:33](1276 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [09:30, 05:52](945 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [06:27, 03:30](1187 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:26, 05:41](1344 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:48] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:18, 02:10](996 MB) - -PASS -- COMPILE 's2swa_gnu' [18:11, 16:52] - -PASS -- COMPILE 's2s_gnu' [18:11, 16:19] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [20:13, 17:04](2694 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [24:11, 21:53] - -PASS -- COMPILE 's2sw_pdlib_gnu' [30:11, 27:48] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [43:58, 41:53](2902 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [23:13, 19:50] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [19:06, 16:28](3033 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [26:10, 23:00] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:15, 02:24](765 MB) +* (-r) - USE ROCOTO + +PASS -- COMPILE s2swa_32bit_intel [13:17, 13:17](1 warnings,11 remarks) +PASS -- TEST cpld_control_p8_mixedmode_intel [14:48, 14:00] (2125860 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_intel [19:02, 19:02](1 warnings,11 remarks) +PASS -- TEST cpld_control_gfsv17_intel [19:19, 18:27] (1990912 MB) +PASS -- TEST cpld_control_gfsv17_iau_intel [19:27, 18:24] (2334436 MB) +PASS -- TEST cpld_restart_gfsv17_intel [08:29, 07:24] (1345232 MB) +PASS -- TEST cpld_mpi_gfsv17_intel [20:43, 19:49] (1920088 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [20:36, 20:36](1 warnings,11 remarks) +PASS -- TEST cpld_control_sfs_intel [17:28, 16:59] (1983724 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [06:18, 06:18](1520 warnings,1988 remarks) +PASS -- TEST cpld_debug_gfsv17_intel [25:50, 24:54] (1969548 MB) + +PASS -- COMPILE s2swa_intel [12:29, 12:28](1 warnings,11 remarks) +PASS -- TEST cpld_control_p8_intel [16:52, 15:53] (2209348 MB) +PASS -- TEST cpld_control_p8.v2.sfc_intel [16:00, 15:08] (2200680 MB) +PASS -- TEST cpld_restart_p8_intel [09:09, 08:12] (1960932 MB) +PASS -- TEST cpld_control_qr_p8_intel [15:54, 15:09] (2236580 MB) +PASS -- TEST cpld_restart_qr_p8_intel [09:06, 08:07] (1729812 MB) +PASS -- TEST cpld_2threads_p8_intel [21:31, 20:42] (2418488 MB) +PASS -- TEST cpld_decomp_p8_intel [16:55, 16:17] (2182220 MB) +PASS -- TEST cpld_mpi_p8_intel [14:45, 13:56] (2092324 MB) +PASS -- TEST cpld_control_ciceC_p8_intel [16:08, 15:21] (2205928 MB) +PASS -- TEST cpld_control_c192_p8_intel [16:59, 15:40] (2996672 MB) +PASS -- TEST cpld_restart_c192_p8_intel [08:22, 06:33] (2908468 MB) +PASS -- TEST cpld_bmark_p8_intel [24:54, 20:00] (3871144 MB) +PASS -- TEST cpld_restart_bmark_p8_intel [17:37, 11:03] (3695788 MB) +PASS -- TEST cpld_s2sa_p8_intel [08:45, 08:05] (2100208 MB) + +PASS -- COMPILE s2sw_intel [11:46, 11:46](1 warnings,11 remarks) +PASS -- TEST cpld_control_noaero_p8_intel [14:29, 13:46] (2008916 MB) +PASS -- TEST cpld_control_nowave_noaero_p8_intel [11:48, 11:16] (2100436 MB) + +PASS -- COMPILE s2swa_debug_intel [06:28, 06:28](1410 warnings,1218 remarks) +PASS -- TEST cpld_debug_p8_intel [20:47, 19:58] (2233680 MB) + +PASS -- COMPILE s2sw_debug_intel [06:15, 06:15](1410 warnings,1218 remarks) +PASS -- TEST cpld_debug_noaero_p8_intel [10:10, 09:28] (2040100 MB) + +PASS -- COMPILE s2s_aoflux_intel [09:40, 09:39],3 remarks) +PASS -- TEST cpld_control_noaero_p8_agrid_intel [05:34, 04:52] (2068760 MB) + +PASS -- COMPILE s2s_intel [09:52, 09:52](1 warnings,3 remarks) +PASS -- TEST cpld_control_c48_intel [08:22, 07:53] (3027480 MB) +PASS -- TEST cpld_warmstart_c48_intel [02:11, 01:45] (3024980 MB) +PASS -- TEST cpld_restart_c48_intel [01:30, 01:02] (2472600 MB) + +PASS -- COMPILE s2swa_faster_intel [12:31, 12:31](1 warnings,11 remarks) +PASS -- TEST cpld_control_p8_faster_intel [15:17, 14:35] (2204092 MB) + +PASS -- COMPILE s2sw_pdlib_intel [14:47, 14:47](1 warnings,11 remarks) +PASS -- TEST cpld_control_pdlib_p8_intel [23:40, 22:56] (2064568 MB) +PASS -- TEST cpld_restart_pdlib_p8_intel [12:57, 12:05] (1408728 MB) +PASS -- TEST cpld_mpi_pdlib_p8_intel [26:45, 25:35] (1984336 MB) + +PASS -- COMPILE s2sw_pdlib_debug_intel [04:23, 04:23](1520 warnings,1988 remarks) +PASS -- TEST cpld_debug_pdlib_p8_intel [29:13, 28:34] (2012568 MB) + +PASS -- COMPILE atm_dyn32_intel [08:45, 08:45](1 warnings,1 remarks) +PASS -- TEST control_flake_intel [03:16, 03:06] (707404 MB) +PASS -- TEST control_CubedSphereGrid_intel [03:16, 02:54] (1584568 MB) +PASS -- TEST control_CubedSphereGrid_parallel_intel [03:16, 02:50] (1596456 MB) +PASS -- TEST control_latlon_intel [03:08, 02:50] (1602832 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_intel [03:19, 02:55] (1590572 MB) +PASS -- TEST control_c48_intel [11:14, 10:52] (1704124 MB) +PASS -- TEST control_c48.v2.sfc_intel [06:27, 06:14] (836068 MB) +PASS -- TEST control_c192_intel [10:51, 10:20] (1769916 MB) +PASS -- TEST control_c384_intel [13:03, 11:56] (2007884 MB) +PASS -- TEST control_c384gdas_intel [08:39, 07:17] (1519784 MB) +PASS -- TEST control_stochy_intel [01:40, 01:32] (663680 MB) +PASS -- TEST control_stochy_restart_intel [01:12, 00:56] (534400 MB) +PASS -- TEST control_lndp_intel [01:28, 01:22] (661660 MB) +PASS -- TEST control_iovr4_intel [02:26, 02:13] (660468 MB) +PASS -- TEST control_iovr5_intel [02:24, 02:14] (655320 MB) +PASS -- TEST control_p8_intel [04:02, 03:25] (1887080 MB) +PASS -- TEST control_p8.v2.sfc_intel [03:29, 02:48] (1886420 MB) +PASS -- TEST control_p8_ugwpv1_intel [03:46, 03:08] (1893196 MB) +PASS -- TEST control_restart_p8_intel [02:24, 01:51] (1163508 MB) +PASS -- TEST control_noqr_p8_intel [03:36, 03:05] (1867984 MB) +PASS -- TEST control_restart_noqr_p8_intel [03:13, 02:33] (1201288 MB) +PASS -- TEST control_decomp_p8_intel [03:52, 03:16] (1870016 MB) +PASS -- TEST control_2threads_p8_intel [05:02, 04:32] (1943532 MB) +PASS -- TEST control_p8_lndp_intel [06:14, 05:54] (1880536 MB) +PASS -- TEST control_p8_rrtmgp_intel [04:23, 03:41] (1963076 MB) +PASS -- TEST control_p8_mynn_intel [03:19, 02:44] (1897744 MB) +PASS -- TEST merra2_thompson_intel [03:52, 03:04] (1911708 MB) +PASS -- TEST regional_control_intel [05:31, 05:14] (1218152 MB) +PASS -- TEST regional_restart_intel [02:52, 02:38] (1187416 MB) +PASS -- TEST regional_decomp_intel [05:10, 04:57] (1218720 MB) +PASS -- TEST regional_2threads_intel [05:00, 04:42] (1120004 MB) +PASS -- TEST regional_noquilt_intel [04:57, 04:39] (1545168 MB) +PASS -- TEST regional_netcdf_parallel_intel [05:09, 04:51] (1219476 MB) +PASS -- TEST regional_2dwrtdecomp_intel [04:59, 04:43] (1225788 MB) +PASS -- TEST regional_wofs_intel [06:13, 05:57] (2079768 MB) + +PASS -- COMPILE rrfs_intel [09:30, 09:30](3 warnings,9 remarks) +PASS -- TEST rap_control_intel [07:24, 06:50] (1219380 MB) +PASS -- TEST regional_spp_sppt_shum_skeb_intel [04:02, 03:30] (1380640 MB) +PASS -- TEST rap_decomp_intel [07:31, 06:57] (1143916 MB) +PASS -- TEST rap_2threads_intel [09:58, 09:23] (1204476 MB) +PASS -- TEST rap_restart_intel [04:22, 03:41] (1137396 MB) +PASS -- TEST rap_sfcdiff_intel [07:28, 06:51] (1222428 MB) +PASS -- TEST rap_sfcdiff_decomp_intel [07:49, 07:13] (1145848 MB) +PASS -- TEST rap_sfcdiff_restart_intel [06:03, 05:23] (1195228 MB) +PASS -- TEST hrrr_control_intel [04:04, 03:29] (1080972 MB) +PASS -- TEST hrrr_control_decomp_intel [04:21, 03:44] (1036800 MB) +PASS -- TEST hrrr_control_2threads_intel [05:02, 04:22] (1139704 MB) +PASS -- TEST hrrr_control_restart_intel [02:15, 01:57] (1015900 MB) +PASS -- TEST rrfs_v1beta_intel [07:19, 06:41] (1205404 MB) +PASS -- TEST rrfs_v1nssl_intel [09:24, 09:15] (2013036 MB) +PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [09:22, 09:14] (2187388 MB) + +PASS -- COMPILE csawmg_intel [08:44, 08:44] +PASS -- TEST control_csawmg_intel [05:53, 05:37] (1041068 MB) +PASS -- TEST control_ras_intel [03:05, 02:55] (822220 MB) + +PASS -- COMPILE wam_intel [09:26, 09:26],1 remarks) +PASS -- TEST control_wam_intel [10:25, 10:03] (1659232 MB) + +PASS -- COMPILE atm_faster_dyn32_intel [09:35, 09:35],1 remarks) +PASS -- TEST control_p8_faster_intel [03:15, 02:32] (1897804 MB) +PASS -- TEST regional_control_faster_intel [05:03, 04:49] (1224512 MB) + +PASS -- COMPILE atm_debug_dyn32_intel [06:32, 06:32](882 warnings,9 remarks) +PASS -- TEST control_CubedSphereGrid_debug_intel [03:51, 03:27] (1613980 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [03:41, 03:11] (1621356 MB) +PASS -- TEST control_stochy_debug_intel [03:24, 02:55] (839312 MB) +PASS -- TEST control_lndp_debug_intel [02:56, 02:26] (850264 MB) +PASS -- TEST control_csawmg_debug_intel [05:11, 04:40] (1151952 MB) +PASS -- TEST control_ras_debug_intel [02:41, 02:27] (841772 MB) +PASS -- TEST control_diag_debug_intel [02:47, 02:29] (1694304 MB) +PASS -- TEST control_debug_p8_intel [03:45, 03:28] (1909860 MB) +PASS -- TEST regional_debug_intel [15:59, 15:41] (1156400 MB) +PASS -- TEST rap_control_debug_intel [04:32, 04:25] (1223148 MB) +PASS -- TEST hrrr_control_debug_intel [04:32, 04:21] (1218656 MB) +PASS -- TEST hrrr_gf_debug_intel [04:43, 04:32] (1224240 MB) +PASS -- TEST hrrr_c3_debug_intel [04:30, 04:21] (1222164 MB) +PASS -- TEST rap_unified_drag_suite_debug_intel [04:39, 04:29] (1222528 MB) +PASS -- TEST rap_diag_debug_intel [04:45, 04:26] (1308840 MB) +PASS -- TEST rap_cires_ugwp_debug_intel [04:37, 04:30] (1218000 MB) +PASS -- TEST rap_unified_ugwp_debug_intel [04:51, 04:39] (1226468 MB) +PASS -- TEST rap_lndp_debug_intel [04:36, 04:24] (1224436 MB) +PASS -- TEST rap_progcld_thompson_debug_intel [04:35, 04:24] (1215348 MB) +PASS -- TEST rap_noah_debug_intel [04:26, 04:19] (1221916 MB) +PASS -- TEST rap_sfcdiff_debug_intel [04:31, 04:22] (1221132 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [07:01, 06:53] (1219684 MB) +PASS -- TEST rrfs_v1beta_debug_intel [04:21, 04:11] (1213652 MB) +PASS -- TEST rap_clm_lake_debug_intel [04:41, 04:22] (1226828 MB) +PASS -- TEST rap_flake_debug_intel [04:50, 04:39] (1225580 MB) +PASS -- TEST gnv1_c96_no_nest_debug_intel [07:58, 07:21] (1217644 MB) + +PASS -- COMPILE atm_debug_dyn32_gnu [04:17, 04:16] +PASS -- TEST control_csawmg_debug_gnu [03:18, 03:01] (1047796 MB) + +PASS -- COMPILE wam_debug_intel [04:09, 04:09](837 warnings,1 remarks) + +PASS -- COMPILE rrfs_dyn32_phy32_intel [08:32, 08:31](3 warnings,8 remarks) +PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [03:54, 03:21] (1261632 MB) +PASS -- TEST rap_control_dyn32_phy32_intel [06:10, 05:37] (1148880 MB) +PASS -- TEST hrrr_control_dyn32_phy32_intel [03:46, 03:00] (1031704 MB) +PASS -- TEST rap_2threads_dyn32_phy32_intel [08:01, 07:25] (1122952 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [04:54, 04:08] (1061604 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [03:49, 03:02] (986264 MB) +PASS -- TEST rap_restart_dyn32_phy32_intel [04:46, 04:18] (1115836 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [02:06, 01:43] (959416 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [08:41, 08:41](3 warnings,8 remarks) +PASS -- TEST conus13km_control_intel [02:05, 01:41] (1291944 MB) +PASS -- TEST conus13km_2threads_intel [01:22, 00:57] (1181816 MB) +PASS -- TEST conus13km_restart_mismatch_intel [01:28, 01:04] (1128232 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_intel [08:38, 08:37](3 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_intel [04:09, 03:53] (1050384 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [04:05, 04:05](785 warnings,8 remarks) +PASS -- TEST rap_control_debug_dyn32_phy32_intel [04:54, 04:45] (1101976 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [04:48, 04:37] (1101788 MB) +PASS -- TEST conus13km_debug_intel [12:19, 11:53] (1351044 MB) +PASS -- TEST conus13km_debug_qr_intel [12:30, 12:04] (1001580 MB) +PASS -- TEST conus13km_debug_2threads_intel [13:02, 12:45] (1229180 MB) +PASS -- TEST conus13km_radar_tten_debug_intel [12:35, 12:15] (1417956 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [04:48, 04:48](785 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_debug_intel [04:25, 04:13] (1162368 MB) + +PASS -- COMPILE hafsw_intel [10:08, 10:08](1 warnings,10 remarks) +PASS -- TEST hafs_regional_atm_intel [06:29, 05:37] (854932 MB) +PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [06:03, 05:49] (1267768 MB) +PASS -- TEST hafs_regional_atm_ocn_intel [08:18, 07:13] (914016 MB) +PASS -- TEST hafs_regional_atm_wav_intel [15:15, 14:17] (957040 MB) +PASS -- TEST hafs_regional_atm_ocn_wav_intel [18:19, 17:10] (970868 MB) +PASS -- TEST hafs_regional_1nest_atm_intel [07:02, 06:24] (598188 MB) +PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [09:41, 08:27] (604628 MB) +PASS -- TEST hafs_global_1nest_atm_intel [03:40, 03:12] (437552 MB) +PASS -- TEST hafs_global_multiple_4nests_atm_intel [10:51, 09:00] (554068 MB) +PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [05:00, 04:28] (603240 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [04:52, 04:10] (607800 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [06:16, 05:30] (656772 MB) +PASS -- TEST hafs_global_storm_following_1nest_atm_intel [01:47, 01:31] (459020 MB) + +PASS -- COMPILE hafsw_debug_intel [04:44, 04:44](1462 warnings,1490 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [14:20, 13:50] (637076 MB) + +PASS -- COMPILE hafsw_faster_intel [10:34, 10:34],9 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [19:19, 18:27] (730452 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [19:16, 18:26] (837012 MB) + +PASS -- COMPILE hafs_mom6w_intel [10:01, 10:01],8 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [14:13, 12:45] (814500 MB) + +PASS -- COMPILE hafs_all_intel [09:55, 09:55],9 remarks) +PASS -- TEST hafs_regional_docn_intel [06:49, 05:51] (935292 MB) +PASS -- TEST hafs_regional_docn_oisst_intel [07:14, 06:14] (899328 MB) +PASS -- TEST hafs_regional_datm_cdeps_intel [17:10, 16:35] (1359008 MB) + +PASS -- COMPILE datm_cdeps_intel [06:26, 06:26],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_intel [02:16, 02:11] (1167436 MB) +PASS -- TEST datm_cdeps_restart_cfsr_intel [01:33, 01:29] (1091012 MB) +PASS -- TEST datm_cdeps_control_gefs_intel [02:18, 02:13] (1017392 MB) +PASS -- TEST datm_cdeps_iau_gefs_intel [02:12, 02:08] (1021196 MB) +PASS -- TEST datm_cdeps_stochy_gefs_intel [02:09, 02:05] (1022568 MB) +PASS -- TEST datm_cdeps_ciceC_cfsr_intel [02:20, 02:16] (1154656 MB) +PASS -- TEST datm_cdeps_bulk_cfsr_intel [03:16, 03:11] (1147460 MB) +PASS -- TEST datm_cdeps_bulk_gefs_intel [03:08, 03:01] (1016184 MB) +PASS -- TEST datm_cdeps_mx025_cfsr_intel [05:32, 04:57] (1157264 MB) +PASS -- TEST datm_cdeps_mx025_gefs_intel [05:25, 04:51] (1154992 MB) +PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [02:59, 02:56] (1159592 MB) +PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [03:11, 03:05] (2451396 MB) +PASS -- TEST datm_cdeps_gfs_intel [04:17, 04:12] (2412788 MB) + +PASS -- COMPILE datm_cdeps_debug_intel [03:49, 03:49](2 warnings,2 remarks) +PASS -- TEST datm_cdeps_debug_cfsr_intel [05:26, 05:20] (1062128 MB) + +PASS -- COMPILE datm_cdeps_faster_intel [05:54, 05:53],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_faster_intel [02:12, 02:07] (1165312 MB) + +PASS -- COMPILE datm_cdeps_land_intel [01:08, 01:08],1 remarks) +PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:21, 01:04] (338048 MB) +PASS -- TEST datm_cdeps_lnd_era5_intel [01:13, 01:00] (576064 MB) +PASS -- TEST datm_cdeps_lnd_era5_rst_intel [00:48, 00:36] (574636 MB) + +PASS -- COMPILE atm_ds2s_docn_pcice_intel [09:03, 09:03],3 remarks) +PASS -- TEST atm_ds2s_docn_pcice_intel [03:56, 03:23] (2016448 MB) + +PASS -- COMPILE atm_ds2s_docn_dice_intel [08:58, 08:58](1 warnings,1 remarks) +PASS -- TEST atm_ds2s_docn_dice_intel [07:53, 07:20] (2026492 MB) + +PASS -- COMPILE atml_intel [09:21, 09:20](8 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_sbs_intel [06:53, 06:02] (1886396 MB) +PASS -- TEST control_p8_atmlnd_intel [06:52, 06:03] (1896692 MB) +PASS -- TEST control_restart_p8_atmlnd_intel [03:30, 03:06] (1143480 MB) + +PASS -- COMPILE atml_debug_intel [04:39, 04:38](880 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_debug_intel [06:51, 06:04] (1935740 MB) + +PASS -- COMPILE atmw_intel [09:40, 09:40],9 remarks) +PASS -- TEST atmwav_control_noaero_p8_intel [02:26, 01:47] (1936112 MB) + +PASS -- COMPILE atmaero_intel [08:49, 08:48],1 remarks) +PASS -- TEST atmaero_control_p8_intel [04:33, 03:56] (1997000 MB) +PASS -- TEST atmaero_control_p8_rad_intel [05:11, 04:32] (1793264 MB) +PASS -- TEST atmaero_control_p8_rad_micro_intel [05:12, 04:44] (1795252 MB) + +PASS -- COMPILE atmaq_debug_intel [03:51, 03:51](882 warnings,6 remarks) +PASS -- TEST regional_atmaq_debug_intel [18:23, 17:18] (4550280 MB) + +PASS -- COMPILE atm_fbh_intel [08:11, 08:11](3 warnings,8 remarks) +PASS -- TEST cpld_regional_atm_fbh_intel [10:12, 10:00] (1103300 MB) + +PASS -- COMPILE datm_cdeps_intelllvm [10:40, 10:40] +PASS -- TEST datm_cdeps_control_cfsr_intelllvm [03:13, 03:09] (1146268 MB) + +PASS -- COMPILE datm_cdeps_debug_intelllvm [01:58, 01:58](2 warnings +PASS -- TEST datm_cdeps_debug_cfsr_intelllvm [11:31, 11:27] (1083376 MB) + +PASS -- COMPILE atm_gnu [04:08, 04:08] +PASS -- TEST control_c48_gnu [11:36, 11:14] (1521708 MB) +PASS -- TEST control_stochy_gnu [02:45, 02:34] (719960 MB) +PASS -- TEST control_ras_gnu [04:10, 03:59] (721024 MB) +PASS -- TEST control_p8_gnu [05:02, 04:22] (1701372 MB) +PASS -- TEST control_p8_ugwpv1_gnu [04:40, 04:11] (1719540 MB) +PASS -- TEST control_flake_gnu [04:51, 04:39] (810060 MB) + +PASS -- COMPILE rrfs_gnu [03:53, 03:53] +PASS -- TEST rap_control_gnu [11:22, 10:46] (1080180 MB) +PASS -- TEST rap_decomp_gnu [11:26, 10:55] (1076508 MB) +PASS -- TEST rap_restart_gnu [06:39, 05:58] (879876 MB) +PASS -- TEST rap_sfcdiff_gnu [11:36, 10:55] (1073032 MB) +PASS -- TEST rap_sfcdiff_decomp_gnu [12:04, 11:32] (1075436 MB) +PASS -- TEST rap_sfcdiff_restart_gnu [09:18, 08:35] (876336 MB) +PASS -- TEST hrrr_control_gnu [05:53, 05:13] (1061724 MB) +PASS -- TEST hrrr_control_noqr_gnu [05:56, 05:29] (1131060 MB) +PASS -- TEST hrrr_control_decomp_gnu [06:34, 05:57] (1058288 MB) +PASS -- TEST hrrr_control_restart_gnu [03:08, 02:50] (879476 MB) +PASS -- TEST hrrr_control_restart_noqr_gnu [02:58, 02:43] (924824 MB) +PASS -- TEST rrfs_v1beta_gnu [11:48, 11:00] (1067620 MB) + +PASS -- COMPILE csawmg_gnu [04:00, 04:00] +PASS -- TEST control_csawmg_gnu [09:27, 09:15] (1071864 MB) + +PASS -- COMPILE atm_dyn32_debug_gnu [06:56, 06:56] +PASS -- TEST control_diag_debug_gnu [01:43, 01:20] (1620220 MB) +PASS -- TEST regional_debug_gnu [07:31, 07:17] (1123756 MB) +PASS -- TEST rap_control_debug_gnu [02:09, 02:01] (1092256 MB) +PASS -- TEST hrrr_control_debug_gnu [02:21, 02:09] (1079308 MB) +PASS -- TEST hrrr_gf_debug_gnu [02:26, 02:20] (1087840 MB) +PASS -- TEST hrrr_c3_debug_gnu [02:13, 02:08] (1088112 MB) +PASS -- TEST rap_diag_debug_gnu [02:28, 02:16] (1268392 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [03:28, 03:23] (1088664 MB) +PASS -- TEST rap_progcld_thompson_debug_gnu [02:14, 02:07] (1092376 MB) +PASS -- TEST rrfs_v1beta_debug_gnu [02:31, 02:20] (1083252 MB) +PASS -- TEST control_ras_debug_gnu [01:23, 01:18] (721824 MB) +PASS -- TEST control_stochy_debug_gnu [01:38, 01:32] (719700 MB) +PASS -- TEST control_debug_p8_gnu [01:48, 01:27] (1697968 MB) +PASS -- TEST rap_flake_debug_gnu [02:17, 02:06] (1094260 MB) +PASS -- TEST rap_clm_lake_debug_gnu [02:16, 02:05] (1092768 MB) +PASS -- TEST gnv1_c96_no_nest_debug_gnu [03:59, 03:21] (1096348 MB) + +PASS -- COMPILE wam_debug_gnu [03:38, 03:38] +PASS -- TEST control_wam_debug_gnu [05:53, 05:30] (1553364 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_gnu [05:10, 05:10] +PASS -- TEST rap_control_dyn32_phy32_gnu [08:25, 07:49] (957084 MB) +PASS -- TEST hrrr_control_dyn32_phy32_gnu [04:43, 04:00] (943436 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [04:47, 04:05] (941260 MB) +PASS -- TEST rap_restart_dyn32_phy32_gnu [06:37, 06:00] (856308 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [02:25, 02:06] (862324 MB) +PASS -- TEST conus13km_control_gnu [02:53, 02:31] (1257916 MB) +PASS -- TEST conus13km_2threads_gnu [07:14, 06:58] (1095296 MB) +PASS -- TEST conus13km_restart_mismatch_gnu [01:53, 01:34] (919704 MB) + +PASS -- COMPILE atm_dyn64_phy32_gnu [08:37, 08:37] +PASS -- TEST rap_control_dyn64_phy32_gnu [04:52, 04:33] (979588 MB) + +PASS -- COMPILE atm_dyn32_phy32_debug_gnu [06:33, 06:32] +PASS -- TEST rap_control_debug_dyn32_phy32_gnu [02:16, 02:04] (967156 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [02:15, 02:04] (962240 MB) +PASS -- TEST conus13km_debug_gnu [05:54, 05:32] (1272152 MB) +PASS -- TEST conus13km_debug_qr_gnu [06:01, 05:39] (951544 MB) +PASS -- TEST conus13km_debug_2threads_gnu [20:19, 19:57] (1112860 MB) +PASS -- TEST conus13km_radar_tten_debug_gnu [05:51, 05:30] (1344536 MB) + +PASS -- COMPILE atm_dyn64_phy32_debug_gnu [06:32, 06:32] +PASS -- TEST rap_control_dyn64_phy32_debug_gnu [02:22, 02:12] (991024 MB) + +PASS -- COMPILE s2swa_gnu [17:52, 17:52] +PASS -- COMPILE s2s_gnu [16:52, 16:52] +PASS -- TEST cpld_control_nowave_noaero_p8_gnu [15:09, 14:23] (3069288 MB) + +PASS -- COMPILE s2swa_debug_gnu [04:16, 04:16] +PASS -- COMPILE s2sw_pdlib_gnu [15:57, 15:57] +PASS -- TEST cpld_control_pdlib_p8_gnu [40:23, 39:41] (3045624 MB) + +PASS -- COMPILE s2sw_pdlib_debug_gnu [03:59, 03:58] +PASS -- TEST cpld_debug_pdlib_p8_gnu [15:50, 15:09] (2897720 MB) + +PASS -- COMPILE datm_cdeps_gnu [15:36, 15:36] +PASS -- TEST datm_cdeps_control_cfsr_gnu [03:07, 03:02] (772152 MB) + SYNOPSIS: -Starting Date/Time: 20241213 13:42:54 -Ending Date/Time: 20241213 16:22:14 -Total Time: 02h:40m:03s Compiles Completed: 60/60 -Tests Completed: 248/248 +Tests Completed: 243/247 + +./logs/log_hercules/rt_rap_2threads_gnu.log: does not exist +./logs/log_hercules/rt_hrrr_control_2threads_gnu.log: does not exist +./logs/log_hercules/rt_rap_2threads_dyn32_phy32_gnu.log: does not exist +./logs/log_hercules/rt_hrrr_control_2threads_dyn32_phy32_gnu.log: does not exist + +NOTES: +A file test_changes.list was generated but is empty. +If you are using this log as a pull request verification, please commit test_changes.list. + +====START OF hercules REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +572eba512daea70468af6d74c0134781118e9f0a + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + c7ea491e6fd99e459af977bfd57fa14aa6a349eb CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-12-16) + ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) + 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) + b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) + 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) + 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) + dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) +-179cae1dd84401cf25d250bd9102e66560a9d328 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) + 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) + 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20241212 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_402483 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-r) - USE ROCOTO + +PASS -- COMPILE 'rrfs_gnu' [04:16, 04:16] +PASS -- TEST 'rap_control_gnu' [12:00, 11:24](1074 MB) +PASS -- TEST 'rap_2threads_gnu' [09:44, 09:07](1036 MB) +PASS -- TEST 'hrrr_control_gnu' [05:58, 05:20](1061 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [16:50, 16:11](1019 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:15, 04:15] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:07, 07:33](952 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:51, 04:05](950 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:36, 06:57](916 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:25, 03:34](891 MB) + +SYNOPSIS: +Starting Date/Time: 20241222 20:20:24 +Ending Date/Time: 20241222 21:36:13 +Total Time: 01h:16m:06s +Compiles Completed: 2/2 +Tests Completed: 8/8 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index b2f7ed858a..9a72784cae 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,15 +1,15 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -19498cc1894245fe8afe365dd87dbe5d8862b35f +527939eb224c50a4d9f66a6099cc2b8b03baf6c8 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 51f8cd20c15fe39ef1168d59d5077812b6508544 CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-10) + c7ea491e6fd99e459af977bfd57fa14aa6a349eb CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-12-16) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - 507ca48f4586fbeb7b0e23e5cfa9321bc3f02a1d CMEPS-interface/CMEPS (cmeps_v0.4.1-3103-g507ca48f) + b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) @@ -39,257 +39,256 @@ 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-20241212 -COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1986325 +COMPARISON DIRECTORY: /mnt/lfs5/NAGAPE/epic/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_3791175 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: h-nems -* (-l) - USE CONFIG FILE: rt.conf +* (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [44:15, 43:00] ( 1 warnings 1397 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [21:15, 13:35](2017 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:15, 47:58] ( 1 warnings 1444 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [28:10, 25:07](1870 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [29:18, 26:23](2003 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:10, 09:45](1134 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [31:01, 28:02](1825 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [50:15, 48:53] ( 1 warnings 1441 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [35:51, 24:48](1869 MB) - -PASS -- COMPILE 's2swa_intel' [46:15, 44:22] ( 1 warnings 1416 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [23:15, 17:51](2046 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [26:25, 16:50](2048 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:18, 08:59](1709 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [23:12, 17:11](2065 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [11:21, 09:01](1717 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [22:08, 16:28](2322 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [23:04, 17:20](2016 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [19:17, 14:01](1999 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [23:20, 17:14](2036 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [23:11, 09:06](2012 MB) - -PASS -- COMPILE 's2sw_intel' [43:15, 41:53] ( 1 warnings 1301 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [12:23, 09:46](1914 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [17:32, 14:09](1975 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:22] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [38:18, 27:36](2031 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:11, 06:08] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [21:02, 11:39](1918 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [39:13, 37:08] ( 1019 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:24, 05:30](1953 MB) - -PASS -- COMPILE 's2s_intel' [43:14, 38:02] ( 1 warnings 1042 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [12:49, 10:21](3006 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:49, 03:05](3008 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:49, 01:46](2458 MB) - -PASS -- COMPILE 's2swa_faster_intel' [42:19, 32:11] ( 1 warnings 1632 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [19:30, 16:20](2046 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [55:15, 46:36] ( 1 warnings 1361 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [39:31, 33:17](1935 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [21:23, 16:32](1131 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [42:11, 39:19](1908 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:12, 05:58] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:09, 38:42](1930 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [39:13, 37:46] ( 1 warnings 1125 remarks ) -PASS -- TEST 'control_flake_intel' [15:32, 04:20](652 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [29:12, 04:13](1542 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [33:13, 04:35](1537 MB) -PASS -- TEST 'control_latlon_intel' [33:09, 04:18](1526 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [21:14, 04:16](1542 MB) -PASS -- TEST 'control_c48_intel' [34:12, 18:06](1700 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:34, 10:12](834 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [35:14, 18:07](1703 MB) -PASS -- TEST 'control_c192_intel' [44:26, 16:07](1682 MB) -PASS -- TEST 'control_c384_intel' [56:26, 23:09](1819 MB) -PASS -- TEST 'control_c384gdas_intel' [48:09, 13:21](1009 MB) -PASS -- TEST 'control_stochy_intel' [04:30, 02:10](604 MB) -PASS -- TEST 'control_stochy_restart_intel' [29:30, 01:13](434 MB) -PASS -- TEST 'control_lndp_intel' [12:30, 01:59](605 MB) -PASS -- TEST 'control_iovr4_intel' [05:32, 03:17](596 MB) -PASS -- TEST 'control_iovr5_intel' [05:33, 03:15](601 MB) -PASS -- TEST 'control_p8_intel' [33:28, 04:54](1830 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [32:35, 04:05](1831 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [33:20, 04:47](1830 MB) -PASS -- TEST 'control_restart_p8_intel' [11:49, 02:33](1055 MB) -PASS -- TEST 'control_noqr_p8_intel' [33:23, 04:46](1812 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [10:52, 02:29](1075 MB) -PASS -- TEST 'control_decomp_p8_intel' [20:25, 04:47](1822 MB) -PASS -- TEST 'control_2threads_p8_intel' [33:19, 04:40](1899 MB) -PASS -- TEST 'control_p8_lndp_intel' [29:13, 08:32](1829 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [34:24, 05:20](1894 MB) -PASS -- TEST 'control_p8_mynn_intel' [32:26, 04:05](1838 MB) -PASS -- TEST 'merra2_thompson_intel' [25:23, 04:18](1842 MB) -PASS -- TEST 'regional_control_intel' [11:04, 07:10](1035 MB) -PASS -- TEST 'regional_restart_intel' [21:43, 03:50](1018 MB) -PASS -- TEST 'regional_decomp_intel' [10:05, 07:27](1043 MB) -PASS -- TEST 'regional_2threads_intel' [17:04, 04:20](1023 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [33:49, 07:20](1044 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [30:40, 07:07](1036 MB) - -PASS -- COMPILE 'rrfs_intel' [36:13, 34:54] ( 3 warnings 1101 remarks ) -PASS -- TEST 'rap_control_intel' [28:48, 10:02](984 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [27:04, 05:30](1191 MB) -PASS -- TEST 'rap_decomp_intel' [29:43, 10:35](979 MB) -PASS -- TEST 'rap_2threads_intel' [28:48, 09:34](1070 MB) -PASS -- TEST 'rap_restart_intel' [07:48, 05:13](987 MB) -PASS -- TEST 'rap_sfcdiff_intel' [31:46, 10:03](987 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [31:42, 10:48](975 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:47, 07:29](1001 MB) -PASS -- TEST 'hrrr_control_intel' [22:46, 05:12](984 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [21:41, 05:17](977 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [16:40, 04:49](1048 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:28, 02:44](920 MB) -PASS -- TEST 'rrfs_v1beta_intel' [18:52, 10:05](977 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [21:27, 13:22](1926 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [17:27, 12:57](1926 MB) - -PASS -- COMPILE 'csawmg_intel' [36:13, 34:56] ( 1099 remarks ) -PASS -- TEST 'control_csawmg_intel' [12:39, 08:11](963 MB) -PASS -- TEST 'control_ras_intel' [09:21, 04:26](674 MB) - -PASS -- COMPILE 'wam_intel' [37:14, 35:55] ( 1003 remarks ) -PASS -- TEST 'control_wam_intel' [16:47, 14:23](1613 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [39:13, 37:32] ( 1303 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:48, 03:38](1828 MB) -PASS -- TEST 'regional_control_faster_intel' [09:36, 06:45](1025 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:11, 08:23] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [10:41, 02:41](1564 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [11:44, 02:40](1542 MB) -PASS -- TEST 'control_stochy_debug_intel' [08:21, 03:49](772 MB) -PASS -- TEST 'control_lndp_debug_intel' [08:21, 03:20](773 MB) -PASS -- TEST 'control_csawmg_debug_intel' [13:35, 05:24](1084 MB) -PASS -- TEST 'control_ras_debug_intel' [11:22, 03:22](788 MB) -PASS -- TEST 'control_diag_debug_intel' [10:45, 03:17](1630 MB) -PASS -- TEST 'control_debug_p8_intel' [10:44, 03:13](1853 MB) -PASS -- TEST 'regional_debug_intel' [28:46, 22:00](1070 MB) -PASS -- TEST 'rap_control_debug_intel' [12:25, 06:02](1162 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:22, 05:57](1154 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:25, 06:06](1160 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:24, 06:05](1168 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:25, 06:05](1163 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:35, 06:27](1242 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:26, 06:15](1161 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:24, 06:19](1162 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:25, 06:11](1162 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:26, 06:03](1160 MB) -PASS -- TEST 'rap_noah_debug_intel' [08:24, 05:57](1159 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:26, 06:02](1165 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:27, 10:00](1152 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:26, 06:01](1156 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:25, 06:05](1165 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:26, 06:07](1164 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:48, 10:37](1168 MB) - -PASS -- COMPILE 'wam_debug_intel' [18:11, 05:06] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [19:43, 16:34](1645 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [35:13, 30:47] ( 3 warnings 1033 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:09, 05:01](1070 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:39, 08:18](912 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:43, 04:19](875 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:54, 07:54](957 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:51, 04:04](899 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:42, 04:38](853 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:39, 06:20](898 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:26, 02:20](836 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [34:13, 32:02] ( 3 warnings 1207 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:00, 02:39](1097 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:44, 01:16](1039 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:44, 01:34](1012 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [33:13, 31:33] ( 3 warnings 1053 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:45, 05:29](904 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 05:13] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:26, 06:04](1033 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:22, 05:56](1027 MB) -PASS -- TEST 'conus13km_debug_intel' [19:57, 17:37](1153 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:47, 17:48](857 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:39, 10:13](1089 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:38, 17:40](1209 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:11, 05:00] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:25, 06:09](1082 MB) - -PASS -- COMPILE 'hafsw_intel' [42:14, 40:13] ( 1 warnings 1435 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [21:24, 06:45](703 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [20:38, 06:21](1079 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [23:38, 09:05](752 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:29, 15:27](783 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [33:49, 19:04](807 MB) -PASS -- TEST 'gnv1_nested_intel' [21:46, 07:03](1668 MB) - -PASS -- COMPILE 'hafs_all_intel' [39:13, 37:47] ( 1281 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [25:19, 08:14](751 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [27:21, 08:22](735 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:15] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:21, 03:40](1078 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:22, 02:10](1045 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:20, 03:29](950 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:22, 03:41](942 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:20, 03:33](938 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:22, 03:41](1074 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:21, 03:41](1077 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:21, 03:35](931 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:15, 07:50](892 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:17, 07:45](854 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:18, 03:42](1078 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:22, 05:10](2423 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [08:22, 05:09](2430 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:21] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:22, 08:09](1020 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:17] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:33](1077 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:43] ( 68 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:35, 01:07](237 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:29, 01:00](261 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:37](264 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [38:13, 36:25] ( 1024 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:14, 04:43](1899 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [37:13, 35:59] ( 1 warnings 1029 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [12:58, 10:26](1915 MB) - -PASS -- COMPILE 'atml_intel' [39:14, 37:56] ( 8 warnings 1174 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:03, 05:34](1840 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [12:04, 05:42](1847 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:42, 03:07](1060 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:12, 06:16] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [20:16, 07:22](1881 MB) - -PASS -- COMPILE 'atmw_intel' [40:14, 38:14] ( 1277 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:00, 02:26](1844 MB) - -PASS -- COMPILE 'atmaero_intel' [42:13, 36:22] ( 1107 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [12:58, 05:27](1935 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [14:58, 06:20](1702 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:50, 06:24](1688 MB) - -PASS -- COMPILE 'atm_fbh_intel' [33:13, 31:25] ( 3 warnings 1004 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:38, 15:11](1059 MB) +PASS -- COMPILE 's2swa_32bit_intel' [45:14, 43:38] ( 1 warnings 1397 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:23, 13:34](1993 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [50:15, 48:58] ( 1 warnings 1444 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [54:18, 24:59](1871 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [29:26, 26:29](1992 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:15, 10:01](1126 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [58:03, 28:11](1836 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [48:14, 46:54] ( 1 warnings 1441 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [55:54, 24:37](1877 MB) + +PASS -- COMPILE 's2swa_intel' [46:14, 44:20] ( 1 warnings 1416 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [25:28, 17:49](2046 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [50:36, 17:05](2042 MB) +PASS -- TEST 'cpld_restart_p8_intel' [20:20, 09:03](1709 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [43:17, 17:03](2063 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [12:21, 09:03](1730 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [50:17, 16:56](2254 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [50:18, 17:15](2054 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [20:24, 14:04](2002 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [37:33, 16:57](2050 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [42:25, 09:20](1991 MB) + +PASS -- COMPILE 's2sw_intel' [42:14, 40:48] ( 1 warnings 1301 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [16:31, 09:48](1901 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [20:38, 14:03](1966 MB) + +PASS -- COMPILE 's2swa_debug_intel' [12:11, 06:15] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [53:31, 27:43](2073 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:11, 06:02] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [38:14, 11:42](1925 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [39:13, 37:14] ( 1019 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:19, 05:33](1953 MB) + +PASS -- COMPILE 's2s_intel' [43:14, 38:07] ( 1 warnings 1042 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [12:50, 10:20](3017 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:47, 03:05](2998 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:53, 01:47](2452 MB) + +PASS -- COMPILE 's2swa_faster_intel' [35:18, 32:31] ( 1 warnings 1632 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [19:42, 16:23](2040 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [12:16, 46:34] ( 1 warnings 1361 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [36:54, 33:24](1937 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [19:18, 16:34](1169 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [42:30, 39:21](1911 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [31:13, 06:03] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [42:14, 38:41](1935 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [33:13, 31:12] ( 1 warnings 1125 remarks ) +PASS -- TEST 'control_flake_intel' [11:32, 04:20](651 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [16:10, 04:10](1537 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [17:15, 04:22](1547 MB) +PASS -- TEST 'control_latlon_intel' [13:05, 04:17](1542 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [13:13, 04:18](1530 MB) +PASS -- TEST 'control_c48_intel' [27:14, 18:05](1701 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [19:35, 10:13](835 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [27:14, 18:06](1710 MB) +PASS -- TEST 'control_c192_intel' [20:22, 15:59](1692 MB) +PASS -- TEST 'control_c384_intel' [28:21, 23:00](1818 MB) +PASS -- TEST 'control_c384gdas_intel' [25:09, 13:20](1006 MB) +PASS -- TEST 'control_stochy_intel' [08:29, 02:06](594 MB) +PASS -- TEST 'control_stochy_restart_intel' [05:29, 01:13](442 MB) +PASS -- TEST 'control_lndp_intel' [08:29, 01:58](603 MB) +PASS -- TEST 'control_iovr4_intel' [10:33, 03:18](600 MB) +PASS -- TEST 'control_iovr5_intel' [10:33, 03:16](605 MB) +PASS -- TEST 'control_p8_intel' [12:30, 04:53](1829 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [16:35, 03:55](1831 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [16:22, 04:37](1821 MB) +PASS -- TEST 'control_restart_p8_intel' [08:54, 02:35](1056 MB) +PASS -- TEST 'control_noqr_p8_intel' [13:22, 04:39](1816 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [10:55, 02:32](1082 MB) +PASS -- TEST 'control_decomp_p8_intel' [12:24, 04:53](1812 MB) +PASS -- TEST 'control_2threads_p8_intel' [14:23, 04:29](1907 MB) +PASS -- TEST 'control_p8_lndp_intel' [19:13, 08:34](1831 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [14:24, 05:07](1893 MB) +PASS -- TEST 'control_p8_mynn_intel' [12:25, 03:59](1838 MB) +PASS -- TEST 'merra2_thompson_intel' [16:21, 04:19](1843 MB) +PASS -- TEST 'regional_control_intel' [16:02, 07:08](1042 MB) +PASS -- TEST 'regional_restart_intel' [06:33, 03:50](1020 MB) +PASS -- TEST 'regional_decomp_intel' [17:02, 07:28](1033 MB) +PASS -- TEST 'regional_2threads_intel' [13:04, 04:15](1006 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [10:47, 07:06](1044 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [10:35, 07:06](1036 MB) + +PASS -- COMPILE 'rrfs_intel' [37:14, 35:21] ( 3 warnings 1101 remarks ) +PASS -- TEST 'rap_control_intel' [12:54, 09:59](989 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:05, 05:36](1195 MB) +PASS -- TEST 'rap_decomp_intel' [12:41, 10:39](987 MB) +PASS -- TEST 'rap_2threads_intel' [15:38, 09:26](1065 MB) +PASS -- TEST 'rap_restart_intel' [08:44, 05:10](992 MB) +PASS -- TEST 'rap_sfcdiff_intel' [16:48, 09:56](987 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [17:38, 10:41](975 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:41, 07:25](995 MB) +PASS -- TEST 'hrrr_control_intel' [12:51, 05:05](983 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [12:37, 05:20](977 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [14:41, 04:44](1049 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:28, 02:43](919 MB) +PASS -- TEST 'rrfs_v1beta_intel' [18:58, 09:56](984 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [21:29, 13:18](1934 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [21:28, 12:55](1929 MB) + +PASS -- COMPILE 'csawmg_intel' [36:13, 35:03] ( 1099 remarks ) +PASS -- TEST 'control_csawmg_intel' [16:36, 08:15](962 MB) +PASS -- TEST 'control_ras_intel' [12:23, 04:27](669 MB) + +PASS -- COMPILE 'wam_intel' [42:13, 35:28] ( 1003 remarks ) +PASS -- TEST 'control_wam_intel' [16:55, 14:23](1614 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [43:14, 37:23] ( 1303 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:55, 03:36](1840 MB) +PASS -- TEST 'regional_control_faster_intel' [09:38, 06:40](1037 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [12:11, 08:04] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [08:41, 02:51](1560 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:47, 02:50](1560 MB) +PASS -- TEST 'control_stochy_debug_intel' [09:23, 03:50](778 MB) +PASS -- TEST 'control_lndp_debug_intel' [08:25, 03:26](782 MB) +PASS -- TEST 'control_csawmg_debug_intel' [10:43, 05:32](1088 MB) +PASS -- TEST 'control_ras_debug_intel' [08:24, 03:30](786 MB) +PASS -- TEST 'control_diag_debug_intel' [07:43, 03:29](1632 MB) +PASS -- TEST 'control_debug_p8_intel' [06:44, 03:20](1858 MB) +PASS -- TEST 'regional_debug_intel' [25:43, 22:06](1055 MB) +PASS -- TEST 'rap_control_debug_intel' [08:26, 06:07](1162 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:26, 06:04](1149 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:24, 06:08](1166 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:24, 06:06](1158 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:24, 06:06](1164 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:34, 06:20](1253 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:28, 06:19](1160 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:28, 06:15](1160 MB) +PASS -- TEST 'rap_lndp_debug_intel' [09:25, 06:14](1160 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [09:25, 06:14](1157 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:25, 06:02](1163 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:25, 06:10](1161 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:27, 10:06](1153 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:24, 06:05](1157 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:28, 06:04](1163 MB) +PASS -- TEST 'rap_flake_debug_intel' [09:25, 06:01](1162 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:48, 10:35](1164 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:11, 05:06] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [24:53, 16:42](1632 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [35:12, 30:50] ( 3 warnings 1033 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:04, 05:13](1061 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [13:47, 08:18](920 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:44, 04:22](870 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [13:47, 07:53](907 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:44, 04:05](903 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:44, 04:39](854 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:44, 06:12](906 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:25, 02:24](852 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [35:13, 32:08] ( 3 warnings 1207 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:58, 02:39](1096 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:39, 01:11](1036 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:41, 01:29](1015 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [33:13, 31:26] ( 3 warnings 1053 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:53, 05:24](908 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:19] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:25, 06:03](1041 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:26, 05:58](1033 MB) +PASS -- TEST 'conus13km_debug_intel' [19:55, 17:39](1153 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [19:55, 17:38](853 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [16:51, 10:13](1077 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:49, 17:40](1216 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:57] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:26, 06:12](1081 MB) + +PASS -- COMPILE 'hafsw_intel' [41:13, 39:45] ( 1 warnings 1435 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [15:22, 08:33](691 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [14:30, 08:03](1081 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [25:40, 09:07](754 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [32:30, 15:40](784 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [35:50, 18:52](797 MB) +PASS -- TEST 'gnv1_nested_intel' [15:57, 07:06](1656 MB) + +PASS -- COMPILE 'hafs_all_intel' [38:13, 36:32] ( 1281 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [17:36, 09:32](751 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:37, 09:25](731 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:14] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:24, 03:38](1066 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:24, 02:09](1047 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:25, 03:32](945 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:24, 03:37](939 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:24, 03:38](932 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:23, 03:34](1068 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:22, 03:35](1079 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:24, 03:32](936 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:16, 07:45](898 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:14, 07:51](854 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:21, 03:37](1073 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:24, 05:31](2418 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [08:23, 05:02](2417 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 03:27] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:23, 08:13](1040 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:21] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:20, 03:39](1073 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:49] ( 68 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:36, 01:11](236 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:34, 00:56](264 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:37](260 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [38:14, 36:47] ( 1024 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [10:29, 04:51](1897 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [37:14, 35:56] ( 1 warnings 1029 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [16:23, 10:30](1895 MB) + +PASS -- COMPILE 'atml_intel' [39:13, 37:53] ( 8 warnings 1174 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:14, 05:38](1858 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:12, 05:34](1842 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:54, 03:08](1067 MB) + +PASS -- COMPILE 'atml_debug_intel' [14:11, 07:01] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:16, 07:16](1876 MB) + +PASS -- COMPILE 'atmw_intel' [47:14, 38:07] ( 1277 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:12, 02:29](1855 MB) + +PASS -- COMPILE 'atmaero_intel' [37:13, 36:02] ( 1107 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:04, 05:14](1923 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:03, 06:16](1707 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:54, 06:21](1725 MB) + +PASS -- COMPILE 'atm_fbh_intel' [33:13, 31:17] ( 3 warnings 1004 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:40, 15:17](1052 MB) SYNOPSIS: -Starting Date/Time: 20241213 19:41:31 -Ending Date/Time: 20241214 00:15:47 -Total Time: 04h:34m:55s +Starting Date/Time: 20241220 01:01:56 +Ending Date/Time: 20241220 05:36:35 +Total Time: 04h:35m:33s Compiles Completed: 37/37 Tests Completed: 166/166 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 08ca47330b..4e2a8cbf31 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,15 +1,15 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -19498cc1894245fe8afe365dd87dbe5d8862b35f +527939eb224c50a4d9f66a6099cc2b8b03baf6c8 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 51f8cd20c15fe39ef1168d59d5077812b6508544 CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-10) + c7ea491e6fd99e459af977bfd57fa14aa6a349eb CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-12-16) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - 507ca48f4586fbeb7b0e23e5cfa9321bc3f02a1d CMEPS-interface/CMEPS (cmeps_v0.4.1-3103-g507ca48f) + b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) @@ -39,300 +39,368 @@ 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-20241212 -COMPARISON DIRECTORY: /work2/noaa/epic/nandoam/stmp/orion/nandoam/FV3_RT/rt_1620443 +COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2703896 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [21:11, 17:57] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [30:52, 27:41](2082 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 18:56] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [27:01, 23:42](1955 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:17, 25:09](2118 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:32, 08:59](1224 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [31:11, 27:40](1856 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:11, 19:58] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [30:56, 24:21](1950 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:10, 08:14] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [33:49, 30:58](1932 MB) - -PASS -- COMPILE 's2swa_intel' [21:10, 17:57] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [33:16, 29:21](2145 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [30:51, 27:28](2144 MB) -PASS -- TEST 'cpld_restart_p8_intel' [17:57, 14:18](1807 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [30:41, 27:17](2160 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [18:11, 14:35](1696 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [27:33, 25:01](2442 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [30:41, 27:21](2125 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [25:42, 22:52](2045 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [30:51, 27:15](2149 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [19:39, 16:02](2717 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:28, 08:59](2709 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [38:02, 22:01](3694 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [25:21, 12:22](3534 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:34, 07:59](2076 MB) - -PASS -- COMPILE 's2sw_intel' [19:10, 16:10] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [29:18, 26:56](1979 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:38, 11:45](2050 MB) - -PASS -- COMPILE 's2swa_debug_intel' [12:10, 08:47] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [25:38, 23:06](2175 MB) - -PASS -- COMPILE 's2sw_debug_intel' [11:10, 07:51] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:20, 09:57](1993 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [19:10, 15:34] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:26, 04:47](2029 MB) - -PASS -- COMPILE 's2s_intel' [19:10, 15:56] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:00, 08:09](3027 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:04, 02:32](3020 MB) -PASS -- TEST 'cpld_restart_c48_intel' [07:59, 02:52](2477 MB) - -PASS -- COMPILE 's2swa_faster_intel' [20:11, 18:35] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [31:37, 28:22](2146 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 19:18] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [32:25, 29:27](2004 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [20:33, 16:04](1245 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [40:24, 35:01](1938 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 07:41] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [38:42, 35:32](1967 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:10, 13:50] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:28, 03:50](684 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:42, 03:35](1572 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:47, 03:42](1572 MB) -PASS -- TEST 'control_latlon_intel' [05:51, 03:32](1575 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:58, 03:36](1573 MB) -PASS -- TEST 'control_c48_intel' [17:00, 14:46](1704 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:32, 08:11](834 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [16:56, 14:44](1713 MB) -PASS -- TEST 'control_c192_intel' [16:13, 13:16](1743 MB) -PASS -- TEST 'control_c384_intel' [20:20, 16:33](1980 MB) -PASS -- TEST 'control_c384gdas_intel' [15:31, 10:02](1335 MB) -PASS -- TEST 'control_stochy_intel' [03:25, 01:49](639 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:53, 01:07](471 MB) -PASS -- TEST 'control_lndp_intel' [03:21, 01:45](643 MB) -PASS -- TEST 'control_iovr4_intel' [05:25, 02:44](644 MB) -PASS -- TEST 'control_iovr5_intel' [05:23, 02:44](635 MB) -PASS -- TEST 'control_p8_intel' [06:23, 04:02](1865 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:21, 03:49](1874 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:30, 03:57](1873 MB) -PASS -- TEST 'control_restart_p8_intel' [05:29, 02:14](1088 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:28, 04:03](1849 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:46, 02:11](1124 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:14, 04:05](1853 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:16, 04:09](1947 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:44, 07:11](1870 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:34, 04:44](1932 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:29, 03:25](1877 MB) -PASS -- TEST 'merra2_thompson_intel' [06:40, 03:44](1873 MB) -PASS -- TEST 'regional_control_intel' [08:44, 06:27](1106 MB) -PASS -- TEST 'regional_restart_intel' [05:37, 03:30](1088 MB) -PASS -- TEST 'regional_decomp_intel' [08:43, 06:55](1102 MB) -PASS -- TEST 'regional_2threads_intel' [06:43, 04:37](1109 MB) -PASS -- TEST 'regional_noquilt_intel' [08:54, 06:19](1409 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:50, 06:30](1114 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:42, 06:28](1107 MB) -PASS -- TEST 'regional_wofs_intel' [09:42, 08:06](1893 MB) - -PASS -- COMPILE 'rrfs_intel' [15:11, 13:14] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [11:14, 08:28](1060 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:04, 05:06](1267 MB) -PASS -- TEST 'rap_decomp_intel' [10:59, 08:49](1013 MB) -PASS -- TEST 'rap_2threads_intel' [10:59, 08:36](1170 MB) -PASS -- TEST 'rap_restart_intel' [10:46, 04:26](1034 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:05, 08:24](1057 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:04, 08:45](1017 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [11:53, 06:22](1065 MB) -PASS -- TEST 'hrrr_control_intel' [07:06, 04:21](1022 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:03, 04:26](1011 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:06, 04:12](1086 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:44, 02:21](936 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:25, 08:20](1048 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:27, 09:56](1974 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:27, 09:33](2018 MB) - -PASS -- COMPILE 'csawmg_intel' [14:11, 12:54] -PASS -- TEST 'control_csawmg_intel' [10:35, 07:36](1017 MB) -PASS -- TEST 'control_ras_intel' [06:31, 03:30](717 MB) - -PASS -- COMPILE 'wam_intel' [14:10, 12:48] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:04, 12:48](1647 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:10, 13:29] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:32, 03:36](1881 MB) -PASS -- TEST 'regional_control_faster_intel' [08:36, 06:15](1105 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:10, 10:01] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:44, 02:16](1599 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:49, 02:16](1596 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:22, 03:02](807 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:44](813 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:40, 04:47](1124 MB) -PASS -- TEST 'control_ras_debug_intel' [04:22, 02:43](820 MB) -PASS -- TEST 'control_diag_debug_intel' [04:46, 02:46](1665 MB) -PASS -- TEST 'control_debug_p8_intel' [04:48, 02:42](1893 MB) -PASS -- TEST 'regional_debug_intel' [19:41, 17:22](1092 MB) -PASS -- TEST 'rap_control_debug_intel' [06:24, 04:56](1196 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:23, 04:44](1197 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:23, 04:53](1200 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:59](1198 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:24, 05:07](1205 MB) -PASS -- TEST 'rap_diag_debug_intel' [10:36, 05:08](1285 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:29, 05:04](1207 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:23, 05:05](1196 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:23, 05:06](1193 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [11:26, 05:00](1202 MB) -PASS -- TEST 'rap_noah_debug_intel' [09:25, 04:52](1199 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [10:27, 04:58](1199 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:26, 07:55](1193 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:26, 04:46](1199 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:26, 05:02](1199 MB) -PASS -- TEST 'rap_flake_debug_intel' [09:26, 05:05](1202 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:33, 08:42](1200 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:11, 06:40] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:45, 13:14](1678 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [19:11, 12:41] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:56, 05:09](1142 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:25, 07:14](1002 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:08, 03:51](922 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:17, 07:29](1076 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:10, 03:46](939 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:02, 03:57](893 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [12:39, 05:27](974 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:46, 02:04](881 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:10, 12:20] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:59, 02:52](1160 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:45, 01:07](1105 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:43, 01:27](1066 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:10, 13:34] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:54, 04:39](973 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:10, 06:46] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:25, 04:53](1086 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:25, 04:43](1075 MB) -PASS -- TEST 'conus13km_debug_intel' [16:54, 13:49](1227 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:52, 14:06](924 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:45, 08:17](1163 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:44, 13:42](1301 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:11, 06:54] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:27, 05:04](1129 MB) - -PASS -- COMPILE 'hafsw_intel' [17:11, 15:35] ( 1 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:24, 06:17](743 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:31, 06:49](1127 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:36, 07:56](815 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [31:26, 28:29](846 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [37:38, 34:40](1025 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:12, 07:48](497 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:36, 09:28](512 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:56, 03:44](377 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:49, 10:56](473 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:59, 05:13](524 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:01, 05:01](528 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:02, 06:17](571 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:34, 01:44](401 MB) -PASS -- TEST 'gnv1_nested_intel' [11:41, 04:31](1716 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:11, 07:33] ( 1462 warnings 1490 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:10, 13:38](580 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:11, 15:06] ( 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [21:19, 15:37](657 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [21:30, 15:24](719 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 15:03] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [19:10, 11:27](710 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:11, 14:04] ( 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [14:20, 08:18](805 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:13, 08:12](790 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:06, 16:27](1201 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:10, 08:19] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:20, 03:00](1151 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:55](1095 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:19, 02:52](1020 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:20, 02:55](1016 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:20, 02:55](1013 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:19, 02:59](1158 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:22, 02:59](1156 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:19, 02:51](1024 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:19, 06:38](1028 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:23, 06:38](1015 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:17, 02:59](1156 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:20, 04:19](2454 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:19, 04:21](2463 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 05:04] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:19, 06:31](1087 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:10, 08:02] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 03:00](1160 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:10, 01:20] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:30, 01:20](253 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 01:07](325 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:42](321 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:40] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:31, 00:37](558 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:33, 00:23](446 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:10, 14:07] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:20, 04:25](1972 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:11, 13:18] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:07, 08:32](1967 MB) - -PASS -- COMPILE 'atml_intel' [16:11, 14:15] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:43, 07:09](1863 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:33, 06:54](1856 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:12, 03:36](1056 MB) - -PASS -- COMPILE 'atml_debug_intel' [09:10, 07:30] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:41, 06:39](1886 MB) - -PASS -- COMPILE 'atmw_intel' [15:10, 13:46] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:19, 02:12](1907 MB) - -PASS -- COMPILE 'atmaero_intel' [15:10, 13:16] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:17, 04:34](1972 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:11, 05:24](1761 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:06, 05:27](1755 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:10, 06:43] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [25:10, 21:12](4474 MB) - -PASS -- COMPILE 'atm_fbh_intel' [14:10, 12:12] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:31, 13:53](1116 MB) - -PASS -- COMPILE 'hafsw_intelllvm' [09:10, 07:57] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [11:43, 08:32](575 MB) - -PASS -- COMPILE 'hafsw_debug_intelllvm' [06:10, 04:53] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [22:08, 20:05](566 MB) +PASS -- COMPILE 's2swa_32bit_intel' [20:11, 16:15] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [36:59, 27:32](2090 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:11, 19:35] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [26:51, 22:07](1956 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:12, 23:17](2126 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:11, 08:50](1230 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [30:59, 26:01](1867 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:10, 18:43] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [25:52, 21:37](1938 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:10, 08:25] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [34:54, 30:35](1924 MB) + +PASS -- COMPILE 's2swa_intel' [20:11, 16:27] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [39:04, 29:54](2140 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [35:53, 26:40](2143 MB) +PASS -- TEST 'cpld_restart_p8_intel' [22:51, 14:27](1806 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [36:51, 28:01](2174 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [21:48, 14:08](1696 MB) +FAILED: TEST TIMED OUT -- TEST 'cpld_2threads_p8_intel' [, ]( MB) +PASS -- TEST 'cpld_decomp_p8_intel' [36:51, 27:25](2136 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [28:42, 21:59](2039 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [36:57, 27:10](2139 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [23:37, 15:51](2717 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [15:09, 08:48](2712 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [30:17, 20:06](3732 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [29:52, 10:57](3542 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [17:38, 08:04](2078 MB) + +PASS -- COMPILE 's2sw_intel' [20:11, 15:55] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [36:38, 27:23](1965 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [20:39, 11:46](2049 MB) + +PASS -- COMPILE 's2swa_debug_intel' [12:10, 08:15] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [25:33, 22:24](2164 MB) + +PASS -- COMPILE 's2sw_debug_intel' [12:10, 08:05] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:11, 10:16](2000 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [18:10, 14:47] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:25, 04:48](2030 MB) + +PASS -- COMPILE 's2s_intel' [18:10, 14:43] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [11:03, 08:44](3037 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [06:00, 03:01](3021 MB) +PASS -- TEST 'cpld_restart_c48_intel' [07:02, 01:51](2482 MB) + +PASS -- COMPILE 's2swa_faster_intel' [21:13, 18:06] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [32:34, 28:14](2142 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:13, 19:40] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [32:23, 29:04](2009 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:53, 14:34](1258 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [36:23, 33:47](1925 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:11, 07:26] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [39:08, 34:18](1970 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:13, 14:23] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:24, 03:44](691 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:47, 03:34](1576 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:50, 03:38](1574 MB) +PASS -- TEST 'control_latlon_intel' [05:43, 03:33](1568 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:52, 03:35](1573 MB) +PASS -- TEST 'control_c48_intel' [17:55, 14:43](1695 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:33, 08:10](832 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [17:55, 14:47](1705 MB) +PASS -- TEST 'control_c192_intel' [15:57, 13:11](1748 MB) +PASS -- TEST 'control_c384_intel' [23:07, 16:47](1986 MB) +PASS -- TEST 'control_c384gdas_intel' [16:47, 09:53](1327 MB) +PASS -- TEST 'control_stochy_intel' [04:24, 01:50](640 MB) +PASS -- TEST 'control_stochy_restart_intel' [04:49, 01:05](466 MB) +PASS -- TEST 'control_lndp_intel' [04:20, 01:43](646 MB) +PASS -- TEST 'control_iovr4_intel' [05:21, 02:43](643 MB) +PASS -- TEST 'control_iovr5_intel' [05:21, 02:46](631 MB) +PASS -- TEST 'control_p8_intel' [12:10, 04:09](1867 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [11:10, 03:27](1874 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:26, 04:01](1867 MB) +PASS -- TEST 'control_restart_p8_intel' [14:11, 02:20](1092 MB) +PASS -- TEST 'control_noqr_p8_intel' [08:09, 04:04](1869 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [13:39, 02:20](1124 MB) +PASS -- TEST 'control_decomp_p8_intel' [13:14, 04:07](1844 MB) +PASS -- TEST 'control_2threads_p8_intel' [14:18, 05:00](1923 MB) +PASS -- TEST 'control_p8_lndp_intel' [13:45, 07:16](1868 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [11:30, 04:53](1933 MB) +PASS -- TEST 'control_p8_mynn_intel' [09:21, 03:26](1879 MB) +PASS -- TEST 'merra2_thompson_intel' [09:35, 03:51](1872 MB) +PASS -- TEST 'regional_control_intel' [13:39, 06:31](1107 MB) +PASS -- TEST 'regional_restart_intel' [05:39, 03:35](1086 MB) +PASS -- TEST 'regional_decomp_intel' [13:39, 06:53](1108 MB) +PASS -- TEST 'regional_2threads_intel' [11:38, 04:39](1053 MB) +PASS -- TEST 'regional_noquilt_intel' [12:45, 06:30](1409 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [15:49, 10:08](1109 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [11:41, 06:33](1116 MB) +PASS -- TEST 'regional_wofs_intel' [11:45, 07:57](1892 MB) + +PASS -- COMPILE 'rrfs_intel' [16:13, 13:43] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [16:14, 08:30](1060 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:01, 05:12](1260 MB) +PASS -- TEST 'rap_decomp_intel' [15:55, 08:46](1013 MB) +PASS -- TEST 'rap_2threads_intel' [18:06, 10:08](1082 MB) +PASS -- TEST 'rap_restart_intel' [07:28, 04:23](1040 MB) +PASS -- TEST 'rap_sfcdiff_intel' [16:18, 08:24](1054 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [17:35, 08:41](1016 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [12:34, 09:46](1072 MB) +PASS -- TEST 'hrrr_control_intel' [13:06, 04:22](1020 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [13:04, 04:27](1010 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [13:23, 05:02](1080 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:43, 02:21](942 MB) +PASS -- TEST 'rrfs_v1beta_intel' [16:45, 08:25](1053 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [15:35, 09:53](1976 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [15:34, 09:33](2017 MB) + +PASS -- COMPILE 'csawmg_intel' [20:12, 14:04] +PASS -- TEST 'control_csawmg_intel' [11:35, 06:38](1011 MB) +PASS -- TEST 'control_ras_intel' [06:27, 03:31](715 MB) + +PASS -- COMPILE 'wam_intel' [18:12, 12:34] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:46, 12:51](1640 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [18:12, 12:58] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:19, 03:24](1869 MB) +PASS -- TEST 'regional_control_faster_intel' [08:36, 06:20](1108 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:12, 09:56] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:42, 02:19](1604 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:51, 02:19](1591 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:28, 03:05](816 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:23, 02:55](808 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:40, 04:23](1126 MB) +PASS -- TEST 'control_ras_debug_intel' [04:22, 02:51](825 MB) +PASS -- TEST 'control_diag_debug_intel' [04:40, 02:47](1668 MB) +PASS -- TEST 'control_debug_p8_intel' [04:45, 02:43](1896 MB) +PASS -- TEST 'regional_debug_intel' [19:40, 17:21](1105 MB) +PASS -- TEST 'rap_control_debug_intel' [06:24, 04:55](1195 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:26, 04:58](1195 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:23, 05:02](1193 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:24, 05:00](1206 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 04:56](1198 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:33, 05:16](1289 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:21, 05:00](1201 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:20, 05:03](1201 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:23, 05:14](1197 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:26, 05:00](1201 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:23, 05:01](1200 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:24, 05:09](1204 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:30, 08:21](1199 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:37, 04:54](1205 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:39, 05:05](1203 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:43, 05:09](1196 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:28, 08:36](1207 MB) + +PASS -- COMPILE 'wam_debug_intel' [12:12, 06:11] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:55, 13:14](1672 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:12, 12:13] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:18, 05:04](1145 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:18, 07:15](999 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:39, 03:52](921 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [13:16, 08:39](989 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:36, 04:32](953 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:15, 03:59](891 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:30, 05:25](980 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:05, 02:03](867 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:13, 12:11] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:50, 02:35](1171 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:42, 01:11](1112 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:47, 01:29](1069 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:13, 12:25] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:46, 04:36](971 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:12, 06:50] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:21, 04:57](1076 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:24, 05:00](1074 MB) +PASS -- TEST 'conus13km_debug_intel' [16:49, 14:15](1224 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:55, 14:11](935 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [15:39, 13:42](1160 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:38, 14:04](1300 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:12, 06:07] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:26, 05:11](1132 MB) + +PASS -- COMPILE 'hafsw_intel' [23:15, 15:04] ( 1 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:14, 05:59](736 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:27, 06:46](1129 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:25, 07:49](850 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [32:28, 29:37](846 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [37:46, 34:54](867 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:03, 07:10](498 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:33, 08:50](503 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:10, 03:32](372 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:31, 09:41](471 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:55, 04:45](525 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:01, 04:31](527 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:56, 05:42](577 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:28, 01:34](403 MB) +PASS -- TEST 'gnv1_nested_intel' [08:12, 04:18](1717 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [14:12, 07:13] ( 1462 warnings 1490 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:58, 13:24](581 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [18:11, 14:13] ( 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:10, 15:20](658 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:11, 15:16](723 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [18:11, 14:28] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:30, 11:11](707 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:12, 15:32] ( 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:16, 08:51](795 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:15, 07:36](795 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:56, 16:20](1199 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [12:12, 09:42] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 02:58](1155 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:54](1117 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:19, 02:50](1025 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:56](1018 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:54](1023 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:19, 02:59](1147 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 03:00](1151 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:50](1019 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:15, 06:30](1026 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:12, 06:30](1002 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:58](1155 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 04:19](2380 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:20, 04:22](2440 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [11:12, 05:27] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:19, 06:35](1082 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:12, 08:41] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:59](1128 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [07:12, 01:41] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:31, 01:02](258 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:56](324 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:36](323 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [06:11, 01:47] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:30, 00:37](557 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:33, 00:22](443 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:14, 13:45] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:17, 04:11](1965 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [20:14, 13:08] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:03, 08:37](1969 MB) + +PASS -- COMPILE 'atml_intel' [19:13, 13:40] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:34, 04:51](1862 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:34, 04:56](1862 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:57, 02:45](1052 MB) + +PASS -- COMPILE 'atml_debug_intel' [11:13, 07:40] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:33, 05:58](1887 MB) + +PASS -- COMPILE 'atmw_intel' [17:12, 13:34] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:24, 02:20](1902 MB) + +PASS -- COMPILE 'atmaero_intel' [17:12, 13:51] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:14, 04:36](1966 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:12, 05:24](1748 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:01, 05:28](1772 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:11, 06:42] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [24:03, 20:52](4491 MB) + +PASS -- COMPILE 'atm_fbh_intel' [14:12, 11:56] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:30, 13:52](1111 MB) + +PASS -- COMPILE 'hafsw_intelllvm' [10:11, 07:48] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [10:12, 08:09](571 MB) + +PASS -- COMPILE 'hafsw_debug_intelllvm' [06:10, 04:39] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [21:53, 19:46](562 MB) SYNOPSIS: -Starting Date/Time: 20241213 13:42:22 -Ending Date/Time: 20241213 15:40:57 -Total Time: 01h:59m:15s +Starting Date/Time: 20241219 18:58:05 +Ending Date/Time: 20241219 21:01:38 +Total Time: 02h:04m:29s Compiles Completed: 45/45 -Tests Completed: 191/191 +Tests Completed: 190/191 +Failed Tests: +* TEST cpld_2threads_p8_intel: FAILED: TEST TIMED OUT +-- LOG: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2703896/cpld_2threads_p8_intel/err + +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: +527939eb224c50a4d9f66a6099cc2b8b03baf6c8 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + c7ea491e6fd99e459af977bfd57fa14aa6a349eb CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-12-16) + ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) + 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) + b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) + 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) + 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) + dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) +-179cae1dd84401cf25d250bd9102e66560a9d328 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) + 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) + 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) + 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-20241212 +COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2621320 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_intel' [19:11, 16:55] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [32:27, 29:14](2138 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [23:25, 21:00](2336 MB) + +SYNOPSIS: +Starting Date/Time: 20241222 09:05:24 +Ending Date/Time: 20241222 09:58:24 +Total Time: 00h:53m:19s +Compiles Completed: 1/1 +Tests Completed: 2/2 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 8f53d5f439..9e6ebe0179 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,15 +1,15 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -19498cc1894245fe8afe365dd87dbe5d8862b35f +572eba512daea70468af6d74c0134781118e9f0a Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 51f8cd20c15fe39ef1168d59d5077812b6508544 CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-10) + c7ea491e6fd99e459af977bfd57fa14aa6a349eb CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-12-16) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - 507ca48f4586fbeb7b0e23e5cfa9321bc3f02a1d CMEPS-interface/CMEPS (cmeps_v0.4.1-3103-g507ca48f) + b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) @@ -39,241 +39,310 @@ 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-20241212 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10719 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3378192 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:29, 11:24] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:47, 02:17](3087 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:30, 11:50] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [07:45, 03:39](1820 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [42:22, 03:00](1828 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [41:40, 02:32](975 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [07:46, 03:31](1792 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:30, 12:24] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [07:45, 01:56](1808 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:18] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [14:55, 02:25](1835 MB) - -PASS -- COMPILE 's2swa_intel' [13:29, 11:35] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:47, 02:53](3122 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:47, 02:40](3106 MB) -PASS -- TEST 'cpld_restart_p8_intel' [44:54, 02:52](3042 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:47, 02:58](3135 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [44:57, 02:48](3066 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [08:46, 01:49](3356 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:46, 01:44](3113 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:47, 02:26](3058 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:47, 02:07](3120 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [08:55, 05:39](4112 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [22:13, 05:02](4253 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:47, 02:00](3096 MB) - -PASS -- COMPILE 's2sw_intel' [13:29, 10:46] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:47, 02:21](1831 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:46, 02:55](1881 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:27, 10:04] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:48, 02:06](1886 MB) - -PASS -- COMPILE 's2s_intel' [12:27, 10:17] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:48, 01:59](2860 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [09:48, 01:48](2873 MB) -PASS -- TEST 'cpld_restart_c48_intel' [01:44, 02:15](2290 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:34, 16:18] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [03:41, 02:38](3117 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:29, 11:38] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [08:47, 02:38](1824 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [33:58, 02:24](1004 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [33:32, 02:59](1794 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:28, 05:12] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [07:26, 02:14](1856 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:28, 09:25] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [57:42, 02:05](564 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [53:49, 02:17](1464 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [52:22, 01:51](1475 MB) -PASS -- TEST 'control_latlon_intel' [52:09, 02:05](1470 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [48:59, 01:52](1467 MB) -PASS -- TEST 'control_c48_intel' [48:02, 01:32](1565 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [47:18, 02:01](689 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [47:03, 01:52](1569 MB) -PASS -- TEST 'control_c192_intel' [46:18, 02:10](1587 MB) -PASS -- TEST 'control_c384_intel' [45:56, 03:03](1878 MB) -PASS -- TEST 'control_c384gdas_intel' [44:59, 03:25](1077 MB) -PASS -- TEST 'control_stochy_intel' [44:30, 01:56](521 MB) -PASS -- TEST 'control_stochy_restart_intel' [34:55, 01:56](326 MB) -PASS -- TEST 'control_lndp_intel' [43:07, 02:00](519 MB) -PASS -- TEST 'control_iovr4_intel' [43:05, 02:21](521 MB) -PASS -- TEST 'control_iovr5_intel' [43:00, 02:21](519 MB) -PASS -- TEST 'control_p8_intel' [43:00, 02:02](1758 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [43:00, 02:36](1754 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [42:27, 02:27](1759 MB) -PASS -- TEST 'control_restart_p8_intel' [32:33, 02:10](912 MB) -PASS -- TEST 'control_noqr_p8_intel' [40:47, 02:27](1746 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [31:18, 02:05](918 MB) -PASS -- TEST 'control_decomp_p8_intel' [40:10, 02:23](1756 MB) -PASS -- TEST 'control_2threads_p8_intel' [40:10, 02:39](1834 MB) -PASS -- TEST 'control_p8_lndp_intel' [39:40, 02:06](1761 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [39:40, 02:55](1811 MB) -PASS -- TEST 'control_p8_mynn_intel' [39:23, 02:57](1772 MB) -PASS -- TEST 'merra2_thompson_intel' [38:55, 03:19](1761 MB) -PASS -- TEST 'regional_control_intel' [38:26, 01:26](871 MB) -PASS -- TEST 'regional_restart_intel' [20:14, 01:31](851 MB) -PASS -- TEST 'regional_decomp_intel' [38:18, 01:52](880 MB) -PASS -- TEST 'regional_2threads_intel' [37:04, 02:00](926 MB) -PASS -- TEST 'regional_noquilt_intel' [34:34, 01:44](1204 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [33:20, 02:11](877 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [33:20, 01:27](870 MB) -PASS -- TEST 'regional_wofs_intel' [32:31, 01:46](1570 MB) - -PASS -- COMPILE 'rrfs_intel' [10:26, 08:42] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [59:21, 02:14](896 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [59:22, 01:55](1057 MB) -PASS -- TEST 'rap_decomp_intel' [59:21, 02:06](907 MB) -PASS -- TEST 'rap_2threads_intel' [59:21, 02:16](990 MB) -PASS -- TEST 'rap_restart_intel' [31:48, 02:52](778 MB) -PASS -- TEST 'rap_sfcdiff_intel' [59:21, 02:52](901 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [59:21, 02:41](902 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [31:07, 02:57](777 MB) -PASS -- TEST 'hrrr_control_intel' [59:21, 02:45](901 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [59:21, 02:44](903 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [58:26, 02:57](975 MB) -PASS -- TEST 'hrrr_control_restart_intel' [31:07, 02:20](733 MB) -PASS -- TEST 'rrfs_v1beta_intel' [29:55, 02:16](897 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [29:15, 01:53](1857 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [29:00, 02:20](1848 MB) - -PASS -- COMPILE 'csawmg_intel' [15:32, 08:06] -PASS -- TEST 'control_csawmg_intel' [28:43, 01:44](857 MB) -PASS -- TEST 'control_ras_intel' [28:02, 01:34](557 MB) - -PASS -- COMPILE 'wam_intel' [15:32, 08:13] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [28:02, 01:19](1551 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [16:33, 08:22] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [27:47, 02:01](1749 MB) -PASS -- TEST 'regional_control_faster_intel' [27:24, 01:52](868 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [15:32, 07:34] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [27:03, 01:24](1491 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [25:26, 02:11](1493 MB) -PASS -- TEST 'control_stochy_debug_intel' [22:12, 01:20](693 MB) -PASS -- TEST 'control_lndp_debug_intel' [21:54, 01:45](694 MB) -PASS -- TEST 'control_csawmg_debug_intel' [20:44, 01:40](998 MB) -PASS -- TEST 'control_ras_debug_intel' [20:12, 02:22](704 MB) -PASS -- TEST 'control_diag_debug_intel' [19:58, 02:03](1554 MB) -PASS -- TEST 'control_debug_p8_intel' [19:20, 01:25](1792 MB) -PASS -- TEST 'regional_debug_intel' [18:00, 01:25](892 MB) -PASS -- TEST 'rap_control_debug_intel' [17:43, 01:46](1079 MB) -PASS -- TEST 'hrrr_control_debug_intel' [17:42, 01:38](1067 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [17:40, 01:37](1075 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [17:20, 01:44](1077 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [16:24, 01:28](1079 MB) -PASS -- TEST 'rap_diag_debug_intel' [16:18, 02:09](1159 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [16:12, 02:14](1080 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [15:23, 01:49](1081 MB) -PASS -- TEST 'rap_lndp_debug_intel' [15:16, 01:55](1078 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [15:15, 01:52](1090 MB) -PASS -- TEST 'rap_noah_debug_intel' [15:13, 01:48](1070 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [13:31, 01:26](1075 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:28, 02:24](1073 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [13:25, 01:36](1069 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [12:29, 02:17](1074 MB) -PASS -- TEST 'rap_flake_debug_intel' [12:21, 02:20](1078 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:10, 02:38](1077 MB) - -PASS -- COMPILE 'wam_debug_intel' [11:26, 04:21] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [11:45, 01:56](1577 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:31, 08:03] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:23, 02:27](929 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:36, 02:51](783 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [10:03, 03:30](776 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:45, 02:37](835 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:24, 03:04](824 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:20, 02:44](776 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [58:15, 02:15](678 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [00:15, 01:31](663 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:28, 07:59] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [09:09, 01:54](990 MB) -PASS -- TEST 'conus13km_2threads_intel' [59:14, 02:12](990 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [58:42, 01:19](865 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:28, 08:07] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:16, 02:07](809 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [15:32, 04:33] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:54, 02:24](952 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:09, 01:32](949 MB) -PASS -- TEST 'conus13km_debug_intel' [06:03, 01:35](1041 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [06:03, 01:26](713 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [05:50, 01:26](1042 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [05:44, 01:28](1107 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:31, 04:20] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:50, 02:05](978 MB) - -PASS -- COMPILE 'hafsw_intel' [19:42, 09:50] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [04:44, 02:28](591 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:44, 01:50](958 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [04:40, 02:42](644 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [04:40, 03:12](668 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [04:39, 02:36](690 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [02:59, 02:14](376 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [02:53, 03:09](387 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [01:54, 02:31](373 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [01:53, 03:48](365 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [01:14, 02:16](401 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [58:16, 02:21](464 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [57:40, 02:35](474 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [57:24, 01:29](301 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [15:38, 04:52] ( 1444 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [57:25, 01:43](500 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [20:45, 09:40] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [56:20, 02:04](512 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [54:41, 02:07](698 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [20:45, 09:53] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [54:35, 02:41](702 MB) - -PASS -- COMPILE 'hafs_all_intel' [19:35, 09:07] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [54:16, 02:22](638 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [54:00, 02:30](622 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [53:46, 02:03](879 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [19:44, 10:01] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [53:10, 02:33](1818 MB) - -PASS -- COMPILE 'atml_intel' [19:43, 09:35] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [13:36, 05:20] ( 866 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [15:29, 08:32] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [52:34, 02:22](3009 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [52:09, 02:00](2891 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [51:56, 02:56](2906 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [11:26, 04:24] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [51:49, 02:31](4375 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:28, 11:32] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:25, 11:06](3194 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:28, 11:44] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:16, 15:59](1907 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:37, 16:52](1947 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [14:21, 07:50](1092 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:19, 18:27](1885 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:28, 11:53] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:15, 15:33](1908 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:18] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [33:36, 28:24](1950 MB) + +PASS -- COMPILE 's2swa_intel' [23:39, 21:15] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [18:02, 14:31](3228 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:21, 14:15](3225 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:16, 07:46](3153 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [17:56, 14:19](3244 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:22, 07:57](3170 MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_2threads_p8_intel' [, ]( MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:56, 13:55](3222 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:11, 11:25](3165 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:21, 14:32](3227 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [28:57, 19:59](4234 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:24, 12:48](4377 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:02, 08:12](3199 MB) + +PASS -- COMPILE 's2sw_intel' [24:39, 22:37] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:43, 07:53](1921 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:13, 12:24](1981 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:28, 11:40] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:58, 04:57](1969 MB) + +PASS -- COMPILE 's2s_intel' [24:39, 22:14] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:42, 06:12](2883 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:38, 02:09](2891 MB) +PASS -- TEST 'cpld_restart_c48_intel' [06:13, 01:29](2308 MB) + +PASS -- COMPILE 's2swa_faster_intel' [28:44, 26:12] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [22:35, 14:08](3231 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [25:41, 23:26] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [29:05, 25:53](1921 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:19, 13:09](1113 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:15, 30:37](1900 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:32, 14:33] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:11, 30:23](1971 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [30:50, 27:50] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:41, 03:58](663 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:56, 03:24](1561 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:00, 03:33](1563 MB) +PASS -- TEST 'control_latlon_intel' [05:56, 03:15](1565 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:06, 03:13](1564 MB) +PASS -- TEST 'control_c48_intel' [13:26, 10:37](1586 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:08, 05:57](707 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [13:22, 10:28](1584 MB) +PASS -- TEST 'control_c192_intel' [14:23, 11:40](1686 MB) +PASS -- TEST 'control_c384_intel' [17:50, 14:05](1984 MB) +PASS -- TEST 'control_c384gdas_intel' [16:36, 09:12](1164 MB) +PASS -- TEST 'control_stochy_intel' [04:31, 01:57](618 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:35, 01:17](424 MB) +PASS -- TEST 'control_lndp_intel' [03:29, 01:50](616 MB) +PASS -- TEST 'control_iovr4_intel' [04:33, 02:44](613 MB) +PASS -- TEST 'control_iovr5_intel' [06:43, 02:46](619 MB) +PASS -- TEST 'control_p8_intel' [08:17, 03:50](1853 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:38, 03:11](1858 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:31, 03:43](1864 MB) +PASS -- TEST 'control_restart_p8_intel' [06:38, 02:23](1012 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:01, 03:45](1848 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:02, 02:09](1019 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:50, 03:44](1857 MB) +PASS -- TEST 'control_2threads_p8_intel' [11:31, 07:52](1935 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:01, 06:25](1854 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:30, 04:20](1907 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:17, 03:26](1870 MB) +PASS -- TEST 'merra2_thompson_intel' [07:55, 03:45](1858 MB) +PASS -- TEST 'regional_control_intel' [07:56, 05:21](894 MB) +PASS -- TEST 'regional_restart_intel' [05:53, 03:08](867 MB) +PASS -- TEST 'regional_decomp_intel' [07:53, 05:35](885 MB) +PASS -- TEST 'regional_2threads_intel' [09:56, 07:43](1017 MB) +PASS -- TEST 'regional_noquilt_intel' [07:52, 05:20](1221 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:59, 05:16](899 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:55, 05:11](893 MB) +PASS -- TEST 'regional_wofs_intel' [09:51, 06:56](1582 MB) + +PASS -- COMPILE 'rrfs_intel' [21:39, 17:46] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [11:37, 07:28](1000 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:18, 04:38](1156 MB) +PASS -- TEST 'rap_decomp_intel' [11:37, 07:41](1007 MB) +PASS -- TEST 'rap_2threads_intel' [20:44, 16:10](1080 MB) +PASS -- TEST 'rap_restart_intel' [08:06, 04:01](882 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:24, 07:21](1003 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:24, 07:39](997 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:35, 05:32](885 MB) +PASS -- TEST 'hrrr_control_intel' [08:22, 03:54](996 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:22, 04:03](996 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [11:50, 08:06](1068 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:35, 02:11](831 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:27, 07:10](997 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:40, 09:33](1955 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:40, 09:18](1947 MB) + +PASS -- COMPILE 'csawmg_intel' [18:33, 15:04] +PASS -- TEST 'control_csawmg_intel' [09:55, 06:58](955 MB) +PASS -- TEST 'control_ras_intel' [06:33, 03:35](653 MB) + +PASS -- COMPILE 'wam_intel' [31:50, 28:39] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:14, 11:56](1642 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:29, 10:55] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:24, 03:13](1849 MB) +PASS -- TEST 'regional_control_faster_intel' [08:56, 05:08](889 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [12:26, 10:22] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:57, 02:49](1607 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:08, 02:46](1608 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:34, 03:43](799 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:35, 03:20](802 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:02, 05:04](1108 MB) +PASS -- TEST 'control_ras_debug_intel' [05:32, 03:14](809 MB) +PASS -- TEST 'control_diag_debug_intel' [06:02, 03:16](1661 MB) +PASS -- TEST 'control_debug_p8_intel' [06:51, 03:12](1897 MB) +PASS -- TEST 'regional_debug_intel' [22:20, 18:35](927 MB) +PASS -- TEST 'rap_control_debug_intel' [08:39, 05:40](1188 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:42, 05:32](1185 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:39, 05:39](1186 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [09:38, 05:47](1186 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:40, 05:47](1190 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:46, 06:11](1269 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:36, 05:55](1190 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:35, 05:59](1188 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:38, 05:39](1189 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:35, 05:39](1189 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:34, 05:41](1182 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:38, 05:48](1187 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:42, 08:57](1183 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:36, 05:43](1180 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:40, 06:02](1191 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:36, 05:42](1188 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:48, 09:46](1186 MB) + +PASS -- COMPILE 'wam_debug_intel' [13:27, 11:56] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [17:20, 14:21](1683 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [21:36, 19:34] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:24, 04:24](1031 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:24, 06:05](880 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:50, 03:26](878 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [17:22, 13:53](933 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [12:27, 07:14](927 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:49, 03:30](871 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:35, 04:43](791 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:45, 01:56](761 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:29, 12:04] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:12, 02:24](1079 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:02, 02:12](1062 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:01, 01:35](958 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:27, 09:36] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:04, 04:18](898 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:24, 07:27] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:33, 05:22](1063 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:34, 05:27](1064 MB) +PASS -- TEST 'conus13km_debug_intel' [18:18, 15:03](1152 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:13, 14:52](840 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [25:18, 23:13](1129 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:09, 14:52](1218 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:22, 07:50] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:33, 05:32](1087 MB) + +PASS -- COMPILE 'hafsw_intel' [13:27, 11:56] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:41, 06:12](684 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:42, 07:24](1053 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:01, 07:36](742 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:47, 13:00](768 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:07, 14:11](787 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:10, 05:57](464 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:46, 07:25](504 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:17, 03:15](386 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:59, 08:41](439 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:08, 04:21](497 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:07, 03:59](499 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:16, 04:55](561 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:37, 02:06](409 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:25, 08:16] ( 1444 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:29, 14:26](609 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:32, 16:07] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:25, 08:16](614 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:31, 08:17](786 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:29, 10:27] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:41, 06:47](786 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:30, 11:39] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:45, 07:19](731 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:42, 07:09](772 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:39, 16:05](891 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:37, 10:40] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:43, 03:56](1913 MB) + +PASS -- COMPILE 'atml_intel' [18:34, 15:55] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [09:33, 07:19] ( 866 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [15:31, 13:59] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [10:09, 04:42](3120 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:05, 05:22](2997 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:51, 05:10](3005 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [13:28, 11:18] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [26:54, 22:30](4482 MB) SYNOPSIS: -Starting Date/Time: 20241213 20:37:26 -Ending Date/Time: 20241213 22:40:47 -Total Time: 02h:04m:00s +Starting Date/Time: 20241223 13:30:59 +Ending Date/Time: 20241223 15:19:42 +Total Time: 01h:49m:35s Compiles Completed: 33/33 -Tests Completed: 157/157 +Tests Completed: 156/157 +Failed Tests: +* TEST cpld_2threads_p8_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/NickSzapiro-NOAA/ufs-weather-model/tests/logs/log_wcoss2/run_cpld_2threads_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 WCOSS2 REGRESSION TESTING LOG==== +====START OF WCOSS2 REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +1da0371b3c5d95ff94145c79eb881788618a5f6e + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + c7ea491e6fd99e459af977bfd57fa14aa6a349eb CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-12-16) + ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) + 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) + b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) + 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) + 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) + dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) +-179cae1dd84401cf25d250bd9102e66560a9d328 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) + 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) + 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) + 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: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241212 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2149886 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: GFS-DEV +* (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_intel' [13:27, 11:43] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_2threads_p8_intel' [38:55, 30:24](3449 MB) + +SYNOPSIS: +Starting Date/Time: 20241223 17:26:17 +Ending Date/Time: 20241223 18:19:55 +Total Time: 00h:54m:06s +Compiles Completed: 1/1 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/parm/params_grib2_tbl_new b/tests/parm/params_grib2_tbl_new old mode 100755 new mode 100644 diff --git a/tests/parm/ufs.configure.atm.IN b/tests/parm/ufs.configure.atm.IN index 3b6a305247..44dd5667b8 100644 --- a/tests/parm/ufs.configure.atm.IN +++ b/tests/parm/ufs.configure.atm.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: @[esmf_logkind] -globalResourceControl: false +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: ATM @@ -15,6 +15,7 @@ EARTH_attributes:: # 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 diff --git a/tests/parm/ufs.configure.atm_esmf.IN b/tests/parm/ufs.configure.atm_esmf.IN deleted file mode 100644 index 8eb7b94dc7..0000000000 --- a/tests/parm/ufs.configure.atm_esmf.IN +++ /dev/null @@ -1,27 +0,0 @@ -############################################# -#### UFS Run-Time Configuration File ###### -############################################# - -# ESMF # -logKindFlag: @[esmf_logkind] -globalResourceControl: true - -# EARTH # -EARTH_component_list: ATM -EARTH_attributes:: - Verbosity = 0 -:: - -# 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 -:: - -# Run Sequence # -runSeq:: - ATM -:: diff --git a/tests/parm/ufs.configure.atm_lm4.IN b/tests/parm/ufs.configure.atm_lm4.IN index 16bc68285d..2eaa5111c7 100644 --- a/tests/parm/ufs.configure.atm_lm4.IN +++ b/tests/parm/ufs.configure.atm_lm4.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: MED ATM LND diff --git a/tests/parm/ufs.configure.atm_lnd.IN b/tests/parm/ufs.configure.atm_lnd.IN index 4210c3bf0f..6a01acf8cf 100644 --- a/tests/parm/ufs.configure.atm_lnd.IN +++ b/tests/parm/ufs.configure.atm_lnd.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: MED ATM LND diff --git a/tests/parm/ufs.configure.atmaero.IN b/tests/parm/ufs.configure.atmaero.IN index 6c60333e07..a23b750941 100644 --- a/tests/parm/ufs.configure.atmaero.IN +++ b/tests/parm/ufs.configure.atmaero.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: @[esmf_logkind] -globalResourceControl: false +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: ATM CHM @@ -15,6 +15,7 @@ EARTH_attributes:: # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 :: @@ -22,6 +23,7 @@ ATM_attributes:: # CHM # CHM_model: @[chm_model] CHM_petlist_bounds: @[chm_petlist_bounds] +CHM_omp_num_threads: @[chm_omp_num_threads] CHM_attributes:: Verbosity = 0 :: diff --git a/tests/parm/ufs.configure.atmaero_esmf.IN b/tests/parm/ufs.configure.atmaero_esmf.IN deleted file mode 100644 index 0c20f20905..0000000000 --- a/tests/parm/ufs.configure.atmaero_esmf.IN +++ /dev/null @@ -1,40 +0,0 @@ -############################################# -#### UFS Run-Time Configuration File ###### -############################################# - -# ESMF # -logKindFlag: @[esmf_logkind] -globalResourceControl: true - -# EARTH # -EARTH_component_list: ATM CHM -EARTH_attributes:: - Verbosity = 0 -:: - -# ATM # -ATM_model: @[atm_model] -ATM_petlist_bounds: @[atm_petlist_bounds] -ATM_omp_num_threads: @[atm_omp_num_threads] -ATM_attributes:: - Verbosity = 0 -:: - -# CHM # -CHM_model: @[chm_model] -CHM_petlist_bounds: @[chm_petlist_bounds] -CHM_omp_num_threads: @[chm_omp_num_threads] -CHM_attributes:: - Verbosity = 0 -:: - -# Run Sequence # -runSeq:: - @@[coupling_interval_sec] - ATM phase1 - ATM -> CHM - CHM - CHM -> ATM - ATM phase2 - @ -:: diff --git a/tests/parm/ufs.configure.atmaq.IN b/tests/parm/ufs.configure.atmaq.IN index 7c725ec158..bd7d712e98 100644 --- a/tests/parm/ufs.configure.atmaq.IN +++ b/tests/parm/ufs.configure.atmaq.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: ATM AQM diff --git a/tests/parm/ufs.configure.atmw.IN b/tests/parm/ufs.configure.atmw.IN index 3d9caa18e7..7a5b142ee3 100644 --- a/tests/parm/ufs.configure.atmw.IN +++ b/tests/parm/ufs.configure.atmw.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: MED ATM WAV diff --git a/tests/parm/ufs.configure.blocked_atm_wav.IN b/tests/parm/ufs.configure.blocked_atm_wav.IN index b0354b287c..8ee55464bd 100644 --- a/tests/parm/ufs.configure.blocked_atm_wav.IN +++ b/tests/parm/ufs.configure.blocked_atm_wav.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: ATM WAV diff --git a/tests/parm/ufs.configure.blocked_atm_wav_2way.IN b/tests/parm/ufs.configure.blocked_atm_wav_2way.IN index d66d77eede..7b502f567e 100644 --- a/tests/parm/ufs.configure.blocked_atm_wav_2way.IN +++ b/tests/parm/ufs.configure.blocked_atm_wav_2way.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: ATM WAV diff --git a/tests/parm/ufs.configure.cpld_atm_fbh.IN b/tests/parm/ufs.configure.cpld_atm_fbh.IN index 6b586d6585..60d464c9e0 100644 --- a/tests/parm/ufs.configure.cpld_atm_fbh.IN +++ b/tests/parm/ufs.configure.cpld_atm_fbh.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: ATM FBH diff --git a/tests/parm/ufs.configure.datm_cdeps.IN b/tests/parm/ufs.configure.datm_cdeps.IN index afaa2f98cf..01e016fce4 100644 --- a/tests/parm/ufs.configure.datm_cdeps.IN +++ b/tests/parm/ufs.configure.datm_cdeps.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: MED ATM OCN ICE diff --git a/tests/parm/ufs.configure.hafs_atm.IN b/tests/parm/ufs.configure.hafs_atm.IN index 2d4ab6996b..3f98d6d693 100644 --- a/tests/parm/ufs.configure.hafs_atm.IN +++ b/tests/parm/ufs.configure.hafs_atm.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: ATM diff --git a/tests/parm/ufs.configure.hafs_atm_docn.IN b/tests/parm/ufs.configure.hafs_atm_docn.IN index 09e469b5b9..2a65426232 100644 --- a/tests/parm/ufs.configure.hafs_atm_docn.IN +++ b/tests/parm/ufs.configure.hafs_atm_docn.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: MED ATM OCN diff --git a/tests/parm/ufs.configure.hafs_atm_ocn.IN b/tests/parm/ufs.configure.hafs_atm_ocn.IN index 91dd787e69..89f67b57a2 100644 --- a/tests/parm/ufs.configure.hafs_atm_ocn.IN +++ b/tests/parm/ufs.configure.hafs_atm_ocn.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: MED ATM OCN diff --git a/tests/parm/ufs.configure.hafs_atm_ocn_wav.IN b/tests/parm/ufs.configure.hafs_atm_ocn_wav.IN index 9b089d556a..62d28b351f 100644 --- a/tests/parm/ufs.configure.hafs_atm_ocn_wav.IN +++ b/tests/parm/ufs.configure.hafs_atm_ocn_wav.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI_ON -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: MED ATM OCN WAV diff --git a/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN b/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN index 47f36bad1f..b289a36b4d 100644 --- a/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN +++ b/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI_ON -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: MED ATM OCN WAV diff --git a/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN b/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN index 81930e3209..eb023c2570 100644 --- a/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN +++ b/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI_ON -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: MED ATM OCN WAV diff --git a/tests/parm/ufs.configure.hafs_atm_wav.IN b/tests/parm/ufs.configure.hafs_atm_wav.IN index bd0192db36..4d0a38511f 100644 --- a/tests/parm/ufs.configure.hafs_atm_wav.IN +++ b/tests/parm/ufs.configure.hafs_atm_wav.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI_ON -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: MED ATM WAV diff --git a/tests/parm/ufs.configure.leapfrog_atm_wav.IN b/tests/parm/ufs.configure.leapfrog_atm_wav.IN index fe33f5da9f..89079607af 100644 --- a/tests/parm/ufs.configure.leapfrog_atm_wav.IN +++ b/tests/parm/ufs.configure.leapfrog_atm_wav.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: @[esmf_logkind] -globalResourceControl: false +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: ATM WAV @@ -15,6 +15,7 @@ EARTH_attributes:: # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 DumpFields = @[DumpFields] @@ -23,6 +24,7 @@ ATM_attributes:: # WAV # WAV_model: @[wav_model] WAV_petlist_bounds: @[wav_petlist_bounds] +WAV_omp_num_threads: @[wav_omp_num_threads] WAV_attributes:: Verbosity = 0 :: diff --git a/tests/parm/ufs.configure.leapfrog_atm_wav_esmf.IN b/tests/parm/ufs.configure.leapfrog_atm_wav_esmf.IN deleted file mode 100644 index c4b6055fd1..0000000000 --- a/tests/parm/ufs.configure.leapfrog_atm_wav_esmf.IN +++ /dev/null @@ -1,41 +0,0 @@ -############################################# -#### UFS Run-Time Configuration File ###### -############################################# - -# ESMF # -logKindFlag: @[esmf_logkind] -globalResourceControl: true - -# EARTH # -EARTH_component_list: ATM WAV -EARTH_attributes:: - Verbosity = 0 -:: - -# ATM # -ATM_model: @[atm_model] -ATM_petlist_bounds: @[atm_petlist_bounds] -ATM_omp_num_threads: @[atm_omp_num_threads] -ATM_attributes:: - Verbosity = 0 - DumpFields = @[DumpFields] -:: - -# WAV # -WAV_model: @[wav_model] -WAV_petlist_bounds: @[wav_petlist_bounds] -WAV_omp_num_threads: @[wav_omp_num_threads] -WAV_attributes:: - Verbosity = 0 -:: - - - -# Run Sequence # -runSeq:: - @@[coupling_interval_sec] - ATM - ATM -> WAV - WAV - @ -:: diff --git a/tests/parm/ufs.configure.s2s.IN b/tests/parm/ufs.configure.s2s.IN index 9ff939a6c7..f70b837c7a 100644 --- a/tests/parm/ufs.configure.s2s.IN +++ b/tests/parm/ufs.configure.s2s.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: @[esmf_logkind] -globalResourceControl: false +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: MED ATM OCN ICE @@ -15,11 +15,13 @@ EARTH_attributes:: # MED # MED_model: @[med_model] MED_petlist_bounds: @[med_petlist_bounds] +MED_omp_num_threads: @[med_omp_num_threads] :: # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 DumpFields = @[DumpFields] @@ -30,6 +32,7 @@ ATM_attributes:: # OCN # OCN_model: @[ocn_model] OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_omp_num_threads: @[ocn_omp_num_threads] OCN_attributes:: Verbosity = 0 DumpFields = @[DumpFields] @@ -43,6 +46,7 @@ OCN_attributes:: # ICE # ICE_model: @[ice_model] ICE_petlist_bounds: @[ice_petlist_bounds] +ICE_omp_num_threads: @[ice_omp_num_threads] ICE_attributes:: Verbosity = 0 DumpFields = @[DumpFields] @@ -93,6 +97,20 @@ MED_attributes:: coupling_mode = @[CPLMODE] pio_rearranger = @[pio_rearranger] ocean_albedo_limit = @[ocean_albedo_limit] + histaux_ice2med_file1_auxname = ice.1h.aux + histaux_ice2med_file1_doavg = .false. + histaux_ice2med_file1_enabled = @[histaux_enabled] + histaux_ice2med_file1_flds = all + histaux_ice2med_file1_history_n = @[MED_history_n] + histaux_ice2med_file1_history_option = nhours + histaux_ice2med_file1_ntperfile = 9999 + histaux_ocn2med_file1_auxname = ocn.1h.aux + histaux_ocn2med_file1_doavg = .false. + histaux_ocn2med_file1_enabled = @[histaux_enabled] + histaux_ocn2med_file1_flds = all + histaux_ocn2med_file1_history_n = @[MED_history_n] + histaux_ocn2med_file1_history_option = nhours + histaux_ocn2med_file1_ntperfile = 9999 :: ALLCOMP_attributes:: diff --git a/tests/parm/ufs.configure.s2s_aoflux_esmf.IN b/tests/parm/ufs.configure.s2s_aoflux.IN similarity index 98% rename from tests/parm/ufs.configure.s2s_aoflux_esmf.IN rename to tests/parm/ufs.configure.s2s_aoflux.IN index c5c2705e03..f2e416f931 100644 --- a/tests/parm/ufs.configure.s2s_aoflux_esmf.IN +++ b/tests/parm/ufs.configure.s2s_aoflux.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: MED ATM OCN ICE diff --git a/tests/parm/ufs.configure.s2s_esmf.IN b/tests/parm/ufs.configure.s2s_esmf.IN deleted file mode 100644 index 999731d927..0000000000 --- a/tests/parm/ufs.configure.s2s_esmf.IN +++ /dev/null @@ -1,139 +0,0 @@ -############################################# -#### UFS Run-Time Configuration File ###### -############################################# - -# ESMF # -logKindFlag: @[esmf_logkind] -globalResourceControl: true - -# EARTH # -EARTH_component_list: MED ATM OCN ICE -EARTH_attributes:: - Verbosity = 0 -:: - -# MED # -MED_model: @[med_model] -MED_petlist_bounds: @[med_petlist_bounds] -MED_omp_num_threads: @[med_omp_num_threads] -:: - -# ATM # -ATM_model: @[atm_model] -ATM_petlist_bounds: @[atm_petlist_bounds] -ATM_omp_num_threads: @[atm_omp_num_threads] -ATM_attributes:: - Verbosity = 0 - DumpFields = @[DumpFields] - ProfileMemory = false - OverwriteSlice = true -:: - -# OCN # -OCN_model: @[ocn_model] -OCN_petlist_bounds: @[ocn_petlist_bounds] -OCN_omp_num_threads: @[ocn_omp_num_threads] -OCN_attributes:: - Verbosity = 0 - DumpFields = @[DumpFields] - ProfileMemory = false - OverwriteSlice = true - mesh_ocn = @[MESH_OCN] - use_coldstart = @[use_coldstart] - use_mommesh = @[use_mommesh] -:: - -# ICE # -ICE_model: @[ice_model] -ICE_petlist_bounds: @[ice_petlist_bounds] -ICE_omp_num_threads: @[ice_omp_num_threads] -ICE_attributes:: - Verbosity = 0 - DumpFields = @[DumpFields] - ProfileMemory = false - OverwriteSlice = true - mesh_ice = @[MESH_ICE] - eps_imesh = @[eps_imesh] - stop_n = @[RESTART_N] - stop_option = nhours - stop_ymd = -999 -:: - -# CMEPS warm run sequence -runSeq:: -@@[coupling_interval_slow_sec] - MED med_phases_prep_ocn_avg - MED -> OCN :remapMethod=redist - OCN - @@[coupling_interval_fast_sec] - MED med_phases_prep_atm - MED med_phases_prep_ice - MED -> ATM :remapMethod=redist - MED -> ICE :remapMethod=redist - ATM - ICE - ATM -> MED :remapMethod=redist - MED med_phases_post_atm - ICE -> MED :remapMethod=redist - MED med_phases_post_ice - MED med_phases_ocnalb_run - MED med_phases_prep_ocn_accum - @ - OCN -> MED :remapMethod=redist - MED med_phases_post_ocn - MED med_phases_restart_write -@ -:: - -# CMEPS variables - -DRIVER_attributes:: -:: - -MED_attributes:: - ATM_model = @[atm_model] - ICE_model = @[ice_model] - OCN_model = @[ocn_model] - coupling_mode = @[CPLMODE] - pio_rearranger = @[pio_rearranger] - ocean_albedo_limit = @[ocean_albedo_limit] - histaux_ice2med_file1_auxname = ice.1h.aux - histaux_ice2med_file1_doavg = .false. - histaux_ice2med_file1_enabled = .true. - histaux_ice2med_file1_flds = all - histaux_ice2med_file1_history_n = @[MED_history_n] - histaux_ice2med_file1_history_option = nhours - histaux_ice2med_file1_ntperfile = 9999 - histaux_ocn2med_file1_auxname = ocn.1h.aux - histaux_ocn2med_file1_doavg = .false. - histaux_ocn2med_file1_enabled = .true. - histaux_ocn2med_file1_flds = all - histaux_ocn2med_file1_history_n = @[MED_history_n] - histaux_ocn2med_file1_history_option = nhours - histaux_ocn2med_file1_ntperfile = 9999 -:: - -ALLCOMP_attributes:: - ScalarFieldCount = 3 - ScalarFieldIdxGridNX = 1 - ScalarFieldIdxGridNY = 2 - ScalarFieldIdxGridNTile = 3 - ScalarFieldName = cpl_scalars - start_type = @[RUNTYPE] - restart_dir = @[CMEPS_RESTART_DIR] - case_name = ufs.cpld - restart_n = @[RESTART_N] - restart_option = nhours - restart_ymd = -999 - write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] - dbug_flag = @[cap_dbug_flag] - stop_n = @[FHMAX] - stop_option = nhours - stop_ymd = -999 - orb_eccen = 1.e36 - orb_iyear = 2000 - orb_iyear_align = 2000 - orb_mode = fixed_year - orb_mvelp = 1.e36 - orb_obliq = 1.e36 -:: diff --git a/tests/parm/ufs.configure.s2sa.IN b/tests/parm/ufs.configure.s2sa.IN index f49831094c..db685a49bc 100644 --- a/tests/parm/ufs.configure.s2sa.IN +++ b/tests/parm/ufs.configure.s2sa.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: @[esmf_logkind] -globalResourceControl: false +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: MED ATM CHM OCN ICE @@ -15,11 +15,13 @@ EARTH_attributes:: # MED # MED_model: @[med_model] MED_petlist_bounds: @[med_petlist_bounds] +MED_omp_num_threads: @[med_omp_num_threads] :: # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 DumpFields = @[DumpFields] @@ -30,6 +32,7 @@ ATM_attributes:: # CHM # CHM_model: @[chm_model] CHM_petlist_bounds: @[chm_petlist_bounds] +CHM_omp_num_threads: @[chm_omp_num_threads] CHM_attributes:: Verbosity = 0 :: @@ -37,6 +40,7 @@ CHM_attributes:: # OCN # OCN_model: @[ocn_model] OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_omp_num_threads: @[ocn_omp_num_threads] OCN_attributes:: Verbosity = 0 DumpFields = @[DumpFields] @@ -50,6 +54,7 @@ OCN_attributes:: # ICE # ICE_model: @[ice_model] ICE_petlist_bounds: @[ice_petlist_bounds] +ICE_omp_num_threads: @[ice_omp_num_threads] ICE_attributes:: Verbosity = 0 DumpFields = @[DumpFields] diff --git a/tests/parm/ufs.configure.s2sa_esmf.IN b/tests/parm/ufs.configure.s2sa_esmf.IN deleted file mode 100644 index 3921f3881b..0000000000 --- a/tests/parm/ufs.configure.s2sa_esmf.IN +++ /dev/null @@ -1,137 +0,0 @@ -############################################# -#### UFS Run-Time Configuration File ###### -############################################# - -# ESMF # -logKindFlag: @[esmf_logkind] -globalResourceControl: true - -# EARTH # -EARTH_component_list: MED ATM CHM OCN ICE -EARTH_attributes:: - Verbosity = 0 -:: - -# MED # -MED_model: @[med_model] -MED_petlist_bounds: @[med_petlist_bounds] -MED_omp_num_threads: @[med_omp_num_threads] -:: - -# ATM # -ATM_model: @[atm_model] -ATM_petlist_bounds: @[atm_petlist_bounds] -ATM_omp_num_threads: @[atm_omp_num_threads] -ATM_attributes:: - Verbosity = 0 - DumpFields = @[DumpFields] - ProfileMemory = false - OverwriteSlice = true -:: - -# CHM # -CHM_model: @[chm_model] -CHM_petlist_bounds: @[chm_petlist_bounds] -CHM_omp_num_threads: @[chm_omp_num_threads] -CHM_attributes:: - Verbosity = 0 -:: - -# OCN # -OCN_model: @[ocn_model] -OCN_petlist_bounds: @[ocn_petlist_bounds] -OCN_omp_num_threads: @[ocn_omp_num_threads] -OCN_attributes:: - Verbosity = 0 - DumpFields = @[DumpFields] - ProfileMemory = false - OverwriteSlice = true - mesh_ocn = @[MESH_OCN] - use_coldstart = @[use_coldstart] - use_mommesh = @[use_mommesh] -:: - -# ICE # -ICE_model: @[ice_model] -ICE_petlist_bounds: @[ice_petlist_bounds] -ICE_omp_num_threads: @[ice_omp_num_threads] -ICE_attributes:: - Verbosity = 0 - DumpFields = @[DumpFields] - ProfileMemory = false - OverwriteSlice = true - mesh_ice = @[MESH_ICE] - eps_imesh = @[eps_imesh] - stop_n = @[RESTART_N] - stop_option = nhours - stop_ymd = -999 -:: - -# CMEPS warm run sequence -runSeq:: -@@[coupling_interval_slow_sec] - MED med_phases_prep_ocn_avg - MED -> OCN :remapMethod=redist - OCN - @@[coupling_interval_fast_sec] - MED med_phases_prep_atm - MED med_phases_prep_ice - MED -> ATM :remapMethod=redist - MED -> ICE :remapMethod=redist - ATM phase1 - ATM -> CHM - CHM - CHM -> ATM - ATM phase2 - ICE - ATM -> MED :remapMethod=redist - MED med_phases_post_atm - ICE -> MED :remapMethod=redist - MED med_phases_post_ice - MED med_phases_ocnalb_run - MED med_phases_prep_ocn_accum - @ - OCN -> MED :remapMethod=redist - MED med_phases_post_ocn - MED med_phases_restart_write -@ -:: - -# CMEPS variables - -DRIVER_attributes:: -:: - -MED_attributes:: - ATM_model = @[atm_model] - ICE_model = @[ice_model] - OCN_model = @[ocn_model] - coupling_mode = @[CPLMODE] - pio_rearranger = @[pio_rearranger] - ocean_albedo_limit = @[ocean_albedo_limit] -:: - -ALLCOMP_attributes:: - ScalarFieldCount = 3 - ScalarFieldIdxGridNX = 1 - ScalarFieldIdxGridNY = 2 - ScalarFieldIdxGridNTile = 3 - ScalarFieldName = cpl_scalars - start_type = @[RUNTYPE] - restart_dir = @[CMEPS_RESTART_DIR] - case_name = ufs.cpld - restart_n = @[RESTART_N] - restart_option = nhours - restart_ymd = -999 - write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] - dbug_flag = @[cap_dbug_flag] - stop_n = @[FHMAX] - stop_option = nhours - stop_ymd = -999 - orb_eccen = 1.e36 - orb_iyear = 2000 - orb_iyear_align = 2000 - orb_mode = fixed_year - orb_mvelp = 1.e36 - orb_obliq = 1.e36 -:: diff --git a/tests/parm/ufs.configure.s2sw.IN b/tests/parm/ufs.configure.s2sw.IN index 9ba2a9c2e1..38b6ab9a76 100644 --- a/tests/parm/ufs.configure.s2sw.IN +++ b/tests/parm/ufs.configure.s2sw.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: @[esmf_logkind] -globalResourceControl: false +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: MED ATM OCN ICE WAV @@ -15,11 +15,13 @@ EARTH_attributes:: # MED # MED_model: @[med_model] MED_petlist_bounds: @[med_petlist_bounds] +MED_omp_num_threads: @[med_omp_num_threads] :: # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 DumpFields = @[DumpFields] @@ -30,6 +32,7 @@ ATM_attributes:: # OCN # OCN_model: @[ocn_model] OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_omp_num_threads: @[ocn_omp_num_threads] OCN_attributes:: Verbosity = 0 DumpFields = @[DumpFields] @@ -43,6 +46,7 @@ OCN_attributes:: # ICE # ICE_model: @[ice_model] ICE_petlist_bounds: @[ice_petlist_bounds] +ICE_omp_num_threads: @[ice_omp_num_threads] ICE_attributes:: Verbosity = 0 DumpFields = @[DumpFields] @@ -58,6 +62,7 @@ ICE_attributes:: # WAV # WAV_model: @[wav_model] WAV_petlist_bounds: @[wav_petlist_bounds] +WAV_omp_num_threads: @[wav_omp_num_threads] WAV_attributes:: Verbosity = 0 OverwriteSlice = false @@ -109,7 +114,6 @@ runSeq:: DRIVER_attributes:: :: - MED_attributes:: ATM_model = @[atm_model] ICE_model = @[ice_model] @@ -119,7 +123,6 @@ MED_attributes:: pio_rearranger = @[pio_rearranger] ocean_albedo_limit = @[ocean_albedo_limit] :: - ALLCOMP_attributes:: ScalarFieldCount = 3 ScalarFieldIdxGridNX = 1 diff --git a/tests/parm/ufs.configure.s2sw_esmf.IN b/tests/parm/ufs.configure.s2sw_esmf.IN deleted file mode 100644 index 0bfd8dc3d7..0000000000 --- a/tests/parm/ufs.configure.s2sw_esmf.IN +++ /dev/null @@ -1,149 +0,0 @@ -############################################# -#### UFS Run-Time Configuration File ###### -############################################# - -# ESMF # -logKindFlag: @[esmf_logkind] -globalResourceControl: true - -# EARTH # -EARTH_component_list: MED ATM OCN ICE WAV -EARTH_attributes:: - Verbosity = 0 -:: - -# MED # -MED_model: @[med_model] -MED_petlist_bounds: @[med_petlist_bounds] -MED_omp_num_threads: @[med_omp_num_threads] -:: - -# ATM # -ATM_model: @[atm_model] -ATM_petlist_bounds: @[atm_petlist_bounds] -ATM_omp_num_threads: @[atm_omp_num_threads] -ATM_attributes:: - Verbosity = 0 - DumpFields = @[DumpFields] - ProfileMemory = false - OverwriteSlice = true -:: - -# OCN # -OCN_model: @[ocn_model] -OCN_petlist_bounds: @[ocn_petlist_bounds] -OCN_omp_num_threads: @[ocn_omp_num_threads] -OCN_attributes:: - Verbosity = 0 - DumpFields = @[DumpFields] - ProfileMemory = false - OverwriteSlice = true - mesh_ocn = @[MESH_OCN] - use_coldstart = @[use_coldstart] - use_mommesh = @[use_mommesh] -:: - -# ICE # -ICE_model: @[ice_model] -ICE_petlist_bounds: @[ice_petlist_bounds] -ICE_omp_num_threads: @[ice_omp_num_threads] -ICE_attributes:: - Verbosity = 0 - DumpFields = @[DumpFields] - ProfileMemory = false - OverwriteSlice = true - mesh_ice = @[MESH_ICE] - eps_imesh = @[eps_imesh] - stop_n = @[RESTART_N] - stop_option = nhours - stop_ymd = -999 -:: - -# WAV # -WAV_model: @[wav_model] -WAV_petlist_bounds: @[wav_petlist_bounds] -WAV_omp_num_threads: @[wav_omp_num_threads] -WAV_attributes:: - Verbosity = 0 - OverwriteSlice = false - mesh_wav = @[MESH_WAV] - user_histname = @[WW3_user_histname] - use_historync = @[WW3_historync] - use_restartnc = @[WW3_restartnc] - restart_from_binary = @[WW3_restart_from_binary] - pio_typename = @[WW3_PIO_FORMAT] - pio_numiotasks = @[WW3_PIO_IOTASKS] - pio_stride = @[WW3_PIO_STRIDE] - pio_rearranger = @[WW3_PIO_REARR] - pio_root = @[WW3_PIO_ROOT] -:: - -# CMEPS warm run sequence -runSeq:: -@@[coupling_interval_slow_sec] - MED med_phases_prep_wav_avg - MED med_phases_prep_ocn_avg - MED -> WAV :remapMethod=redist - MED -> OCN :remapMethod=redist - WAV - OCN - @@[coupling_interval_fast_sec] - MED med_phases_prep_atm - MED med_phases_prep_ice - MED -> ATM :remapMethod=redist - MED -> ICE :remapMethod=redist - ATM - ICE - ATM -> MED :remapMethod=redist - MED med_phases_post_atm - ICE -> MED :remapMethod=redist - MED med_phases_post_ice - MED med_phases_ocnalb_run - MED med_phases_prep_ocn_accum - MED med_phases_prep_wav_accum - @ - OCN -> MED :remapMethod=redist - WAV -> MED :remapMethod=redist - MED med_phases_post_ocn - MED med_phases_post_wav - MED med_phases_restart_write -@ -:: - -# CMEPS variables - -DRIVER_attributes:: -:: -MED_attributes:: - ATM_model = @[atm_model] - ICE_model = @[ice_model] - OCN_model = @[ocn_model] - WAV_model = @[wav_model] - coupling_mode = @[CPLMODE] - pio_rearranger = @[pio_rearranger] - ocean_albedo_limit = @[ocean_albedo_limit] -:: -ALLCOMP_attributes:: - ScalarFieldCount = 3 - ScalarFieldIdxGridNX = 1 - ScalarFieldIdxGridNY = 2 - ScalarFieldIdxGridNTile = 3 - ScalarFieldName = cpl_scalars - start_type = @[RUNTYPE] - restart_dir = @[CMEPS_RESTART_DIR] - case_name = ufs.cpld - restart_n = @[RESTART_N] - restart_option = nhours - restart_ymd = -999 - write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] - dbug_flag = @[cap_dbug_flag] - stop_n = @[FHMAX] - stop_option = nhours - stop_ymd = -999 - orb_eccen = 1.e36 - orb_iyear = 2000 - orb_iyear_align = 2000 - orb_mode = fixed_year - orb_mvelp = 1.e36 - orb_obliq = 1.e36 -:: diff --git a/tests/parm/ufs.configure.s2sw_fast_esmf.IN b/tests/parm/ufs.configure.s2sw_fast.IN similarity index 98% rename from tests/parm/ufs.configure.s2sw_fast_esmf.IN rename to tests/parm/ufs.configure.s2sw_fast.IN index 623fab0124..a4ac78def4 100644 --- a/tests/parm/ufs.configure.s2sw_fast_esmf.IN +++ b/tests/parm/ufs.configure.s2sw_fast.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: @[esmf_logkind] -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: MED ATM OCN ICE WAV diff --git a/tests/parm/ufs.configure.s2swa.IN b/tests/parm/ufs.configure.s2swa.IN index 2fa6ac40c3..cb930fd4b3 100644 --- a/tests/parm/ufs.configure.s2swa.IN +++ b/tests/parm/ufs.configure.s2swa.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: @[esmf_logkind] -globalResourceControl: false +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: MED ATM CHM OCN ICE WAV @@ -15,11 +15,13 @@ EARTH_attributes:: # MED # MED_model: @[med_model] MED_petlist_bounds: @[med_petlist_bounds] +MED_omp_num_threads: @[med_omp_num_threads] :: # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 DumpFields = @[DumpFields] @@ -30,6 +32,7 @@ ATM_attributes:: # CHM # CHM_model: @[chm_model] CHM_petlist_bounds: @[chm_petlist_bounds] +CHM_omp_num_threads: @[chm_omp_num_threads] CHM_attributes:: Verbosity = 0 :: @@ -37,6 +40,7 @@ CHM_attributes:: # OCN # OCN_model: @[ocn_model] OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_omp_num_threads: @[ocn_omp_num_threads] OCN_attributes:: Verbosity = 0 DumpFields = @[DumpFields] @@ -50,6 +54,7 @@ OCN_attributes:: # ICE # ICE_model: @[ice_model] ICE_petlist_bounds: @[ice_petlist_bounds] +ICE_omp_num_threads: @[ice_omp_num_threads] ICE_attributes:: Verbosity = 0 DumpFields = @[DumpFields] @@ -65,6 +70,7 @@ ICE_attributes:: # WAV # WAV_model: @[wav_model] WAV_petlist_bounds: @[wav_petlist_bounds] +WAV_omp_num_threads: @[wav_omp_num_threads] WAV_attributes:: Verbosity = 0 OverwriteSlice = false diff --git a/tests/parm/ufs.configure.s2swa_esmf.IN b/tests/parm/ufs.configure.s2swa_esmf.IN deleted file mode 100644 index 91410741de..0000000000 --- a/tests/parm/ufs.configure.s2swa_esmf.IN +++ /dev/null @@ -1,161 +0,0 @@ -############################################# -#### UFS Run-Time Configuration File ###### -############################################# - -# ESMF # -logKindFlag: @[esmf_logkind] -globalResourceControl: true - -# EARTH # -EARTH_component_list: MED ATM CHM OCN ICE WAV -EARTH_attributes:: - Verbosity = 0 -:: - -# MED # -MED_model: @[med_model] -MED_petlist_bounds: @[med_petlist_bounds] -MED_omp_num_threads: @[med_omp_num_threads] -:: - -# ATM # -ATM_model: @[atm_model] -ATM_petlist_bounds: @[atm_petlist_bounds] -ATM_omp_num_threads: @[atm_omp_num_threads] -ATM_attributes:: - Verbosity = 0 - DumpFields = @[DumpFields] - ProfileMemory = false - OverwriteSlice = true -:: - -# CHM # -CHM_model: @[chm_model] -CHM_petlist_bounds: @[chm_petlist_bounds] -CHM_omp_num_threads: @[chm_omp_num_threads] -CHM_attributes:: - Verbosity = 0 -:: - -# OCN # -OCN_model: @[ocn_model] -OCN_petlist_bounds: @[ocn_petlist_bounds] -OCN_omp_num_threads: @[ocn_omp_num_threads] -OCN_attributes:: - Verbosity = 0 - DumpFields = @[DumpFields] - ProfileMemory = false - OverwriteSlice = true - mesh_ocn = @[MESH_OCN] - use_coldstart = @[use_coldstart] - use_mommesh = @[use_mommesh] -:: - -# ICE # -ICE_model: @[ice_model] -ICE_petlist_bounds: @[ice_petlist_bounds] -ICE_omp_num_threads: @[ice_omp_num_threads] -ICE_attributes:: - Verbosity = 0 - DumpFields = @[DumpFields] - ProfileMemory = false - OverwriteSlice = true - mesh_ice = @[MESH_ICE] - eps_imesh = @[eps_imesh] - stop_n = @[RESTART_N] - stop_option = nhours - stop_ymd = -999 -:: - -# WAV # -WAV_model: @[wav_model] -WAV_petlist_bounds: @[wav_petlist_bounds] -WAV_omp_num_threads: @[wav_omp_num_threads] -WAV_attributes:: - Verbosity = 0 - OverwriteSlice = false - mesh_wav = @[MESH_WAV] - user_histname = @[WW3_user_histname] - use_historync = @[WW3_historync] - use_restartnc = @[WW3_restartnc] - restart_from_binary = @[WW3_restart_from_binary] - pio_typename = @[WW3_PIO_FORMAT] - pio_numiotasks = @[WW3_PIO_IOTASKS] - pio_stride = @[WW3_PIO_STRIDE] - pio_rearranger = @[WW3_PIO_REARR] - pio_root = @[WW3_PIO_ROOT] -:: - -# CMEPS warm run sequence -runSeq:: -@@[coupling_interval_slow_sec] - MED med_phases_prep_wav_avg - MED med_phases_prep_ocn_avg - MED -> WAV :remapMethod=redist - MED -> OCN :remapMethod=redist - WAV - OCN - @@[coupling_interval_fast_sec] - MED med_phases_prep_atm - MED med_phases_prep_ice - MED -> ATM :remapMethod=redist - MED -> ICE :remapMethod=redist - ATM phase1 - ATM -> CHM - CHM - CHM -> ATM - ATM phase2 - ICE - ATM -> MED :remapMethod=redist - MED med_phases_post_atm - ICE -> MED :remapMethod=redist - MED med_phases_post_ice - MED med_phases_ocnalb_run - MED med_phases_prep_ocn_accum - MED med_phases_prep_wav_accum - @ - OCN -> MED :remapMethod=redist - WAV -> MED :remapMethod=redist - MED med_phases_post_ocn - MED med_phases_post_wav - MED med_phases_restart_write -@ -:: - -# CMEPS variables - -DRIVER_attributes:: -:: -MED_attributes:: - ATM_model = @[atm_model] - ICE_model = @[ice_model] - OCN_model = @[ocn_model] - WAV_model = @[wav_model] - coupling_mode = @[CPLMODE] - pio_rearranger = @[pio_rearranger] - ocean_albedo_limit = @[ocean_albedo_limit] -:: -ALLCOMP_attributes:: - ScalarFieldCount = 3 - ScalarFieldIdxGridNX = 1 - ScalarFieldIdxGridNY = 2 - ScalarFieldIdxGridNTile = 3 - ScalarFieldName = cpl_scalars - start_type = @[RUNTYPE] - restart_dir = @[CMEPS_RESTART_DIR] - case_name = ufs.cpld - restart_n = @[RESTART_N] - restart_option = nhours - restart_ymd = -999 - write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] - dbug_flag = @[cap_dbug_flag] - stop_n = @[FHMAX] - stop_option = nhours - stop_ymd = -999 - orb_eccen = 1.e36 - orb_iyear = 2000 - orb_iyear_align = 2000 - orb_mode = fixed_year - orb_mvelp = 1.e36 - orb_obliq = 1.e36 -:: diff --git a/tests/parm/ufs.configure.s2swa_fast_esmf.IN b/tests/parm/ufs.configure.s2swa_fast.IN similarity index 98% rename from tests/parm/ufs.configure.s2swa_fast_esmf.IN rename to tests/parm/ufs.configure.s2swa_fast.IN index 5ded338a95..e5ed589d7f 100644 --- a/tests/parm/ufs.configure.s2swa_fast_esmf.IN +++ b/tests/parm/ufs.configure.s2swa_fast.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: MED ATM CHM OCN ICE WAV @@ -16,6 +16,7 @@ EARTH_attributes:: MED_model: @[med_model] MED_petlist_bounds: @[med_petlist_bounds] MED_omp_num_threads: @[med_omp_num_threads] +:: # ATM # ATM_model: @[atm_model] diff --git a/tests/rt.sh b/tests/rt.sh index 6fed829859..275ec03510 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -1297,7 +1297,11 @@ EOF ( source "${PATHRT}/tests/${TEST_NAME}" - compute_petbounds_and_tasks + if [[ ${ESMF_THREADING} == true ]]; then + compute_petbounds_and_tasks_esmf_threading + else + compute_petbounds_and_tasks_traditional_threading + fi TPN=$(( TPN / THRD )) NODES=$(( TASKS / TPN )) diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 6e43e1e914..fa3dcfeebe 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -21,7 +21,122 @@ redirect_out_err() { # redirect_out_err command will return non-zero if "$@" or tee return non-zero. } -function compute_petbounds_and_tasks() { +function compute_petbounds_and_tasks_traditional_threading() { + + # each test MUST define ${COMPONENT}_tasks variable for all components it is using + # and MUST NOT define those that it's not using or set the value to 0. + + # ATM is a special case since it is running on the sum of compute and io tasks. + # CHM component and mediator are running on ATM compute tasks only. + + if [[ ${DATM_CDEPS} = 'false' ]]; then + if [[ ${ATM_compute_tasks:-0} -eq 0 ]]; then + ATM_compute_tasks=$((INPES * JNPES * NTILES)) + fi + if [[ ${QUILTING} = '.true.' ]]; then + ATM_io_tasks=$((WRITE_GROUP * WRTTASK_PER_GROUP)) + else + ATM_io_tasks=0 + fi + ATM_tasks=$((ATM_compute_tasks + ATM_io_tasks)) + fi + + local n=0 + unset atm_petlist_bounds ocn_petlist_bounds ice_petlist_bounds wav_petlist_bounds chm_petlist_bounds med_petlist_bounds aqm_petlist_bounds fbh_petlist_bounds + + local _tasks + + # ATM + if [[ ${ATM_tasks:-0} -gt 0 ]]; then + atm_petlist_bounds="${n} $((n + ATM_tasks - 1))" + n=$((n + ATM_tasks)) + _tasks=$(( ATM_tasks*atm_omp_num_threads )) + atm_nodes=$(( _tasks / TPN )) + if (( atm_nodes * TPN < _tasks )); then + atm_nodes=$(( atm_nodes + 1 )) + fi + fi + + # OCN + if [[ ${OCN_tasks:-0} -gt 0 ]]; then + ocn_petlist_bounds="${n} $((n + OCN_tasks - 1))" + n=$((n + OCN_tasks)) + _tasks=$(( OCN_tasks*ocn_omp_num_threads )) + ocn_nodes=$(( _tasks / TPN )) + if (( ocn_nodes * TPN < _tasks )); then + ocn_nodes=$(( ocn_nodes + 1 )) + fi + fi + + # ICE + if [[ ${ICE_tasks:-0} -gt 0 ]]; then + ice_petlist_bounds="${n} $((n + ICE_tasks - 1))" + n=$((n + ICE_tasks)) + _tasks=$(( ICE_tasks*ice_omp_num_threads )) + ice_nodes=$(( _tasks / TPN )) + if (( ice_nodes * TPN < _tasks )); then + ice_nodes=$(( ice_nodes + 1 )) + fi + fi + + # WAV + if [[ ${WAV_tasks:-0} -gt 0 ]]; then + wav_petlist_bounds="${n} $((n + WAV_tasks - 1))" + n=$((n + WAV_tasks)) + _tasks=$(( WAV_tasks*wav_omp_num_threads )) + wav_nodes=$(( _tasks / TPN )) + if (( wav_nodes * TPN < _tasks )); then + wav_nodes=$(( wav_nodes + 1 )) + fi + fi + + # CHM + chm_petlist_bounds="0 $((ATM_compute_tasks - 1))" + + # MED - mediator (CMEPS) runs on at most 300 tasks. + MED_compute_tasks=$((ATM_compute_tasks<=300 ? ATM_compute_tasks : 300)) + med_petlist_bounds="0 $((MED_compute_tasks - 1))" + + # AQM + aqm_petlist_bounds="0 $((ATM_compute_tasks - 1))" + + # LND + 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_petlist_bounds="${n} $((n + LND_tasks - 1))" + n=$((n + LND_tasks)) + fi + + # FBH + if [[ ${FBH_tasks:-0} -gt 0 ]]; then + fbh_petlist_bounds="${n} $((n + FBH_tasks - 1))" + n=$((n + FBH_tasks)) + fi + + unset _tasks + + UFS_tasks=${n} + + if [[ ${RTVERBOSE} == true ]]; then + echo "ATM_petlist_bounds: ${atm_petlist_bounds:-}" + echo "OCN_petlist_bounds: ${ocn_petlist_bounds:-}" + echo "ICE_petlist_bounds: ${ice_petlist_bounds:-}" + echo "WAV_petlist_bounds: ${wav_petlist_bounds:-}" + echo "CHM_petlist_bounds: ${chm_petlist_bounds:-}" + echo "MED_petlist_bounds: ${med_petlist_bounds:-}" + echo "AQM_petlist_bounds: ${aqm_petlist_bounds:-}" + echo "LND_petlist_bounds: ${lnd_petlist_bounds:-}" + echo "FBH_petlist_bounds: ${fbh_petlist_bounds:-}" + echo "UFS_tasks : ${UFS_tasks:-}" + fi + + # TASKS is now set to UFS_TASKS + export TASKS=${UFS_tasks} +} + +function compute_petbounds_and_tasks_esmf_threading() { # each test MUST define ${COMPONENT}_tasks variable for all components it is using # and MUST NOT define those that it's not using or set the value to 0. @@ -72,8 +187,9 @@ function compute_petbounds_and_tasks() { # CHM chm_petlist_bounds="0 $((ATM_compute_tasks * atm_omp_num_threads - 1))" - # MED - med_petlist_bounds="0 $((ATM_compute_tasks * atm_omp_num_threads - 1))" + # MED - mediator (CMEPS) runs on at most 300 tasks. + MED_compute_tasks=$((ATM_compute_tasks<=300 ? ATM_compute_tasks : 300)) + med_petlist_bounds="0 $((MED_compute_tasks * atm_omp_num_threads - 1))" # AQM aqm_petlist_bounds="0 $((ATM_compute_tasks * atm_omp_num_threads - 1))" @@ -82,8 +198,8 @@ function compute_petbounds_and_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)) + 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 diff --git a/tests/run_test.sh b/tests/run_test.sh index 1724a2b6d7..cd46804607 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -171,10 +171,19 @@ else exit 1 fi -compute_petbounds_and_tasks +if [[ ${ESMF_THREADING} == true ]]; then + compute_petbounds_and_tasks_esmf_threading +else + compute_petbounds_and_tasks_traditional_threading +fi if [[ -f ${PATHRT}/parm/${UFS_CONFIGURE} ]]; then - atparse < "${PATHRT}/parm/${UFS_CONFIGURE}" > ufs.configure + ( + atparse < "${PATHRT}/parm/${UFS_CONFIGURE}" > ufs.configure + if [[ ${ESMF_THREADING} != true ]]; then + sed -i -e "/_omp_num_threads:/d" ufs.configure + fi + ) else echo "Cannot find file ${UFS_CONFIGURE} set by variable UFS_CONFIGURE" exit 1 @@ -248,7 +257,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 . @@ -386,6 +395,10 @@ fi export PPN export UFS_TASKS +if [[ ${ESMF_THREADING} != true ]]; then + PPN=${TPN} +fi + if [[ ${SCHEDULER} = 'pbs' ]]; then if [[ -e ${PATHRT}/fv3_conf/fv3_qsub.IN_${MACHINE_ID} ]]; then atparse < "${PATHRT}/fv3_conf/fv3_qsub.IN_${MACHINE_ID}" > job_card diff --git a/tests/tests/atm_ds2s_docn_dice b/tests/tests/atm_ds2s_docn_dice index cd477d3bc1..dc1e33896f 100644 --- a/tests/tests/atm_ds2s_docn_dice +++ b/tests/tests/atm_ds2s_docn_dice @@ -127,7 +127,7 @@ export DIAG_TABLE=diag_table_gfsv16 export FIELD_TABLE=field_table_thompson_noaero_tke export INPUT_NML=global_control.nml.IN export MODEL_CONFIGURE=model_configure.IN -export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN +export UFS_CONFIGURE=ufs.configure.s2s.IN export FV3_RUN="cpld_control_run.IN cpld_docn_dice.IN" if [[ $MACHINE_ID = hera ]] || [[ $MACHINE_ID = hercules ]] || [[ $MACHINE_ID = orion ]] || [[ $MACHINE_ID = gaea ]]; then diff --git a/tests/tests/atm_ds2s_docn_pcice b/tests/tests/atm_ds2s_docn_pcice index fef8e3cdf3..4f6204e6fc 100644 --- a/tests/tests/atm_ds2s_docn_pcice +++ b/tests/tests/atm_ds2s_docn_pcice @@ -124,5 +124,5 @@ export DIAG_TABLE=diag_table_gfsv16 export FIELD_TABLE=field_table_thompson_noaero_tke export INPUT_NML=global_control.nml.IN export MODEL_CONFIGURE=model_configure.IN -export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN +export UFS_CONFIGURE=ufs.configure.s2s.IN export FV3_RUN="cpld_control_run.IN cpld_docn_pcice.IN" diff --git a/tests/tests/atmaero_control_p8 b/tests/tests/atmaero_control_p8 index afb6629547..2d83d58d26 100644 --- a/tests/tests/atmaero_control_p8 +++ b/tests/tests/atmaero_control_p8 @@ -67,7 +67,7 @@ export WRITE_DOPOST=.true. export CPL=.true. export CPLCHM=.true. -export UFS_CONFIGURE=ufs.configure.atmaero_esmf.IN +export UFS_CONFIGURE=ufs.configure.atmaero.IN export atm_model='fv3' export chm_model='gocart' diff --git a/tests/tests/atmaero_control_p8_rad b/tests/tests/atmaero_control_p8_rad index 4eac5a3303..b384a7ff4a 100644 --- a/tests/tests/atmaero_control_p8_rad +++ b/tests/tests/atmaero_control_p8_rad @@ -66,7 +66,7 @@ export WRITE_DOPOST=.true. export CPL=.true. export CPLCHM=.true. -export UFS_CONFIGURE=ufs.configure.atmaero_esmf.IN +export UFS_CONFIGURE=ufs.configure.atmaero.IN export atm_model='fv3' export chm_model='gocart' diff --git a/tests/tests/atmaero_control_p8_rad_micro b/tests/tests/atmaero_control_p8_rad_micro index 1c4bbe4478..9a57bbc9ac 100644 --- a/tests/tests/atmaero_control_p8_rad_micro +++ b/tests/tests/atmaero_control_p8_rad_micro @@ -66,7 +66,7 @@ export WRITE_DOPOST=.true. export CPL=.true. export CPLCHM=.true. -export UFS_CONFIGURE=ufs.configure.atmaero_esmf.IN +export UFS_CONFIGURE=ufs.configure.atmaero.IN export atm_model='fv3' export chm_model='gocart' diff --git a/tests/tests/control_2threads_p8 b/tests/tests/control_2threads_p8 index d48022f634..22b5a8f3f5 100644 --- a/tests/tests/control_2threads_p8 +++ b/tests/tests/control_2threads_p8 @@ -154,3 +154,6 @@ export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. export SATMEDMF=.true. + +ESMF_THREADING=false +THRD=$atm_omp_num_threads diff --git a/tests/tests/conus13km_2threads b/tests/tests/conus13km_2threads index 9d8620c42a..f37809fdc1 100644 --- a/tests/tests/conus13km_2threads +++ b/tests/tests/conus13km_2threads @@ -25,3 +25,6 @@ export INPES=12 export JNPES=12 export WRTTASK_PER_GROUP=6 export QUILTING_RESTART=.false. + +ESMF_THREADING=false +THRD=$atm_omp_num_threads diff --git a/tests/tests/conus13km_debug_2threads b/tests/tests/conus13km_debug_2threads index 9daadc7dd6..b565c216a5 100644 --- a/tests/tests/conus13km_debug_2threads +++ b/tests/tests/conus13km_debug_2threads @@ -24,3 +24,6 @@ export INPES=12 export JNPES=12 export WRTTASK_PER_GROUP=6 export QUILTING_RESTART=.false. + +ESMF_THREADING=false +THRD=$atm_omp_num_threads diff --git a/tests/tests/cpld_2threads_p8 b/tests/tests/cpld_2threads_p8 index 21346f4a09..6a4e74b061 100644 --- a/tests/tests/cpld_2threads_p8 +++ b/tests/tests/cpld_2threads_p8 @@ -93,7 +93,7 @@ export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = derecho ]]; then +if [[ ${MACHINE_ID} = derecho ]]; then TPN=96 fi @@ -103,3 +103,10 @@ export N_SPLIT=5 # HR4 GFSv17 GWD update export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. + +ESMF_THREADING=false +THRD=$THRD_cpl_thrd + +if [[ ${MACHINE_ID} = orion || ${MACHINE_ID} = wcoss2 ]]; then + WLCLK=40 +fi diff --git a/tests/tests/cpld_control_c192_p8 b/tests/tests/cpld_control_c192_p8 index dbd5840f43..a41a65e0fb 100644 --- a/tests/tests/cpld_control_c192_p8 +++ b/tests/tests/cpld_control_c192_p8 @@ -140,7 +140,10 @@ export FNABSC="'C192.maximum_snow_albedo.tileX.nc'" export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = derecho ]] || [[ $MACHINE_ID = gaeac6 ]]; then +if [[ $MACHINE_ID = derecho ]]; then + TPN=96 +fi +if [[ $MACHINE_ID = gaeac6 ]]; then TPN=144 fi diff --git a/tests/tests/cpld_control_c48 b/tests/tests/cpld_control_c48 index 0f86ec5d5b..7a9de35986 100644 --- a/tests/tests/cpld_control_c48 +++ b/tests/tests/cpld_control_c48 @@ -137,7 +137,7 @@ export eps_imesh=4.0e-1 export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN +export UFS_CONFIGURE=ufs.configure.s2s.IN export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_control_noaero_p8 b/tests/tests/cpld_control_noaero_p8 index 58853ae7d0..70c4be0283 100644 --- a/tests/tests/cpld_control_noaero_p8 +++ b/tests/tests/cpld_control_noaero_p8 @@ -65,7 +65,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 \ - ufs.cpld.ww3.r.2021-03-23-21600.nc \ + ufs.cpld.ww3.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " @@ -86,7 +86,7 @@ export eps_imesh=2.5e-1 export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN +export UFS_CONFIGURE=ufs.configure.s2sw_fast.IN export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_control_noaero_p8_agrid b/tests/tests/cpld_control_noaero_p8_agrid index 5036092ba4..6c294b3abd 100644 --- a/tests/tests/cpld_control_noaero_p8_agrid +++ b/tests/tests/cpld_control_noaero_p8_agrid @@ -93,7 +93,7 @@ export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 export DIAG_TABLE=diag_table_template -export UFS_CONFIGURE=ufs.configure.s2s_aoflux_esmf.IN +export UFS_CONFIGURE=ufs.configure.s2s_aoflux.IN export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_control_nowave_noaero_p8 b/tests/tests/cpld_control_nowave_noaero_p8 index 240b03d2d2..4599c895b3 100644 --- a/tests/tests/cpld_control_nowave_noaero_p8 +++ b/tests/tests/cpld_control_nowave_noaero_p8 @@ -104,7 +104,7 @@ export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export DIAG_TABLE=diag_table_template -export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN +export UFS_CONFIGURE=ufs.configure.s2s.IN export FV3_RUN=cpld_control_run.IN @@ -114,3 +114,5 @@ export N_SPLIT=5 # HR4 GFSv17 GWD update export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. + +export histaux_enabled=.true. diff --git a/tests/tests/cpld_control_pdlib_p8 b/tests/tests/cpld_control_pdlib_p8 index 120504e818..a2ca423a56 100644 --- a/tests/tests/cpld_control_pdlib_p8 +++ b/tests/tests/cpld_control_pdlib_p8 @@ -102,7 +102,7 @@ export WW3_MODDEF=mod_def.exp.${WW3_DOMAIN} export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN +export UFS_CONFIGURE=ufs.configure.s2sw_fast.IN export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_debug_noaero_p8 b/tests/tests/cpld_debug_noaero_p8 index f703ad51cd..0e566adeef 100644 --- a/tests/tests/cpld_debug_noaero_p8 +++ b/tests/tests/cpld_debug_noaero_p8 @@ -77,7 +77,7 @@ export CICE_DIAGFREQ=`expr $((FHMAX-$FHROT)) \* 3600 / $DT_CICE` export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN +export UFS_CONFIGURE=ufs.configure.s2sw_fast.IN export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_debug_pdlib_p8 b/tests/tests/cpld_debug_pdlib_p8 index 8b1cdb1617..3b19519391 100644 --- a/tests/tests/cpld_debug_pdlib_p8 +++ b/tests/tests/cpld_debug_pdlib_p8 @@ -96,7 +96,7 @@ export WW3_MODDEF=mod_def.exp.${WW3_DOMAIN} export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN +export UFS_CONFIGURE=ufs.configure.s2sw_fast.IN export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_mpi_pdlib_p8 b/tests/tests/cpld_mpi_pdlib_p8 index 5afb46a3de..2c0b91ac34 100644 --- a/tests/tests/cpld_mpi_pdlib_p8 +++ b/tests/tests/cpld_mpi_pdlib_p8 @@ -104,7 +104,7 @@ export WW3_MODDEF=mod_def.exp.${WW3_DOMAIN} export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN +export UFS_CONFIGURE=ufs.configure.s2sw_fast.IN export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_restart_c48 b/tests/tests/cpld_restart_c48 index 4803fd5f46..7507d0f492 100644 --- a/tests/tests/cpld_restart_c48 +++ b/tests/tests/cpld_restart_c48 @@ -168,7 +168,7 @@ export eps_imesh=4.0e-1 export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN +export UFS_CONFIGURE=ufs.configure.s2s.IN export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_restart_pdlib_p8 b/tests/tests/cpld_restart_pdlib_p8 index 8ca61d4e3a..9a3ea199d5 100644 --- a/tests/tests/cpld_restart_pdlib_p8 +++ b/tests/tests/cpld_restart_pdlib_p8 @@ -108,7 +108,7 @@ export WW3_MODDEF=mod_def.exp.${WW3_DOMAIN} export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN +export UFS_CONFIGURE=ufs.configure.s2sw_fast.IN export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_s2sa_p8 b/tests/tests/cpld_s2sa_p8 index a9fba26d01..80fc63eb56 100644 --- a/tests/tests/cpld_s2sa_p8 +++ b/tests/tests/cpld_s2sa_p8 @@ -75,7 +75,7 @@ export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 export DIAG_TABLE=diag_table_template -export UFS_CONFIGURE=ufs.configure.s2sa_esmf.IN +export UFS_CONFIGURE=ufs.configure.s2sa.IN export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_warmstart_c48 b/tests/tests/cpld_warmstart_c48 index 8f65c964de..0ba17be79d 100644 --- a/tests/tests/cpld_warmstart_c48 +++ b/tests/tests/cpld_warmstart_c48 @@ -165,7 +165,7 @@ export eps_imesh=4.0e-1 export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN +export UFS_CONFIGURE=ufs.configure.s2s.IN export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/hrrr_control_2threads b/tests/tests/hrrr_control_2threads index a74ab76253..f326a8bb72 100644 --- a/tests/tests/hrrr_control_2threads +++ b/tests/tests/hrrr_control_2threads @@ -61,3 +61,8 @@ export JNPES=$JNPES_thrd export WRTTASK_PER_GROUP=6 export RESTART_INTERVAL="6 -1" export OUTPUT_FH='0 09 12' + +ESMF_THREADING=false +if [[ $MACHINE_ID = hercules ]] && [[ $RT_COMPILER = gnu ]]; then + ESMF_THREADING=true +fi diff --git a/tests/tests/hrrr_control_2threads_dyn32_phy32 b/tests/tests/hrrr_control_2threads_dyn32_phy32 index a92253d796..9ad003f954 100644 --- a/tests/tests/hrrr_control_2threads_dyn32_phy32 +++ b/tests/tests/hrrr_control_2threads_dyn32_phy32 @@ -62,3 +62,8 @@ export JNPES=$JNPES_thrd export WRTTASK_PER_GROUP=6 export RESTART_INTERVAL="6 -1" export OUTPUT_FH='0 09 12' + +ESMF_THREADING=false +if [[ $MACHINE_ID = hercules ]] && [[ $RT_COMPILER = gnu ]]; then + ESMF_THREADING=true +fi diff --git a/tests/tests/rap_2threads b/tests/tests/rap_2threads index ab5fdac9d6..5bb2dc4e74 100644 --- a/tests/tests/rap_2threads +++ b/tests/tests/rap_2threads @@ -61,3 +61,9 @@ export atm_omp_num_threads=2 export INPES=$INPES_thrd export JNPES=$JNPES_thrd export WRTTASK_PER_GROUP=6 + +ESMF_THREADING=false +THRD=$atm_omp_num_threads +if [[ $MACHINE_ID = hercules ]] && [[ $RT_COMPILER = gnu ]]; then + ESMF_THREADING=true +fi diff --git a/tests/tests/rap_2threads_dyn32_phy32 b/tests/tests/rap_2threads_dyn32_phy32 index 8642231ad1..ba91e53a11 100644 --- a/tests/tests/rap_2threads_dyn32_phy32 +++ b/tests/tests/rap_2threads_dyn32_phy32 @@ -62,3 +62,9 @@ export atm_omp_num_threads=2 export INPES=$INPES_thrd export JNPES=$JNPES_thrd export WRTTASK_PER_GROUP=6 + +ESMF_THREADING=false +THRD=$atm_omp_num_threads +if [[ $MACHINE_ID = hercules ]] && [[ $RT_COMPILER = gnu ]]; then + ESMF_THREADING=true +fi diff --git a/tests/tests/regional_2threads b/tests/tests/regional_2threads index 9d3e3d5ce3..0dbf5efc75 100644 --- a/tests/tests/regional_2threads +++ b/tests/tests/regional_2threads @@ -43,3 +43,6 @@ export OUTPUT_FH="3 -1" WRITE_GROUP=1 WRTTASK_PER_GROUP=10 NTILES=1 + +ESMF_THREADING=false +THRD=$atm_omp_num_threads From 241dd8e3b9feae29f1925806bdb05816ae49f427 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Mon, 30 Dec 2024 13:27:24 -0500 Subject: [PATCH 20/24] Fifth reconciliation PR from production/RRFS.v1 (#2485) * UFSWM - Fix improperly assigned fire emissions for ebb_dcycle==1 for retrospectives (NOT operational!) * FV3 - Fix improperly assigned fire emissions for ebb_dcycle==1 for retrospectives (NOT operational!) * ccpp-physics - Fix improperly assigned fire emissions for ebb_dcycle==1 for retrospectives (NOT operational!) --- FV3 | 2 +- tests/bl_date.conf | 2 +- tests/fv3_conf/fv3_slurm.IN_hercules | 2 + tests/logs/RegressionTests_derecho.log | 628 ++++++++---------- tests/logs/RegressionTests_gaeac5.log | 755 +++++++++++++--------- tests/logs/RegressionTests_gaeac6.log | 552 ++++++++-------- tests/logs/RegressionTests_hera.log | 812 ++++++++++++----------- tests/logs/RegressionTests_hercules.log | 813 +++++++++++------------- tests/logs/RegressionTests_jet.log | 589 +++++++++-------- tests/logs/RegressionTests_orion.log | 628 +++++++++--------- tests/logs/RegressionTests_wcoss2.log | 533 +++++++--------- tests/test_changes.list | 14 + tests/tests/cpld_debug_pdlib_p8 | 2 +- tests/tests/rap_2threads | 2 + 14 files changed, 2735 insertions(+), 2599 deletions(-) diff --git a/FV3 b/FV3 index 1648e176fa..a7d46eee01 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 1648e176fa869d0ca9ce9ea5822b3594afd8c353 +Subproject commit a7d46eee01a78f0915373ebc58c9b20ba14a6c36 diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 4c10448ff8..00508ddb57 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20241212 +export BL_DATE=20241223 diff --git a/tests/fv3_conf/fv3_slurm.IN_hercules b/tests/fv3_conf/fv3_slurm.IN_hercules index 36583d3fa5..c474cea31a 100644 --- a/tests/fv3_conf/fv3_slurm.IN_hercules +++ b/tests/fv3_conf/fv3_slurm.IN_hercules @@ -41,6 +41,8 @@ if [[ @[RT_COMPILER] == intel ]]; then elif [[ @[RT_COMPILER] == gnu ]]; then # For mvapich2 export MV2_SHMEM_COLL_NUM_COMM=128 + export MV2_HOMOGENEOUS_CLUSTER=1 + export MV2_USE_ALIGNED_ALLOC=1 fi # Avoid job errors because of filesystem synchronization delays diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 6c985749ee..872a8a5fe1 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,20 +1,20 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -348b89d2a1b0728bea91816776db00f4bb8f6f24 +ad560f4d81e3fe50c21b316a5207b2fbbd8a4e2b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - c7ea491e6fd99e459af977bfd57fa14aa6a349eb CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-12-16) + 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) + adbb06556f9b9123d24248e4505cd3dedee1d01a FV3 (remotes/origin/rrfsv1-to-ufs/dev5) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) + 2594a9e2c73c2a3a9acaa78fef8252cf5de3b524 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5530-g2594a9e2) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -38,359 +38,289 @@ 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: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20241212 -COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_92764 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20241223 +COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_51461 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [23:25, 21:26] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:35, 10:14](3201 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:27, 23:16] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:04, 14:08](1912 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:23, 15:02](1957 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:19, 07:07](1085 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:59, 16:02](1888 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:26, 23:19] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:21, 13:51](1908 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:24, 11:45] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:51, 25:15](1944 MB) - -PASS -- COMPILE 's2swa_intel' [23:26, 21:26] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [18:56, 13:49](3225 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:43, 13:52](3230 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:59, 07:35](3153 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [18:42, 13:43](3254 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [11:51, 07:29](3175 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [28:37, 24:22](3793 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:24, 13:23](3214 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [15:32, 10:41](3531 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:44, 13:35](3232 MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_control_c192_p8_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_c192_p8_intel' [, ]( MB) -PASS -- TEST 'cpld_bmark_p8_intel' [29:26, 16:43](4541 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [29:13, 10:26](4677 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:15, 07:52](3205 MB) - -PASS -- COMPILE 's2sw_intel' [21:26, 19:51] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:26, 07:26](1921 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:37, 11:42](1982 MB) - -PASS -- COMPILE 's2swa_debug_intel' [13:24, 11:45] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [25:09, 20:58](3302 MB) - -PASS -- COMPILE 's2sw_debug_intel' [13:24, 11:05] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:38, 08:56](1950 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [18:26, 16:04] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:43, 05:07](1977 MB) - -PASS -- COMPILE 's2s_intel' [18:25, 16:34] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:07, 05:46](2884 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:08, 02:07](2891 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:31, 01:23](2308 MB) - -PASS -- COMPILE 's2swa_faster_intel' [25:23, 23:57] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [17:18, 13:21](3233 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:17, 21:51] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [26:51, 23:28](1922 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:58, 12:03](1102 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [30:46, 27:08](1895 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:17, 11:04] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:45, 27:11](1964 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:17, 14:19] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:40, 03:25](668 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:02, 02:42](1563 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:11, 02:41](1568 MB) -PASS -- TEST 'control_latlon_intel' [05:55, 02:39](1570 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:00, 02:40](1571 MB) -PASS -- TEST 'control_c48_intel' [12:14, 09:12](1586 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:41, 05:16](710 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [12:17, 09:14](1590 MB) -PASS -- TEST 'control_c192_intel' [14:15, 09:57](1695 MB) -PASS -- TEST 'control_c384_intel' [17:57, 11:13](1979 MB) -PASS -- TEST 'control_c384gdas_intel' [16:05, 07:07](1171 MB) -PASS -- TEST 'control_stochy_intel' [03:41, 01:25](624 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:35, 00:50](433 MB) -PASS -- TEST 'control_lndp_intel' [03:34, 01:20](621 MB) -PASS -- TEST 'control_iovr4_intel' [04:40, 02:05](620 MB) -PASS -- TEST 'control_iovr5_intel' [04:40, 02:06](619 MB) -PASS -- TEST 'control_p8_intel' [06:30, 03:32](1857 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:40, 03:04](1851 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:34, 03:29](1852 MB) -PASS -- TEST 'control_restart_p8_intel' [05:19, 02:12](1009 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:28, 03:34](1844 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:19, 02:15](1020 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:30, 03:41](1846 MB) -PASS -- TEST 'control_2threads_p8_intel' [09:26, 05:56](1934 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:18, 06:00](1859 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:30, 03:49](1909 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:35, 03:13](1862 MB) -PASS -- TEST 'merra2_thompson_intel' [06:17, 03:19](1863 MB) -PASS -- TEST 'regional_control_intel' [07:53, 04:47](891 MB) -PASS -- TEST 'regional_restart_intel' [06:02, 02:53](878 MB) -PASS -- TEST 'regional_decomp_intel' [07:53, 05:01](896 MB) -PASS -- TEST 'regional_noquilt_intel' [06:51, 04:42](1216 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:59, 04:43](902 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:55, 04:46](883 MB) -PASS -- TEST 'regional_wofs_intel' [08:51, 05:51](1589 MB) - -PASS -- COMPILE 'rrfs_intel' [15:16, 12:53] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:33, 06:09](1006 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:06, 03:50](1165 MB) -PASS -- TEST 'rap_decomp_intel' [09:33, 06:23](1005 MB) -PASS -- TEST 'rap_2threads_intel' [14:14, 11:27](1088 MB) -PASS -- TEST 'rap_restart_intel' [06:19, 03:14](883 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:33, 06:06](1006 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:34, 06:22](1003 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:03, 04:36](882 MB) -PASS -- TEST 'hrrr_control_intel' [06:13, 03:13](999 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:13, 03:17](998 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [09:31, 05:42](1077 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:41, 01:45](836 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:34, 06:01](993 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:44, 08:12](1958 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:43, 07:52](1947 MB) - -PASS -- COMPILE 'csawmg_intel' [14:17, 11:46] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [08:56, 06:20](960 MB) -PASS -- TEST 'control_ras_intel' [05:43, 02:51](658 MB) - -PASS -- COMPILE 'wam_intel' [13:18, 11:39] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:44, 10:23](1649 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:15, 12:06] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:22, 03:05](1866 MB) -PASS -- TEST 'regional_control_faster_intel' [08:03, 04:33](894 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:25, 14:33] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:07, 02:07](1605 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:08, 02:05](1602 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:45, 02:51](807 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:44, 02:35](807 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:57, 04:43](1112 MB) -PASS -- TEST 'control_ras_debug_intel' [04:40, 02:39](812 MB) -PASS -- TEST 'control_diag_debug_intel' [06:11, 02:37](1663 MB) -PASS -- TEST 'control_debug_p8_intel' [05:54, 02:51](1894 MB) -PASS -- TEST 'regional_debug_intel' [18:56, 16:15](917 MB) -PASS -- TEST 'rap_control_debug_intel' [07:43, 04:40](1191 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:31, 04:33](1183 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:35, 04:38](1187 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:34, 04:45](1192 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:42, 04:38](1191 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:08, 04:54](1271 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:40, 04:46](1189 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:36, 04:48](1190 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:37, 04:46](1191 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:39, 04:45](1190 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:30, 04:45](1187 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:32, 04:39](1185 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:44, 07:44](1183 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:40, 04:36](1185 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:46, 04:47](1191 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:44, 04:40](1190 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:20, 07:58](1195 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:15, 07:09] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:07, 12:16](1690 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:13, 11:31] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:40, 03:35](1032 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:05, 05:08](876 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:09, 02:45](872 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [12:52, 09:41](926 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:14, 04:56](927 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:11, 02:54](867 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:54, 03:55](794 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:27, 01:36](768 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:19, 11:20] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:14, 01:48](1079 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:16, 01:26](1077 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:13, 01:13](963 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:19, 11:43] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:02, 03:37](901 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:18, 07:35] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:27, 04:35](1062 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:37, 04:28](1064 MB) -PASS -- TEST 'conus13km_debug_intel' [16:21, 12:48](1150 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:29, 12:45](827 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [17:16, 13:46](1146 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:22, 12:59](1216 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:19, 07:21] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:37, 04:47](1092 MB) - -PASS -- COMPILE 'hafsw_intel' [19:21, 17:46] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:26, 04:32](697 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:02, 05:21](1064 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:52, 06:24](755 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:42, 10:34](780 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:52, 11:41](799 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:21, 04:45](471 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:29, 05:49](484 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:54, 02:32](391 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:51, 06:11](459 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:10, 03:15](507 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:14, 03:03](505 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:17, 03:46](576 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:40, 01:10](424 MB) -PASS -- TEST 'gnv1_nested_intel' [08:20, 03:55](1705 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [11:19, 08:51] ( 1467 warnings 1469 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:10, 12:00](620 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [19:21, 17:31] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:16, 06:53](623 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:22, 06:56](683 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [21:25, 18:56] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:06, 05:19](666 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:25, 16:01] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:31, 05:38](735 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:33, 05:39](724 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:18, 16:16](896 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:20, 08:25] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:26, 02:29](770 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:29, 01:31](756 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:34, 02:20](646 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:42, 02:22](649 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:39, 02:23](647 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:35, 02:29](767 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:38, 02:29](757 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:35, 02:20](648 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:54, 05:38](695 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:11, 05:37](683 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:24, 02:28](769 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:29, 03:53](2034 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:33, 03:52](2033 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:12, 05:51] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:24, 05:16](753 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:18, 08:24] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:31, 02:27](766 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:19, 02:45] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:37, 01:06](312 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:28, 01:01](450 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:42](449 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:20, 13:51] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:31, 03:56](1908 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:20, 12:52] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:26, 08:02](1909 MB) - -PASS -- COMPILE 'atml_intel' [17:20, 14:40] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:45, 06:06](1882 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:42, 06:18](1884 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:00, 03:40](1035 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:17, 10:35] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:51, 06:10](1935 MB) - -PASS -- COMPILE 'atmw_intel' [16:19, 13:47] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:30, 02:18](1878 MB) - -PASS -- COMPILE 'atmaero_intel' [15:21, 12:59] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:35, 04:14](3126 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:41, 04:16](3006 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:20, 04:22](3017 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [10:17, 08:08] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [26:31, 21:47](4536 MB) - -PASS -- COMPILE 'atm_fbh_intel' [14:17, 11:34] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:43, 08:02](844 MB) +PASS -- COMPILE 's2swa_32bit_intel' [24:23, 21:17] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:26, 10:29](3201 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:31, 23:17] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:57, 14:22](1911 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:15, 15:20](1939 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:11, 07:15](1080 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:03, 16:21](1879 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:30, 23:02] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:21, 14:02](1911 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:23, 11:42] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:53, 25:07](1945 MB) + +PASS -- COMPILE 's2swa_intel' [24:30, 21:23] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [18:40, 13:44](3222 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:35, 13:33](3224 MB) +PASS -- TEST 'cpld_restart_p8_intel' [12:35, 07:35](3152 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [18:18, 13:36](3247 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [12:35, 07:33](3175 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [29:21, 24:45](3812 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [18:18, 13:20](3216 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:12, 10:33](3532 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:35, 13:41](3231 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:27, 09:01](3820 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:38, 06:43](3617 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [29:34, 16:59](4538 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [27:44, 10:12](4672 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:59, 07:51](3205 MB) + +PASS -- COMPILE 's2sw_intel' [22:27, 19:36] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:32, 07:31](1912 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:48, 11:46](1984 MB) + +PASS -- COMPILE 's2swa_debug_intel' [14:23, 11:34] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [24:56, 21:01](3300 MB) + +PASS -- COMPILE 's2sw_debug_intel' [13:21, 11:02] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:32, 09:04](1959 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [18:23, 15:57] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:40, 04:57](1989 MB) + +PASS -- COMPILE 's2s_intel' [19:25, 16:53] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:14, 05:41](2884 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [06:12, 02:05](2892 MB) +PASS -- TEST 'cpld_restart_c48_intel' [05:12, 01:25](2307 MB) + +PASS -- COMPILE 's2swa_faster_intel' [26:21, 23:53] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [18:22, 13:30](3231 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:19, 21:33] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:57, 23:24](1926 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:07, 12:04](1087 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [30:42, 27:23](1892 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:15, 11:05] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:43, 30:08](1957 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [17:18, 14:22] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:40, 03:24](667 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:09, 02:41](1571 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:08, 02:43](1568 MB) +PASS -- TEST 'control_latlon_intel' [06:08, 02:38](1564 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:16, 02:41](1562 MB) +PASS -- TEST 'control_c48_intel' [13:06, 09:14](1588 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:42, 05:15](710 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [13:10, 09:15](1588 MB) +PASS -- TEST 'control_c192_intel' [14:56, 09:58](1694 MB) +PASS -- TEST 'control_c384_intel' [18:21, 11:14](1976 MB) +PASS -- TEST 'control_c384gdas_intel' [16:42, 07:04](1175 MB) +PASS -- TEST 'control_stochy_intel' [04:31, 01:26](625 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:34, 00:51](436 MB) +PASS -- TEST 'control_lndp_intel' [04:34, 01:20](619 MB) +PASS -- TEST 'control_iovr4_intel' [05:37, 02:07](620 MB) +PASS -- TEST 'control_iovr5_intel' [05:34, 02:07](622 MB) +PASS -- TEST 'control_p8_intel' [07:32, 03:29](1862 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:32, 03:15](1857 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:28, 03:32](1852 MB) +PASS -- TEST 'control_restart_p8_intel' [06:24, 02:16](1011 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:28, 03:26](1854 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:23, 02:17](1019 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:27, 03:36](1846 MB) +PASS -- TEST 'control_2threads_p8_intel' [09:29, 06:04](1946 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:14, 05:59](1858 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:35, 03:57](1905 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:24, 03:13](1855 MB) +PASS -- TEST 'merra2_thompson_intel' [07:23, 03:25](1864 MB) +PASS -- TEST 'regional_control_intel' [09:01, 04:48](886 MB) +PASS -- TEST 'regional_restart_intel' [05:57, 02:49](877 MB) +PASS -- TEST 'regional_decomp_intel' [08:53, 05:01](898 MB) +PASS -- TEST 'regional_noquilt_intel' [08:00, 04:43](1214 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:58, 04:46](898 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:56, 04:52](892 MB) +PASS -- TEST 'regional_wofs_intel' [09:02, 05:50](1594 MB) + +PASS -- COMPILE 'rrfs_intel' [15:16, 12:52] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:12, 06:09](1003 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:19, 03:43](1162 MB) +PASS -- TEST 'rap_decomp_intel' [10:12, 06:23](1004 MB) +PASS -- TEST 'rap_2threads_intel' [15:05, 11:31](1089 MB) +PASS -- TEST 'rap_restart_intel' [07:08, 03:11](884 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:11, 06:07](1008 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:11, 06:23](1003 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:15, 04:35](884 MB) +PASS -- TEST 'hrrr_control_intel' [07:05, 03:12](998 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:05, 03:17](998 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [10:09, 05:46](1079 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:44, 01:45](831 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:15, 06:01](994 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:48, 08:07](1958 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:48, 07:54](1945 MB) + +PASS -- COMPILE 'csawmg_intel' [14:16, 11:48] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [09:59, 06:24](959 MB) +PASS -- TEST 'control_ras_intel' [05:28, 02:51](655 MB) + +PASS -- COMPILE 'wam_intel' [14:18, 11:36] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:45, 10:12](1653 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:22, 12:06] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:38, 03:09](1852 MB) +PASS -- TEST 'regional_control_faster_intel' [07:53, 04:40](896 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [17:20, 14:42] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:13, 02:09](1605 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:15, 02:04](1604 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:37, 02:52](806 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:33, 02:34](805 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:59, 04:41](1114 MB) +PASS -- TEST 'control_ras_debug_intel' [05:29, 02:38](813 MB) +PASS -- TEST 'control_diag_debug_intel' [06:19, 02:37](1658 MB) +PASS -- TEST 'control_debug_p8_intel' [06:53, 02:58](1896 MB) +PASS -- TEST 'regional_debug_intel' [20:00, 16:19](913 MB) +PASS -- TEST 'rap_control_debug_intel' [07:39, 04:44](1188 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:34, 04:35](1186 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:34, 04:44](1185 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:38, 04:38](1191 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:36, 04:38](1189 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:07, 04:55](1272 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:41, 04:47](1188 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:48, 04:44](1189 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:32, 04:41](1186 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:30, 04:43](1188 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:43, 04:33](1184 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:32, 04:39](1187 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:38, 07:33](1185 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:34, 04:38](1184 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:31, 04:40](1189 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:35, 04:43](1187 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:59, 08:13](1193 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:14, 07:15] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:11, 12:29](1693 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:19, 11:33] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:56, 03:30](1028 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:13, 05:09](878 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:03, 02:45](876 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [12:55, 09:35](929 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:55, 04:56](925 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:12, 02:53](871 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:00, 03:51](790 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:37, 01:31](772 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:15, 11:31] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:16, 01:46](1076 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:02, 01:16](1081 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:53, 01:04](965 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:14, 11:39] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:49, 03:37](899 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:13, 07:40] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:24, 04:33](1065 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:32, 04:28](1062 MB) +PASS -- TEST 'conus13km_debug_intel' [16:07, 12:36](1147 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:27, 12:56](830 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [17:14, 13:43](1148 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:19, 12:47](1215 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:15, 07:25] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:32, 04:36](1090 MB) + +PASS -- COMPILE 'hafsw_intel' [20:20, 17:47] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:16, 04:30](702 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:51, 05:02](1069 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:37, 06:24](758 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:39, 10:35](775 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:06, 11:45](794 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:23, 04:37](470 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:34, 05:41](484 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:58, 02:15](395 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:33, 06:09](459 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:55, 03:16](506 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:12, 03:01](501 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:13, 03:45](573 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:39, 01:12](430 MB) +PASS -- TEST 'gnv1_nested_intel' [09:09, 03:57](1710 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [11:13, 08:53] ( 1467 warnings 1469 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:11, 12:14](617 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:20, 17:24] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:22, 06:52](617 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:26, 06:58](684 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [21:16, 18:48] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:26, 05:19](668 MB) + +PASS -- COMPILE 'hafs_all_intel' [18:20, 15:55] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:34, 05:37](735 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:27, 05:41](719 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:14, 16:12](911 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [11:14, 08:34] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:20, 02:28](767 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:29, 01:31](758 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:21, 02:21](646 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:35, 02:23](645 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:25, 02:23](648 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:33, 02:27](767 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:31, 02:28](769 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:41, 02:21](649 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:34, 05:37](698 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:23, 05:37](677 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:30, 02:27](768 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:25, 03:52](2034 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:22, 03:51](2032 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:18, 05:52] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:25, 05:15](750 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [11:13, 08:30] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:27, 02:29](768 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:14, 02:41] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:41, 01:06](309 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:43, 01:01](450 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:29, 00:43](451 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:23, 13:34] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:34, 03:42](1910 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:23, 12:50] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:16, 07:53](1898 MB) + +PASS -- COMPILE 'atml_intel' [17:15, 14:42] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:31, 06:03](1889 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:33, 06:28](1877 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:57, 03:33](1032 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:16, 10:45] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:49, 06:16](1925 MB) + +PASS -- COMPILE 'atmw_intel' [17:15, 14:11] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:21, 02:26](1884 MB) + +PASS -- COMPILE 'atmaero_intel' [16:14, 12:58] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:35, 04:16](3129 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:41, 04:16](3008 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:05, 04:22](3013 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [11:16, 08:04] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [26:50, 21:41](4538 MB) + +PASS -- COMPILE 'atm_fbh_intel' [14:13, 11:24] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:43, 08:03](847 MB) SYNOPSIS: -Starting Date/Time: 20241221 10:24:25 -Ending Date/Time: 20241221 12:15:10 -Total Time: 01h:51m:50s +Starting Date/Time: 20241223 18:43:57 +Ending Date/Time: 20241223 20:37:33 +Total Time: 01h:54m:40s Compiles Completed: 42/42 -Tests Completed: 184/186 -Failed Tests: -* TEST cpld_control_c192_p8_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /glade/derecho/scratch/jongkim/UFS-RT/pr-2538/tests/logs/log_derecho/run_cpld_control_c192_p8_intel.log -* TEST cpld_restart_c192_p8_intel: FAILED: UNABLE TO START TEST --- LOG: N/A - -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 DERECHO REGRESSION TESTING LOG==== -====START OF DERECHO REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -348b89d2a1b0728bea91816776db00f4bb8f6f24 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - c7ea491e6fd99e459af977bfd57fa14aa6a349eb CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-12-16) - ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) - 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) - 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) - 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) --179cae1dd84401cf25d250bd9102e66560a9d328 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) - 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) - 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: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20241212 -COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_59508 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: nral0032 - -PASS -- COMPILE 's2swa_intel' [23:22, 21:38] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:26, 09:00](3813 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:49, 06:26](3618 MB) - -SYNOPSIS: -Starting Date/Time: 20241222 05:52:15 -Ending Date/Time: 20241222 06:39:52 -Total Time: 00h:47m:51s -Compiles Completed: 1/1 -Tests Completed: 2/2 +Tests Completed: 186/186 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaeac5.log b/tests/logs/RegressionTests_gaeac5.log index 87d19d3ade..1c20bec289 100644 --- a/tests/logs/RegressionTests_gaeac5.log +++ b/tests/logs/RegressionTests_gaeac5.log @@ -1,20 +1,20 @@ ====START OF GAEAC5 REGRESSION TESTING LOG==== UFSWM hash used in testing: -527939eb224c50a4d9f66a6099cc2b8b03baf6c8 +ad560f4d81e3fe50c21b316a5207b2fbbd8a4e2b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - c7ea491e6fd99e459af977bfd57fa14aa6a349eb CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-12-16) + 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) + adbb06556f9b9123d24248e4505cd3dedee1d01a FV3 (remotes/origin/rrfsv1-to-ufs/dev5) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) + 2594a9e2c73c2a3a9acaa78fef8252cf5de3b524 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5530-g2594a9e2) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -38,306 +38,22 @@ 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-20241212 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_3484141 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20241223 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_1237264 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [16:11, 14:11] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:54, 12:00](3183 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:16, 18:54] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:14, 14:38](1899 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:07, 15:20](1954 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:02, 07:07](1072 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:52, 16:49](1884 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:15, 18:31] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:38, 14:30](1896 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:10, 08:12] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:49, 27:30](1920 MB) - -PASS -- COMPILE 's2swa_intel' [14:11, 13:09] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [18:24, 15:33](3214 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:37, 15:22](3213 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:59, 08:41](3134 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [18:36, 15:29](3237 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [11:02, 08:55](3161 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [20:32, 17:26](3441 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:52, 15:03](3206 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [15:33, 12:45](3155 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:37, 15:33](3211 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:29, 09:50](3491 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:01, 07:16](3597 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [23:13, 18:40](4278 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:54, 11:38](4362 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:05, 09:13](3191 MB) - -PASS -- COMPILE 's2sw_intel' [15:11, 13:36] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:48, 07:33](1912 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:25, 12:20](1971 MB) - -PASS -- COMPILE 's2swa_debug_intel' [09:10, 07:53] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [25:05, 22:22](3267 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:11, 08:01] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:49, 08:54](1940 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:11, 12:01] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:56, 05:04](1973 MB) - -PASS -- COMPILE 's2s_intel' [13:11, 12:06] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:47, 05:35](2877 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:40, 01:45](2880 MB) -PASS -- TEST 'cpld_restart_c48_intel' [05:05, 01:08](2296 MB) - -PASS -- COMPILE 's2swa_faster_intel' [16:13, 14:22] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [17:59, 15:29](3215 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:12, 19:04] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:09, 25:03](1920 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:22, 12:21](1104 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [31:07, 28:44](1887 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:15, 07:55] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:49, 29:54](1948 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:11, 11:50] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:29, 03:43](655 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:22, 03:06](1552 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:54, 03:28](1567 MB) -PASS -- TEST 'control_latlon_intel' [05:51, 03:22](1557 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:02, 03:28](1552 MB) -PASS -- TEST 'control_c48_intel' [12:08, 10:07](1570 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:43, 05:44](694 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [14:00, 11:15](1569 MB) -PASS -- TEST 'control_c192_intel' [13:57, 11:20](1686 MB) -PASS -- TEST 'control_c384_intel' [26:20, 23:42](1973 MB) -PASS -- TEST 'control_c384gdas_intel' [17:35, 14:34](1171 MB) -PASS -- TEST 'control_stochy_intel' [03:30, 01:46](611 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:24, 01:37](419 MB) -PASS -- TEST 'control_lndp_intel' [04:50, 01:41](608 MB) -PASS -- TEST 'control_iovr4_intel' [05:08, 02:27](609 MB) -PASS -- TEST 'control_iovr5_intel' [04:22, 02:34](606 MB) -PASS -- TEST 'control_p8_intel' [05:40, 03:37](1838 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:57, 03:19](1846 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:49, 03:44](1838 MB) -PASS -- TEST 'control_restart_p8_intel' [03:44, 01:56](1003 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:48, 03:35](1834 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:02, 01:55](1009 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:42, 03:49](1835 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:58, 03:30](1918 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:33, 06:18](1846 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:43, 04:14](1899 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:48, 03:14](1857 MB) -PASS -- TEST 'merra2_thompson_intel' [05:43, 03:31](1840 MB) -PASS -- TEST 'regional_control_intel' [06:26, 04:42](876 MB) -PASS -- TEST 'regional_restart_intel' [04:29, 02:36](863 MB) -PASS -- TEST 'regional_decomp_intel' [06:26, 04:49](876 MB) -PASS -- TEST 'regional_2threads_intel' [05:26, 03:39](1009 MB) -PASS -- TEST 'regional_noquilt_intel' [06:27, 04:36](1211 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:49, 04:44](883 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:41, 04:42](883 MB) -PASS -- TEST 'regional_wofs_intel' [08:37, 06:22](1573 MB) - -PASS -- COMPILE 'rrfs_intel' [13:11, 11:34] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:46, 06:51](985 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:00, 04:00](1171 MB) -PASS -- TEST 'rap_decomp_intel' [09:39, 07:10](988 MB) -PASS -- TEST 'rap_2threads_intel' [09:37, 07:18](1062 MB) -PASS -- TEST 'rap_restart_intel' [05:51, 03:31](873 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:38, 06:49](989 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:37, 07:05](988 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:46, 04:53](874 MB) -PASS -- TEST 'hrrr_control_intel' [05:38, 03:47](984 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:35, 03:49](982 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:34, 03:43](1054 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:27, 01:53](820 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:34, 06:39](981 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:22, 08:50](1943 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:24, 08:26](1933 MB) - -PASS -- COMPILE 'csawmg_intel' [12:11, 10:44] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [08:30, 06:34](944 MB) -PASS -- TEST 'control_ras_intel' [05:22, 03:15](643 MB) - -PASS -- COMPILE 'wam_intel' [12:11, 10:18] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:49, 11:47](1639 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:12, 11:50] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:40, 03:05](1844 MB) -PASS -- TEST 'regional_control_faster_intel' [06:29, 04:28](876 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [13:17, 11:17] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:33, 02:40](1582 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:38, 02:35](1581 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:22, 03:20](785 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:19, 02:48](785 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:28, 04:15](1088 MB) -PASS -- TEST 'control_ras_debug_intel' [04:21, 02:52](791 MB) -PASS -- TEST 'control_diag_debug_intel' [04:35, 02:56](1643 MB) -PASS -- TEST 'control_debug_p8_intel' [04:29, 02:50](1875 MB) -PASS -- TEST 'regional_debug_intel' [18:28, 16:31](891 MB) -PASS -- TEST 'rap_control_debug_intel' [06:21, 05:06](1164 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:21, 04:59](1163 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:20, 05:00](1164 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:23, 05:09](1158 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 05:03](1165 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:27, 05:14](1249 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:23, 05:10](1163 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:22, 05:03](1167 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:22, 05:07](1168 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 05:01](1164 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:18, 05:05](1161 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:25, 05:06](1166 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:22, 07:56](1161 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:23, 05:16](1162 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:27, 05:04](1162 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:26, 05:01](1167 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:42, 08:37](1168 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:21, 07:52] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:48, 13:13](1663 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:17, 10:56] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:02, 03:47](1041 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:36, 05:54](866 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:45, 03:19](868 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:14, 06:26](909 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:36, 03:15](911 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:38, 03:45](862 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:38, 04:09](778 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:59, 01:44](749 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:10, 10:03] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:14, 02:02](1072 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:30, 00:57](1053 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:52, 01:21](950 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:15, 10:31] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:11, 04:20](895 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:11, 07:23] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:25, 04:58](1042 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:57, 04:51](1039 MB) -PASS -- TEST 'conus13km_debug_intel' [16:02, 13:17](1132 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:03, 13:34](804 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:53, 10:47](1108 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:55, 13:31](1193 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:11, 07:55] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:25, 05:10](1064 MB) - -PASS -- COMPILE 'hafsw_intel' [16:11, 14:16] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:05, 05:10](719 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:31, 04:22](1080 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:19, 07:46](744 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:07, 11:26](771 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:26, 13:04](803 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:54, 05:26](469 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:14, 06:40](499 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:34, 02:46](397 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:56, 07:28](486 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:46, 03:45](506 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:49, 03:34](510 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:01, 04:40](586 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:58, 01:30](423 MB) -PASS -- TEST 'gnv1_nested_intel' [08:50, 05:19](1698 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:11, 08:59] ( 1467 warnings 1469 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:09, 12:50](612 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:12, 13:56] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:13, 07:31](629 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:10, 07:42](810 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:17, 12:47] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:13, 06:02](806 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:12, 11:59] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:06, 06:15](737 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:12, 06:19](718 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:11, 20:08](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [12:11, 10:22] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:21, 02:37](765 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:23, 01:36](752 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:21, 02:27](644 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:21, 02:28](642 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:43](644 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:20, 02:37](765 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:20, 02:38](764 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:20, 02:29](643 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:57, 06:12](695 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:58, 06:12](674 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:19, 02:36](764 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:23, 04:40](2031 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:22, 04:39](2031 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:10, 05:37] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:20, 05:25](749 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [12:11, 10:09] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:23, 02:36](764 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:55] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:41, 02:00](314 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:36, 01:26](462 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:37, 00:58](463 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 02:05] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:48, 00:36](449 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:58, 00:16](250 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 10:55] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:53, 04:34](1913 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:13, 10:32] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [10:50, 08:35](1900 MB) - -PASS -- COMPILE 'atml_intel' [13:11, 11:23] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:56, 07:23](1882 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:56, 07:14](1883 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:33, 04:45](1028 MB) - -PASS -- COMPILE 'atml_debug_intel' [09:11, 07:48] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:56, 06:18](1904 MB) - -PASS -- COMPILE 'atmw_intel' [13:11, 11:30] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:46, 02:24](1878 MB) - -PASS -- COMPILE 'atmaero_intel' [13:11, 11:11] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:57, 06:16](3099 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:54, 06:46](2984 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:47, 06:50](2994 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:11, 07:15] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [21:38, 18:16](4444 MB) - -PASS -- COMPILE 'atm_fbh_intel' [11:13, 09:56] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:39, 09:31](832 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [21:12, 19:22] -PASS -- TEST 'cpld_control_gfsv17_intelllvm' [17:12, 14:45](1899 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [10:11, 09:09] -PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [30:50, 27:29](1924 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [21:11, 19:15] -PASS -- TEST 'cpld_control_sfs_intelllvm' [16:38, 14:18](1896 MB) - -PASS -- COMPILE 's2swa_intelllvm' [17:12, 15:30] -PASS -- TEST 'cpld_control_p8_intelllvm' [18:19, 15:47](3211 MB) +PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:11, 09:28] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:18, 30:49](1943 MB) SYNOPSIS: -Starting Date/Time: 20241219 19:59:31 -Ending Date/Time: 20241219 21:47:24 -Total Time: 01h:48m:51s -Compiles Completed: 47/47 -Tests Completed: 193/193 +Starting Date/Time: 20241224 13:52:52 +Ending Date/Time: 20241224 14:38:44 +Total Time: 00h:46m:13s +Compiles Completed: 1/1 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. @@ -346,3 +62,448 @@ If you are using this log as a pull request verification, please commit 'test_ch Result: SUCCESS ====END OF GAEAC5 REGRESSION TESTING LOG==== +====START OF GAEAC5 REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +ad560f4d81e3fe50c21b316a5207b2fbbd8a4e2b + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) + ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) + 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) + b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + adbb06556f9b9123d24248e4505cd3dedee1d01a FV3 (remotes/origin/rrfsv1-to-ufs/dev5) + 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) + 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) + 2594a9e2c73c2a3a9acaa78fef8252cf5de3b524 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5530-g2594a9e2) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) +-179cae1dd84401cf25d250bd9102e66560a9d328 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) + 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) + 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) + 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: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20241223 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_2479812 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [19:13, 17:28] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:42, 12:40](3186 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:14, 19:40] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:15, 15:08](1896 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:27, 16:02](1942 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:07, 07:29](1072 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:32, 17:09](1871 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:13, 22:10] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:28, 14:48](1901 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:14, 14:17] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [32:32, 27:29](1931 MB) + +PASS -- COMPILE 's2swa_intel' [20:14, 18:26] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [21:29, 16:12](3215 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [21:52, 16:04](3214 MB) +PASS -- TEST 'cpld_restart_p8_intel' [16:20, 10:01](3140 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [21:15, 16:05](3236 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [16:25, 10:25](3161 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [22:09, 17:45](3441 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [21:15, 15:55](3207 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [18:16, 13:26](3157 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [21:47, 16:00](3216 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [16:59, 10:02](3492 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [15:37, 07:04](3598 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [29:04, 18:52](4277 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [31:05, 12:01](4362 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [13:30, 09:57](3191 MB) + +PASS -- COMPILE 's2sw_intel' [19:14, 17:37] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:40, 08:01](1914 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:39, 12:57](1976 MB) + +PASS -- COMPILE 's2swa_debug_intel' [15:12, 13:24] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [27:55, 22:56](3265 MB) + +PASS -- COMPILE 's2sw_debug_intel' [13:16, 11:57] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:20, 09:28](1944 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:14, 14:22] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:28, 05:26](1975 MB) + +PASS -- COMPILE 's2s_intel' [19:13, 17:33] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:00, 05:39](2875 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [06:16, 01:50](2881 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:12, 01:03](2294 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:13, 16:28] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [20:26, 15:55](3209 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:20, 22:03] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [31:19, 25:17](1924 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [18:21, 13:47](1101 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [34:40, 29:54](1889 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:15, 12:46] ( 1525 warnings 1936 remarks ) +FAILED: TEST TIMED OUT -- TEST 'cpld_debug_pdlib_p8_intel' [, ]( MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:15, 12:53] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:08, 03:54](654 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [07:19, 03:11](1552 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:28, 03:28](1556 MB) +PASS -- TEST 'control_latlon_intel' [06:55, 03:07](1556 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:09, 03:56](1559 MB) +PASS -- TEST 'control_c48_intel' [14:14, 10:09](1573 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:38, 05:43](694 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [15:20, 11:06](1569 MB) +PASS -- TEST 'control_c192_intel' [15:07, 11:24](1687 MB) +PASS -- TEST 'control_c384_intel' [28:44, 23:51](1967 MB) +PASS -- TEST 'control_c384gdas_intel' [20:29, 15:02](1172 MB) +PASS -- TEST 'control_stochy_intel' [04:56, 02:03](608 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:54, 01:08](418 MB) +PASS -- TEST 'control_lndp_intel' [03:51, 01:48](607 MB) +PASS -- TEST 'control_iovr4_intel' [05:01, 02:41](607 MB) +PASS -- TEST 'control_iovr5_intel' [04:46, 02:43](607 MB) +PASS -- TEST 'control_p8_intel' [08:22, 04:03](1846 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:29, 03:29](1846 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:58, 03:53](1845 MB) +PASS -- TEST 'control_restart_p8_intel' [09:33, 02:28](1000 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:39, 04:04](1842 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [11:03, 02:08](1009 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:29, 04:02](1838 MB) +PASS -- TEST 'control_2threads_p8_intel' [08:48, 04:09](1923 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:51, 06:30](1847 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [09:16, 04:32](1902 MB) +PASS -- TEST 'control_p8_mynn_intel' [08:34, 04:09](1855 MB) +PASS -- TEST 'merra2_thompson_intel' [08:43, 03:43](1855 MB) +PASS -- TEST 'regional_control_intel' [07:37, 04:49](879 MB) +PASS -- TEST 'regional_restart_intel' [08:24, 02:53](864 MB) +PASS -- TEST 'regional_decomp_intel' [07:31, 04:59](875 MB) +PASS -- TEST 'regional_2threads_intel' [07:19, 04:01](1005 MB) +PASS -- TEST 'regional_noquilt_intel' [08:30, 04:42](1210 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:25, 04:51](877 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [10:02, 04:46](883 MB) +PASS -- TEST 'regional_wofs_intel' [13:22, 06:48](1574 MB) + +PASS -- COMPILE 'rrfs_intel' [16:17, 14:52] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [12:36, 06:53](989 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [11:21, 04:13](1165 MB) +PASS -- TEST 'rap_decomp_intel' [14:10, 07:25](990 MB) +PASS -- TEST 'rap_2threads_intel' [15:23, 08:18](1066 MB) +PASS -- TEST 'rap_restart_intel' [09:41, 03:53](869 MB) +PASS -- TEST 'rap_sfcdiff_intel' [13:26, 07:12](985 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:18, 07:30](987 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:44, 05:27](876 MB) +PASS -- TEST 'hrrr_control_intel' [13:38, 03:51](981 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [13:35, 04:07](982 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [12:51, 04:19](1065 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:51, 02:11](821 MB) +PASS -- TEST 'rrfs_v1beta_intel' [17:51, 07:00](984 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [16:59, 08:45](1947 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [18:04, 08:51](1938 MB) + +PASS -- COMPILE 'csawmg_intel' [16:17, 14:04] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [15:20, 06:55](945 MB) +PASS -- TEST 'control_ras_intel' [11:48, 03:39](643 MB) + +PASS -- COMPILE 'wam_intel' [14:13, 12:13] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [21:44, 12:15](1641 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:17, 12:39] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [11:24, 03:37](1843 MB) +PASS -- TEST 'regional_control_faster_intel' [06:54, 04:34](877 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [15:13, 14:08] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [10:08, 02:48](1581 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:32, 02:44](1581 MB) +PASS -- TEST 'control_stochy_debug_intel' [09:48, 03:28](785 MB) +PASS -- TEST 'control_lndp_debug_intel' [08:39, 02:56](784 MB) +PASS -- TEST 'control_csawmg_debug_intel' [10:03, 04:29](1084 MB) +PASS -- TEST 'control_ras_debug_intel' [07:34, 02:53](790 MB) +PASS -- TEST 'control_diag_debug_intel' [08:17, 03:03](1639 MB) +PASS -- TEST 'control_debug_p8_intel' [08:18, 03:06](1876 MB) +PASS -- TEST 'regional_debug_intel' [22:01, 16:44](891 MB) +PASS -- TEST 'rap_control_debug_intel' [09:43, 05:15](1163 MB) +PASS -- TEST 'hrrr_control_debug_intel' [09:42, 05:01](1162 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [09:43, 05:08](1163 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:50, 05:09](1163 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:43, 05:07](1163 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:52, 05:24](1249 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:49, 05:21](1170 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:48, 05:17](1167 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:46, 05:10](1166 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:39, 05:11](1164 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:33, 05:03](1159 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:32, 05:13](1165 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:02, 08:26](1159 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:43, 05:11](1158 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:57, 05:23](1167 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:47, 05:20](1164 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:44, 08:48](1167 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:11, 07:31] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:51, 13:59](1671 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:15, 13:43] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:55, 04:09](1038 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:12, 06:11](866 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [10:25, 03:36](864 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:39, 07:28](915 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:10, 04:15](918 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:51, 03:51](860 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:35, 04:18](780 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:22, 01:52](753 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:14, 12:33] ( 8 warnings 8 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_control_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'conus13km_2threads_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'conus13km_restart_mismatch_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:18, 13:38] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:03, 04:56](894 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:15, 09:15] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:06, 05:23](1043 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:51, 05:08](1040 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_qr_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_2threads_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_radar_tten_debug_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:21, 08:19] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:06, 05:10](1064 MB) + +PASS -- COMPILE 'hafsw_intel' [20:14, 17:49] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:09, 05:21](715 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:33, 05:03](1078 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:29, 08:32](743 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:57, 12:10](772 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:28, 12:57](800 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:50, 06:06](470 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:23, 07:30](500 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [07:01, 02:52](397 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:01, 07:43](486 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:41, 03:53](507 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:04, 03:41](505 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:13, 04:38](585 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:09, 01:36](424 MB) +PASS -- TEST 'gnv1_nested_intel' [11:15, 05:22](1698 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [14:19, 12:47] ( 1467 warnings 1469 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:57, 12:52](611 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [18:17, 16:52] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:05, 07:32](637 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:18, 07:52](810 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:13, 14:49] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:33, 06:10](809 MB) + +PASS -- COMPILE 'hafs_all_intel' [18:14, 17:02] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:40, 06:23](736 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:38, 06:23](717 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [24:33, 20:14](891 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [12:14, 11:06] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:37, 02:43](753 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:28, 01:35](741 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:27, 02:37](642 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:29, 02:30](644 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:26, 02:47](645 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:31, 02:47](752 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:33, 02:37](764 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:33, 02:28](642 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:24, 06:27](698 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:22, 06:21](674 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:34, 02:41](765 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:30, 04:42](2031 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:28, 04:43](2031 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:14, 07:52] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:28, 05:28](751 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [14:15, 12:44] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:27, 02:35](764 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [06:13, 04:21] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:59, 02:39](324 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:49, 01:15](462 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:52, 00:50](461 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [04:18, 02:52] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [03:08, 00:53](449 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [03:11, 00:24](250 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:15, 14:45] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:57, 04:34](1917 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:14, 11:38] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:43, 08:24](1899 MB) + +PASS -- COMPILE 'atml_intel' [14:16, 13:05] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:56, 08:20](1883 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [11:49, 08:23](1871 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:56, 04:01](1027 MB) + +PASS -- COMPILE 'atml_debug_intel' [12:20, 10:43] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:34, 06:31](1904 MB) + +PASS -- COMPILE 'atmw_intel' [16:15, 14:56] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:16, 02:23](1877 MB) + +PASS -- COMPILE 'atmaero_intel' [14:11, 12:26] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:28, 06:58](3100 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:33, 07:06](2982 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:14, 07:08](2991 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [11:16, 10:00] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:32, 19:00](4443 MB) + +PASS -- COMPILE 'atm_fbh_intel' [12:14, 10:54] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [12:01, 09:36](831 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [24:16, 22:33] +PASS -- TEST 'cpld_control_gfsv17_intelllvm' [18:54, 15:21](1904 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [11:16, 10:01] +PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [31:54, 28:02](1922 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [25:15, 23:30] +PASS -- TEST 'cpld_control_sfs_intelllvm' [17:18, 14:28](1896 MB) + +PASS -- COMPILE 's2swa_intelllvm' [20:13, 18:52] +PASS -- TEST 'cpld_control_p8_intelllvm' [20:06, 16:42](3213 MB) + +SYNOPSIS: +Starting Date/Time: 20241223 20:32:03 +Ending Date/Time: 20241223 22:40:39 +Total Time: 02h:12m:06s +Compiles Completed: 47/47 +Tests Completed: 185/193 +Failed Tests: +* TEST cpld_debug_pdlib_p8_intel: FAILED: TEST TIMED OUT +-- LOG: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_2479812/cpld_debug_pdlib_p8_intel/err +* TEST conus13km_control_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f5/epic/scratch/Jong.Kim/rt-2485/tests/logs/log_gaeac5/run_conus13km_control_intel.log +* TEST conus13km_2threads_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST conus13km_restart_mismatch_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST conus13km_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f5/epic/scratch/Jong.Kim/rt-2485/tests/logs/log_gaeac5/run_conus13km_debug_intel.log +* TEST conus13km_debug_qr_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f5/epic/scratch/Jong.Kim/rt-2485/tests/logs/log_gaeac5/run_conus13km_debug_qr_intel.log +* TEST conus13km_debug_2threads_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f5/epic/scratch/Jong.Kim/rt-2485/tests/logs/log_gaeac5/run_conus13km_debug_2threads_intel.log +* TEST conus13km_radar_tten_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f5/epic/scratch/Jong.Kim/rt-2485/tests/logs/log_gaeac5/run_conus13km_radar_tten_debug_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 GAEAC5 REGRESSION TESTING LOG==== +====START OF GAEAC5 REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +ad560f4d81e3fe50c21b316a5207b2fbbd8a4e2b + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) + ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) + 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) + b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + adbb06556f9b9123d24248e4505cd3dedee1d01a FV3 (remotes/origin/rrfsv1-to-ufs/dev5) + 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) + 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) + 2594a9e2c73c2a3a9acaa78fef8252cf5de3b524 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5530-g2594a9e2) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) +-179cae1dd84401cf25d250bd9102e66560a9d328 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) + 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) + 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) + 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: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20241223 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_2283970 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:11, 08:33] ( 1525 warnings 1936 remarks ) +FAILED: TEST TIMED OUT -- TEST 'cpld_debug_pdlib_p8_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:11, 10:21] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:03, 02:04](1072 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:01, 01:00](1056 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:03, 01:17](954 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:11, 07:28] ( 790 warnings 8 remarks ) +PASS -- TEST 'conus13km_debug_intel' [16:35, 13:15](1127 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:25, 13:25](799 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [14:23, 10:53](1107 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:13, 13:28](1193 MB) + +SYNOPSIS: +Starting Date/Time: 20241224 09:43:39 +Ending Date/Time: 20241224 11:00:47 +Total Time: 01h:17m:24s +Compiles Completed: 3/3 +Tests Completed: 7/8 +Failed Tests: +* TEST cpld_debug_pdlib_p8_intel: FAILED: TEST TIMED OUT +-- LOG: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_2283970/cpld_debug_pdlib_p8_intel/err + +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 GAEAC5 REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_gaeac6.log b/tests/logs/RegressionTests_gaeac6.log index 45982f69d1..46e4415bf7 100644 --- a/tests/logs/RegressionTests_gaeac6.log +++ b/tests/logs/RegressionTests_gaeac6.log @@ -1,20 +1,20 @@ ====START OF GAEAC6 REGRESSION TESTING LOG==== UFSWM hash used in testing: -527939eb224c50a4d9f66a6099cc2b8b03baf6c8 +ad560f4d81e3fe50c21b316a5207b2fbbd8a4e2b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - c7ea491e6fd99e459af977bfd57fa14aa6a349eb CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-12-16) + 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) + adbb06556f9b9123d24248e4505cd3dedee1d01a FV3 (remotes/origin/rrfsv1-to-ufs/dev5) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) + 2594a9e2c73c2a3a9acaa78fef8252cf5de3b524 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5530-g2594a9e2) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -38,288 +38,288 @@ 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/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20241212 -COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_2173325 +BASELINE DIRECTORY: /gpfs/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20241223 +COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_2187903 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: bil-fire8 * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [10:10, 08:49] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:40, 07:06](2030 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [02:14, 00:26] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [12:35, 10:30](1919 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [13:37, 11:13](1963 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [07:27, 05:08](1087 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [14:33, 12:16](1903 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [03:14, 01:21] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [24:26, 22:13](1917 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [26:11, 24:29] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [19:32, 17:44](1950 MB) - -PASS -- COMPILE 's2swa_intel' [10:10, 08:15] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:40, 09:12](2065 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:46, 09:12](2064 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:30, 04:56](1624 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:35, 09:12](2096 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:29, 05:00](1465 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [12:31, 10:34](2223 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:30, 08:59](2059 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:39, 08:03](2017 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:46, 09:11](2059 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [08:16, 05:57](2436 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [06:50, 04:14](2665 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [15:50, 11:16](3604 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [26:33, 22:42](3434 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:37, 05:09](1922 MB) - -PASS -- COMPILE 's2sw_intel' [09:10, 07:26] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:31, 04:49](1935 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:36, 07:55](1849 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:10, 03:49] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [16:39, 14:18](2087 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:10, 03:40] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:32, 05:55](1964 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [00:12, 58:15] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:34, 03:15](1991 MB) - -PASS -- COMPILE 's2s_intel' [09:10, 07:04] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [06:23, 04:11](2867 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:23, 01:17](2878 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:18, 00:45](2295 MB) - -PASS -- COMPILE 's2swa_faster_intel' [37:13, 35:11] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:38, 09:02](2067 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:11, 11:11] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:33, 17:43](1943 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:28, 08:59](1095 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:29, 20:55](1922 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 03:43] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [21:33, 19:44](1959 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [08:11, 06:33] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:17, 02:33](529 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:24, 02:06](1427 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:28, 02:10](1439 MB) -PASS -- TEST 'control_latlon_intel' [03:21, 02:02](1436 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:25, 02:05](1428 MB) -PASS -- TEST 'control_c48_intel' [09:23, 07:27](1569 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:19, 04:15](696 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [09:23, 07:28](1575 MB) -PASS -- TEST 'control_c192_intel' [09:27, 07:36](1695 MB) -PASS -- TEST 'control_c384_intel' [18:38, 16:29](1959 MB) -PASS -- TEST 'control_c384gdas_intel' [12:00, 09:53](1178 MB) -PASS -- TEST 'control_stochy_intel' [03:17, 01:11](488 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:14, 00:43](290 MB) -PASS -- TEST 'control_lndp_intel' [03:18, 01:09](492 MB) -PASS -- TEST 'control_iovr4_intel' [03:19, 01:41](483 MB) -PASS -- TEST 'control_iovr5_intel' [03:18, 01:42](483 MB) -PASS -- TEST 'control_p8_intel' [04:29, 02:20](1720 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:29, 02:01](1728 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:23, 02:20](1726 MB) -PASS -- TEST 'control_restart_p8_intel' [03:22, 01:20](876 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:21, 02:21](1712 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:21, 01:19](884 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:21, 02:23](1718 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:21, 02:45](1798 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:21, 04:10](1720 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:25, 02:35](1772 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:25, 02:01](1727 MB) -PASS -- TEST 'merra2_thompson_intel' [04:23, 02:14](1726 MB) -PASS -- TEST 'regional_control_intel' [05:17, 03:19](877 MB) -PASS -- TEST 'regional_restart_intel' [03:19, 01:52](859 MB) -PASS -- TEST 'regional_decomp_intel' [05:19, 03:29](885 MB) -PASS -- TEST 'regional_2threads_intel' [04:17, 02:31](1016 MB) -PASS -- TEST 'regional_noquilt_intel' [05:20, 03:18](1205 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:22, 03:21](861 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:17, 03:21](877 MB) -PASS -- TEST 'regional_wofs_intel' [06:18, 04:25](1572 MB) - -PASS -- COMPILE 'rrfs_intel' [07:11, 06:00] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [06:23, 04:51](865 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:32, 03:12](1161 MB) -PASS -- TEST 'rap_decomp_intel' [06:18, 04:59](870 MB) -PASS -- TEST 'rap_2threads_intel' [07:18, 05:48](945 MB) -PASS -- TEST 'rap_restart_intel' [04:19, 02:30](745 MB) -PASS -- TEST 'rap_sfcdiff_intel' [06:22, 04:46](866 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [06:18, 04:59](866 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:23, 03:35](744 MB) -PASS -- TEST 'hrrr_control_intel' [04:23, 02:34](860 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:18, 02:38](860 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:19, 02:57](933 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:17, 01:24](694 MB) -PASS -- TEST 'rrfs_v1beta_intel' [06:23, 04:43](861 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [07:16, 06:04](1822 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:16, 05:55](1814 MB) - -PASS -- COMPILE 'csawmg_intel' [54:12, 52:32] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [06:18, 04:12](821 MB) -PASS -- TEST 'control_ras_intel' [04:14, 02:12](521 MB) - -PASS -- COMPILE 'wam_intel' [07:11, 05:47] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [09:24, 07:31](1508 MB) +PASS -- COMPILE 's2swa_32bit_intel' [10:10, 08:12] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:31, 07:03](2027 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [56:14, 54:12] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [12:28, 10:28](1918 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [13:30, 11:18](1943 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [07:28, 05:09](1067 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [14:27, 12:17](1899 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [43:14, 41:41] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [12:22, 10:15](1918 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:10, 03:44] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [19:29, 17:38](1953 MB) + +PASS -- COMPILE 's2swa_intel' [10:10, 08:36] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:36, 09:13](2065 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:36, 09:12](2058 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:32, 04:57](1627 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:34, 09:12](2084 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:32, 05:00](1464 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [12:29, 10:43](2237 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:29, 08:58](2066 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:30, 07:17](2018 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:36, 09:10](2065 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [07:49, 05:55](2433 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [05:51, 03:58](2660 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [13:49, 11:06](3601 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [09:46, 06:37](3444 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:27, 05:09](1921 MB) + +PASS -- COMPILE 's2sw_intel' [25:13, 23:21] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:25, 04:48](1926 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:27, 07:58](1855 MB) + +PASS -- COMPILE 's2swa_debug_intel' [27:11, 25:46] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:28, 14:30](2087 MB) + +PASS -- COMPILE 's2sw_debug_intel' [30:11, 28:45] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:24, 05:58](1970 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [09:10, 07:04] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:23, 03:13](1991 MB) + +PASS -- COMPILE 's2s_intel' [57:12, 55:57] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [06:25, 04:11](2867 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:22, 01:17](2880 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:21, 00:45](2296 MB) + +PASS -- COMPILE 's2swa_faster_intel' [10:11, 08:36] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:27, 09:02](2065 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:11, 11:28] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:35, 17:43](1932 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:26, 09:01](1098 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:28, 20:53](1913 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:42] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [21:24, 19:42](1965 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [08:11, 06:53] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:17, 02:32](532 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:25, 02:04](1429 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:25, 02:10](1435 MB) +PASS -- TEST 'control_latlon_intel' [03:24, 02:02](1431 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:27, 02:03](1436 MB) +PASS -- TEST 'control_c48_intel' [09:24, 07:27](1572 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:17, 04:15](696 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [09:24, 07:25](1569 MB) +PASS -- TEST 'control_c192_intel' [09:28, 07:41](1689 MB) +PASS -- TEST 'control_c384_intel' [18:35, 16:29](1964 MB) +PASS -- TEST 'control_c384gdas_intel' [11:50, 09:57](1178 MB) +PASS -- TEST 'control_stochy_intel' [03:17, 01:11](486 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:15, 00:46](290 MB) +PASS -- TEST 'control_lndp_intel' [03:17, 01:08](490 MB) +PASS -- TEST 'control_iovr4_intel' [03:18, 01:43](485 MB) +PASS -- TEST 'control_iovr5_intel' [03:18, 01:43](483 MB) +PASS -- TEST 'control_p8_intel' [04:27, 02:22](1722 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:35, 02:01](1728 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:22, 02:21](1728 MB) +PASS -- TEST 'control_restart_p8_intel' [03:22, 01:22](875 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:20, 02:19](1712 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:22, 01:19](885 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:19, 02:24](1717 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:23, 02:46](1795 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:20, 04:11](1720 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:23, 02:38](1778 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:24, 02:02](1734 MB) +PASS -- TEST 'merra2_thompson_intel' [04:23, 02:14](1725 MB) +PASS -- TEST 'regional_control_intel' [05:21, 03:20](878 MB) +PASS -- TEST 'regional_restart_intel' [03:18, 01:50](860 MB) +PASS -- TEST 'regional_decomp_intel' [05:21, 03:29](879 MB) +PASS -- TEST 'regional_2threads_intel' [04:20, 02:36](1024 MB) +PASS -- TEST 'regional_noquilt_intel' [05:18, 03:16](1204 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:22, 03:18](861 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:19, 03:19](875 MB) +PASS -- TEST 'regional_wofs_intel' [06:20, 04:22](1572 MB) + +PASS -- COMPILE 'rrfs_intel' [08:11, 06:11] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [06:20, 04:47](870 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:32, 02:51](1161 MB) +PASS -- TEST 'rap_decomp_intel' [06:19, 04:58](866 MB) +PASS -- TEST 'rap_2threads_intel' [07:19, 05:46](942 MB) +PASS -- TEST 'rap_restart_intel' [04:19, 02:32](738 MB) +PASS -- TEST 'rap_sfcdiff_intel' [06:19, 04:50](869 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [06:19, 05:00](864 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:18, 03:34](741 MB) +PASS -- TEST 'hrrr_control_intel' [04:19, 02:33](864 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:20, 02:38](860 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:20, 02:57](934 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:16, 01:22](695 MB) +PASS -- TEST 'rrfs_v1beta_intel' [06:18, 04:42](864 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [07:15, 06:04](1819 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:15, 06:00](1813 MB) + +PASS -- COMPILE 'csawmg_intel' [07:11, 05:55] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [06:19, 04:10](820 MB) +PASS -- TEST 'control_ras_intel' [04:13, 02:12](519 MB) + +PASS -- COMPILE 'wam_intel' [07:11, 05:59] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [09:22, 07:34](1517 MB) PASS -- COMPILE 'atm_faster_dyn32_intel' [07:11, 05:56] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:26, 01:58](1725 MB) -PASS -- TEST 'regional_control_faster_intel' [05:19, 03:11](880 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 05:35] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:22, 01:32](1459 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:24, 01:29](1462 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:15, 02:07](660 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:15, 01:52](661 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:19, 02:50](964 MB) +PASS -- TEST 'control_p8_faster_intel' [03:23, 01:55](1726 MB) +PASS -- TEST 'regional_control_faster_intel' [05:18, 03:10](884 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 05:29] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:21, 01:33](1462 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:25, 01:30](1464 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:14, 02:06](662 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:15, 01:53](657 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:20, 02:50](962 MB) PASS -- TEST 'control_ras_debug_intel' [03:15, 01:54](669 MB) -PASS -- TEST 'control_diag_debug_intel' [03:21, 01:50](1516 MB) -PASS -- TEST 'control_debug_p8_intel' [03:17, 01:45](1757 MB) -PASS -- TEST 'regional_debug_intel' [13:17, 11:13](893 MB) -PASS -- TEST 'rap_control_debug_intel' [05:15, 03:23](1044 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:16, 03:19](1036 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:15, 03:22](1042 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:15, 03:24](1042 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:15, 03:20](1039 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:18, 03:32](1125 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:15, 03:26](1042 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:15, 03:24](1040 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:16, 03:23](1040 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:17, 03:18](1037 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:15, 03:19](1039 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:15, 03:23](1039 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:15, 05:18](1037 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:15, 03:20](1037 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:15, 03:21](1042 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:14, 03:23](1039 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:22, 05:41](1046 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:10, 03:07] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [10:20, 08:45](1539 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 05:46] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:31, 02:41](1040 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:22, 04:05](747 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:20, 02:12](743 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:18, 04:56](793 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:18, 02:36](792 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:17, 02:19](739 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:19, 03:01](645 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:14, 01:13](633 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:11, 05:44] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:28, 01:23](953 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:18, 00:44](1072 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:19, 00:52](826 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:11, 06:20] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:24, 02:45](771 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 03:12] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:15, 03:15](919 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:15, 03:09](916 MB) -PASS -- TEST 'conus13km_debug_intel' [10:25, 08:51](1006 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [10:25, 09:01](672 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:22, 07:52](1127 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [10:21, 08:41](1069 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 03:12] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:16, 03:19](942 MB) - -PASS -- COMPILE 'hafsw_intel' [09:11, 07:37] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [05:44, 03:34](716 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:18, 02:54](1071 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:51, 04:47](778 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [09:46, 08:02](819 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [10:52, 08:35](833 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:36, 03:31](469 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:50, 11:28](488 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:27, 01:44](405 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:10, 04:37](456 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:25, 02:33](500 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:31, 02:22](504 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:29, 03:00](585 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:19, 00:59](428 MB) -PASS -- TEST 'gnv1_nested_intel' [04:50, 02:55](1709 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:11, 03:18] ( 1467 warnings 1469 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [10:34, 08:16](602 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [08:13, 06:34] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [07:37, 05:08](639 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [07:37, 05:08](798 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [09:11, 07:26] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:53, 03:51](795 MB) - -PASS -- COMPILE 'hafs_all_intel' [09:11, 07:26] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [06:42, 04:17](765 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:43, 04:23](750 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [12:33, 10:58](890 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:11, 04:47] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:13, 01:42](751 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:13, 01:03](752 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:13, 01:37](642 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:13, 01:37](649 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:13, 01:38](644 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:13, 01:41](763 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:13, 01:41](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:13, 01:35](642 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:28, 04:04](707 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:26, 04:00](685 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:12, 01:42](763 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:13, 02:44](2032 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:13, 02:45](2031 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 02:25] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:14, 03:46](749 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 05:01] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:14, 01:41](764 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:39] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:21, 00:57](316 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:18, 00:48](461 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:17, 00:36](460 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:10, 06:35] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:26, 02:26](1794 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:10, 06:04] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:26, 06:03](1782 MB) - -PASS -- COMPILE 'atml_intel' [08:10, 06:45] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:31, 03:50](1893 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [05:31, 04:00](1896 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:18, 02:07](1044 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:10, 03:53] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:26, 04:04](1927 MB) - -PASS -- COMPILE 'atmw_intel' [09:10, 07:31] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:24, 01:17](1758 MB) - -PASS -- COMPILE 'atmaero_intel' [07:10, 06:02] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:28, 02:44](1958 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:27, 03:15](1597 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:23, 03:19](1607 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:10, 03:00] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [15:41, 13:43](4442 MB) - -PASS -- COMPILE 'atm_fbh_intel' [07:10, 05:40] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [07:18, 06:04](830 MB) +PASS -- TEST 'control_diag_debug_intel' [03:20, 01:51](1522 MB) +PASS -- TEST 'control_debug_p8_intel' [03:19, 01:43](1749 MB) +PASS -- TEST 'regional_debug_intel' [13:19, 11:11](900 MB) +PASS -- TEST 'rap_control_debug_intel' [05:14, 03:18](1041 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:14, 03:18](1037 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:14, 03:20](1040 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:14, 03:21](1040 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:14, 03:22](1041 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:16, 03:29](1124 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:15, 03:23](1042 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:15, 03:22](1041 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:15, 03:22](1040 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:14, 03:17](1038 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:14, 03:17](1039 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:14, 03:20](1042 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:14, 05:26](1042 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:14, 03:19](1038 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:14, 03:22](1044 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:14, 03:19](1039 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:18, 05:41](1044 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:11, 03:07] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [10:22, 08:42](1545 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 05:36] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:30, 02:41](1037 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:17, 04:02](747 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:17, 02:13](741 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:17, 04:56](791 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:17, 02:35](791 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:17, 02:20](740 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:19, 03:00](651 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:15, 01:13](627 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:11, 05:45] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:26, 01:22](953 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:20, 00:43](1084 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:20, 00:52](826 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [53:12, 51:12] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:18, 02:46](773 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:10, 03:07] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:14, 03:15](918 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:15, 03:11](917 MB) +PASS -- TEST 'conus13km_debug_intel' [10:20, 08:50](1004 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [10:21, 08:56](674 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:20, 07:53](1137 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [11:20, 09:07](1070 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:10, 03:08] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:14, 03:21](944 MB) + +PASS -- COMPILE 'hafsw_intel' [15:12, 13:16] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [05:46, 03:34](720 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:22, 02:56](1069 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:52, 04:45](780 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [09:47, 08:03](816 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [10:53, 08:37](830 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:35, 03:32](480 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:49, 04:22](484 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:25, 01:44](398 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:00, 10:47](456 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:27, 02:33](501 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:31, 02:22](503 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:34, 02:56](587 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:20, 00:59](429 MB) +PASS -- TEST 'gnv1_nested_intel' [04:47, 02:58](1708 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:10, 03:20] ( 1467 warnings 1469 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [10:33, 08:14](604 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [09:10, 07:19] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [06:32, 05:03](633 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:32, 09:43](794 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [08:10, 07:07] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:35, 03:52](791 MB) + +PASS -- COMPILE 'hafs_all_intel' [09:10, 07:37] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [06:43, 04:19](770 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:44, 04:19](750 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [12:36, 10:57](891 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:10, 05:04] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:14, 01:42](763 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:14, 01:02](751 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:17, 01:35](643 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 01:37](640 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:14, 01:38](641 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 01:41](764 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:14, 01:42](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 01:35](643 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:31, 04:05](707 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:29, 04:04](684 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 01:43](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:17, 02:43](2028 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:16, 02:43](2031 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:26] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:13, 03:46](735 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 04:57] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:13, 01:40](752 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:40] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:21, 00:58](324 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:18, 00:50](461 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:36](459 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:10, 06:27] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:23, 02:26](1795 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:10, 06:09] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:25, 05:19](1786 MB) + +PASS -- COMPILE 'atml_intel' [08:10, 06:41] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:25, 03:56](1895 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [05:25, 03:55](1893 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:19, 02:07](1037 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:10, 03:42] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:24, 06:57](1926 MB) + +PASS -- COMPILE 'atmw_intel' [09:10, 07:17] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:20, 01:17](1757 MB) + +PASS -- COMPILE 'atmaero_intel' [07:10, 05:58] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:24, 02:44](1944 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:24, 03:14](1604 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:20, 03:17](1610 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:10, 03:01] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [15:41, 13:26](4441 MB) + +PASS -- COMPILE 'atm_fbh_intel' [07:10, 05:41] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [07:17, 06:01](831 MB) SYNOPSIS: -Starting Date/Time: 20241219 20:00:12 -Ending Date/Time: 20241219 22:30:16 -Total Time: 02h:30m:34s +Starting Date/Time: 20241224 07:59:14 +Ending Date/Time: 20241224 10:23:05 +Total Time: 02h:24m:14s Compiles Completed: 42/42 Tests Completed: 187/187 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 383e5b8d6c..457dbacde4 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,15 +1,15 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -527939eb224c50a4d9f66a6099cc2b8b03baf6c8 +ad560f4d81e3fe50c21b316a5207b2fbbd8a4e2b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - c7ea491e6fd99e459af977bfd57fa14aa6a349eb CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-12-16) + 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) + adbb06556f9b9123d24248e4505cd3dedee1d01a FV3 (remotes/origin/rrfsv1-to-ufs/dev5) 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) @@ -26,390 +26,446 @@ 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-20241212 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3071368 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241223 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3170497 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:10, 13:04] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:29, 11:44](3322 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 16:13] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:05, 19:47](1986 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:22, 20:50](2178 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:17, 08:15](1278 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:11, 23:31](1878 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:11, 16:13] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [21:45, 19:22](1968 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:10, 05:59] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [30:09, 27:34](1932 MB) - -PASS -- COMPILE 's2swa_intel' [14:10, 13:04] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [18:28, 15:58](3351 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:31, 14:07](3345 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:21, 07:41](3239 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [17:21, 14:30](3344 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:27, 07:24](3275 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [18:19, 15:48](3538 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:21, 14:16](3317 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:25, 11:51](3221 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:29, 14:19](3357 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:16, 10:33](3518 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:58, 06:31](3619 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [26:20, 16:51](4285 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:16, 09:11](4393 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:45, 07:31](3308 MB) - -PASS -- COMPILE 's2sw_intel' [14:10, 12:18] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [12:16, 09:13](1994 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:26, 11:13](2058 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:10, 05:57] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [25:19, 22:46](3409 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:10, 05:45] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:12, 09:52](2007 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:10, 11:22] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:18, 04:22](2041 MB) - -PASS -- COMPILE 's2s_intel' [13:11, 11:28] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:53, 07:51](3040 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:49, 02:23](3026 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:42, 01:32](2485 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:12, 18:04] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:12, 13:23](3338 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:12, 15:50] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:31, 28:06](2010 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:25, 13:49](1282 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [36:15, 33:14](1934 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:39] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:20, 29:54](1977 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:11, 11:19] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:24, 03:25](701 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:44, 03:12](1590 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:45, 03:17](1581 MB) -PASS -- TEST 'control_latlon_intel' [05:36, 03:22](1584 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:44, 03:18](1588 MB) -PASS -- TEST 'control_c48_intel' [13:41, 11:39](1726 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:29, 06:31](849 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [13:45, 11:36](1732 MB) -PASS -- TEST 'control_c192_intel' [14:09, 12:05](1755 MB) -PASS -- TEST 'control_c384_intel' [16:56, 13:39](1985 MB) -PASS -- TEST 'control_c384gdas_intel' [13:12, 08:07](1373 MB) -PASS -- TEST 'control_stochy_intel' [03:21, 01:38](658 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:24, 00:58](500 MB) -PASS -- TEST 'control_lndp_intel' [03:20, 01:33](661 MB) -PASS -- TEST 'control_iovr4_intel' [04:22, 02:31](659 MB) -PASS -- TEST 'control_iovr5_intel' [04:22, 02:29](657 MB) -PASS -- TEST 'control_p8_intel' [05:54, 03:42](1881 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:55, 03:08](1888 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:47, 03:38](1873 MB) -PASS -- TEST 'control_restart_p8_intel' [03:45, 02:04](1130 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:48, 03:38](1863 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:00, 02:01](1171 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:45, 03:43](1863 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:44, 04:11](1945 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:41, 06:34](1878 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:50, 04:10](1953 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:52, 03:05](1896 MB) -PASS -- TEST 'merra2_thompson_intel' [05:48, 03:25](1865 MB) -PASS -- TEST 'regional_control_intel' [07:34, 05:18](1132 MB) -PASS -- TEST 'regional_restart_intel' [04:48, 02:52](1099 MB) -PASS -- TEST 'regional_decomp_intel' [07:34, 05:44](1117 MB) -PASS -- TEST 'regional_2threads_intel' [06:39, 04:00](1063 MB) -PASS -- TEST 'regional_noquilt_intel' [07:35, 05:22](1427 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:38, 05:20](1123 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:34, 05:24](1120 MB) -PASS -- TEST 'regional_wofs_intel' [08:36, 07:05](1899 MB) - -PASS -- COMPILE 'rrfs_intel' [12:12, 10:30] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:46, 07:52](1114 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:06, 04:12](1264 MB) -PASS -- TEST 'rap_decomp_intel' [10:40, 08:13](1038 MB) -PASS -- TEST 'rap_2threads_intel' [10:37, 08:46](1092 MB) -PASS -- TEST 'rap_restart_intel' [06:48, 04:06](1105 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:42, 07:49](1110 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:36, 08:10](1040 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:48, 05:54](1126 MB) -PASS -- TEST 'hrrr_control_intel' [05:43, 04:02](1036 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:40, 04:09](1026 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:36, 04:20](1089 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:26, 02:14](997 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:47, 07:45](1095 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:29, 09:40](1974 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:35, 09:17](2054 MB) - -PASS -- COMPILE 'csawmg_intel' [12:10, 10:13] -PASS -- TEST 'control_csawmg_intel' [08:38, 06:12](1021 MB) -PASS -- TEST 'control_ras_intel' [05:22, 03:17](744 MB) - -PASS -- COMPILE 'wam_intel' [12:10, 10:30] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:53, 11:21](1660 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:40] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:59, 02:51](1887 MB) -PASS -- TEST 'regional_control_faster_intel' [06:40, 04:55](1104 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 08:09] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:52, 02:12](1613 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:54, 02:11](1608 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:25, 03:05](823 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:25, 02:51](832 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:46, 04:20](1135 MB) -PASS -- TEST 'control_ras_debug_intel' [04:27, 02:52](835 MB) -PASS -- TEST 'control_diag_debug_intel' [04:55, 02:48](1696 MB) -PASS -- TEST 'control_debug_p8_intel' [04:52, 02:40](1900 MB) -PASS -- TEST 'regional_debug_intel' [19:42, 17:37](1110 MB) -PASS -- TEST 'rap_control_debug_intel' [06:27, 05:02](1208 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:26, 04:57](1213 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:22, 05:02](1216 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:22, 04:56](1216 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:23, 05:04](1212 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:48, 05:23](1291 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:24, 05:11](1219 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:24, 05:19](1205 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:26, 05:05](1221 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:23, 04:58](1210 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:24, 04:56](1218 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 05:03](1211 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:22, 08:06](1214 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:25, 04:56](1214 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:25, 04:55](1216 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:24, 05:03](1209 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:43, 08:43](1223 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:10, 04:21] -PASS -- TEST 'control_csawmg_debug_gnu' [05:00, 02:26](723 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:10, 04:42] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:06, 13:40](1682 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:12, 10:10] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:04, 03:59](1139 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:38, 06:34](1058 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:40, 03:27](991 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:33, 07:29](1003 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:35, 03:50](971 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:32, 03:38](930 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:39, 04:55](1038 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:29, 01:52](930 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:11, 10:10] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:59, 02:02](1188 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:41, 01:00](1119 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:14](1092 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:12, 10:04] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:41, 04:16](982 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:10, 04:34] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:22, 05:04](1093 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:23, 04:57](1086 MB) -PASS -- TEST 'conus13km_debug_intel' [16:03, 14:02](1230 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:49, 14:31](925 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [15:43, 12:19](1166 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:43, 14:12](1303 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:38] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:24, 05:04](1138 MB) - -PASS -- COMPILE 'hafsw_intel' [13:12, 11:51] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:19, 05:04](717 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:29, 06:03](1115 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:24, 07:08](815 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [19:23, 15:07](851 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:48, 18:41](874 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:07, 05:33](493 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:24, 06:50](505 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:45, 02:44](369 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:55, 07:27](479 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:45, 03:49](523 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:58, 03:49](519 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:51, 04:13](579 MB) +PASS -- COMPILE 's2swa_32bit_intel' [15:20, 13:48] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:22, 12:29](3315 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:20, 16:46] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:11, 19:47](1962 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:18, 20:49](2168 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:11, 08:16](1278 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:07, 23:49](1871 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:20, 16:35] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [22:45, 19:25](1963 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:19, 06:51] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [30:26, 27:41](1886 MB) + +PASS -- COMPILE 's2swa_intel' [15:20, 13:42] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [18:50, 15:40](3346 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:56, 14:14](3340 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:33, 08:16](3239 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:37, 14:09](3373 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [12:06, 08:31](3257 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [18:35, 15:25](3559 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:41, 14:20](3339 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:25, 11:34](3221 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:41, 14:04](3354 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:31, 10:25](3531 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:59, 07:21](3619 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [26:08, 16:58](4307 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:43, 09:12](4387 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:11, 07:18](3313 MB) + +PASS -- COMPILE 's2sw_intel' [15:20, 13:19] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [12:10, 09:12](1990 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:25, 11:19](2035 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:19, 06:51] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [26:43, 23:07](3368 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:20, 06:33] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:14, 10:04](2014 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:19, 11:31] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:03, 04:22](2047 MB) + +PASS -- COMPILE 's2s_intel' [14:19, 12:18] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:44, 07:58](3040 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:46, 02:29](3037 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:44, 01:27](2483 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:12, 17:10] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:26, 13:53](3356 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:12, 15:37] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [31:15, 28:15](2012 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:22, 13:52](1284 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:13, 33:03](1936 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:11, 06:05] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:11, 29:25](1965 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:12, 10:48] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:28, 03:35](700 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:51, 03:19](1588 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:01, 03:25](1594 MB) +PASS -- TEST 'control_latlon_intel' [05:48, 03:19](1594 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:51, 03:21](1591 MB) +PASS -- TEST 'control_c48_intel' [13:52, 11:35](1725 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:29, 06:48](850 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [13:56, 11:36](1728 MB) +PASS -- TEST 'control_c192_intel' [15:03, 12:16](1758 MB) +PASS -- TEST 'control_c384_intel' [17:09, 13:51](1988 MB) +PASS -- TEST 'control_c384gdas_intel' [13:12, 08:19](1373 MB) +PASS -- TEST 'control_stochy_intel' [03:26, 01:39](659 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:48, 01:03](499 MB) +PASS -- TEST 'control_lndp_intel' [03:26, 01:35](658 MB) +PASS -- TEST 'control_iovr4_intel' [04:27, 02:40](661 MB) +PASS -- TEST 'control_iovr5_intel' [04:25, 02:40](659 MB) +PASS -- TEST 'control_p8_intel' [06:00, 03:50](1880 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:04, 03:29](1890 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:51, 03:49](1884 MB) +PASS -- TEST 'control_restart_p8_intel' [04:49, 02:17](1131 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:56, 03:56](1876 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:52, 02:17](1168 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:57, 04:11](1857 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:01, 04:49](1949 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:00, 06:55](1882 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:05, 04:28](1949 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:59, 03:15](1893 MB) +PASS -- TEST 'merra2_thompson_intel' [05:57, 03:30](1890 MB) +PASS -- TEST 'regional_control_intel' [07:34, 05:42](1118 MB) +PASS -- TEST 'regional_restart_intel' [04:38, 02:58](1101 MB) +PASS -- TEST 'regional_decomp_intel' [07:33, 05:56](1111 MB) +PASS -- TEST 'regional_2threads_intel' [06:36, 04:31](1066 MB) +PASS -- TEST 'regional_noquilt_intel' [07:35, 05:31](1423 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:41, 05:41](1123 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:36, 05:42](1120 MB) +PASS -- TEST 'regional_wofs_intel' [08:40, 07:07](1902 MB) + +PASS -- COMPILE 'rrfs_intel' [12:12, 10:32] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:46, 07:55](1107 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:07, 04:19](1268 MB) +PASS -- TEST 'rap_decomp_intel' [10:37, 08:14](1031 MB) +PASS -- TEST 'rap_2threads_intel' [10:37, 08:49](1101 MB) +PASS -- TEST 'rap_restart_intel' [05:48, 04:05](1107 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:38, 07:51](1108 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:41, 08:10](1044 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:46, 05:53](1127 MB) +PASS -- TEST 'hrrr_control_intel' [05:43, 03:59](1039 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:32, 04:08](1030 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:35, 04:21](1086 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:28, 02:09](999 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:45, 07:44](1099 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:25, 09:44](1981 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:25, 09:10](2063 MB) + +PASS -- COMPILE 'csawmg_intel' [11:13, 10:02] +PASS -- TEST 'control_csawmg_intel' [08:38, 06:18](1024 MB) +PASS -- TEST 'control_ras_intel' [05:23, 03:19](750 MB) + +PASS -- COMPILE 'wam_intel' [11:11, 10:03] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:48, 11:19](1659 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:11, 10:04] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:53, 02:50](1861 MB) +PASS -- TEST 'regional_control_faster_intel' [06:37, 04:53](1126 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 07:48] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:39, 02:14](1617 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:44, 02:14](1617 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:22, 03:15](830 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:21, 02:47](840 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:33, 04:28](1143 MB) +PASS -- TEST 'control_ras_debug_intel' [04:22, 02:52](839 MB) +PASS -- TEST 'control_diag_debug_intel' [04:45, 02:49](1692 MB) +PASS -- TEST 'control_debug_p8_intel' [04:37, 02:39](1910 MB) +PASS -- TEST 'regional_debug_intel' [20:35, 18:14](1101 MB) +PASS -- TEST 'rap_control_debug_intel' [06:24, 05:03](1205 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:26, 05:11](1206 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:26, 05:03](1214 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:24, 05:07](1214 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:21, 05:07](1210 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:33, 05:38](1297 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:23, 05:11](1214 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:23, 05:07](1223 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:22, 05:19](1213 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 05:03](1216 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:21, 05:06](1214 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:23, 05:17](1212 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:24, 08:19](1209 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:22, 04:57](1217 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:24, 05:05](1211 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:24, 05:02](1210 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:42, 08:53](1219 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:11, 04:25] +PASS -- TEST 'control_csawmg_debug_gnu' [04:39, 02:23](720 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:12, 05:00] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:45, 13:32](1680 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:10, 10:17] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:04, 03:55](1138 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:36, 06:31](1054 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:40, 03:26](990 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:37, 07:31](1000 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:32, 03:49](967 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:33, 03:38](941 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:37, 04:58](1040 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:26, 01:56](932 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 09:57] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:02, 02:01](1192 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:40, 01:02](1167 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:43, 01:19](1092 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 10:06] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:45, 04:17](988 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:01] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:22, 05:00](1093 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:21, 04:47](1085 MB) +PASS -- TEST 'conus13km_debug_intel' [15:48, 14:06](1238 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:44, 14:34](931 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [14:44, 12:29](1216 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:42, 14:11](1305 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:37] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:23, 05:06](1132 MB) + +PASS -- COMPILE 'hafsw_intel' [13:10, 11:57] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:16, 05:10](720 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:34, 06:22](1113 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:28, 07:10](821 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:24, 14:55](845 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:30, 18:41](871 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:56, 05:43](493 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:20, 06:57](507 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:44, 02:41](377 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:31, 07:36](476 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:43, 03:46](520 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:49, 03:34](522 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:52, 04:09](574 MB) PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:12](401 MB) -PASS -- TEST 'gnv1_nested_intel' [07:34, 04:08](1713 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:11, 05:11] ( 1462 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:51, 13:09](589 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:31] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:59, 10:16](626 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:02, 10:19](699 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 11:19] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:44, 08:16](716 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:11, 10:58] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:19, 06:41](824 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:17, 06:43](792 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:57, 16:29](1212 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:28] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 02:51](1152 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:21, 01:41](1107 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:42](1043 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:39](1030 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:43](1026 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 02:44](1155 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:43](1153 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:20, 02:38](1029 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:34, 06:30](1069 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:21, 06:21](1045 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:48](1160 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 04:02](2456 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:19, 04:01](2515 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:35] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:28](1085 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:31] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:46](1156 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:09] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:30, 00:44](262 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:50](328 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:31](323 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:18] -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:32, 00:34](563 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:35, 00:17](464 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 10:46] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:20, 03:49](1947 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 10:26] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:06, 08:08](1987 MB) - -PASS -- COMPILE 'atml_intel' [12:11, 10:49] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:06, 04:22](1858 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:59, 04:21](1866 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:42, 02:53](1088 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:11, 05:51] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:02, 05:50](1869 MB) - -PASS -- COMPILE 'atmw_intel' [13:11, 11:08] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:50, 01:56](1920 MB) - -PASS -- COMPILE 'atmaero_intel' [12:12, 10:42] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:55, 04:13](3184 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:07, 05:14](3090 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:46, 04:58](3103 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:47] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_fbh_intel' [11:11, 09:58] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:28, 11:47](1117 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:11, 06:43] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:39, 08:31](1050 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:11, 06:54] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:45, 04:56](991 MB) - -PASS -- COMPILE 'atm_gnu' [06:11, 04:32] -PASS -- TEST 'control_c48_gnu' [11:39, 09:34](1516 MB) -PASS -- TEST 'control_stochy_gnu' [05:24, 03:30](493 MB) -PASS -- TEST 'control_ras_gnu' [06:27, 05:00](498 MB) -PASS -- TEST 'control_p8_gnu' [08:06, 05:16](1458 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [07:58, 05:09](1434 MB) -PASS -- TEST 'control_flake_gnu' [12:24, 10:41](538 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:11, 04:18] -PASS -- TEST 'rap_control_gnu' [13:42, 11:30](812 MB) -PASS -- TEST 'rap_decomp_gnu' [13:32, 11:38](809 MB) -PASS -- TEST 'rap_2threads_gnu' [18:37, 16:55](912 MB) -PASS -- TEST 'rap_restart_gnu' [08:40, 05:52](576 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [13:36, 11:25](808 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:32, 11:41](808 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:50, 08:35](581 MB) -PASS -- TEST 'hrrr_control_gnu' [07:38, 05:55](812 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:36, 05:56](826 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [10:34, 08:24](902 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:31, 05:57](838 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [05:25, 03:03](557 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:25, 02:58](650 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [13:40, 11:18](808 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:11, 03:56] -PASS -- TEST 'control_csawmg_gnu' [10:33, 08:38](737 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:36] -PASS -- TEST 'control_diag_debug_gnu' [03:45, 01:52](1268 MB) -PASS -- TEST 'regional_debug_gnu' [12:39, 10:27](748 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:22, 02:43](814 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:24, 02:41](811 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:20, 02:47](814 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [05:21, 03:10](821 MB) -PASS -- TEST 'rap_diag_debug_gnu' [05:39, 03:23](903 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:23, 04:15](810 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:20, 02:38](819 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:20, 02:40](814 MB) -PASS -- TEST 'control_ras_debug_gnu' [04:19, 01:36](453 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:20, 01:44](447 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:38, 01:35](1437 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:22, 02:38](816 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:20, 02:39](821 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:35, 04:27](819 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:10, 02:29] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 04:12] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [12:36, 09:52](700 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:33, 05:11](698 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [17:32, 15:03](738 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [09:27, 07:47](734 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:27, 05:16](693 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:37, 07:39](552 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:25, 02:37](534 MB) -PASS -- TEST 'conus13km_control_gnu' [05:54, 03:13](866 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:44, 01:34](873 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:44, 01:48](549 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:12, 09:30] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:37, 05:54](722 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:10, 06:36] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:22, 02:34](710 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:22, 02:37](710 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:48, 07:05](884 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:50, 06:59](573 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [07:38, 05:45](889 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:37, 06:53](953 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:35] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:21, 02:36](728 MB) - -PASS -- COMPILE 's2swa_gnu' [18:11, 16:23] - -PASS -- COMPILE 's2s_gnu' [17:11, 16:03] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [21:08, 18:53](1507 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:10, 03:06] - -PASS -- COMPILE 's2sw_pdlib_gnu' [18:11, 16:21] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [33:13, 30:47](1458 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 03:00] - -PASS -- COMPILE 'datm_cdeps_gnu' [17:11, 15:39] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:18, 03:05](693 MB) +PASS -- TEST 'gnv1_nested_intel' [07:36, 04:09](1720 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:10, 05:21] ( 1462 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:51, 13:06](576 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:10, 11:39] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:02, 10:15](648 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:07, 10:20](729 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 11:42] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:55, 08:14](721 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:10, 10:53] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:18, 06:33](816 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:17, 06:46](798 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:00, 16:59](1217 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:10, 06:54] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:21, 02:51](1151 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:41](1115 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:19, 02:41](1032 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:42](1021 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:46](1027 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:44](1157 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 02:49](1152 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:16, 02:38](1037 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:21, 06:36](1077 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:19, 06:34](1057 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:14, 02:52](1160 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 04:00](2509 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:22, 03:56](2473 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:26] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:19, 06:20](1092 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:38] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 02:48](1166 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:02] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:31, 00:47](263 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:51](325 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:31](324 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:34] +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:32, 00:35](568 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:39, 00:25](464 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 10:50] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:05, 03:50](1967 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 10:37] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:52, 08:05](1964 MB) + +PASS -- COMPILE 'atml_intel' [12:11, 11:01] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:59, 04:24](1871 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:58, 04:28](1857 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:48, 02:22](1100 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:11, 05:55] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:51, 05:59](1888 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 11:04] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:51, 01:58](1895 MB) + +PASS -- COMPILE 'atmaero_intel' [12:11, 10:58] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:57, 04:13](3195 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:58, 04:55](3092 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:45, 05:01](3107 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:10, 04:52] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_fbh_intel' [11:12, 09:59] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:28, 11:49](1118 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:11, 06:54] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:38, 08:29](1058 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:11, 06:48] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:40, 05:02](998 MB) + +PASS -- COMPILE 'atm_gnu' [06:11, 04:28] +PASS -- TEST 'control_c48_gnu' [11:46, 09:32](1512 MB) +PASS -- TEST 'control_stochy_gnu' [05:23, 03:30](496 MB) +PASS -- TEST 'control_ras_gnu' [06:22, 04:59](502 MB) +PASS -- TEST 'control_p8_gnu' [07:58, 05:16](1460 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [07:50, 05:14](1457 MB) +PASS -- TEST 'control_flake_gnu' [12:24, 10:26](538 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:11, 04:08] +PASS -- TEST 'rap_control_gnu' [13:40, 11:30](813 MB) +PASS -- TEST 'rap_decomp_gnu' [13:34, 11:43](842 MB) +PASS -- TEST 'rap_2threads_gnu' [19:49, 17:22](914 MB) +PASS -- TEST 'rap_restart_gnu' [07:43, 05:53](576 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:41, 11:29](841 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:37, 11:38](806 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:44, 08:35](582 MB) +PASS -- TEST 'hrrr_control_gnu' [07:42, 05:56](809 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:40, 05:51](826 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [10:33, 08:34](905 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:39, 06:01](805 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [05:37, 03:09](560 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:36, 03:08](651 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [13:41, 11:17](801 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:10, 03:52] +PASS -- TEST 'control_csawmg_gnu' [10:35, 08:39](738 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:33] +PASS -- TEST 'control_diag_debug_gnu' [03:42, 01:38](1267 MB) +PASS -- TEST 'regional_debug_gnu' [12:38, 10:25](751 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:24, 02:40](818 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:24, 02:38](812 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:23, 02:38](817 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:20, 02:36](811 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:43, 02:49](901 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:21, 04:13](816 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:24, 02:42](814 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:22, 02:41](843 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:22, 01:35](451 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:19, 01:52](443 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:42, 01:53](1436 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:29, 02:45](816 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:26, 02:47](817 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:39, 04:39](819 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:23] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:06] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:53, 10:03](701 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:41, 05:16](692 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [17:37, 15:33](736 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [09:36, 07:57](733 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:30, 05:21](694 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:51, 07:13](554 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:28, 02:41](533 MB) +PASS -- TEST 'conus13km_control_gnu' [05:55, 03:10](865 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:56, 01:35](875 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:51, 01:53](541 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:25] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:43, 05:54](724 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:29] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:22, 02:36](708 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:22, 02:32](707 MB) +PASS -- TEST 'conus13km_debug_gnu' [09:04, 07:03](883 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:58, 07:02](574 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [07:52, 05:48](893 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:42, 07:07](952 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:12, 06:36] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:22, 02:39](733 MB) + +PASS -- COMPILE 's2swa_gnu' [18:11, 16:22] + +PASS -- COMPILE 's2s_gnu' [17:12, 16:00] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [22:10, 19:48](1493 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [05:11, 03:09] + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:12, 16:12] +FAILED: TEST TIMED OUT -- TEST 'cpld_control_pdlib_p8_gnu' [, ]( MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 02:57] + +PASS -- COMPILE 'datm_cdeps_gnu' [17:10, 15:46] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:17, 03:03](695 MB) SYNOPSIS: -Starting Date/Time: 20241220 00:57:41 -Ending Date/Time: 20241220 02:59:22 -Total Time: 02h:01m:56s +Starting Date/Time: 20241223 23:57:41 +Ending Date/Time: 20241224 03:10:48 +Total Time: 03h:13m:25s Compiles Completed: 61/61 -Tests Completed: 249/249 +Tests Completed: 248/249 +Failed Tests: +* TEST cpld_control_pdlib_p8_gnu: FAILED: TEST TIMED OUT +-- LOG: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3170497/cpld_control_pdlib_p8_gnu/err + +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 HERA REGRESSION TESTING LOG==== +====START OF HERA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +c77a0687d9a5ab0824c214110da808ae53a01af0 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) + ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) + b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + adbb06556f9b9123d24248e4505cd3dedee1d01a FV3 (remotes/origin/rrfsv1-to-ufs/dev5) + 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) + 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) + 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) + 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) + 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: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241223 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_1932497 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:12, 16:22] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [33:10, 31:07](1452 MB) + +SYNOPSIS: +Starting Date/Time: 20241224 14:21:55 +Ending Date/Time: 20241224 16:06:12 +Total Time: 01h:44m:24s +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_hercules.log b/tests/logs/RegressionTests_hercules.log index a9ffbca476..8829ab72dc 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,20 +1,20 @@ ====START OF hercules REGRESSION TESTING LOG==== UFSWM hash used in testing: -527939eb224c50a4d9f66a6099cc2b8b03baf6c8 +388f6a4b578c8b1e03e4f3402bb7e41bf1500e02 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - c7ea491e6fd99e459af977bfd57fa14aa6a349eb CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-12-16) + 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) + adbb06556f9b9123d24248e4505cd3dedee1d01a FV3 (remotes/origin/rrfsv1-to-ufs/dev5) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) + 2594a9e2c73c2a3a9acaa78fef8252cf5de3b524 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5530-g2594a9e2) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -37,458 +37,391 @@ 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-20241212 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/jongkim/FV3_RT/rt_626753 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20241223 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/jongkim/FV3_RT/rt_2194341 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-r) - USE ROCOTO -PASS -- COMPILE s2swa_32bit_intel [13:17, 13:17](1 warnings,11 remarks) -PASS -- TEST cpld_control_p8_mixedmode_intel [14:48, 14:00] (2125860 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_intel [19:02, 19:02](1 warnings,11 remarks) -PASS -- TEST cpld_control_gfsv17_intel [19:19, 18:27] (1990912 MB) -PASS -- TEST cpld_control_gfsv17_iau_intel [19:27, 18:24] (2334436 MB) -PASS -- TEST cpld_restart_gfsv17_intel [08:29, 07:24] (1345232 MB) -PASS -- TEST cpld_mpi_gfsv17_intel [20:43, 19:49] (1920088 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [20:36, 20:36](1 warnings,11 remarks) -PASS -- TEST cpld_control_sfs_intel [17:28, 16:59] (1983724 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [06:18, 06:18](1520 warnings,1988 remarks) -PASS -- TEST cpld_debug_gfsv17_intel [25:50, 24:54] (1969548 MB) - -PASS -- COMPILE s2swa_intel [12:29, 12:28](1 warnings,11 remarks) -PASS -- TEST cpld_control_p8_intel [16:52, 15:53] (2209348 MB) -PASS -- TEST cpld_control_p8.v2.sfc_intel [16:00, 15:08] (2200680 MB) -PASS -- TEST cpld_restart_p8_intel [09:09, 08:12] (1960932 MB) -PASS -- TEST cpld_control_qr_p8_intel [15:54, 15:09] (2236580 MB) -PASS -- TEST cpld_restart_qr_p8_intel [09:06, 08:07] (1729812 MB) -PASS -- TEST cpld_2threads_p8_intel [21:31, 20:42] (2418488 MB) -PASS -- TEST cpld_decomp_p8_intel [16:55, 16:17] (2182220 MB) -PASS -- TEST cpld_mpi_p8_intel [14:45, 13:56] (2092324 MB) -PASS -- TEST cpld_control_ciceC_p8_intel [16:08, 15:21] (2205928 MB) -PASS -- TEST cpld_control_c192_p8_intel [16:59, 15:40] (2996672 MB) -PASS -- TEST cpld_restart_c192_p8_intel [08:22, 06:33] (2908468 MB) -PASS -- TEST cpld_bmark_p8_intel [24:54, 20:00] (3871144 MB) -PASS -- TEST cpld_restart_bmark_p8_intel [17:37, 11:03] (3695788 MB) -PASS -- TEST cpld_s2sa_p8_intel [08:45, 08:05] (2100208 MB) - -PASS -- COMPILE s2sw_intel [11:46, 11:46](1 warnings,11 remarks) -PASS -- TEST cpld_control_noaero_p8_intel [14:29, 13:46] (2008916 MB) -PASS -- TEST cpld_control_nowave_noaero_p8_intel [11:48, 11:16] (2100436 MB) - -PASS -- COMPILE s2swa_debug_intel [06:28, 06:28](1410 warnings,1218 remarks) -PASS -- TEST cpld_debug_p8_intel [20:47, 19:58] (2233680 MB) - -PASS -- COMPILE s2sw_debug_intel [06:15, 06:15](1410 warnings,1218 remarks) -PASS -- TEST cpld_debug_noaero_p8_intel [10:10, 09:28] (2040100 MB) - -PASS -- COMPILE s2s_aoflux_intel [09:40, 09:39],3 remarks) -PASS -- TEST cpld_control_noaero_p8_agrid_intel [05:34, 04:52] (2068760 MB) - -PASS -- COMPILE s2s_intel [09:52, 09:52](1 warnings,3 remarks) -PASS -- TEST cpld_control_c48_intel [08:22, 07:53] (3027480 MB) -PASS -- TEST cpld_warmstart_c48_intel [02:11, 01:45] (3024980 MB) -PASS -- TEST cpld_restart_c48_intel [01:30, 01:02] (2472600 MB) - -PASS -- COMPILE s2swa_faster_intel [12:31, 12:31](1 warnings,11 remarks) -PASS -- TEST cpld_control_p8_faster_intel [15:17, 14:35] (2204092 MB) - -PASS -- COMPILE s2sw_pdlib_intel [14:47, 14:47](1 warnings,11 remarks) -PASS -- TEST cpld_control_pdlib_p8_intel [23:40, 22:56] (2064568 MB) -PASS -- TEST cpld_restart_pdlib_p8_intel [12:57, 12:05] (1408728 MB) -PASS -- TEST cpld_mpi_pdlib_p8_intel [26:45, 25:35] (1984336 MB) - -PASS -- COMPILE s2sw_pdlib_debug_intel [04:23, 04:23](1520 warnings,1988 remarks) -PASS -- TEST cpld_debug_pdlib_p8_intel [29:13, 28:34] (2012568 MB) - -PASS -- COMPILE atm_dyn32_intel [08:45, 08:45](1 warnings,1 remarks) -PASS -- TEST control_flake_intel [03:16, 03:06] (707404 MB) -PASS -- TEST control_CubedSphereGrid_intel [03:16, 02:54] (1584568 MB) -PASS -- TEST control_CubedSphereGrid_parallel_intel [03:16, 02:50] (1596456 MB) -PASS -- TEST control_latlon_intel [03:08, 02:50] (1602832 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_intel [03:19, 02:55] (1590572 MB) -PASS -- TEST control_c48_intel [11:14, 10:52] (1704124 MB) -PASS -- TEST control_c48.v2.sfc_intel [06:27, 06:14] (836068 MB) -PASS -- TEST control_c192_intel [10:51, 10:20] (1769916 MB) -PASS -- TEST control_c384_intel [13:03, 11:56] (2007884 MB) -PASS -- TEST control_c384gdas_intel [08:39, 07:17] (1519784 MB) -PASS -- TEST control_stochy_intel [01:40, 01:32] (663680 MB) -PASS -- TEST control_stochy_restart_intel [01:12, 00:56] (534400 MB) -PASS -- TEST control_lndp_intel [01:28, 01:22] (661660 MB) -PASS -- TEST control_iovr4_intel [02:26, 02:13] (660468 MB) -PASS -- TEST control_iovr5_intel [02:24, 02:14] (655320 MB) -PASS -- TEST control_p8_intel [04:02, 03:25] (1887080 MB) -PASS -- TEST control_p8.v2.sfc_intel [03:29, 02:48] (1886420 MB) -PASS -- TEST control_p8_ugwpv1_intel [03:46, 03:08] (1893196 MB) -PASS -- TEST control_restart_p8_intel [02:24, 01:51] (1163508 MB) -PASS -- TEST control_noqr_p8_intel [03:36, 03:05] (1867984 MB) -PASS -- TEST control_restart_noqr_p8_intel [03:13, 02:33] (1201288 MB) -PASS -- TEST control_decomp_p8_intel [03:52, 03:16] (1870016 MB) -PASS -- TEST control_2threads_p8_intel [05:02, 04:32] (1943532 MB) -PASS -- TEST control_p8_lndp_intel [06:14, 05:54] (1880536 MB) -PASS -- TEST control_p8_rrtmgp_intel [04:23, 03:41] (1963076 MB) -PASS -- TEST control_p8_mynn_intel [03:19, 02:44] (1897744 MB) -PASS -- TEST merra2_thompson_intel [03:52, 03:04] (1911708 MB) -PASS -- TEST regional_control_intel [05:31, 05:14] (1218152 MB) -PASS -- TEST regional_restart_intel [02:52, 02:38] (1187416 MB) -PASS -- TEST regional_decomp_intel [05:10, 04:57] (1218720 MB) -PASS -- TEST regional_2threads_intel [05:00, 04:42] (1120004 MB) -PASS -- TEST regional_noquilt_intel [04:57, 04:39] (1545168 MB) -PASS -- TEST regional_netcdf_parallel_intel [05:09, 04:51] (1219476 MB) -PASS -- TEST regional_2dwrtdecomp_intel [04:59, 04:43] (1225788 MB) -PASS -- TEST regional_wofs_intel [06:13, 05:57] (2079768 MB) - -PASS -- COMPILE rrfs_intel [09:30, 09:30](3 warnings,9 remarks) -PASS -- TEST rap_control_intel [07:24, 06:50] (1219380 MB) -PASS -- TEST regional_spp_sppt_shum_skeb_intel [04:02, 03:30] (1380640 MB) -PASS -- TEST rap_decomp_intel [07:31, 06:57] (1143916 MB) -PASS -- TEST rap_2threads_intel [09:58, 09:23] (1204476 MB) -PASS -- TEST rap_restart_intel [04:22, 03:41] (1137396 MB) -PASS -- TEST rap_sfcdiff_intel [07:28, 06:51] (1222428 MB) -PASS -- TEST rap_sfcdiff_decomp_intel [07:49, 07:13] (1145848 MB) -PASS -- TEST rap_sfcdiff_restart_intel [06:03, 05:23] (1195228 MB) -PASS -- TEST hrrr_control_intel [04:04, 03:29] (1080972 MB) -PASS -- TEST hrrr_control_decomp_intel [04:21, 03:44] (1036800 MB) -PASS -- TEST hrrr_control_2threads_intel [05:02, 04:22] (1139704 MB) -PASS -- TEST hrrr_control_restart_intel [02:15, 01:57] (1015900 MB) -PASS -- TEST rrfs_v1beta_intel [07:19, 06:41] (1205404 MB) -PASS -- TEST rrfs_v1nssl_intel [09:24, 09:15] (2013036 MB) -PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [09:22, 09:14] (2187388 MB) - -PASS -- COMPILE csawmg_intel [08:44, 08:44] -PASS -- TEST control_csawmg_intel [05:53, 05:37] (1041068 MB) -PASS -- TEST control_ras_intel [03:05, 02:55] (822220 MB) - -PASS -- COMPILE wam_intel [09:26, 09:26],1 remarks) -PASS -- TEST control_wam_intel [10:25, 10:03] (1659232 MB) - -PASS -- COMPILE atm_faster_dyn32_intel [09:35, 09:35],1 remarks) -PASS -- TEST control_p8_faster_intel [03:15, 02:32] (1897804 MB) -PASS -- TEST regional_control_faster_intel [05:03, 04:49] (1224512 MB) - -PASS -- COMPILE atm_debug_dyn32_intel [06:32, 06:32](882 warnings,9 remarks) -PASS -- TEST control_CubedSphereGrid_debug_intel [03:51, 03:27] (1613980 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [03:41, 03:11] (1621356 MB) -PASS -- TEST control_stochy_debug_intel [03:24, 02:55] (839312 MB) -PASS -- TEST control_lndp_debug_intel [02:56, 02:26] (850264 MB) -PASS -- TEST control_csawmg_debug_intel [05:11, 04:40] (1151952 MB) -PASS -- TEST control_ras_debug_intel [02:41, 02:27] (841772 MB) -PASS -- TEST control_diag_debug_intel [02:47, 02:29] (1694304 MB) -PASS -- TEST control_debug_p8_intel [03:45, 03:28] (1909860 MB) -PASS -- TEST regional_debug_intel [15:59, 15:41] (1156400 MB) -PASS -- TEST rap_control_debug_intel [04:32, 04:25] (1223148 MB) -PASS -- TEST hrrr_control_debug_intel [04:32, 04:21] (1218656 MB) -PASS -- TEST hrrr_gf_debug_intel [04:43, 04:32] (1224240 MB) -PASS -- TEST hrrr_c3_debug_intel [04:30, 04:21] (1222164 MB) -PASS -- TEST rap_unified_drag_suite_debug_intel [04:39, 04:29] (1222528 MB) -PASS -- TEST rap_diag_debug_intel [04:45, 04:26] (1308840 MB) -PASS -- TEST rap_cires_ugwp_debug_intel [04:37, 04:30] (1218000 MB) -PASS -- TEST rap_unified_ugwp_debug_intel [04:51, 04:39] (1226468 MB) -PASS -- TEST rap_lndp_debug_intel [04:36, 04:24] (1224436 MB) -PASS -- TEST rap_progcld_thompson_debug_intel [04:35, 04:24] (1215348 MB) -PASS -- TEST rap_noah_debug_intel [04:26, 04:19] (1221916 MB) -PASS -- TEST rap_sfcdiff_debug_intel [04:31, 04:22] (1221132 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [07:01, 06:53] (1219684 MB) -PASS -- TEST rrfs_v1beta_debug_intel [04:21, 04:11] (1213652 MB) -PASS -- TEST rap_clm_lake_debug_intel [04:41, 04:22] (1226828 MB) -PASS -- TEST rap_flake_debug_intel [04:50, 04:39] (1225580 MB) -PASS -- TEST gnv1_c96_no_nest_debug_intel [07:58, 07:21] (1217644 MB) - -PASS -- COMPILE atm_debug_dyn32_gnu [04:17, 04:16] -PASS -- TEST control_csawmg_debug_gnu [03:18, 03:01] (1047796 MB) - -PASS -- COMPILE wam_debug_intel [04:09, 04:09](837 warnings,1 remarks) - -PASS -- COMPILE rrfs_dyn32_phy32_intel [08:32, 08:31](3 warnings,8 remarks) -PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [03:54, 03:21] (1261632 MB) -PASS -- TEST rap_control_dyn32_phy32_intel [06:10, 05:37] (1148880 MB) -PASS -- TEST hrrr_control_dyn32_phy32_intel [03:46, 03:00] (1031704 MB) -PASS -- TEST rap_2threads_dyn32_phy32_intel [08:01, 07:25] (1122952 MB) -PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [04:54, 04:08] (1061604 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [03:49, 03:02] (986264 MB) -PASS -- TEST rap_restart_dyn32_phy32_intel [04:46, 04:18] (1115836 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [02:06, 01:43] (959416 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [08:41, 08:41](3 warnings,8 remarks) -PASS -- TEST conus13km_control_intel [02:05, 01:41] (1291944 MB) -PASS -- TEST conus13km_2threads_intel [01:22, 00:57] (1181816 MB) -PASS -- TEST conus13km_restart_mismatch_intel [01:28, 01:04] (1128232 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_intel [08:38, 08:37](3 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_intel [04:09, 03:53] (1050384 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [04:05, 04:05](785 warnings,8 remarks) -PASS -- TEST rap_control_debug_dyn32_phy32_intel [04:54, 04:45] (1101976 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [04:48, 04:37] (1101788 MB) -PASS -- TEST conus13km_debug_intel [12:19, 11:53] (1351044 MB) -PASS -- TEST conus13km_debug_qr_intel [12:30, 12:04] (1001580 MB) -PASS -- TEST conus13km_debug_2threads_intel [13:02, 12:45] (1229180 MB) -PASS -- TEST conus13km_radar_tten_debug_intel [12:35, 12:15] (1417956 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [04:48, 04:48](785 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_debug_intel [04:25, 04:13] (1162368 MB) - -PASS -- COMPILE hafsw_intel [10:08, 10:08](1 warnings,10 remarks) -PASS -- TEST hafs_regional_atm_intel [06:29, 05:37] (854932 MB) -PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [06:03, 05:49] (1267768 MB) -PASS -- TEST hafs_regional_atm_ocn_intel [08:18, 07:13] (914016 MB) -PASS -- TEST hafs_regional_atm_wav_intel [15:15, 14:17] (957040 MB) -PASS -- TEST hafs_regional_atm_ocn_wav_intel [18:19, 17:10] (970868 MB) -PASS -- TEST hafs_regional_1nest_atm_intel [07:02, 06:24] (598188 MB) -PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [09:41, 08:27] (604628 MB) -PASS -- TEST hafs_global_1nest_atm_intel [03:40, 03:12] (437552 MB) -PASS -- TEST hafs_global_multiple_4nests_atm_intel [10:51, 09:00] (554068 MB) -PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [05:00, 04:28] (603240 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [04:52, 04:10] (607800 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [06:16, 05:30] (656772 MB) -PASS -- TEST hafs_global_storm_following_1nest_atm_intel [01:47, 01:31] (459020 MB) - -PASS -- COMPILE hafsw_debug_intel [04:44, 04:44](1462 warnings,1490 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [14:20, 13:50] (637076 MB) - -PASS -- COMPILE hafsw_faster_intel [10:34, 10:34],9 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [19:19, 18:27] (730452 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [19:16, 18:26] (837012 MB) - -PASS -- COMPILE hafs_mom6w_intel [10:01, 10:01],8 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [14:13, 12:45] (814500 MB) - -PASS -- COMPILE hafs_all_intel [09:55, 09:55],9 remarks) -PASS -- TEST hafs_regional_docn_intel [06:49, 05:51] (935292 MB) -PASS -- TEST hafs_regional_docn_oisst_intel [07:14, 06:14] (899328 MB) -PASS -- TEST hafs_regional_datm_cdeps_intel [17:10, 16:35] (1359008 MB) - -PASS -- COMPILE datm_cdeps_intel [06:26, 06:26],2 remarks) -PASS -- TEST datm_cdeps_control_cfsr_intel [02:16, 02:11] (1167436 MB) -PASS -- TEST datm_cdeps_restart_cfsr_intel [01:33, 01:29] (1091012 MB) -PASS -- TEST datm_cdeps_control_gefs_intel [02:18, 02:13] (1017392 MB) -PASS -- TEST datm_cdeps_iau_gefs_intel [02:12, 02:08] (1021196 MB) -PASS -- TEST datm_cdeps_stochy_gefs_intel [02:09, 02:05] (1022568 MB) -PASS -- TEST datm_cdeps_ciceC_cfsr_intel [02:20, 02:16] (1154656 MB) -PASS -- TEST datm_cdeps_bulk_cfsr_intel [03:16, 03:11] (1147460 MB) -PASS -- TEST datm_cdeps_bulk_gefs_intel [03:08, 03:01] (1016184 MB) -PASS -- TEST datm_cdeps_mx025_cfsr_intel [05:32, 04:57] (1157264 MB) -PASS -- TEST datm_cdeps_mx025_gefs_intel [05:25, 04:51] (1154992 MB) -PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [02:59, 02:56] (1159592 MB) -PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [03:11, 03:05] (2451396 MB) -PASS -- TEST datm_cdeps_gfs_intel [04:17, 04:12] (2412788 MB) - -PASS -- COMPILE datm_cdeps_debug_intel [03:49, 03:49](2 warnings,2 remarks) -PASS -- TEST datm_cdeps_debug_cfsr_intel [05:26, 05:20] (1062128 MB) - -PASS -- COMPILE datm_cdeps_faster_intel [05:54, 05:53],2 remarks) -PASS -- TEST datm_cdeps_control_cfsr_faster_intel [02:12, 02:07] (1165312 MB) - -PASS -- COMPILE datm_cdeps_land_intel [01:08, 01:08],1 remarks) -PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:21, 01:04] (338048 MB) -PASS -- TEST datm_cdeps_lnd_era5_intel [01:13, 01:00] (576064 MB) -PASS -- TEST datm_cdeps_lnd_era5_rst_intel [00:48, 00:36] (574636 MB) - -PASS -- COMPILE atm_ds2s_docn_pcice_intel [09:03, 09:03],3 remarks) -PASS -- TEST atm_ds2s_docn_pcice_intel [03:56, 03:23] (2016448 MB) - -PASS -- COMPILE atm_ds2s_docn_dice_intel [08:58, 08:58](1 warnings,1 remarks) -PASS -- TEST atm_ds2s_docn_dice_intel [07:53, 07:20] (2026492 MB) - -PASS -- COMPILE atml_intel [09:21, 09:20](8 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_sbs_intel [06:53, 06:02] (1886396 MB) -PASS -- TEST control_p8_atmlnd_intel [06:52, 06:03] (1896692 MB) -PASS -- TEST control_restart_p8_atmlnd_intel [03:30, 03:06] (1143480 MB) - -PASS -- COMPILE atml_debug_intel [04:39, 04:38](880 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_debug_intel [06:51, 06:04] (1935740 MB) - -PASS -- COMPILE atmw_intel [09:40, 09:40],9 remarks) -PASS -- TEST atmwav_control_noaero_p8_intel [02:26, 01:47] (1936112 MB) - -PASS -- COMPILE atmaero_intel [08:49, 08:48],1 remarks) -PASS -- TEST atmaero_control_p8_intel [04:33, 03:56] (1997000 MB) -PASS -- TEST atmaero_control_p8_rad_intel [05:11, 04:32] (1793264 MB) -PASS -- TEST atmaero_control_p8_rad_micro_intel [05:12, 04:44] (1795252 MB) +PASS -- COMPILE s2swa_32bit_intel [10:25, 10:25](1 warnings,11 remarks) +PASS -- TEST cpld_control_p8_mixedmode_intel [15:02, 14:04] (2139112 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_intel [15:18, 15:17](1 warnings,11 remarks) +PASS -- TEST cpld_control_gfsv17_intel [19:25, 18:03] (2000788 MB) +PASS -- TEST cpld_control_gfsv17_iau_intel [20:39, 19:29] (2311692 MB) +PASS -- TEST cpld_restart_gfsv17_intel [08:13, 07:22] (1345936 MB) +PASS -- TEST cpld_mpi_gfsv17_intel [19:58, 18:47] (1920180 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [14:56, 14:56](1 warnings,11 remarks) +PASS -- TEST cpld_control_sfs_intel [17:21, 16:57] (1987032 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [05:06, 05:06](1520 warnings,1988 remarks) +PASS -- TEST cpld_debug_gfsv17_intel [26:35, 25:39] (1968804 MB) + +PASS -- COMPILE s2swa_intel [11:51, 11:50](1 warnings,11 remarks) +PASS -- TEST cpld_control_p8_intel [17:25, 16:04] (2199096 MB) +PASS -- TEST cpld_control_p8.v2.sfc_intel [16:32, 15:32] (2197004 MB) +PASS -- TEST cpld_restart_p8_intel [09:27, 08:00] (1987348 MB) +PASS -- TEST cpld_control_qr_p8_intel [15:49, 15:05] (2225448 MB) +PASS -- TEST cpld_restart_qr_p8_intel [11:24, 10:20] (1742564 MB) +PASS -- TEST cpld_2threads_p8_intel [19:30, 18:43] (2431100 MB) +PASS -- TEST cpld_decomp_p8_intel [16:04, 15:22] (2192864 MB) +PASS -- TEST cpld_mpi_p8_intel [15:20, 14:31] (2102388 MB) +PASS -- TEST cpld_control_ciceC_p8_intel [17:07, 16:22] (2195008 MB) +PASS -- TEST cpld_control_c192_p8_intel [19:25, 18:06] (2982804 MB) +PASS -- TEST cpld_restart_c192_p8_intel [08:20, 06:31] (2910172 MB) +PASS -- TEST cpld_bmark_p8_intel [25:55, 21:04] (3881460 MB) +PASS -- TEST cpld_restart_bmark_p8_intel [19:29, 13:06] (3698240 MB) +PASS -- TEST cpld_s2sa_p8_intel [09:32, 08:43] (2104360 MB) + +PASS -- COMPILE s2sw_intel [11:33, 11:33](1 warnings,11 remarks) +PASS -- TEST cpld_control_noaero_p8_intel [14:36, 13:52] (2003516 MB) +PASS -- TEST cpld_control_nowave_noaero_p8_intel [13:15, 12:22] (2110800 MB) + +PASS -- COMPILE s2swa_debug_intel [06:16, 06:16](1410 warnings,1218 remarks) +PASS -- TEST cpld_debug_p8_intel [20:34, 19:33] (2218040 MB) + +PASS -- COMPILE s2sw_debug_intel [05:35, 05:35](1410 warnings,1218 remarks) +PASS -- TEST cpld_debug_noaero_p8_intel [10:18, 09:36] (2045940 MB) + +PASS -- COMPILE s2s_aoflux_intel [10:10, 10:10],3 remarks) +PASS -- TEST cpld_control_noaero_p8_agrid_intel [05:24, 04:43] (2063708 MB) + +PASS -- COMPILE s2s_intel [09:37, 09:37](1 warnings,3 remarks) +PASS -- TEST cpld_control_c48_intel [06:28, 06:01] (3034820 MB) +PASS -- TEST cpld_warmstart_c48_intel [02:48, 02:23] (3014952 MB) +PASS -- TEST cpld_restart_c48_intel [01:26, 01:02] (2467080 MB) + +PASS -- COMPILE s2swa_faster_intel [12:03, 12:02](1 warnings,11 remarks) +PASS -- TEST cpld_control_p8_faster_intel [16:08, 15:19] (2206988 MB) + +PASS -- COMPILE s2sw_pdlib_intel [15:12, 15:12](1 warnings,11 remarks) +PASS -- TEST cpld_control_pdlib_p8_intel [24:28, 23:51] (2080724 MB) +PASS -- TEST cpld_restart_pdlib_p8_intel [12:37, 12:01] (1410448 MB) +PASS -- TEST cpld_mpi_pdlib_p8_intel [27:35, 26:52] (2002880 MB) + +PASS -- COMPILE s2sw_pdlib_debug_intel [04:11, 04:11](1520 warnings,1988 remarks) +PASS -- TEST cpld_debug_pdlib_p8_intel [28:28, 27:44] (2020444 MB) + +PASS -- COMPILE atm_dyn32_intel [09:04, 09:04](1 warnings,1 remarks) +PASS -- TEST control_flake_intel [03:11, 03:02] (709776 MB) +PASS -- TEST control_CubedSphereGrid_intel [03:19, 02:54] (1595512 MB) +PASS -- TEST control_CubedSphereGrid_parallel_intel [03:15, 02:53] (1602200 MB) +PASS -- TEST control_latlon_intel [03:30, 03:10] (1590992 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_intel [03:20, 02:59] (1580856 MB) +PASS -- TEST control_c48_intel [10:40, 10:14] (1703480 MB) +PASS -- TEST control_c48.v2.sfc_intel [06:29, 06:09] (832744 MB) +PASS -- TEST control_c192_intel [10:59, 10:29] (1762840 MB) +PASS -- TEST control_c384_intel [13:38, 12:31] (2008112 MB) +PASS -- TEST control_c384gdas_intel [09:02, 07:29] (1497964 MB) +PASS -- TEST control_stochy_intel [01:45, 01:32] (655844 MB) +PASS -- TEST control_stochy_restart_intel [01:09, 00:55] (540712 MB) +PASS -- TEST control_lndp_intel [01:34, 01:26] (677268 MB) +PASS -- TEST control_iovr4_intel [02:33, 02:20] (662680 MB) +PASS -- TEST control_iovr5_intel [02:24, 02:16] (651260 MB) +PASS -- TEST control_p8_intel [03:53, 03:18] (1889684 MB) +PASS -- TEST control_p8.v2.sfc_intel [04:16, 03:20] (1899212 MB) +PASS -- TEST control_p8_ugwpv1_intel [03:54, 03:16] (1877984 MB) +PASS -- TEST control_restart_p8_intel [02:27, 01:51] (1149124 MB) +PASS -- TEST control_noqr_p8_intel [05:48, 05:03] (1862164 MB) +PASS -- TEST control_restart_noqr_p8_intel [02:38, 02:09] (1207908 MB) +PASS -- TEST control_decomp_p8_intel [04:23, 03:48] (1867080 MB) +PASS -- TEST control_2threads_p8_intel [07:12, 06:14] (1936032 MB) +PASS -- TEST control_p8_lndp_intel [06:10, 05:52] (1873500 MB) +PASS -- TEST control_p8_rrtmgp_intel [04:19, 03:41] (1968628 MB) +PASS -- TEST control_p8_mynn_intel [03:34, 02:51] (1900128 MB) +PASS -- TEST merra2_thompson_intel [05:19, 04:26] (1901964 MB) +PASS -- TEST regional_control_intel [05:08, 04:47] (1229252 MB) +PASS -- TEST regional_restart_intel [02:53, 02:40] (1186692 MB) +PASS -- TEST regional_decomp_intel [05:18, 04:57] (1216768 MB) +PASS -- TEST regional_2threads_intel [05:57, 05:41] (1112784 MB) +PASS -- TEST regional_noquilt_intel [05:23, 05:03] (1547136 MB) +PASS -- TEST regional_netcdf_parallel_intel [05:11, 04:48] (1226908 MB) +PASS -- TEST regional_2dwrtdecomp_intel [05:49, 05:31] (1227212 MB) +PASS -- TEST regional_wofs_intel [06:31, 06:13] (2081308 MB) + +PASS -- COMPILE rrfs_intel [08:21, 08:21](3 warnings,9 remarks) +PASS -- TEST rap_control_intel [07:40, 07:00] (1202828 MB) +PASS -- TEST regional_spp_sppt_shum_skeb_intel [04:11, 03:36] (1379776 MB) +PASS -- TEST rap_decomp_intel [07:45, 07:08] (1157900 MB) +PASS -- TEST rap_2threads_intel [10:05, 09:27] (1226756 MB) +PASS -- TEST rap_restart_intel [04:21, 03:38] (1141320 MB) +PASS -- TEST rap_sfcdiff_intel [07:25, 06:48] (1205084 MB) +PASS -- TEST rap_sfcdiff_decomp_intel [07:42, 07:04] (1164676 MB) +PASS -- TEST rap_sfcdiff_restart_intel [05:51, 05:10] (1201172 MB) +PASS -- TEST hrrr_control_intel [04:06, 03:27] (1062452 MB) +PASS -- TEST hrrr_control_decomp_intel [04:21, 03:35] (1060680 MB) +PASS -- TEST hrrr_control_2threads_intel [05:25, 04:47] (1134900 MB) +PASS -- TEST hrrr_control_restart_intel [02:03, 01:54] (1004852 MB) +PASS -- TEST rrfs_v1beta_intel [07:14, 06:34] (1221700 MB) +PASS -- TEST rrfs_v1nssl_intel [09:26, 09:17] (1996552 MB) +PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [09:14, 09:04] (2203040 MB) + +PASS -- COMPILE csawmg_intel [08:38, 08:38] +PASS -- TEST control_csawmg_intel [05:54, 05:37] (1050144 MB) +PASS -- TEST control_ras_intel [03:03, 02:54] (828896 MB) + +PASS -- COMPILE wam_intel [08:02, 08:02],1 remarks) +PASS -- TEST control_wam_intel [10:14, 09:51] (1659656 MB) + +PASS -- COMPILE atm_faster_dyn32_intel [08:23, 08:23],1 remarks) +PASS -- TEST control_p8_faster_intel [03:08, 02:28] (1895312 MB) +PASS -- TEST regional_control_faster_intel [04:35, 04:17] (1223080 MB) + +PASS -- COMPILE atm_debug_dyn32_intel [06:00, 06:00](882 warnings,9 remarks) +PASS -- TEST control_CubedSphereGrid_debug_intel [02:29, 02:05] (1616312 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [02:35, 02:08] (1615280 MB) +PASS -- TEST control_stochy_debug_intel [02:55, 02:45] (834376 MB) +PASS -- TEST control_lndp_debug_intel [02:44, 02:37] (838340 MB) +PASS -- TEST control_csawmg_debug_intel [04:50, 04:35] (1158576 MB) +PASS -- TEST control_ras_debug_intel [02:35, 02:29] (848652 MB) +PASS -- TEST control_diag_debug_intel [02:47, 02:25] (1695016 MB) +PASS -- TEST control_debug_p8_intel [02:43, 02:20] (1904616 MB) +PASS -- TEST regional_debug_intel [15:21, 15:03] (1145800 MB) +PASS -- TEST rap_control_debug_intel [04:39, 04:27] (1230304 MB) +PASS -- TEST hrrr_control_debug_intel [04:34, 04:21] (1219928 MB) +PASS -- TEST hrrr_gf_debug_intel [04:35, 04:22] (1228256 MB) +PASS -- TEST hrrr_c3_debug_intel [04:26, 04:14] (1235400 MB) +PASS -- TEST rap_unified_drag_suite_debug_intel [04:40, 04:28] (1215932 MB) +PASS -- TEST rap_diag_debug_intel [04:46, 04:31] (1315460 MB) +PASS -- TEST rap_cires_ugwp_debug_intel [04:35, 04:28] (1233320 MB) +PASS -- TEST rap_unified_ugwp_debug_intel [04:47, 04:36] (1223828 MB) +PASS -- TEST rap_lndp_debug_intel [04:26, 04:20] (1223332 MB) +PASS -- TEST rap_progcld_thompson_debug_intel [04:33, 04:17] (1231492 MB) +PASS -- TEST rap_noah_debug_intel [04:22, 04:09] (1229144 MB) +PASS -- TEST rap_sfcdiff_debug_intel [04:25, 04:14] (1231408 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [07:17, 07:07] (1228172 MB) +PASS -- TEST rrfs_v1beta_debug_intel [04:30, 04:19] (1205696 MB) +PASS -- TEST rap_clm_lake_debug_intel [04:36, 04:21] (1221144 MB) +PASS -- TEST rap_flake_debug_intel [04:22, 04:13] (1221364 MB) +PASS -- TEST gnv1_c96_no_nest_debug_intel [08:02, 07:21] (1222560 MB) + +PASS -- COMPILE atm_debug_dyn32_gnu [04:33, 04:32] +PASS -- TEST control_csawmg_debug_gnu [02:37, 02:18] (1042500 MB) + +PASS -- COMPILE wam_debug_intel [03:46, 03:46](837 warnings,1 remarks) + +PASS -- COMPILE rrfs_dyn32_phy32_intel [08:48, 08:47](3 warnings,8 remarks) +PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [03:58, 03:19] (1261008 MB) +PASS -- TEST rap_control_dyn32_phy32_intel [06:21, 05:41] (1132832 MB) +PASS -- TEST hrrr_control_dyn32_phy32_intel [03:43, 02:57] (1013668 MB) +PASS -- TEST rap_2threads_dyn32_phy32_intel [08:43, 08:02] (1130856 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [04:50, 04:05] (1067924 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [03:55, 03:11] (985676 MB) +PASS -- TEST rap_restart_dyn32_phy32_intel [04:56, 04:12] (1099424 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [02:07, 01:46] (945344 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [09:17, 09:17](3 warnings,8 remarks) +PASS -- TEST conus13km_control_intel [02:09, 01:42] (1273688 MB) +PASS -- TEST conus13km_2threads_intel [01:19, 00:59] (1176216 MB) +PASS -- TEST conus13km_restart_mismatch_intel [01:28, 01:05] (1141380 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_intel [08:47, 08:46](3 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_intel [04:30, 03:58] (1082472 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [03:30, 03:30](785 warnings,8 remarks) +PASS -- TEST rap_control_debug_dyn32_phy32_intel [05:11, 04:59] (1098140 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [05:00, 04:51] (1109168 MB) +PASS -- TEST conus13km_debug_intel [12:53, 12:34] (1335768 MB) +PASS -- TEST conus13km_debug_qr_intel [13:06, 12:36] (975376 MB) +PASS -- TEST conus13km_debug_2threads_intel [13:05, 12:39] (1243024 MB) +PASS -- TEST conus13km_radar_tten_debug_intel [12:41, 12:19] (1410788 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [03:45, 03:45](785 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_debug_intel [04:32, 04:20] (1170648 MB) + +PASS -- COMPILE hafsw_intel [09:54, 09:54](1 warnings,10 remarks) +PASS -- TEST hafs_regional_atm_intel [06:21, 05:27] (846820 MB) +PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [06:12, 06:00] (1272676 MB) +PASS -- TEST hafs_regional_atm_ocn_intel [08:05, 07:03] (939660 MB) +PASS -- TEST hafs_regional_atm_wav_intel [15:32, 14:32] (959676 MB) +PASS -- TEST hafs_regional_atm_ocn_wav_intel [18:32, 17:17] (976144 MB) +PASS -- TEST hafs_regional_1nest_atm_intel [07:12, 06:30] (590744 MB) +PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [10:12, 09:04] (605320 MB) +PASS -- TEST hafs_global_1nest_atm_intel [03:49, 03:17] (436488 MB) +PASS -- TEST hafs_global_multiple_4nests_atm_intel [10:52, 09:06] (548184 MB) +PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [04:55, 04:21] (596456 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [04:48, 04:08] (602628 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [05:51, 05:07] (656244 MB) +PASS -- TEST hafs_global_storm_following_1nest_atm_intel [01:49, 01:32] (454400 MB) + +PASS -- COMPILE hafsw_debug_intel [04:38, 04:38](1462 warnings,1490 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [12:58, 12:03] (679036 MB) + +PASS -- COMPILE hafsw_faster_intel [10:06, 10:06],9 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [18:44, 17:54] (715988 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [19:29, 18:37] (804992 MB) + +PASS -- COMPILE hafs_mom6w_intel [10:11, 10:10],8 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [13:35, 12:14] (806380 MB) + +PASS -- COMPILE hafs_all_intel [09:16, 09:16],9 remarks) +PASS -- TEST hafs_regional_docn_intel [06:40, 05:42] (929868 MB) +PASS -- TEST hafs_regional_docn_oisst_intel [06:36, 05:42] (901800 MB) +PASS -- TEST hafs_regional_datm_cdeps_intel [17:02, 16:30] (1346864 MB) + +PASS -- COMPILE datm_cdeps_intel [05:57, 05:56],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_intel [02:16, 02:11] (1153200 MB) +PASS -- TEST datm_cdeps_restart_cfsr_intel [01:21, 01:17] (1119488 MB) +PASS -- TEST datm_cdeps_control_gefs_intel [02:51, 02:45] (1019536 MB) +PASS -- TEST datm_cdeps_iau_gefs_intel [02:15, 02:08] (1016832 MB) +PASS -- TEST datm_cdeps_stochy_gefs_intel [02:11, 02:07] (1025156 MB) +PASS -- TEST datm_cdeps_ciceC_cfsr_intel [02:53, 02:49] (1154996 MB) +PASS -- TEST datm_cdeps_bulk_cfsr_intel [02:19, 02:10] (1159408 MB) +PASS -- TEST datm_cdeps_bulk_gefs_intel [02:10, 02:05] (1018620 MB) +PASS -- TEST datm_cdeps_mx025_cfsr_intel [05:33, 04:58] (1161984 MB) +PASS -- TEST datm_cdeps_mx025_gefs_intel [05:34, 04:57] (1162568 MB) +PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [02:11, 02:08] (1122076 MB) +PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [04:07, 04:02] (2495592 MB) +PASS -- TEST datm_cdeps_gfs_intel [03:10, 03:04] (2393028 MB) + +PASS -- COMPILE datm_cdeps_debug_intel [03:05, 03:05](2 warnings,2 remarks) +PASS -- TEST datm_cdeps_debug_cfsr_intel [05:20, 05:15] (1082364 MB) + +PASS -- COMPILE datm_cdeps_faster_intel [05:24, 05:23],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_faster_intel [02:11, 02:07] (1152092 MB) + +PASS -- COMPILE datm_cdeps_land_intel [01:01, 01:01],1 remarks) +PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:11, 00:55] (337988 MB) +PASS -- TEST datm_cdeps_lnd_era5_intel [01:05, 00:51] (575904 MB) +PASS -- TEST datm_cdeps_lnd_era5_rst_intel [00:45, 00:34] (574492 MB) + +PASS -- COMPILE atm_ds2s_docn_pcice_intel [08:48, 08:48],3 remarks) +PASS -- TEST atm_ds2s_docn_pcice_intel [04:06, 03:33] (2016676 MB) + +PASS -- COMPILE atm_ds2s_docn_dice_intel [09:02, 09:02](1 warnings,1 remarks) +PASS -- TEST atm_ds2s_docn_dice_intel [08:13, 07:42] (2026176 MB) + +PASS -- COMPILE atml_intel [09:26, 09:26](8 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_sbs_intel [06:38, 05:50] (1894760 MB) +PASS -- TEST control_p8_atmlnd_intel [07:04, 06:01] (1890184 MB) +PASS -- TEST control_restart_p8_atmlnd_intel [04:21, 03:40] (1136884 MB) + +PASS -- COMPILE atml_debug_intel [04:35, 04:35](880 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_debug_intel [06:36, 05:51] (1924004 MB) + +PASS -- COMPILE atmw_intel [08:56, 08:56],9 remarks) +PASS -- TEST atmwav_control_noaero_p8_intel [02:18, 01:43] (1938216 MB) + +PASS -- COMPILE atmaero_intel [09:14, 09:14],1 remarks) +PASS -- TEST atmaero_control_p8_intel [04:34, 03:56] (2016024 MB) +PASS -- TEST atmaero_control_p8_rad_intel [05:14, 04:25] (1788788 MB) +PASS -- TEST atmaero_control_p8_rad_micro_intel [05:12, 04:34] (1803232 MB) PASS -- COMPILE atmaq_debug_intel [03:51, 03:51](882 warnings,6 remarks) -PASS -- TEST regional_atmaq_debug_intel [18:23, 17:18] (4550280 MB) - -PASS -- COMPILE atm_fbh_intel [08:11, 08:11](3 warnings,8 remarks) -PASS -- TEST cpld_regional_atm_fbh_intel [10:12, 10:00] (1103300 MB) - -PASS -- COMPILE datm_cdeps_intelllvm [10:40, 10:40] -PASS -- TEST datm_cdeps_control_cfsr_intelllvm [03:13, 03:09] (1146268 MB) - -PASS -- COMPILE datm_cdeps_debug_intelllvm [01:58, 01:58](2 warnings -PASS -- TEST datm_cdeps_debug_cfsr_intelllvm [11:31, 11:27] (1083376 MB) - -PASS -- COMPILE atm_gnu [04:08, 04:08] -PASS -- TEST control_c48_gnu [11:36, 11:14] (1521708 MB) -PASS -- TEST control_stochy_gnu [02:45, 02:34] (719960 MB) -PASS -- TEST control_ras_gnu [04:10, 03:59] (721024 MB) -PASS -- TEST control_p8_gnu [05:02, 04:22] (1701372 MB) -PASS -- TEST control_p8_ugwpv1_gnu [04:40, 04:11] (1719540 MB) -PASS -- TEST control_flake_gnu [04:51, 04:39] (810060 MB) - -PASS -- COMPILE rrfs_gnu [03:53, 03:53] -PASS -- TEST rap_control_gnu [11:22, 10:46] (1080180 MB) -PASS -- TEST rap_decomp_gnu [11:26, 10:55] (1076508 MB) -PASS -- TEST rap_restart_gnu [06:39, 05:58] (879876 MB) -PASS -- TEST rap_sfcdiff_gnu [11:36, 10:55] (1073032 MB) -PASS -- TEST rap_sfcdiff_decomp_gnu [12:04, 11:32] (1075436 MB) -PASS -- TEST rap_sfcdiff_restart_gnu [09:18, 08:35] (876336 MB) -PASS -- TEST hrrr_control_gnu [05:53, 05:13] (1061724 MB) -PASS -- TEST hrrr_control_noqr_gnu [05:56, 05:29] (1131060 MB) -PASS -- TEST hrrr_control_decomp_gnu [06:34, 05:57] (1058288 MB) -PASS -- TEST hrrr_control_restart_gnu [03:08, 02:50] (879476 MB) -PASS -- TEST hrrr_control_restart_noqr_gnu [02:58, 02:43] (924824 MB) -PASS -- TEST rrfs_v1beta_gnu [11:48, 11:00] (1067620 MB) - -PASS -- COMPILE csawmg_gnu [04:00, 04:00] -PASS -- TEST control_csawmg_gnu [09:27, 09:15] (1071864 MB) - -PASS -- COMPILE atm_dyn32_debug_gnu [06:56, 06:56] -PASS -- TEST control_diag_debug_gnu [01:43, 01:20] (1620220 MB) -PASS -- TEST regional_debug_gnu [07:31, 07:17] (1123756 MB) -PASS -- TEST rap_control_debug_gnu [02:09, 02:01] (1092256 MB) -PASS -- TEST hrrr_control_debug_gnu [02:21, 02:09] (1079308 MB) -PASS -- TEST hrrr_gf_debug_gnu [02:26, 02:20] (1087840 MB) -PASS -- TEST hrrr_c3_debug_gnu [02:13, 02:08] (1088112 MB) -PASS -- TEST rap_diag_debug_gnu [02:28, 02:16] (1268392 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [03:28, 03:23] (1088664 MB) -PASS -- TEST rap_progcld_thompson_debug_gnu [02:14, 02:07] (1092376 MB) -PASS -- TEST rrfs_v1beta_debug_gnu [02:31, 02:20] (1083252 MB) -PASS -- TEST control_ras_debug_gnu [01:23, 01:18] (721824 MB) -PASS -- TEST control_stochy_debug_gnu [01:38, 01:32] (719700 MB) -PASS -- TEST control_debug_p8_gnu [01:48, 01:27] (1697968 MB) -PASS -- TEST rap_flake_debug_gnu [02:17, 02:06] (1094260 MB) -PASS -- TEST rap_clm_lake_debug_gnu [02:16, 02:05] (1092768 MB) -PASS -- TEST gnv1_c96_no_nest_debug_gnu [03:59, 03:21] (1096348 MB) - -PASS -- COMPILE wam_debug_gnu [03:38, 03:38] -PASS -- TEST control_wam_debug_gnu [05:53, 05:30] (1553364 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_gnu [05:10, 05:10] -PASS -- TEST rap_control_dyn32_phy32_gnu [08:25, 07:49] (957084 MB) -PASS -- TEST hrrr_control_dyn32_phy32_gnu [04:43, 04:00] (943436 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [04:47, 04:05] (941260 MB) -PASS -- TEST rap_restart_dyn32_phy32_gnu [06:37, 06:00] (856308 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [02:25, 02:06] (862324 MB) -PASS -- TEST conus13km_control_gnu [02:53, 02:31] (1257916 MB) -PASS -- TEST conus13km_2threads_gnu [07:14, 06:58] (1095296 MB) -PASS -- TEST conus13km_restart_mismatch_gnu [01:53, 01:34] (919704 MB) - -PASS -- COMPILE atm_dyn64_phy32_gnu [08:37, 08:37] -PASS -- TEST rap_control_dyn64_phy32_gnu [04:52, 04:33] (979588 MB) - -PASS -- COMPILE atm_dyn32_phy32_debug_gnu [06:33, 06:32] -PASS -- TEST rap_control_debug_dyn32_phy32_gnu [02:16, 02:04] (967156 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [02:15, 02:04] (962240 MB) -PASS -- TEST conus13km_debug_gnu [05:54, 05:32] (1272152 MB) -PASS -- TEST conus13km_debug_qr_gnu [06:01, 05:39] (951544 MB) -PASS -- TEST conus13km_debug_2threads_gnu [20:19, 19:57] (1112860 MB) -PASS -- TEST conus13km_radar_tten_debug_gnu [05:51, 05:30] (1344536 MB) - -PASS -- COMPILE atm_dyn64_phy32_debug_gnu [06:32, 06:32] -PASS -- TEST rap_control_dyn64_phy32_debug_gnu [02:22, 02:12] (991024 MB) - -PASS -- COMPILE s2swa_gnu [17:52, 17:52] -PASS -- COMPILE s2s_gnu [16:52, 16:52] -PASS -- TEST cpld_control_nowave_noaero_p8_gnu [15:09, 14:23] (3069288 MB) - -PASS -- COMPILE s2swa_debug_gnu [04:16, 04:16] -PASS -- COMPILE s2sw_pdlib_gnu [15:57, 15:57] -PASS -- TEST cpld_control_pdlib_p8_gnu [40:23, 39:41] (3045624 MB) - -PASS -- COMPILE s2sw_pdlib_debug_gnu [03:59, 03:58] -PASS -- TEST cpld_debug_pdlib_p8_gnu [15:50, 15:09] (2897720 MB) - -PASS -- COMPILE datm_cdeps_gnu [15:36, 15:36] -PASS -- TEST datm_cdeps_control_cfsr_gnu [03:07, 03:02] (772152 MB) +PASS -- TEST regional_atmaq_debug_intel [18:14, 17:10] (4531312 MB) + +PASS -- COMPILE atm_fbh_intel [08:22, 08:22](3 warnings,8 remarks) +PASS -- TEST cpld_regional_atm_fbh_intel [10:51, 10:39] (1105764 MB) + +PASS -- COMPILE datm_cdeps_intelllvm [11:06, 11:06] +PASS -- TEST datm_cdeps_control_cfsr_intelllvm [02:20, 02:16] (1148104 MB) + +PASS -- COMPILE datm_cdeps_debug_intelllvm [01:41, 01:41](2 warnings +PASS -- TEST datm_cdeps_debug_cfsr_intelllvm [06:05, 06:01] (1088836 MB) + +PASS -- COMPILE atm_gnu [03:53, 03:53] +PASS -- TEST control_c48_gnu [11:21, 10:55] (1520512 MB) +PASS -- TEST control_stochy_gnu [02:48, 02:33] (719316 MB) +PASS -- TEST control_ras_gnu [04:16, 04:03] (722836 MB) +PASS -- TEST control_p8_gnu [06:10, 05:19] (1748972 MB) +PASS -- TEST control_p8_ugwpv1_gnu [05:59, 05:17] (1719852 MB) +PASS -- TEST control_flake_gnu [04:51, 04:40] (800672 MB) + +PASS -- COMPILE rrfs_gnu [03:51, 03:51] +PASS -- TEST rap_control_gnu [11:42, 11:05] (1073300 MB) +PASS -- TEST rap_decomp_gnu [11:58, 11:18] (1072824 MB) +PASS -- TEST rap_2threads_gnu [11:57, 11:16] (999640 MB) +PASS -- TEST rap_restart_gnu [06:24, 05:38] (878000 MB) +PASS -- TEST rap_sfcdiff_gnu [12:05, 11:27] (1072084 MB) +PASS -- TEST rap_sfcdiff_decomp_gnu [11:53, 11:11] (1071792 MB) +PASS -- TEST rap_sfcdiff_restart_gnu [09:06, 08:35] (876412 MB) +PASS -- TEST hrrr_control_gnu [06:16, 05:38] (1064104 MB) +PASS -- TEST hrrr_control_noqr_gnu [06:22, 05:47] (1130752 MB) +PASS -- TEST hrrr_control_2threads_gnu [08:02, 07:18] (1038968 MB) +PASS -- TEST hrrr_control_decomp_gnu [06:36, 05:51] (1060040 MB) +PASS -- TEST hrrr_control_restart_gnu [03:19, 02:58] (874984 MB) +PASS -- TEST hrrr_control_restart_noqr_gnu [03:27, 02:59] (924540 MB) +PASS -- TEST rrfs_v1beta_gnu [12:01, 11:17] (1073588 MB) + +PASS -- COMPILE csawmg_gnu [04:04, 04:04] +PASS -- TEST control_csawmg_gnu [10:00, 09:42] (1058876 MB) + +PASS -- COMPILE atm_dyn32_debug_gnu [05:58, 05:58] +PASS -- TEST control_diag_debug_gnu [01:51, 01:23] (1614512 MB) +PASS -- TEST regional_debug_gnu [08:41, 08:08] (1101272 MB) +PASS -- TEST rap_control_debug_gnu [02:24, 02:15] (1088592 MB) +PASS -- TEST hrrr_control_debug_gnu [02:21, 02:08] (1076408 MB) +PASS -- TEST hrrr_gf_debug_gnu [02:17, 02:05] (1084428 MB) +PASS -- TEST hrrr_c3_debug_gnu [02:27, 02:14] (1083724 MB) +PASS -- TEST rap_diag_debug_gnu [02:28, 02:14] (1256124 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [03:30, 03:22] (1082908 MB) +PASS -- TEST rap_progcld_thompson_debug_gnu [02:19, 02:08] (1086392 MB) +PASS -- TEST rrfs_v1beta_debug_gnu [02:15, 02:04] (1079664 MB) +PASS -- TEST control_ras_debug_gnu [01:24, 01:17] (713296 MB) +PASS -- TEST control_stochy_debug_gnu [01:36, 01:27] (713532 MB) +PASS -- TEST control_debug_p8_gnu [02:25, 02:02] (1694412 MB) +PASS -- TEST rap_flake_debug_gnu [02:14, 02:05] (1089744 MB) +PASS -- TEST rap_clm_lake_debug_gnu [02:14, 02:06] (1089480 MB) +PASS -- TEST gnv1_c96_no_nest_debug_gnu [04:26, 03:41] (1087740 MB) + +PASS -- COMPILE wam_debug_gnu [02:39, 02:38] +PASS -- TEST control_wam_debug_gnu [06:10, 05:50] (1558356 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_gnu [03:52, 03:51] +PASS -- TEST rap_control_dyn32_phy32_gnu [08:15, 07:41] (951728 MB) +PASS -- TEST hrrr_control_dyn32_phy32_gnu [04:59, 04:09] (940204 MB) +PASS -- TEST rap_2threads_dyn32_phy32_gnu [07:43, 07:04] (896188 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_gnu [07:46, 06:55] (899828 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [04:56, 04:10] (945604 MB) +PASS -- TEST rap_restart_dyn32_phy32_gnu [06:26, 05:51] (866104 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [02:15, 02:06] (854276 MB) +PASS -- TEST conus13km_control_gnu [03:05, 02:39] (1258488 MB) +PASS -- TEST conus13km_2threads_gnu [07:28, 07:06] (1106316 MB) +PASS -- TEST conus13km_restart_mismatch_gnu [01:56, 01:31] (923268 MB) + +PASS -- COMPILE atm_dyn64_phy32_gnu [08:32, 08:32] +PASS -- TEST rap_control_dyn64_phy32_gnu [05:12, 04:46] (986228 MB) + +PASS -- COMPILE atm_dyn32_phy32_debug_gnu [05:49, 05:48] +PASS -- TEST rap_control_debug_dyn32_phy32_gnu [02:13, 02:04] (976232 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [02:13, 02:04] (962028 MB) +PASS -- TEST conus13km_debug_gnu [06:07, 05:43] (1276240 MB) +PASS -- TEST conus13km_debug_qr_gnu [06:22, 05:57] (951240 MB) +PASS -- TEST conus13km_debug_2threads_gnu [15:11, 14:54] (1124084 MB) +PASS -- TEST conus13km_radar_tten_debug_gnu [06:02, 05:40] (1343044 MB) + +PASS -- COMPILE atm_dyn64_phy32_debug_gnu [06:18, 06:18] +PASS -- TEST rap_control_dyn64_phy32_debug_gnu [02:25, 02:13] (996764 MB) + +PASS -- COMPILE s2swa_gnu [15:48, 15:47] +PASS -- COMPILE s2s_gnu [16:48, 16:48] +PASS -- TEST cpld_control_nowave_noaero_p8_gnu [15:58, 15:09] (3070848 MB) + +PASS -- COMPILE s2swa_debug_gnu [04:34, 04:34] +PASS -- COMPILE s2sw_pdlib_gnu [17:02, 17:02] +PASS -- TEST cpld_control_pdlib_p8_gnu [41:53, 41:10] (3080356 MB) + +PASS -- COMPILE s2sw_pdlib_debug_gnu [03:34, 03:33] +PASS -- TEST cpld_debug_pdlib_p8_gnu [16:49, 15:42] (3050308 MB) + +PASS -- COMPILE datm_cdeps_gnu [14:20, 14:20] +PASS -- TEST datm_cdeps_control_cfsr_gnu [02:26, 02:18] (771268 MB) SYNOPSIS: +Starting Date/Time: 2024-12-26 17:49:37 +Ending Date/Time: 2024-12-26 22:41:22 +Total Time: 04h:51m:45s Compiles Completed: 60/60 -Tests Completed: 243/247 +Tests Completed: 247/247 -./logs/log_hercules/rt_rap_2threads_gnu.log: does not exist -./logs/log_hercules/rt_hrrr_control_2threads_gnu.log: does not exist -./logs/log_hercules/rt_rap_2threads_dyn32_phy32_gnu.log: does not exist -./logs/log_hercules/rt_hrrr_control_2threads_dyn32_phy32_gnu.log: does not exist NOTES: A file test_changes.list was generated but is empty. If you are using this log as a pull request verification, please commit test_changes.list. -====START OF hercules REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -572eba512daea70468af6d74c0134781118e9f0a - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - c7ea491e6fd99e459af977bfd57fa14aa6a349eb CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-12-16) - ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) - 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) - 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) - 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) --179cae1dd84401cf25d250bd9102e66560a9d328 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) - 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) - 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20241212 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_402483 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-r) - USE ROCOTO - -PASS -- COMPILE 'rrfs_gnu' [04:16, 04:16] -PASS -- TEST 'rap_control_gnu' [12:00, 11:24](1074 MB) -PASS -- TEST 'rap_2threads_gnu' [09:44, 09:07](1036 MB) -PASS -- TEST 'hrrr_control_gnu' [05:58, 05:20](1061 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [16:50, 16:11](1019 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:15, 04:15] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:07, 07:33](952 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:51, 04:05](950 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:36, 06:57](916 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:25, 03:34](891 MB) - -SYNOPSIS: -Starting Date/Time: 20241222 20:20:24 -Ending Date/Time: 20241222 21:36:13 -Total Time: 01h:16m:06s -Compiles Completed: 2/2 -Tests Completed: 8/8 - -NOTES: -A file 'test_changes.list' was generated but is empty. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - Result: SUCCESS -====END OF HERCULES REGRESSION TESTING LOG==== +====END OF hercules REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 9a72784cae..03ee568f96 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,20 +1,20 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -527939eb224c50a4d9f66a6099cc2b8b03baf6c8 +ad560f4d81e3fe50c21b316a5207b2fbbd8a4e2b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - c7ea491e6fd99e459af977bfd57fa14aa6a349eb CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-12-16) + 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) + adbb06556f9b9123d24248e4505cd3dedee1d01a FV3 (remotes/origin/rrfsv1-to-ufs/dev5) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) + 2594a9e2c73c2a3a9acaa78fef8252cf5de3b524 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5530-g2594a9e2) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -38,259 +38,350 @@ 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-20241212 -COMPARISON DIRECTORY: /mnt/lfs5/NAGAPE/epic/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_3791175 +BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20241223 +COMPARISON DIRECTORY: /lfs5/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_531216 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [45:14, 43:38] ( 1 warnings 1397 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:23, 13:34](1993 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [50:15, 48:58] ( 1 warnings 1444 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [54:18, 24:59](1871 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [29:26, 26:29](1992 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:15, 10:01](1126 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [58:03, 28:11](1836 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [48:14, 46:54] ( 1 warnings 1441 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [55:54, 24:37](1877 MB) - -PASS -- COMPILE 's2swa_intel' [46:14, 44:20] ( 1 warnings 1416 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [25:28, 17:49](2046 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [50:36, 17:05](2042 MB) -PASS -- TEST 'cpld_restart_p8_intel' [20:20, 09:03](1709 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [43:17, 17:03](2063 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [12:21, 09:03](1730 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [50:17, 16:56](2254 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [50:18, 17:15](2054 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [20:24, 14:04](2002 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [37:33, 16:57](2050 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [42:25, 09:20](1991 MB) - -PASS -- COMPILE 's2sw_intel' [42:14, 40:48] ( 1 warnings 1301 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [16:31, 09:48](1901 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [20:38, 14:03](1966 MB) - -PASS -- COMPILE 's2swa_debug_intel' [12:11, 06:15] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [53:31, 27:43](2073 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:11, 06:02] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [38:14, 11:42](1925 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [39:13, 37:14] ( 1019 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:19, 05:33](1953 MB) - -PASS -- COMPILE 's2s_intel' [43:14, 38:07] ( 1 warnings 1042 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [12:50, 10:20](3017 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:47, 03:05](2998 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:53, 01:47](2452 MB) - -PASS -- COMPILE 's2swa_faster_intel' [35:18, 32:31] ( 1 warnings 1632 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [19:42, 16:23](2040 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [12:16, 46:34] ( 1 warnings 1361 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [36:54, 33:24](1937 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [19:18, 16:34](1169 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [42:30, 39:21](1911 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [31:13, 06:03] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [42:14, 38:41](1935 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [33:13, 31:12] ( 1 warnings 1125 remarks ) -PASS -- TEST 'control_flake_intel' [11:32, 04:20](651 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [16:10, 04:10](1537 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [17:15, 04:22](1547 MB) -PASS -- TEST 'control_latlon_intel' [13:05, 04:17](1542 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [13:13, 04:18](1530 MB) -PASS -- TEST 'control_c48_intel' [27:14, 18:05](1701 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [19:35, 10:13](835 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [27:14, 18:06](1710 MB) -PASS -- TEST 'control_c192_intel' [20:22, 15:59](1692 MB) -PASS -- TEST 'control_c384_intel' [28:21, 23:00](1818 MB) -PASS -- TEST 'control_c384gdas_intel' [25:09, 13:20](1006 MB) -PASS -- TEST 'control_stochy_intel' [08:29, 02:06](594 MB) -PASS -- TEST 'control_stochy_restart_intel' [05:29, 01:13](442 MB) -PASS -- TEST 'control_lndp_intel' [08:29, 01:58](603 MB) -PASS -- TEST 'control_iovr4_intel' [10:33, 03:18](600 MB) -PASS -- TEST 'control_iovr5_intel' [10:33, 03:16](605 MB) -PASS -- TEST 'control_p8_intel' [12:30, 04:53](1829 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [16:35, 03:55](1831 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [16:22, 04:37](1821 MB) -PASS -- TEST 'control_restart_p8_intel' [08:54, 02:35](1056 MB) -PASS -- TEST 'control_noqr_p8_intel' [13:22, 04:39](1816 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [10:55, 02:32](1082 MB) -PASS -- TEST 'control_decomp_p8_intel' [12:24, 04:53](1812 MB) -PASS -- TEST 'control_2threads_p8_intel' [14:23, 04:29](1907 MB) -PASS -- TEST 'control_p8_lndp_intel' [19:13, 08:34](1831 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [14:24, 05:07](1893 MB) -PASS -- TEST 'control_p8_mynn_intel' [12:25, 03:59](1838 MB) -PASS -- TEST 'merra2_thompson_intel' [16:21, 04:19](1843 MB) -PASS -- TEST 'regional_control_intel' [16:02, 07:08](1042 MB) -PASS -- TEST 'regional_restart_intel' [06:33, 03:50](1020 MB) -PASS -- TEST 'regional_decomp_intel' [17:02, 07:28](1033 MB) -PASS -- TEST 'regional_2threads_intel' [13:04, 04:15](1006 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [10:47, 07:06](1044 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [10:35, 07:06](1036 MB) - -PASS -- COMPILE 'rrfs_intel' [37:14, 35:21] ( 3 warnings 1101 remarks ) -PASS -- TEST 'rap_control_intel' [12:54, 09:59](989 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:05, 05:36](1195 MB) -PASS -- TEST 'rap_decomp_intel' [12:41, 10:39](987 MB) -PASS -- TEST 'rap_2threads_intel' [15:38, 09:26](1065 MB) -PASS -- TEST 'rap_restart_intel' [08:44, 05:10](992 MB) -PASS -- TEST 'rap_sfcdiff_intel' [16:48, 09:56](987 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [17:38, 10:41](975 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:41, 07:25](995 MB) -PASS -- TEST 'hrrr_control_intel' [12:51, 05:05](983 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [12:37, 05:20](977 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [14:41, 04:44](1049 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:28, 02:43](919 MB) -PASS -- TEST 'rrfs_v1beta_intel' [18:58, 09:56](984 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [21:29, 13:18](1934 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [21:28, 12:55](1929 MB) - -PASS -- COMPILE 'csawmg_intel' [36:13, 35:03] ( 1099 remarks ) -PASS -- TEST 'control_csawmg_intel' [16:36, 08:15](962 MB) -PASS -- TEST 'control_ras_intel' [12:23, 04:27](669 MB) - -PASS -- COMPILE 'wam_intel' [42:13, 35:28] ( 1003 remarks ) -PASS -- TEST 'control_wam_intel' [16:55, 14:23](1614 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [43:14, 37:23] ( 1303 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:55, 03:36](1840 MB) -PASS -- TEST 'regional_control_faster_intel' [09:38, 06:40](1037 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [12:11, 08:04] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [08:41, 02:51](1560 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:47, 02:50](1560 MB) -PASS -- TEST 'control_stochy_debug_intel' [09:23, 03:50](778 MB) -PASS -- TEST 'control_lndp_debug_intel' [08:25, 03:26](782 MB) -PASS -- TEST 'control_csawmg_debug_intel' [10:43, 05:32](1088 MB) -PASS -- TEST 'control_ras_debug_intel' [08:24, 03:30](786 MB) -PASS -- TEST 'control_diag_debug_intel' [07:43, 03:29](1632 MB) -PASS -- TEST 'control_debug_p8_intel' [06:44, 03:20](1858 MB) -PASS -- TEST 'regional_debug_intel' [25:43, 22:06](1055 MB) -PASS -- TEST 'rap_control_debug_intel' [08:26, 06:07](1162 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:26, 06:04](1149 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:24, 06:08](1166 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:24, 06:06](1158 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:24, 06:06](1164 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:34, 06:20](1253 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:28, 06:19](1160 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:28, 06:15](1160 MB) -PASS -- TEST 'rap_lndp_debug_intel' [09:25, 06:14](1160 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [09:25, 06:14](1157 MB) -PASS -- TEST 'rap_noah_debug_intel' [08:25, 06:02](1163 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:25, 06:10](1161 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:27, 10:06](1153 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:24, 06:05](1157 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:28, 06:04](1163 MB) -PASS -- TEST 'rap_flake_debug_intel' [09:25, 06:01](1162 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:48, 10:35](1164 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:11, 05:06] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [24:53, 16:42](1632 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [35:12, 30:50] ( 3 warnings 1033 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:04, 05:13](1061 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [13:47, 08:18](920 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:44, 04:22](870 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [13:47, 07:53](907 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:44, 04:05](903 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:44, 04:39](854 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:44, 06:12](906 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:25, 02:24](852 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [35:13, 32:08] ( 3 warnings 1207 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:58, 02:39](1096 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:39, 01:11](1036 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:41, 01:29](1015 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [33:13, 31:26] ( 3 warnings 1053 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:53, 05:24](908 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:19] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:25, 06:03](1041 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:26, 05:58](1033 MB) -PASS -- TEST 'conus13km_debug_intel' [19:55, 17:39](1153 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [19:55, 17:38](853 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [16:51, 10:13](1077 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:49, 17:40](1216 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:57] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:26, 06:12](1081 MB) - -PASS -- COMPILE 'hafsw_intel' [41:13, 39:45] ( 1 warnings 1435 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [15:22, 08:33](691 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [14:30, 08:03](1081 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [25:40, 09:07](754 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [32:30, 15:40](784 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [35:50, 18:52](797 MB) -PASS -- TEST 'gnv1_nested_intel' [15:57, 07:06](1656 MB) - -PASS -- COMPILE 'hafs_all_intel' [38:13, 36:32] ( 1281 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [17:36, 09:32](751 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:37, 09:25](731 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:14] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:24, 03:38](1066 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:24, 02:09](1047 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:25, 03:32](945 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:24, 03:37](939 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:24, 03:38](932 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:23, 03:34](1068 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:22, 03:35](1079 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:24, 03:32](936 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:16, 07:45](898 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:14, 07:51](854 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:21, 03:37](1073 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:24, 05:31](2418 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [08:23, 05:02](2417 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 03:27] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:23, 08:13](1040 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:21] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:20, 03:39](1073 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:49] ( 68 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:36, 01:11](236 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:34, 00:56](264 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:37](260 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [38:14, 36:47] ( 1024 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [10:29, 04:51](1897 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [37:14, 35:56] ( 1 warnings 1029 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [16:23, 10:30](1895 MB) - -PASS -- COMPILE 'atml_intel' [39:13, 37:53] ( 8 warnings 1174 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:14, 05:38](1858 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:12, 05:34](1842 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:54, 03:08](1067 MB) - -PASS -- COMPILE 'atml_debug_intel' [14:11, 07:01] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:16, 07:16](1876 MB) - -PASS -- COMPILE 'atmw_intel' [47:14, 38:07] ( 1277 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:12, 02:29](1855 MB) - -PASS -- COMPILE 'atmaero_intel' [37:13, 36:02] ( 1107 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:04, 05:14](1923 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:03, 06:16](1707 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:54, 06:21](1725 MB) - -PASS -- COMPILE 'atm_fbh_intel' [33:13, 31:17] ( 3 warnings 1004 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:40, 15:17](1052 MB) +PASS -- COMPILE 's2swa_32bit_intel' [45:14, 43:56] ( 1 warnings 1397 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:24, 13:42](2015 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [47:14, 46:09] ( 1 warnings 1444 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [36:06, 22:55](1879 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:24, 24:23](2015 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:08, 09:41](1146 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [35:18, 26:05](1852 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [56:15, 54:45] ( 1 warnings 1441 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [28:51, 22:22](1878 MB) + +PASS -- COMPILE 's2swa_intel' [46:14, 44:14] ( 1 warnings 1416 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [26:23, 17:54](2021 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [25:35, 17:18](2034 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:13, 08:54](1712 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [25:17, 17:21](2065 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:20, 09:06](1713 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [24:10, 16:12](2251 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [25:07, 17:15](2047 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [22:27, 14:07](2008 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [25:36, 17:11](2040 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [17:22, 09:27](1981 MB) + +PASS -- COMPILE 's2sw_intel' [43:14, 41:19] ( 1 warnings 1301 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [12:31, 09:50](1901 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [17:42, 14:17](1970 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:21] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [37:35, 27:30](2090 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:50] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [22:16, 11:35](1936 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [39:13, 37:22] ( 1019 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:26, 05:34](1974 MB) + +PASS -- COMPILE 's2s_intel' [39:13, 37:46] ( 1 warnings 1042 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [12:57, 10:21](2998 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:55, 03:04](3007 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:49, 01:47](2450 MB) + +PASS -- COMPILE 's2swa_faster_intel' [43:18, 32:41] ( 1 warnings 1632 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [19:46, 16:33](2044 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [55:15, 45:24] ( 1 warnings 1361 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [38:50, 33:37](1926 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [20:39, 16:25](1145 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [43:33, 39:23](1908 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:11, 06:03] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:28, 38:44](1936 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [39:14, 37:58] ( 1 warnings 1125 remarks ) +PASS -- TEST 'control_flake_intel' [08:32, 04:30](653 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [19:10, 04:12](1541 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:15, 04:41](1544 MB) +PASS -- TEST 'control_latlon_intel' [20:07, 04:12](1536 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [21:15, 04:22](1530 MB) +PASS -- TEST 'control_c48_intel' [34:16, 18:12](1692 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [13:39, 10:12](830 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [25:15, 18:07](1694 MB) +PASS -- TEST 'control_c192_intel' [20:27, 16:04](1695 MB) +PASS -- TEST 'control_c384_intel' [28:38, 23:14](1803 MB) +PASS -- TEST 'control_c384gdas_intel' [19:08, 13:21](1008 MB) +PASS -- TEST 'control_stochy_intel' [04:30, 02:07](600 MB) +PASS -- TEST 'control_stochy_restart_intel' [14:26, 01:14](435 MB) +PASS -- TEST 'control_lndp_intel' [04:30, 02:00](606 MB) +PASS -- TEST 'control_iovr4_intel' [05:32, 03:16](601 MB) +PASS -- TEST 'control_iovr5_intel' [05:33, 03:17](600 MB) +PASS -- TEST 'control_p8_intel' [09:39, 04:54](1826 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [22:41, 03:57](1839 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [18:22, 04:38](1821 MB) +PASS -- TEST 'control_restart_p8_intel' [11:58, 02:37](1055 MB) +PASS -- TEST 'control_noqr_p8_intel' [20:31, 04:41](1830 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:02, 02:35](1080 MB) +PASS -- TEST 'control_decomp_p8_intel' [19:22, 04:47](1814 MB) +PASS -- TEST 'control_2threads_p8_intel' [22:20, 04:25](1911 MB) +PASS -- TEST 'control_p8_lndp_intel' [23:13, 08:36](1828 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [21:25, 05:13](1902 MB) +PASS -- TEST 'control_p8_mynn_intel' [18:28, 03:58](1848 MB) +PASS -- TEST 'merra2_thompson_intel' [19:24, 04:19](1839 MB) +PASS -- TEST 'regional_control_intel' [23:02, 07:06](1047 MB) +PASS -- TEST 'regional_restart_intel' [05:40, 03:47](1020 MB) +PASS -- TEST 'regional_decomp_intel' [16:04, 07:30](1039 MB) +PASS -- TEST 'regional_2threads_intel' [19:40, 04:14](1011 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [20:47, 07:09](1040 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [21:36, 07:08](1036 MB) + +PASS -- COMPILE 'rrfs_intel' [36:14, 34:47] ( 3 warnings 1100 remarks ) +PASS -- TEST 'rap_control_intel' [20:44, 10:06](988 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [11:06, 05:37](1193 MB) +PASS -- TEST 'rap_decomp_intel' [15:54, 10:38](977 MB) +PASS -- TEST 'rap_2threads_intel' [19:44, 09:32](1054 MB) +PASS -- TEST 'rap_restart_intel' [08:53, 05:14](992 MB) +PASS -- TEST 'rap_sfcdiff_intel' [16:54, 10:05](987 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [18:43, 10:43](978 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:50, 07:32](998 MB) +PASS -- TEST 'hrrr_control_intel' [10:53, 05:16](974 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [11:39, 05:26](976 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [10:37, 04:45](1045 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:27, 02:45](913 MB) +PASS -- TEST 'rrfs_v1beta_intel' [15:02, 10:01](982 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [18:27, 13:29](1932 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [17:30, 12:53](1929 MB) + +PASS -- COMPILE 'csawmg_intel' [37:14, 34:51] ( 1099 remarks ) +PASS -- TEST 'control_csawmg_intel' [12:40, 08:08](961 MB) +PASS -- TEST 'control_ras_intel' [08:29, 04:21](666 MB) + +PASS -- COMPILE 'wam_intel' [37:13, 35:26] ( 1003 remarks ) +PASS -- TEST 'control_wam_intel' [16:53, 14:22](1605 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [39:13, 37:48] ( 1303 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:56, 03:35](1840 MB) +PASS -- TEST 'regional_control_faster_intel' [09:36, 06:30](1042 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:11, 08:35] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:50, 02:49](1573 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:52, 02:59](1566 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:27, 03:46](778 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:28, 03:23](774 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:44, 05:25](1083 MB) +PASS -- TEST 'control_ras_debug_intel' [05:27, 03:25](788 MB) +PASS -- TEST 'control_diag_debug_intel' [05:50, 03:24](1640 MB) +PASS -- TEST 'control_debug_p8_intel' [05:52, 03:23](1845 MB) +PASS -- TEST 'regional_debug_intel' [23:48, 22:02](1051 MB) +PASS -- TEST 'rap_control_debug_intel' [08:30, 06:12](1159 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:29, 06:03](1159 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:29, 06:12](1156 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:29, 06:10](1169 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:26, 06:05](1163 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:36, 06:25](1253 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:24, 06:17](1168 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:26, 06:13](1165 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:26, 06:10](1175 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:28, 06:10](1163 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:25, 05:59](1163 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:26, 06:10](1162 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:26, 10:00](1161 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:26, 06:02](1160 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:28, 06:09](1159 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:26, 06:09](1162 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:51, 10:37](1166 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:11, 05:14] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:58, 16:38](1639 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:13, 30:54] ( 3 warnings 1032 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:07, 05:09](1057 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:38, 08:15](899 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:37, 04:23](873 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:50, 07:50](912 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:44, 03:59](902 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:37, 04:51](858 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [12:48, 06:13](899 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:28, 02:22](848 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [34:14, 32:32] ( 3 warnings 1207 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_control_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'conus13km_2threads_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'conus13km_restart_mismatch_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [33:12, 31:39] ( 3 warnings 1052 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:02, 05:25](907 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:15] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:37, 06:03](1043 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:36, 05:55](1040 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_qr_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_2threads_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_radar_tten_debug_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 05:06] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:26, 06:11](1074 MB) + +PASS -- COMPILE 'hafsw_intel' [42:13, 41:04] ( 1 warnings 1435 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:31, 06:57](707 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [15:42, 06:21](1085 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [21:54, 09:18](760 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:44, 15:41](779 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [31:05, 19:07](805 MB) +PASS -- TEST 'gnv1_nested_intel' [19:03, 06:46](1666 MB) + +PASS -- COMPILE 'hafs_all_intel' [38:13, 36:45] ( 1281 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [19:29, 08:46](750 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [19:29, 08:46](737 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:11] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:25, 03:37](1079 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:23, 02:09](1039 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:23, 03:30](943 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:24, 03:32](935 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:24, 03:32](933 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:24, 03:38](1064 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:24, 03:38](1072 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:25, 03:29](939 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:25, 07:42](901 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [14:25, 07:35](849 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:22, 03:39](1066 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:24, 05:07](2443 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:24, 05:07](2367 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:22] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:23, 08:06](1021 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:12, 08:17] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:31](1075 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:50] ( 68 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:40, 01:22](239 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:32, 01:10](267 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:42](260 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [38:14, 36:33] ( 1024 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:22, 04:55](1896 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [38:14, 36:16] ( 1 warnings 1029 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [13:11, 10:36](1896 MB) + +PASS -- COMPILE 'atml_intel' [39:13, 37:20] ( 8 warnings 1174 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:26, 05:48](1861 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:30, 05:52](1845 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [13:46, 03:19](1049 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:11, 06:19] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:12, 07:27](1894 MB) + +PASS -- COMPILE 'atmw_intel' [40:13, 38:29] ( 1277 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:09, 02:30](1849 MB) + +PASS -- COMPILE 'atmaero_intel' [39:13, 36:08] ( 1107 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:04, 05:22](1911 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:02, 06:17](1713 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:55, 06:26](1722 MB) + +PASS -- COMPILE 'atm_fbh_intel' [33:13, 31:33] ( 3 warnings 1003 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:36, 15:13](1052 MB) SYNOPSIS: -Starting Date/Time: 20241220 01:01:56 -Ending Date/Time: 20241220 05:36:35 -Total Time: 04h:35m:33s +Starting Date/Time: 20241224 13:07:59 +Ending Date/Time: 20241224 17:36:41 +Total Time: 04h:29m:31s Compiles Completed: 37/37 -Tests Completed: 166/166 +Tests Completed: 159/166 +Failed Tests: +* TEST conus13km_control_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /mnt/lfs5/NAGAPE/epic/Jong.Kim/UFS-RT/rt-2485/tests/logs/log_jet/run_conus13km_control_intel.log +* TEST conus13km_2threads_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST conus13km_restart_mismatch_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST conus13km_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /mnt/lfs5/NAGAPE/epic/Jong.Kim/UFS-RT/rt-2485/tests/logs/log_jet/run_conus13km_debug_intel.log +* TEST conus13km_debug_qr_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /mnt/lfs5/NAGAPE/epic/Jong.Kim/UFS-RT/rt-2485/tests/logs/log_jet/run_conus13km_debug_qr_intel.log +* TEST conus13km_debug_2threads_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /mnt/lfs5/NAGAPE/epic/Jong.Kim/UFS-RT/rt-2485/tests/logs/log_jet/run_conus13km_debug_2threads_intel.log +* TEST conus13km_radar_tten_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /mnt/lfs5/NAGAPE/epic/Jong.Kim/UFS-RT/rt-2485/tests/logs/log_jet/run_conus13km_radar_tten_debug_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 JET REGRESSION TESTING LOG==== +====START OF JET REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +e5c2c724173f04b41173d307dd30ae5098e9deb4 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) + ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) + 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) + b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + adbb06556f9b9123d24248e4505cd3dedee1d01a FV3 (remotes/origin/rrfsv1-to-ufs/dev5) + 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) + 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) + 2594a9e2c73c2a3a9acaa78fef8252cf5de3b524 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5530-g2594a9e2) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) +-179cae1dd84401cf25d250bd9102e66560a9d328 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) + 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) + 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20241223 +COMPARISON DIRECTORY: /lfs5/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_2140087 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [21:12, 06:01] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:32, 38:48](1937 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [42:14, 32:24] ( 3 warnings 1207 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:49, 02:40](1101 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:35, 01:09](1028 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:38, 01:28](1013 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [16:11, 05:14] ( 785 warnings 8 remarks ) +PASS -- TEST 'conus13km_debug_intel' [22:00, 17:45](1171 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [22:00, 17:48](891 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [14:53, 10:12](1073 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:55, 17:42](1218 MB) + +SYNOPSIS: +Starting Date/Time: 20241224 22:33:38 +Ending Date/Time: 20241224 23:37:41 +Total Time: 01h:04m:10s +Compiles Completed: 3/3 +Tests Completed: 8/8 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 4e2a8cbf31..e301e29153 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,20 +1,20 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -527939eb224c50a4d9f66a6099cc2b8b03baf6c8 +ad560f4d81e3fe50c21b316a5207b2fbbd8a4e2b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - c7ea491e6fd99e459af977bfd57fa14aa6a349eb CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-12-16) + 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) + adbb06556f9b9123d24248e4505cd3dedee1d01a FV3 (remotes/origin/rrfsv1-to-ufs/dev5) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) + 2594a9e2c73c2a3a9acaa78fef8252cf5de3b524 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5530-g2594a9e2) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -38,303 +38,309 @@ 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-20241212 -COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2703896 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241223 +COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_3676881 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [20:11, 16:15] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [36:59, 27:32](2090 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:11, 19:35] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [26:51, 22:07](1956 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:12, 23:17](2126 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:11, 08:50](1230 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [30:59, 26:01](1867 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:10, 18:43] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [25:52, 21:37](1938 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:10, 08:25] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [34:54, 30:35](1924 MB) - -PASS -- COMPILE 's2swa_intel' [20:11, 16:27] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [39:04, 29:54](2140 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [35:53, 26:40](2143 MB) -PASS -- TEST 'cpld_restart_p8_intel' [22:51, 14:27](1806 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [36:51, 28:01](2174 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [21:48, 14:08](1696 MB) -FAILED: TEST TIMED OUT -- TEST 'cpld_2threads_p8_intel' [, ]( MB) -PASS -- TEST 'cpld_decomp_p8_intel' [36:51, 27:25](2136 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [28:42, 21:59](2039 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [36:57, 27:10](2139 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [23:37, 15:51](2717 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [15:09, 08:48](2712 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [30:17, 20:06](3732 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [29:52, 10:57](3542 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [17:38, 08:04](2078 MB) - -PASS -- COMPILE 's2sw_intel' [20:11, 15:55] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [36:38, 27:23](1965 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [20:39, 11:46](2049 MB) - -PASS -- COMPILE 's2swa_debug_intel' [12:10, 08:15] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [25:33, 22:24](2164 MB) - -PASS -- COMPILE 's2sw_debug_intel' [12:10, 08:05] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:11, 10:16](2000 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [18:10, 14:47] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:25, 04:48](2030 MB) - -PASS -- COMPILE 's2s_intel' [18:10, 14:43] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [11:03, 08:44](3037 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [06:00, 03:01](3021 MB) -PASS -- TEST 'cpld_restart_c48_intel' [07:02, 01:51](2482 MB) - -PASS -- COMPILE 's2swa_faster_intel' [21:13, 18:06] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [32:34, 28:14](2142 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:13, 19:40] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [32:23, 29:04](2009 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:53, 14:34](1258 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [36:23, 33:47](1925 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:11, 07:26] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [39:08, 34:18](1970 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:13, 14:23] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:24, 03:44](691 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:47, 03:34](1576 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:50, 03:38](1574 MB) -PASS -- TEST 'control_latlon_intel' [05:43, 03:33](1568 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:52, 03:35](1573 MB) -PASS -- TEST 'control_c48_intel' [17:55, 14:43](1695 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:33, 08:10](832 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [17:55, 14:47](1705 MB) -PASS -- TEST 'control_c192_intel' [15:57, 13:11](1748 MB) -PASS -- TEST 'control_c384_intel' [23:07, 16:47](1986 MB) -PASS -- TEST 'control_c384gdas_intel' [16:47, 09:53](1327 MB) -PASS -- TEST 'control_stochy_intel' [04:24, 01:50](640 MB) -PASS -- TEST 'control_stochy_restart_intel' [04:49, 01:05](466 MB) -PASS -- TEST 'control_lndp_intel' [04:20, 01:43](646 MB) -PASS -- TEST 'control_iovr4_intel' [05:21, 02:43](643 MB) -PASS -- TEST 'control_iovr5_intel' [05:21, 02:46](631 MB) -PASS -- TEST 'control_p8_intel' [12:10, 04:09](1867 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [11:10, 03:27](1874 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [08:26, 04:01](1867 MB) -PASS -- TEST 'control_restart_p8_intel' [14:11, 02:20](1092 MB) -PASS -- TEST 'control_noqr_p8_intel' [08:09, 04:04](1869 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [13:39, 02:20](1124 MB) -PASS -- TEST 'control_decomp_p8_intel' [13:14, 04:07](1844 MB) -PASS -- TEST 'control_2threads_p8_intel' [14:18, 05:00](1923 MB) -PASS -- TEST 'control_p8_lndp_intel' [13:45, 07:16](1868 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [11:30, 04:53](1933 MB) -PASS -- TEST 'control_p8_mynn_intel' [09:21, 03:26](1879 MB) -PASS -- TEST 'merra2_thompson_intel' [09:35, 03:51](1872 MB) -PASS -- TEST 'regional_control_intel' [13:39, 06:31](1107 MB) -PASS -- TEST 'regional_restart_intel' [05:39, 03:35](1086 MB) -PASS -- TEST 'regional_decomp_intel' [13:39, 06:53](1108 MB) -PASS -- TEST 'regional_2threads_intel' [11:38, 04:39](1053 MB) -PASS -- TEST 'regional_noquilt_intel' [12:45, 06:30](1409 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [15:49, 10:08](1109 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [11:41, 06:33](1116 MB) -PASS -- TEST 'regional_wofs_intel' [11:45, 07:57](1892 MB) - -PASS -- COMPILE 'rrfs_intel' [16:13, 13:43] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [16:14, 08:30](1060 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:01, 05:12](1260 MB) -PASS -- TEST 'rap_decomp_intel' [15:55, 08:46](1013 MB) -PASS -- TEST 'rap_2threads_intel' [18:06, 10:08](1082 MB) -PASS -- TEST 'rap_restart_intel' [07:28, 04:23](1040 MB) -PASS -- TEST 'rap_sfcdiff_intel' [16:18, 08:24](1054 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [17:35, 08:41](1016 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [12:34, 09:46](1072 MB) -PASS -- TEST 'hrrr_control_intel' [13:06, 04:22](1020 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [13:04, 04:27](1010 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [13:23, 05:02](1080 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:43, 02:21](942 MB) -PASS -- TEST 'rrfs_v1beta_intel' [16:45, 08:25](1053 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [15:35, 09:53](1976 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [15:34, 09:33](2017 MB) - -PASS -- COMPILE 'csawmg_intel' [20:12, 14:04] -PASS -- TEST 'control_csawmg_intel' [11:35, 06:38](1011 MB) -PASS -- TEST 'control_ras_intel' [06:27, 03:31](715 MB) - -PASS -- COMPILE 'wam_intel' [18:12, 12:34] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:46, 12:51](1640 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [18:12, 12:58] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:19, 03:24](1869 MB) -PASS -- TEST 'regional_control_faster_intel' [08:36, 06:20](1108 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [13:12, 09:56] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:42, 02:19](1604 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:51, 02:19](1591 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:28, 03:05](816 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:23, 02:55](808 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:40, 04:23](1126 MB) -PASS -- TEST 'control_ras_debug_intel' [04:22, 02:51](825 MB) -PASS -- TEST 'control_diag_debug_intel' [04:40, 02:47](1668 MB) -PASS -- TEST 'control_debug_p8_intel' [04:45, 02:43](1896 MB) -PASS -- TEST 'regional_debug_intel' [19:40, 17:21](1105 MB) -PASS -- TEST 'rap_control_debug_intel' [06:24, 04:55](1195 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:26, 04:58](1195 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:23, 05:02](1193 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:24, 05:00](1206 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 04:56](1198 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:33, 05:16](1289 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:21, 05:00](1201 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:20, 05:03](1201 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:23, 05:14](1197 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:26, 05:00](1201 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:23, 05:01](1200 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:24, 05:09](1204 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:30, 08:21](1199 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:37, 04:54](1205 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:39, 05:05](1203 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:43, 05:09](1196 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:28, 08:36](1207 MB) - -PASS -- COMPILE 'wam_debug_intel' [12:12, 06:11] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:55, 13:14](1672 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:12, 12:13] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:18, 05:04](1145 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:18, 07:15](999 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:39, 03:52](921 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [13:16, 08:39](989 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:36, 04:32](953 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:15, 03:59](891 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:30, 05:25](980 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:05, 02:03](867 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:13, 12:11] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:50, 02:35](1171 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:42, 01:11](1112 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:47, 01:29](1069 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:13, 12:25] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:46, 04:36](971 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:12, 06:50] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:21, 04:57](1076 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:24, 05:00](1074 MB) -PASS -- TEST 'conus13km_debug_intel' [16:49, 14:15](1224 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:55, 14:11](935 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [15:39, 13:42](1160 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:38, 14:04](1300 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:12, 06:07] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:26, 05:11](1132 MB) - -PASS -- COMPILE 'hafsw_intel' [23:15, 15:04] ( 1 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:14, 05:59](736 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:27, 06:46](1129 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:25, 07:49](850 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [32:28, 29:37](846 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [37:46, 34:54](867 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:03, 07:10](498 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:33, 08:50](503 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:10, 03:32](372 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:31, 09:41](471 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:55, 04:45](525 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:01, 04:31](527 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:56, 05:42](577 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:28, 01:34](403 MB) -PASS -- TEST 'gnv1_nested_intel' [08:12, 04:18](1717 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [14:12, 07:13] ( 1462 warnings 1490 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:58, 13:24](581 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [18:11, 14:13] ( 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:10, 15:20](658 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:11, 15:16](723 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [18:11, 14:28] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:30, 11:11](707 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:12, 15:32] ( 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:16, 08:51](795 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:15, 07:36](795 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:56, 16:20](1199 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [12:12, 09:42] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 02:58](1155 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:54](1117 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:19, 02:50](1025 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:56](1018 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:54](1023 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:19, 02:59](1147 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 03:00](1151 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:50](1019 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:15, 06:30](1026 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:12, 06:30](1002 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:58](1155 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 04:19](2380 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:20, 04:22](2440 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [11:12, 05:27] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:19, 06:35](1082 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [13:12, 08:41] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:59](1128 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [07:12, 01:41] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:31, 01:02](258 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:56](324 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:36](323 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [06:11, 01:47] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:30, 00:37](557 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:33, 00:22](443 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:14, 13:45] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:17, 04:11](1965 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [20:14, 13:08] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:03, 08:37](1969 MB) - -PASS -- COMPILE 'atml_intel' [19:13, 13:40] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:34, 04:51](1862 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:34, 04:56](1862 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:57, 02:45](1052 MB) - -PASS -- COMPILE 'atml_debug_intel' [11:13, 07:40] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:33, 05:58](1887 MB) - -PASS -- COMPILE 'atmw_intel' [17:12, 13:34] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:24, 02:20](1902 MB) - -PASS -- COMPILE 'atmaero_intel' [17:12, 13:51] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:14, 04:36](1966 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:12, 05:24](1748 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:01, 05:28](1772 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:11, 06:42] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [24:03, 20:52](4491 MB) - -PASS -- COMPILE 'atm_fbh_intel' [14:12, 11:56] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:30, 13:52](1111 MB) - -PASS -- COMPILE 'hafsw_intelllvm' [10:11, 07:48] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [10:12, 08:09](571 MB) - -PASS -- COMPILE 'hafsw_debug_intelllvm' [06:10, 04:39] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [21:53, 19:46](562 MB) +PASS -- COMPILE 's2swa_32bit_intel' [19:12, 17:32] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [33:39, 28:11](2086 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:12, 19:56] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [27:51, 22:08](1954 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:42, 23:24](2137 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:17, 08:57](1229 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [31:49, 26:16](1872 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:12, 20:32] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [24:33, 21:45](1938 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:11, 08:12] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [34:36, 30:38](1926 MB) + +PASS -- COMPILE 's2swa_intel' [19:12, 18:05] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [33:42, 29:21](2139 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [32:42, 27:40](2140 MB) +PASS -- TEST 'cpld_restart_p8_intel' [18:12, 14:22](1805 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [31:30, 27:53](2168 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [18:15, 14:21](1697 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [25:18, 20:53](2343 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [32:22, 27:52](2140 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [27:42, 23:37](2039 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [32:31, 27:55](2140 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [22:16, 16:09](2714 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [15:37, 09:12](2707 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [31:49, 20:27](3726 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:47, 10:57](3554 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:57, 08:01](2073 MB) + +PASS -- COMPILE 's2sw_intel' [18:12, 17:06] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [31:07, 27:25](1964 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:32, 11:46](2060 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:11, 08:26] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [26:11, 22:48](2168 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:11, 08:06] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [14:58, 10:12](1991 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:11, 15:17] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:34, 04:52](2023 MB) + +PASS -- COMPILE 's2s_intel' [16:11, 14:44] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [11:47, 08:42](3036 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [06:05, 03:03](3026 MB) +PASS -- TEST 'cpld_restart_c48_intel' [05:59, 02:10](2476 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:12, 17:11] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [31:12, 27:16](2137 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 18:53] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [32:25, 29:13](2011 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:37, 14:32](1255 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [36:15, 33:50](1923 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 07:23] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [39:11, 34:53](1966 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:11, 13:37] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:30, 03:44](688 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:04, 03:34](1575 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:06, 03:37](1580 MB) +PASS -- TEST 'control_latlon_intel' [07:54, 03:34](1573 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:05, 03:34](1564 MB) +PASS -- TEST 'control_c48_intel' [19:11, 14:43](1697 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [12:47, 08:14](839 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [19:08, 14:45](1703 MB) +PASS -- TEST 'control_c192_intel' [17:13, 13:20](1743 MB) +PASS -- TEST 'control_c384_intel' [21:22, 16:55](1985 MB) +PASS -- TEST 'control_c384gdas_intel' [16:40, 10:48](1338 MB) +PASS -- TEST 'control_stochy_intel' [04:37, 01:50](644 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:01, 01:06](470 MB) +PASS -- TEST 'control_lndp_intel' [03:28, 01:43](639 MB) +PASS -- TEST 'control_iovr4_intel' [04:32, 02:45](639 MB) +PASS -- TEST 'control_iovr5_intel' [05:39, 02:43](637 MB) +PASS -- TEST 'control_p8_intel' [07:45, 04:11](1869 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:46, 03:29](1876 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:56, 04:03](1872 MB) +PASS -- TEST 'control_restart_p8_intel' [06:04, 02:20](1087 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:53, 04:04](1854 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:12, 02:17](1124 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:55, 04:09](1845 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:48, 04:58](1927 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:59, 07:20](1868 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:54, 04:55](1935 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:50, 03:30](1887 MB) +PASS -- TEST 'merra2_thompson_intel' [07:16, 03:54](1883 MB) +PASS -- TEST 'regional_control_intel' [08:54, 06:28](1106 MB) +PASS -- TEST 'regional_restart_intel' [05:47, 03:37](1089 MB) +PASS -- TEST 'regional_decomp_intel' [08:52, 06:51](1103 MB) +PASS -- TEST 'regional_2threads_intel' [07:54, 04:46](1050 MB) +PASS -- TEST 'regional_noquilt_intel' [09:57, 06:29](1408 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:02, 06:29](1105 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:57, 06:35](1115 MB) +PASS -- TEST 'regional_wofs_intel' [09:58, 07:58](1892 MB) + +PASS -- COMPILE 'rrfs_intel' [14:12, 12:46] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:19, 08:28](1068 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:25, 05:12](1268 MB) +PASS -- TEST 'rap_decomp_intel' [11:10, 08:45](1021 MB) +PASS -- TEST 'rap_2threads_intel' [12:16, 10:08](1087 MB) +PASS -- TEST 'rap_restart_intel' [07:34, 04:26](1036 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:24, 08:21](1053 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:02, 08:41](1018 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:34, 06:18](1067 MB) +PASS -- TEST 'hrrr_control_intel' [07:58, 04:23](1020 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:52, 04:27](1014 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:51, 05:00](1086 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:56, 02:25](935 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:26, 08:23](1049 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:28, 09:52](1976 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:31, 09:32](2015 MB) + +PASS -- COMPILE 'csawmg_intel' [15:11, 12:22] +PASS -- TEST 'control_csawmg_intel' [09:44, 06:39](1016 MB) +PASS -- TEST 'control_ras_intel' [06:26, 03:33](712 MB) + +PASS -- COMPILE 'wam_intel' [14:11, 12:28] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:47, 12:49](1651 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:11, 12:54] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:24, 03:18](1877 MB) +PASS -- TEST 'regional_control_faster_intel' [08:37, 06:15](1107 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:11, 09:40] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:02, 02:24](1602 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:02, 02:17](1604 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:32, 03:09](815 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:32, 02:47](814 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:52, 04:30](1127 MB) +PASS -- TEST 'control_ras_debug_intel' [04:32, 02:55](820 MB) +PASS -- TEST 'control_diag_debug_intel' [05:09, 02:46](1678 MB) +PASS -- TEST 'control_debug_p8_intel' [05:00, 02:51](1898 MB) +PASS -- TEST 'regional_debug_intel' [19:44, 17:44](1103 MB) +PASS -- TEST 'rap_control_debug_intel' [06:26, 05:08](1201 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:30, 04:52](1194 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:30, 05:00](1195 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:28, 05:01](1197 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:28, 05:09](1197 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:37, 05:19](1280 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 05:05](1201 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:23, 05:02](1199 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:27, 04:55](1198 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:27, 05:01](1200 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:28, 05:07](1200 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:21, 05:46](1203 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:22, 08:07](1196 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 05:01](1203 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:25, 05:05](1194 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:23, 05:03](1200 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:27, 08:31](1204 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:11, 06:08] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:08, 13:05](1677 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:11, 12:13] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:59, 05:01](1142 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:22, 07:14](995 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:45, 03:50](925 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:56, 08:42](991 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:43, 04:27](958 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:22, 03:59](887 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:36, 05:26](973 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [08:46, 02:04](870 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:11, 12:26] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:56, 02:35](1161 MB) +PASS -- TEST 'conus13km_2threads_intel' [07:53, 01:10](1121 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [07:54, 01:28](1062 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:11, 12:52] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:49, 04:35](970 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:12, 06:08] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 05:00](1076 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:26, 04:51](1080 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_qr_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_2threads_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_radar_tten_debug_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:10, 06:15] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:25, 05:02](1132 MB) + +PASS -- COMPILE 'hafsw_intel' [17:11, 15:30] ( 1 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:19, 06:07](737 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:33, 06:37](1129 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:28, 07:39](813 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [32:24, 28:38](977 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [38:28, 34:37](864 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:20, 07:14](499 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:40, 08:37](504 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:58, 03:34](375 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:52, 09:42](477 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:55, 04:48](523 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:00, 04:34](520 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:13, 05:50](566 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:33, 01:36](404 MB) +PASS -- TEST 'gnv1_nested_intel' [11:30, 04:20](1722 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:11, 07:17] ( 1462 warnings 1490 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:01, 13:35](579 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:11, 14:53] ( 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:15, 15:17](635 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:27, 15:30](722 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 14:34] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:42, 11:14](702 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:11, 13:53] ( 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:29, 07:51](805 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:18, 07:46](795 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:57, 16:23](1201 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:19] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 02:58](1151 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:22, 01:54](1092 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:50](1026 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:54](1015 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:54](1022 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:59](1161 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 03:03](1156 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:52](1021 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:09, 06:39](1014 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:09, 06:33](999 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:24, 03:00](1154 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 04:21](2402 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:19, 04:22](2448 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:10, 05:11] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:20, 06:39](1082 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:41] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 03:00](1160 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:19] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:35, 01:13](257 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:29, 01:12](330 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:31, 00:39](327 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [04:10, 01:42] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:31, 00:50](564 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:45, 00:29](446 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:11, 13:29] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:28, 04:23](1967 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:10, 12:46] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:11, 08:45](1979 MB) + +PASS -- COMPILE 'atml_intel' [16:11, 14:18] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:50, 05:05](1859 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:30, 04:59](1862 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:56, 02:48](1069 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:11, 07:30] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:40, 06:03](1892 MB) + +PASS -- COMPILE 'atmw_intel' [15:11, 13:32] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:27, 02:28](1897 MB) + +PASS -- COMPILE 'atmaero_intel' [15:12, 13:13] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:29, 04:49](1967 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:21, 05:30](1762 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:13, 05:31](1759 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:11, 06:32] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [26:57, 21:15](4494 MB) + +PASS -- COMPILE 'atm_fbh_intel' [13:10, 12:09] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:27, 13:46](1112 MB) + +PASS -- COMPILE 'hafsw_intelllvm' [09:12, 07:55] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [10:08, 07:59](571 MB) + +PASS -- COMPILE 'hafsw_debug_intelllvm' [06:11, 04:44] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [24:09, 19:35](560 MB) SYNOPSIS: -Starting Date/Time: 20241219 18:58:05 -Ending Date/Time: 20241219 21:01:38 -Total Time: 02h:04m:29s +Starting Date/Time: 20241223 19:20:13 +Ending Date/Time: 20241223 21:19:39 +Total Time: 02h:00m:06s Compiles Completed: 45/45 -Tests Completed: 190/191 +Tests Completed: 187/191 Failed Tests: -* TEST cpld_2threads_p8_intel: FAILED: TEST TIMED OUT --- LOG: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2703896/cpld_2threads_p8_intel/err +* TEST conus13km_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /work/noaa/epic/jongkim/UFS-RT/orion/rt-2485/tests/logs/log_orion/run_conus13km_debug_intel.log +* TEST conus13km_debug_qr_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /work/noaa/epic/jongkim/UFS-RT/orion/rt-2485/tests/logs/log_orion/run_conus13km_debug_qr_intel.log +* TEST conus13km_debug_2threads_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /work/noaa/epic/jongkim/UFS-RT/orion/rt-2485/tests/logs/log_orion/run_conus13km_debug_2threads_intel.log +* TEST conus13km_radar_tten_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /work/noaa/epic/jongkim/UFS-RT/orion/rt-2485/tests/logs/log_orion/run_conus13km_radar_tten_debug_intel.log NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -347,20 +353,20 @@ Result: FAILURE ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -527939eb224c50a4d9f66a6099cc2b8b03baf6c8 +ad560f4d81e3fe50c21b316a5207b2fbbd8a4e2b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - c7ea491e6fd99e459af977bfd57fa14aa6a349eb CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-12-16) + 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) + adbb06556f9b9123d24248e4505cd3dedee1d01a FV3 (remotes/origin/rrfsv1-to-ufs/dev5) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) + 2594a9e2c73c2a3a9acaa78fef8252cf5de3b524 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5530-g2594a9e2) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -384,23 +390,33 @@ 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-20241212 -COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2621320 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241223 +COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_1356111 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_intel' [19:11, 16:55] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [32:27, 29:14](2138 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [23:25, 21:00](2336 MB) +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 07:31] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [37:12, 34:37](1962 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:10, 12:44] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:48, 02:37](1166 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:36, 01:16](1115 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:38, 01:31](1065 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:10, 06:45] ( 785 warnings 8 remarks ) +PASS -- TEST 'conus13km_debug_intel' [16:51, 14:18](1233 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:51, 14:18](934 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [15:47, 13:41](1165 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:48, 13:57](1300 MB) SYNOPSIS: -Starting Date/Time: 20241222 09:05:24 -Ending Date/Time: 20241222 09:58:24 -Total Time: 00h:53m:19s -Compiles Completed: 1/1 -Tests Completed: 2/2 +Starting Date/Time: 20241224 08:53:03 +Ending Date/Time: 20241224 09:40:54 +Total Time: 00h:48m:12s +Compiles Completed: 3/3 +Tests Completed: 8/8 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 9e6ebe0179..fe342b77b9 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,20 +1,20 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -572eba512daea70468af6d74c0134781118e9f0a +c77a0687d9a5ab0824c214110da808ae53a01af0 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - c7ea491e6fd99e459af977bfd57fa14aa6a349eb CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-12-16) + 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) + adbb06556f9b9123d24248e4505cd3dedee1d01a FV3 (remotes/origin/rrfsv1-to-ufs/dev5) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) + 2594a9e2c73c2a3a9acaa78fef8252cf5de3b524 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5530-g2594a9e2) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -38,311 +38,242 @@ 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-20241212 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3378192 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241223 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_262624 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:28, 11:32] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:25, 11:06](3194 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:28, 11:44] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:16, 15:59](1907 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:37, 16:52](1947 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [14:21, 07:50](1092 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:19, 18:27](1885 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:28, 11:53] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [21:15, 15:33](1908 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:18] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [33:36, 28:24](1950 MB) - -PASS -- COMPILE 's2swa_intel' [23:39, 21:15] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [18:02, 14:31](3228 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:21, 14:15](3225 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:16, 07:46](3153 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [17:56, 14:19](3244 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [11:22, 07:57](3170 MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_2threads_p8_intel' [, ]( MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:56, 13:55](3222 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [15:11, 11:25](3165 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:21, 14:32](3227 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [28:57, 19:59](4234 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:24, 12:48](4377 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:02, 08:12](3199 MB) - -PASS -- COMPILE 's2sw_intel' [24:39, 22:37] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [11:43, 07:53](1921 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:13, 12:24](1981 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [14:28, 11:40] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:58, 04:57](1969 MB) - -PASS -- COMPILE 's2s_intel' [24:39, 22:14] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:42, 06:12](2883 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:38, 02:09](2891 MB) -PASS -- TEST 'cpld_restart_c48_intel' [06:13, 01:29](2308 MB) - -PASS -- COMPILE 's2swa_faster_intel' [28:44, 26:12] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [22:35, 14:08](3231 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [25:41, 23:26] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [29:05, 25:53](1921 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:19, 13:09](1113 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:15, 30:37](1900 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:32, 14:33] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:11, 30:23](1971 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [30:50, 27:50] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:41, 03:58](663 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:56, 03:24](1561 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:00, 03:33](1563 MB) -PASS -- TEST 'control_latlon_intel' [05:56, 03:15](1565 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:06, 03:13](1564 MB) -PASS -- TEST 'control_c48_intel' [13:26, 10:37](1586 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:08, 05:57](707 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [13:22, 10:28](1584 MB) -PASS -- TEST 'control_c192_intel' [14:23, 11:40](1686 MB) -PASS -- TEST 'control_c384_intel' [17:50, 14:05](1984 MB) -PASS -- TEST 'control_c384gdas_intel' [16:36, 09:12](1164 MB) -PASS -- TEST 'control_stochy_intel' [04:31, 01:57](618 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:35, 01:17](424 MB) -PASS -- TEST 'control_lndp_intel' [03:29, 01:50](616 MB) -PASS -- TEST 'control_iovr4_intel' [04:33, 02:44](613 MB) -PASS -- TEST 'control_iovr5_intel' [06:43, 02:46](619 MB) -PASS -- TEST 'control_p8_intel' [08:17, 03:50](1853 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:38, 03:11](1858 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [08:31, 03:43](1864 MB) -PASS -- TEST 'control_restart_p8_intel' [06:38, 02:23](1012 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:01, 03:45](1848 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:02, 02:09](1019 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:50, 03:44](1857 MB) -PASS -- TEST 'control_2threads_p8_intel' [11:31, 07:52](1935 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:01, 06:25](1854 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:30, 04:20](1907 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:17, 03:26](1870 MB) -PASS -- TEST 'merra2_thompson_intel' [07:55, 03:45](1858 MB) -PASS -- TEST 'regional_control_intel' [07:56, 05:21](894 MB) -PASS -- TEST 'regional_restart_intel' [05:53, 03:08](867 MB) -PASS -- TEST 'regional_decomp_intel' [07:53, 05:35](885 MB) -PASS -- TEST 'regional_2threads_intel' [09:56, 07:43](1017 MB) -PASS -- TEST 'regional_noquilt_intel' [07:52, 05:20](1221 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:59, 05:16](899 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:55, 05:11](893 MB) -PASS -- TEST 'regional_wofs_intel' [09:51, 06:56](1582 MB) - -PASS -- COMPILE 'rrfs_intel' [21:39, 17:46] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [11:37, 07:28](1000 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:18, 04:38](1156 MB) -PASS -- TEST 'rap_decomp_intel' [11:37, 07:41](1007 MB) -PASS -- TEST 'rap_2threads_intel' [20:44, 16:10](1080 MB) -PASS -- TEST 'rap_restart_intel' [08:06, 04:01](882 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:24, 07:21](1003 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:24, 07:39](997 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:35, 05:32](885 MB) -PASS -- TEST 'hrrr_control_intel' [08:22, 03:54](996 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:22, 04:03](996 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [11:50, 08:06](1068 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:35, 02:11](831 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:27, 07:10](997 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:40, 09:33](1955 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:40, 09:18](1947 MB) - -PASS -- COMPILE 'csawmg_intel' [18:33, 15:04] -PASS -- TEST 'control_csawmg_intel' [09:55, 06:58](955 MB) -PASS -- TEST 'control_ras_intel' [06:33, 03:35](653 MB) - -PASS -- COMPILE 'wam_intel' [31:50, 28:39] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:14, 11:56](1642 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:29, 10:55] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:24, 03:13](1849 MB) -PASS -- TEST 'regional_control_faster_intel' [08:56, 05:08](889 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [12:26, 10:22] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:57, 02:49](1607 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:08, 02:46](1608 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:34, 03:43](799 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:35, 03:20](802 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:02, 05:04](1108 MB) -PASS -- TEST 'control_ras_debug_intel' [05:32, 03:14](809 MB) -PASS -- TEST 'control_diag_debug_intel' [06:02, 03:16](1661 MB) -PASS -- TEST 'control_debug_p8_intel' [06:51, 03:12](1897 MB) -PASS -- TEST 'regional_debug_intel' [22:20, 18:35](927 MB) -PASS -- TEST 'rap_control_debug_intel' [08:39, 05:40](1188 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:42, 05:32](1185 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:39, 05:39](1186 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [09:38, 05:47](1186 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:40, 05:47](1190 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:46, 06:11](1269 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:36, 05:55](1190 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:35, 05:59](1188 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:38, 05:39](1189 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:35, 05:39](1189 MB) -PASS -- TEST 'rap_noah_debug_intel' [08:34, 05:41](1182 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:38, 05:48](1187 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:42, 08:57](1183 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:36, 05:43](1180 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:40, 06:02](1191 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:36, 05:42](1188 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:48, 09:46](1186 MB) - -PASS -- COMPILE 'wam_debug_intel' [13:27, 11:56] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [17:20, 14:21](1683 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [21:36, 19:34] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:24, 04:24](1031 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:24, 06:05](880 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:50, 03:26](878 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [17:22, 13:53](933 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [12:27, 07:14](927 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:49, 03:30](871 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:35, 04:43](791 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:45, 01:56](761 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:29, 12:04] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:12, 02:24](1079 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:02, 02:12](1062 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:01, 01:35](958 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:27, 09:36] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:04, 04:18](898 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:24, 07:27] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:33, 05:22](1063 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:34, 05:27](1064 MB) -PASS -- TEST 'conus13km_debug_intel' [18:18, 15:03](1152 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:13, 14:52](840 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [25:18, 23:13](1129 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:09, 14:52](1218 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:22, 07:50] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:33, 05:32](1087 MB) - -PASS -- COMPILE 'hafsw_intel' [13:27, 11:56] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:41, 06:12](684 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:42, 07:24](1053 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:01, 07:36](742 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:47, 13:00](768 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:07, 14:11](787 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:10, 05:57](464 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:46, 07:25](504 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:17, 03:15](386 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:59, 08:41](439 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:08, 04:21](497 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:07, 03:59](499 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:16, 04:55](561 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:37, 02:06](409 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:25, 08:16] ( 1444 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:29, 14:26](609 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:32, 16:07] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:25, 08:16](614 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:31, 08:17](786 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:29, 10:27] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:41, 06:47](786 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:30, 11:39] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:45, 07:19](731 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:42, 07:09](772 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:39, 16:05](891 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:37, 10:40] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:43, 03:56](1913 MB) - -PASS -- COMPILE 'atml_intel' [18:34, 15:55] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [09:33, 07:19] ( 866 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [15:31, 13:59] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [10:09, 04:42](3120 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:05, 05:22](2997 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:51, 05:10](3005 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [13:28, 11:18] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [26:54, 22:30](4482 MB) +PASS -- COMPILE 's2swa_32bit_intel' [25:39, 22:27] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [22:33, 11:19](3192 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:29, 12:10] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:29, 16:08](1908 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:54, 16:54](1947 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [19:43, 08:02](1073 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:27, 18:41](1887 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [15:30, 11:50] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [20:18, 15:37](1909 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [30:45, 27:21] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [42:44, 28:23](1951 MB) + +PASS -- COMPILE 's2swa_intel' [48:04, 45:05] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [29:56, 14:47](3226 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [28:46, 14:33](3226 MB) +PASS -- TEST 'cpld_restart_p8_intel' [16:37, 08:01](3154 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [28:25, 14:43](3246 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [15:07, 08:02](3171 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [42:17, 30:24](3446 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [28:00, 14:21](3222 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [27:00, 11:51](3166 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [31:41, 14:32](3229 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [41:56, 20:00](4234 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [36:48, 12:40](4373 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [24:31, 08:26](3200 MB) + +PASS -- COMPILE 's2sw_intel' [14:29, 10:59] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:43, 07:50](1921 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:14, 12:27](1981 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:27, 10:31] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:18, 05:17](1970 MB) + +PASS -- COMPILE 's2s_intel' [14:28, 10:53] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:38, 06:13](2885 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:35, 02:23](2890 MB) +PASS -- TEST 'cpld_restart_c48_intel' [06:17, 01:42](2307 MB) + +PASS -- COMPILE 's2swa_faster_intel' [41:57, 38:08] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [31:40, 14:23](3230 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [25:39, 22:23] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [36:14, 26:04](1919 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [29:31, 13:16](1108 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [45:29, 30:43](1899 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:30, 13:46] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:15, 30:25](1972 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [24:39, 22:31] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [17:56, 04:11](663 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [19:26, 03:22](1563 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [19:34, 03:22](1563 MB) +PASS -- TEST 'control_latlon_intel' [18:17, 03:20](1565 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [19:35, 03:28](1565 MB) +PASS -- TEST 'control_c48_intel' [18:52, 10:33](1584 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [14:11, 05:58](707 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [18:53, 10:32](1591 MB) +PASS -- TEST 'control_c192_intel' [27:52, 11:43](1685 MB) +PASS -- TEST 'control_c384_intel' [12:59, 14:12](1973 MB) +PASS -- TEST 'control_c384gdas_intel' [21:55, 09:19](1166 MB) +PASS -- TEST 'control_stochy_intel' [12:47, 02:00](617 MB) +PASS -- TEST 'control_stochy_restart_intel' [16:52, 01:22](424 MB) +PASS -- TEST 'control_lndp_intel' [14:50, 01:47](617 MB) +PASS -- TEST 'control_iovr4_intel' [14:52, 02:53](614 MB) +PASS -- TEST 'control_iovr5_intel' [15:51, 02:41](613 MB) +PASS -- TEST 'control_p8_intel' [20:14, 03:47](1852 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [20:01, 03:24](1858 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [20:02, 03:58](1863 MB) +PASS -- TEST 'control_restart_p8_intel' [18:07, 02:24](996 MB) +PASS -- TEST 'control_noqr_p8_intel' [20:14, 03:56](1858 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [19:19, 02:31](1023 MB) +PASS -- TEST 'control_decomp_p8_intel' [19:58, 03:57](1857 MB) +PASS -- TEST 'control_2threads_p8_intel' [24:58, 07:59](1934 MB) +PASS -- TEST 'control_p8_lndp_intel' [22:30, 06:44](1853 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [21:58, 04:31](1913 MB) +PASS -- TEST 'control_p8_mynn_intel' [19:53, 03:26](1860 MB) +PASS -- TEST 'merra2_thompson_intel' [21:20, 03:41](1859 MB) +PASS -- TEST 'regional_control_intel' [19:08, 05:31](892 MB) +PASS -- TEST 'regional_restart_intel' [10:06, 03:32](877 MB) +PASS -- TEST 'regional_decomp_intel' [19:06, 05:45](894 MB) +PASS -- TEST 'regional_2threads_intel' [23:13, 07:54](1016 MB) +PASS -- TEST 'regional_noquilt_intel' [18:04, 05:15](1219 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [18:15, 05:33](896 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [18:07, 05:28](893 MB) +PASS -- TEST 'regional_wofs_intel' [21:15, 07:06](1585 MB) + +PASS -- COMPILE 'rrfs_intel' [27:46, 25:51] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [22:49, 07:34](1001 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [18:32, 04:38](1157 MB) +PASS -- TEST 'rap_decomp_intel' [20:49, 07:44](1003 MB) +PASS -- TEST 'rap_2threads_intel' [26:58, 16:12](1080 MB) +PASS -- TEST 'rap_restart_intel' [10:38, 03:56](881 MB) +PASS -- TEST 'rap_sfcdiff_intel' [17:20, 07:13](1003 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:55, 07:37](997 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [12:43, 05:30](885 MB) +PASS -- TEST 'hrrr_control_intel' [12:28, 04:04](997 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [12:21, 04:05](995 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [16:27, 08:11](1069 MB) +PASS -- TEST 'hrrr_control_restart_intel' [07:40, 02:09](830 MB) +PASS -- TEST 'rrfs_v1beta_intel' [16:36, 07:30](995 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [16:51, 09:41](1955 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [15:48, 09:21](1947 MB) + +PASS -- COMPILE 'csawmg_intel' [32:50, 31:26] +PASS -- TEST 'control_csawmg_intel' [12:58, 07:05](956 MB) +PASS -- TEST 'control_ras_intel' [08:35, 03:40](653 MB) + +PASS -- COMPILE 'wam_intel' [27:45, 26:07] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [18:16, 12:09](1642 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [19:37, 14:31] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [11:37, 03:12](1859 MB) +PASS -- TEST 'regional_control_faster_intel' [11:00, 05:18](893 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [14:30, 09:03] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:05, 02:48](1600 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:10, 02:43](1607 MB) +PASS -- TEST 'control_stochy_debug_intel' [08:39, 03:31](800 MB) +PASS -- TEST 'control_lndp_debug_intel' [09:38, 03:14](803 MB) +PASS -- TEST 'control_csawmg_debug_intel' [12:00, 05:14](1108 MB) +PASS -- TEST 'control_ras_debug_intel' [09:40, 03:27](809 MB) +PASS -- TEST 'control_diag_debug_intel' [09:09, 03:19](1661 MB) +PASS -- TEST 'control_debug_p8_intel' [09:00, 03:22](1891 MB) +PASS -- TEST 'regional_debug_intel' [24:15, 18:33](918 MB) +PASS -- TEST 'rap_control_debug_intel' [10:42, 05:54](1188 MB) +PASS -- TEST 'hrrr_control_debug_intel' [12:48, 05:43](1182 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [12:45, 05:44](1183 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [12:44, 05:42](1186 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [12:41, 05:43](1188 MB) +PASS -- TEST 'rap_diag_debug_intel' [12:51, 05:48](1272 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [13:41, 05:52](1186 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [12:45, 05:55](1191 MB) +PASS -- TEST 'rap_lndp_debug_intel' [12:40, 05:42](1189 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [12:41, 05:42](1191 MB) +PASS -- TEST 'rap_noah_debug_intel' [12:41, 05:37](1181 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [12:42, 05:49](1187 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [15:43, 08:57](1183 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [12:39, 05:39](1185 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [13:44, 05:36](1189 MB) +PASS -- TEST 'rap_flake_debug_intel' [12:41, 05:36](1191 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [18:53, 09:33](1186 MB) + +PASS -- COMPILE 'wam_debug_intel' [18:33, 09:30] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [21:21, 14:09](1685 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [18:36, 10:38] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [12:28, 04:27](1028 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [14:28, 06:13](878 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [13:30, 03:23](878 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [22:41, 13:51](924 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:57, 07:07](924 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [11:43, 03:41](871 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [21:26, 04:42](790 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [15:50, 01:59](764 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:31, 08:07] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [11:23, 02:25](1080 MB) +PASS -- TEST 'conus13km_2threads_intel' [22:23, 02:03](1059 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [16:09, 01:40](958 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:31, 09:16] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [13:08, 04:16](902 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [16:30, 04:32] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [12:40, 05:25](1069 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [13:43, 05:36](1062 MB) +PASS -- TEST 'conus13km_debug_intel' [23:24, 14:59](1151 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [31:49, 15:06](825 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [42:52, 23:13](1147 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [31:34, 14:58](1226 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [16:31, 04:25] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [21:55, 05:33](1085 MB) + +PASS -- COMPILE 'hafsw_intel' [21:39, 09:52] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [38:17, 06:41](686 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [49:38, 07:58](1054 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [27:22, 07:59](740 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [32:09, 13:06](771 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [36:30, 14:45](788 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [25:34, 06:03](464 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [28:12, 07:39](482 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [27:47, 03:27](385 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [29:29, 08:45](453 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [24:29, 04:22](499 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [24:32, 04:11](498 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [41:57, 05:22](564 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [24:00, 01:52](407 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [16:34, 04:54] ( 1444 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [58:13, 14:49](610 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [23:42, 09:43] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [51:12, 08:41](610 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [00:26, 08:44](781 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [23:38, 09:54] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [19:19, 06:44](785 MB) + +PASS -- COMPILE 'hafs_all_intel' [22:42, 09:17] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [24:08, 07:34](737 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [23:04, 07:38](716 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [30:55, 16:07](894 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [22:45, 10:06] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [18:04, 04:03](1913 MB) + +PASS -- COMPILE 'atml_intel' [22:38, 11:57] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [18:35, 08:49] ( 866 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [21:36, 08:34] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [19:25, 04:40](3117 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [19:19, 05:11](2997 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [18:03, 05:26](3006 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [17:32, 04:19] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [34:59, 23:11](4500 MB) SYNOPSIS: -Starting Date/Time: 20241223 13:30:59 -Ending Date/Time: 20241223 15:19:42 -Total Time: 01h:49m:35s +Starting Date/Time: 20241224 15:03:47 +Ending Date/Time: 20241224 22:21:23 +Total Time: 07h:18m:24s Compiles Completed: 33/33 -Tests Completed: 156/157 -Failed Tests: -* TEST cpld_2threads_p8_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/NickSzapiro-NOAA/ufs-weather-model/tests/logs/log_wcoss2/run_cpld_2threads_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 WCOSS2 REGRESSION TESTING LOG==== -====START OF WCOSS2 REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -1da0371b3c5d95ff94145c79eb881788618a5f6e - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - c7ea491e6fd99e459af977bfd57fa14aa6a349eb CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-12-16) - ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) - 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) - 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) - 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) --179cae1dd84401cf25d250bd9102e66560a9d328 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) - 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) - 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: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241212 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2149886 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: GFS-DEV -* (-b) - NEW BASELINES FROM FILE: test_changes.list -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_intel' [13:27, 11:43] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_2threads_p8_intel' [38:55, 30:24](3449 MB) - -SYNOPSIS: -Starting Date/Time: 20241223 17:26:17 -Ending Date/Time: 20241223 18:19:55 -Total Time: 00h:54m:06s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 157/157 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/test_changes.list b/tests/test_changes.list index e69de29bb2..d8008eff46 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -0,0 +1,14 @@ +conus13km_control intel +conus13km_2threads intel +conus13km_restart_mismatch intel +conus13km_debug intel +conus13km_debug_qr intel +conus13km_debug_2threads intel +conus13km_radar_tten_debug intel +conus13km_control gnu +conus13km_2threads gnu +conus13km_restart_mismatch gnu +conus13km_debug gnu +conus13km_debug_qr gnu +conus13km_debug_2threads gnu +conus13km_radar_tten_debug gnu diff --git a/tests/tests/cpld_debug_pdlib_p8 b/tests/tests/cpld_debug_pdlib_p8 index 3b19519391..685c8d4b57 100644 --- a/tests/tests/cpld_debug_pdlib_p8 +++ b/tests/tests/cpld_debug_pdlib_p8 @@ -109,7 +109,7 @@ fi if [[ $MACHINE_ID = orion ]]; then WLCLK=50 fi -if [[ $MACHINE_ID = gaeac5 ]] && [[ $RT_COMPILER = intelllvm ]]; then +if [[ $MACHINE_ID = gaeac5 ]]; then WLCLK=50 fi if [[ $MACHINE_ID = gaeac6 ]] && [[ $RT_COMPILER = intelllvm ]]; then diff --git a/tests/tests/rap_2threads b/tests/tests/rap_2threads index 5bb2dc4e74..0d0f72bb52 100644 --- a/tests/tests/rap_2threads +++ b/tests/tests/rap_2threads @@ -66,4 +66,6 @@ ESMF_THREADING=false THRD=$atm_omp_num_threads if [[ $MACHINE_ID = hercules ]] && [[ $RT_COMPILER = gnu ]]; then ESMF_THREADING=true + WLCLK=50 + TPN=28 fi From 76471dc6b7bfc3342416d1a3402f360724f7c0fa Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Fri, 3 Jan 2025 11:43:05 -0500 Subject: [PATCH 21/24] Seventh reconciliation PR from production/RRFS.v1 (#2530) * UFSWM - to compile the model with new fms/2024.01; Update the RUC LSM deep soil temperature from climatology to real forecast * FV3 - to compile the model with new fms/2024.01; Update the RUC LSM deep soil temperature from climatology to real forecast * ccpp-physics - Update the RUC LSM deep soil temperature from climatology to real forecast --- .github/pull_request_template.md | 5 +- FV3 | 2 +- tests/bl_date.conf | 2 +- tests/logs/OpnReqTests_control_p8_hera.log | 386 +-------- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 30 +- tests/logs/RegressionTests_derecho.log | 554 ++++++------ tests/logs/RegressionTests_gaeac5.log | 754 +++++++--------- tests/logs/RegressionTests_gaeac6.log | 534 ++++++------ tests/logs/RegressionTests_hera.log | 799 ++++++++--------- tests/logs/RegressionTests_hercules.log | 814 ++++++++++-------- tests/logs/RegressionTests_jet.log | 590 ++++++------- tests/logs/RegressionTests_orion.log | 663 +++++++------- tests/logs/RegressionTests_wcoss2.log | 460 +++++----- tests/test_changes.list | 72 ++ 15 files changed, 2526 insertions(+), 3163 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index b154eda796..1c2f4ee990 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -146,10 +146,11 @@ Please delete what is not needed. - [ ] Orion - [ ] Hercules - [ ] Jet - - [ ] Gaea + - [ ] GaeaC5 + - [ ] GaeaC6 - [ ] Derecho - WCOSS2 - [ ] Dogwood/Cactus - [ ] Acorn - [ ] CI -- [ ] opnReqTest (complete task if unnecessary) \ No newline at end of file +- [ ] opnReqTest (complete task if unnecessary) diff --git a/FV3 b/FV3 index a7d46eee01..0834c7b574 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit a7d46eee01a78f0915373ebc58c9b20ba14a6c36 +Subproject commit 0834c7b574de72bf04021bd98762ee954f156233 diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 00508ddb57..5283e4c483 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20241223 +export BL_DATE=20241230 diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 4fd215fb50..005fdb443e 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,387 +1,3 @@ -Mon Oct 21 19:48:59 UTC 2024 +Thu Jan 2 18:23:19 UTC 2025 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_1401223/bit_base_bit_base -Checking test bit_base results .... -Moving baseline bit_base files .... - Moving sfcf000.nc .........OK - Moving sfcf021.nc .........OK - Moving sfcf024.nc .........OK - Moving atmf000.nc .........OK - Moving atmf021.nc .........OK - Moving atmf024.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF21 .........OK - Moving GFSFLX.GrbF24 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF21 .........OK - Moving GFSPRS.GrbF24 .........OK - Moving RESTART/20210323.060000.coupler.res .........OK - Moving RESTART/20210323.060000.fv_core.res.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK - 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 = 306.702972 - 0: The maximum resident set size (KB) = 1441656 - -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_1401223/dbg_base_dbg_base -Checking test dbg_base results .... -Moving baseline dbg_base files .... - Moving sfcf000.nc .........OK - Moving sfcf021.nc .........OK - Moving sfcf024.nc .........OK - Moving atmf000.nc .........OK - Moving atmf021.nc .........OK - Moving atmf024.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF21 .........OK - Moving GFSFLX.GrbF24 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF21 .........OK - Moving GFSPRS.GrbF24 .........OK - Moving RESTART/20210323.060000.coupler.res .........OK - Moving RESTART/20210323.060000.fv_core.res.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK - 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 = 946.656819 - 0: The maximum resident set size (KB) = 1405800 - -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_1401223/dcp_dcp -Checking test dcp results .... - Comparing sfcf000.nc .....USING NCCMP......OK - Comparing sfcf021.nc .....USING NCCMP......OK - Comparing sfcf024.nc .....USING NCCMP......OK - Comparing atmf000.nc .....USING NCCMP......OK - Comparing atmf021.nc .....USING NCCMP......OK - Comparing atmf024.nc .....USING NCCMP......OK - Comparing GFSFLX.GrbF00 .....USING CMP......OK - Comparing GFSFLX.GrbF21 .....USING CMP......OK - Comparing GFSFLX.GrbF24 .....USING CMP......OK - Comparing GFSPRS.GrbF00 .....USING CMP......OK - Comparing GFSPRS.GrbF21 .....USING CMP......OK - Comparing GFSPRS.GrbF24 .....USING CMP......OK - Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK - Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK - 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 = 278.080934 - 0: The maximum resident set size (KB) = 1417788 - -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_1401223/mpi_mpi -Checking test mpi results .... - Comparing sfcf000.nc .....USING NCCMP......OK - Comparing sfcf021.nc .....USING NCCMP......OK - Comparing sfcf024.nc .....USING NCCMP......OK - Comparing atmf000.nc .....USING NCCMP......OK - Comparing atmf021.nc .....USING NCCMP......OK - Comparing atmf024.nc .....USING NCCMP......OK - Comparing GFSFLX.GrbF00 .....USING CMP......OK - Comparing GFSFLX.GrbF21 .....USING CMP......OK - Comparing GFSFLX.GrbF24 .....USING CMP......OK - Comparing GFSPRS.GrbF00 .....USING CMP......OK - Comparing GFSPRS.GrbF21 .....USING CMP......OK - Comparing GFSPRS.GrbF24 .....USING CMP......OK - Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK - Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK - 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 = 279.382382 - 0: The maximum resident set size (KB) = 1419056 - -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_1401223/rst_rst -Checking test rst results .... - Comparing sfcf000.nc .....USING NCCMP......OK - Comparing sfcf021.nc .....USING NCCMP......OK - Comparing sfcf024.nc .....USING NCCMP......OK - Comparing atmf000.nc .....USING NCCMP......OK - Comparing atmf021.nc .....USING NCCMP......OK - Comparing atmf024.nc .....USING NCCMP......OK - Comparing GFSFLX.GrbF00 .....USING CMP......OK - Comparing GFSFLX.GrbF21 .....USING CMP......OK - Comparing GFSFLX.GrbF24 .....USING CMP......OK - Comparing GFSPRS.GrbF00 .....USING CMP......OK - Comparing GFSPRS.GrbF21 .....USING CMP......OK - Comparing GFSPRS.GrbF24 .....USING CMP......OK - Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK - Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK - 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.205034 - 0: The maximum resident set size (KB) = 1430944 - -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_1401223/std_base_std_base -Checking test std_base results .... -Moving baseline std_base files .... - Moving sfcf000.nc .........OK - Moving sfcf021.nc .........OK - Moving sfcf024.nc .........OK - Moving atmf000.nc .........OK - Moving atmf021.nc .........OK - Moving atmf024.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF21 .........OK - Moving GFSFLX.GrbF24 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF21 .........OK - Moving GFSPRS.GrbF24 .........OK - Moving RESTART/20210323.060000.coupler.res .........OK - Moving RESTART/20210323.060000.fv_core.res.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK - 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 = 279.070769 - 0: The maximum resident set size (KB) = 1403488 - -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_1401223/thr_thr -Checking test thr results .... - Comparing sfcf000.nc .....USING NCCMP......OK - Comparing sfcf021.nc .....USING NCCMP......OK - Comparing sfcf024.nc .....USING NCCMP......OK - Comparing atmf000.nc .....USING NCCMP......OK - Comparing atmf021.nc .....USING NCCMP......OK - Comparing atmf024.nc .....USING NCCMP......OK - Comparing GFSFLX.GrbF00 .....USING CMP......OK - Comparing GFSFLX.GrbF21 .....USING CMP......OK - Comparing GFSFLX.GrbF24 .....USING CMP......OK - Comparing GFSPRS.GrbF00 .....USING CMP......OK - Comparing GFSPRS.GrbF21 .....USING CMP......OK - Comparing GFSPRS.GrbF24 .....USING CMP......OK - Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK - Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK - 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 = 327.912024 - 0: The maximum resident set size (KB) = 1419068 - -Test thr PASS - -OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Oct 21 21:03:27 UTC 2024 -Elapsed time: 01h:14m:28s. 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 df058cd5d3..673fa37789 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 @@ -Mon Oct 21 18:13:22 UTC 2024 +Thu Jan 2 15:59:37 UTC 2025 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_311611/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3410713/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 = 2424.448685 - 0: The maximum resident set size (KB) = 1511852 + 0: The total amount of wall time = 4360.076088 + 0: The maximum resident set size (KB) = 1511064 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_311611/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3410713/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 = 798.111971 - 0: The maximum resident set size (KB) = 1504600 + 0: The total amount of wall time = 1183.026821 + 0: The maximum resident set size (KB) = 1506460 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_311611/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3410713/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 = 784.776830 - 0: The maximum resident set size (KB) = 1507688 + 0: The total amount of wall time = 1173.931430 + 0: The maximum resident set size (KB) = 1513996 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Oct 21 19:48:58 UTC 2024 -Elapsed time: 01h:35m:37s. Have a nice day! +Thu Jan 2 18:23:19 UTC 2025 +Elapsed time: 02h:23m:44s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index de7d11ca0e..e68feebc0b 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Mon Oct 21 15:35:17 UTC 2024 +Thu Jan 2 13:26:04 UTC 2025 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_3613607/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2096974/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 = 1387.422370 - 0: The maximum resident set size (KB) = 763032 + 0: The total amount of wall time = 1413.721963 + 0: The maximum resident set size (KB) = 780968 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_3613607/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2096974/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 = 2284.264268 - 0: The maximum resident set size (KB) = 710292 + 0: The total amount of wall time = 2244.753151 + 0: The maximum resident set size (KB) = 733640 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_3613607/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2096974/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 = 2289.920746 - 0: The maximum resident set size (KB) = 719844 + 0: The total amount of wall time = 2206.629881 + 0: The maximum resident set size (KB) = 721784 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_3613607/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2096974/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 = 2287.377209 - 0: The maximum resident set size (KB) = 709840 + 0: The total amount of wall time = 2205.361410 + 0: The maximum resident set size (KB) = 725540 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Oct 21 18:13:21 UTC 2024 -Elapsed time: 02h:38m:05s. Have a nice day! +Thu Jan 2 15:59:35 UTC 2025 +Elapsed time: 02h:33m:31s. Have a nice day! diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 872a8a5fe1..9bde810f02 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,7 +1,7 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -ad560f4d81e3fe50c21b316a5207b2fbbd8a4e2b +7e1e51eae8370dc0c2e21bd6ba6a784f29cf589c Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - adbb06556f9b9123d24248e4505cd3dedee1d01a FV3 (remotes/origin/rrfsv1-to-ufs/dev5) + 74a1c84b0f6e2063f073a5b189a0a3b84f59dbca FV3 (remotes/origin/rrfsv1-to-ufs/dev7) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 2594a9e2c73c2a3a9acaa78fef8252cf5de3b524 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5530-g2594a9e2) + 92f1ad01744cb8309b459d3ecec5a02ab526e043 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5533-g92f1ad01) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -38,287 +38,287 @@ 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: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20241223 -COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_51461 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20241230 +COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_55790 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [24:23, 21:17] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:26, 10:29](3201 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:31, 23:17] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:57, 14:22](1911 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:15, 15:20](1939 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:11, 07:15](1080 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:03, 16:21](1879 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:30, 23:02] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:21, 14:02](1911 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:23, 11:42] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:53, 25:07](1945 MB) - -PASS -- COMPILE 's2swa_intel' [24:30, 21:23] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [18:40, 13:44](3222 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:35, 13:33](3224 MB) -PASS -- TEST 'cpld_restart_p8_intel' [12:35, 07:35](3152 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [18:18, 13:36](3247 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [12:35, 07:33](3175 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [29:21, 24:45](3812 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [18:18, 13:20](3216 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [15:12, 10:33](3532 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:35, 13:41](3231 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:27, 09:01](3820 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:38, 06:43](3617 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [29:34, 16:59](4538 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [27:44, 10:12](4672 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:59, 07:51](3205 MB) - -PASS -- COMPILE 's2sw_intel' [22:27, 19:36] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [11:32, 07:31](1912 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:48, 11:46](1984 MB) - -PASS -- COMPILE 's2swa_debug_intel' [14:23, 11:34] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [24:56, 21:01](3300 MB) - -PASS -- COMPILE 's2sw_debug_intel' [13:21, 11:02] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:32, 09:04](1959 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [18:23, 15:57] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:40, 04:57](1989 MB) - -PASS -- COMPILE 's2s_intel' [19:25, 16:53] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:14, 05:41](2884 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [06:12, 02:05](2892 MB) -PASS -- TEST 'cpld_restart_c48_intel' [05:12, 01:25](2307 MB) - -PASS -- COMPILE 's2swa_faster_intel' [26:21, 23:53] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [18:22, 13:30](3231 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:19, 21:33] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:57, 23:24](1926 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:07, 12:04](1087 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [30:42, 27:23](1892 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:15, 11:05] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:43, 30:08](1957 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [17:18, 14:22] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:40, 03:24](667 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:09, 02:41](1571 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:08, 02:43](1568 MB) -PASS -- TEST 'control_latlon_intel' [06:08, 02:38](1564 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:16, 02:41](1562 MB) -PASS -- TEST 'control_c48_intel' [13:06, 09:14](1588 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:42, 05:15](710 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [13:10, 09:15](1588 MB) -PASS -- TEST 'control_c192_intel' [14:56, 09:58](1694 MB) -PASS -- TEST 'control_c384_intel' [18:21, 11:14](1976 MB) -PASS -- TEST 'control_c384gdas_intel' [16:42, 07:04](1175 MB) -PASS -- TEST 'control_stochy_intel' [04:31, 01:26](625 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:34, 00:51](436 MB) -PASS -- TEST 'control_lndp_intel' [04:34, 01:20](619 MB) -PASS -- TEST 'control_iovr4_intel' [05:37, 02:07](620 MB) -PASS -- TEST 'control_iovr5_intel' [05:34, 02:07](622 MB) -PASS -- TEST 'control_p8_intel' [07:32, 03:29](1862 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:32, 03:15](1857 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:28, 03:32](1852 MB) -PASS -- TEST 'control_restart_p8_intel' [06:24, 02:16](1011 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:28, 03:26](1854 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:23, 02:17](1019 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:27, 03:36](1846 MB) -PASS -- TEST 'control_2threads_p8_intel' [09:29, 06:04](1946 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:14, 05:59](1858 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:35, 03:57](1905 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:24, 03:13](1855 MB) -PASS -- TEST 'merra2_thompson_intel' [07:23, 03:25](1864 MB) -PASS -- TEST 'regional_control_intel' [09:01, 04:48](886 MB) -PASS -- TEST 'regional_restart_intel' [05:57, 02:49](877 MB) -PASS -- TEST 'regional_decomp_intel' [08:53, 05:01](898 MB) -PASS -- TEST 'regional_noquilt_intel' [08:00, 04:43](1214 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:58, 04:46](898 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:56, 04:52](892 MB) -PASS -- TEST 'regional_wofs_intel' [09:02, 05:50](1594 MB) - -PASS -- COMPILE 'rrfs_intel' [15:16, 12:52] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:12, 06:09](1003 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:19, 03:43](1162 MB) -PASS -- TEST 'rap_decomp_intel' [10:12, 06:23](1004 MB) -PASS -- TEST 'rap_2threads_intel' [15:05, 11:31](1089 MB) -PASS -- TEST 'rap_restart_intel' [07:08, 03:11](884 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:11, 06:07](1008 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:11, 06:23](1003 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:15, 04:35](884 MB) -PASS -- TEST 'hrrr_control_intel' [07:05, 03:12](998 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:05, 03:17](998 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [10:09, 05:46](1079 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:44, 01:45](831 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:15, 06:01](994 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:48, 08:07](1958 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:48, 07:54](1945 MB) - -PASS -- COMPILE 'csawmg_intel' [14:16, 11:48] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [09:59, 06:24](959 MB) -PASS -- TEST 'control_ras_intel' [05:28, 02:51](655 MB) - -PASS -- COMPILE 'wam_intel' [14:18, 11:36] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:45, 10:12](1653 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:22, 12:06] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:38, 03:09](1852 MB) -PASS -- TEST 'regional_control_faster_intel' [07:53, 04:40](896 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [17:20, 14:42] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:13, 02:09](1605 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:15, 02:04](1604 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:37, 02:52](806 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:33, 02:34](805 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:59, 04:41](1114 MB) -PASS -- TEST 'control_ras_debug_intel' [05:29, 02:38](813 MB) -PASS -- TEST 'control_diag_debug_intel' [06:19, 02:37](1658 MB) -PASS -- TEST 'control_debug_p8_intel' [06:53, 02:58](1896 MB) -PASS -- TEST 'regional_debug_intel' [20:00, 16:19](913 MB) -PASS -- TEST 'rap_control_debug_intel' [07:39, 04:44](1188 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:34, 04:35](1186 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:34, 04:44](1185 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:38, 04:38](1191 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:36, 04:38](1189 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:07, 04:55](1272 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:41, 04:47](1188 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:48, 04:44](1189 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:32, 04:41](1186 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:30, 04:43](1188 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:43, 04:33](1184 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:32, 04:39](1187 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:38, 07:33](1185 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:34, 04:38](1184 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:31, 04:40](1189 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:35, 04:43](1187 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:59, 08:13](1193 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:14, 07:15] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:11, 12:29](1693 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:19, 11:33] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:56, 03:30](1028 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:13, 05:09](878 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:03, 02:45](876 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [12:55, 09:35](929 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:55, 04:56](925 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:12, 02:53](871 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:00, 03:51](790 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:37, 01:31](772 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:15, 11:31] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:16, 01:46](1076 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:02, 01:16](1081 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:53, 01:04](965 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:14, 11:39] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:49, 03:37](899 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:13, 07:40] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:24, 04:33](1065 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:32, 04:28](1062 MB) -PASS -- TEST 'conus13km_debug_intel' [16:07, 12:36](1147 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:27, 12:56](830 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [17:14, 13:43](1148 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:19, 12:47](1215 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:15, 07:25] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:32, 04:36](1090 MB) - -PASS -- COMPILE 'hafsw_intel' [20:20, 17:47] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:16, 04:30](702 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:51, 05:02](1069 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:37, 06:24](758 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:39, 10:35](775 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:06, 11:45](794 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:23, 04:37](470 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:34, 05:41](484 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:58, 02:15](395 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:33, 06:09](459 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:55, 03:16](506 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:12, 03:01](501 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:13, 03:45](573 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:39, 01:12](430 MB) -PASS -- TEST 'gnv1_nested_intel' [09:09, 03:57](1710 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [11:13, 08:53] ( 1467 warnings 1469 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:11, 12:14](617 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [19:20, 17:24] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:22, 06:52](617 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:26, 06:58](684 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [21:16, 18:48] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:26, 05:19](668 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:20, 15:55] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:34, 05:37](735 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:27, 05:41](719 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:14, 16:12](911 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [11:14, 08:34] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:20, 02:28](767 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:29, 01:31](758 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:21, 02:21](646 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:35, 02:23](645 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:25, 02:23](648 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:33, 02:27](767 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:31, 02:28](769 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:41, 02:21](649 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:34, 05:37](698 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:23, 05:37](677 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:30, 02:27](768 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:25, 03:52](2034 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:22, 03:51](2032 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:18, 05:52] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:25, 05:15](750 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:13, 08:30] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:27, 02:29](768 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:14, 02:41] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:41, 01:06](309 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:43, 01:01](450 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:29, 00:43](451 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:23, 13:34] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:34, 03:42](1910 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:23, 12:50] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:16, 07:53](1898 MB) - -PASS -- COMPILE 'atml_intel' [17:15, 14:42] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:31, 06:03](1889 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:33, 06:28](1877 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:57, 03:33](1032 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:16, 10:45] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:49, 06:16](1925 MB) - -PASS -- COMPILE 'atmw_intel' [17:15, 14:11] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:21, 02:26](1884 MB) - -PASS -- COMPILE 'atmaero_intel' [16:14, 12:58] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:35, 04:16](3129 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:41, 04:16](3008 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:05, 04:22](3013 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [11:16, 08:04] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [26:50, 21:41](4538 MB) - -PASS -- COMPILE 'atm_fbh_intel' [14:13, 11:24] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:43, 08:03](847 MB) +PASS -- COMPILE 's2swa_32bit_intel' [23:20, 21:29] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:24, 10:24](3199 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:21, 23:26] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [17:54, 14:20](1916 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:01, 15:11](1947 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:10, 07:23](1067 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:54, 16:10](1882 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:18, 23:22] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:20, 14:00](1910 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:18, 11:49] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:04, 25:26](1934 MB) + +PASS -- COMPILE 's2swa_intel' [23:20, 21:29] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [18:52, 13:55](3222 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:52, 13:44](3230 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:31, 07:27](3160 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [18:36, 13:48](3247 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:42, 07:29](3176 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [28:24, 24:30](3811 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:23, 13:32](3218 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:24, 10:45](3534 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:39, 13:49](3230 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:19, 09:00](3818 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:19, 06:16](3614 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [30:36, 16:52](4541 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [27:52, 09:55](4668 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:03, 07:45](3206 MB) + +PASS -- COMPILE 's2sw_intel' [21:20, 19:42] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:19, 07:27](1920 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:31, 11:53](1987 MB) + +PASS -- COMPILE 's2swa_debug_intel' [13:13, 11:43] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [26:07, 22:12](3319 MB) + +PASS -- COMPILE 's2sw_debug_intel' [13:17, 11:06] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:37, 09:05](1958 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [18:18, 16:10] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:42, 05:01](1975 MB) + +PASS -- COMPILE 's2s_intel' [18:18, 16:47] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:59, 05:45](2883 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:02, 02:09](2892 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:35, 01:25](2306 MB) + +PASS -- COMPILE 's2swa_faster_intel' [25:22, 23:36] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [18:11, 13:40](3237 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:17, 21:40] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [26:39, 23:29](1924 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:08, 12:07](1103 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [30:31, 27:24](1891 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:15, 11:16] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:42, 27:02](1965 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:16, 14:19] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:29, 03:24](667 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:58, 02:42](1566 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:07, 02:42](1570 MB) +PASS -- TEST 'control_latlon_intel' [05:56, 02:40](1563 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:03, 02:41](1564 MB) +PASS -- TEST 'control_c48_intel' [12:00, 09:15](1589 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:33, 05:17](707 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [12:03, 09:13](1586 MB) +PASS -- TEST 'control_c192_intel' [13:44, 09:56](1694 MB) +PASS -- TEST 'control_c384_intel' [17:39, 11:14](1991 MB) +PASS -- TEST 'control_c384gdas_intel' [15:35, 07:06](1175 MB) +PASS -- TEST 'control_stochy_intel' [03:29, 01:27](626 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:36, 00:52](435 MB) +PASS -- TEST 'control_lndp_intel' [03:28, 01:21](618 MB) +PASS -- TEST 'control_iovr4_intel' [04:28, 02:06](619 MB) +PASS -- TEST 'control_iovr5_intel' [04:30, 02:06](622 MB) +PASS -- TEST 'control_p8_intel' [06:23, 03:34](1860 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:20, 03:13](1854 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:28, 03:39](1857 MB) +PASS -- TEST 'control_restart_p8_intel' [05:11, 02:29](1009 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:22, 03:46](1847 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:11, 02:10](1021 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:15, 03:54](1853 MB) +PASS -- TEST 'control_2threads_p8_intel' [09:16, 05:59](1940 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:00, 05:55](1856 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:18, 03:57](1903 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:16, 03:11](1859 MB) +PASS -- TEST 'merra2_thompson_intel' [06:19, 03:23](1863 MB) +PASS -- TEST 'regional_control_intel' [07:50, 04:52](892 MB) +PASS -- TEST 'regional_restart_intel' [05:48, 02:54](877 MB) +PASS -- TEST 'regional_decomp_intel' [07:47, 05:05](901 MB) +PASS -- TEST 'regional_noquilt_intel' [06:48, 04:44](1216 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:52, 04:48](892 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:56, 04:48](892 MB) +PASS -- TEST 'regional_wofs_intel' [08:49, 05:51](1592 MB) + +PASS -- COMPILE 'rrfs_intel' [15:14, 12:50] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:14, 06:08](1002 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:58, 03:42](1162 MB) +PASS -- TEST 'rap_decomp_intel' [09:14, 06:23](1006 MB) +PASS -- TEST 'rap_2threads_intel' [15:05, 11:24](1086 MB) +PASS -- TEST 'rap_restart_intel' [06:09, 03:15](880 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:16, 06:05](1007 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:16, 06:22](997 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:02, 04:35](882 MB) +PASS -- TEST 'hrrr_control_intel' [05:59, 03:12](1001 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:59, 03:19](998 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [08:04, 05:42](1078 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:39, 01:45](835 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:16, 06:01](999 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:37, 08:10](1958 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:36, 07:56](1945 MB) + +PASS -- COMPILE 'csawmg_intel' [13:15, 11:50] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:44, 06:37](955 MB) +PASS -- TEST 'control_ras_intel' [05:28, 02:52](659 MB) + +PASS -- COMPILE 'wam_intel' [13:15, 11:36] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:51, 10:16](1654 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:16, 12:11] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:12, 03:07](1855 MB) +PASS -- TEST 'regional_control_faster_intel' [06:48, 04:36](892 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:14, 14:37] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:01, 02:09](1605 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:04, 02:07](1601 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:29, 02:52](807 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:30, 02:36](806 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:49, 04:40](1117 MB) +PASS -- TEST 'control_ras_debug_intel' [04:31, 02:38](812 MB) +PASS -- TEST 'control_diag_debug_intel' [05:24, 02:37](1668 MB) +PASS -- TEST 'control_debug_p8_intel' [05:51, 02:51](1896 MB) +PASS -- TEST 'regional_debug_intel' [18:51, 16:27](924 MB) +PASS -- TEST 'rap_control_debug_intel' [06:28, 04:44](1186 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:35, 04:35](1188 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:28, 04:38](1186 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:30, 04:39](1189 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:26, 04:45](1189 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:07, 05:00](1268 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:39, 04:50](1191 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:33, 04:53](1192 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:31, 04:49](1188 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:30, 04:46](1189 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:26, 04:35](1186 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:39, 04:39](1187 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:33, 07:30](1186 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:33, 04:42](1184 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:37, 04:41](1188 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:32, 04:42](1189 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:03, 08:57](1189 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:14, 07:15] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:11, 12:08](1692 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:15, 11:39] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:42, 03:31](1027 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:55, 05:09](878 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:54, 02:46](876 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:59, 09:33](929 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:13, 04:57](937 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:05, 02:53](872 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:55, 03:52](792 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:27, 01:31](769 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:20, 11:25] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:06, 01:47](1076 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:56, 01:17](1086 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:02, 01:05](962 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:19, 11:40] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:56, 03:36](901 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:13, 07:28] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:29, 04:38](1066 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:26, 04:26](1065 MB) +PASS -- TEST 'conus13km_debug_intel' [16:16, 12:40](1148 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:10, 12:43](832 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [17:15, 13:50](1148 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:18, 12:46](1214 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:13, 07:13] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:29, 04:37](1093 MB) + +PASS -- COMPILE 'hafsw_intel' [19:22, 17:51] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:14, 04:31](699 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:50, 05:05](1061 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:36, 06:24](755 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:43, 10:39](784 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:47, 11:43](793 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:12, 04:38](471 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:30, 05:44](484 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:58, 02:16](396 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:52, 06:08](460 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:56, 03:16](506 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:08, 03:03](503 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:18, 03:46](576 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:12](430 MB) +PASS -- TEST 'gnv1_nested_intel' [08:06, 03:59](1698 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:19, 08:48] ( 1467 warnings 1469 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:06, 12:06](622 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:15, 17:24] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:21, 06:53](620 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:17, 06:58](685 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [20:15, 18:51] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:05, 05:25](668 MB) + +PASS -- COMPILE 'hafs_all_intel' [18:15, 16:00] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:29, 05:39](734 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:31, 05:39](725 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:11, 16:11](896 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:13, 08:21] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:29, 02:28](754 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:38, 01:30](756 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:24, 02:21](648 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:35, 02:22](649 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:32, 02:24](645 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:29, 02:28](767 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:33, 02:28](754 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:31, 02:19](643 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:23, 05:43](701 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:24, 05:36](678 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:26, 02:27](768 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:49, 03:52](2034 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:35, 03:52](2033 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:13, 05:57] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:29, 05:15](753 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:15, 08:30] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:26, 02:28](768 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:11, 02:41] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:40, 01:07](309 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:31, 01:02](452 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:43](451 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:14, 13:54] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:39, 03:52](1907 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:20, 12:43] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:22, 08:02](1902 MB) + +PASS -- COMPILE 'atml_intel' [16:14, 14:43] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:38, 06:23](1883 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:42, 06:47](1892 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:51, 03:41](1019 MB) + +PASS -- COMPILE 'atml_debug_intel' [12:13, 10:47] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:42, 06:11](1925 MB) + +PASS -- COMPILE 'atmw_intel' [15:14, 13:37] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:19, 02:07](1878 MB) + +PASS -- COMPILE 'atmaero_intel' [14:20, 12:52] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:25, 04:08](3125 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:20, 04:17](3005 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:07, 04:20](3018 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [10:13, 08:05] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [25:31, 21:38](4541 MB) + +PASS -- COMPILE 'atm_fbh_intel' [13:13, 11:30] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:31, 08:03](846 MB) SYNOPSIS: -Starting Date/Time: 20241223 18:43:57 -Ending Date/Time: 20241223 20:37:33 -Total Time: 01h:54m:40s +Starting Date/Time: 20241231 06:13:20 +Ending Date/Time: 20241231 08:00:57 +Total Time: 01h:48m:41s Compiles Completed: 42/42 Tests Completed: 186/186 diff --git a/tests/logs/RegressionTests_gaeac5.log b/tests/logs/RegressionTests_gaeac5.log index 1c20bec289..87447f496a 100644 --- a/tests/logs/RegressionTests_gaeac5.log +++ b/tests/logs/RegressionTests_gaeac5.log @@ -1,7 +1,7 @@ ====START OF GAEAC5 REGRESSION TESTING LOG==== UFSWM hash used in testing: -ad560f4d81e3fe50c21b316a5207b2fbbd8a4e2b +7e1e51eae8370dc0c2e21bd6ba6a784f29cf589c Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - adbb06556f9b9123d24248e4505cd3dedee1d01a FV3 (remotes/origin/rrfsv1-to-ufs/dev5) + 74a1c84b0f6e2063f073a5b189a0a3b84f59dbca FV3 (remotes/origin/rrfsv1-to-ufs/dev7) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 2594a9e2c73c2a3a9acaa78fef8252cf5de3b524 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5530-g2594a9e2) + 92f1ad01744cb8309b459d3ecec5a02ab526e043 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5533-g92f1ad01) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -38,22 +38,307 @@ 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-20241223 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_1237264 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20241230 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3435161 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:11, 09:28] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:18, 30:49](1943 MB) +PASS -- COMPILE 's2swa_32bit_intel' [21:17, 19:17] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [31:15, 15:24](3187 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:15, 18:09] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:45, 16:09](1895 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [34:19, 17:20](1944 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [25:18, 09:32](1074 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:17, 18:45](1871 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:15, 18:02] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:49, 15:57](1900 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:13, 07:53] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [35:32, 29:38](1922 MB) + +PASS -- COMPILE 's2swa_intel' [26:17, 23:25] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [34:59, 18:03](3210 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [34:59, 15:47](3212 MB) +PASS -- TEST 'cpld_restart_p8_intel' [19:15, 11:11](3137 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [34:00, 15:38](3232 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [19:34, 10:51](3158 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [36:40, 18:00](3441 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [34:59, 17:29](3209 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [34:00, 14:22](3158 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [34:05, 17:38](3216 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [33:14, 12:16](3488 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [19:42, 09:13](3598 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [47:32, 21:17](4271 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [27:09, 14:21](4359 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [25:22, 11:51](3191 MB) + +PASS -- COMPILE 's2sw_intel' [20:15, 19:07] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [19:42, 09:51](1919 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:17, 13:00](1966 MB) + +PASS -- COMPILE 's2swa_debug_intel' [14:14, 12:31] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [30:35, 22:40](3261 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:13, 07:45] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [20:05, 11:15](1940 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:14, 12:41] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [16:55, 07:33](1969 MB) + +PASS -- COMPILE 's2s_intel' [18:15, 16:48] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [12:23, 07:24](2870 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [07:31, 03:44](2884 MB) +PASS -- TEST 'cpld_restart_c48_intel' [13:43, 01:00](2296 MB) + +PASS -- COMPILE 's2swa_faster_intel' [15:20, 14:11] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [34:54, 18:03](3215 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [19:21, 18:02] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [51:20, 26:58](1909 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [32:32, 14:28](1101 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [46:15, 29:45](1896 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:18, 13:18] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [54:50, 32:33](1941 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:14, 11:10] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [15:51, 03:50](654 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [22:46, 05:34](1554 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [22:39, 05:37](1560 MB) +PASS -- TEST 'control_latlon_intel' [20:22, 04:46](1557 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [19:36, 03:49](1556 MB) +PASS -- TEST 'control_c48_intel' [27:48, 11:08](1575 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [24:40, 07:38](693 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [29:25, 11:41](1569 MB) +PASS -- TEST 'control_c192_intel' [29:08, 13:31](1683 MB) +PASS -- TEST 'control_c384_intel' [42:35, 25:48](1967 MB) +PASS -- TEST 'control_c384gdas_intel' [32:34, 15:13](1172 MB) +PASS -- TEST 'control_stochy_intel' [17:37, 02:23](612 MB) +PASS -- TEST 'control_stochy_restart_intel' [05:47, 01:34](419 MB) +PASS -- TEST 'control_lndp_intel' [19:10, 04:32](607 MB) +PASS -- TEST 'control_iovr4_intel' [17:52, 05:17](609 MB) +PASS -- TEST 'control_iovr5_intel' [15:05, 02:48](606 MB) +PASS -- TEST 'control_p8_intel' [18:59, 06:41](1852 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [18:41, 06:04](1845 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [16:02, 06:15](1844 MB) +PASS -- TEST 'control_restart_p8_intel' [06:51, 02:36](1002 MB) +PASS -- TEST 'control_noqr_p8_intel' [15:55, 06:08](1835 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [10:54, 05:18](1012 MB) +PASS -- TEST 'control_decomp_p8_intel' [14:30, 06:41](1844 MB) +PASS -- TEST 'control_2threads_p8_intel' [12:38, 04:13](1922 MB) +PASS -- TEST 'control_p8_lndp_intel' [14:49, 08:42](1847 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [12:24, 06:29](1899 MB) +PASS -- TEST 'control_p8_mynn_intel' [08:54, 03:48](1856 MB) +PASS -- TEST 'merra2_thompson_intel' [08:27, 03:30](1840 MB) +PASS -- TEST 'regional_control_intel' [10:05, 06:46](879 MB) +PASS -- TEST 'regional_restart_intel' [08:30, 04:38](861 MB) +PASS -- TEST 'regional_decomp_intel' [08:07, 04:50](866 MB) +PASS -- TEST 'regional_2threads_intel' [07:55, 04:12](1012 MB) +PASS -- TEST 'regional_noquilt_intel' [10:03, 06:41](1210 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [10:03, 06:41](877 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:44, 06:49](876 MB) +PASS -- TEST 'regional_wofs_intel' [11:42, 08:30](1574 MB) + +PASS -- COMPILE 'rrfs_intel' [12:12, 11:07] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [16:26, 09:12](989 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [11:07, 06:59](1169 MB) +PASS -- TEST 'rap_decomp_intel' [12:22, 07:03](991 MB) +PASS -- TEST 'rap_2threads_intel' [14:38, 08:37](1064 MB) +PASS -- TEST 'rap_restart_intel' [16:02, 05:34](873 MB) +PASS -- TEST 'rap_sfcdiff_intel' [13:51, 07:48](985 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:20, 10:35](986 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [21:58, 07:04](875 MB) +PASS -- TEST 'hrrr_control_intel' [13:31, 06:40](983 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [13:24, 06:24](979 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [13:21, 06:17](1061 MB) +PASS -- TEST 'hrrr_control_restart_intel' [15:39, 04:21](820 MB) +PASS -- TEST 'rrfs_v1beta_intel' [13:25, 07:26](981 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:35, 10:50](1942 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:37, 09:03](1933 MB) + +PASS -- COMPILE 'csawmg_intel' [12:13, 10:42] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [11:23, 08:16](944 MB) +PASS -- TEST 'control_ras_intel' [06:22, 03:56](642 MB) + +PASS -- COMPILE 'wam_intel' [18:16, 17:13] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [18:12, 14:07](1639 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:13, 10:54] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [10:26, 05:10](1840 MB) +PASS -- TEST 'regional_control_faster_intel' [08:01, 04:23](883 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:14, 15:08] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [08:10, 03:16](1580 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:55, 03:13](1586 MB) +PASS -- TEST 'control_stochy_debug_intel' [08:34, 05:39](782 MB) +PASS -- TEST 'control_lndp_debug_intel' [08:34, 05:18](782 MB) +PASS -- TEST 'control_csawmg_debug_intel' [10:52, 06:35](1085 MB) +PASS -- TEST 'control_ras_debug_intel' [07:29, 03:47](786 MB) +PASS -- TEST 'control_diag_debug_intel' [13:58, 05:27](1642 MB) +PASS -- TEST 'control_debug_p8_intel' [12:33, 05:01](1877 MB) +PASS -- TEST 'regional_debug_intel' [26:03, 18:08](900 MB) +PASS -- TEST 'rap_control_debug_intel' [14:40, 07:40](1168 MB) +PASS -- TEST 'hrrr_control_debug_intel' [13:29, 05:50](1158 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [17:25, 07:32](1162 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [19:37, 05:42](1159 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [21:37, 07:29](1162 MB) +PASS -- TEST 'rap_diag_debug_intel' [21:45, 07:26](1247 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [19:30, 05:08](1163 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [21:22, 07:41](1164 MB) +PASS -- TEST 'rap_lndp_debug_intel' [19:23, 05:41](1168 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [22:23, 07:34](1164 MB) +PASS -- TEST 'rap_noah_debug_intel' [23:21, 07:45](1162 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [24:22, 07:36](1160 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [27:06, 09:52](1163 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [23:15, 07:18](1161 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [23:08, 07:34](1166 MB) +PASS -- TEST 'rap_flake_debug_intel' [23:27, 07:34](1164 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [26:24, 09:29](1166 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:13, 07:45] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [30:57, 14:21](1667 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:19, 15:05] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [20:32, 04:23](1041 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [21:39, 06:34](867 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [19:58, 05:22](866 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [22:50, 09:24](922 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [19:09, 06:04](915 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [17:02, 05:53](866 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [16:27, 04:48](783 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [13:01, 03:49](751 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [22:21, 19:15] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [15:36, 04:15](1077 MB) +PASS -- TEST 'conus13km_2threads_intel' [12:38, 03:30](1055 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [13:34, 03:46](953 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:29, 11:00] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [17:53, 06:35](895 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:20, 07:12] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [18:08, 07:39](1044 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [16:37, 07:35](1036 MB) +PASS -- TEST 'conus13km_debug_intel' [23:53, 16:03](1129 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:50, 14:01](802 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [19:21, 11:50](1111 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [22:40, 15:53](1192 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:18, 06:45] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [14:04, 07:08](1071 MB) + +PASS -- COMPILE 'hafsw_intel' [15:13, 13:28] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [15:40, 07:41](719 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:05, 05:35](1076 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [17:59, 10:02](743 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [21:00, 13:35](778 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [25:05, 15:06](804 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:44, 05:57](470 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [17:01, 07:14](498 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [14:21, 05:16](395 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [24:33, 10:54](485 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [15:29, 04:21](505 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [17:27, 06:34](505 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [15:58, 05:40](578 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [14:14, 04:03](424 MB) +PASS -- TEST 'gnv1_nested_intel' [17:27, 07:23](1689 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:15, 08:20] ( 1467 warnings 1469 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [20:46, 13:35](613 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:15, 17:32] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [16:12, 08:38](633 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:00, 08:14](806 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:18, 14:41] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:35, 06:34](808 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:16, 14:48] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [18:49, 08:34](734 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [18:39, 08:39](721 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [31:05, 22:17](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [13:17, 11:24] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [13:30, 04:42](765 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [06:11, 03:39](740 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [10:05, 04:32](641 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [09:48, 04:34](642 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [09:23, 04:34](640 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [09:17, 04:38](752 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [09:11, 04:40](765 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [08:35, 04:32](645 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:42, 06:05](698 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:33, 08:33](674 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:53, 04:39](765 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:49, 06:42](2030 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [10:06, 06:45](2031 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [10:15, 08:20] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:47, 07:30](749 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [11:14, 09:59] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:49, 02:35](765 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [10:13, 08:56] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [08:13, 03:53](322 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [07:07, 03:44](462 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [06:36, 03:23](462 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:12, 01:50] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [07:31, 03:03](449 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [05:29, 02:17](253 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:23, 13:57] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [10:35, 06:53](1902 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:20, 13:14] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [14:56, 09:25](1903 MB) + +PASS -- COMPILE 'atml_intel' [18:20, 16:44] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [13:23, 07:26](1882 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [13:06, 07:19](1878 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [11:02, 07:14](1025 MB) + +PASS -- COMPILE 'atml_debug_intel' [31:22, 28:43] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [14:28, 08:48](1912 MB) + +PASS -- COMPILE 'atmw_intel' [13:14, 11:42] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:17, 04:16](1878 MB) + +PASS -- COMPILE 'atmaero_intel' [12:14, 10:57] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [12:32, 08:32](3100 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [13:33, 08:57](2988 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [13:17, 09:25](2993 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [13:19, 11:16] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [25:37, 20:35](4451 MB) + +PASS -- COMPILE 'atm_fbh_intel' [12:13, 10:48] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [14:45, 11:35](827 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [20:20, 18:32] +PASS -- TEST 'cpld_control_gfsv17_intelllvm' [21:54, 17:19](1899 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [18:19, 16:18] +PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [33:31, 29:57](1922 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [19:19, 17:58] +PASS -- TEST 'cpld_control_sfs_intelllvm' [17:45, 15:07](1903 MB) + +PASS -- COMPILE 's2swa_intelllvm' [16:20, 14:24] +PASS -- TEST 'cpld_control_p8_intelllvm' [22:13, 17:42](3216 MB) SYNOPSIS: -Starting Date/Time: 20241224 13:52:52 -Ending Date/Time: 20241224 14:38:44 -Total Time: 00h:46m:13s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Starting Date/Time: 20241231 02:41:43 +Ending Date/Time: 20241231 05:27:00 +Total Time: 02h:47m:05s +Compiles Completed: 47/47 +Tests Completed: 193/193 NOTES: A file 'test_changes.list' was generated but is empty. @@ -62,448 +347,3 @@ If you are using this log as a pull request verification, please commit 'test_ch Result: SUCCESS ====END OF GAEAC5 REGRESSION TESTING LOG==== -====START OF GAEAC5 REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -ad560f4d81e3fe50c21b316a5207b2fbbd8a4e2b - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) - ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) - 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - adbb06556f9b9123d24248e4505cd3dedee1d01a FV3 (remotes/origin/rrfsv1-to-ufs/dev5) - 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) - 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 2594a9e2c73c2a3a9acaa78fef8252cf5de3b524 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5530-g2594a9e2) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) --179cae1dd84401cf25d250bd9102e66560a9d328 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) - 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) - 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: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20241223 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_2479812 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [19:13, 17:28] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:42, 12:40](3186 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:14, 19:40] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:15, 15:08](1896 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:27, 16:02](1942 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:07, 07:29](1072 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:32, 17:09](1871 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:13, 22:10] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:28, 14:48](1901 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:14, 14:17] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [32:32, 27:29](1931 MB) - -PASS -- COMPILE 's2swa_intel' [20:14, 18:26] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [21:29, 16:12](3215 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [21:52, 16:04](3214 MB) -PASS -- TEST 'cpld_restart_p8_intel' [16:20, 10:01](3140 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [21:15, 16:05](3236 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [16:25, 10:25](3161 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [22:09, 17:45](3441 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [21:15, 15:55](3207 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [18:16, 13:26](3157 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [21:47, 16:00](3216 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:59, 10:02](3492 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [15:37, 07:04](3598 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [29:04, 18:52](4277 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [31:05, 12:01](4362 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [13:30, 09:57](3191 MB) - -PASS -- COMPILE 's2sw_intel' [19:14, 17:37] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [11:40, 08:01](1914 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:39, 12:57](1976 MB) - -PASS -- COMPILE 's2swa_debug_intel' [15:12, 13:24] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [27:55, 22:56](3265 MB) - -PASS -- COMPILE 's2sw_debug_intel' [13:16, 11:57] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:20, 09:28](1944 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:14, 14:22] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:28, 05:26](1975 MB) - -PASS -- COMPILE 's2s_intel' [19:13, 17:33] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:00, 05:39](2875 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [06:16, 01:50](2881 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:12, 01:03](2294 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:13, 16:28] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [20:26, 15:55](3209 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:20, 22:03] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [31:19, 25:17](1924 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [18:21, 13:47](1101 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [34:40, 29:54](1889 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:15, 12:46] ( 1525 warnings 1936 remarks ) -FAILED: TEST TIMED OUT -- TEST 'cpld_debug_pdlib_p8_intel' [, ]( MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:15, 12:53] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:08, 03:54](654 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [07:19, 03:11](1552 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:28, 03:28](1556 MB) -PASS -- TEST 'control_latlon_intel' [06:55, 03:07](1556 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:09, 03:56](1559 MB) -PASS -- TEST 'control_c48_intel' [14:14, 10:09](1573 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:38, 05:43](694 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [15:20, 11:06](1569 MB) -PASS -- TEST 'control_c192_intel' [15:07, 11:24](1687 MB) -PASS -- TEST 'control_c384_intel' [28:44, 23:51](1967 MB) -PASS -- TEST 'control_c384gdas_intel' [20:29, 15:02](1172 MB) -PASS -- TEST 'control_stochy_intel' [04:56, 02:03](608 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:54, 01:08](418 MB) -PASS -- TEST 'control_lndp_intel' [03:51, 01:48](607 MB) -PASS -- TEST 'control_iovr4_intel' [05:01, 02:41](607 MB) -PASS -- TEST 'control_iovr5_intel' [04:46, 02:43](607 MB) -PASS -- TEST 'control_p8_intel' [08:22, 04:03](1846 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:29, 03:29](1846 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:58, 03:53](1845 MB) -PASS -- TEST 'control_restart_p8_intel' [09:33, 02:28](1000 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:39, 04:04](1842 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [11:03, 02:08](1009 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:29, 04:02](1838 MB) -PASS -- TEST 'control_2threads_p8_intel' [08:48, 04:09](1923 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:51, 06:30](1847 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [09:16, 04:32](1902 MB) -PASS -- TEST 'control_p8_mynn_intel' [08:34, 04:09](1855 MB) -PASS -- TEST 'merra2_thompson_intel' [08:43, 03:43](1855 MB) -PASS -- TEST 'regional_control_intel' [07:37, 04:49](879 MB) -PASS -- TEST 'regional_restart_intel' [08:24, 02:53](864 MB) -PASS -- TEST 'regional_decomp_intel' [07:31, 04:59](875 MB) -PASS -- TEST 'regional_2threads_intel' [07:19, 04:01](1005 MB) -PASS -- TEST 'regional_noquilt_intel' [08:30, 04:42](1210 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:25, 04:51](877 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [10:02, 04:46](883 MB) -PASS -- TEST 'regional_wofs_intel' [13:22, 06:48](1574 MB) - -PASS -- COMPILE 'rrfs_intel' [16:17, 14:52] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [12:36, 06:53](989 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [11:21, 04:13](1165 MB) -PASS -- TEST 'rap_decomp_intel' [14:10, 07:25](990 MB) -PASS -- TEST 'rap_2threads_intel' [15:23, 08:18](1066 MB) -PASS -- TEST 'rap_restart_intel' [09:41, 03:53](869 MB) -PASS -- TEST 'rap_sfcdiff_intel' [13:26, 07:12](985 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:18, 07:30](987 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:44, 05:27](876 MB) -PASS -- TEST 'hrrr_control_intel' [13:38, 03:51](981 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [13:35, 04:07](982 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [12:51, 04:19](1065 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:51, 02:11](821 MB) -PASS -- TEST 'rrfs_v1beta_intel' [17:51, 07:00](984 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [16:59, 08:45](1947 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [18:04, 08:51](1938 MB) - -PASS -- COMPILE 'csawmg_intel' [16:17, 14:04] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [15:20, 06:55](945 MB) -PASS -- TEST 'control_ras_intel' [11:48, 03:39](643 MB) - -PASS -- COMPILE 'wam_intel' [14:13, 12:13] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [21:44, 12:15](1641 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:17, 12:39] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [11:24, 03:37](1843 MB) -PASS -- TEST 'regional_control_faster_intel' [06:54, 04:34](877 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [15:13, 14:08] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [10:08, 02:48](1581 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:32, 02:44](1581 MB) -PASS -- TEST 'control_stochy_debug_intel' [09:48, 03:28](785 MB) -PASS -- TEST 'control_lndp_debug_intel' [08:39, 02:56](784 MB) -PASS -- TEST 'control_csawmg_debug_intel' [10:03, 04:29](1084 MB) -PASS -- TEST 'control_ras_debug_intel' [07:34, 02:53](790 MB) -PASS -- TEST 'control_diag_debug_intel' [08:17, 03:03](1639 MB) -PASS -- TEST 'control_debug_p8_intel' [08:18, 03:06](1876 MB) -PASS -- TEST 'regional_debug_intel' [22:01, 16:44](891 MB) -PASS -- TEST 'rap_control_debug_intel' [09:43, 05:15](1163 MB) -PASS -- TEST 'hrrr_control_debug_intel' [09:42, 05:01](1162 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [09:43, 05:08](1163 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:50, 05:09](1163 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:43, 05:07](1163 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:52, 05:24](1249 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:49, 05:21](1170 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:48, 05:17](1167 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:46, 05:10](1166 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:39, 05:11](1164 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:33, 05:03](1159 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:32, 05:13](1165 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:02, 08:26](1159 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:43, 05:11](1158 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:57, 05:23](1167 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:47, 05:20](1164 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:44, 08:48](1167 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:11, 07:31] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:51, 13:59](1671 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:15, 13:43] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:55, 04:09](1038 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:12, 06:11](866 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [10:25, 03:36](864 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:39, 07:28](915 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:10, 04:15](918 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:51, 03:51](860 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:35, 04:18](780 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:22, 01:52](753 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:14, 12:33] ( 8 warnings 8 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_control_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'conus13km_2threads_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'conus13km_restart_mismatch_intel' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:18, 13:38] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:03, 04:56](894 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:15, 09:15] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:06, 05:23](1043 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:51, 05:08](1040 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_qr_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_2threads_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_radar_tten_debug_intel' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:21, 08:19] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:06, 05:10](1064 MB) - -PASS -- COMPILE 'hafsw_intel' [20:14, 17:49] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:09, 05:21](715 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:33, 05:03](1078 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:29, 08:32](743 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:57, 12:10](772 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:28, 12:57](800 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:50, 06:06](470 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:23, 07:30](500 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [07:01, 02:52](397 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:01, 07:43](486 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:41, 03:53](507 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:04, 03:41](505 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:13, 04:38](585 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:09, 01:36](424 MB) -PASS -- TEST 'gnv1_nested_intel' [11:15, 05:22](1698 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [14:19, 12:47] ( 1467 warnings 1469 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:57, 12:52](611 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [18:17, 16:52] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:05, 07:32](637 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:18, 07:52](810 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:13, 14:49] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:33, 06:10](809 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:14, 17:02] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:40, 06:23](736 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:38, 06:23](717 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [24:33, 20:14](891 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [12:14, 11:06] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:37, 02:43](753 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:28, 01:35](741 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:27, 02:37](642 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:29, 02:30](644 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:26, 02:47](645 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:31, 02:47](752 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:33, 02:37](764 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:33, 02:28](642 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:24, 06:27](698 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:22, 06:21](674 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:34, 02:41](765 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:30, 04:42](2031 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:28, 04:43](2031 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:14, 07:52] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:28, 05:28](751 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [14:15, 12:44] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:27, 02:35](764 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [06:13, 04:21] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:59, 02:39](324 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:49, 01:15](462 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:52, 00:50](461 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [04:18, 02:52] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [03:08, 00:53](449 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [03:11, 00:24](250 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:15, 14:45] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:57, 04:34](1917 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:14, 11:38] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:43, 08:24](1899 MB) - -PASS -- COMPILE 'atml_intel' [14:16, 13:05] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:56, 08:20](1883 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:49, 08:23](1871 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:56, 04:01](1027 MB) - -PASS -- COMPILE 'atml_debug_intel' [12:20, 10:43] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:34, 06:31](1904 MB) - -PASS -- COMPILE 'atmw_intel' [16:15, 14:56] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:16, 02:23](1877 MB) - -PASS -- COMPILE 'atmaero_intel' [14:11, 12:26] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:28, 06:58](3100 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:33, 07:06](2982 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:14, 07:08](2991 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [11:16, 10:00] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:32, 19:00](4443 MB) - -PASS -- COMPILE 'atm_fbh_intel' [12:14, 10:54] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [12:01, 09:36](831 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [24:16, 22:33] -PASS -- TEST 'cpld_control_gfsv17_intelllvm' [18:54, 15:21](1904 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [11:16, 10:01] -PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [31:54, 28:02](1922 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [25:15, 23:30] -PASS -- TEST 'cpld_control_sfs_intelllvm' [17:18, 14:28](1896 MB) - -PASS -- COMPILE 's2swa_intelllvm' [20:13, 18:52] -PASS -- TEST 'cpld_control_p8_intelllvm' [20:06, 16:42](3213 MB) - -SYNOPSIS: -Starting Date/Time: 20241223 20:32:03 -Ending Date/Time: 20241223 22:40:39 -Total Time: 02h:12m:06s -Compiles Completed: 47/47 -Tests Completed: 185/193 -Failed Tests: -* TEST cpld_debug_pdlib_p8_intel: FAILED: TEST TIMED OUT --- LOG: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_2479812/cpld_debug_pdlib_p8_intel/err -* TEST conus13km_control_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f5/epic/scratch/Jong.Kim/rt-2485/tests/logs/log_gaeac5/run_conus13km_control_intel.log -* TEST conus13km_2threads_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST conus13km_restart_mismatch_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST conus13km_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f5/epic/scratch/Jong.Kim/rt-2485/tests/logs/log_gaeac5/run_conus13km_debug_intel.log -* TEST conus13km_debug_qr_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f5/epic/scratch/Jong.Kim/rt-2485/tests/logs/log_gaeac5/run_conus13km_debug_qr_intel.log -* TEST conus13km_debug_2threads_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f5/epic/scratch/Jong.Kim/rt-2485/tests/logs/log_gaeac5/run_conus13km_debug_2threads_intel.log -* TEST conus13km_radar_tten_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f5/epic/scratch/Jong.Kim/rt-2485/tests/logs/log_gaeac5/run_conus13km_radar_tten_debug_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 GAEAC5 REGRESSION TESTING LOG==== -====START OF GAEAC5 REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -ad560f4d81e3fe50c21b316a5207b2fbbd8a4e2b - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) - ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) - 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - adbb06556f9b9123d24248e4505cd3dedee1d01a FV3 (remotes/origin/rrfsv1-to-ufs/dev5) - 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) - 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 2594a9e2c73c2a3a9acaa78fef8252cf5de3b524 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5530-g2594a9e2) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) --179cae1dd84401cf25d250bd9102e66560a9d328 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) - 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) - 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: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20241223 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_2283970 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:11, 08:33] ( 1525 warnings 1936 remarks ) -FAILED: TEST TIMED OUT -- TEST 'cpld_debug_pdlib_p8_intel' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:11, 10:21] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:03, 02:04](1072 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:01, 01:00](1056 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:03, 01:17](954 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:11, 07:28] ( 790 warnings 8 remarks ) -PASS -- TEST 'conus13km_debug_intel' [16:35, 13:15](1127 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:25, 13:25](799 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [14:23, 10:53](1107 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:13, 13:28](1193 MB) - -SYNOPSIS: -Starting Date/Time: 20241224 09:43:39 -Ending Date/Time: 20241224 11:00:47 -Total Time: 01h:17m:24s -Compiles Completed: 3/3 -Tests Completed: 7/8 -Failed Tests: -* TEST cpld_debug_pdlib_p8_intel: FAILED: TEST TIMED OUT --- LOG: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_2283970/cpld_debug_pdlib_p8_intel/err - -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 GAEAC5 REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_gaeac6.log b/tests/logs/RegressionTests_gaeac6.log index 46e4415bf7..2042cf3c90 100644 --- a/tests/logs/RegressionTests_gaeac6.log +++ b/tests/logs/RegressionTests_gaeac6.log @@ -1,7 +1,7 @@ ====START OF GAEAC6 REGRESSION TESTING LOG==== UFSWM hash used in testing: -ad560f4d81e3fe50c21b316a5207b2fbbd8a4e2b +efbea5c3730b5774eca84d23a1325746cde9554b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - adbb06556f9b9123d24248e4505cd3dedee1d01a FV3 (remotes/origin/rrfsv1-to-ufs/dev5) + 74a1c84b0f6e2063f073a5b189a0a3b84f59dbca FV3 (remotes/origin/rrfsv1-to-ufs/dev7) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 2594a9e2c73c2a3a9acaa78fef8252cf5de3b524 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5530-g2594a9e2) + 92f1ad01744cb8309b459d3ecec5a02ab526e043 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5533-g92f1ad01) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -38,288 +38,288 @@ 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/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20241223 -COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_2187903 +BASELINE DIRECTORY: /gpfs/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20241230 +COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_3639337 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: bil-fire8 * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [10:10, 08:12] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:31, 07:03](2027 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [56:14, 54:12] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [12:28, 10:28](1918 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [13:30, 11:18](1943 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [07:28, 05:09](1067 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [14:27, 12:17](1899 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [43:14, 41:41] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [12:22, 10:15](1918 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:10, 03:44] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [19:29, 17:38](1953 MB) - -PASS -- COMPILE 's2swa_intel' [10:10, 08:36] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:36, 09:13](2065 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:36, 09:12](2058 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:32, 04:57](1627 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:34, 09:12](2084 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:32, 05:00](1464 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [12:29, 10:43](2237 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:29, 08:58](2066 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:30, 07:17](2018 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:36, 09:10](2065 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [07:49, 05:55](2433 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [05:51, 03:58](2660 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [13:49, 11:06](3601 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [09:46, 06:37](3444 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:27, 05:09](1921 MB) - -PASS -- COMPILE 's2sw_intel' [25:13, 23:21] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:25, 04:48](1926 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:27, 07:58](1855 MB) - -PASS -- COMPILE 's2swa_debug_intel' [27:11, 25:46] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [16:28, 14:30](2087 MB) - -PASS -- COMPILE 's2sw_debug_intel' [30:11, 28:45] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:24, 05:58](1970 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [09:10, 07:04] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:23, 03:13](1991 MB) - -PASS -- COMPILE 's2s_intel' [57:12, 55:57] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [06:25, 04:11](2867 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:22, 01:17](2880 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:21, 00:45](2296 MB) - -PASS -- COMPILE 's2swa_faster_intel' [10:11, 08:36] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:27, 09:02](2065 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:11, 11:28] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:35, 17:43](1932 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:26, 09:01](1098 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:28, 20:53](1913 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:42] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [21:24, 19:42](1965 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [08:11, 06:53] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:17, 02:32](532 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:25, 02:04](1429 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:25, 02:10](1435 MB) -PASS -- TEST 'control_latlon_intel' [03:24, 02:02](1431 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:27, 02:03](1436 MB) -PASS -- TEST 'control_c48_intel' [09:24, 07:27](1572 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:17, 04:15](696 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [09:24, 07:25](1569 MB) -PASS -- TEST 'control_c192_intel' [09:28, 07:41](1689 MB) -PASS -- TEST 'control_c384_intel' [18:35, 16:29](1964 MB) -PASS -- TEST 'control_c384gdas_intel' [11:50, 09:57](1178 MB) -PASS -- TEST 'control_stochy_intel' [03:17, 01:11](486 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:15, 00:46](290 MB) -PASS -- TEST 'control_lndp_intel' [03:17, 01:08](490 MB) -PASS -- TEST 'control_iovr4_intel' [03:18, 01:43](485 MB) -PASS -- TEST 'control_iovr5_intel' [03:18, 01:43](483 MB) -PASS -- TEST 'control_p8_intel' [04:27, 02:22](1722 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:35, 02:01](1728 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:22, 02:21](1728 MB) -PASS -- TEST 'control_restart_p8_intel' [03:22, 01:22](875 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:20, 02:19](1712 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:22, 01:19](885 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:19, 02:24](1717 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:23, 02:46](1795 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:20, 04:11](1720 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:23, 02:38](1778 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:24, 02:02](1734 MB) -PASS -- TEST 'merra2_thompson_intel' [04:23, 02:14](1725 MB) -PASS -- TEST 'regional_control_intel' [05:21, 03:20](878 MB) -PASS -- TEST 'regional_restart_intel' [03:18, 01:50](860 MB) -PASS -- TEST 'regional_decomp_intel' [05:21, 03:29](879 MB) -PASS -- TEST 'regional_2threads_intel' [04:20, 02:36](1024 MB) -PASS -- TEST 'regional_noquilt_intel' [05:18, 03:16](1204 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:22, 03:18](861 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:19, 03:19](875 MB) -PASS -- TEST 'regional_wofs_intel' [06:20, 04:22](1572 MB) - -PASS -- COMPILE 'rrfs_intel' [08:11, 06:11] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [06:20, 04:47](870 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:32, 02:51](1161 MB) -PASS -- TEST 'rap_decomp_intel' [06:19, 04:58](866 MB) -PASS -- TEST 'rap_2threads_intel' [07:19, 05:46](942 MB) -PASS -- TEST 'rap_restart_intel' [04:19, 02:32](738 MB) -PASS -- TEST 'rap_sfcdiff_intel' [06:19, 04:50](869 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [06:19, 05:00](864 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:18, 03:34](741 MB) -PASS -- TEST 'hrrr_control_intel' [04:19, 02:33](864 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:20, 02:38](860 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:20, 02:57](934 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:16, 01:22](695 MB) -PASS -- TEST 'rrfs_v1beta_intel' [06:18, 04:42](864 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [07:15, 06:04](1819 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:15, 06:00](1813 MB) - -PASS -- COMPILE 'csawmg_intel' [07:11, 05:55] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [06:19, 04:10](820 MB) -PASS -- TEST 'control_ras_intel' [04:13, 02:12](519 MB) - -PASS -- COMPILE 'wam_intel' [07:11, 05:59] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [09:22, 07:34](1517 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [07:11, 05:56] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:23, 01:55](1726 MB) -PASS -- TEST 'regional_control_faster_intel' [05:18, 03:10](884 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 05:29] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:21, 01:33](1462 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:25, 01:30](1464 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:14, 02:06](662 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:15, 01:53](657 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:20, 02:50](962 MB) -PASS -- TEST 'control_ras_debug_intel' [03:15, 01:54](669 MB) -PASS -- TEST 'control_diag_debug_intel' [03:20, 01:51](1522 MB) -PASS -- TEST 'control_debug_p8_intel' [03:19, 01:43](1749 MB) -PASS -- TEST 'regional_debug_intel' [13:19, 11:11](900 MB) -PASS -- TEST 'rap_control_debug_intel' [05:14, 03:18](1041 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:14, 03:18](1037 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:14, 03:20](1040 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:14, 03:21](1040 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:14, 03:22](1041 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:16, 03:29](1124 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:15, 03:23](1042 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:15, 03:22](1041 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:15, 03:22](1040 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:14, 03:17](1038 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:14, 03:17](1039 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:14, 03:20](1042 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:14, 05:26](1042 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:14, 03:19](1038 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:14, 03:22](1044 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:14, 03:19](1039 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:18, 05:41](1044 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:11, 03:07] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [10:22, 08:42](1545 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 05:36] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:30, 02:41](1037 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:17, 04:02](747 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:17, 02:13](741 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:17, 04:56](791 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:17, 02:35](791 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:17, 02:20](740 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:19, 03:00](651 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:15, 01:13](627 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:11, 05:45] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:26, 01:22](953 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:20, 00:43](1084 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:20, 00:52](826 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [53:12, 51:12] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:18, 02:46](773 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:10, 03:07] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:14, 03:15](918 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:15, 03:11](917 MB) -PASS -- TEST 'conus13km_debug_intel' [10:20, 08:50](1004 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [10:21, 08:56](674 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:20, 07:53](1137 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [11:20, 09:07](1070 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:10, 03:08] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:14, 03:21](944 MB) - -PASS -- COMPILE 'hafsw_intel' [15:12, 13:16] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [05:46, 03:34](720 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:22, 02:56](1069 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:52, 04:45](780 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [09:47, 08:03](816 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [10:53, 08:37](830 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:35, 03:32](480 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:49, 04:22](484 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:25, 01:44](398 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:00, 10:47](456 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:27, 02:33](501 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:31, 02:22](503 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:34, 02:56](587 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:20, 00:59](429 MB) -PASS -- TEST 'gnv1_nested_intel' [04:47, 02:58](1708 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:10, 03:20] ( 1467 warnings 1469 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [10:33, 08:14](604 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [09:10, 07:19] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [06:32, 05:03](633 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:32, 09:43](794 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [08:10, 07:07] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:35, 03:52](791 MB) - -PASS -- COMPILE 'hafs_all_intel' [09:10, 07:37] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [06:43, 04:19](770 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:44, 04:19](750 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [12:36, 10:57](891 MB) +PASS -- COMPILE 's2swa_32bit_intel' [10:13, 08:15] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:24, 07:10](2033 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [38:23, 36:42] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [12:28, 10:28](1926 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [13:31, 11:22](1933 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [06:30, 05:09](1085 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [14:39, 12:22](1905 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [52:24, 51:09] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [12:22, 10:35](1926 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:12, 03:52] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [20:32, 17:47](1950 MB) + +PASS -- COMPILE 's2swa_intel' [14:20, 12:48] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [18:43, 09:19](2066 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:39, 09:13](2064 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:29, 05:06](1626 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:38, 09:32](2082 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:28, 05:10](1458 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [18:40, 10:55](2225 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [18:40, 09:50](2059 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:36, 07:37](2021 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:42, 09:28](2067 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:53, 06:46](2424 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [05:49, 04:07](2665 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [21:42, 11:43](3608 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [09:37, 06:38](3445 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:33, 05:10](1922 MB) + +PASS -- COMPILE 's2sw_intel' [09:12, 07:41] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:22, 04:48](1933 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:24, 07:59](1856 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:12, 03:52] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [17:34, 14:27](2090 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:12, 03:37] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:29, 05:58](1956 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [06:20, 04:59] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:27, 03:14](1989 MB) + +PASS -- COMPILE 's2s_intel' [08:12, 07:00] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [06:19, 04:11](2869 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [12:20, 10:22](2881 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:20, 00:47](2295 MB) + +PASS -- COMPILE 's2swa_faster_intel' [10:14, 09:00] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [11:26, 09:29](2059 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:15, 11:30] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:29, 17:45](1942 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:27, 08:59](1115 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:29, 20:57](1921 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:13, 03:39] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:25, 20:12](1955 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [08:11, 06:38] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:17, 03:02](530 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:28, 02:07](1432 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:30, 02:15](1433 MB) +PASS -- TEST 'control_latlon_intel' [04:28, 02:01](1431 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:32, 02:05](1426 MB) +PASS -- TEST 'control_c48_intel' [10:29, 07:29](1571 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:18, 04:17](696 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [09:29, 07:24](1569 MB) +PASS -- TEST 'control_c192_intel' [10:33, 07:40](1689 MB) +PASS -- TEST 'control_c384_intel' [19:48, 16:32](1965 MB) +PASS -- TEST 'control_c384gdas_intel' [12:55, 10:01](1178 MB) +PASS -- TEST 'control_stochy_intel' [03:17, 01:39](489 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:14, 00:43](292 MB) +PASS -- TEST 'control_lndp_intel' [03:16, 01:08](491 MB) +PASS -- TEST 'control_iovr4_intel' [03:17, 01:45](486 MB) +PASS -- TEST 'control_iovr5_intel' [03:17, 01:45](484 MB) +PASS -- TEST 'control_p8_intel' [05:31, 02:22](1721 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:37, 02:05](1725 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:32, 03:01](1732 MB) +PASS -- TEST 'control_restart_p8_intel' [05:20, 01:20](873 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:32, 02:50](1726 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:23, 01:20](886 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:32, 02:24](1722 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:30, 02:45](1805 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:28, 04:28](1732 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:20, 02:34](1773 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:21, 02:06](1735 MB) +PASS -- TEST 'merra2_thompson_intel' [04:20, 02:16](1723 MB) +PASS -- TEST 'regional_control_intel' [05:19, 03:21](877 MB) +PASS -- TEST 'regional_restart_intel' [04:16, 01:52](861 MB) +PASS -- TEST 'regional_decomp_intel' [05:16, 03:30](880 MB) +PASS -- TEST 'regional_2threads_intel' [05:18, 02:41](1016 MB) +PASS -- TEST 'regional_noquilt_intel' [05:18, 03:14](1205 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:20, 03:22](878 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:19, 03:23](874 MB) +PASS -- TEST 'regional_wofs_intel' [08:19, 04:25](1574 MB) + +PASS -- COMPILE 'rrfs_intel' [07:11, 06:05] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:21, 05:16](866 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:30, 02:50](1162 MB) +PASS -- TEST 'rap_decomp_intel' [09:28, 04:58](868 MB) +PASS -- TEST 'rap_2threads_intel' [09:28, 05:45](938 MB) +PASS -- TEST 'rap_restart_intel' [04:20, 02:29](745 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:20, 04:46](869 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:19, 04:58](867 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:25, 03:35](743 MB) +PASS -- TEST 'hrrr_control_intel' [06:20, 02:33](864 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:19, 02:40](860 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:19, 02:56](936 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:16, 01:23](696 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:24, 04:46](861 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:15, 06:09](1821 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:14, 05:57](1814 MB) + +PASS -- COMPILE 'csawmg_intel' [07:10, 05:44] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [06:17, 04:13](825 MB) +PASS -- TEST 'control_ras_intel' [04:14, 02:12](519 MB) + +PASS -- COMPILE 'wam_intel' [07:10, 05:50] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [09:25, 07:36](1518 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [08:12, 06:18] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:23, 02:05](1728 MB) +PASS -- TEST 'regional_control_faster_intel' [05:21, 03:13](887 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 05:41] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:19, 01:35](1456 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:23, 01:36](1460 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:14, 02:03](661 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:14, 01:54](657 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:20, 02:50](964 MB) +PASS -- TEST 'control_ras_debug_intel' [03:14, 01:54](667 MB) +PASS -- TEST 'control_diag_debug_intel' [03:21, 02:03](1516 MB) +PASS -- TEST 'control_debug_p8_intel' [03:16, 01:44](1750 MB) +PASS -- TEST 'regional_debug_intel' [13:20, 11:14](893 MB) +PASS -- TEST 'rap_control_debug_intel' [05:14, 03:23](1038 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:15, 03:17](1039 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:15, 03:40](1041 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:15, 03:23](1040 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:15, 03:21](1038 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:22, 03:33](1126 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 03:27](1039 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:16, 03:29](1037 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:17, 03:21](1041 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:17, 03:25](1040 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:16, 03:26](1038 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:15, 03:26](1040 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:14, 05:20](1040 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:15, 03:19](1038 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:17, 03:30](1042 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:16, 03:22](1039 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:19, 05:42](1043 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:11, 03:23] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [10:19, 08:34](1541 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:12, 05:44] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:33, 02:41](1037 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:20, 04:04](748 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:23, 02:25](743 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:18, 04:56](805 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:19, 02:46](790 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:18, 02:21](745 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:19, 03:01](650 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:19, 01:14](628 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:10, 05:42] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:34, 01:35](954 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:19, 00:43](1085 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:20, 00:51](825 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:12, 05:43] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:20, 02:48](769 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:12, 03:00] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:14, 03:20](919 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:16, 03:40](916 MB) +PASS -- TEST 'conus13km_debug_intel' [10:35, 09:02](1006 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [11:34, 09:21](675 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:35, 08:07](1137 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [10:31, 09:03](1073 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 03:03] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:15, 03:24](943 MB) + +PASS -- COMPILE 'hafsw_intel' [08:12, 07:10] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [05:51, 03:41](716 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:19, 02:59](1069 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:53, 04:47](778 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [10:49, 08:09](814 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [10:55, 08:39](836 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:33, 03:34](482 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:47, 04:27](486 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:25, 01:46](397 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:02, 05:08](458 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:27, 02:34](496 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:25, 02:23](501 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:28, 02:57](585 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:19, 01:02](427 MB) +PASS -- TEST 'gnv1_nested_intel' [05:43, 02:57](1699 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:10, 03:17] ( 1467 warnings 1469 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [10:28, 08:30](604 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [09:12, 07:25] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [07:33, 05:05](635 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [08:36, 06:04](794 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:19, 09:54] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:38, 03:51](790 MB) + +PASS -- COMPILE 'hafs_all_intel' [09:11, 07:32] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [06:42, 04:19](767 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:42, 04:21](751 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [12:37, 10:56](889 MB) PASS -- COMPILE 'datm_cdeps_intel' [06:10, 05:04] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:14, 01:42](763 MB) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:13, 01:42](763 MB) PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:14, 01:02](751 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:17, 01:35](643 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 01:37](640 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:14, 01:38](641 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 01:41](764 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:14, 01:42](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 01:35](643 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:31, 04:05](707 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:29, 04:04](684 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 01:43](763 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:17, 02:43](2028 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:16, 02:43](2031 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:26] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:13, 03:46](735 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 04:57] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:13, 01:40](752 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:40] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:21, 00:58](324 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:18, 00:50](461 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:36](459 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:10, 06:27] ( 5 warnings 3 remarks ) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:13, 01:36](642 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:13, 01:36](643 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 01:39](644 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 01:45](762 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:16, 01:41](764 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:13, 01:35](642 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:28, 04:09](707 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:26, 04:02](686 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:13, 01:41](764 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:13, 02:43](2030 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:14, 02:45](2030 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:19] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:14, 03:46](734 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:12, 04:48] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:24, 01:41](763 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:38] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:22, 01:01](324 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:18, 00:48](459 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:35](460 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:12, 06:39] ( 5 warnings 3 remarks ) PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:23, 02:26](1795 MB) -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:10, 06:09] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:25, 05:19](1786 MB) +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:12, 06:06] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:23, 05:25](1787 MB) -PASS -- COMPILE 'atml_intel' [08:10, 06:41] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:25, 03:56](1895 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [05:25, 03:55](1893 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:19, 02:07](1037 MB) +PASS -- COMPILE 'atml_intel' [08:12, 06:41] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:24, 03:58](1893 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [05:25, 03:59](1896 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:18, 02:12](1041 MB) -PASS -- COMPILE 'atml_debug_intel' [05:10, 03:42] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:24, 06:57](1926 MB) +PASS -- COMPILE 'atml_debug_intel' [05:11, 03:48] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:23, 04:08](1924 MB) -PASS -- COMPILE 'atmw_intel' [09:10, 07:17] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:20, 01:17](1757 MB) +PASS -- COMPILE 'atmw_intel' [09:12, 07:12] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:22, 01:30](1761 MB) -PASS -- COMPILE 'atmaero_intel' [07:10, 05:58] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:24, 02:44](1944 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:24, 03:14](1604 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:20, 03:17](1610 MB) +PASS -- COMPILE 'atmaero_intel' [07:12, 06:06] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:23, 02:44](1949 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:23, 03:14](1609 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:20, 03:18](1609 MB) -PASS -- COMPILE 'atmaq_debug_intel' [04:10, 03:01] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [15:41, 13:26](4441 MB) +PASS -- COMPILE 'atmaq_debug_intel' [05:12, 03:18] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [15:44, 13:24](4443 MB) -PASS -- COMPILE 'atm_fbh_intel' [07:10, 05:41] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [07:17, 06:01](831 MB) +PASS -- COMPILE 'atm_fbh_intel' [07:11, 05:46] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [07:18, 06:01](833 MB) SYNOPSIS: -Starting Date/Time: 20241224 07:59:14 -Ending Date/Time: 20241224 10:23:05 -Total Time: 02h:24m:14s +Starting Date/Time: 20241231 16:58:19 +Ending Date/Time: 20241231 19:04:46 +Total Time: 02h:06m:48s Compiles Completed: 42/42 Tests Completed: 187/187 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 457dbacde4..a0634f04ef 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -ad560f4d81e3fe50c21b316a5207b2fbbd8a4e2b +7e1e51eae8370dc0c2e21bd6ba6a784f29cf589c Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - adbb06556f9b9123d24248e4505cd3dedee1d01a FV3 (remotes/origin/rrfsv1-to-ufs/dev5) + 74a1c84b0f6e2063f073a5b189a0a3b84f59dbca FV3 (remotes/origin/rrfsv1-to-ufs/dev7) 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) @@ -26,446 +26,391 @@ 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-20241223 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3170497 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241230 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3137259 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [15:20, 13:48] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:22, 12:29](3315 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:20, 16:46] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:11, 19:47](1962 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:18, 20:49](2168 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:11, 08:16](1278 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:07, 23:49](1871 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:20, 16:35] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [22:45, 19:25](1963 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:19, 06:51] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [30:26, 27:41](1886 MB) - -PASS -- COMPILE 's2swa_intel' [15:20, 13:42] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [18:50, 15:40](3346 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:56, 14:14](3340 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:33, 08:16](3239 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:37, 14:09](3373 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [12:06, 08:31](3257 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [18:35, 15:25](3559 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:41, 14:20](3339 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:25, 11:34](3221 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:41, 14:04](3354 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:31, 10:25](3531 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:59, 07:21](3619 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [26:08, 16:58](4307 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:43, 09:12](4387 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:11, 07:18](3313 MB) - -PASS -- COMPILE 's2sw_intel' [15:20, 13:19] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [12:10, 09:12](1990 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:25, 11:19](2035 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:19, 06:51] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [26:43, 23:07](3368 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:20, 06:33] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:14, 10:04](2014 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:19, 11:31] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:03, 04:22](2047 MB) - -PASS -- COMPILE 's2s_intel' [14:19, 12:18] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:44, 07:58](3040 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:46, 02:29](3037 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:44, 01:27](2483 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:12, 17:10] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:26, 13:53](3356 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:12, 15:37] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [31:15, 28:15](2012 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:22, 13:52](1284 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:13, 33:03](1936 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:11, 06:05] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:11, 29:25](1965 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:12, 10:48] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:28, 03:35](700 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:51, 03:19](1588 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:01, 03:25](1594 MB) -PASS -- TEST 'control_latlon_intel' [05:48, 03:19](1594 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:51, 03:21](1591 MB) -PASS -- TEST 'control_c48_intel' [13:52, 11:35](1725 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:29, 06:48](850 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [13:56, 11:36](1728 MB) -PASS -- TEST 'control_c192_intel' [15:03, 12:16](1758 MB) -PASS -- TEST 'control_c384_intel' [17:09, 13:51](1988 MB) -PASS -- TEST 'control_c384gdas_intel' [13:12, 08:19](1373 MB) -PASS -- TEST 'control_stochy_intel' [03:26, 01:39](659 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:48, 01:03](499 MB) -PASS -- TEST 'control_lndp_intel' [03:26, 01:35](658 MB) -PASS -- TEST 'control_iovr4_intel' [04:27, 02:40](661 MB) -PASS -- TEST 'control_iovr5_intel' [04:25, 02:40](659 MB) -PASS -- TEST 'control_p8_intel' [06:00, 03:50](1880 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:04, 03:29](1890 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:51, 03:49](1884 MB) -PASS -- TEST 'control_restart_p8_intel' [04:49, 02:17](1131 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:56, 03:56](1876 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:52, 02:17](1168 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:57, 04:11](1857 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:01, 04:49](1949 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:00, 06:55](1882 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:05, 04:28](1949 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:59, 03:15](1893 MB) -PASS -- TEST 'merra2_thompson_intel' [05:57, 03:30](1890 MB) -PASS -- TEST 'regional_control_intel' [07:34, 05:42](1118 MB) -PASS -- TEST 'regional_restart_intel' [04:38, 02:58](1101 MB) -PASS -- TEST 'regional_decomp_intel' [07:33, 05:56](1111 MB) -PASS -- TEST 'regional_2threads_intel' [06:36, 04:31](1066 MB) -PASS -- TEST 'regional_noquilt_intel' [07:35, 05:31](1423 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:41, 05:41](1123 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:36, 05:42](1120 MB) -PASS -- TEST 'regional_wofs_intel' [08:40, 07:07](1902 MB) - -PASS -- COMPILE 'rrfs_intel' [12:12, 10:32] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:46, 07:55](1107 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:07, 04:19](1268 MB) -PASS -- TEST 'rap_decomp_intel' [10:37, 08:14](1031 MB) -PASS -- TEST 'rap_2threads_intel' [10:37, 08:49](1101 MB) -PASS -- TEST 'rap_restart_intel' [05:48, 04:05](1107 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:38, 07:51](1108 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:41, 08:10](1044 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:46, 05:53](1127 MB) -PASS -- TEST 'hrrr_control_intel' [05:43, 03:59](1039 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:32, 04:08](1030 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:35, 04:21](1086 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:28, 02:09](999 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:45, 07:44](1099 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:25, 09:44](1981 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:25, 09:10](2063 MB) - -PASS -- COMPILE 'csawmg_intel' [11:13, 10:02] -PASS -- TEST 'control_csawmg_intel' [08:38, 06:18](1024 MB) -PASS -- TEST 'control_ras_intel' [05:23, 03:19](750 MB) - -PASS -- COMPILE 'wam_intel' [11:11, 10:03] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:48, 11:19](1659 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [11:11, 10:04] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:53, 02:50](1861 MB) -PASS -- TEST 'regional_control_faster_intel' [06:37, 04:53](1126 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 07:48] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:39, 02:14](1617 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:44, 02:14](1617 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:22, 03:15](830 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:21, 02:47](840 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:33, 04:28](1143 MB) -PASS -- TEST 'control_ras_debug_intel' [04:22, 02:52](839 MB) -PASS -- TEST 'control_diag_debug_intel' [04:45, 02:49](1692 MB) -PASS -- TEST 'control_debug_p8_intel' [04:37, 02:39](1910 MB) -PASS -- TEST 'regional_debug_intel' [20:35, 18:14](1101 MB) -PASS -- TEST 'rap_control_debug_intel' [06:24, 05:03](1205 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:26, 05:11](1206 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:26, 05:03](1214 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:24, 05:07](1214 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:21, 05:07](1210 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:33, 05:38](1297 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:23, 05:11](1214 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:23, 05:07](1223 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:22, 05:19](1213 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 05:03](1216 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:21, 05:06](1214 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:23, 05:17](1212 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:24, 08:19](1209 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:22, 04:57](1217 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:24, 05:05](1211 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:24, 05:02](1210 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:42, 08:53](1219 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:11, 04:25] -PASS -- TEST 'control_csawmg_debug_gnu' [04:39, 02:23](720 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:12, 05:00] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:45, 13:32](1680 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:10, 10:17] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:04, 03:55](1138 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:36, 06:31](1054 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:40, 03:26](990 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:37, 07:31](1000 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:32, 03:49](967 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:33, 03:38](941 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:37, 04:58](1040 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:26, 01:56](932 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 09:57] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:02, 02:01](1192 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:40, 01:02](1167 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:43, 01:19](1092 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 10:06] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:45, 04:17](988 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:01] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:22, 05:00](1093 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:21, 04:47](1085 MB) -PASS -- TEST 'conus13km_debug_intel' [15:48, 14:06](1238 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:44, 14:34](931 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [14:44, 12:29](1216 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:42, 14:11](1305 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:37] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:23, 05:06](1132 MB) - -PASS -- COMPILE 'hafsw_intel' [13:10, 11:57] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:16, 05:10](720 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:34, 06:22](1113 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:28, 07:10](821 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:24, 14:55](845 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:30, 18:41](871 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:56, 05:43](493 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:20, 06:57](507 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:44, 02:41](377 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:31, 07:36](476 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:43, 03:46](520 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:49, 03:34](522 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:52, 04:09](574 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:12](401 MB) -PASS -- TEST 'gnv1_nested_intel' [07:36, 04:09](1720 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:10, 05:21] ( 1462 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:51, 13:06](576 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:10, 11:39] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:02, 10:15](648 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:07, 10:20](729 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 11:42] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:55, 08:14](721 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:12, 13:07] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:07, 11:50](3328 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:13, 16:38] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:02, 19:46](1975 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:19, 20:38](2177 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:17, 08:32](1261 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:05, 23:31](1867 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:12, 16:16] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:44, 19:34](1952 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:13, 06:52] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [30:10, 27:24](1923 MB) + +PASS -- COMPILE 's2swa_intel' [15:13, 13:24] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [18:20, 15:45](3344 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:23, 14:05](3348 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:17, 07:25](3255 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [17:18, 14:14](3369 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:29, 07:23](3281 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [18:11, 15:32](3562 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:15, 14:34](3326 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:15, 11:45](3217 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:22, 14:19](3358 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:12, 10:36](3507 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:37, 06:30](3619 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [25:17, 16:17](4312 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:01, 09:24](4372 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:11, 07:47](3276 MB) + +PASS -- COMPILE 's2sw_intel' [14:13, 12:21] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:59, 09:05](1981 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:04, 12:48](2051 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:12, 06:50] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [25:16, 22:32](3410 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:12, 06:40] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:03, 09:52](2002 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:13, 11:27] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:06, 04:26](2041 MB) + +PASS -- COMPILE 's2s_intel' [13:13, 11:52] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:42, 07:49](3038 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:42, 02:26](3017 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:39, 01:31](2465 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:13, 16:55] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [18:21, 15:23](3353 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:12, 15:48] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [31:26, 28:13](2022 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:46, 13:58](1276 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [36:18, 33:37](1931 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:12, 06:13] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:12, 29:42](1971 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:12, 11:09] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:23, 03:24](703 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:42, 03:13](1584 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:43, 03:17](1584 MB) +PASS -- TEST 'control_latlon_intel' [05:34, 03:17](1588 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:45, 03:18](1590 MB) +PASS -- TEST 'control_c48_intel' [13:45, 11:35](1711 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:25, 06:32](851 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [13:41, 11:32](1721 MB) +PASS -- TEST 'control_c192_intel' [14:01, 12:08](1760 MB) +PASS -- TEST 'control_c384_intel' [16:52, 13:37](1976 MB) +PASS -- TEST 'control_c384gdas_intel' [13:03, 08:12](1378 MB) +PASS -- TEST 'control_stochy_intel' [03:23, 01:38](664 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:30, 01:01](495 MB) +PASS -- TEST 'control_lndp_intel' [03:21, 01:37](660 MB) +PASS -- TEST 'control_iovr4_intel' [04:23, 02:33](653 MB) +PASS -- TEST 'control_iovr5_intel' [04:23, 02:35](652 MB) +PASS -- TEST 'control_p8_intel' [05:56, 03:47](1873 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:02, 03:13](1871 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:55, 03:50](1840 MB) +PASS -- TEST 'control_restart_p8_intel' [03:46, 02:03](1129 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:50, 03:37](1864 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:01, 02:02](1167 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:48, 03:47](1862 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:49, 04:09](1944 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:44, 06:35](1872 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:53, 04:16](1925 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:53, 03:07](1894 MB) +PASS -- TEST 'merra2_thompson_intel' [05:50, 03:27](1896 MB) +PASS -- TEST 'regional_control_intel' [07:36, 05:23](1125 MB) +PASS -- TEST 'regional_restart_intel' [04:35, 02:53](1102 MB) +PASS -- TEST 'regional_decomp_intel' [07:37, 05:59](1092 MB) +PASS -- TEST 'regional_2threads_intel' [05:36, 04:01](1069 MB) +PASS -- TEST 'regional_noquilt_intel' [07:38, 05:20](1418 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:38, 05:24](1117 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:33, 05:27](1119 MB) +PASS -- TEST 'regional_wofs_intel' [08:36, 07:02](1895 MB) + +PASS -- COMPILE 'rrfs_intel' [12:12, 10:12] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:42, 07:49](1115 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:03, 04:10](1264 MB) +PASS -- TEST 'rap_decomp_intel' [10:51, 08:09](1026 MB) +PASS -- TEST 'rap_2threads_intel' [10:49, 08:48](1100 MB) +PASS -- TEST 'rap_restart_intel' [06:46, 04:09](1104 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:42, 07:50](1109 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:52, 08:15](1037 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:52, 05:53](1133 MB) +PASS -- TEST 'hrrr_control_intel' [05:41, 04:01](1038 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:36, 04:15](1027 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:37, 04:23](1087 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:41, 02:18](1009 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:45, 08:00](1069 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:29, 09:49](1977 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:27, 09:18](2060 MB) + +PASS -- COMPILE 'csawmg_intel' [11:12, 09:59] +PASS -- TEST 'control_csawmg_intel' [08:40, 06:11](1015 MB) +PASS -- TEST 'control_ras_intel' [05:22, 03:32](736 MB) + +PASS -- COMPILE 'wam_intel' [11:12, 10:03] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:55, 11:34](1658 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:12, 10:31] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:50, 02:49](1885 MB) +PASS -- TEST 'regional_control_faster_intel' [06:36, 04:55](1121 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:12, 07:44] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:43, 02:25](1600 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:43, 02:11](1615 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:25, 03:16](831 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:48](824 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:35, 04:31](1139 MB) +PASS -- TEST 'control_ras_debug_intel' [04:23, 02:54](835 MB) +PASS -- TEST 'control_diag_debug_intel' [04:52, 02:51](1644 MB) +PASS -- TEST 'control_debug_p8_intel' [04:39, 02:40](1881 MB) +PASS -- TEST 'regional_debug_intel' [19:37, 17:42](1099 MB) +PASS -- TEST 'rap_control_debug_intel' [07:22, 05:17](1213 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:27, 04:56](1208 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:21, 05:10](1212 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 05:06](1216 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:23, 05:05](1214 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:45, 05:33](1289 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:27, 05:17](1210 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:23, 05:15](1216 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:26, 05:06](1217 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:24, 05:01](1209 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:27, 04:55](1209 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:28, 05:06](1213 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:24, 08:25](1211 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:25, 05:03](1211 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:25, 05:08](1213 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:24, 05:15](1213 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:51, 08:46](1224 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:11, 04:26] +PASS -- TEST 'control_csawmg_debug_gnu' [04:38, 02:23](718 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:10, 04:39] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:47, 13:38](1682 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:10, 09:50] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:23, 03:56](1138 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:38, 06:42](1048 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:45, 03:26](985 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:42, 07:32](999 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:36, 03:56](971 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:39, 03:45](925 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:44, 05:01](1034 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:47, 01:56](934 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:10, 10:11] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:00, 02:03](1187 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:47, 00:59](1167 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:49, 01:16](1099 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:12, 10:32] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:45, 04:21](989 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:37] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:28, 05:20](1082 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 04:50](1095 MB) +PASS -- TEST 'conus13km_debug_intel' [15:45, 14:02](1240 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:45, 14:25](941 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [14:39, 12:27](1198 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:00, 14:04](1311 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 04:37] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:40, 05:11](1138 MB) + +PASS -- COMPILE 'hafsw_intel' [13:10, 11:46] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:31, 05:35](716 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:42, 06:33](1126 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:33, 07:05](819 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:18, 15:10](845 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:43, 18:41](876 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:03, 05:32](493 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:26, 06:49](507 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:54, 02:48](367 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:08, 07:24](481 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:48, 03:58](521 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:49, 03:34](524 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:52, 04:08](572 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:16](398 MB) +PASS -- TEST 'gnv1_nested_intel' [07:29, 04:11](1740 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:11, 05:07] ( 1462 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:00, 13:05](581 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:12, 11:22] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:03, 10:18](640 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:22, 10:20](696 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 11:50] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:38, 08:20](715 MB) PASS -- COMPILE 'hafs_all_intel' [12:10, 10:53] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:18, 06:33](816 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:17, 06:46](798 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:00, 16:59](1217 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:10, 06:54] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:21, 02:51](1151 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:41](1115 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:19, 02:41](1032 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:42](1021 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:46](1027 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:44](1157 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 02:49](1152 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:16, 02:38](1037 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:21, 06:36](1077 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:19, 06:34](1057 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:14, 02:52](1160 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 04:00](2509 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:22, 03:56](2473 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:26] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:19, 06:20](1092 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:38] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 02:48](1166 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:02] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:31, 00:47](263 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:51](325 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:31](324 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:34] -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:32, 00:35](568 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:39, 00:25](464 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 10:50] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:05, 03:50](1967 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 10:37] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:52, 08:05](1964 MB) - -PASS -- COMPILE 'atml_intel' [12:11, 11:01] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:59, 04:24](1871 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:58, 04:28](1857 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:48, 02:22](1100 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:11, 05:55] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:51, 05:59](1888 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 11:04] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:51, 01:58](1895 MB) - -PASS -- COMPILE 'atmaero_intel' [12:11, 10:58] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:57, 04:13](3195 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:58, 04:55](3092 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:45, 05:01](3107 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:10, 04:52] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_fbh_intel' [11:12, 09:59] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:28, 11:49](1118 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:11, 06:54] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:38, 08:29](1058 MB) +PASS -- TEST 'hafs_regional_docn_intel' [09:26, 06:40](812 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:24, 06:44](800 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:01, 16:25](1215 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:10, 06:23] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 02:45](1162 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:56](1112 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:46](1036 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:44](1026 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:42](1029 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 02:44](1158 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:46](1153 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:19, 02:40](1028 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:30, 06:13](1072 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:25, 06:14](1053 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:44](1144 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 03:57](2506 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:19, 04:01](2449 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:27] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:44](1084 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:49] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:44](1167 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:16] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:32, 00:45](260 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:49](325 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:32](331 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:31] +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:31, 00:32](562 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:32, 00:18](458 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 11:02] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:01, 03:59](1967 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 10:21] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:53, 07:59](1989 MB) + +PASS -- COMPILE 'atml_intel' [12:11, 11:03] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:10, 04:34](1845 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:07, 04:21](1868 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:44, 02:22](1096 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:11, 05:36] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:52, 05:52](1892 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 10:56] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:46, 02:00](1923 MB) + +PASS -- COMPILE 'atmaero_intel' [12:11, 10:39] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:59, 04:10](3186 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:58, 04:54](3091 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:46, 04:58](3103 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:33] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_fbh_intel' [11:11, 09:50] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:29, 11:41](1104 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:11, 06:56] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:55, 08:30](1052 MB) PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:11, 06:48] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:40, 05:02](998 MB) - -PASS -- COMPILE 'atm_gnu' [06:11, 04:28] -PASS -- TEST 'control_c48_gnu' [11:46, 09:32](1512 MB) -PASS -- TEST 'control_stochy_gnu' [05:23, 03:30](496 MB) -PASS -- TEST 'control_ras_gnu' [06:22, 04:59](502 MB) -PASS -- TEST 'control_p8_gnu' [07:58, 05:16](1460 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [07:50, 05:14](1457 MB) -PASS -- TEST 'control_flake_gnu' [12:24, 10:26](538 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:11, 04:08] -PASS -- TEST 'rap_control_gnu' [13:40, 11:30](813 MB) -PASS -- TEST 'rap_decomp_gnu' [13:34, 11:43](842 MB) -PASS -- TEST 'rap_2threads_gnu' [19:49, 17:22](914 MB) -PASS -- TEST 'rap_restart_gnu' [07:43, 05:53](576 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [13:41, 11:29](841 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:37, 11:38](806 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:44, 08:35](582 MB) -PASS -- TEST 'hrrr_control_gnu' [07:42, 05:56](809 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:40, 05:51](826 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [10:33, 08:34](905 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:39, 06:01](805 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [05:37, 03:09](560 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:36, 03:08](651 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [13:41, 11:17](801 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:10, 03:52] -PASS -- TEST 'control_csawmg_gnu' [10:35, 08:39](738 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:33] -PASS -- TEST 'control_diag_debug_gnu' [03:42, 01:38](1267 MB) -PASS -- TEST 'regional_debug_gnu' [12:38, 10:25](751 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:24, 02:40](818 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:24, 02:38](812 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:23, 02:38](817 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:20, 02:36](811 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:43, 02:49](901 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:21, 04:13](816 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:24, 02:42](814 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:22, 02:41](843 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:22, 01:35](451 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:19, 01:52](443 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:42, 01:53](1436 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:29, 02:45](816 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:26, 02:47](817 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:39, 04:39](819 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:23] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:06] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:53, 10:03](701 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:41, 05:16](692 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [17:37, 15:33](736 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [09:36, 07:57](733 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:30, 05:21](694 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:51, 07:13](554 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:28, 02:41](533 MB) -PASS -- TEST 'conus13km_control_gnu' [05:55, 03:10](865 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:56, 01:35](875 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:51, 01:53](541 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:25] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:43, 05:54](724 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:29] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:22, 02:36](708 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:22, 02:32](707 MB) -PASS -- TEST 'conus13km_debug_gnu' [09:04, 07:03](883 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:58, 07:02](574 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [07:52, 05:48](893 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:42, 07:07](952 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:12, 06:36] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:22, 02:39](733 MB) - -PASS -- COMPILE 's2swa_gnu' [18:11, 16:22] - -PASS -- COMPILE 's2s_gnu' [17:12, 16:00] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [22:10, 19:48](1493 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [05:11, 03:09] - -PASS -- COMPILE 's2sw_pdlib_gnu' [18:12, 16:12] -FAILED: TEST TIMED OUT -- TEST 'cpld_control_pdlib_p8_gnu' [, ]( MB) +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:39, 05:05](978 MB) + +PASS -- COMPILE 'atm_gnu' [06:11, 04:34] +PASS -- TEST 'control_c48_gnu' [11:37, 09:37](1501 MB) +PASS -- TEST 'control_stochy_gnu' [05:21, 03:29](497 MB) +PASS -- TEST 'control_ras_gnu' [06:22, 04:54](506 MB) +PASS -- TEST 'control_p8_gnu' [07:54, 05:15](1464 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [07:52, 05:11](1456 MB) +PASS -- TEST 'control_flake_gnu' [12:24, 10:43](542 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:11, 04:20] +PASS -- TEST 'rap_control_gnu' [13:41, 11:30](809 MB) +PASS -- TEST 'rap_decomp_gnu' [13:32, 11:37](804 MB) +PASS -- TEST 'rap_2threads_gnu' [19:34, 17:22](909 MB) +PASS -- TEST 'rap_restart_gnu' [07:39, 05:51](574 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:41, 11:30](808 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:34, 11:42](836 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:41, 08:34](577 MB) +PASS -- TEST 'hrrr_control_gnu' [07:38, 05:54](806 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:37, 05:51](821 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [10:40, 08:42](901 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:31, 06:01](835 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [05:25, 03:09](556 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:26, 03:02](649 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [13:45, 11:11](801 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 03:54] +PASS -- TEST 'control_csawmg_gnu' [10:37, 08:40](735 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:36] +PASS -- TEST 'control_diag_debug_gnu' [03:47, 01:40](1271 MB) +PASS -- TEST 'regional_debug_gnu' [13:37, 11:15](752 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:25, 02:37](819 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:24, 02:33](815 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:22, 02:38](822 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:22, 02:37](822 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:33, 02:51](905 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:23, 04:12](819 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:22, 02:42](819 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:21, 02:41](817 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:23, 01:35](453 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:20, 01:50](447 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:51, 01:55](1440 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:26, 03:01](820 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:25, 02:38](824 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:37, 04:24](825 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:26] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 04:11] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:39, 09:44](691 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:33, 05:06](702 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [17:33, 15:31](736 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [09:30, 08:00](730 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:30, 05:19](694 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:37, 07:19](552 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:29, 02:39](533 MB) +PASS -- TEST 'conus13km_control_gnu' [05:53, 03:07](867 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:46, 01:33](874 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:46, 01:50](559 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:12, 09:37] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:40, 05:58](726 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [09:11, 07:10] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:22, 02:36](713 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:21, 02:29](706 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:44, 06:55](879 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [09:42, 07:08](571 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [07:38, 05:52](890 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:39, 06:58](947 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:58] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:24, 02:37](729 MB) + +PASS -- COMPILE 's2swa_gnu' [18:11, 16:37] + +PASS -- COMPILE 's2s_gnu' [17:12, 16:02] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [21:09, 18:37](1495 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [05:11, 03:07] + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 15:45] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [39:10, 36:37](1457 MB) PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 02:57] -PASS -- COMPILE 'datm_cdeps_gnu' [17:10, 15:46] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:17, 03:03](695 MB) +PASS -- COMPILE 'datm_cdeps_gnu' [17:11, 15:46] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:19, 03:06](694 MB) SYNOPSIS: -Starting Date/Time: 20241223 23:57:41 -Ending Date/Time: 20241224 03:10:48 -Total Time: 03h:13m:25s +Starting Date/Time: 20241231 07:40:14 +Ending Date/Time: 20241231 09:46:59 +Total Time: 02h:07m:02s Compiles Completed: 61/61 -Tests Completed: 248/249 -Failed Tests: -* TEST cpld_control_pdlib_p8_gnu: FAILED: TEST TIMED OUT --- LOG: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3170497/cpld_control_pdlib_p8_gnu/err - -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 HERA REGRESSION TESTING LOG==== -====START OF HERA REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -c77a0687d9a5ab0824c214110da808ae53a01af0 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) - ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) - b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - adbb06556f9b9123d24248e4505cd3dedee1d01a FV3 (remotes/origin/rrfsv1-to-ufs/dev5) - 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) - 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) - 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) - 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: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241223 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_1932497 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2sw_pdlib_gnu' [18:12, 16:22] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [33:10, 31:07](1452 MB) - -SYNOPSIS: -Starting Date/Time: 20241224 14:21:55 -Ending Date/Time: 20241224 16:06:12 -Total Time: 01h:44m:24s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 249/249 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 8829ab72dc..315e88b531 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7 +1,7 @@ ====START OF hercules REGRESSION TESTING LOG==== UFSWM hash used in testing: -388f6a4b578c8b1e03e4f3402bb7e41bf1500e02 +6f98d9fd013aa2f95cb202742161cf92c0d894d1 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - adbb06556f9b9123d24248e4505cd3dedee1d01a FV3 (remotes/origin/rrfsv1-to-ufs/dev5) + 74a1c84b0f6e2063f073a5b189a0a3b84f59dbca FV3 (remotes/origin/rrfsv1-to-ufs/dev7) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 2594a9e2c73c2a3a9acaa78fef8252cf5de3b524 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5530-g2594a9e2) + 92f1ad01744cb8309b459d3ecec5a02ab526e043 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5533-g92f1ad01) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -37,391 +37,455 @@ 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-20241223 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/jongkim/FV3_RT/rt_2194341 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20241230 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/jongkim/FV3_RT/rt_3122672 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-r) - USE ROCOTO -PASS -- COMPILE s2swa_32bit_intel [10:25, 10:25](1 warnings,11 remarks) -PASS -- TEST cpld_control_p8_mixedmode_intel [15:02, 14:04] (2139112 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_intel [15:18, 15:17](1 warnings,11 remarks) -PASS -- TEST cpld_control_gfsv17_intel [19:25, 18:03] (2000788 MB) -PASS -- TEST cpld_control_gfsv17_iau_intel [20:39, 19:29] (2311692 MB) -PASS -- TEST cpld_restart_gfsv17_intel [08:13, 07:22] (1345936 MB) -PASS -- TEST cpld_mpi_gfsv17_intel [19:58, 18:47] (1920180 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [14:56, 14:56](1 warnings,11 remarks) -PASS -- TEST cpld_control_sfs_intel [17:21, 16:57] (1987032 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [05:06, 05:06](1520 warnings,1988 remarks) -PASS -- TEST cpld_debug_gfsv17_intel [26:35, 25:39] (1968804 MB) - -PASS -- COMPILE s2swa_intel [11:51, 11:50](1 warnings,11 remarks) -PASS -- TEST cpld_control_p8_intel [17:25, 16:04] (2199096 MB) -PASS -- TEST cpld_control_p8.v2.sfc_intel [16:32, 15:32] (2197004 MB) -PASS -- TEST cpld_restart_p8_intel [09:27, 08:00] (1987348 MB) -PASS -- TEST cpld_control_qr_p8_intel [15:49, 15:05] (2225448 MB) -PASS -- TEST cpld_restart_qr_p8_intel [11:24, 10:20] (1742564 MB) -PASS -- TEST cpld_2threads_p8_intel [19:30, 18:43] (2431100 MB) -PASS -- TEST cpld_decomp_p8_intel [16:04, 15:22] (2192864 MB) -PASS -- TEST cpld_mpi_p8_intel [15:20, 14:31] (2102388 MB) -PASS -- TEST cpld_control_ciceC_p8_intel [17:07, 16:22] (2195008 MB) -PASS -- TEST cpld_control_c192_p8_intel [19:25, 18:06] (2982804 MB) -PASS -- TEST cpld_restart_c192_p8_intel [08:20, 06:31] (2910172 MB) -PASS -- TEST cpld_bmark_p8_intel [25:55, 21:04] (3881460 MB) -PASS -- TEST cpld_restart_bmark_p8_intel [19:29, 13:06] (3698240 MB) -PASS -- TEST cpld_s2sa_p8_intel [09:32, 08:43] (2104360 MB) - -PASS -- COMPILE s2sw_intel [11:33, 11:33](1 warnings,11 remarks) -PASS -- TEST cpld_control_noaero_p8_intel [14:36, 13:52] (2003516 MB) -PASS -- TEST cpld_control_nowave_noaero_p8_intel [13:15, 12:22] (2110800 MB) - -PASS -- COMPILE s2swa_debug_intel [06:16, 06:16](1410 warnings,1218 remarks) -PASS -- TEST cpld_debug_p8_intel [20:34, 19:33] (2218040 MB) - -PASS -- COMPILE s2sw_debug_intel [05:35, 05:35](1410 warnings,1218 remarks) -PASS -- TEST cpld_debug_noaero_p8_intel [10:18, 09:36] (2045940 MB) - -PASS -- COMPILE s2s_aoflux_intel [10:10, 10:10],3 remarks) -PASS -- TEST cpld_control_noaero_p8_agrid_intel [05:24, 04:43] (2063708 MB) - -PASS -- COMPILE s2s_intel [09:37, 09:37](1 warnings,3 remarks) -PASS -- TEST cpld_control_c48_intel [06:28, 06:01] (3034820 MB) -PASS -- TEST cpld_warmstart_c48_intel [02:48, 02:23] (3014952 MB) -PASS -- TEST cpld_restart_c48_intel [01:26, 01:02] (2467080 MB) - -PASS -- COMPILE s2swa_faster_intel [12:03, 12:02](1 warnings,11 remarks) -PASS -- TEST cpld_control_p8_faster_intel [16:08, 15:19] (2206988 MB) - -PASS -- COMPILE s2sw_pdlib_intel [15:12, 15:12](1 warnings,11 remarks) -PASS -- TEST cpld_control_pdlib_p8_intel [24:28, 23:51] (2080724 MB) -PASS -- TEST cpld_restart_pdlib_p8_intel [12:37, 12:01] (1410448 MB) -PASS -- TEST cpld_mpi_pdlib_p8_intel [27:35, 26:52] (2002880 MB) - -PASS -- COMPILE s2sw_pdlib_debug_intel [04:11, 04:11](1520 warnings,1988 remarks) -PASS -- TEST cpld_debug_pdlib_p8_intel [28:28, 27:44] (2020444 MB) - -PASS -- COMPILE atm_dyn32_intel [09:04, 09:04](1 warnings,1 remarks) -PASS -- TEST control_flake_intel [03:11, 03:02] (709776 MB) -PASS -- TEST control_CubedSphereGrid_intel [03:19, 02:54] (1595512 MB) -PASS -- TEST control_CubedSphereGrid_parallel_intel [03:15, 02:53] (1602200 MB) -PASS -- TEST control_latlon_intel [03:30, 03:10] (1590992 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_intel [03:20, 02:59] (1580856 MB) -PASS -- TEST control_c48_intel [10:40, 10:14] (1703480 MB) -PASS -- TEST control_c48.v2.sfc_intel [06:29, 06:09] (832744 MB) -PASS -- TEST control_c192_intel [10:59, 10:29] (1762840 MB) -PASS -- TEST control_c384_intel [13:38, 12:31] (2008112 MB) -PASS -- TEST control_c384gdas_intel [09:02, 07:29] (1497964 MB) -PASS -- TEST control_stochy_intel [01:45, 01:32] (655844 MB) -PASS -- TEST control_stochy_restart_intel [01:09, 00:55] (540712 MB) -PASS -- TEST control_lndp_intel [01:34, 01:26] (677268 MB) -PASS -- TEST control_iovr4_intel [02:33, 02:20] (662680 MB) -PASS -- TEST control_iovr5_intel [02:24, 02:16] (651260 MB) -PASS -- TEST control_p8_intel [03:53, 03:18] (1889684 MB) -PASS -- TEST control_p8.v2.sfc_intel [04:16, 03:20] (1899212 MB) -PASS -- TEST control_p8_ugwpv1_intel [03:54, 03:16] (1877984 MB) -PASS -- TEST control_restart_p8_intel [02:27, 01:51] (1149124 MB) -PASS -- TEST control_noqr_p8_intel [05:48, 05:03] (1862164 MB) -PASS -- TEST control_restart_noqr_p8_intel [02:38, 02:09] (1207908 MB) -PASS -- TEST control_decomp_p8_intel [04:23, 03:48] (1867080 MB) -PASS -- TEST control_2threads_p8_intel [07:12, 06:14] (1936032 MB) -PASS -- TEST control_p8_lndp_intel [06:10, 05:52] (1873500 MB) -PASS -- TEST control_p8_rrtmgp_intel [04:19, 03:41] (1968628 MB) -PASS -- TEST control_p8_mynn_intel [03:34, 02:51] (1900128 MB) -PASS -- TEST merra2_thompson_intel [05:19, 04:26] (1901964 MB) -PASS -- TEST regional_control_intel [05:08, 04:47] (1229252 MB) -PASS -- TEST regional_restart_intel [02:53, 02:40] (1186692 MB) -PASS -- TEST regional_decomp_intel [05:18, 04:57] (1216768 MB) -PASS -- TEST regional_2threads_intel [05:57, 05:41] (1112784 MB) -PASS -- TEST regional_noquilt_intel [05:23, 05:03] (1547136 MB) -PASS -- TEST regional_netcdf_parallel_intel [05:11, 04:48] (1226908 MB) -PASS -- TEST regional_2dwrtdecomp_intel [05:49, 05:31] (1227212 MB) -PASS -- TEST regional_wofs_intel [06:31, 06:13] (2081308 MB) - -PASS -- COMPILE rrfs_intel [08:21, 08:21](3 warnings,9 remarks) -PASS -- TEST rap_control_intel [07:40, 07:00] (1202828 MB) -PASS -- TEST regional_spp_sppt_shum_skeb_intel [04:11, 03:36] (1379776 MB) -PASS -- TEST rap_decomp_intel [07:45, 07:08] (1157900 MB) -PASS -- TEST rap_2threads_intel [10:05, 09:27] (1226756 MB) -PASS -- TEST rap_restart_intel [04:21, 03:38] (1141320 MB) -PASS -- TEST rap_sfcdiff_intel [07:25, 06:48] (1205084 MB) -PASS -- TEST rap_sfcdiff_decomp_intel [07:42, 07:04] (1164676 MB) -PASS -- TEST rap_sfcdiff_restart_intel [05:51, 05:10] (1201172 MB) -PASS -- TEST hrrr_control_intel [04:06, 03:27] (1062452 MB) -PASS -- TEST hrrr_control_decomp_intel [04:21, 03:35] (1060680 MB) -PASS -- TEST hrrr_control_2threads_intel [05:25, 04:47] (1134900 MB) -PASS -- TEST hrrr_control_restart_intel [02:03, 01:54] (1004852 MB) -PASS -- TEST rrfs_v1beta_intel [07:14, 06:34] (1221700 MB) -PASS -- TEST rrfs_v1nssl_intel [09:26, 09:17] (1996552 MB) -PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [09:14, 09:04] (2203040 MB) - -PASS -- COMPILE csawmg_intel [08:38, 08:38] -PASS -- TEST control_csawmg_intel [05:54, 05:37] (1050144 MB) -PASS -- TEST control_ras_intel [03:03, 02:54] (828896 MB) - -PASS -- COMPILE wam_intel [08:02, 08:02],1 remarks) -PASS -- TEST control_wam_intel [10:14, 09:51] (1659656 MB) - -PASS -- COMPILE atm_faster_dyn32_intel [08:23, 08:23],1 remarks) -PASS -- TEST control_p8_faster_intel [03:08, 02:28] (1895312 MB) -PASS -- TEST regional_control_faster_intel [04:35, 04:17] (1223080 MB) - -PASS -- COMPILE atm_debug_dyn32_intel [06:00, 06:00](882 warnings,9 remarks) -PASS -- TEST control_CubedSphereGrid_debug_intel [02:29, 02:05] (1616312 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [02:35, 02:08] (1615280 MB) -PASS -- TEST control_stochy_debug_intel [02:55, 02:45] (834376 MB) -PASS -- TEST control_lndp_debug_intel [02:44, 02:37] (838340 MB) -PASS -- TEST control_csawmg_debug_intel [04:50, 04:35] (1158576 MB) -PASS -- TEST control_ras_debug_intel [02:35, 02:29] (848652 MB) -PASS -- TEST control_diag_debug_intel [02:47, 02:25] (1695016 MB) -PASS -- TEST control_debug_p8_intel [02:43, 02:20] (1904616 MB) -PASS -- TEST regional_debug_intel [15:21, 15:03] (1145800 MB) -PASS -- TEST rap_control_debug_intel [04:39, 04:27] (1230304 MB) -PASS -- TEST hrrr_control_debug_intel [04:34, 04:21] (1219928 MB) -PASS -- TEST hrrr_gf_debug_intel [04:35, 04:22] (1228256 MB) -PASS -- TEST hrrr_c3_debug_intel [04:26, 04:14] (1235400 MB) -PASS -- TEST rap_unified_drag_suite_debug_intel [04:40, 04:28] (1215932 MB) -PASS -- TEST rap_diag_debug_intel [04:46, 04:31] (1315460 MB) -PASS -- TEST rap_cires_ugwp_debug_intel [04:35, 04:28] (1233320 MB) -PASS -- TEST rap_unified_ugwp_debug_intel [04:47, 04:36] (1223828 MB) -PASS -- TEST rap_lndp_debug_intel [04:26, 04:20] (1223332 MB) -PASS -- TEST rap_progcld_thompson_debug_intel [04:33, 04:17] (1231492 MB) -PASS -- TEST rap_noah_debug_intel [04:22, 04:09] (1229144 MB) -PASS -- TEST rap_sfcdiff_debug_intel [04:25, 04:14] (1231408 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [07:17, 07:07] (1228172 MB) -PASS -- TEST rrfs_v1beta_debug_intel [04:30, 04:19] (1205696 MB) -PASS -- TEST rap_clm_lake_debug_intel [04:36, 04:21] (1221144 MB) -PASS -- TEST rap_flake_debug_intel [04:22, 04:13] (1221364 MB) -PASS -- TEST gnv1_c96_no_nest_debug_intel [08:02, 07:21] (1222560 MB) - -PASS -- COMPILE atm_debug_dyn32_gnu [04:33, 04:32] -PASS -- TEST control_csawmg_debug_gnu [02:37, 02:18] (1042500 MB) - -PASS -- COMPILE wam_debug_intel [03:46, 03:46](837 warnings,1 remarks) - -PASS -- COMPILE rrfs_dyn32_phy32_intel [08:48, 08:47](3 warnings,8 remarks) -PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [03:58, 03:19] (1261008 MB) -PASS -- TEST rap_control_dyn32_phy32_intel [06:21, 05:41] (1132832 MB) -PASS -- TEST hrrr_control_dyn32_phy32_intel [03:43, 02:57] (1013668 MB) -PASS -- TEST rap_2threads_dyn32_phy32_intel [08:43, 08:02] (1130856 MB) -PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [04:50, 04:05] (1067924 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [03:55, 03:11] (985676 MB) -PASS -- TEST rap_restart_dyn32_phy32_intel [04:56, 04:12] (1099424 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [02:07, 01:46] (945344 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [09:17, 09:17](3 warnings,8 remarks) -PASS -- TEST conus13km_control_intel [02:09, 01:42] (1273688 MB) -PASS -- TEST conus13km_2threads_intel [01:19, 00:59] (1176216 MB) -PASS -- TEST conus13km_restart_mismatch_intel [01:28, 01:05] (1141380 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_intel [08:47, 08:46](3 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_intel [04:30, 03:58] (1082472 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [03:30, 03:30](785 warnings,8 remarks) -PASS -- TEST rap_control_debug_dyn32_phy32_intel [05:11, 04:59] (1098140 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [05:00, 04:51] (1109168 MB) -PASS -- TEST conus13km_debug_intel [12:53, 12:34] (1335768 MB) -PASS -- TEST conus13km_debug_qr_intel [13:06, 12:36] (975376 MB) -PASS -- TEST conus13km_debug_2threads_intel [13:05, 12:39] (1243024 MB) -PASS -- TEST conus13km_radar_tten_debug_intel [12:41, 12:19] (1410788 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [03:45, 03:45](785 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_debug_intel [04:32, 04:20] (1170648 MB) - -PASS -- COMPILE hafsw_intel [09:54, 09:54](1 warnings,10 remarks) -PASS -- TEST hafs_regional_atm_intel [06:21, 05:27] (846820 MB) -PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [06:12, 06:00] (1272676 MB) -PASS -- TEST hafs_regional_atm_ocn_intel [08:05, 07:03] (939660 MB) -PASS -- TEST hafs_regional_atm_wav_intel [15:32, 14:32] (959676 MB) -PASS -- TEST hafs_regional_atm_ocn_wav_intel [18:32, 17:17] (976144 MB) -PASS -- TEST hafs_regional_1nest_atm_intel [07:12, 06:30] (590744 MB) -PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [10:12, 09:04] (605320 MB) -PASS -- TEST hafs_global_1nest_atm_intel [03:49, 03:17] (436488 MB) -PASS -- TEST hafs_global_multiple_4nests_atm_intel [10:52, 09:06] (548184 MB) -PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [04:55, 04:21] (596456 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [04:48, 04:08] (602628 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [05:51, 05:07] (656244 MB) -PASS -- TEST hafs_global_storm_following_1nest_atm_intel [01:49, 01:32] (454400 MB) - -PASS -- COMPILE hafsw_debug_intel [04:38, 04:38](1462 warnings,1490 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [12:58, 12:03] (679036 MB) - -PASS -- COMPILE hafsw_faster_intel [10:06, 10:06],9 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [18:44, 17:54] (715988 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [19:29, 18:37] (804992 MB) - -PASS -- COMPILE hafs_mom6w_intel [10:11, 10:10],8 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [13:35, 12:14] (806380 MB) - -PASS -- COMPILE hafs_all_intel [09:16, 09:16],9 remarks) -PASS -- TEST hafs_regional_docn_intel [06:40, 05:42] (929868 MB) -PASS -- TEST hafs_regional_docn_oisst_intel [06:36, 05:42] (901800 MB) -PASS -- TEST hafs_regional_datm_cdeps_intel [17:02, 16:30] (1346864 MB) - -PASS -- COMPILE datm_cdeps_intel [05:57, 05:56],2 remarks) -PASS -- TEST datm_cdeps_control_cfsr_intel [02:16, 02:11] (1153200 MB) -PASS -- TEST datm_cdeps_restart_cfsr_intel [01:21, 01:17] (1119488 MB) -PASS -- TEST datm_cdeps_control_gefs_intel [02:51, 02:45] (1019536 MB) -PASS -- TEST datm_cdeps_iau_gefs_intel [02:15, 02:08] (1016832 MB) -PASS -- TEST datm_cdeps_stochy_gefs_intel [02:11, 02:07] (1025156 MB) -PASS -- TEST datm_cdeps_ciceC_cfsr_intel [02:53, 02:49] (1154996 MB) -PASS -- TEST datm_cdeps_bulk_cfsr_intel [02:19, 02:10] (1159408 MB) -PASS -- TEST datm_cdeps_bulk_gefs_intel [02:10, 02:05] (1018620 MB) -PASS -- TEST datm_cdeps_mx025_cfsr_intel [05:33, 04:58] (1161984 MB) -PASS -- TEST datm_cdeps_mx025_gefs_intel [05:34, 04:57] (1162568 MB) -PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [02:11, 02:08] (1122076 MB) -PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [04:07, 04:02] (2495592 MB) -PASS -- TEST datm_cdeps_gfs_intel [03:10, 03:04] (2393028 MB) - -PASS -- COMPILE datm_cdeps_debug_intel [03:05, 03:05](2 warnings,2 remarks) -PASS -- TEST datm_cdeps_debug_cfsr_intel [05:20, 05:15] (1082364 MB) - -PASS -- COMPILE datm_cdeps_faster_intel [05:24, 05:23],2 remarks) -PASS -- TEST datm_cdeps_control_cfsr_faster_intel [02:11, 02:07] (1152092 MB) - -PASS -- COMPILE datm_cdeps_land_intel [01:01, 01:01],1 remarks) -PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:11, 00:55] (337988 MB) -PASS -- TEST datm_cdeps_lnd_era5_intel [01:05, 00:51] (575904 MB) -PASS -- TEST datm_cdeps_lnd_era5_rst_intel [00:45, 00:34] (574492 MB) - -PASS -- COMPILE atm_ds2s_docn_pcice_intel [08:48, 08:48],3 remarks) -PASS -- TEST atm_ds2s_docn_pcice_intel [04:06, 03:33] (2016676 MB) - -PASS -- COMPILE atm_ds2s_docn_dice_intel [09:02, 09:02](1 warnings,1 remarks) -PASS -- TEST atm_ds2s_docn_dice_intel [08:13, 07:42] (2026176 MB) - -PASS -- COMPILE atml_intel [09:26, 09:26](8 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_sbs_intel [06:38, 05:50] (1894760 MB) -PASS -- TEST control_p8_atmlnd_intel [07:04, 06:01] (1890184 MB) -PASS -- TEST control_restart_p8_atmlnd_intel [04:21, 03:40] (1136884 MB) - -PASS -- COMPILE atml_debug_intel [04:35, 04:35](880 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_debug_intel [06:36, 05:51] (1924004 MB) - -PASS -- COMPILE atmw_intel [08:56, 08:56],9 remarks) -PASS -- TEST atmwav_control_noaero_p8_intel [02:18, 01:43] (1938216 MB) - -PASS -- COMPILE atmaero_intel [09:14, 09:14],1 remarks) -PASS -- TEST atmaero_control_p8_intel [04:34, 03:56] (2016024 MB) -PASS -- TEST atmaero_control_p8_rad_intel [05:14, 04:25] (1788788 MB) -PASS -- TEST atmaero_control_p8_rad_micro_intel [05:12, 04:34] (1803232 MB) - -PASS -- COMPILE atmaq_debug_intel [03:51, 03:51](882 warnings,6 remarks) -PASS -- TEST regional_atmaq_debug_intel [18:14, 17:10] (4531312 MB) - -PASS -- COMPILE atm_fbh_intel [08:22, 08:22](3 warnings,8 remarks) -PASS -- TEST cpld_regional_atm_fbh_intel [10:51, 10:39] (1105764 MB) - -PASS -- COMPILE datm_cdeps_intelllvm [11:06, 11:06] -PASS -- TEST datm_cdeps_control_cfsr_intelllvm [02:20, 02:16] (1148104 MB) - -PASS -- COMPILE datm_cdeps_debug_intelllvm [01:41, 01:41](2 warnings -PASS -- TEST datm_cdeps_debug_cfsr_intelllvm [06:05, 06:01] (1088836 MB) - -PASS -- COMPILE atm_gnu [03:53, 03:53] -PASS -- TEST control_c48_gnu [11:21, 10:55] (1520512 MB) -PASS -- TEST control_stochy_gnu [02:48, 02:33] (719316 MB) -PASS -- TEST control_ras_gnu [04:16, 04:03] (722836 MB) -PASS -- TEST control_p8_gnu [06:10, 05:19] (1748972 MB) -PASS -- TEST control_p8_ugwpv1_gnu [05:59, 05:17] (1719852 MB) -PASS -- TEST control_flake_gnu [04:51, 04:40] (800672 MB) - -PASS -- COMPILE rrfs_gnu [03:51, 03:51] -PASS -- TEST rap_control_gnu [11:42, 11:05] (1073300 MB) -PASS -- TEST rap_decomp_gnu [11:58, 11:18] (1072824 MB) -PASS -- TEST rap_2threads_gnu [11:57, 11:16] (999640 MB) -PASS -- TEST rap_restart_gnu [06:24, 05:38] (878000 MB) -PASS -- TEST rap_sfcdiff_gnu [12:05, 11:27] (1072084 MB) -PASS -- TEST rap_sfcdiff_decomp_gnu [11:53, 11:11] (1071792 MB) -PASS -- TEST rap_sfcdiff_restart_gnu [09:06, 08:35] (876412 MB) -PASS -- TEST hrrr_control_gnu [06:16, 05:38] (1064104 MB) -PASS -- TEST hrrr_control_noqr_gnu [06:22, 05:47] (1130752 MB) -PASS -- TEST hrrr_control_2threads_gnu [08:02, 07:18] (1038968 MB) -PASS -- TEST hrrr_control_decomp_gnu [06:36, 05:51] (1060040 MB) -PASS -- TEST hrrr_control_restart_gnu [03:19, 02:58] (874984 MB) -PASS -- TEST hrrr_control_restart_noqr_gnu [03:27, 02:59] (924540 MB) -PASS -- TEST rrfs_v1beta_gnu [12:01, 11:17] (1073588 MB) - -PASS -- COMPILE csawmg_gnu [04:04, 04:04] -PASS -- TEST control_csawmg_gnu [10:00, 09:42] (1058876 MB) - -PASS -- COMPILE atm_dyn32_debug_gnu [05:58, 05:58] -PASS -- TEST control_diag_debug_gnu [01:51, 01:23] (1614512 MB) -PASS -- TEST regional_debug_gnu [08:41, 08:08] (1101272 MB) -PASS -- TEST rap_control_debug_gnu [02:24, 02:15] (1088592 MB) -PASS -- TEST hrrr_control_debug_gnu [02:21, 02:08] (1076408 MB) -PASS -- TEST hrrr_gf_debug_gnu [02:17, 02:05] (1084428 MB) -PASS -- TEST hrrr_c3_debug_gnu [02:27, 02:14] (1083724 MB) -PASS -- TEST rap_diag_debug_gnu [02:28, 02:14] (1256124 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [03:30, 03:22] (1082908 MB) -PASS -- TEST rap_progcld_thompson_debug_gnu [02:19, 02:08] (1086392 MB) -PASS -- TEST rrfs_v1beta_debug_gnu [02:15, 02:04] (1079664 MB) -PASS -- TEST control_ras_debug_gnu [01:24, 01:17] (713296 MB) -PASS -- TEST control_stochy_debug_gnu [01:36, 01:27] (713532 MB) -PASS -- TEST control_debug_p8_gnu [02:25, 02:02] (1694412 MB) -PASS -- TEST rap_flake_debug_gnu [02:14, 02:05] (1089744 MB) -PASS -- TEST rap_clm_lake_debug_gnu [02:14, 02:06] (1089480 MB) -PASS -- TEST gnv1_c96_no_nest_debug_gnu [04:26, 03:41] (1087740 MB) - -PASS -- COMPILE wam_debug_gnu [02:39, 02:38] -PASS -- TEST control_wam_debug_gnu [06:10, 05:50] (1558356 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_gnu [03:52, 03:51] -PASS -- TEST rap_control_dyn32_phy32_gnu [08:15, 07:41] (951728 MB) -PASS -- TEST hrrr_control_dyn32_phy32_gnu [04:59, 04:09] (940204 MB) -PASS -- TEST rap_2threads_dyn32_phy32_gnu [07:43, 07:04] (896188 MB) -PASS -- TEST hrrr_control_2threads_dyn32_phy32_gnu [07:46, 06:55] (899828 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [04:56, 04:10] (945604 MB) -PASS -- TEST rap_restart_dyn32_phy32_gnu [06:26, 05:51] (866104 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [02:15, 02:06] (854276 MB) -PASS -- TEST conus13km_control_gnu [03:05, 02:39] (1258488 MB) -PASS -- TEST conus13km_2threads_gnu [07:28, 07:06] (1106316 MB) -PASS -- TEST conus13km_restart_mismatch_gnu [01:56, 01:31] (923268 MB) - -PASS -- COMPILE atm_dyn64_phy32_gnu [08:32, 08:32] -PASS -- TEST rap_control_dyn64_phy32_gnu [05:12, 04:46] (986228 MB) - -PASS -- COMPILE atm_dyn32_phy32_debug_gnu [05:49, 05:48] -PASS -- TEST rap_control_debug_dyn32_phy32_gnu [02:13, 02:04] (976232 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [02:13, 02:04] (962028 MB) -PASS -- TEST conus13km_debug_gnu [06:07, 05:43] (1276240 MB) -PASS -- TEST conus13km_debug_qr_gnu [06:22, 05:57] (951240 MB) -PASS -- TEST conus13km_debug_2threads_gnu [15:11, 14:54] (1124084 MB) -PASS -- TEST conus13km_radar_tten_debug_gnu [06:02, 05:40] (1343044 MB) - -PASS -- COMPILE atm_dyn64_phy32_debug_gnu [06:18, 06:18] -PASS -- TEST rap_control_dyn64_phy32_debug_gnu [02:25, 02:13] (996764 MB) - -PASS -- COMPILE s2swa_gnu [15:48, 15:47] -PASS -- COMPILE s2s_gnu [16:48, 16:48] -PASS -- TEST cpld_control_nowave_noaero_p8_gnu [15:58, 15:09] (3070848 MB) - -PASS -- COMPILE s2swa_debug_gnu [04:34, 04:34] -PASS -- COMPILE s2sw_pdlib_gnu [17:02, 17:02] -PASS -- TEST cpld_control_pdlib_p8_gnu [41:53, 41:10] (3080356 MB) - -PASS -- COMPILE s2sw_pdlib_debug_gnu [03:34, 03:33] -PASS -- TEST cpld_debug_pdlib_p8_gnu [16:49, 15:42] (3050308 MB) - -PASS -- COMPILE datm_cdeps_gnu [14:20, 14:20] -PASS -- TEST datm_cdeps_control_cfsr_gnu [02:26, 02:18] (771268 MB) +PASS -- COMPILE s2swa_32bit_intel [11:37, 11:36](1 warnings,11 remarks) +PASS -- TEST cpld_control_p8_mixedmode_intel [14:50, 14:03] (2132956 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_intel [16:28, 16:28](1 warnings,11 remarks) +PASS -- TEST cpld_control_gfsv17_intel [18:12, 17:20] (1993744 MB) +PASS -- TEST cpld_control_gfsv17_iau_intel [20:25, 19:19] (2325680 MB) +PASS -- TEST cpld_restart_gfsv17_intel [11:21, 10:01] (1353880 MB) +PASS -- TEST cpld_mpi_gfsv17_intel [19:36, 18:40] (1906552 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [15:19, 15:19](1 warnings,11 remarks) +PASS -- TEST cpld_control_sfs_intel [17:34, 17:04] (1977628 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [05:27, 05:26](1520 warnings,1988 remarks) +PASS -- TEST cpld_debug_gfsv17_intel [26:16, 25:18] (1972364 MB) + +PASS -- COMPILE s2swa_intel [11:06, 11:05](1 warnings,11 remarks) +PASS -- TEST cpld_control_p8_intel [16:42, 15:51] (2205236 MB) +PASS -- TEST cpld_control_p8.v2.sfc_intel [16:57, 16:12] (2192164 MB) +PASS -- TEST cpld_restart_p8_intel [08:55, 08:01] (1967712 MB) +PASS -- TEST cpld_control_qr_p8_intel [15:36, 14:52] (2226560 MB) +PASS -- TEST cpld_restart_qr_p8_intel [09:03, 08:04] (1745780 MB) +PASS -- TEST cpld_2threads_p8_intel [21:10, 20:25] (2443996 MB) +PASS -- TEST cpld_decomp_p8_intel [16:05, 15:21] (2189840 MB) +PASS -- TEST cpld_mpi_p8_intel [13:19, 12:51] (2097436 MB) +PASS -- TEST cpld_control_ciceC_p8_intel [15:52, 15:05] (2195752 MB) +PASS -- TEST cpld_control_c192_p8_intel [17:16, 16:04] (2985576 MB) +PASS -- TEST cpld_restart_c192_p8_intel [08:19, 06:34] (2904336 MB) +PASS -- TEST cpld_bmark_p8_intel [25:31, 20:33] (3896612 MB) +PASS -- TEST cpld_restart_bmark_p8_intel [18:54, 11:49] (3694588 MB) +PASS -- TEST cpld_s2sa_p8_intel [09:05, 08:27] (2108260 MB) + +PASS -- COMPILE s2sw_intel [10:39, 10:38](1 warnings,11 remarks) +PASS -- TEST cpld_control_noaero_p8_intel [14:18, 13:39] (2003760 MB) +PASS -- TEST cpld_control_nowave_noaero_p8_intel [11:42, 11:03] (2114732 MB) + +PASS -- COMPILE s2swa_debug_intel [05:37, 05:37](1410 warnings,1218 remarks) +PASS -- TEST cpld_debug_p8_intel [20:22, 19:32] (2231320 MB) + +PASS -- COMPILE s2sw_debug_intel [05:32, 05:32](1410 warnings,1218 remarks) +PASS -- TEST cpld_debug_noaero_p8_intel [09:44, 09:02] (2048448 MB) + +PASS -- COMPILE s2s_aoflux_intel [10:21, 10:21],3 remarks) +PASS -- TEST cpld_control_noaero_p8_agrid_intel [05:42, 05:03] (2071560 MB) + +PASS -- COMPILE s2s_intel [10:06, 10:06](1 warnings,3 remarks) +PASS -- TEST cpld_control_c48_intel [06:40, 06:14] (3040528 MB) +PASS -- TEST cpld_warmstart_c48_intel [02:09, 01:46] (3020676 MB) +PASS -- TEST cpld_restart_c48_intel [01:43, 01:09] (2475924 MB) + +PASS -- COMPILE s2swa_faster_intel [12:07, 12:07](1 warnings,11 remarks) +PASS -- TEST cpld_control_p8_faster_intel [15:44, 14:50] (2207608 MB) + +PASS -- COMPILE s2sw_pdlib_intel [14:32, 14:31](1 warnings,11 remarks) +PASS -- TEST cpld_control_pdlib_p8_intel [24:44, 23:40] (2063412 MB) +PASS -- TEST cpld_restart_pdlib_p8_intel [12:59, 12:02] (1443588 MB) +PASS -- TEST cpld_mpi_pdlib_p8_intel [26:26, 25:36] (2002500 MB) + +PASS -- COMPILE s2sw_pdlib_debug_intel [05:29, 05:29](1520 warnings,1988 remarks) +PASS -- TEST cpld_debug_pdlib_p8_intel [28:40, 27:50] (2004048 MB) + +PASS -- COMPILE atm_dyn32_intel [08:40, 08:40](1 warnings,1 remarks) +PASS -- TEST control_flake_intel [03:08, 02:59] (720996 MB) +PASS -- TEST control_CubedSphereGrid_intel [03:14, 02:46] (1596484 MB) +PASS -- TEST control_CubedSphereGrid_parallel_intel [03:27, 02:57] (1595036 MB) +PASS -- TEST control_latlon_intel [03:16, 02:59] (1589452 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_intel [03:15, 02:53] (1577692 MB) +PASS -- TEST control_c48_intel [10:32, 10:14] (1700296 MB) +PASS -- TEST control_c48.v2.sfc_intel [06:20, 06:06] (803496 MB) +PASS -- TEST control_c192_intel [11:00, 10:30] (1767596 MB) +PASS -- TEST control_c384_intel [13:34, 12:19] (2037936 MB) +PASS -- TEST control_c384gdas_intel [09:16, 07:42] (1506636 MB) +PASS -- TEST control_stochy_intel [02:03, 01:41] (666836 MB) +PASS -- TEST control_stochy_restart_intel [01:20, 01:02] (542508 MB) +PASS -- TEST control_lndp_intel [01:34, 01:26] (666332 MB) +PASS -- TEST control_iovr4_intel [02:30, 02:16] (659428 MB) +PASS -- TEST control_iovr5_intel [02:33, 02:17] (658556 MB) +PASS -- TEST control_p8_intel [04:16, 03:28] (1885196 MB) +PASS -- TEST control_p8.v2.sfc_intel [04:16, 03:26] (1902868 MB) +PASS -- TEST control_p8_ugwpv1_intel [04:08, 03:28] (1885412 MB) +PASS -- TEST control_restart_p8_intel [02:31, 01:55] (1156396 MB) +PASS -- TEST control_noqr_p8_intel [03:55, 03:24] (1873080 MB) +PASS -- TEST control_restart_noqr_p8_intel [02:57, 02:31] (1203848 MB) +PASS -- TEST control_decomp_p8_intel [04:00, 03:21] (1867696 MB) +PASS -- TEST control_2threads_p8_intel [05:25, 04:39] (1940040 MB) +PASS -- TEST control_p8_lndp_intel [06:27, 06:00] (1880820 MB) +PASS -- TEST control_p8_rrtmgp_intel [05:06, 04:27] (1975368 MB) +PASS -- TEST control_p8_mynn_intel [04:41, 03:57] (1895792 MB) +PASS -- TEST merra2_thompson_intel [04:45, 03:52] (1893224 MB) +PASS -- TEST regional_control_intel [05:08, 04:45] (1227488 MB) +PASS -- TEST regional_restart_intel [02:56, 02:41] (1179928 MB) +PASS -- TEST regional_decomp_intel [05:07, 04:52] (1215992 MB) +PASS -- TEST regional_2threads_intel [06:01, 05:39] (1116492 MB) +PASS -- TEST regional_noquilt_intel [04:54, 04:38] (1546412 MB) +PASS -- TEST regional_netcdf_parallel_intel [05:13, 04:52] (1227972 MB) +PASS -- TEST regional_2dwrtdecomp_intel [04:52, 04:38] (1226884 MB) +PASS -- TEST regional_wofs_intel [06:19, 06:04] (2067684 MB) + +PASS -- COMPILE rrfs_intel [08:54, 08:54](3 warnings,9 remarks) +PASS -- TEST rap_control_intel [07:16, 06:42] (1202400 MB) +PASS -- TEST regional_spp_sppt_shum_skeb_intel [04:04, 03:28] (1379076 MB) +PASS -- TEST rap_decomp_intel [07:45, 07:09] (1118372 MB) +PASS -- TEST rap_2threads_intel [09:58, 09:19] (1212532 MB) +PASS -- TEST rap_restart_intel [04:11, 03:33] (1163084 MB) +PASS -- TEST rap_sfcdiff_intel [07:22, 06:49] (1214344 MB) +PASS -- TEST rap_sfcdiff_decomp_intel [09:34, 08:53] (1120888 MB) +PASS -- TEST rap_sfcdiff_restart_intel [05:58, 05:26] (1236432 MB) +PASS -- TEST hrrr_control_intel [04:04, 03:26] (1075128 MB) +PASS -- TEST hrrr_control_decomp_intel [04:22, 03:37] (1042124 MB) +PASS -- TEST hrrr_control_2threads_intel [05:32, 04:45] (1151720 MB) +PASS -- TEST hrrr_control_restart_intel [02:03, 01:54] (1022800 MB) +PASS -- TEST rrfs_v1beta_intel [07:40, 06:43] (1199828 MB) +PASS -- TEST rrfs_v1nssl_intel [10:11, 10:01] (2001576 MB) +PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [09:53, 09:38] (2194456 MB) + +PASS -- COMPILE csawmg_intel [08:22, 08:22] +PASS -- TEST control_csawmg_intel [05:57, 05:42] (1049804 MB) +PASS -- TEST control_ras_intel [03:07, 02:55] (829864 MB) + +PASS -- COMPILE wam_intel [08:24, 08:23],1 remarks) +PASS -- TEST control_wam_intel [10:21, 09:56] (1663980 MB) + +PASS -- COMPILE atm_faster_dyn32_intel [09:01, 09:00],1 remarks) +PASS -- TEST control_p8_faster_intel [03:29, 02:51] (1893012 MB) +PASS -- TEST regional_control_faster_intel [05:30, 05:16] (1228856 MB) + +PASS -- COMPILE atm_debug_dyn32_intel [06:30, 06:30](882 warnings,9 remarks) +PASS -- TEST control_CubedSphereGrid_debug_intel [02:12, 01:53] (1608280 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [02:28, 02:00] (1621212 MB) +PASS -- TEST control_stochy_debug_intel [03:03, 02:52] (845872 MB) +PASS -- TEST control_lndp_debug_intel [02:37, 02:22] (841692 MB) +PASS -- TEST control_csawmg_debug_intel [05:26, 05:01] (1151568 MB) +PASS -- TEST control_ras_debug_intel [02:48, 02:33] (839636 MB) +PASS -- TEST control_diag_debug_intel [02:49, 02:28] (1691712 MB) +PASS -- TEST control_debug_p8_intel [02:36, 02:15] (1917220 MB) +PASS -- TEST regional_debug_intel [15:40, 15:24] (1145824 MB) +PASS -- TEST rap_control_debug_intel [04:34, 04:21] (1225716 MB) +PASS -- TEST hrrr_control_debug_intel [04:34, 04:20] (1229644 MB) +PASS -- TEST hrrr_gf_debug_intel [04:35, 04:25] (1221608 MB) +PASS -- TEST hrrr_c3_debug_intel [04:28, 04:18] (1221220 MB) +PASS -- TEST rap_unified_drag_suite_debug_intel [04:47, 04:34] (1223232 MB) +PASS -- TEST rap_diag_debug_intel [05:00, 04:35] (1305028 MB) +PASS -- TEST rap_cires_ugwp_debug_intel [04:32, 04:22] (1231292 MB) +PASS -- TEST rap_unified_ugwp_debug_intel [04:32, 04:21] (1222388 MB) +PASS -- TEST rap_lndp_debug_intel [04:30, 04:20] (1212640 MB) +PASS -- TEST rap_progcld_thompson_debug_intel [04:41, 04:31] (1241420 MB) +PASS -- TEST rap_noah_debug_intel [04:40, 04:32] (1225356 MB) +PASS -- TEST rap_sfcdiff_debug_intel [05:16, 04:48] (1217332 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [07:31, 07:05] (1218272 MB) +PASS -- TEST rrfs_v1beta_debug_intel [05:52, 05:38] (1222176 MB) +PASS -- TEST rap_clm_lake_debug_intel [04:26, 04:15] (1219204 MB) +PASS -- TEST rap_flake_debug_intel [04:54, 04:44] (1236044 MB) +PASS -- TEST gnv1_c96_no_nest_debug_intel [07:53, 07:14] (1224192 MB) + +PASS -- COMPILE atm_debug_dyn32_gnu [04:29, 04:29] +PASS -- TEST control_csawmg_debug_gnu [05:09, 04:55] (1043136 MB) + +PASS -- COMPILE wam_debug_intel [04:21, 04:20](837 warnings,1 remarks) + +PASS -- COMPILE rrfs_dyn32_phy32_intel [09:09, 09:08](3 warnings,8 remarks) +PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [04:50, 03:43] (1252768 MB) +PASS -- TEST rap_control_dyn32_phy32_intel [07:14, 06:11] (1144580 MB) +PASS -- TEST hrrr_control_dyn32_phy32_intel [04:17, 03:09] (1023596 MB) +PASS -- TEST rap_2threads_dyn32_phy32_intel [09:04, 08:04] (1116196 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [04:52, 04:06] (1073192 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [04:06, 03:19] (1000128 MB) +PASS -- TEST rap_restart_dyn32_phy32_intel [05:02, 04:18] (1105948 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [02:50, 02:23] (949168 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [09:08, 09:08](3 warnings,8 remarks) +PASS -- TEST conus13km_control_intel [02:13, 01:46] (1294352 MB) +PASS -- TEST conus13km_2threads_intel [01:26, 01:03] (1178400 MB) +PASS -- TEST conus13km_restart_mismatch_intel [01:26, 01:02] (1143856 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_intel [08:30, 08:30](3 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_intel [04:04, 03:46] (1070500 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [04:06, 04:06](785 warnings,8 remarks) +PASS -- TEST rap_control_debug_dyn32_phy32_intel [04:32, 04:23] (1101936 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [04:28, 04:20] (1105488 MB) +PASS -- TEST conus13km_debug_intel [12:54, 12:33] (1339092 MB) +PASS -- TEST conus13km_debug_qr_intel [12:58, 12:34] (990532 MB) +PASS -- TEST conus13km_debug_2threads_intel [13:19, 12:57] (1236496 MB) +PASS -- TEST conus13km_radar_tten_debug_intel [12:32, 12:11] (1402784 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [03:46, 03:45](785 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_debug_intel [05:00, 04:53] (1161004 MB) + +PASS -- COMPILE hafsw_intel [10:01, 10:01](1 warnings,10 remarks) +PASS -- TEST hafs_regional_atm_intel [06:25, 05:29] (841196 MB) +PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [06:16, 06:03] (1258832 MB) +PASS -- TEST hafs_regional_atm_ocn_intel [08:49, 07:41] (919436 MB) +PASS -- TEST hafs_regional_atm_wav_intel [15:24, 14:29] (954904 MB) +PASS -- TEST hafs_regional_atm_ocn_wav_intel [19:06, 17:57] (975624 MB) +PASS -- TEST hafs_regional_1nest_atm_intel [07:08, 06:24] (597268 MB) +PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [09:33, 08:23] (603404 MB) +PASS -- TEST hafs_global_1nest_atm_intel [03:46, 03:15] (437776 MB) +PASS -- TEST hafs_global_multiple_4nests_atm_intel [10:29, 08:43] (551212 MB) +PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [04:55, 04:21] (602032 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [04:42, 04:07] (596544 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [05:53, 05:13] (655228 MB) +PASS -- TEST hafs_global_storm_following_1nest_atm_intel [01:42, 01:25] (456572 MB) + +PASS -- COMPILE hafsw_debug_intel [04:50, 04:50](1462 warnings,1490 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [12:29, 11:39] (634824 MB) + +PASS -- COMPILE hafsw_faster_intel [10:14, 10:14],9 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [19:57, 18:49] (729264 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [18:52, 18:01] (829688 MB) + +PASS -- COMPILE hafs_mom6w_intel [11:14, 11:14],8 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [13:53, 12:19] (814136 MB) + +PASS -- COMPILE hafs_all_intel [10:30, 10:30],9 remarks) +PASS -- TEST hafs_regional_docn_intel [06:25, 05:37] (931724 MB) +PASS -- TEST hafs_regional_docn_oisst_intel [06:27, 05:34] (900696 MB) +PASS -- TEST hafs_regional_datm_cdeps_intel [17:07, 16:33] (1345116 MB) + +PASS -- COMPILE datm_cdeps_intel [05:44, 05:44],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_intel [02:59, 02:53] (1155020 MB) +PASS -- TEST datm_cdeps_restart_cfsr_intel [01:48, 01:43] (1103680 MB) +PASS -- TEST datm_cdeps_control_gefs_intel [03:00, 02:54] (1014516 MB) +PASS -- TEST datm_cdeps_iau_gefs_intel [03:08, 03:02] (1016512 MB) +PASS -- TEST datm_cdeps_stochy_gefs_intel [02:59, 02:55] (1014516 MB) +PASS -- TEST datm_cdeps_ciceC_cfsr_intel [02:17, 02:11] (1158500 MB) +PASS -- TEST datm_cdeps_bulk_cfsr_intel [02:17, 02:12] (1160928 MB) +PASS -- TEST datm_cdeps_bulk_gefs_intel [02:52, 02:48] (1025576 MB) +PASS -- TEST datm_cdeps_mx025_cfsr_intel [05:30, 04:57] (1161872 MB) +PASS -- TEST datm_cdeps_mx025_gefs_intel [05:23, 04:51] (1155820 MB) +PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [03:00, 02:58] (1134020 MB) +PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [04:04, 04:00] (2463232 MB) +PASS -- TEST datm_cdeps_gfs_intel [04:19, 04:14] (2414464 MB) + +PASS -- COMPILE datm_cdeps_debug_intel [03:04, 03:04](2 warnings,2 remarks) +PASS -- TEST datm_cdeps_debug_cfsr_intel [05:23, 05:17] (1073072 MB) + +PASS -- COMPILE datm_cdeps_faster_intel [06:01, 06:01],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_faster_intel [02:30, 02:25] (1130580 MB) + +PASS -- COMPILE datm_cdeps_land_intel [00:51, 00:50],1 remarks) +PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:17, 01:01] (346440 MB) +PASS -- TEST datm_cdeps_lnd_era5_intel [01:17, 01:01] (577320 MB) +PASS -- TEST datm_cdeps_lnd_era5_rst_intel [01:10, 00:58] (576376 MB) + +PASS -- COMPILE atm_ds2s_docn_pcice_intel [10:13, 10:13],3 remarks) +PASS -- TEST atm_ds2s_docn_pcice_intel [03:57, 03:21] (2021592 MB) + +PASS -- COMPILE atm_ds2s_docn_dice_intel [09:03, 09:03](1 warnings,1 remarks) +PASS -- TEST atm_ds2s_docn_dice_intel [08:47, 08:14] (2024328 MB) + +PASS -- COMPILE atml_intel [09:54, 09:54](8 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_sbs_intel [06:35, 05:48] (1886232 MB) +PASS -- TEST control_p8_atmlnd_intel [06:22, 05:35] (1901508 MB) +PASS -- TEST control_restart_p8_atmlnd_intel [03:52, 03:20] (1141600 MB) + +PASS -- COMPILE atml_debug_intel [04:53, 04:53](880 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_debug_intel [06:05, 05:17] (1914448 MB) + +PASS -- COMPILE atmw_intel [09:36, 09:36],9 remarks) +PASS -- TEST atmwav_control_noaero_p8_intel [02:25, 01:46] (1936540 MB) + +PASS -- COMPILE atmaero_intel [09:25, 09:25],1 remarks) +PASS -- TEST atmaero_control_p8_intel [04:28, 03:50] (2001624 MB) +PASS -- TEST atmaero_control_p8_rad_intel [05:05, 04:28] (1777984 MB) +PASS -- TEST atmaero_control_p8_rad_micro_intel [05:08, 04:35] (1795768 MB) + +PASS -- COMPILE atmaq_debug_intel [04:34, 04:34](882 warnings,6 remarks) +PASS -- TEST regional_atmaq_debug_intel [18:35, 17:28] (4508052 MB) + +PASS -- COMPILE atm_fbh_intel [08:27, 08:26](3 warnings,8 remarks) +PASS -- TEST cpld_regional_atm_fbh_intel [10:21, 10:08] (1110040 MB) + +PASS -- COMPILE datm_cdeps_intelllvm [11:36, 11:36] +PASS -- TEST datm_cdeps_control_cfsr_intelllvm [02:58, 02:54] (1131908 MB) + +PASS -- COMPILE datm_cdeps_debug_intelllvm [02:02, 02:02](2 warnings +PASS -- TEST datm_cdeps_debug_cfsr_intelllvm [06:11, 06:05] (1094068 MB) + +PASS -- COMPILE atm_gnu [04:24, 04:24] +PASS -- TEST control_c48_gnu [12:19, 11:55] (1523960 MB) +PASS -- TEST control_stochy_gnu [02:51, 02:43] (733260 MB) +PASS -- TEST control_ras_gnu [04:14, 04:05] (724168 MB) +PASS -- TEST control_p8_gnu [06:18, 05:37] (1721168 MB) +PASS -- TEST control_p8_ugwpv1_gnu [06:04, 05:31] (1717784 MB) +PASS -- TEST control_flake_gnu [05:33, 05:23] (807292 MB) + +PASS -- COMPILE rrfs_gnu [04:23, 04:23] +PASS -- TEST rap_control_gnu [08:52, 08:16] (1074284 MB) +PASS -- TEST rap_decomp_gnu [09:01, 08:29] (1070996 MB) +PASS -- TEST rap_restart_gnu [04:49, 04:21] (878588 MB) +PASS -- TEST rap_sfcdiff_gnu [08:49, 08:12] (1072536 MB) +PASS -- TEST rap_sfcdiff_decomp_gnu [09:06, 08:30] (1073080 MB) +PASS -- TEST rap_sfcdiff_restart_gnu [07:11, 06:27] (878788 MB) +PASS -- TEST hrrr_control_gnu [05:16, 04:37] (1059200 MB) +PASS -- TEST hrrr_control_noqr_gnu [04:53, 04:21] (1131592 MB) +PASS -- TEST hrrr_control_2threads_gnu [04:28, 03:51] (1037960 MB) +PASS -- TEST hrrr_control_decomp_gnu [04:59, 04:21] (1058812 MB) +PASS -- TEST hrrr_control_restart_gnu [02:35, 02:18] (877948 MB) +PASS -- TEST hrrr_control_restart_noqr_gnu [02:37, 02:23] (925836 MB) +PASS -- TEST rrfs_v1beta_gnu [08:58, 08:14] (1070552 MB) + +PASS -- COMPILE csawmg_gnu [04:36, 04:36] +PASS -- TEST control_csawmg_gnu [07:24, 07:03] (1054520 MB) + +PASS -- COMPILE atm_dyn32_debug_gnu [06:37, 06:37] +PASS -- TEST control_diag_debug_gnu [01:39, 01:16] (1618304 MB) +PASS -- TEST regional_debug_gnu [07:41, 07:26] (1138892 MB) +PASS -- TEST rap_control_debug_gnu [02:19, 02:13] (1089000 MB) +PASS -- TEST hrrr_control_debug_gnu [02:26, 02:14] (1080952 MB) +PASS -- TEST hrrr_gf_debug_gnu [02:26, 02:15] (1086672 MB) +PASS -- TEST hrrr_c3_debug_gnu [02:29, 02:19] (1086712 MB) +PASS -- TEST rap_diag_debug_gnu [02:40, 02:23] (1262768 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [03:41, 03:30] (1087032 MB) +PASS -- TEST rap_progcld_thompson_debug_gnu [02:25, 02:15] (1091840 MB) +PASS -- TEST rrfs_v1beta_debug_gnu [02:23, 02:12] (1084988 MB) +PASS -- TEST control_ras_debug_gnu [01:58, 01:26] (720796 MB) +PASS -- TEST control_stochy_debug_gnu [01:29, 01:23] (721996 MB) +PASS -- TEST control_debug_p8_gnu [01:50, 01:26] (1715212 MB) +PASS -- TEST rap_flake_debug_gnu [02:35, 02:24] (1089704 MB) +PASS -- TEST rap_clm_lake_debug_gnu [02:15, 02:07] (1094952 MB) +PASS -- TEST gnv1_c96_no_nest_debug_gnu [04:08, 03:34] (1089976 MB) + +PASS -- COMPILE wam_debug_gnu [03:23, 03:22] +PASS -- TEST control_wam_debug_gnu [05:35, 05:15] (1554916 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_gnu [04:18, 04:18] +PASS -- TEST rap_control_dyn32_phy32_gnu [07:58, 07:23] (955532 MB) +PASS -- TEST hrrr_control_dyn32_phy32_gnu [04:32, 03:48] (948404 MB) +PASS -- TEST rap_2threads_dyn32_phy32_gnu [07:27, 06:53] (890524 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_gnu [07:23, 06:38] (883112 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [04:51, 04:05] (940528 MB) +PASS -- TEST rap_restart_dyn32_phy32_gnu [06:14, 05:39] (853552 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [02:30, 02:09] (853140 MB) +PASS -- TEST conus13km_control_gnu [03:02, 02:37] (1255676 MB) +PASS -- TEST conus13km_2threads_gnu [07:23, 06:59] (1107712 MB) +PASS -- TEST conus13km_restart_mismatch_gnu [01:51, 01:31] (923212 MB) + +PASS -- COMPILE atm_dyn64_phy32_gnu [09:16, 09:16] +PASS -- TEST rap_control_dyn64_phy32_gnu [06:14, 05:52] (980276 MB) + +PASS -- COMPILE atm_dyn32_phy32_debug_gnu [06:52, 06:52] +PASS -- TEST rap_control_debug_dyn32_phy32_gnu [02:17, 02:09] (964732 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [02:16, 02:05] (965516 MB) +PASS -- TEST conus13km_debug_gnu [06:01, 05:37] (1271964 MB) +PASS -- TEST conus13km_debug_qr_gnu [06:12, 05:48] (946388 MB) +PASS -- TEST conus13km_debug_2threads_gnu [13:17, 12:56] (1128100 MB) +PASS -- TEST conus13km_radar_tten_debug_gnu [06:00, 05:40] (1338736 MB) + +PASS -- COMPILE atm_dyn64_phy32_debug_gnu [06:58, 06:58] +PASS -- TEST rap_control_dyn64_phy32_debug_gnu [02:21, 02:15] (990732 MB) + +PASS -- COMPILE s2swa_gnu [17:22, 17:22] +PASS -- COMPILE s2s_gnu [17:03, 17:03] +PASS -- TEST cpld_control_nowave_noaero_p8_gnu [14:55, 14:16] (3068516 MB) + +PASS -- COMPILE s2swa_debug_gnu [04:13, 04:13] +PASS -- COMPILE s2sw_pdlib_gnu [17:39, 17:39] +PASS -- TEST cpld_control_pdlib_p8_gnu [40:42, 39:57] (2922608 MB) + +PASS -- COMPILE s2sw_pdlib_debug_gnu [03:11, 03:11] +PASS -- TEST cpld_debug_pdlib_p8_gnu [16:02, 15:23] (3044048 MB) + +PASS -- COMPILE datm_cdeps_gnu [16:37, 16:37] +PASS -- TEST datm_cdeps_control_cfsr_gnu [05:46, 05:40] (759144 MB) SYNOPSIS: -Starting Date/Time: 2024-12-26 17:49:37 -Ending Date/Time: 2024-12-26 22:41:22 -Total Time: 04h:51m:45s +Starting Date/Time: 2024-12-31 16:03:18 +Ending Date/Time: 2025-01-01 08:22:26 +Total Time: 16h:19m:08s Compiles Completed: 60/60 -Tests Completed: 247/247 - +Tests Completed: 246/247 +./logs/log_hercules/rt_rap_2threads_gnu.log: does not exist NOTES: A file test_changes.list was generated but is empty. If you are using this log as a pull request verification, please commit test_changes.list. -Result: SUCCESS +Result: Failed ====END OF hercules REGRESSION TESTING LOG==== +====START OF HERCULES REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +6f98d9fd013aa2f95cb202742161cf92c0d894d1 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) + ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) + 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) + b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 74a1c84b0f6e2063f073a5b189a0a3b84f59dbca FV3 (remotes/origin/rrfsv1-to-ufs/dev7) + 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) + 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) + 92f1ad01744cb8309b459d3ecec5a02ab526e043 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5533-g92f1ad01) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) +-179cae1dd84401cf25d250bd9102e66560a9d328 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) + 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) + 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20241230 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_3131063 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-r) - USE ROCOTO + +PASS -- COMPILE 'rrfs_gnu' [04:37, 04:37] +PASS -- TEST 'rap_control_gnu' [08:38, 08:17](1073 MB) +PASS -- TEST 'rap_2threads_gnu' [07:45, 07:06](999 MB) + +SYNOPSIS: +Starting Date/Time: 20250101 08:50:51 +Ending Date/Time: 20250101 09:05:27 +Total Time: 00h:14m:54s +Compiles Completed: 1/1 +Tests Completed: 2/2 + +NOTES: +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: SUCCESS + +====END OF HERCULES REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 03ee568f96..09b812545b 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -ad560f4d81e3fe50c21b316a5207b2fbbd8a4e2b +7e1e51eae8370dc0c2e21bd6ba6a784f29cf589c Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - adbb06556f9b9123d24248e4505cd3dedee1d01a FV3 (remotes/origin/rrfsv1-to-ufs/dev5) + 74a1c84b0f6e2063f073a5b189a0a3b84f59dbca FV3 (remotes/origin/rrfsv1-to-ufs/dev7) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 2594a9e2c73c2a3a9acaa78fef8252cf5de3b524 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5530-g2594a9e2) + 92f1ad01744cb8309b459d3ecec5a02ab526e043 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5533-g92f1ad01) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -38,350 +38,260 @@ 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-20241223 -COMPARISON DIRECTORY: /lfs5/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_531216 +BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20241230 +COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3081145 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic +* (-a) - HPC PROJECT ACCOUNT: h-nems +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [45:14, 43:56] ( 1 warnings 1397 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:24, 13:42](2015 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [47:14, 46:09] ( 1 warnings 1444 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [36:06, 22:55](1879 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:24, 24:23](2015 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:08, 09:41](1146 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [35:18, 26:05](1852 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [56:15, 54:45] ( 1 warnings 1441 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [28:51, 22:22](1878 MB) - -PASS -- COMPILE 's2swa_intel' [46:14, 44:14] ( 1 warnings 1416 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [26:23, 17:54](2021 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [25:35, 17:18](2034 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:13, 08:54](1712 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [25:17, 17:21](2065 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [11:20, 09:06](1713 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [24:10, 16:12](2251 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [25:07, 17:15](2047 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [22:27, 14:07](2008 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [25:36, 17:11](2040 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [17:22, 09:27](1981 MB) - -PASS -- COMPILE 's2sw_intel' [43:14, 41:19] ( 1 warnings 1301 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [12:31, 09:50](1901 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [17:42, 14:17](1970 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:21] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [37:35, 27:30](2090 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:50] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [22:16, 11:35](1936 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [39:13, 37:22] ( 1019 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:26, 05:34](1974 MB) - -PASS -- COMPILE 's2s_intel' [39:13, 37:46] ( 1 warnings 1042 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [12:57, 10:21](2998 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:55, 03:04](3007 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:49, 01:47](2450 MB) - -PASS -- COMPILE 's2swa_faster_intel' [43:18, 32:41] ( 1 warnings 1632 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [19:46, 16:33](2044 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [55:15, 45:24] ( 1 warnings 1361 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [38:50, 33:37](1926 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [20:39, 16:25](1145 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [43:33, 39:23](1908 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:11, 06:03] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:28, 38:44](1936 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [39:14, 37:58] ( 1 warnings 1125 remarks ) -PASS -- TEST 'control_flake_intel' [08:32, 04:30](653 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [19:10, 04:12](1541 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:15, 04:41](1544 MB) -PASS -- TEST 'control_latlon_intel' [20:07, 04:12](1536 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [21:15, 04:22](1530 MB) -PASS -- TEST 'control_c48_intel' [34:16, 18:12](1692 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [13:39, 10:12](830 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [25:15, 18:07](1694 MB) -PASS -- TEST 'control_c192_intel' [20:27, 16:04](1695 MB) -PASS -- TEST 'control_c384_intel' [28:38, 23:14](1803 MB) -PASS -- TEST 'control_c384gdas_intel' [19:08, 13:21](1008 MB) -PASS -- TEST 'control_stochy_intel' [04:30, 02:07](600 MB) -PASS -- TEST 'control_stochy_restart_intel' [14:26, 01:14](435 MB) -PASS -- TEST 'control_lndp_intel' [04:30, 02:00](606 MB) -PASS -- TEST 'control_iovr4_intel' [05:32, 03:16](601 MB) -PASS -- TEST 'control_iovr5_intel' [05:33, 03:17](600 MB) -PASS -- TEST 'control_p8_intel' [09:39, 04:54](1826 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [22:41, 03:57](1839 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [18:22, 04:38](1821 MB) -PASS -- TEST 'control_restart_p8_intel' [11:58, 02:37](1055 MB) -PASS -- TEST 'control_noqr_p8_intel' [20:31, 04:41](1830 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:02, 02:35](1080 MB) -PASS -- TEST 'control_decomp_p8_intel' [19:22, 04:47](1814 MB) -PASS -- TEST 'control_2threads_p8_intel' [22:20, 04:25](1911 MB) -PASS -- TEST 'control_p8_lndp_intel' [23:13, 08:36](1828 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [21:25, 05:13](1902 MB) -PASS -- TEST 'control_p8_mynn_intel' [18:28, 03:58](1848 MB) -PASS -- TEST 'merra2_thompson_intel' [19:24, 04:19](1839 MB) -PASS -- TEST 'regional_control_intel' [23:02, 07:06](1047 MB) -PASS -- TEST 'regional_restart_intel' [05:40, 03:47](1020 MB) -PASS -- TEST 'regional_decomp_intel' [16:04, 07:30](1039 MB) -PASS -- TEST 'regional_2threads_intel' [19:40, 04:14](1011 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [20:47, 07:09](1040 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [21:36, 07:08](1036 MB) - -PASS -- COMPILE 'rrfs_intel' [36:14, 34:47] ( 3 warnings 1100 remarks ) -PASS -- TEST 'rap_control_intel' [20:44, 10:06](988 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [11:06, 05:37](1193 MB) -PASS -- TEST 'rap_decomp_intel' [15:54, 10:38](977 MB) -PASS -- TEST 'rap_2threads_intel' [19:44, 09:32](1054 MB) -PASS -- TEST 'rap_restart_intel' [08:53, 05:14](992 MB) -PASS -- TEST 'rap_sfcdiff_intel' [16:54, 10:05](987 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [18:43, 10:43](978 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:50, 07:32](998 MB) -PASS -- TEST 'hrrr_control_intel' [10:53, 05:16](974 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [11:39, 05:26](976 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [10:37, 04:45](1045 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:27, 02:45](913 MB) -PASS -- TEST 'rrfs_v1beta_intel' [15:02, 10:01](982 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [18:27, 13:29](1932 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [17:30, 12:53](1929 MB) - -PASS -- COMPILE 'csawmg_intel' [37:14, 34:51] ( 1099 remarks ) -PASS -- TEST 'control_csawmg_intel' [12:40, 08:08](961 MB) -PASS -- TEST 'control_ras_intel' [08:29, 04:21](666 MB) - -PASS -- COMPILE 'wam_intel' [37:13, 35:26] ( 1003 remarks ) -PASS -- TEST 'control_wam_intel' [16:53, 14:22](1605 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [39:13, 37:48] ( 1303 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:56, 03:35](1840 MB) -PASS -- TEST 'regional_control_faster_intel' [09:36, 06:30](1042 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [13:11, 08:35] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:50, 02:49](1573 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:52, 02:59](1566 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:27, 03:46](778 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:28, 03:23](774 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:44, 05:25](1083 MB) -PASS -- TEST 'control_ras_debug_intel' [05:27, 03:25](788 MB) -PASS -- TEST 'control_diag_debug_intel' [05:50, 03:24](1640 MB) -PASS -- TEST 'control_debug_p8_intel' [05:52, 03:23](1845 MB) -PASS -- TEST 'regional_debug_intel' [23:48, 22:02](1051 MB) -PASS -- TEST 'rap_control_debug_intel' [08:30, 06:12](1159 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:29, 06:03](1159 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:29, 06:12](1156 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:29, 06:10](1169 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:26, 06:05](1163 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:36, 06:25](1253 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:24, 06:17](1168 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:26, 06:13](1165 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:26, 06:10](1175 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:28, 06:10](1163 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:25, 05:59](1163 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:26, 06:10](1162 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:26, 10:00](1161 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:26, 06:02](1160 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:28, 06:09](1159 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:26, 06:09](1162 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:51, 10:37](1166 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:11, 05:14] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:58, 16:38](1639 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:13, 30:54] ( 3 warnings 1032 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:07, 05:09](1057 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:38, 08:15](899 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:37, 04:23](873 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:50, 07:50](912 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:44, 03:59](902 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:37, 04:51](858 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [12:48, 06:13](899 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:28, 02:22](848 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [34:14, 32:32] ( 3 warnings 1207 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_control_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'conus13km_2threads_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'conus13km_restart_mismatch_intel' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [33:12, 31:39] ( 3 warnings 1052 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:02, 05:25](907 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:15] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:37, 06:03](1043 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:36, 05:55](1040 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_qr_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_2threads_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_radar_tten_debug_intel' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 05:06] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:26, 06:11](1074 MB) - -PASS -- COMPILE 'hafsw_intel' [42:13, 41:04] ( 1 warnings 1435 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:31, 06:57](707 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [15:42, 06:21](1085 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [21:54, 09:18](760 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:44, 15:41](779 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [31:05, 19:07](805 MB) -PASS -- TEST 'gnv1_nested_intel' [19:03, 06:46](1666 MB) - -PASS -- COMPILE 'hafs_all_intel' [38:13, 36:45] ( 1281 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [19:29, 08:46](750 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [19:29, 08:46](737 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:11] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:25, 03:37](1079 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:23, 02:09](1039 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:23, 03:30](943 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:24, 03:32](935 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:24, 03:32](933 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:24, 03:38](1064 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:24, 03:38](1072 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:25, 03:29](939 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:25, 07:42](901 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [14:25, 07:35](849 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:22, 03:39](1066 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:24, 05:07](2443 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:24, 05:07](2367 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:22] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:23, 08:06](1021 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:12, 08:17] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:31](1075 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:50] ( 68 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:40, 01:22](239 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:32, 01:10](267 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:42](260 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [38:14, 36:33] ( 1024 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:22, 04:55](1896 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [38:14, 36:16] ( 1 warnings 1029 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [13:11, 10:36](1896 MB) - -PASS -- COMPILE 'atml_intel' [39:13, 37:20] ( 8 warnings 1174 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:26, 05:48](1861 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:30, 05:52](1845 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [13:46, 03:19](1049 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:11, 06:19] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:12, 07:27](1894 MB) - -PASS -- COMPILE 'atmw_intel' [40:13, 38:29] ( 1277 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:09, 02:30](1849 MB) - -PASS -- COMPILE 'atmaero_intel' [39:13, 36:08] ( 1107 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:04, 05:22](1911 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:02, 06:17](1713 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:55, 06:26](1722 MB) - -PASS -- COMPILE 'atm_fbh_intel' [33:13, 31:33] ( 3 warnings 1003 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:36, 15:13](1052 MB) +PASS -- COMPILE 's2swa_32bit_intel' [45:14, 43:54] ( 1 warnings 1397 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [20:16, 13:35](1999 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [50:15, 49:04] ( 1 warnings 1444 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [02:16, 23:13](1884 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:18, 24:19](2016 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:20, 09:45](1138 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [33:11, 26:20](1855 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [47:14, 45:44] ( 1 warnings 1441 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [56:55, 22:24](1880 MB) + +PASS -- COMPILE 's2swa_intel' [46:14, 44:31] ( 1 warnings 1416 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [41:25, 17:35](2049 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [42:27, 17:01](2043 MB) +PASS -- TEST 'cpld_restart_p8_intel' [24:21, 09:00](1712 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [31:15, 16:57](2059 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [34:26, 09:03](1729 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [49:13, 15:55](2260 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [33:05, 17:15](2045 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [24:21, 14:00](2003 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [36:24, 16:54](2065 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [41:19, 09:09](1998 MB) + +PASS -- COMPILE 's2sw_intel' [43:14, 41:13] ( 1 warnings 1301 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [12:28, 09:49](1903 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [17:40, 14:13](1963 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:22] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [04:24, 27:36](2079 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:11, 06:00] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [02:10, 11:37](1929 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [39:15, 37:04] ( 1019 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [23:18, 05:31](1954 MB) + +PASS -- COMPILE 's2s_intel' [08:17, 37:34] ( 1 warnings 1042 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [12:48, 10:20](3002 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:48, 03:02](3008 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:47, 01:46](2456 MB) + +PASS -- COMPILE 's2swa_faster_intel' [09:22, 32:55] ( 1 warnings 1632 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [20:29, 16:17](2064 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [29:17, 45:51] ( 1 warnings 1361 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [36:21, 33:20](1939 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [19:16, 16:26](1148 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [42:20, 39:16](1916 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [48:14, 05:57] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:12, 38:41](1940 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [47:14, 37:28] ( 1 warnings 1125 remarks ) +PASS -- TEST 'control_flake_intel' [08:31, 04:29](645 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [11:02, 04:12](1537 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [11:05, 04:31](1543 MB) +PASS -- TEST 'control_latlon_intel' [11:00, 04:15](1543 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [11:09, 04:28](1541 MB) +PASS -- TEST 'control_c48_intel' [21:08, 18:04](1704 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [12:37, 10:11](830 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [22:08, 18:04](1701 MB) +PASS -- TEST 'control_c192_intel' [24:21, 15:56](1689 MB) +PASS -- TEST 'control_c384_intel' [28:19, 23:06](1781 MB) +PASS -- TEST 'control_c384gdas_intel' [19:00, 13:27](1005 MB) +PASS -- TEST 'control_stochy_intel' [05:29, 02:13](604 MB) +PASS -- TEST 'control_stochy_restart_intel' [06:27, 01:16](434 MB) +PASS -- TEST 'control_lndp_intel' [03:29, 02:01](602 MB) +PASS -- TEST 'control_iovr4_intel' [06:31, 03:22](598 MB) +PASS -- TEST 'control_iovr5_intel' [06:31, 03:22](602 MB) +PASS -- TEST 'control_p8_intel' [11:17, 04:49](1824 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [14:27, 03:59](1844 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [11:10, 04:42](1834 MB) +PASS -- TEST 'control_restart_p8_intel' [08:52, 02:37](1065 MB) +PASS -- TEST 'control_noqr_p8_intel' [11:13, 04:40](1832 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [08:56, 02:32](1075 MB) +PASS -- TEST 'control_decomp_p8_intel' [11:11, 04:52](1815 MB) +PASS -- TEST 'control_2threads_p8_intel' [11:11, 04:25](1900 MB) +PASS -- TEST 'control_p8_lndp_intel' [13:07, 08:44](1832 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [13:16, 05:07](1901 MB) +PASS -- TEST 'control_p8_mynn_intel' [11:14, 03:57](1843 MB) +PASS -- TEST 'merra2_thompson_intel' [10:16, 04:27](1844 MB) +PASS -- TEST 'regional_control_intel' [10:58, 07:07](1032 MB) +PASS -- TEST 'regional_restart_intel' [09:34, 03:44](1023 MB) +PASS -- TEST 'regional_decomp_intel' [10:58, 07:30](1043 MB) +PASS -- TEST 'regional_2threads_intel' [11:41, 04:18](1008 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [11:40, 07:05](1038 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [11:33, 07:02](1039 MB) + +PASS -- COMPILE 'rrfs_intel' [36:13, 35:02] ( 3 warnings 1100 remarks ) +PASS -- TEST 'rap_control_intel' [14:50, 10:05](986 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:03, 05:37](1185 MB) +PASS -- TEST 'rap_decomp_intel' [12:41, 10:37](979 MB) +PASS -- TEST 'rap_2threads_intel' [11:38, 09:29](1053 MB) +PASS -- TEST 'rap_restart_intel' [09:48, 05:21](971 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:40, 10:04](989 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:38, 10:36](975 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [11:47, 07:39](1001 MB) +PASS -- TEST 'hrrr_control_intel' [08:45, 05:04](980 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:40, 05:14](979 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [10:38, 04:42](1046 MB) +PASS -- TEST 'hrrr_control_restart_intel' [07:30, 02:44](918 MB) +PASS -- TEST 'rrfs_v1beta_intel' [14:53, 09:59](986 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [17:26, 13:17](1932 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [17:27, 12:58](1931 MB) + +PASS -- COMPILE 'csawmg_intel' [36:13, 35:07] ( 1099 remarks ) +PASS -- TEST 'control_csawmg_intel' [11:46, 08:02](966 MB) +PASS -- TEST 'control_ras_intel' [06:27, 04:21](663 MB) + +PASS -- COMPILE 'wam_intel' [37:13, 35:33] ( 1003 remarks ) +PASS -- TEST 'control_wam_intel' [20:02, 14:25](1610 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [40:13, 37:54] ( 1303 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:06, 03:39](1840 MB) +PASS -- TEST 'regional_control_faster_intel' [08:50, 06:37](1034 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:11, 08:27] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:43, 02:50](1542 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:50, 02:42](1560 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:26, 03:48](774 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:23, 03:24](777 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:39, 05:24](1092 MB) +PASS -- TEST 'control_ras_debug_intel' [05:24, 03:25](782 MB) +PASS -- TEST 'control_diag_debug_intel' [06:44, 03:22](1602 MB) +PASS -- TEST 'control_debug_p8_intel' [07:47, 03:14](1855 MB) +PASS -- TEST 'regional_debug_intel' [26:42, 21:57](1045 MB) +PASS -- TEST 'rap_control_debug_intel' [08:27, 06:06](1163 MB) +PASS -- TEST 'hrrr_control_debug_intel' [10:27, 06:01](1161 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [10:27, 06:08](1167 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [10:25, 06:07](1167 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:26, 06:08](1164 MB) +PASS -- TEST 'rap_diag_debug_intel' [10:34, 06:27](1252 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [10:27, 06:22](1164 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:24, 06:20](1160 MB) +PASS -- TEST 'rap_lndp_debug_intel' [09:27, 06:16](1160 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:29, 06:11](1162 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:26, 06:08](1163 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:25, 06:13](1159 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:26, 10:05](1162 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:25, 06:03](1156 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:27, 06:08](1169 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:24, 06:07](1166 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:51, 10:43](1184 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:11, 05:13] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:58, 16:34](1643 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:12, 30:44] ( 3 warnings 1032 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [18:12, 05:12](1065 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:39, 08:11](908 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:43, 04:17](871 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:42, 07:47](916 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:46, 03:59](901 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:42, 04:35](854 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:45, 06:12](900 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:27, 02:18](845 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [34:13, 32:12] ( 3 warnings 1207 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:49, 02:39](1099 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:40, 01:08](1026 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:42, 01:29](1008 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [33:13, 31:28] ( 3 warnings 1052 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:52, 05:29](912 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:10] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:24, 06:05](1037 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:24, 05:58](1039 MB) +PASS -- TEST 'conus13km_debug_intel' [23:56, 17:40](1142 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [23:56, 17:45](858 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [18:49, 10:10](1093 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:49, 17:43](1215 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:12, 05:04] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [11:25, 06:09](1089 MB) + +PASS -- COMPILE 'hafsw_intel' [42:14, 40:14] ( 1 warnings 1435 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [10:27, 07:22](699 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:39, 06:15](1074 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [16:08, 09:26](756 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [22:34, 15:56](788 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [23:10, 18:59](804 MB) +PASS -- TEST 'gnv1_nested_intel' [13:34, 06:41](1668 MB) + +PASS -- COMPILE 'hafs_all_intel' [38:13, 36:40] ( 1281 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:30, 08:32](752 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:29, 08:40](741 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:08] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:25, 03:35](1074 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:23, 02:12](1044 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:23, 03:28](944 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:24, 03:31](930 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:24, 03:34](936 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:25, 03:33](1059 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:24, 03:33](1074 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:25, 03:27](931 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:18, 07:46](899 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:20, 07:40](853 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:21, 03:36](1077 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:26, 05:03](2365 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:26, 05:07](2430 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:21] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:20, 08:11](1023 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:14] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:22, 03:35](1071 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:47] ( 68 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:37, 01:18](241 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:31, 01:03](266 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:43](261 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [38:14, 36:36] ( 1024 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:14, 05:02](1909 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [37:14, 36:01] ( 1 warnings 1029 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [13:04, 11:00](1909 MB) + +PASS -- COMPILE 'atml_intel' [40:14, 38:12] ( 8 warnings 1174 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:29, 05:48](1859 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:28, 05:50](1857 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:47, 03:18](1062 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:11, 06:33] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:29, 07:18](1904 MB) + +PASS -- COMPILE 'atmw_intel' [39:14, 37:25] ( 1277 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:20, 02:35](1845 MB) + +PASS -- COMPILE 'atmaero_intel' [38:14, 36:12] ( 1107 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:00, 05:20](1928 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:16, 06:18](1708 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:03, 06:30](1716 MB) + +PASS -- COMPILE 'atm_fbh_intel' [33:13, 31:31] ( 3 warnings 1003 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:39, 15:35](1055 MB) SYNOPSIS: -Starting Date/Time: 20241224 13:07:59 -Ending Date/Time: 20241224 17:36:41 -Total Time: 04h:29m:31s +Starting Date/Time: 20241231 07:41:52 +Ending Date/Time: 20241231 12:34:49 +Total Time: 04h:54m:05s Compiles Completed: 37/37 -Tests Completed: 159/166 -Failed Tests: -* TEST conus13km_control_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /mnt/lfs5/NAGAPE/epic/Jong.Kim/UFS-RT/rt-2485/tests/logs/log_jet/run_conus13km_control_intel.log -* TEST conus13km_2threads_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST conus13km_restart_mismatch_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST conus13km_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /mnt/lfs5/NAGAPE/epic/Jong.Kim/UFS-RT/rt-2485/tests/logs/log_jet/run_conus13km_debug_intel.log -* TEST conus13km_debug_qr_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /mnt/lfs5/NAGAPE/epic/Jong.Kim/UFS-RT/rt-2485/tests/logs/log_jet/run_conus13km_debug_qr_intel.log -* TEST conus13km_debug_2threads_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /mnt/lfs5/NAGAPE/epic/Jong.Kim/UFS-RT/rt-2485/tests/logs/log_jet/run_conus13km_debug_2threads_intel.log -* TEST conus13km_radar_tten_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /mnt/lfs5/NAGAPE/epic/Jong.Kim/UFS-RT/rt-2485/tests/logs/log_jet/run_conus13km_radar_tten_debug_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 JET REGRESSION TESTING LOG==== -====START OF JET REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -e5c2c724173f04b41173d307dd30ae5098e9deb4 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) - ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) - 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - adbb06556f9b9123d24248e4505cd3dedee1d01a FV3 (remotes/origin/rrfsv1-to-ufs/dev5) - 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) - 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 2594a9e2c73c2a3a9acaa78fef8252cf5de3b524 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5530-g2594a9e2) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) --179cae1dd84401cf25d250bd9102e66560a9d328 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) - 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) - 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20241223 -COMPARISON DIRECTORY: /lfs5/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_2140087 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [21:12, 06:01] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:32, 38:48](1937 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [42:14, 32:24] ( 3 warnings 1207 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:49, 02:40](1101 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:35, 01:09](1028 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:38, 01:28](1013 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [16:11, 05:14] ( 785 warnings 8 remarks ) -PASS -- TEST 'conus13km_debug_intel' [22:00, 17:45](1171 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [22:00, 17:48](891 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [14:53, 10:12](1073 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:55, 17:42](1218 MB) - -SYNOPSIS: -Starting Date/Time: 20241224 22:33:38 -Ending Date/Time: 20241224 23:37:41 -Total Time: 01h:04m:10s -Compiles Completed: 3/3 -Tests Completed: 8/8 +Tests Completed: 166/166 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index e301e29153..daa7945e9e 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -ad560f4d81e3fe50c21b316a5207b2fbbd8a4e2b +7e1e51eae8370dc0c2e21bd6ba6a784f29cf589c Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - adbb06556f9b9123d24248e4505cd3dedee1d01a FV3 (remotes/origin/rrfsv1-to-ufs/dev5) + 74a1c84b0f6e2063f073a5b189a0a3b84f59dbca FV3 (remotes/origin/rrfsv1-to-ufs/dev7) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 2594a9e2c73c2a3a9acaa78fef8252cf5de3b524 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5530-g2594a9e2) + 92f1ad01744cb8309b459d3ecec5a02ab526e043 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5533-g92f1ad01) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -38,385 +38,300 @@ 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-20241223 -COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_3676881 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241230 +COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_3676591 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [19:12, 17:32] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [33:39, 28:11](2086 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:12, 19:56] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [27:51, 22:08](1954 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:42, 23:24](2137 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:17, 08:57](1229 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [31:49, 26:16](1872 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:12, 20:32] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [24:33, 21:45](1938 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:11, 08:12] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [34:36, 30:38](1926 MB) - -PASS -- COMPILE 's2swa_intel' [19:12, 18:05] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [33:42, 29:21](2139 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [32:42, 27:40](2140 MB) -PASS -- TEST 'cpld_restart_p8_intel' [18:12, 14:22](1805 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [31:30, 27:53](2168 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [18:15, 14:21](1697 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [25:18, 20:53](2343 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [32:22, 27:52](2140 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [27:42, 23:37](2039 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [32:31, 27:55](2140 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [22:16, 16:09](2714 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [15:37, 09:12](2707 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [31:49, 20:27](3726 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:47, 10:57](3554 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:57, 08:01](2073 MB) - -PASS -- COMPILE 's2sw_intel' [18:12, 17:06] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [31:07, 27:25](1964 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:32, 11:46](2060 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:11, 08:26] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [26:11, 22:48](2168 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:11, 08:06] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [14:58, 10:12](1991 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:11, 15:17] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:34, 04:52](2023 MB) - -PASS -- COMPILE 's2s_intel' [16:11, 14:44] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [11:47, 08:42](3036 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [06:05, 03:03](3026 MB) -PASS -- TEST 'cpld_restart_c48_intel' [05:59, 02:10](2476 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:12, 17:11] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [31:12, 27:16](2137 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 18:53] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [32:25, 29:13](2011 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:37, 14:32](1255 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [36:15, 33:50](1923 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 07:23] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [39:11, 34:53](1966 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:11, 13:37] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:30, 03:44](688 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:04, 03:34](1575 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:06, 03:37](1580 MB) -PASS -- TEST 'control_latlon_intel' [07:54, 03:34](1573 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:05, 03:34](1564 MB) -PASS -- TEST 'control_c48_intel' [19:11, 14:43](1697 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:47, 08:14](839 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [19:08, 14:45](1703 MB) -PASS -- TEST 'control_c192_intel' [17:13, 13:20](1743 MB) -PASS -- TEST 'control_c384_intel' [21:22, 16:55](1985 MB) -PASS -- TEST 'control_c384gdas_intel' [16:40, 10:48](1338 MB) -PASS -- TEST 'control_stochy_intel' [04:37, 01:50](644 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:01, 01:06](470 MB) -PASS -- TEST 'control_lndp_intel' [03:28, 01:43](639 MB) -PASS -- TEST 'control_iovr4_intel' [04:32, 02:45](639 MB) -PASS -- TEST 'control_iovr5_intel' [05:39, 02:43](637 MB) -PASS -- TEST 'control_p8_intel' [07:45, 04:11](1869 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:46, 03:29](1876 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:56, 04:03](1872 MB) -PASS -- TEST 'control_restart_p8_intel' [06:04, 02:20](1087 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:53, 04:04](1854 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:12, 02:17](1124 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:55, 04:09](1845 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:48, 04:58](1927 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:59, 07:20](1868 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:54, 04:55](1935 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:50, 03:30](1887 MB) -PASS -- TEST 'merra2_thompson_intel' [07:16, 03:54](1883 MB) -PASS -- TEST 'regional_control_intel' [08:54, 06:28](1106 MB) -PASS -- TEST 'regional_restart_intel' [05:47, 03:37](1089 MB) -PASS -- TEST 'regional_decomp_intel' [08:52, 06:51](1103 MB) -PASS -- TEST 'regional_2threads_intel' [07:54, 04:46](1050 MB) -PASS -- TEST 'regional_noquilt_intel' [09:57, 06:29](1408 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:02, 06:29](1105 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:57, 06:35](1115 MB) -PASS -- TEST 'regional_wofs_intel' [09:58, 07:58](1892 MB) - -PASS -- COMPILE 'rrfs_intel' [14:12, 12:46] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [11:19, 08:28](1068 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:25, 05:12](1268 MB) -PASS -- TEST 'rap_decomp_intel' [11:10, 08:45](1021 MB) -PASS -- TEST 'rap_2threads_intel' [12:16, 10:08](1087 MB) -PASS -- TEST 'rap_restart_intel' [07:34, 04:26](1036 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:24, 08:21](1053 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:02, 08:41](1018 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:34, 06:18](1067 MB) -PASS -- TEST 'hrrr_control_intel' [07:58, 04:23](1020 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:52, 04:27](1014 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:51, 05:00](1086 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:56, 02:25](935 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:26, 08:23](1049 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:28, 09:52](1976 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:31, 09:32](2015 MB) - -PASS -- COMPILE 'csawmg_intel' [15:11, 12:22] -PASS -- TEST 'control_csawmg_intel' [09:44, 06:39](1016 MB) -PASS -- TEST 'control_ras_intel' [06:26, 03:33](712 MB) - -PASS -- COMPILE 'wam_intel' [14:11, 12:28] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:47, 12:49](1651 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:11, 12:54] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:24, 03:18](1877 MB) -PASS -- TEST 'regional_control_faster_intel' [08:37, 06:15](1107 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:11, 09:40] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:02, 02:24](1602 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:02, 02:17](1604 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:32, 03:09](815 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:32, 02:47](814 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:52, 04:30](1127 MB) -PASS -- TEST 'control_ras_debug_intel' [04:32, 02:55](820 MB) -PASS -- TEST 'control_diag_debug_intel' [05:09, 02:46](1678 MB) -PASS -- TEST 'control_debug_p8_intel' [05:00, 02:51](1898 MB) -PASS -- TEST 'regional_debug_intel' [19:44, 17:44](1103 MB) -PASS -- TEST 'rap_control_debug_intel' [06:26, 05:08](1201 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:30, 04:52](1194 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:30, 05:00](1195 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:28, 05:01](1197 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:28, 05:09](1197 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:37, 05:19](1280 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 05:05](1201 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:23, 05:02](1199 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:27, 04:55](1198 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:27, 05:01](1200 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:28, 05:07](1200 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:21, 05:46](1203 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:22, 08:07](1196 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 05:01](1203 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:25, 05:05](1194 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:23, 05:03](1200 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:27, 08:31](1204 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:11, 06:08] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:08, 13:05](1677 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:11, 12:13] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:59, 05:01](1142 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:22, 07:14](995 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:45, 03:50](925 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:56, 08:42](991 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:43, 04:27](958 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:22, 03:59](887 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:36, 05:26](973 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [08:46, 02:04](870 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:11, 12:26] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:56, 02:35](1161 MB) -PASS -- TEST 'conus13km_2threads_intel' [07:53, 01:10](1121 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [07:54, 01:28](1062 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:11, 12:52] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:49, 04:35](970 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:12, 06:08] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 05:00](1076 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:26, 04:51](1080 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_qr_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_2threads_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_radar_tten_debug_intel' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:10, 06:15] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:25, 05:02](1132 MB) - -PASS -- COMPILE 'hafsw_intel' [17:11, 15:30] ( 1 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:19, 06:07](737 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:33, 06:37](1129 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:28, 07:39](813 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [32:24, 28:38](977 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [38:28, 34:37](864 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:20, 07:14](499 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:40, 08:37](504 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:58, 03:34](375 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:52, 09:42](477 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:55, 04:48](523 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:00, 04:34](520 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:13, 05:50](566 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:33, 01:36](404 MB) -PASS -- TEST 'gnv1_nested_intel' [11:30, 04:20](1722 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:11, 07:17] ( 1462 warnings 1490 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:01, 13:35](579 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:11, 14:53] ( 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:15, 15:17](635 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:27, 15:30](722 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 14:34] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:42, 11:14](702 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:11, 13:53] ( 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:29, 07:51](805 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:18, 07:46](795 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:57, 16:23](1201 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:19] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 02:58](1151 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:22, 01:54](1092 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:50](1026 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:54](1015 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:54](1022 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:59](1161 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 03:03](1156 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:52](1021 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:09, 06:39](1014 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:09, 06:33](999 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:24, 03:00](1154 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 04:21](2402 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:19, 04:22](2448 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:10, 05:11] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:20, 06:39](1082 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:41] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 03:00](1160 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:19] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:35, 01:13](257 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:29, 01:12](330 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:31, 00:39](327 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [04:10, 01:42] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:31, 00:50](564 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:45, 00:29](446 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:11, 13:29] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:28, 04:23](1967 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:10, 12:46] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:11, 08:45](1979 MB) - -PASS -- COMPILE 'atml_intel' [16:11, 14:18] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:50, 05:05](1859 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:30, 04:59](1862 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:56, 02:48](1069 MB) - -PASS -- COMPILE 'atml_debug_intel' [09:11, 07:30] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:40, 06:03](1892 MB) - -PASS -- COMPILE 'atmw_intel' [15:11, 13:32] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:27, 02:28](1897 MB) - -PASS -- COMPILE 'atmaero_intel' [15:12, 13:13] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:29, 04:49](1967 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:21, 05:30](1762 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:13, 05:31](1759 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:11, 06:32] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [26:57, 21:15](4494 MB) - -PASS -- COMPILE 'atm_fbh_intel' [13:10, 12:09] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:27, 13:46](1112 MB) - -PASS -- COMPILE 'hafsw_intelllvm' [09:12, 07:55] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [10:08, 07:59](571 MB) - -PASS -- COMPILE 'hafsw_debug_intelllvm' [06:11, 04:44] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [24:09, 19:35](560 MB) +PASS -- COMPILE 's2swa_32bit_intel' [18:11, 16:20] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [37:51, 28:02](2079 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 19:12] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [58:53, 22:06](1958 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:21, 23:27](2138 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:14, 08:52](1224 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [02:53, 26:04](1876 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 19:57] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [57:50, 21:44](1948 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:10, 08:05] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [33:45, 30:46](1920 MB) + +PASS -- COMPILE 's2swa_intel' [18:11, 16:45] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [39:59, 29:36](2146 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [37:48, 27:39](2143 MB) +PASS -- TEST 'cpld_restart_p8_intel' [17:27, 14:26](1797 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [37:41, 27:43](2153 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [19:45, 14:35](1701 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [31:42, 20:50](2346 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [37:41, 27:34](2121 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [33:25, 23:33](2040 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [37:49, 27:30](2140 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [26:32, 15:58](2714 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [24:58, 09:22](2705 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [02:23, 20:18](3733 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:15, 11:07](3548 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [18:35, 08:02](2072 MB) + +PASS -- COMPILE 's2sw_intel' [17:11, 16:07] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [35:13, 27:25](1967 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [19:25, 11:46](2053 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:10, 08:40] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [25:19, 22:53](2170 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:10, 08:03] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:10, 10:12](1996 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:11, 15:20] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [13:28, 04:47](2031 MB) + +PASS -- COMPILE 's2s_intel' [17:11, 15:42] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [17:03, 08:45](3034 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [11:01, 03:02](3020 MB) +PASS -- TEST 'cpld_restart_c48_intel' [31:03, 01:56](2477 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:10, 17:01] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [58:32, 27:47](2151 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 18:36] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [57:22, 29:08](2010 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:32, 14:34](1256 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [36:19, 33:49](1926 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:11, 07:46] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [12:22, 34:37](1968 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [19:11, 13:23] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [24:30, 03:45](684 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [24:44, 03:40](1564 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [18:43, 03:37](1580 MB) +PASS -- TEST 'control_latlon_intel' [14:39, 03:32](1568 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [13:40, 03:37](1559 MB) +PASS -- TEST 'control_c48_intel' [23:43, 14:57](1701 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [16:37, 08:13](836 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [22:51, 14:41](1711 MB) +PASS -- TEST 'control_c192_intel' [16:52, 13:07](1729 MB) +PASS -- TEST 'control_c384_intel' [21:02, 16:42](1985 MB) +PASS -- TEST 'control_c384gdas_intel' [15:33, 09:56](1330 MB) +PASS -- TEST 'control_stochy_intel' [03:22, 01:50](639 MB) +PASS -- TEST 'control_stochy_restart_intel' [06:39, 01:04](471 MB) +PASS -- TEST 'control_lndp_intel' [06:25, 01:44](645 MB) +PASS -- TEST 'control_iovr4_intel' [09:26, 02:44](635 MB) +PASS -- TEST 'control_iovr5_intel' [09:25, 02:42](634 MB) +PASS -- TEST 'control_p8_intel' [11:09, 04:09](1862 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [10:10, 03:35](1886 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [11:19, 04:07](1854 MB) +PASS -- TEST 'control_restart_p8_intel' [05:11, 02:21](1083 MB) +PASS -- TEST 'control_noqr_p8_intel' [10:12, 04:05](1864 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:18, 02:19](1133 MB) +PASS -- TEST 'control_decomp_p8_intel' [11:09, 04:13](1846 MB) +PASS -- TEST 'control_2threads_p8_intel' [11:08, 04:56](1933 MB) +PASS -- TEST 'control_p8_lndp_intel' [13:40, 07:18](1867 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [09:28, 04:56](1934 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:18, 03:34](1886 MB) +PASS -- TEST 'merra2_thompson_intel' [07:33, 03:53](1872 MB) +PASS -- TEST 'regional_control_intel' [09:40, 06:38](1107 MB) +PASS -- TEST 'regional_restart_intel' [05:34, 03:38](1088 MB) +PASS -- TEST 'regional_decomp_intel' [09:31, 06:55](1100 MB) +PASS -- TEST 'regional_2threads_intel' [07:30, 04:45](1052 MB) +PASS -- TEST 'regional_noquilt_intel' [08:34, 06:29](1409 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:48, 06:32](1107 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:35, 06:36](1113 MB) +PASS -- TEST 'regional_wofs_intel' [09:39, 07:57](1892 MB) + +PASS -- COMPILE 'rrfs_intel' [19:11, 13:24] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:09, 08:29](1052 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:57, 05:14](1273 MB) +PASS -- TEST 'rap_decomp_intel' [10:58, 08:45](1018 MB) +PASS -- TEST 'rap_2threads_intel' [12:19, 10:08](1082 MB) +PASS -- TEST 'rap_restart_intel' [07:35, 04:24](1038 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:20, 08:24](1052 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:56, 08:43](1020 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:33, 06:18](1069 MB) +PASS -- TEST 'hrrr_control_intel' [07:20, 04:23](1022 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:16, 04:26](1012 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:24, 05:01](1083 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:40, 02:21](942 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:21, 08:22](1045 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:27, 09:53](1968 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:24, 09:32](2010 MB) + +PASS -- COMPILE 'csawmg_intel' [19:11, 13:13] +PASS -- TEST 'control_csawmg_intel' [08:48, 06:36](1017 MB) +PASS -- TEST 'control_ras_intel' [05:28, 03:30](713 MB) + +PASS -- COMPILE 'wam_intel' [18:10, 13:11] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:44, 12:49](1648 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [18:10, 12:59] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:23, 03:18](1872 MB) +PASS -- TEST 'regional_control_faster_intel' [08:37, 06:20](1104 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:10, 09:33] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [26:42, 02:21](1602 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [26:49, 02:13](1607 MB) +PASS -- TEST 'control_stochy_debug_intel' [27:27, 03:06](809 MB) +PASS -- TEST 'control_lndp_debug_intel' [27:26, 02:47](818 MB) +PASS -- TEST 'control_csawmg_debug_intel' [28:40, 04:19](1124 MB) +PASS -- TEST 'control_ras_debug_intel' [27:27, 02:48](823 MB) +PASS -- TEST 'control_diag_debug_intel' [25:45, 02:51](1667 MB) +PASS -- TEST 'control_debug_p8_intel' [24:43, 02:44](1896 MB) +PASS -- TEST 'regional_debug_intel' [18:37, 16:59](1106 MB) +PASS -- TEST 'rap_control_debug_intel' [06:23, 04:56](1202 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:25, 04:51](1194 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:24, 04:58](1200 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:25, 04:55](1208 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:28, 05:05](1203 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:43, 05:15](1287 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:28, 05:03](1204 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:26, 04:55](1197 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:26, 05:00](1204 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 04:52](1198 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:26, 04:48](1207 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:29, 04:55](1203 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:21, 07:56](1189 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:21, 04:49](1194 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:25, 05:03](1201 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:23, 04:52](1199 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:29, 08:17](1207 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:10, 06:19] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [41:49, 13:33](1677 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:10, 12:27] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:01, 04:59](1142 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:18, 07:12](1003 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:47, 03:50](922 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:16, 08:42](990 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:21, 04:27](958 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:47, 03:57](887 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:29, 05:25](974 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:49, 02:04](870 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [24:11, 12:38] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:55, 02:37](1161 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:54, 01:14](1117 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:52, 01:29](1066 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [22:11, 12:42] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:46, 07:09](968 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [16:11, 06:51] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:22, 05:04](1080 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 04:48](1077 MB) +PASS -- TEST 'conus13km_debug_intel' [15:57, 14:06](1227 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:50, 13:48](927 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [15:40, 13:28](1163 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:44, 13:40](1298 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:10, 06:30] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:28, 05:04](1133 MB) + +PASS -- COMPILE 'hafsw_intel' [23:10, 14:45] ( 1 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:18, 05:58](738 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:26, 06:32](1123 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:30, 07:37](812 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [31:23, 28:31](846 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [37:45, 35:01](866 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:02, 07:09](497 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:37, 08:37](503 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:57, 03:31](374 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:37, 09:42](478 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:54, 04:45](524 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:47, 04:32](526 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:55, 06:31](571 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:34, 01:35](402 MB) +PASS -- TEST 'gnv1_nested_intel' [08:13, 04:23](1713 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [19:11, 06:32] ( 1462 warnings 1490 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:05, 13:09](582 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [27:11, 14:51] ( 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:03, 15:16](655 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:25, 15:31](686 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [21:11, 14:11] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:36, 11:09](704 MB) + +PASS -- COMPILE 'hafs_all_intel' [25:11, 13:23] ( 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:23, 07:37](814 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:22, 07:41](798 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:56, 16:23](1200 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [20:11, 08:18] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 02:59](1153 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:21, 01:58](1104 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:19, 02:51](1016 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:56](1019 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:57](1024 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 02:59](1152 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:19, 02:58](1154 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:51](1018 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:11, 06:33](1013 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:11, 06:31](1003 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 03:00](1148 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:18, 04:20](2435 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:19, 04:26](2450 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [13:10, 04:31] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:19, 06:42](1085 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [22:10, 08:38] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 03:00](1150 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [11:11, 01:41] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:33, 01:03](260 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:25, 00:56](328 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:39](321 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [11:11, 01:52] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [06:33, 00:41](561 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:33, 00:23](444 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [19:11, 13:39] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [10:11, 04:14](1964 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [19:11, 12:38] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [14:10, 08:43](1967 MB) + +PASS -- COMPILE 'atml_intel' [20:10, 14:00] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:32, 04:59](1865 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:32, 04:58](1859 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [12:59, 02:52](1069 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:10, 07:43] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:27, 06:04](1892 MB) + +PASS -- COMPILE 'atmw_intel' [19:10, 14:05] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:32, 02:25](1897 MB) + +PASS -- COMPILE 'atmaero_intel' [16:10, 13:56] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:25, 04:55](1965 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:24, 05:25](1766 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:09, 05:30](1757 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [11:10, 06:04] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [24:04, 21:00](4546 MB) + +PASS -- COMPILE 'atm_fbh_intel' [17:11, 12:52] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [16:28, 13:53](1114 MB) + +PASS -- COMPILE 'hafsw_intelllvm' [12:11, 07:35] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [11:07, 08:05](573 MB) + +PASS -- COMPILE 'hafsw_debug_intelllvm' [07:11, 04:41] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [21:59, 19:39](564 MB) SYNOPSIS: -Starting Date/Time: 20241223 19:20:13 -Ending Date/Time: 20241223 21:19:39 -Total Time: 02h:00m:06s +Starting Date/Time: 20241231 07:18:38 +Ending Date/Time: 20241231 09:32:24 +Total Time: 02h:14m:27s Compiles Completed: 45/45 -Tests Completed: 187/191 -Failed Tests: -* TEST conus13km_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /work/noaa/epic/jongkim/UFS-RT/orion/rt-2485/tests/logs/log_orion/run_conus13km_debug_intel.log -* TEST conus13km_debug_qr_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /work/noaa/epic/jongkim/UFS-RT/orion/rt-2485/tests/logs/log_orion/run_conus13km_debug_qr_intel.log -* TEST conus13km_debug_2threads_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /work/noaa/epic/jongkim/UFS-RT/orion/rt-2485/tests/logs/log_orion/run_conus13km_debug_2threads_intel.log -* TEST conus13km_radar_tten_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /work/noaa/epic/jongkim/UFS-RT/orion/rt-2485/tests/logs/log_orion/run_conus13km_radar_tten_debug_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: -ad560f4d81e3fe50c21b316a5207b2fbbd8a4e2b - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) - ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) - 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - adbb06556f9b9123d24248e4505cd3dedee1d01a FV3 (remotes/origin/rrfsv1-to-ufs/dev5) - 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) - 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 2594a9e2c73c2a3a9acaa78fef8252cf5de3b524 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5530-g2594a9e2) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) --179cae1dd84401cf25d250bd9102e66560a9d328 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) - 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) - 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-20241223 -COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_1356111 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 07:31] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [37:12, 34:37](1962 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:10, 12:44] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:48, 02:37](1166 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:36, 01:16](1115 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:38, 01:31](1065 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:10, 06:45] ( 785 warnings 8 remarks ) -PASS -- TEST 'conus13km_debug_intel' [16:51, 14:18](1233 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:51, 14:18](934 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [15:47, 13:41](1165 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:48, 13:57](1300 MB) - -SYNOPSIS: -Starting Date/Time: 20241224 08:53:03 -Ending Date/Time: 20241224 09:40:54 -Total Time: 00h:48m:12s -Compiles Completed: 3/3 -Tests Completed: 8/8 +Tests Completed: 191/191 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 fe342b77b9..595e11f06f 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -c77a0687d9a5ab0824c214110da808ae53a01af0 +3a3a89f6f934454e3493554892333ae52a6eebdb Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - adbb06556f9b9123d24248e4505cd3dedee1d01a FV3 (remotes/origin/rrfsv1-to-ufs/dev5) + 74a1c84b0f6e2063f073a5b189a0a3b84f59dbca FV3 (remotes/origin/rrfsv1-to-ufs/dev7) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 2594a9e2c73c2a3a9acaa78fef8252cf5de3b524 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5530-g2594a9e2) + 92f1ad01744cb8309b459d3ecec5a02ab526e043 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5533-g92f1ad01) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -38,240 +38,240 @@ 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-20241223 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_262624 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241230 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3646713 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [25:39, 22:27] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [22:33, 11:19](3192 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:29, 12:10] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [21:29, 16:08](1908 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:54, 16:54](1947 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [19:43, 08:02](1073 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:27, 18:41](1887 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [15:30, 11:50] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [20:18, 15:37](1909 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [30:45, 27:21] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [42:44, 28:23](1951 MB) - -PASS -- COMPILE 's2swa_intel' [48:04, 45:05] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [29:56, 14:47](3226 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [28:46, 14:33](3226 MB) -PASS -- TEST 'cpld_restart_p8_intel' [16:37, 08:01](3154 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [28:25, 14:43](3246 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [15:07, 08:02](3171 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [42:17, 30:24](3446 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [28:00, 14:21](3222 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [27:00, 11:51](3166 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [31:41, 14:32](3229 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [41:56, 20:00](4234 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [36:48, 12:40](4373 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [24:31, 08:26](3200 MB) - -PASS -- COMPILE 's2sw_intel' [14:29, 10:59] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:43, 07:50](1921 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:14, 12:27](1981 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:27, 10:31] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:18, 05:17](1970 MB) - -PASS -- COMPILE 's2s_intel' [14:28, 10:53] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:38, 06:13](2885 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:35, 02:23](2890 MB) -PASS -- TEST 'cpld_restart_c48_intel' [06:17, 01:42](2307 MB) - -PASS -- COMPILE 's2swa_faster_intel' [41:57, 38:08] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [31:40, 14:23](3230 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [25:39, 22:23] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [36:14, 26:04](1919 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [29:31, 13:16](1108 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [45:29, 30:43](1899 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:30, 13:46] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:15, 30:25](1972 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [24:39, 22:31] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [17:56, 04:11](663 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [19:26, 03:22](1563 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [19:34, 03:22](1563 MB) -PASS -- TEST 'control_latlon_intel' [18:17, 03:20](1565 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [19:35, 03:28](1565 MB) -PASS -- TEST 'control_c48_intel' [18:52, 10:33](1584 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [14:11, 05:58](707 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [18:53, 10:32](1591 MB) -PASS -- TEST 'control_c192_intel' [27:52, 11:43](1685 MB) -PASS -- TEST 'control_c384_intel' [12:59, 14:12](1973 MB) -PASS -- TEST 'control_c384gdas_intel' [21:55, 09:19](1166 MB) -PASS -- TEST 'control_stochy_intel' [12:47, 02:00](617 MB) -PASS -- TEST 'control_stochy_restart_intel' [16:52, 01:22](424 MB) -PASS -- TEST 'control_lndp_intel' [14:50, 01:47](617 MB) -PASS -- TEST 'control_iovr4_intel' [14:52, 02:53](614 MB) -PASS -- TEST 'control_iovr5_intel' [15:51, 02:41](613 MB) -PASS -- TEST 'control_p8_intel' [20:14, 03:47](1852 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [20:01, 03:24](1858 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [20:02, 03:58](1863 MB) -PASS -- TEST 'control_restart_p8_intel' [18:07, 02:24](996 MB) -PASS -- TEST 'control_noqr_p8_intel' [20:14, 03:56](1858 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [19:19, 02:31](1023 MB) -PASS -- TEST 'control_decomp_p8_intel' [19:58, 03:57](1857 MB) -PASS -- TEST 'control_2threads_p8_intel' [24:58, 07:59](1934 MB) -PASS -- TEST 'control_p8_lndp_intel' [22:30, 06:44](1853 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [21:58, 04:31](1913 MB) -PASS -- TEST 'control_p8_mynn_intel' [19:53, 03:26](1860 MB) -PASS -- TEST 'merra2_thompson_intel' [21:20, 03:41](1859 MB) -PASS -- TEST 'regional_control_intel' [19:08, 05:31](892 MB) -PASS -- TEST 'regional_restart_intel' [10:06, 03:32](877 MB) -PASS -- TEST 'regional_decomp_intel' [19:06, 05:45](894 MB) -PASS -- TEST 'regional_2threads_intel' [23:13, 07:54](1016 MB) -PASS -- TEST 'regional_noquilt_intel' [18:04, 05:15](1219 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [18:15, 05:33](896 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [18:07, 05:28](893 MB) -PASS -- TEST 'regional_wofs_intel' [21:15, 07:06](1585 MB) - -PASS -- COMPILE 'rrfs_intel' [27:46, 25:51] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [22:49, 07:34](1001 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [18:32, 04:38](1157 MB) -PASS -- TEST 'rap_decomp_intel' [20:49, 07:44](1003 MB) -PASS -- TEST 'rap_2threads_intel' [26:58, 16:12](1080 MB) -PASS -- TEST 'rap_restart_intel' [10:38, 03:56](881 MB) -PASS -- TEST 'rap_sfcdiff_intel' [17:20, 07:13](1003 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:55, 07:37](997 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [12:43, 05:30](885 MB) -PASS -- TEST 'hrrr_control_intel' [12:28, 04:04](997 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [12:21, 04:05](995 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [16:27, 08:11](1069 MB) -PASS -- TEST 'hrrr_control_restart_intel' [07:40, 02:09](830 MB) -PASS -- TEST 'rrfs_v1beta_intel' [16:36, 07:30](995 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [16:51, 09:41](1955 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [15:48, 09:21](1947 MB) - -PASS -- COMPILE 'csawmg_intel' [32:50, 31:26] -PASS -- TEST 'control_csawmg_intel' [12:58, 07:05](956 MB) -PASS -- TEST 'control_ras_intel' [08:35, 03:40](653 MB) - -PASS -- COMPILE 'wam_intel' [27:45, 26:07] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [18:16, 12:09](1642 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [19:37, 14:31] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [11:37, 03:12](1859 MB) -PASS -- TEST 'regional_control_faster_intel' [11:00, 05:18](893 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [14:30, 09:03] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:05, 02:48](1600 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:10, 02:43](1607 MB) -PASS -- TEST 'control_stochy_debug_intel' [08:39, 03:31](800 MB) -PASS -- TEST 'control_lndp_debug_intel' [09:38, 03:14](803 MB) -PASS -- TEST 'control_csawmg_debug_intel' [12:00, 05:14](1108 MB) -PASS -- TEST 'control_ras_debug_intel' [09:40, 03:27](809 MB) -PASS -- TEST 'control_diag_debug_intel' [09:09, 03:19](1661 MB) -PASS -- TEST 'control_debug_p8_intel' [09:00, 03:22](1891 MB) -PASS -- TEST 'regional_debug_intel' [24:15, 18:33](918 MB) -PASS -- TEST 'rap_control_debug_intel' [10:42, 05:54](1188 MB) -PASS -- TEST 'hrrr_control_debug_intel' [12:48, 05:43](1182 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [12:45, 05:44](1183 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [12:44, 05:42](1186 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [12:41, 05:43](1188 MB) -PASS -- TEST 'rap_diag_debug_intel' [12:51, 05:48](1272 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [13:41, 05:52](1186 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [12:45, 05:55](1191 MB) -PASS -- TEST 'rap_lndp_debug_intel' [12:40, 05:42](1189 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [12:41, 05:42](1191 MB) -PASS -- TEST 'rap_noah_debug_intel' [12:41, 05:37](1181 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [12:42, 05:49](1187 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [15:43, 08:57](1183 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [12:39, 05:39](1185 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [13:44, 05:36](1189 MB) -PASS -- TEST 'rap_flake_debug_intel' [12:41, 05:36](1191 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [18:53, 09:33](1186 MB) - -PASS -- COMPILE 'wam_debug_intel' [18:33, 09:30] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [21:21, 14:09](1685 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [18:36, 10:38] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [12:28, 04:27](1028 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [14:28, 06:13](878 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [13:30, 03:23](878 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [22:41, 13:51](924 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:57, 07:07](924 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [11:43, 03:41](871 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [21:26, 04:42](790 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [15:50, 01:59](764 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:31, 08:07] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [11:23, 02:25](1080 MB) -PASS -- TEST 'conus13km_2threads_intel' [22:23, 02:03](1059 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [16:09, 01:40](958 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:31, 09:16] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [13:08, 04:16](902 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [16:30, 04:32] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [12:40, 05:25](1069 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [13:43, 05:36](1062 MB) -PASS -- TEST 'conus13km_debug_intel' [23:24, 14:59](1151 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [31:49, 15:06](825 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [42:52, 23:13](1147 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [31:34, 14:58](1226 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [16:31, 04:25] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [21:55, 05:33](1085 MB) - -PASS -- COMPILE 'hafsw_intel' [21:39, 09:52] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [38:17, 06:41](686 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [49:38, 07:58](1054 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [27:22, 07:59](740 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [32:09, 13:06](771 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [36:30, 14:45](788 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [25:34, 06:03](464 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [28:12, 07:39](482 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [27:47, 03:27](385 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [29:29, 08:45](453 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [24:29, 04:22](499 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [24:32, 04:11](498 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [41:57, 05:22](564 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [24:00, 01:52](407 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [16:34, 04:54] ( 1444 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [58:13, 14:49](610 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [23:42, 09:43] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [51:12, 08:41](610 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [00:26, 08:44](781 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [23:38, 09:54] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [19:19, 06:44](785 MB) - -PASS -- COMPILE 'hafs_all_intel' [22:42, 09:17] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [24:08, 07:34](737 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [23:04, 07:38](716 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [30:55, 16:07](894 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [22:45, 10:06] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [18:04, 04:03](1913 MB) - -PASS -- COMPILE 'atml_intel' [22:38, 11:57] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [18:35, 08:49] ( 866 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [21:36, 08:34] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [19:25, 04:40](3117 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [19:19, 05:11](2997 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [18:03, 05:26](3006 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [17:32, 04:19] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [34:59, 23:11](4500 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:34, 11:26] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:35, 11:30](3192 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:33, 12:04] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:32, 16:21](1909 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:27, 17:14](1958 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:39, 08:06](1084 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:26, 18:42](1885 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:46, 23:40] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:28, 15:50](1908 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [18:39, 16:30] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [33:19, 28:30](1951 MB) + +PASS -- COMPILE 's2swa_intel' [24:46, 23:25] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [18:12, 14:32](3228 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:31, 14:53](3226 MB) +PASS -- TEST 'cpld_restart_p8_intel' [12:33, 08:10](3153 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [18:06, 14:45](3244 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [12:39, 08:16](3171 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [34:40, 30:31](3445 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [18:05, 14:28](3223 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:22, 12:01](3165 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:32, 14:41](3227 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [29:47, 20:39](4234 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [25:51, 13:14](4372 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:10, 08:35](3199 MB) + +PASS -- COMPILE 's2sw_intel' [12:32, 11:02] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:58, 08:05](1919 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:28, 12:47](1981 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [23:44, 21:50] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:06, 05:41](1970 MB) + +PASS -- COMPILE 's2s_intel' [12:32, 10:28] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:51, 06:41](2882 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:46, 02:35](2889 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:16, 01:53](2307 MB) + +PASS -- COMPILE 's2swa_faster_intel' [35:57, 33:53] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [18:40, 14:26](3230 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:33, 11:32] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [29:07, 26:08](1921 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:19, 13:28](1110 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [34:36, 31:13](1899 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [17:33, 16:01] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:19, 30:45](1971 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [22:38, 20:26] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:37, 04:13](663 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:02, 03:23](1561 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:07, 03:42](1564 MB) +PASS -- TEST 'control_latlon_intel' [05:53, 03:28](1567 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:07, 03:30](1565 MB) +PASS -- TEST 'control_c48_intel' [13:28, 10:35](1589 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:00, 06:03](707 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [13:22, 10:35](1589 MB) +PASS -- TEST 'control_c192_intel' [14:29, 11:49](1686 MB) +PASS -- TEST 'control_c384_intel' [18:50, 14:20](1971 MB) +PASS -- TEST 'control_c384gdas_intel' [14:43, 09:32](1164 MB) +PASS -- TEST 'control_stochy_intel' [04:36, 01:56](621 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:37, 01:14](422 MB) +PASS -- TEST 'control_lndp_intel' [03:33, 01:52](615 MB) +PASS -- TEST 'control_iovr4_intel' [04:42, 02:40](613 MB) +PASS -- TEST 'control_iovr5_intel' [04:36, 02:50](614 MB) +PASS -- TEST 'control_p8_intel' [08:25, 04:01](1853 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:32, 03:40](1858 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:27, 04:08](1863 MB) +PASS -- TEST 'control_restart_p8_intel' [06:00, 02:29](1015 MB) +PASS -- TEST 'control_noqr_p8_intel' [08:10, 04:04](1859 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:00, 02:36](1017 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:50, 04:14](1858 MB) +PASS -- TEST 'control_2threads_p8_intel' [12:46, 08:13](1933 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:08, 06:47](1864 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:25, 04:49](1912 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:17, 03:29](1859 MB) +PASS -- TEST 'merra2_thompson_intel' [07:29, 03:46](1857 MB) +PASS -- TEST 'regional_control_intel' [07:55, 05:56](893 MB) +PASS -- TEST 'regional_restart_intel' [05:53, 03:30](877 MB) +PASS -- TEST 'regional_decomp_intel' [07:49, 05:56](894 MB) +PASS -- TEST 'regional_2threads_intel' [10:53, 08:16](1015 MB) +PASS -- TEST 'regional_noquilt_intel' [07:51, 05:30](1223 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:57, 05:31](895 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:51, 05:41](893 MB) +PASS -- TEST 'regional_wofs_intel' [08:59, 07:06](1582 MB) + +PASS -- COMPILE 'rrfs_intel' [13:27, 11:53] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [11:17, 07:34](1001 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:33, 04:50](1159 MB) +PASS -- TEST 'rap_decomp_intel' [11:17, 07:46](1003 MB) +PASS -- TEST 'rap_2threads_intel' [19:48, 16:09](1079 MB) +PASS -- TEST 'rap_restart_intel' [08:13, 03:59](882 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:29, 07:18](1000 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:29, 07:42](1001 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:39, 05:49](883 MB) +PASS -- TEST 'hrrr_control_intel' [08:21, 04:04](997 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:21, 04:10](998 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [12:44, 08:08](1073 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:44, 02:23](831 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:38, 07:26](998 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:46, 09:39](1954 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:46, 09:21](1946 MB) + +PASS -- COMPILE 'csawmg_intel' [24:44, 23:10] +PASS -- TEST 'control_csawmg_intel' [10:08, 07:29](955 MB) +PASS -- TEST 'control_ras_intel' [05:34, 03:27](655 MB) + +PASS -- COMPILE 'wam_intel' [24:44, 22:51] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:14, 12:08](1646 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [19:34, 17:24] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:35, 03:21](1858 MB) +PASS -- TEST 'regional_control_faster_intel' [08:13, 05:17](895 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [32:01, 30:38] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:15, 02:47](1607 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:05, 02:45](1607 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:34, 03:39](800 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:40, 03:14](801 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:10, 05:14](1108 MB) +PASS -- TEST 'control_ras_debug_intel' [05:35, 03:25](809 MB) +PASS -- TEST 'control_diag_debug_intel' [06:08, 03:16](1660 MB) +PASS -- TEST 'control_debug_p8_intel' [05:55, 03:16](1898 MB) +PASS -- TEST 'regional_debug_intel' [21:20, 18:48](922 MB) +PASS -- TEST 'rap_control_debug_intel' [07:39, 05:35](1188 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:42, 05:31](1184 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:37, 05:43](1183 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:36, 05:51](1186 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:39, 05:42](1190 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:49, 06:05](1268 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:36, 05:42](1193 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:33, 05:46](1187 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:35, 05:38](1190 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:35, 05:42](1188 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:34, 05:47](1181 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:36, 05:41](1188 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:41, 09:02](1186 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:38, 05:34](1182 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:39, 05:48](1188 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:35, 05:50](1188 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:54, 09:33](1187 MB) + +PASS -- COMPILE 'wam_debug_intel' [17:32, 15:31] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [17:27, 14:26](1686 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [27:56, 25:47] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:33, 04:24](1032 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:31, 06:09](877 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:32, 03:28](874 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [17:36, 13:53](925 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [12:31, 07:25](918 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:52, 03:33](873 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:36, 04:34](791 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:35, 02:01](764 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:29, 11:32] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:31, 02:26](1079 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:06, 02:09](1057 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:58, 01:35](957 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:30, 12:53] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:02, 04:17](901 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:23, 06:39] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:35, 05:28](1069 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:38, 05:32](1062 MB) +PASS -- TEST 'conus13km_debug_intel' [18:22, 15:08](1151 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [18:16, 15:41](826 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [26:21, 23:34](1142 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:23, 15:13](1219 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [13:33, 12:04] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:37, 05:28](1091 MB) + +PASS -- COMPILE 'hafsw_intel' [13:29, 11:43] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [10:53, 06:53](688 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:48, 08:14](1050 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:07, 08:06](744 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:53, 13:31](767 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:11, 14:56](793 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:20, 05:58](465 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:52, 07:44](481 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:31, 03:21](382 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:08, 09:09](437 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:07, 04:22](498 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:12, 04:01](499 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:26, 05:20](562 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:38, 02:13](406 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [13:28, 11:55] ( 1444 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:23, 14:53](611 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [14:28, 12:54] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:27, 08:31](607 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:30, 08:44](783 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [21:37, 19:33] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:47, 06:56](783 MB) + +PASS -- COMPILE 'hafs_all_intel' [18:34, 16:52] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:51, 07:51](731 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:50, 07:48](715 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:40, 16:10](892 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:32, 14:30] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:56, 04:19](1912 MB) + +PASS -- COMPILE 'atml_intel' [21:40, 20:08] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [12:26, 11:05] ( 866 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [16:32, 14:36] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:15, 04:49](3119 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:13, 05:15](2996 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:53, 05:23](3006 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:23, 07:59] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [27:17, 22:51](4477 MB) SYNOPSIS: -Starting Date/Time: 20241224 15:03:47 -Ending Date/Time: 20241224 22:21:23 -Total Time: 07h:18m:24s +Starting Date/Time: 20241231 17:31:20 +Ending Date/Time: 20241231 19:17:03 +Total Time: 01h:46m:27s Compiles Completed: 33/33 Tests Completed: 157/157 diff --git a/tests/test_changes.list b/tests/test_changes.list index d8008eff46..619c6f7558 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,14 +1,86 @@ +rap_control intel +regional_spp_sppt_shum_skeb intel +rap_decomp intel +rap_2threads intel +rap_restart intel +rap_sfcdiff intel +rap_sfcdiff_decomp intel +rap_sfcdiff_restart intel +hrrr_control intel +hrrr_control_decomp intel +hrrr_control_2threads intel +hrrr_control_restart intel +rap_control_debug intel +hrrr_control_debug intel +hrrr_gf_debug intel +hrrr_c3_debug intel +rap_unified_drag_suite_debug intel +rap_diag_debug intel +rap_cires_ugwp_debug intel +rap_unified_ugwp_debug intel +rap_lndp_debug intel +rap_progcld_thompson_debug intel +rap_sfcdiff_debug intel +rap_clm_lake_debug intel +rap_flake_debug intel +regional_spp_sppt_shum_skeb_dyn32_phy32 intel +rap_control_dyn32_phy32 intel +hrrr_control_dyn32_phy32 intel +rap_2threads_dyn32_phy32 intel +hrrr_control_2threads_dyn32_phy32 intel +hrrr_control_decomp_dyn32_phy32 intel +rap_restart_dyn32_phy32 intel +hrrr_control_restart_dyn32_phy32 intel conus13km_control intel conus13km_2threads intel conus13km_restart_mismatch intel +rap_control_dyn64_phy32 intel +rap_control_debug_dyn32_phy32 intel +hrrr_control_debug_dyn32_phy32 intel conus13km_debug intel conus13km_debug_qr intel conus13km_debug_2threads intel conus13km_radar_tten_debug intel +rap_control_dyn64_phy32_debug intel +cpld_regional_atm_fbh intel +rap_control_dyn32_phy32 intelllvm +rap_control_dyn64_phy32 intelllvm +rap_control gnu +rap_decomp gnu +rap_2threads gnu +rap_restart gnu +rap_sfcdiff gnu +rap_sfcdiff_decomp gnu +rap_sfcdiff_restart gnu +hrrr_control gnu +hrrr_control_noqr gnu +hrrr_control_2threads gnu +hrrr_control_decomp gnu +hrrr_control_restart gnu +hrrr_control_restart_noqr gnu +rap_control_debug gnu +hrrr_control_debug gnu +hrrr_gf_debug gnu +hrrr_c3_debug gnu +rap_diag_debug gnu +rap_progcld_thompson_debug gnu +rap_flake_debug gnu +rap_clm_lake_debug gnu +rap_control_dyn32_phy32 gnu +hrrr_control_dyn32_phy32 gnu +rap_2threads_dyn32_phy32 gnu +hrrr_control_2threads_dyn32_phy32 gnu +hrrr_control_decomp_dyn32_phy32 gnu +rap_restart_dyn32_phy32 gnu +hrrr_control_restart_dyn32_phy32 gnu conus13km_control gnu conus13km_2threads gnu conus13km_restart_mismatch gnu +rap_control_dyn64_phy32 gnu +rap_control_debug_dyn32_phy32 gnu +hrrr_control_debug_dyn32_phy32 gnu conus13km_debug gnu conus13km_debug_qr gnu conus13km_debug_2threads gnu conus13km_radar_tten_debug gnu +rap_control_dyn64_phy32_debug gnu From 5324d642e2257ee659ab75c0fc404d3127b2d9f7 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Tue, 7 Jan 2025 14:52:02 -0500 Subject: [PATCH 22/24] Eighth reconciliation PR from production/RRFS.v1 (#2531) * UFSWM - minor bugfixes for smoke/dust for RRFS.v1 * FV3 - minor bugfixes for smoke/dust for RRFS.v1 * ccpp-physics - minor bugfixes for smoke/dust for RRFS.v1 --- FV3 | 2 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 30 +- tests/logs/RegressionTests_derecho.log | 548 ++++++------ tests/logs/RegressionTests_gaeac5.log | 587 +++++++------ tests/logs/RegressionTests_gaeac6.log | 551 ++++++------ tests/logs/RegressionTests_hera.log | 752 ++++++++-------- tests/logs/RegressionTests_hercules.log | 814 ++++++++---------- tests/logs/RegressionTests_jet.log | 492 +++++------ tests/logs/RegressionTests_orion.log | 574 ++++++------ tests/logs/RegressionTests_wcoss2.log | 458 +++++----- tests/parm/rrfs_conus13km_hrrr.nml.IN | 3 +- 12 files changed, 2386 insertions(+), 2449 deletions(-) diff --git a/FV3 b/FV3 index 0834c7b574..7d998809dc 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 0834c7b574de72bf04021bd98762ee954f156233 +Subproject commit 7d998809dc84996248f93ced49730cfe92eae7cf 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 673fa37789..9b521b171a 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 Jan 2 15:59:37 UTC 2025 +Tue Jan 7 03:15:28 UTC 2025 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_3410713/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_278179/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 = 4360.076088 - 0: The maximum resident set size (KB) = 1511064 + 0: The total amount of wall time = 4369.524954 + 0: The maximum resident set size (KB) = 1493280 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_3410713/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_278179/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 = 1183.026821 - 0: The maximum resident set size (KB) = 1506460 + 0: The total amount of wall time = 1284.724733 + 0: The maximum resident set size (KB) = 1482880 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_3410713/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_278179/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 = 1173.931430 - 0: The maximum resident set size (KB) = 1513996 + 0: The total amount of wall time = 1139.037288 + 0: The maximum resident set size (KB) = 1488884 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Jan 2 18:23:19 UTC 2025 -Elapsed time: 02h:23m:44s. Have a nice day! +Tue Jan 7 05:37:25 UTC 2025 +Elapsed time: 02h:21m:57s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index e68feebc0b..5e047d06e1 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Thu Jan 2 13:26:04 UTC 2025 +Mon Jan 6 12:24:27 UTC 2025 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_2096974/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3494311/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 = 1413.721963 - 0: The maximum resident set size (KB) = 780968 + 0: The total amount of wall time = 1407.193487 + 0: The maximum resident set size (KB) = 780976 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_2096974/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3494311/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 = 2244.753151 - 0: The maximum resident set size (KB) = 733640 + 0: The total amount of wall time = 2195.740053 + 0: The maximum resident set size (KB) = 725748 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_2096974/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3494311/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 = 2206.629881 - 0: The maximum resident set size (KB) = 721784 + 0: The total amount of wall time = 2291.331176 + 0: The maximum resident set size (KB) = 734184 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_2096974/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3494311/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 = 2205.361410 - 0: The maximum resident set size (KB) = 725540 + 0: The total amount of wall time = 2194.246673 + 0: The maximum resident set size (KB) = 723192 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Jan 2 15:59:35 UTC 2025 -Elapsed time: 02h:33m:31s. Have a nice day! +Mon Jan 6 14:57:59 UTC 2025 +Elapsed time: 02h:33m:33s. Have a nice day! diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 9bde810f02..9f2842ee80 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,7 +1,7 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -7e1e51eae8370dc0c2e21bd6ba6a784f29cf589c +c4ea32ee15fe4a74e5f5db6f38998068db93a5ab Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 74a1c84b0f6e2063f073a5b189a0a3b84f59dbca FV3 (remotes/origin/rrfsv1-to-ufs/dev7) + e1d7f499b8715e001453f00f14a0a6fc42d6da7d FV3 (remotes/origin/rrfsv1-to-ufs/dev8) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 92f1ad01744cb8309b459d3ecec5a02ab526e043 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5533-g92f1ad01) + fa3f1ce1cbaebd30998ea16a149c2d71a41ccf82 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5537-gfa3f1ce1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -39,286 +39,286 @@ 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-20241230 -COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_55790 +COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_6568 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [23:20, 21:29] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:24, 10:24](3199 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:21, 23:26] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [17:54, 14:20](1916 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:01, 15:11](1947 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:10, 07:23](1067 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:54, 16:10](1882 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:18, 23:22] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:20, 14:00](1910 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:18, 11:49] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:04, 25:26](1934 MB) - -PASS -- COMPILE 's2swa_intel' [23:20, 21:29] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [18:52, 13:55](3222 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:52, 13:44](3230 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:31, 07:27](3160 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [18:36, 13:48](3247 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [11:42, 07:29](3176 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [28:24, 24:30](3811 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:23, 13:32](3218 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [15:24, 10:45](3534 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:39, 13:49](3230 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:19, 09:00](3818 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:19, 06:16](3614 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [30:36, 16:52](4541 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [27:52, 09:55](4668 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:03, 07:45](3206 MB) - -PASS -- COMPILE 's2sw_intel' [21:20, 19:42] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:19, 07:27](1920 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:31, 11:53](1987 MB) - -PASS -- COMPILE 's2swa_debug_intel' [13:13, 11:43] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [26:07, 22:12](3319 MB) - -PASS -- COMPILE 's2sw_debug_intel' [13:17, 11:06] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:37, 09:05](1958 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [18:18, 16:10] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:42, 05:01](1975 MB) - -PASS -- COMPILE 's2s_intel' [18:18, 16:47] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [07:59, 05:45](2883 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:02, 02:09](2892 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:35, 01:25](2306 MB) - -PASS -- COMPILE 's2swa_faster_intel' [25:22, 23:36] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [18:11, 13:40](3237 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [23:17, 21:40] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [26:39, 23:29](1924 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:08, 12:07](1103 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [30:31, 27:24](1891 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:15, 11:16] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:42, 27:02](1965 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:16, 14:19] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:29, 03:24](667 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:58, 02:42](1566 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:07, 02:42](1570 MB) -PASS -- TEST 'control_latlon_intel' [05:56, 02:40](1563 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:03, 02:41](1564 MB) -PASS -- TEST 'control_c48_intel' [12:00, 09:15](1589 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:33, 05:17](707 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [12:03, 09:13](1586 MB) -PASS -- TEST 'control_c192_intel' [13:44, 09:56](1694 MB) -PASS -- TEST 'control_c384_intel' [17:39, 11:14](1991 MB) -PASS -- TEST 'control_c384gdas_intel' [15:35, 07:06](1175 MB) -PASS -- TEST 'control_stochy_intel' [03:29, 01:27](626 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:36, 00:52](435 MB) -PASS -- TEST 'control_lndp_intel' [03:28, 01:21](618 MB) -PASS -- TEST 'control_iovr4_intel' [04:28, 02:06](619 MB) -PASS -- TEST 'control_iovr5_intel' [04:30, 02:06](622 MB) -PASS -- TEST 'control_p8_intel' [06:23, 03:34](1860 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:20, 03:13](1854 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:28, 03:39](1857 MB) -PASS -- TEST 'control_restart_p8_intel' [05:11, 02:29](1009 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:22, 03:46](1847 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:11, 02:10](1021 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:15, 03:54](1853 MB) -PASS -- TEST 'control_2threads_p8_intel' [09:16, 05:59](1940 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:00, 05:55](1856 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:18, 03:57](1903 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:16, 03:11](1859 MB) -PASS -- TEST 'merra2_thompson_intel' [06:19, 03:23](1863 MB) -PASS -- TEST 'regional_control_intel' [07:50, 04:52](892 MB) -PASS -- TEST 'regional_restart_intel' [05:48, 02:54](877 MB) -PASS -- TEST 'regional_decomp_intel' [07:47, 05:05](901 MB) -PASS -- TEST 'regional_noquilt_intel' [06:48, 04:44](1216 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:52, 04:48](892 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:56, 04:48](892 MB) -PASS -- TEST 'regional_wofs_intel' [08:49, 05:51](1592 MB) - -PASS -- COMPILE 'rrfs_intel' [15:14, 12:50] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:14, 06:08](1002 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:58, 03:42](1162 MB) -PASS -- TEST 'rap_decomp_intel' [09:14, 06:23](1006 MB) -PASS -- TEST 'rap_2threads_intel' [15:05, 11:24](1086 MB) -PASS -- TEST 'rap_restart_intel' [06:09, 03:15](880 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:16, 06:05](1007 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:16, 06:22](997 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:02, 04:35](882 MB) -PASS -- TEST 'hrrr_control_intel' [05:59, 03:12](1001 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:59, 03:19](998 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [08:04, 05:42](1078 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:39, 01:45](835 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:16, 06:01](999 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:37, 08:10](1958 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:36, 07:56](1945 MB) - -PASS -- COMPILE 'csawmg_intel' [13:15, 11:50] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [08:44, 06:37](955 MB) -PASS -- TEST 'control_ras_intel' [05:28, 02:52](659 MB) - -PASS -- COMPILE 'wam_intel' [13:15, 11:36] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:51, 10:16](1654 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:16, 12:11] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:12, 03:07](1855 MB) -PASS -- TEST 'regional_control_faster_intel' [06:48, 04:36](892 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:14, 14:37] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:01, 02:09](1605 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:04, 02:07](1601 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:29, 02:52](807 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:30, 02:36](806 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:49, 04:40](1117 MB) -PASS -- TEST 'control_ras_debug_intel' [04:31, 02:38](812 MB) -PASS -- TEST 'control_diag_debug_intel' [05:24, 02:37](1668 MB) -PASS -- TEST 'control_debug_p8_intel' [05:51, 02:51](1896 MB) -PASS -- TEST 'regional_debug_intel' [18:51, 16:27](924 MB) -PASS -- TEST 'rap_control_debug_intel' [06:28, 04:44](1186 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:35, 04:35](1188 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:28, 04:38](1186 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:30, 04:39](1189 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:26, 04:45](1189 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:07, 05:00](1268 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:39, 04:50](1191 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:33, 04:53](1192 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:31, 04:49](1188 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:30, 04:46](1189 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:26, 04:35](1186 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:39, 04:39](1187 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:33, 07:30](1186 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:33, 04:42](1184 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:37, 04:41](1188 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:32, 04:42](1189 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:03, 08:57](1189 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:14, 07:15] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:11, 12:08](1692 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:15, 11:39] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:42, 03:31](1027 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:55, 05:09](878 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:54, 02:46](876 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:59, 09:33](929 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:13, 04:57](937 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:05, 02:53](872 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:55, 03:52](792 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:27, 01:31](769 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:20, 11:25] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:06, 01:47](1076 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:56, 01:17](1086 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:02, 01:05](962 MB) +PASS -- COMPILE 's2swa_32bit_intel' [23:17, 21:19] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:27, 10:30](3198 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:20, 23:18] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:16, 14:10](1922 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:21, 15:27](1961 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:30, 07:20](1082 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:11, 16:12](1888 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:17, 23:20] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:32, 13:54](1907 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:17, 11:48] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:14, 25:20](1940 MB) + +PASS -- COMPILE 's2swa_intel' [23:18, 21:32] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [18:59, 13:40](3220 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:48, 13:58](3233 MB) +PASS -- TEST 'cpld_restart_p8_intel' [12:53, 08:03](3146 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [18:39, 13:48](3249 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [13:06, 07:46](3175 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [28:41, 24:24](3816 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:37, 13:21](3218 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:27, 10:55](3533 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:46, 13:45](3235 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:36, 09:22](3812 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:53, 06:14](3619 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [33:11, 17:06](4536 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [32:19, 10:32](4670 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:05, 08:04](3205 MB) + +PASS -- COMPILE 's2sw_intel' [21:18, 19:50] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:29, 07:39](1915 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:41, 11:58](1987 MB) + +PASS -- COMPILE 's2swa_debug_intel' [13:17, 11:40] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [25:06, 20:51](3300 MB) + +PASS -- COMPILE 's2sw_debug_intel' [13:16, 10:59] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:43, 09:19](1954 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [18:16, 16:11] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:54, 05:03](1983 MB) + +PASS -- COMPILE 's2s_intel' [18:18, 16:53] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:11, 05:47](2883 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:13, 02:10](2891 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:35, 01:26](2305 MB) + +PASS -- COMPILE 's2swa_faster_intel' [25:18, 23:44] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [17:26, 13:32](3230 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:18, 21:31] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [26:56, 23:21](1928 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:39, 12:11](1098 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [30:58, 27:22](1892 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:14, 11:07] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:51, 27:30](1956 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:14, 14:17] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:38, 03:29](666 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:04, 02:43](1566 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:20, 02:44](1563 MB) +PASS -- TEST 'control_latlon_intel' [05:02, 02:40](1573 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:08, 02:41](1572 MB) +PASS -- TEST 'control_c48_intel' [12:12, 09:18](1586 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:43, 05:18](706 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [12:08, 09:18](1589 MB) +PASS -- TEST 'control_c192_intel' [14:24, 10:00](1692 MB) +PASS -- TEST 'control_c384_intel' [19:21, 11:20](1984 MB) +PASS -- TEST 'control_c384gdas_intel' [17:16, 07:17](1185 MB) +PASS -- TEST 'control_stochy_intel' [03:29, 01:26](624 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:43, 00:52](437 MB) +PASS -- TEST 'control_lndp_intel' [03:34, 01:23](617 MB) +PASS -- TEST 'control_iovr4_intel' [04:41, 02:12](617 MB) +PASS -- TEST 'control_iovr5_intel' [04:42, 02:08](616 MB) +PASS -- TEST 'control_p8_intel' [07:36, 03:51](1853 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:33, 03:07](1849 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:32, 03:35](1857 MB) +PASS -- TEST 'control_restart_p8_intel' [05:32, 02:23](1006 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:28, 03:36](1856 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:24, 02:20](1019 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:21, 03:41](1848 MB) +PASS -- TEST 'control_2threads_p8_intel' [09:24, 06:08](1937 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:08, 06:09](1853 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:41, 04:00](1911 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:26, 03:12](1862 MB) +PASS -- TEST 'merra2_thompson_intel' [06:19, 03:36](1863 MB) +PASS -- TEST 'regional_control_intel' [07:57, 05:00](893 MB) +PASS -- TEST 'regional_restart_intel' [06:08, 03:04](877 MB) +PASS -- TEST 'regional_decomp_intel' [07:53, 05:13](894 MB) +PASS -- TEST 'regional_noquilt_intel' [07:54, 04:52](1215 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:00, 04:57](891 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:05, 04:56](893 MB) +PASS -- TEST 'regional_wofs_intel' [09:00, 05:54](1587 MB) + +PASS -- COMPILE 'rrfs_intel' [15:17, 12:51] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:30, 06:09](1003 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:25, 03:47](1165 MB) +PASS -- TEST 'rap_decomp_intel' [09:30, 06:23](1005 MB) +PASS -- TEST 'rap_2threads_intel' [14:07, 11:29](1089 MB) +PASS -- TEST 'rap_restart_intel' [06:14, 03:16](880 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:32, 06:07](1007 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:32, 06:29](999 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:17, 04:40](885 MB) +PASS -- TEST 'hrrr_control_intel' [06:07, 03:14](999 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:07, 03:23](998 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [09:35, 05:47](1078 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:39, 01:46](832 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:33, 06:03](999 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:50, 08:07](1962 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:49, 07:51](1945 MB) + +PASS -- COMPILE 'csawmg_intel' [13:17, 11:43] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [10:02, 06:34](958 MB) +PASS -- TEST 'control_ras_intel' [05:39, 02:52](659 MB) + +PASS -- COMPILE 'wam_intel' [13:13, 11:34] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:08, 10:15](1653 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:16, 12:01] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:33, 02:56](1860 MB) +PASS -- TEST 'regional_control_faster_intel' [07:55, 04:41](891 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:14, 14:32] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:04, 02:09](1601 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:03, 02:08](1599 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:47, 02:59](803 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:34, 02:36](805 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:10, 04:45](1112 MB) +PASS -- TEST 'control_ras_debug_intel' [05:25, 02:39](814 MB) +PASS -- TEST 'control_diag_debug_intel' [06:41, 02:38](1665 MB) +PASS -- TEST 'control_debug_p8_intel' [06:06, 03:06](1895 MB) +PASS -- TEST 'regional_debug_intel' [18:55, 16:18](922 MB) +PASS -- TEST 'rap_control_debug_intel' [07:29, 04:41](1189 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:44, 04:41](1183 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:46, 04:48](1190 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:39, 04:40](1188 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:40, 04:47](1188 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:37, 05:00](1271 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:35, 04:51](1190 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:32, 04:51](1189 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:40, 04:45](1186 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:30, 04:52](1188 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:39, 04:34](1184 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:33, 04:48](1185 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:31, 07:51](1185 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:38, 04:37](1184 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:40, 04:51](1189 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:37, 04:46](1187 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:16, 08:12](1194 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:15, 07:11] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:13, 12:10](1691 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:14, 11:36] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:46, 03:34](1031 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:59, 05:11](877 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:58, 02:47](878 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:58, 09:36](927 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:59, 04:56](929 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:13, 02:57](872 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:52, 03:55](792 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:35, 01:34](769 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:14, 11:27] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:32, 01:50](1074 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:06, 01:18](1079 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:14, 01:07](963 MB) PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:19, 11:40] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:56, 03:36](901 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:13, 07:28] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:29, 04:38](1066 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:26, 04:26](1065 MB) -PASS -- TEST 'conus13km_debug_intel' [16:16, 12:40](1148 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:10, 12:43](832 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [17:15, 13:50](1148 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:18, 12:46](1214 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:13, 07:13] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:29, 04:37](1093 MB) - -PASS -- COMPILE 'hafsw_intel' [19:22, 17:51] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:14, 04:31](699 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:50, 05:05](1061 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:36, 06:24](755 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:43, 10:39](784 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:47, 11:43](793 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:12, 04:38](471 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:30, 05:44](484 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:58, 02:16](396 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:52, 06:08](460 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:56, 03:16](506 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:08, 03:03](503 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:18, 03:46](576 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:12](430 MB) -PASS -- TEST 'gnv1_nested_intel' [08:06, 03:59](1698 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:19, 08:48] ( 1467 warnings 1469 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:06, 12:06](622 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [19:15, 17:24] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:21, 06:53](620 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:17, 06:58](685 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [20:15, 18:51] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:05, 05:25](668 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:15, 16:00] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:29, 05:39](734 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:31, 05:39](725 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:11, 16:11](896 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:13, 08:21] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:29, 02:28](754 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:38, 01:30](756 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:24, 02:21](648 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:35, 02:22](649 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:32, 02:24](645 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:29, 02:28](767 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:33, 02:28](754 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:31, 02:19](643 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:23, 05:43](701 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:24, 05:36](678 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:26, 02:27](768 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:49, 03:52](2034 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:35, 03:52](2033 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:13, 05:57] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:29, 05:15](753 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:15, 08:30] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:26, 02:28](768 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:11, 02:41] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:40, 01:07](309 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:31, 01:02](452 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:43](451 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:14, 13:54] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:39, 03:52](1907 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:20, 12:43] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:22, 08:02](1902 MB) - -PASS -- COMPILE 'atml_intel' [16:14, 14:43] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:38, 06:23](1883 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:42, 06:47](1892 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:51, 03:41](1019 MB) - -PASS -- COMPILE 'atml_debug_intel' [12:13, 10:47] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:42, 06:11](1925 MB) - -PASS -- COMPILE 'atmw_intel' [15:14, 13:37] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:19, 02:07](1878 MB) - -PASS -- COMPILE 'atmaero_intel' [14:20, 12:52] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:25, 04:08](3125 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:20, 04:17](3005 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:07, 04:20](3018 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [10:13, 08:05] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [25:31, 21:38](4541 MB) - -PASS -- COMPILE 'atm_fbh_intel' [13:13, 11:30] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:31, 08:03](846 MB) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:58, 03:38](902 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:21, 07:31] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:39, 04:38](1068 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:27, 04:29](1064 MB) +PASS -- TEST 'conus13km_debug_intel' [17:00, 13:11](1147 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:58, 12:48](831 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [16:40, 13:41](1147 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:33, 12:36](1214 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:21, 07:13] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:30, 04:46](1093 MB) + +PASS -- COMPILE 'hafsw_intel' [19:24, 17:50] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:23, 04:33](704 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:57, 05:23](1065 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:36, 06:28](752 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:04, 10:38](778 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:16, 11:40](796 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:18, 04:38](469 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:32, 05:49](484 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:02, 02:22](392 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:27, 06:15](459 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:07, 03:21](502 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:21, 03:05](503 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:14, 03:48](574 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:33, 01:15](427 MB) +PASS -- TEST 'gnv1_nested_intel' [08:33, 04:05](1702 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:18, 08:37] ( 1467 warnings 1469 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:07, 12:02](618 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:18, 17:18] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:24, 06:53](624 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:40, 06:59](681 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [20:21, 18:49] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:42, 05:20](671 MB) + +PASS -- COMPILE 'hafs_all_intel' [18:20, 15:58] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:41, 05:41](733 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:26, 05:48](725 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:22, 16:13](897 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:23, 08:24] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:40, 02:30](769 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:51, 01:32](755 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:35, 02:22](646 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:39, 02:23](644 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:44, 02:21](647 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:37, 02:28](770 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:41, 02:29](757 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:41, 02:20](648 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:46, 05:42](696 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:37, 05:37](679 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:32, 02:28](756 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:41, 03:53](2034 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:39, 03:54](2033 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:12, 05:47] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:47, 05:15](753 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:13, 08:14] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:40, 02:27](769 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:14, 02:41] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:42, 01:15](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:38, 01:10](452 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:43, 00:47](450 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:19, 13:39] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:15, 04:05](1904 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:23, 12:44] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:47, 07:59](1910 MB) + +PASS -- COMPILE 'atml_intel' [16:20, 14:40] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:01, 06:56](1879 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:58, 07:07](1879 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:03, 03:55](1034 MB) + +PASS -- COMPILE 'atml_debug_intel' [12:16, 10:34] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:02, 06:11](1930 MB) + +PASS -- COMPILE 'atmw_intel' [15:19, 13:48] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:43, 02:15](1877 MB) + +PASS -- COMPILE 'atmaero_intel' [15:24, 12:58] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:05, 04:17](3130 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:13, 04:22](3001 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:21, 04:26](3014 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [10:18, 08:08] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [28:36, 21:55](4545 MB) + +PASS -- COMPILE 'atm_fbh_intel' [13:19, 11:30] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:38, 08:07](848 MB) SYNOPSIS: -Starting Date/Time: 20241231 06:13:20 -Ending Date/Time: 20241231 08:00:57 -Total Time: 01h:48m:41s +Starting Date/Time: 20250104 05:57:46 +Ending Date/Time: 20250104 07:49:45 +Total Time: 01h:53m:02s Compiles Completed: 42/42 Tests Completed: 186/186 diff --git a/tests/logs/RegressionTests_gaeac5.log b/tests/logs/RegressionTests_gaeac5.log index 87447f496a..f397089553 100644 --- a/tests/logs/RegressionTests_gaeac5.log +++ b/tests/logs/RegressionTests_gaeac5.log @@ -1,7 +1,7 @@ ====START OF GAEAC5 REGRESSION TESTING LOG==== UFSWM hash used in testing: -7e1e51eae8370dc0c2e21bd6ba6a784f29cf589c +e7f9b6339a4ffc11272fc5797a59f8c59b1083a7 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 74a1c84b0f6e2063f073a5b189a0a3b84f59dbca FV3 (remotes/origin/rrfsv1-to-ufs/dev7) + e1d7f499b8715e001453f00f14a0a6fc42d6da7d FV3 (remotes/origin/rrfsv1-to-ufs/dev8) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 92f1ad01744cb8309b459d3ecec5a02ab526e043 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5533-g92f1ad01) + fa3f1ce1cbaebd30998ea16a149c2d71a41ccf82 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5537-gfa3f1ce1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -39,304 +39,303 @@ 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-20241230 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3435161 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_4189773 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [21:17, 19:17] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [31:15, 15:24](3187 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:15, 18:09] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:45, 16:09](1895 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [34:19, 17:20](1944 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [25:18, 09:32](1074 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:17, 18:45](1871 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:15, 18:02] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:49, 15:57](1900 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:13, 07:53] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [35:32, 29:38](1922 MB) - -PASS -- COMPILE 's2swa_intel' [26:17, 23:25] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [34:59, 18:03](3210 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [34:59, 15:47](3212 MB) -PASS -- TEST 'cpld_restart_p8_intel' [19:15, 11:11](3137 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [34:00, 15:38](3232 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [19:34, 10:51](3158 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [36:40, 18:00](3441 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [34:59, 17:29](3209 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [34:00, 14:22](3158 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [34:05, 17:38](3216 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [33:14, 12:16](3488 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [19:42, 09:13](3598 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [47:32, 21:17](4271 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [27:09, 14:21](4359 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [25:22, 11:51](3191 MB) - -PASS -- COMPILE 's2sw_intel' [20:15, 19:07] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [19:42, 09:51](1919 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:17, 13:00](1966 MB) - -PASS -- COMPILE 's2swa_debug_intel' [14:14, 12:31] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [30:35, 22:40](3261 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:13, 07:45] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [20:05, 11:15](1940 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [14:14, 12:41] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [16:55, 07:33](1969 MB) - -PASS -- COMPILE 's2s_intel' [18:15, 16:48] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [12:23, 07:24](2870 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [07:31, 03:44](2884 MB) -PASS -- TEST 'cpld_restart_c48_intel' [13:43, 01:00](2296 MB) - -PASS -- COMPILE 's2swa_faster_intel' [15:20, 14:11] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [34:54, 18:03](3215 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [19:21, 18:02] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [51:20, 26:58](1909 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [32:32, 14:28](1101 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [46:15, 29:45](1896 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:18, 13:18] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [54:50, 32:33](1941 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:14, 11:10] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [15:51, 03:50](654 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [22:46, 05:34](1554 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [22:39, 05:37](1560 MB) -PASS -- TEST 'control_latlon_intel' [20:22, 04:46](1557 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [19:36, 03:49](1556 MB) -PASS -- TEST 'control_c48_intel' [27:48, 11:08](1575 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [24:40, 07:38](693 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [29:25, 11:41](1569 MB) -PASS -- TEST 'control_c192_intel' [29:08, 13:31](1683 MB) -PASS -- TEST 'control_c384_intel' [42:35, 25:48](1967 MB) -PASS -- TEST 'control_c384gdas_intel' [32:34, 15:13](1172 MB) -PASS -- TEST 'control_stochy_intel' [17:37, 02:23](612 MB) -PASS -- TEST 'control_stochy_restart_intel' [05:47, 01:34](419 MB) -PASS -- TEST 'control_lndp_intel' [19:10, 04:32](607 MB) -PASS -- TEST 'control_iovr4_intel' [17:52, 05:17](609 MB) -PASS -- TEST 'control_iovr5_intel' [15:05, 02:48](606 MB) -PASS -- TEST 'control_p8_intel' [18:59, 06:41](1852 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [18:41, 06:04](1845 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [16:02, 06:15](1844 MB) -PASS -- TEST 'control_restart_p8_intel' [06:51, 02:36](1002 MB) -PASS -- TEST 'control_noqr_p8_intel' [15:55, 06:08](1835 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [10:54, 05:18](1012 MB) -PASS -- TEST 'control_decomp_p8_intel' [14:30, 06:41](1844 MB) -PASS -- TEST 'control_2threads_p8_intel' [12:38, 04:13](1922 MB) -PASS -- TEST 'control_p8_lndp_intel' [14:49, 08:42](1847 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [12:24, 06:29](1899 MB) -PASS -- TEST 'control_p8_mynn_intel' [08:54, 03:48](1856 MB) -PASS -- TEST 'merra2_thompson_intel' [08:27, 03:30](1840 MB) -PASS -- TEST 'regional_control_intel' [10:05, 06:46](879 MB) -PASS -- TEST 'regional_restart_intel' [08:30, 04:38](861 MB) -PASS -- TEST 'regional_decomp_intel' [08:07, 04:50](866 MB) -PASS -- TEST 'regional_2threads_intel' [07:55, 04:12](1012 MB) -PASS -- TEST 'regional_noquilt_intel' [10:03, 06:41](1210 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [10:03, 06:41](877 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:44, 06:49](876 MB) -PASS -- TEST 'regional_wofs_intel' [11:42, 08:30](1574 MB) - -PASS -- COMPILE 'rrfs_intel' [12:12, 11:07] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [16:26, 09:12](989 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [11:07, 06:59](1169 MB) -PASS -- TEST 'rap_decomp_intel' [12:22, 07:03](991 MB) -PASS -- TEST 'rap_2threads_intel' [14:38, 08:37](1064 MB) -PASS -- TEST 'rap_restart_intel' [16:02, 05:34](873 MB) -PASS -- TEST 'rap_sfcdiff_intel' [13:51, 07:48](985 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:20, 10:35](986 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [21:58, 07:04](875 MB) -PASS -- TEST 'hrrr_control_intel' [13:31, 06:40](983 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [13:24, 06:24](979 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [13:21, 06:17](1061 MB) -PASS -- TEST 'hrrr_control_restart_intel' [15:39, 04:21](820 MB) -PASS -- TEST 'rrfs_v1beta_intel' [13:25, 07:26](981 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:35, 10:50](1942 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:37, 09:03](1933 MB) - -PASS -- COMPILE 'csawmg_intel' [12:13, 10:42] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [11:23, 08:16](944 MB) -PASS -- TEST 'control_ras_intel' [06:22, 03:56](642 MB) - -PASS -- COMPILE 'wam_intel' [18:16, 17:13] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [18:12, 14:07](1639 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:13, 10:54] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [10:26, 05:10](1840 MB) -PASS -- TEST 'regional_control_faster_intel' [08:01, 04:23](883 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:14, 15:08] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [08:10, 03:16](1580 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:55, 03:13](1586 MB) -PASS -- TEST 'control_stochy_debug_intel' [08:34, 05:39](782 MB) -PASS -- TEST 'control_lndp_debug_intel' [08:34, 05:18](782 MB) -PASS -- TEST 'control_csawmg_debug_intel' [10:52, 06:35](1085 MB) -PASS -- TEST 'control_ras_debug_intel' [07:29, 03:47](786 MB) -PASS -- TEST 'control_diag_debug_intel' [13:58, 05:27](1642 MB) -PASS -- TEST 'control_debug_p8_intel' [12:33, 05:01](1877 MB) -PASS -- TEST 'regional_debug_intel' [26:03, 18:08](900 MB) -PASS -- TEST 'rap_control_debug_intel' [14:40, 07:40](1168 MB) -PASS -- TEST 'hrrr_control_debug_intel' [13:29, 05:50](1158 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [17:25, 07:32](1162 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [19:37, 05:42](1159 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [21:37, 07:29](1162 MB) -PASS -- TEST 'rap_diag_debug_intel' [21:45, 07:26](1247 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [19:30, 05:08](1163 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [21:22, 07:41](1164 MB) -PASS -- TEST 'rap_lndp_debug_intel' [19:23, 05:41](1168 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [22:23, 07:34](1164 MB) -PASS -- TEST 'rap_noah_debug_intel' [23:21, 07:45](1162 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [24:22, 07:36](1160 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [27:06, 09:52](1163 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [23:15, 07:18](1161 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [23:08, 07:34](1166 MB) -PASS -- TEST 'rap_flake_debug_intel' [23:27, 07:34](1164 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [26:24, 09:29](1166 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:13, 07:45] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [30:57, 14:21](1667 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:19, 15:05] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [20:32, 04:23](1041 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [21:39, 06:34](867 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [19:58, 05:22](866 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [22:50, 09:24](922 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [19:09, 06:04](915 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [17:02, 05:53](866 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [16:27, 04:48](783 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [13:01, 03:49](751 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [22:21, 19:15] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [15:36, 04:15](1077 MB) -PASS -- TEST 'conus13km_2threads_intel' [12:38, 03:30](1055 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [13:34, 03:46](953 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:29, 11:00] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [17:53, 06:35](895 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:20, 07:12] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [18:08, 07:39](1044 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [16:37, 07:35](1036 MB) -PASS -- TEST 'conus13km_debug_intel' [23:53, 16:03](1129 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:50, 14:01](802 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [19:21, 11:50](1111 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [22:40, 15:53](1192 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:18, 06:45] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [14:04, 07:08](1071 MB) - -PASS -- COMPILE 'hafsw_intel' [15:13, 13:28] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [15:40, 07:41](719 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:05, 05:35](1076 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [17:59, 10:02](743 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [21:00, 13:35](778 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [25:05, 15:06](804 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:44, 05:57](470 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [17:01, 07:14](498 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [14:21, 05:16](395 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [24:33, 10:54](485 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [15:29, 04:21](505 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [17:27, 06:34](505 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [15:58, 05:40](578 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [14:14, 04:03](424 MB) -PASS -- TEST 'gnv1_nested_intel' [17:27, 07:23](1689 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:15, 08:20] ( 1467 warnings 1469 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [20:46, 13:35](613 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [19:15, 17:32] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [16:12, 08:38](633 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:00, 08:14](806 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:18, 14:41] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:35, 06:34](808 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:16, 14:48] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [18:49, 08:34](734 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [18:39, 08:39](721 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [31:05, 22:17](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:17, 11:24] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [13:30, 04:42](765 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [06:11, 03:39](740 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [10:05, 04:32](641 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [09:48, 04:34](642 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [09:23, 04:34](640 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [09:17, 04:38](752 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [09:11, 04:40](765 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [08:35, 04:32](645 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:42, 06:05](698 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:33, 08:33](674 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:53, 04:39](765 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:49, 06:42](2030 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [10:06, 06:45](2031 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [10:15, 08:20] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:47, 07:30](749 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:14, 09:59] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:49, 02:35](765 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [10:13, 08:56] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [08:13, 03:53](322 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [07:07, 03:44](462 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [06:36, 03:23](462 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:12, 01:50] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [07:31, 03:03](449 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [05:29, 02:17](253 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:23, 13:57] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [10:35, 06:53](1902 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:20, 13:14] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [14:56, 09:25](1903 MB) - -PASS -- COMPILE 'atml_intel' [18:20, 16:44] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [13:23, 07:26](1882 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [13:06, 07:19](1878 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [11:02, 07:14](1025 MB) - -PASS -- COMPILE 'atml_debug_intel' [31:22, 28:43] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [14:28, 08:48](1912 MB) - -PASS -- COMPILE 'atmw_intel' [13:14, 11:42] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:17, 04:16](1878 MB) - -PASS -- COMPILE 'atmaero_intel' [12:14, 10:57] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [12:32, 08:32](3100 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [13:33, 08:57](2988 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [13:17, 09:25](2993 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [13:19, 11:16] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [25:37, 20:35](4451 MB) - -PASS -- COMPILE 'atm_fbh_intel' [12:13, 10:48] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [14:45, 11:35](827 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [20:20, 18:32] -PASS -- TEST 'cpld_control_gfsv17_intelllvm' [21:54, 17:19](1899 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [18:19, 16:18] -PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [33:31, 29:57](1922 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [19:19, 17:58] -PASS -- TEST 'cpld_control_sfs_intelllvm' [17:45, 15:07](1903 MB) - -PASS -- COMPILE 's2swa_intelllvm' [16:20, 14:24] -PASS -- TEST 'cpld_control_p8_intelllvm' [22:13, 17:42](3216 MB) +PASS -- COMPILE 's2swa_32bit_intel' [17:13, 15:51] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:45, 15:28](3186 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:18, 19:33] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:09, 15:27](1900 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:33, 18:02](1942 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:49, 09:42](1072 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:41, 19:27](1872 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:16, 24:57] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:15, 16:44](1901 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:13, 15:56] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [31:17, 28:14](1934 MB) + +PASS -- COMPILE 's2swa_intel' [17:13, 15:53] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [22:43, 18:32](3209 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:59, 16:09](3213 MB) +PASS -- TEST 'cpld_restart_p8_intel' [16:44, 12:19](3138 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [22:38, 18:43](3236 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [16:45, 12:19](3160 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [24:02, 20:24](3438 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [19:49, 16:31](3206 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [16:55, 13:24](3153 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:59, 16:37](3210 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:07, 10:50](3490 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [14:37, 09:10](3600 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [30:04, 21:35](4273 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:48, 14:28](4363 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [15:55, 12:38](3193 MB) + +PASS -- COMPILE 's2sw_intel' [22:15, 20:43] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [13:24, 09:57](1914 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [18:52, 15:00](1966 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:12, 08:59] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [28:31, 25:07](3270 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:12, 08:25] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [15:21, 12:02](1937 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:17, 14:02] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:22, 07:30](1966 MB) + +PASS -- COMPILE 's2s_intel' [20:14, 18:55] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:11, 05:34](2869 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [07:14, 03:54](2878 MB) +PASS -- TEST 'cpld_restart_c48_intel' [05:52, 03:05](2294 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:14, 16:40] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [21:31, 18:21](3209 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:13, 19:32] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:30, 24:58](1920 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [18:25, 14:57](1100 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [32:13, 28:52](1892 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:13, 09:58] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [40:50, 35:15](1947 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:13, 13:26] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [07:29, 05:51](655 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:22, 03:33](1551 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:50, 05:33](1560 MB) +PASS -- TEST 'control_latlon_intel' [07:41, 05:28](1557 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:58, 04:11](1552 MB) +PASS -- TEST 'control_c48_intel' [15:11, 12:12](1574 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:48, 07:52](694 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [12:56, 10:56](1571 MB) +PASS -- TEST 'control_c192_intel' [16:26, 13:44](1690 MB) +PASS -- TEST 'control_c384_intel' [28:23, 24:28](1967 MB) +PASS -- TEST 'control_c384gdas_intel' [19:13, 15:24](1167 MB) +PASS -- TEST 'control_stochy_intel' [06:34, 04:34](610 MB) +PASS -- TEST 'control_stochy_restart_intel' [05:35, 03:14](418 MB) +PASS -- TEST 'control_lndp_intel' [06:29, 04:22](608 MB) +PASS -- TEST 'control_iovr4_intel' [06:54, 04:37](606 MB) +PASS -- TEST 'control_iovr5_intel' [05:32, 03:23](608 MB) +PASS -- TEST 'control_p8_intel' [09:00, 06:29](1840 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [09:23, 06:15](1841 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [09:03, 06:28](1847 MB) +PASS -- TEST 'control_restart_p8_intel' [07:08, 04:49](1003 MB) +PASS -- TEST 'control_noqr_p8_intel' [09:02, 06:28](1844 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [07:05, 04:48](1011 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:11, 04:10](1845 MB) +PASS -- TEST 'control_2threads_p8_intel' [08:05, 05:09](1919 MB) +PASS -- TEST 'control_p8_lndp_intel' [10:30, 07:30](1854 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:53, 04:54](1898 MB) +PASS -- TEST 'control_p8_mynn_intel' [10:15, 06:01](1854 MB) +PASS -- TEST 'merra2_thompson_intel' [10:51, 06:16](1846 MB) +PASS -- TEST 'regional_control_intel' [09:09, 06:48](869 MB) +PASS -- TEST 'regional_restart_intel' [06:55, 04:42](862 MB) +PASS -- TEST 'regional_decomp_intel' [09:42, 07:01](875 MB) +PASS -- TEST 'regional_2threads_intel' [08:42, 05:49](1002 MB) +PASS -- TEST 'regional_noquilt_intel' [07:35, 04:47](1203 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:24, 04:35](887 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:42, 06:54](880 MB) +PASS -- TEST 'regional_wofs_intel' [10:51, 08:31](1575 MB) + +PASS -- COMPILE 'rrfs_intel' [14:13, 12:59] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:08, 07:37](989 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:13, 06:28](1168 MB) +PASS -- TEST 'rap_decomp_intel' [12:13, 09:41](988 MB) +PASS -- TEST 'rap_2threads_intel' [10:58, 08:42](1065 MB) +PASS -- TEST 'rap_restart_intel' [09:00, 05:54](868 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:13, 07:06](988 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:13, 09:33](988 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:57, 07:23](874 MB) +PASS -- TEST 'hrrr_control_intel' [08:53, 06:19](981 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:55, 04:27](980 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [08:52, 06:11](1059 MB) +PASS -- TEST 'hrrr_control_restart_intel' [06:36, 04:24](817 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:40, 09:43](984 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [14:05, 11:39](1947 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:31, 09:11](1933 MB) + +PASS -- COMPILE 'csawmg_intel' [18:13, 16:20] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [10:47, 08:52](945 MB) +PASS -- TEST 'control_ras_intel' [06:26, 04:32](643 MB) + +PASS -- COMPILE 'wam_intel' [13:14, 11:35] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [18:49, 14:17](1639 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [18:15, 16:29] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [11:10, 05:38](1848 MB) +PASS -- TEST 'regional_control_faster_intel' [10:06, 06:36](877 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:15, 12:02] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:10, 03:28](1579 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:15, 05:11](1582 MB) +PASS -- TEST 'control_stochy_debug_intel' [07:34, 05:42](784 MB) +PASS -- TEST 'control_lndp_debug_intel' [07:33, 05:25](785 MB) +PASS -- TEST 'control_csawmg_debug_intel' [09:11, 06:29](1084 MB) +PASS -- TEST 'control_ras_debug_intel' [07:34, 05:02](790 MB) +PASS -- TEST 'control_diag_debug_intel' [08:17, 05:11](1645 MB) +PASS -- TEST 'control_debug_p8_intel' [07:58, 05:32](1877 MB) +PASS -- TEST 'regional_debug_intel' [20:38, 18:36](902 MB) +PASS -- TEST 'rap_control_debug_intel' [09:34, 07:15](1163 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:31, 05:35](1161 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [10:35, 07:52](1160 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [10:26, 08:10](1163 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:29, 05:38](1167 MB) +PASS -- TEST 'rap_diag_debug_intel' [10:36, 08:22](1249 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:27, 07:47](1163 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:34, 07:41](1164 MB) +PASS -- TEST 'rap_lndp_debug_intel' [09:39, 07:32](1165 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [11:37, 07:33](1164 MB) +PASS -- TEST 'rap_noah_debug_intel' [11:38, 07:27](1161 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:12, 05:05](1162 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:11, 10:31](1160 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:56, 05:38](1162 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [11:16, 07:30](1166 MB) +PASS -- TEST 'rap_flake_debug_intel' [10:26, 07:40](1165 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:12, 11:07](1169 MB) + +PASS -- COMPILE 'wam_debug_intel' [14:12, 12:12] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [19:57, 15:59](1674 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:14, 10:40] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:58, 06:16](1038 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:16, 08:20](865 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:12, 05:47](864 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [12:08, 09:23](910 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:02, 06:01](913 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:53, 05:56](856 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:54, 06:39](781 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:23, 02:19](753 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:12, 11:08] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [08:28, 04:29](1072 MB) +PASS -- TEST 'conus13km_2threads_intel' [06:05, 03:30](1054 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:59, 02:00](949 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:12, 10:48] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:03, 06:47](898 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:12, 08:30] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:35, 05:15](1040 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:34, 07:25](1043 MB) +PASS -- TEST 'conus13km_debug_intel' [19:27, 15:58](1126 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [19:26, 16:17](802 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [17:08, 14:10](1109 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:10, 16:17](1198 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:12, 08:03] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:33, 07:33](1064 MB) + +PASS -- COMPILE 'hafsw_intel' [16:13, 14:47] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:20, 05:40](717 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:34, 06:37](1079 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:31, 10:08](745 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:29, 14:01](777 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:52, 13:17](803 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:10, 06:01](469 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:48, 09:30](499 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [07:59, 05:12](397 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:51, 10:25](484 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:21, 06:08](505 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:26, 05:56](508 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:07, 07:04](587 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:38, 04:01](425 MB) +PASS -- TEST 'gnv1_nested_intel' [12:08, 08:37](1689 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:13, 08:24] ( 1467 warnings 1469 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:03, 15:12](611 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [15:13, 14:08] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:10, 10:05](629 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:29, 10:16](811 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:22, 14:46] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:48, 06:41](806 MB) + +PASS -- COMPILE 'hafs_all_intel' [23:18, 21:57] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:19, 08:45](735 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:25, 08:47](716 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [25:15, 22:16](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [18:13, 16:32] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:27, 04:44](764 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:32, 01:43](752 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:21, 04:38](641 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:28, 04:38](648 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:24, 04:33](641 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:28, 04:39](763 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:28, 02:37](764 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:26, 04:31](642 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:14, 08:48](693 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:15, 08:46](676 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:25, 04:43](764 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:55, 06:44](2030 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [08:56, 06:47](2030 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:16, 07:10] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:30, 07:32](735 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [18:14, 16:29] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:25, 02:38](764 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:14, 03:29] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [07:43, 04:17](315 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:45, 03:50](460 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:52, 01:30](462 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [13:12, 11:08] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [05:01, 02:39](452 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [04:46, 02:25](251 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:12, 13:53] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:20, 06:32](1914 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [22:14, 20:53] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [14:21, 11:00](1894 MB) + +PASS -- COMPILE 'atml_intel' [15:17, 13:18] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [13:30, 10:51](1879 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [11:19, 08:52](1879 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:50, 06:15](1028 MB) + +PASS -- COMPILE 'atml_debug_intel' [12:15, 10:10] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:25, 09:26](1906 MB) + +PASS -- COMPILE 'atmw_intel' [14:16, 13:01] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:30, 02:51](1872 MB) + +PASS -- COMPILE 'atmaero_intel' [14:19, 12:19] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [12:27, 09:26](3098 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [12:28, 09:21](2982 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [12:08, 09:44](2991 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [15:13, 13:45] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [22:03, 18:48](4442 MB) + +PASS -- COMPILE 'atm_fbh_intel' [19:18, 17:15] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [14:20, 11:35](829 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [22:14, 20:17] +PASS -- TEST 'cpld_control_gfsv17_intelllvm' [21:31, 18:08](1900 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [14:17, 13:07] +PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [33:32, 30:28](1922 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [22:18, 21:05] +PASS -- TEST 'cpld_control_sfs_intelllvm' [19:58, 17:17](1901 MB) + +PASS -- COMPILE 's2swa_intelllvm' [18:16, 16:42] +PASS -- TEST 'cpld_control_p8_intelllvm' [21:45, 18:36](3215 MB) SYNOPSIS: -Starting Date/Time: 20241231 02:41:43 -Ending Date/Time: 20241231 05:27:00 -Total Time: 02h:47m:05s +Starting Date/Time: 20250106 07:35:16 +Ending Date/Time: 20250106 09:42:36 +Total Time: 02h:10m:16s Compiles Completed: 47/47 Tests Completed: 193/193 diff --git a/tests/logs/RegressionTests_gaeac6.log b/tests/logs/RegressionTests_gaeac6.log index 2042cf3c90..a807a999b9 100644 --- a/tests/logs/RegressionTests_gaeac6.log +++ b/tests/logs/RegressionTests_gaeac6.log @@ -1,7 +1,7 @@ ====START OF GAEAC6 REGRESSION TESTING LOG==== UFSWM hash used in testing: -efbea5c3730b5774eca84d23a1325746cde9554b +c4ea32ee15fe4a74e5f5db6f38998068db93a5ab Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 74a1c84b0f6e2063f073a5b189a0a3b84f59dbca FV3 (remotes/origin/rrfsv1-to-ufs/dev7) + e1d7f499b8715e001453f00f14a0a6fc42d6da7d FV3 (remotes/origin/rrfsv1-to-ufs/dev8) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 92f1ad01744cb8309b459d3ecec5a02ab526e043 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5533-g92f1ad01) + fa3f1ce1cbaebd30998ea16a149c2d71a41ccf82 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5537-gfa3f1ce1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -39,287 +39,288 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /gpfs/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20241230 -COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_3639337 +COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_380130 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: bil-fire8 +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [10:13, 08:15] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:24, 07:10](2033 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [38:23, 36:42] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [12:28, 10:28](1926 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [13:31, 11:22](1933 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [06:30, 05:09](1085 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [14:39, 12:22](1905 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [52:24, 51:09] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [12:22, 10:35](1926 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:12, 03:52] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [20:32, 17:47](1950 MB) - -PASS -- COMPILE 's2swa_intel' [14:20, 12:48] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [18:43, 09:19](2066 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:39, 09:13](2064 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:29, 05:06](1626 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:38, 09:32](2082 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:28, 05:10](1458 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [18:40, 10:55](2225 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [18:40, 09:50](2059 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:36, 07:37](2021 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:42, 09:28](2067 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [15:53, 06:46](2424 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [05:49, 04:07](2665 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [21:42, 11:43](3608 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [09:37, 06:38](3445 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:33, 05:10](1922 MB) - -PASS -- COMPILE 's2sw_intel' [09:12, 07:41] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:22, 04:48](1933 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:24, 07:59](1856 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:12, 03:52] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [17:34, 14:27](2090 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:12, 03:37] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:29, 05:58](1956 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [06:20, 04:59] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:27, 03:14](1989 MB) - -PASS -- COMPILE 's2s_intel' [08:12, 07:00] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [06:19, 04:11](2869 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [12:20, 10:22](2881 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:20, 00:47](2295 MB) - -PASS -- COMPILE 's2swa_faster_intel' [10:14, 09:00] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [11:26, 09:29](2059 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:15, 11:30] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:29, 17:45](1942 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:27, 08:59](1115 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:29, 20:57](1921 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:13, 03:39] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:25, 20:12](1955 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [08:11, 06:38] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:17, 03:02](530 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:28, 02:07](1432 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:30, 02:15](1433 MB) -PASS -- TEST 'control_latlon_intel' [04:28, 02:01](1431 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:32, 02:05](1426 MB) -PASS -- TEST 'control_c48_intel' [10:29, 07:29](1571 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:18, 04:17](696 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [09:29, 07:24](1569 MB) -PASS -- TEST 'control_c192_intel' [10:33, 07:40](1689 MB) -PASS -- TEST 'control_c384_intel' [19:48, 16:32](1965 MB) -PASS -- TEST 'control_c384gdas_intel' [12:55, 10:01](1178 MB) -PASS -- TEST 'control_stochy_intel' [03:17, 01:39](489 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:14, 00:43](292 MB) -PASS -- TEST 'control_lndp_intel' [03:16, 01:08](491 MB) -PASS -- TEST 'control_iovr4_intel' [03:17, 01:45](486 MB) -PASS -- TEST 'control_iovr5_intel' [03:17, 01:45](484 MB) -PASS -- TEST 'control_p8_intel' [05:31, 02:22](1721 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:37, 02:05](1725 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:32, 03:01](1732 MB) -PASS -- TEST 'control_restart_p8_intel' [05:20, 01:20](873 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:32, 02:50](1726 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:23, 01:20](886 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:32, 02:24](1722 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:30, 02:45](1805 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:28, 04:28](1732 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:20, 02:34](1773 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:21, 02:06](1735 MB) -PASS -- TEST 'merra2_thompson_intel' [04:20, 02:16](1723 MB) -PASS -- TEST 'regional_control_intel' [05:19, 03:21](877 MB) -PASS -- TEST 'regional_restart_intel' [04:16, 01:52](861 MB) -PASS -- TEST 'regional_decomp_intel' [05:16, 03:30](880 MB) -PASS -- TEST 'regional_2threads_intel' [05:18, 02:41](1016 MB) -PASS -- TEST 'regional_noquilt_intel' [05:18, 03:14](1205 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:20, 03:22](878 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:19, 03:23](874 MB) -PASS -- TEST 'regional_wofs_intel' [08:19, 04:25](1574 MB) - -PASS -- COMPILE 'rrfs_intel' [07:11, 06:05] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:21, 05:16](866 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:30, 02:50](1162 MB) -PASS -- TEST 'rap_decomp_intel' [09:28, 04:58](868 MB) -PASS -- TEST 'rap_2threads_intel' [09:28, 05:45](938 MB) -PASS -- TEST 'rap_restart_intel' [04:20, 02:29](745 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:20, 04:46](869 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:19, 04:58](867 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:25, 03:35](743 MB) -PASS -- TEST 'hrrr_control_intel' [06:20, 02:33](864 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:19, 02:40](860 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:19, 02:56](936 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:16, 01:23](696 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:24, 04:46](861 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:15, 06:09](1821 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:14, 05:57](1814 MB) - -PASS -- COMPILE 'csawmg_intel' [07:10, 05:44] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [06:17, 04:13](825 MB) -PASS -- TEST 'control_ras_intel' [04:14, 02:12](519 MB) - -PASS -- COMPILE 'wam_intel' [07:10, 05:50] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [09:25, 07:36](1518 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [08:12, 06:18] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:23, 02:05](1728 MB) -PASS -- TEST 'regional_control_faster_intel' [05:21, 03:13](887 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 05:41] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:19, 01:35](1456 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:23, 01:36](1460 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:14, 02:03](661 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:14, 01:54](657 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:20, 02:50](964 MB) -PASS -- TEST 'control_ras_debug_intel' [03:14, 01:54](667 MB) -PASS -- TEST 'control_diag_debug_intel' [03:21, 02:03](1516 MB) -PASS -- TEST 'control_debug_p8_intel' [03:16, 01:44](1750 MB) -PASS -- TEST 'regional_debug_intel' [13:20, 11:14](893 MB) -PASS -- TEST 'rap_control_debug_intel' [05:14, 03:23](1038 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:15, 03:17](1039 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:15, 03:40](1041 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:15, 03:23](1040 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:15, 03:21](1038 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:22, 03:33](1126 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 03:27](1039 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:16, 03:29](1037 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:17, 03:21](1041 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:17, 03:25](1040 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:16, 03:26](1038 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:15, 03:26](1040 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:14, 05:20](1040 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:15, 03:19](1038 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:17, 03:30](1042 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:16, 03:22](1039 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:19, 05:42](1043 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:11, 03:23] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [10:19, 08:34](1541 MB) +PASS -- COMPILE 's2swa_32bit_intel' [09:13, 08:10] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:59, 07:07](2034 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:14, 12:08] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [13:49, 10:28](1920 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:06, 11:17](1956 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:55, 05:16](1084 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:55, 12:18](1905 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [43:38, 41:39] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [13:08, 11:03](1913 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [27:19, 26:02] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [20:47, 17:46](1955 MB) + +PASS -- COMPILE 's2swa_intel' [23:33, 21:51] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:55, 09:20](2067 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:54, 09:15](2063 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:02, 04:57](1626 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:43, 09:10](2079 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:08, 05:15](1458 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [17:36, 10:41](2234 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [15:37, 08:56](2059 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:41, 07:15](2016 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:50, 09:19](2066 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:04, 05:57](2418 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [08:48, 03:59](2668 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [22:53, 11:23](3603 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:49, 06:38](3441 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:20, 05:10](1927 MB) + +PASS -- COMPILE 's2sw_intel' [09:13, 07:35] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:46, 04:50](1933 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:56, 07:59](1855 MB) + +PASS -- COMPILE 's2swa_debug_intel' [34:20, 33:01] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [17:56, 14:23](2087 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:12, 03:48] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:45, 05:59](1969 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [08:13, 07:03] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:53, 03:16](1991 MB) + +PASS -- COMPILE 's2s_intel' [59:26, 57:57] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:15, 04:12](2867 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:16, 01:17](2880 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:41, 00:48](2290 MB) + +PASS -- COMPILE 's2swa_faster_intel' [34:38, 33:04] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [13:07, 09:05](2065 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:14, 11:19] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:08, 17:44](1940 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:51, 09:08](1113 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:59, 20:58](1911 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:12, 03:41] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:42, 20:00](1957 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [54:26, 53:15] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:35, 02:44](533 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:10, 02:06](1430 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:15, 02:13](1443 MB) +PASS -- TEST 'control_latlon_intel' [03:58, 02:06](1437 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:47, 02:09](1436 MB) +PASS -- TEST 'control_c48_intel' [10:10, 07:32](1575 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:52, 04:26](694 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [10:22, 07:31](1573 MB) +PASS -- TEST 'control_c192_intel' [10:28, 07:43](1697 MB) +PASS -- TEST 'control_c384_intel' [20:21, 16:35](1957 MB) +PASS -- TEST 'control_c384gdas_intel' [14:11, 10:01](1175 MB) +PASS -- TEST 'control_stochy_intel' [03:44, 01:17](489 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:39, 00:44](291 MB) +PASS -- TEST 'control_lndp_intel' [03:41, 01:10](489 MB) +PASS -- TEST 'control_iovr4_intel' [03:47, 01:48](485 MB) +PASS -- TEST 'control_iovr5_intel' [03:48, 01:47](483 MB) +PASS -- TEST 'control_p8_intel' [05:35, 02:29](1722 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:06, 02:04](1722 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:26, 02:27](1722 MB) +PASS -- TEST 'control_restart_p8_intel' [04:19, 01:28](874 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:16, 02:21](1712 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:15, 01:21](885 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:11, 02:24](1717 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:12, 02:48](1799 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:02, 04:18](1727 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:27, 02:42](1774 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:30, 02:16](1739 MB) +PASS -- TEST 'merra2_thompson_intel' [05:24, 02:17](1731 MB) +PASS -- TEST 'regional_control_intel' [06:02, 03:27](876 MB) +PASS -- TEST 'regional_restart_intel' [03:56, 01:53](860 MB) +PASS -- TEST 'regional_decomp_intel' [06:03, 03:35](879 MB) +PASS -- TEST 'regional_2threads_intel' [05:02, 02:39](1023 MB) +PASS -- TEST 'regional_noquilt_intel' [06:07, 03:17](1205 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:33, 03:21](887 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:01, 03:22](880 MB) +PASS -- TEST 'regional_wofs_intel' [07:02, 04:25](1574 MB) + +PASS -- COMPILE 'rrfs_intel' [08:13, 07:01] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:19, 04:49](869 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:15, 02:51](1161 MB) +PASS -- TEST 'rap_decomp_intel' [09:22, 05:12](869 MB) +PASS -- TEST 'rap_2threads_intel' [08:28, 05:48](952 MB) +PASS -- TEST 'rap_restart_intel' [05:09, 02:33](742 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:30, 04:50](870 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:30, 05:02](867 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:17, 03:36](741 MB) +PASS -- TEST 'hrrr_control_intel' [07:32, 02:38](859 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:32, 02:40](860 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:32, 02:57](940 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:46, 01:23](694 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:25, 04:43](862 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:52, 06:09](1816 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:55, 05:58](1813 MB) + +PASS -- COMPILE 'csawmg_intel' [07:14, 05:44] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [07:57, 04:13](824 MB) +PASS -- TEST 'control_ras_intel' [05:41, 02:11](517 MB) + +PASS -- COMPILE 'wam_intel' [07:12, 05:46] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [10:10, 07:30](1510 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [08:12, 06:26] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:18, 02:07](1726 MB) +PASS -- TEST 'regional_control_faster_intel' [05:57, 03:23](882 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [36:19, 34:38] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:21, 01:35](1456 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:58, 01:32](1458 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:47, 02:10](659 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:38, 01:55](656 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:06, 02:53](963 MB) +PASS -- TEST 'control_ras_debug_intel' [04:47, 01:56](665 MB) +PASS -- TEST 'control_diag_debug_intel' [05:17, 01:52](1514 MB) +PASS -- TEST 'control_debug_p8_intel' [04:08, 01:49](1757 MB) +PASS -- TEST 'regional_debug_intel' [14:13, 11:14](889 MB) +PASS -- TEST 'rap_control_debug_intel' [05:42, 03:20](1038 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:43, 03:20](1031 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:39, 03:23](1041 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:40, 03:24](1040 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:39, 03:26](1037 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:57, 03:33](1124 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:46, 03:24](1042 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:45, 03:23](1042 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:48, 03:25](1039 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:47, 03:22](1042 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:47, 03:16](1036 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:47, 03:22](1042 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:41, 05:25](1039 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:35, 03:24](1036 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:40, 03:26](1043 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:39, 03:21](1035 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:16, 05:41](1044 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:11, 03:04] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [11:06, 08:52](1545 MB) PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:12, 05:44] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:33, 02:41](1037 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:20, 04:04](748 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:23, 02:25](743 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:18, 04:56](805 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:19, 02:46](790 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:18, 02:21](745 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:19, 03:01](650 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:19, 01:14](628 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:10, 05:42] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:34, 01:35](954 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:19, 00:43](1085 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:20, 00:51](825 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:12, 05:43] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:20, 02:48](769 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:12, 03:00] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:14, 03:20](919 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:16, 03:40](916 MB) -PASS -- TEST 'conus13km_debug_intel' [10:35, 09:02](1006 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [11:34, 09:21](675 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:35, 08:07](1137 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [10:31, 09:03](1073 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 03:03] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:15, 03:24](943 MB) - -PASS -- COMPILE 'hafsw_intel' [08:12, 07:10] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [05:51, 03:41](716 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:19, 02:59](1069 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:53, 04:47](778 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [10:49, 08:09](814 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [10:55, 08:39](836 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:33, 03:34](482 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:47, 04:27](486 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:25, 01:46](397 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:02, 05:08](458 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:27, 02:34](496 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:25, 02:23](501 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:28, 02:57](585 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:19, 01:02](427 MB) -PASS -- TEST 'gnv1_nested_intel' [05:43, 02:57](1699 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:10, 03:17] ( 1467 warnings 1469 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [10:28, 08:30](604 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [09:12, 07:25] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [07:33, 05:05](635 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [08:36, 06:04](794 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:19, 09:54] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:38, 03:51](790 MB) - -PASS -- COMPILE 'hafs_all_intel' [09:11, 07:32] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [06:42, 04:19](767 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:42, 04:21](751 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [12:37, 10:56](889 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:10, 05:04] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:13, 01:42](763 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:14, 01:02](751 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:13, 01:36](642 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:13, 01:36](643 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 01:39](644 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 01:45](762 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:16, 01:41](764 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:13, 01:35](642 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:28, 04:09](707 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:26, 04:02](686 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:13, 01:41](764 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:13, 02:43](2030 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:14, 02:45](2030 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:19] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:14, 03:46](734 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:12, 04:48] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:24, 01:41](763 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:38] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:22, 01:01](324 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:18, 00:48](459 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:35](460 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:12, 06:39] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:23, 02:26](1795 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:12, 06:06] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:23, 05:25](1787 MB) - -PASS -- COMPILE 'atml_intel' [08:12, 06:41] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:24, 03:58](1893 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [05:25, 03:59](1896 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:18, 02:12](1041 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:11, 03:48] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:23, 04:08](1924 MB) - -PASS -- COMPILE 'atmw_intel' [09:12, 07:12] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:22, 01:30](1761 MB) - -PASS -- COMPILE 'atmaero_intel' [07:12, 06:06] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:23, 02:44](1949 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:23, 03:14](1609 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:20, 03:18](1609 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:12, 03:18] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [15:44, 13:24](4443 MB) - -PASS -- COMPILE 'atm_fbh_intel' [07:11, 05:46] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [07:18, 06:01](833 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:46, 02:42](1036 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:08, 04:06](747 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:08, 02:21](743 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:05, 05:36](796 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:08, 02:43](792 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:08, 02:28](744 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:02, 03:02](649 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:39, 01:12](628 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:13, 05:48] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:13, 01:25](953 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:53, 00:45](1084 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:55, 00:52](824 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:12, 05:46] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:12, 02:46](768 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:12, 03:06] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:39, 03:16](921 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:38, 03:13](916 MB) +PASS -- TEST 'conus13km_debug_intel' [11:17, 08:45](1003 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [11:17, 09:04](674 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:04, 08:09](1144 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [11:03, 08:59](1077 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:02] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:36, 03:18](945 MB) + +PASS -- COMPILE 'hafsw_intel' [10:29, 08:42] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [10:51, 03:35](712 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:02, 02:59](1070 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:30, 04:46](779 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:58, 08:10](813 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:43, 08:39](837 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:54, 03:31](472 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:15, 04:27](486 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:56, 01:46](399 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:28, 04:46](455 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:18, 02:34](500 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:26, 02:23](503 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:57, 02:57](585 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:10, 01:10](427 MB) +PASS -- TEST 'gnv1_nested_intel' [09:16, 02:57](1709 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:12, 03:18] ( 1467 warnings 1469 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:39, 08:39](604 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [09:13, 07:25] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [08:59, 05:05](631 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:02, 05:09](801 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [09:13, 07:19] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:23, 04:00](796 MB) + +PASS -- COMPILE 'hafs_all_intel' [09:13, 07:31] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:33, 04:24](772 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:40, 04:22](759 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [15:44, 10:57](890 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:13, 05:12] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:59, 01:41](764 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:39, 01:03](739 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:58, 01:35](643 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:57, 01:38](644 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:40, 01:39](644 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:50, 01:41](763 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:47, 01:42](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:59, 01:36](644 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:50, 04:11](707 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:48, 04:06](688 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:52, 01:41](752 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:40, 02:45](2030 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:57, 02:45](2030 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:12, 02:23] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:37, 03:48](749 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:12, 05:04] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:35, 01:42](762 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:42] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:38, 01:06](324 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:15, 00:51](461 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:16, 00:35](461 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:13, 06:29] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:44, 02:29](1788 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:14, 06:09] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [10:33, 07:19](1782 MB) + +PASS -- COMPILE 'atml_intel' [57:24, 55:22] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:42, 03:56](1897 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:41, 03:57](1895 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:59, 03:07](1039 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:13, 03:46] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:32, 04:11](1921 MB) + +PASS -- COMPILE 'atmw_intel' [08:13, 07:03] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:14, 01:19](1759 MB) + +PASS -- COMPILE 'atmaero_intel' [07:13, 06:00] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:35, 02:46](1947 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:37, 03:15](1600 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:24, 03:19](1617 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:13, 03:05] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [17:34, 13:31](4446 MB) + +PASS -- COMPILE 'atm_fbh_intel' [07:12, 05:49] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [08:15, 06:01](826 MB) SYNOPSIS: -Starting Date/Time: 20241231 16:58:19 -Ending Date/Time: 20241231 19:04:46 -Total Time: 02h:06m:48s +Starting Date/Time: 20250103 15:47:51 +Ending Date/Time: 20250103 17:59:54 +Total Time: 02h:14m:42s Compiles Completed: 42/42 Tests Completed: 187/187 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index a0634f04ef..a21b65756e 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -7e1e51eae8370dc0c2e21bd6ba6a784f29cf589c +c4ea32ee15fe4a74e5f5db6f38998068db93a5ab Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 74a1c84b0f6e2063f073a5b189a0a3b84f59dbca FV3 (remotes/origin/rrfsv1-to-ufs/dev7) + e1d7f499b8715e001453f00f14a0a6fc42d6da7d FV3 (remotes/origin/rrfsv1-to-ufs/dev8) 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) @@ -27,388 +27,388 @@ 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-20241230 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3137259 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3015246 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:12, 13:07] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:07, 11:50](3328 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:13, 16:38] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:02, 19:46](1975 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:19, 20:38](2177 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:17, 08:32](1261 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:05, 23:31](1867 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:12, 16:16] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [21:44, 19:34](1952 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:13, 06:52] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [30:10, 27:24](1923 MB) - -PASS -- COMPILE 's2swa_intel' [15:13, 13:24] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [18:20, 15:45](3344 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:23, 14:05](3348 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:17, 07:25](3255 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [17:18, 14:14](3369 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:29, 07:23](3281 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [18:11, 15:32](3562 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:15, 14:34](3326 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:15, 11:45](3217 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:22, 14:19](3358 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:12, 10:36](3507 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:37, 06:30](3619 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [25:17, 16:17](4312 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:01, 09:24](4372 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:11, 07:47](3276 MB) - -PASS -- COMPILE 's2sw_intel' [14:13, 12:21] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:59, 09:05](1981 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:04, 12:48](2051 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:12, 06:50] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [25:16, 22:32](3410 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:12, 06:40] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:03, 09:52](2002 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:13, 11:27] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:06, 04:26](2041 MB) - -PASS -- COMPILE 's2s_intel' [13:13, 11:52] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:42, 07:49](3038 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:42, 02:26](3017 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:39, 01:31](2465 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:13, 16:55] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [18:21, 15:23](3353 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:12, 15:48] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [31:26, 28:13](2022 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:46, 13:58](1276 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [36:18, 33:37](1931 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:12, 06:13] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:12, 29:42](1971 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:12, 11:09] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:23, 03:24](703 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:42, 03:13](1584 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:43, 03:17](1584 MB) -PASS -- TEST 'control_latlon_intel' [05:34, 03:17](1588 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:45, 03:18](1590 MB) -PASS -- TEST 'control_c48_intel' [13:45, 11:35](1711 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:25, 06:32](851 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [13:41, 11:32](1721 MB) -PASS -- TEST 'control_c192_intel' [14:01, 12:08](1760 MB) -PASS -- TEST 'control_c384_intel' [16:52, 13:37](1976 MB) -PASS -- TEST 'control_c384gdas_intel' [13:03, 08:12](1378 MB) -PASS -- TEST 'control_stochy_intel' [03:23, 01:38](664 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:30, 01:01](495 MB) -PASS -- TEST 'control_lndp_intel' [03:21, 01:37](660 MB) -PASS -- TEST 'control_iovr4_intel' [04:23, 02:33](653 MB) -PASS -- TEST 'control_iovr5_intel' [04:23, 02:35](652 MB) -PASS -- TEST 'control_p8_intel' [05:56, 03:47](1873 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:02, 03:13](1871 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:55, 03:50](1840 MB) -PASS -- TEST 'control_restart_p8_intel' [03:46, 02:03](1129 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:50, 03:37](1864 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:01, 02:02](1167 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:48, 03:47](1862 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:49, 04:09](1944 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:44, 06:35](1872 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:53, 04:16](1925 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:53, 03:07](1894 MB) -PASS -- TEST 'merra2_thompson_intel' [05:50, 03:27](1896 MB) -PASS -- TEST 'regional_control_intel' [07:36, 05:23](1125 MB) -PASS -- TEST 'regional_restart_intel' [04:35, 02:53](1102 MB) -PASS -- TEST 'regional_decomp_intel' [07:37, 05:59](1092 MB) -PASS -- TEST 'regional_2threads_intel' [05:36, 04:01](1069 MB) -PASS -- TEST 'regional_noquilt_intel' [07:38, 05:20](1418 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:38, 05:24](1117 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:33, 05:27](1119 MB) -PASS -- TEST 'regional_wofs_intel' [08:36, 07:02](1895 MB) - -PASS -- COMPILE 'rrfs_intel' [12:12, 10:12] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:42, 07:49](1115 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:03, 04:10](1264 MB) -PASS -- TEST 'rap_decomp_intel' [10:51, 08:09](1026 MB) -PASS -- TEST 'rap_2threads_intel' [10:49, 08:48](1100 MB) -PASS -- TEST 'rap_restart_intel' [06:46, 04:09](1104 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:42, 07:50](1109 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:52, 08:15](1037 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:52, 05:53](1133 MB) -PASS -- TEST 'hrrr_control_intel' [05:41, 04:01](1038 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:36, 04:15](1027 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:37, 04:23](1087 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:41, 02:18](1009 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:45, 08:00](1069 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:29, 09:49](1977 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:27, 09:18](2060 MB) - -PASS -- COMPILE 'csawmg_intel' [11:12, 09:59] -PASS -- TEST 'control_csawmg_intel' [08:40, 06:11](1015 MB) -PASS -- TEST 'control_ras_intel' [05:22, 03:32](736 MB) - -PASS -- COMPILE 'wam_intel' [11:12, 10:03] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:55, 11:34](1658 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:12, 10:31] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:50, 02:49](1885 MB) -PASS -- TEST 'regional_control_faster_intel' [06:36, 04:55](1121 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:12, 07:44] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:43, 02:25](1600 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:43, 02:11](1615 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:25, 03:16](831 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:48](824 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:35, 04:31](1139 MB) -PASS -- TEST 'control_ras_debug_intel' [04:23, 02:54](835 MB) -PASS -- TEST 'control_diag_debug_intel' [04:52, 02:51](1644 MB) -PASS -- TEST 'control_debug_p8_intel' [04:39, 02:40](1881 MB) -PASS -- TEST 'regional_debug_intel' [19:37, 17:42](1099 MB) -PASS -- TEST 'rap_control_debug_intel' [07:22, 05:17](1213 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:27, 04:56](1208 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:21, 05:10](1212 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 05:06](1216 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:23, 05:05](1214 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:45, 05:33](1289 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:27, 05:17](1210 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:23, 05:15](1216 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:26, 05:06](1217 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:24, 05:01](1209 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:27, 04:55](1209 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:28, 05:06](1213 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:24, 08:25](1211 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:25, 05:03](1211 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:25, 05:08](1213 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:24, 05:15](1213 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:51, 08:46](1224 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:11, 04:26] -PASS -- TEST 'control_csawmg_debug_gnu' [04:38, 02:23](718 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:10, 04:39] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:47, 13:38](1682 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:10, 09:50] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:23, 03:56](1138 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:38, 06:42](1048 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:45, 03:26](985 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:42, 07:32](999 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:36, 03:56](971 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:39, 03:45](925 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:44, 05:01](1034 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:47, 01:56](934 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:10, 10:11] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:00, 02:03](1187 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:47, 00:59](1167 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:49, 01:16](1099 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:12, 10:32] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:45, 04:21](989 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:37] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:28, 05:20](1082 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 04:50](1095 MB) -PASS -- TEST 'conus13km_debug_intel' [15:45, 14:02](1240 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:45, 14:25](941 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [14:39, 12:27](1198 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:00, 14:04](1311 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 04:37] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:40, 05:11](1138 MB) - -PASS -- COMPILE 'hafsw_intel' [13:10, 11:46] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:31, 05:35](716 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:42, 06:33](1126 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:33, 07:05](819 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:18, 15:10](845 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:43, 18:41](876 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:03, 05:32](493 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:26, 06:49](507 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:54, 02:48](367 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:08, 07:24](481 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:48, 03:58](521 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:49, 03:34](524 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:52, 04:08](572 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:16](398 MB) -PASS -- TEST 'gnv1_nested_intel' [07:29, 04:11](1740 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:11, 05:07] ( 1462 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:00, 13:05](581 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:12, 11:22] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:03, 10:18](640 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:22, 10:20](696 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 11:50] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:38, 08:20](715 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:10, 10:53] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:26, 06:40](812 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:24, 06:44](800 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:01, 16:25](1215 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:10, 06:23] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 02:45](1162 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:56](1112 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:46](1036 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:44](1026 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:42](1029 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 02:44](1158 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:46](1153 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:19, 02:40](1028 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:30, 06:13](1072 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:25, 06:14](1053 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:44](1144 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 03:57](2506 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:19, 04:01](2449 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:27] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:44](1084 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:49] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:44](1167 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:16] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:32, 00:45](260 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:49](325 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:32](331 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:31] -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:31, 00:32](562 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:32, 00:18](458 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 11:02] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:01, 03:59](1967 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 10:21] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:53, 07:59](1989 MB) - -PASS -- COMPILE 'atml_intel' [12:11, 11:03] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:10, 04:34](1845 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:07, 04:21](1868 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:44, 02:22](1096 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:11, 05:36] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:52, 05:52](1892 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 10:56] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:46, 02:00](1923 MB) - -PASS -- COMPILE 'atmaero_intel' [12:11, 10:39] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:59, 04:10](3186 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:58, 04:54](3091 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:46, 04:58](3103 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:33] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_fbh_intel' [11:11, 09:50] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:29, 11:41](1104 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:11, 06:56] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:55, 08:30](1052 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:11, 06:48] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:39, 05:05](978 MB) - -PASS -- COMPILE 'atm_gnu' [06:11, 04:34] -PASS -- TEST 'control_c48_gnu' [11:37, 09:37](1501 MB) -PASS -- TEST 'control_stochy_gnu' [05:21, 03:29](497 MB) -PASS -- TEST 'control_ras_gnu' [06:22, 04:54](506 MB) -PASS -- TEST 'control_p8_gnu' [07:54, 05:15](1464 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [07:52, 05:11](1456 MB) -PASS -- TEST 'control_flake_gnu' [12:24, 10:43](542 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:11, 04:20] -PASS -- TEST 'rap_control_gnu' [13:41, 11:30](809 MB) -PASS -- TEST 'rap_decomp_gnu' [13:32, 11:37](804 MB) -PASS -- TEST 'rap_2threads_gnu' [19:34, 17:22](909 MB) -PASS -- TEST 'rap_restart_gnu' [07:39, 05:51](574 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [13:41, 11:30](808 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:34, 11:42](836 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:41, 08:34](577 MB) -PASS -- TEST 'hrrr_control_gnu' [07:38, 05:54](806 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:37, 05:51](821 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [10:40, 08:42](901 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:31, 06:01](835 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [05:25, 03:09](556 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:26, 03:02](649 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [13:45, 11:11](801 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:11, 03:54] -PASS -- TEST 'control_csawmg_gnu' [10:37, 08:40](735 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:36] -PASS -- TEST 'control_diag_debug_gnu' [03:47, 01:40](1271 MB) -PASS -- TEST 'regional_debug_gnu' [13:37, 11:15](752 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:25, 02:37](819 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:24, 02:33](815 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:22, 02:38](822 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:22, 02:37](822 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:33, 02:51](905 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:23, 04:12](819 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:22, 02:42](819 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:21, 02:41](817 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:23, 01:35](453 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:20, 01:50](447 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:51, 01:55](1440 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:26, 03:01](820 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:25, 02:38](824 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:37, 04:24](825 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:26] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 04:11] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:39, 09:44](691 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:33, 05:06](702 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [17:33, 15:31](736 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [09:30, 08:00](730 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:30, 05:19](694 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:37, 07:19](552 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:29, 02:39](533 MB) -PASS -- TEST 'conus13km_control_gnu' [05:53, 03:07](867 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:46, 01:33](874 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:46, 01:50](559 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:12, 09:37] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:40, 05:58](726 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [09:11, 07:10] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:22, 02:36](713 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:21, 02:29](706 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:44, 06:55](879 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [09:42, 07:08](571 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [07:38, 05:52](890 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:39, 06:58](947 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:58] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:24, 02:37](729 MB) - -PASS -- COMPILE 's2swa_gnu' [18:11, 16:37] - -PASS -- COMPILE 's2s_gnu' [17:12, 16:02] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [21:09, 18:37](1495 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [05:11, 03:07] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 15:45] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [39:10, 36:37](1457 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 02:57] - -PASS -- COMPILE 'datm_cdeps_gnu' [17:11, 15:46] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:19, 03:06](694 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:12, 13:05] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:10, 11:38](3316 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:13, 16:41] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:15, 19:53](1967 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:30, 20:59](2174 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:31, 08:21](1266 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:28, 23:47](1875 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:14, 16:11] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [22:52, 19:23](1973 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:13, 06:30] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [32:05, 27:26](1905 MB) + +PASS -- COMPILE 's2swa_intel' [15:12, 13:29] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [18:29, 15:46](3319 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:27, 14:08](3349 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:40, 07:24](3254 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [17:24, 14:10](3365 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [12:28, 09:24](3248 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [18:17, 15:22](3570 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:17, 14:02](3338 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:24, 11:37](3219 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:27, 14:02](3359 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:21, 10:41](3521 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:06, 06:32](3615 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [27:15, 16:21](4314 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [36:11, 09:34](4385 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:16, 07:21](3312 MB) + +PASS -- COMPILE 's2sw_intel' [14:13, 12:15] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [12:04, 09:10](1981 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:09, 10:57](2054 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:13, 06:20] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [27:12, 22:51](3407 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:13, 06:07] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:51, 09:46](2010 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:13, 11:34] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:08, 04:26](2043 MB) + +PASS -- COMPILE 's2s_intel' [13:13, 11:30] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:44, 07:55](3027 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:50, 02:25](3027 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:48, 01:29](2492 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:13, 17:00] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:41, 13:39](3350 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:13, 15:14] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [31:08, 28:11](2022 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [21:12, 14:07](1272 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [38:08, 33:35](1925 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:12, 05:44] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:12, 29:45](1952 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:13, 10:42] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:27, 03:22](712 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:46, 03:14](1596 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:51, 03:21](1595 MB) +PASS -- TEST 'control_latlon_intel' [05:40, 03:16](1587 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:52, 03:16](1594 MB) +PASS -- TEST 'control_c48_intel' [13:52, 11:33](1721 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:35, 06:37](842 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [13:50, 11:39](1726 MB) +PASS -- TEST 'control_c192_intel' [14:06, 12:07](1744 MB) +PASS -- TEST 'control_c384_intel' [17:12, 13:53](1976 MB) +PASS -- TEST 'control_c384gdas_intel' [14:29, 08:22](1381 MB) +PASS -- TEST 'control_stochy_intel' [03:26, 01:39](655 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:30, 00:58](501 MB) +PASS -- TEST 'control_lndp_intel' [03:23, 01:33](660 MB) +PASS -- TEST 'control_iovr4_intel' [04:24, 02:29](648 MB) +PASS -- TEST 'control_iovr5_intel' [04:24, 02:30](656 MB) +PASS -- TEST 'control_p8_intel' [05:56, 03:41](1883 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:59, 03:20](1889 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:53, 03:38](1887 MB) +PASS -- TEST 'control_restart_p8_intel' [03:52, 02:04](1128 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:00, 03:41](1874 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:08, 02:02](1166 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:54, 03:47](1865 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:54, 04:14](1948 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:44, 06:38](1871 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:54, 04:14](1932 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:04, 03:08](1893 MB) +PASS -- TEST 'merra2_thompson_intel' [05:56, 03:27](1892 MB) +PASS -- TEST 'regional_control_intel' [07:36, 05:27](1123 MB) +PASS -- TEST 'regional_restart_intel' [05:42, 02:57](1099 MB) +PASS -- TEST 'regional_decomp_intel' [07:35, 05:44](1108 MB) +PASS -- TEST 'regional_2threads_intel' [05:40, 04:02](1071 MB) +PASS -- TEST 'regional_noquilt_intel' [07:39, 05:33](1427 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:42, 05:29](1121 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:39, 05:30](1125 MB) +PASS -- TEST 'regional_wofs_intel' [08:42, 07:07](1895 MB) + +PASS -- COMPILE 'rrfs_intel' [12:13, 10:11] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:45, 07:52](1108 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:09, 04:16](1262 MB) +PASS -- TEST 'rap_decomp_intel' [10:47, 08:13](1040 MB) +PASS -- TEST 'rap_2threads_intel' [10:40, 08:47](1104 MB) +PASS -- TEST 'rap_restart_intel' [16:47, 04:14](1102 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:43, 07:47](1105 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:38, 08:13](1036 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [17:03, 06:00](1135 MB) +PASS -- TEST 'hrrr_control_intel' [05:40, 04:03](1034 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:39, 04:08](1028 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:46, 04:24](1085 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:27, 02:10](997 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:55, 07:50](1093 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:30, 09:45](1981 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:29, 09:13](2055 MB) + +PASS -- COMPILE 'csawmg_intel' [11:12, 09:57] +PASS -- TEST 'control_csawmg_intel' [08:41, 06:10](1017 MB) +PASS -- TEST 'control_ras_intel' [05:26, 03:21](753 MB) + +PASS -- COMPILE 'wam_intel' [11:13, 09:58] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:55, 11:18](1662 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:12, 10:27] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:56, 02:47](1885 MB) +PASS -- TEST 'regional_control_faster_intel' [07:39, 04:55](1119 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:12, 07:29] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:50, 02:17](1613 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:52, 02:12](1612 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:24, 03:09](830 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:25, 02:52](829 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:43, 04:35](1135 MB) +PASS -- TEST 'control_ras_debug_intel' [04:27, 02:57](837 MB) +PASS -- TEST 'control_diag_debug_intel' [04:55, 02:52](1680 MB) +PASS -- TEST 'control_debug_p8_intel' [04:50, 02:41](1893 MB) +PASS -- TEST 'regional_debug_intel' [20:47, 18:05](1103 MB) +PASS -- TEST 'rap_control_debug_intel' [07:26, 05:08](1212 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:26, 05:03](1205 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:25, 05:06](1215 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:25, 05:01](1217 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 05:02](1213 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:39, 05:31](1296 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:23, 05:13](1214 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:22, 05:15](1212 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:24, 05:08](1213 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 05:06](1204 MB) +PASS -- TEST 'rap_noah_debug_intel' [16:23, 05:02](1207 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [18:24, 05:20](1212 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [21:23, 08:31](1208 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [17:23, 05:07](1213 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [16:28, 05:28](1216 MB) +PASS -- TEST 'rap_flake_debug_intel' [15:28, 05:10](1215 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [19:40, 09:15](1218 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:13, 04:21] +PASS -- TEST 'control_csawmg_debug_gnu' [04:44, 02:25](717 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:13, 04:40] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:58, 13:32](1684 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:15, 10:24] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [15:10, 04:03](1138 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [16:44, 06:38](1050 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [13:40, 03:35](987 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [17:38, 07:39](996 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:41, 03:52](968 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [13:42, 03:41](935 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:59, 04:56](1035 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:32, 01:55](920 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:12, 10:24] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [11:59, 02:00](1194 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:43, 01:04](1161 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:44, 01:18](1092 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:13, 10:25] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [14:46, 04:13](982 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:12, 04:56] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [15:25, 05:13](1091 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [14:26, 04:55](1091 MB) +PASS -- TEST 'conus13km_debug_intel' [22:56, 14:19](1238 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [22:56, 14:38](937 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [20:50, 12:42](1163 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [22:53, 14:42](1293 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:12, 04:35] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [13:27, 05:05](1135 MB) + +PASS -- COMPILE 'hafsw_intel' [13:13, 11:57] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [12:28, 05:11](715 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [12:32, 06:11](1110 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:31, 07:12](818 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:00, 14:47](846 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [26:45, 18:58](860 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:18, 05:38](495 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:41, 06:52](506 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:49, 02:49](370 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:53, 07:27](467 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:52, 03:53](520 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:56, 03:43](520 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:01, 04:13](579 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:32, 01:17](398 MB) +PASS -- TEST 'gnv1_nested_intel' [08:46, 04:04](1727 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:12, 05:25] ( 1462 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:06, 14:10](580 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:13, 11:17] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:36, 10:15](664 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:44, 10:23](728 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:14, 12:09] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:47, 08:13](720 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:12, 10:53] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:31, 06:53](819 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:24, 06:41](793 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:57, 17:15](1212 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:13, 07:09] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 02:48](1173 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:23, 01:44](1122 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:22, 02:41](1035 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:21, 02:44](1026 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:44](1021 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:22, 02:46](1158 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:21, 02:47](1147 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:20, 02:42](1036 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:18, 06:59](1078 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:43, 07:00](1051 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:18, 02:48](1154 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:24, 04:03](2517 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:33, 04:38](2456 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:12, 03:17] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:21, 06:26](1091 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:12, 06:26] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 02:43](1165 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:12, 01:25] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:31, 00:45](263 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:55](323 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:33](321 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:12, 01:28] +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:34, 00:36](562 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:39, 00:18](459 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:14, 10:50] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:30, 03:49](1981 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 10:56] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:04, 08:46](1982 MB) + +PASS -- COMPILE 'atml_intel' [12:13, 11:05] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:17, 05:30](1856 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:17, 05:34](1868 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:50, 02:23](1084 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:12, 05:51] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:07, 06:17](1891 MB) + +PASS -- COMPILE 'atmw_intel' [12:13, 11:03] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:12, 01:57](1918 MB) + +PASS -- COMPILE 'atmaero_intel' [12:16, 10:50] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:16, 04:31](3195 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:10, 05:04](3090 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:53, 05:15](3110 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:12, 04:37] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_fbh_intel' [11:12, 09:47] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:31, 11:54](1116 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:12, 06:43] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:42, 08:39](1055 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:12, 06:48] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [07:45, 05:15](987 MB) + +PASS -- COMPILE 'atm_gnu' [06:13, 04:29] +PASS -- TEST 'control_c48_gnu' [11:42, 09:36](1510 MB) +PASS -- TEST 'control_stochy_gnu' [05:24, 03:41](457 MB) +PASS -- TEST 'control_ras_gnu' [07:27, 05:17](504 MB) +PASS -- TEST 'control_p8_gnu' [09:03, 06:03](1458 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [08:09, 05:46](1463 MB) +PASS -- TEST 'control_flake_gnu' [12:32, 10:51](538 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:11, 04:13] +PASS -- TEST 'rap_control_gnu' [13:45, 11:49](808 MB) +PASS -- TEST 'rap_decomp_gnu' [14:02, 11:41](806 MB) +PASS -- TEST 'rap_2threads_gnu' [20:05, 17:21](910 MB) +PASS -- TEST 'rap_restart_gnu' [08:43, 06:01](574 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:50, 11:29](804 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:40, 11:44](804 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:43, 08:37](580 MB) +PASS -- TEST 'hrrr_control_gnu' [07:46, 05:52](800 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:37, 05:54](792 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [10:38, 08:36](901 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:36, 05:56](836 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:29, 03:04](559 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:30, 03:00](650 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [13:48, 11:14](829 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:13, 03:53] +PASS -- TEST 'control_csawmg_gnu' [10:45, 08:39](737 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:12, 06:32] +PASS -- TEST 'control_diag_debug_gnu' [03:48, 01:41](1269 MB) +PASS -- TEST 'regional_debug_gnu' [12:41, 10:09](742 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:24, 02:38](821 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:24, 02:36](814 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:24, 02:40](822 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [05:24, 02:41](825 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:41, 02:53](906 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:24, 04:05](818 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:24, 02:37](818 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:24, 02:38](819 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:23, 01:38](455 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:23, 01:46](451 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:39, 01:38](1441 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:23, 02:44](819 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:22, 02:44](821 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:41, 04:24](823 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:24] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:13, 04:06] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:39, 09:44](698 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:37, 05:05](694 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [17:48, 15:31](736 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [09:44, 07:56](729 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:33, 05:15](692 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:44, 07:20](549 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:28, 02:37](535 MB) +PASS -- TEST 'conus13km_control_gnu' [05:57, 03:18](864 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:47, 01:35](877 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [04:47, 02:01](546 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [13:12, 09:33] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:42, 05:58](726 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [18:13, 06:56] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:25, 02:35](713 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:23, 02:35](708 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:51, 07:04](883 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:47, 07:03](568 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [07:45, 05:52](889 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:46, 07:15](949 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [18:12, 06:50] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:22, 02:39](728 MB) + +PASS -- COMPILE 's2swa_gnu' [27:14, 16:30] + +PASS -- COMPILE 's2s_gnu' [27:13, 16:33] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [24:16, 21:21](1505 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [14:12, 03:19] + +PASS -- COMPILE 's2sw_pdlib_gnu' [26:14, 16:19] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [35:26, 31:39](1459 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [12:13, 02:52] + +PASS -- COMPILE 'datm_cdeps_gnu' [24:13, 15:31] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:20, 03:02](696 MB) SYNOPSIS: -Starting Date/Time: 20241231 07:40:14 -Ending Date/Time: 20241231 09:46:59 -Total Time: 02h:07m:02s +Starting Date/Time: 20250103 20:41:28 +Ending Date/Time: 20250103 22:53:54 +Total Time: 02h:12m:47s Compiles Completed: 61/61 Tests Completed: 249/249 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 315e88b531..12152e2aeb 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,433 +1,7 @@ -====START OF hercules REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -6f98d9fd013aa2f95cb202742161cf92c0d894d1 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) - ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) - 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 74a1c84b0f6e2063f073a5b189a0a3b84f59dbca FV3 (remotes/origin/rrfsv1-to-ufs/dev7) - 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) - 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 92f1ad01744cb8309b459d3ecec5a02ab526e043 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5533-g92f1ad01) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) --179cae1dd84401cf25d250bd9102e66560a9d328 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) - 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) - 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20241230 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/jongkim/FV3_RT/rt_3122672 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-r) - USE ROCOTO - -PASS -- COMPILE s2swa_32bit_intel [11:37, 11:36](1 warnings,11 remarks) -PASS -- TEST cpld_control_p8_mixedmode_intel [14:50, 14:03] (2132956 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_intel [16:28, 16:28](1 warnings,11 remarks) -PASS -- TEST cpld_control_gfsv17_intel [18:12, 17:20] (1993744 MB) -PASS -- TEST cpld_control_gfsv17_iau_intel [20:25, 19:19] (2325680 MB) -PASS -- TEST cpld_restart_gfsv17_intel [11:21, 10:01] (1353880 MB) -PASS -- TEST cpld_mpi_gfsv17_intel [19:36, 18:40] (1906552 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [15:19, 15:19](1 warnings,11 remarks) -PASS -- TEST cpld_control_sfs_intel [17:34, 17:04] (1977628 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [05:27, 05:26](1520 warnings,1988 remarks) -PASS -- TEST cpld_debug_gfsv17_intel [26:16, 25:18] (1972364 MB) - -PASS -- COMPILE s2swa_intel [11:06, 11:05](1 warnings,11 remarks) -PASS -- TEST cpld_control_p8_intel [16:42, 15:51] (2205236 MB) -PASS -- TEST cpld_control_p8.v2.sfc_intel [16:57, 16:12] (2192164 MB) -PASS -- TEST cpld_restart_p8_intel [08:55, 08:01] (1967712 MB) -PASS -- TEST cpld_control_qr_p8_intel [15:36, 14:52] (2226560 MB) -PASS -- TEST cpld_restart_qr_p8_intel [09:03, 08:04] (1745780 MB) -PASS -- TEST cpld_2threads_p8_intel [21:10, 20:25] (2443996 MB) -PASS -- TEST cpld_decomp_p8_intel [16:05, 15:21] (2189840 MB) -PASS -- TEST cpld_mpi_p8_intel [13:19, 12:51] (2097436 MB) -PASS -- TEST cpld_control_ciceC_p8_intel [15:52, 15:05] (2195752 MB) -PASS -- TEST cpld_control_c192_p8_intel [17:16, 16:04] (2985576 MB) -PASS -- TEST cpld_restart_c192_p8_intel [08:19, 06:34] (2904336 MB) -PASS -- TEST cpld_bmark_p8_intel [25:31, 20:33] (3896612 MB) -PASS -- TEST cpld_restart_bmark_p8_intel [18:54, 11:49] (3694588 MB) -PASS -- TEST cpld_s2sa_p8_intel [09:05, 08:27] (2108260 MB) - -PASS -- COMPILE s2sw_intel [10:39, 10:38](1 warnings,11 remarks) -PASS -- TEST cpld_control_noaero_p8_intel [14:18, 13:39] (2003760 MB) -PASS -- TEST cpld_control_nowave_noaero_p8_intel [11:42, 11:03] (2114732 MB) - -PASS -- COMPILE s2swa_debug_intel [05:37, 05:37](1410 warnings,1218 remarks) -PASS -- TEST cpld_debug_p8_intel [20:22, 19:32] (2231320 MB) - -PASS -- COMPILE s2sw_debug_intel [05:32, 05:32](1410 warnings,1218 remarks) -PASS -- TEST cpld_debug_noaero_p8_intel [09:44, 09:02] (2048448 MB) - -PASS -- COMPILE s2s_aoflux_intel [10:21, 10:21],3 remarks) -PASS -- TEST cpld_control_noaero_p8_agrid_intel [05:42, 05:03] (2071560 MB) - -PASS -- COMPILE s2s_intel [10:06, 10:06](1 warnings,3 remarks) -PASS -- TEST cpld_control_c48_intel [06:40, 06:14] (3040528 MB) -PASS -- TEST cpld_warmstart_c48_intel [02:09, 01:46] (3020676 MB) -PASS -- TEST cpld_restart_c48_intel [01:43, 01:09] (2475924 MB) - -PASS -- COMPILE s2swa_faster_intel [12:07, 12:07](1 warnings,11 remarks) -PASS -- TEST cpld_control_p8_faster_intel [15:44, 14:50] (2207608 MB) - -PASS -- COMPILE s2sw_pdlib_intel [14:32, 14:31](1 warnings,11 remarks) -PASS -- TEST cpld_control_pdlib_p8_intel [24:44, 23:40] (2063412 MB) -PASS -- TEST cpld_restart_pdlib_p8_intel [12:59, 12:02] (1443588 MB) -PASS -- TEST cpld_mpi_pdlib_p8_intel [26:26, 25:36] (2002500 MB) - -PASS -- COMPILE s2sw_pdlib_debug_intel [05:29, 05:29](1520 warnings,1988 remarks) -PASS -- TEST cpld_debug_pdlib_p8_intel [28:40, 27:50] (2004048 MB) - -PASS -- COMPILE atm_dyn32_intel [08:40, 08:40](1 warnings,1 remarks) -PASS -- TEST control_flake_intel [03:08, 02:59] (720996 MB) -PASS -- TEST control_CubedSphereGrid_intel [03:14, 02:46] (1596484 MB) -PASS -- TEST control_CubedSphereGrid_parallel_intel [03:27, 02:57] (1595036 MB) -PASS -- TEST control_latlon_intel [03:16, 02:59] (1589452 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_intel [03:15, 02:53] (1577692 MB) -PASS -- TEST control_c48_intel [10:32, 10:14] (1700296 MB) -PASS -- TEST control_c48.v2.sfc_intel [06:20, 06:06] (803496 MB) -PASS -- TEST control_c192_intel [11:00, 10:30] (1767596 MB) -PASS -- TEST control_c384_intel [13:34, 12:19] (2037936 MB) -PASS -- TEST control_c384gdas_intel [09:16, 07:42] (1506636 MB) -PASS -- TEST control_stochy_intel [02:03, 01:41] (666836 MB) -PASS -- TEST control_stochy_restart_intel [01:20, 01:02] (542508 MB) -PASS -- TEST control_lndp_intel [01:34, 01:26] (666332 MB) -PASS -- TEST control_iovr4_intel [02:30, 02:16] (659428 MB) -PASS -- TEST control_iovr5_intel [02:33, 02:17] (658556 MB) -PASS -- TEST control_p8_intel [04:16, 03:28] (1885196 MB) -PASS -- TEST control_p8.v2.sfc_intel [04:16, 03:26] (1902868 MB) -PASS -- TEST control_p8_ugwpv1_intel [04:08, 03:28] (1885412 MB) -PASS -- TEST control_restart_p8_intel [02:31, 01:55] (1156396 MB) -PASS -- TEST control_noqr_p8_intel [03:55, 03:24] (1873080 MB) -PASS -- TEST control_restart_noqr_p8_intel [02:57, 02:31] (1203848 MB) -PASS -- TEST control_decomp_p8_intel [04:00, 03:21] (1867696 MB) -PASS -- TEST control_2threads_p8_intel [05:25, 04:39] (1940040 MB) -PASS -- TEST control_p8_lndp_intel [06:27, 06:00] (1880820 MB) -PASS -- TEST control_p8_rrtmgp_intel [05:06, 04:27] (1975368 MB) -PASS -- TEST control_p8_mynn_intel [04:41, 03:57] (1895792 MB) -PASS -- TEST merra2_thompson_intel [04:45, 03:52] (1893224 MB) -PASS -- TEST regional_control_intel [05:08, 04:45] (1227488 MB) -PASS -- TEST regional_restart_intel [02:56, 02:41] (1179928 MB) -PASS -- TEST regional_decomp_intel [05:07, 04:52] (1215992 MB) -PASS -- TEST regional_2threads_intel [06:01, 05:39] (1116492 MB) -PASS -- TEST regional_noquilt_intel [04:54, 04:38] (1546412 MB) -PASS -- TEST regional_netcdf_parallel_intel [05:13, 04:52] (1227972 MB) -PASS -- TEST regional_2dwrtdecomp_intel [04:52, 04:38] (1226884 MB) -PASS -- TEST regional_wofs_intel [06:19, 06:04] (2067684 MB) - -PASS -- COMPILE rrfs_intel [08:54, 08:54](3 warnings,9 remarks) -PASS -- TEST rap_control_intel [07:16, 06:42] (1202400 MB) -PASS -- TEST regional_spp_sppt_shum_skeb_intel [04:04, 03:28] (1379076 MB) -PASS -- TEST rap_decomp_intel [07:45, 07:09] (1118372 MB) -PASS -- TEST rap_2threads_intel [09:58, 09:19] (1212532 MB) -PASS -- TEST rap_restart_intel [04:11, 03:33] (1163084 MB) -PASS -- TEST rap_sfcdiff_intel [07:22, 06:49] (1214344 MB) -PASS -- TEST rap_sfcdiff_decomp_intel [09:34, 08:53] (1120888 MB) -PASS -- TEST rap_sfcdiff_restart_intel [05:58, 05:26] (1236432 MB) -PASS -- TEST hrrr_control_intel [04:04, 03:26] (1075128 MB) -PASS -- TEST hrrr_control_decomp_intel [04:22, 03:37] (1042124 MB) -PASS -- TEST hrrr_control_2threads_intel [05:32, 04:45] (1151720 MB) -PASS -- TEST hrrr_control_restart_intel [02:03, 01:54] (1022800 MB) -PASS -- TEST rrfs_v1beta_intel [07:40, 06:43] (1199828 MB) -PASS -- TEST rrfs_v1nssl_intel [10:11, 10:01] (2001576 MB) -PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [09:53, 09:38] (2194456 MB) - -PASS -- COMPILE csawmg_intel [08:22, 08:22] -PASS -- TEST control_csawmg_intel [05:57, 05:42] (1049804 MB) -PASS -- TEST control_ras_intel [03:07, 02:55] (829864 MB) - -PASS -- COMPILE wam_intel [08:24, 08:23],1 remarks) -PASS -- TEST control_wam_intel [10:21, 09:56] (1663980 MB) - -PASS -- COMPILE atm_faster_dyn32_intel [09:01, 09:00],1 remarks) -PASS -- TEST control_p8_faster_intel [03:29, 02:51] (1893012 MB) -PASS -- TEST regional_control_faster_intel [05:30, 05:16] (1228856 MB) - -PASS -- COMPILE atm_debug_dyn32_intel [06:30, 06:30](882 warnings,9 remarks) -PASS -- TEST control_CubedSphereGrid_debug_intel [02:12, 01:53] (1608280 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [02:28, 02:00] (1621212 MB) -PASS -- TEST control_stochy_debug_intel [03:03, 02:52] (845872 MB) -PASS -- TEST control_lndp_debug_intel [02:37, 02:22] (841692 MB) -PASS -- TEST control_csawmg_debug_intel [05:26, 05:01] (1151568 MB) -PASS -- TEST control_ras_debug_intel [02:48, 02:33] (839636 MB) -PASS -- TEST control_diag_debug_intel [02:49, 02:28] (1691712 MB) -PASS -- TEST control_debug_p8_intel [02:36, 02:15] (1917220 MB) -PASS -- TEST regional_debug_intel [15:40, 15:24] (1145824 MB) -PASS -- TEST rap_control_debug_intel [04:34, 04:21] (1225716 MB) -PASS -- TEST hrrr_control_debug_intel [04:34, 04:20] (1229644 MB) -PASS -- TEST hrrr_gf_debug_intel [04:35, 04:25] (1221608 MB) -PASS -- TEST hrrr_c3_debug_intel [04:28, 04:18] (1221220 MB) -PASS -- TEST rap_unified_drag_suite_debug_intel [04:47, 04:34] (1223232 MB) -PASS -- TEST rap_diag_debug_intel [05:00, 04:35] (1305028 MB) -PASS -- TEST rap_cires_ugwp_debug_intel [04:32, 04:22] (1231292 MB) -PASS -- TEST rap_unified_ugwp_debug_intel [04:32, 04:21] (1222388 MB) -PASS -- TEST rap_lndp_debug_intel [04:30, 04:20] (1212640 MB) -PASS -- TEST rap_progcld_thompson_debug_intel [04:41, 04:31] (1241420 MB) -PASS -- TEST rap_noah_debug_intel [04:40, 04:32] (1225356 MB) -PASS -- TEST rap_sfcdiff_debug_intel [05:16, 04:48] (1217332 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [07:31, 07:05] (1218272 MB) -PASS -- TEST rrfs_v1beta_debug_intel [05:52, 05:38] (1222176 MB) -PASS -- TEST rap_clm_lake_debug_intel [04:26, 04:15] (1219204 MB) -PASS -- TEST rap_flake_debug_intel [04:54, 04:44] (1236044 MB) -PASS -- TEST gnv1_c96_no_nest_debug_intel [07:53, 07:14] (1224192 MB) - -PASS -- COMPILE atm_debug_dyn32_gnu [04:29, 04:29] -PASS -- TEST control_csawmg_debug_gnu [05:09, 04:55] (1043136 MB) - -PASS -- COMPILE wam_debug_intel [04:21, 04:20](837 warnings,1 remarks) - -PASS -- COMPILE rrfs_dyn32_phy32_intel [09:09, 09:08](3 warnings,8 remarks) -PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [04:50, 03:43] (1252768 MB) -PASS -- TEST rap_control_dyn32_phy32_intel [07:14, 06:11] (1144580 MB) -PASS -- TEST hrrr_control_dyn32_phy32_intel [04:17, 03:09] (1023596 MB) -PASS -- TEST rap_2threads_dyn32_phy32_intel [09:04, 08:04] (1116196 MB) -PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [04:52, 04:06] (1073192 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [04:06, 03:19] (1000128 MB) -PASS -- TEST rap_restart_dyn32_phy32_intel [05:02, 04:18] (1105948 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [02:50, 02:23] (949168 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [09:08, 09:08](3 warnings,8 remarks) -PASS -- TEST conus13km_control_intel [02:13, 01:46] (1294352 MB) -PASS -- TEST conus13km_2threads_intel [01:26, 01:03] (1178400 MB) -PASS -- TEST conus13km_restart_mismatch_intel [01:26, 01:02] (1143856 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_intel [08:30, 08:30](3 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_intel [04:04, 03:46] (1070500 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [04:06, 04:06](785 warnings,8 remarks) -PASS -- TEST rap_control_debug_dyn32_phy32_intel [04:32, 04:23] (1101936 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [04:28, 04:20] (1105488 MB) -PASS -- TEST conus13km_debug_intel [12:54, 12:33] (1339092 MB) -PASS -- TEST conus13km_debug_qr_intel [12:58, 12:34] (990532 MB) -PASS -- TEST conus13km_debug_2threads_intel [13:19, 12:57] (1236496 MB) -PASS -- TEST conus13km_radar_tten_debug_intel [12:32, 12:11] (1402784 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [03:46, 03:45](785 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_debug_intel [05:00, 04:53] (1161004 MB) - -PASS -- COMPILE hafsw_intel [10:01, 10:01](1 warnings,10 remarks) -PASS -- TEST hafs_regional_atm_intel [06:25, 05:29] (841196 MB) -PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [06:16, 06:03] (1258832 MB) -PASS -- TEST hafs_regional_atm_ocn_intel [08:49, 07:41] (919436 MB) -PASS -- TEST hafs_regional_atm_wav_intel [15:24, 14:29] (954904 MB) -PASS -- TEST hafs_regional_atm_ocn_wav_intel [19:06, 17:57] (975624 MB) -PASS -- TEST hafs_regional_1nest_atm_intel [07:08, 06:24] (597268 MB) -PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [09:33, 08:23] (603404 MB) -PASS -- TEST hafs_global_1nest_atm_intel [03:46, 03:15] (437776 MB) -PASS -- TEST hafs_global_multiple_4nests_atm_intel [10:29, 08:43] (551212 MB) -PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [04:55, 04:21] (602032 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [04:42, 04:07] (596544 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [05:53, 05:13] (655228 MB) -PASS -- TEST hafs_global_storm_following_1nest_atm_intel [01:42, 01:25] (456572 MB) - -PASS -- COMPILE hafsw_debug_intel [04:50, 04:50](1462 warnings,1490 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [12:29, 11:39] (634824 MB) - -PASS -- COMPILE hafsw_faster_intel [10:14, 10:14],9 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [19:57, 18:49] (729264 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [18:52, 18:01] (829688 MB) - -PASS -- COMPILE hafs_mom6w_intel [11:14, 11:14],8 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [13:53, 12:19] (814136 MB) - -PASS -- COMPILE hafs_all_intel [10:30, 10:30],9 remarks) -PASS -- TEST hafs_regional_docn_intel [06:25, 05:37] (931724 MB) -PASS -- TEST hafs_regional_docn_oisst_intel [06:27, 05:34] (900696 MB) -PASS -- TEST hafs_regional_datm_cdeps_intel [17:07, 16:33] (1345116 MB) - -PASS -- COMPILE datm_cdeps_intel [05:44, 05:44],2 remarks) -PASS -- TEST datm_cdeps_control_cfsr_intel [02:59, 02:53] (1155020 MB) -PASS -- TEST datm_cdeps_restart_cfsr_intel [01:48, 01:43] (1103680 MB) -PASS -- TEST datm_cdeps_control_gefs_intel [03:00, 02:54] (1014516 MB) -PASS -- TEST datm_cdeps_iau_gefs_intel [03:08, 03:02] (1016512 MB) -PASS -- TEST datm_cdeps_stochy_gefs_intel [02:59, 02:55] (1014516 MB) -PASS -- TEST datm_cdeps_ciceC_cfsr_intel [02:17, 02:11] (1158500 MB) -PASS -- TEST datm_cdeps_bulk_cfsr_intel [02:17, 02:12] (1160928 MB) -PASS -- TEST datm_cdeps_bulk_gefs_intel [02:52, 02:48] (1025576 MB) -PASS -- TEST datm_cdeps_mx025_cfsr_intel [05:30, 04:57] (1161872 MB) -PASS -- TEST datm_cdeps_mx025_gefs_intel [05:23, 04:51] (1155820 MB) -PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [03:00, 02:58] (1134020 MB) -PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [04:04, 04:00] (2463232 MB) -PASS -- TEST datm_cdeps_gfs_intel [04:19, 04:14] (2414464 MB) - -PASS -- COMPILE datm_cdeps_debug_intel [03:04, 03:04](2 warnings,2 remarks) -PASS -- TEST datm_cdeps_debug_cfsr_intel [05:23, 05:17] (1073072 MB) - -PASS -- COMPILE datm_cdeps_faster_intel [06:01, 06:01],2 remarks) -PASS -- TEST datm_cdeps_control_cfsr_faster_intel [02:30, 02:25] (1130580 MB) - -PASS -- COMPILE datm_cdeps_land_intel [00:51, 00:50],1 remarks) -PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:17, 01:01] (346440 MB) -PASS -- TEST datm_cdeps_lnd_era5_intel [01:17, 01:01] (577320 MB) -PASS -- TEST datm_cdeps_lnd_era5_rst_intel [01:10, 00:58] (576376 MB) - -PASS -- COMPILE atm_ds2s_docn_pcice_intel [10:13, 10:13],3 remarks) -PASS -- TEST atm_ds2s_docn_pcice_intel [03:57, 03:21] (2021592 MB) - -PASS -- COMPILE atm_ds2s_docn_dice_intel [09:03, 09:03](1 warnings,1 remarks) -PASS -- TEST atm_ds2s_docn_dice_intel [08:47, 08:14] (2024328 MB) - -PASS -- COMPILE atml_intel [09:54, 09:54](8 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_sbs_intel [06:35, 05:48] (1886232 MB) -PASS -- TEST control_p8_atmlnd_intel [06:22, 05:35] (1901508 MB) -PASS -- TEST control_restart_p8_atmlnd_intel [03:52, 03:20] (1141600 MB) - -PASS -- COMPILE atml_debug_intel [04:53, 04:53](880 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_debug_intel [06:05, 05:17] (1914448 MB) - -PASS -- COMPILE atmw_intel [09:36, 09:36],9 remarks) -PASS -- TEST atmwav_control_noaero_p8_intel [02:25, 01:46] (1936540 MB) - -PASS -- COMPILE atmaero_intel [09:25, 09:25],1 remarks) -PASS -- TEST atmaero_control_p8_intel [04:28, 03:50] (2001624 MB) -PASS -- TEST atmaero_control_p8_rad_intel [05:05, 04:28] (1777984 MB) -PASS -- TEST atmaero_control_p8_rad_micro_intel [05:08, 04:35] (1795768 MB) - -PASS -- COMPILE atmaq_debug_intel [04:34, 04:34](882 warnings,6 remarks) -PASS -- TEST regional_atmaq_debug_intel [18:35, 17:28] (4508052 MB) - -PASS -- COMPILE atm_fbh_intel [08:27, 08:26](3 warnings,8 remarks) -PASS -- TEST cpld_regional_atm_fbh_intel [10:21, 10:08] (1110040 MB) - -PASS -- COMPILE datm_cdeps_intelllvm [11:36, 11:36] -PASS -- TEST datm_cdeps_control_cfsr_intelllvm [02:58, 02:54] (1131908 MB) - -PASS -- COMPILE datm_cdeps_debug_intelllvm [02:02, 02:02](2 warnings -PASS -- TEST datm_cdeps_debug_cfsr_intelllvm [06:11, 06:05] (1094068 MB) - -PASS -- COMPILE atm_gnu [04:24, 04:24] -PASS -- TEST control_c48_gnu [12:19, 11:55] (1523960 MB) -PASS -- TEST control_stochy_gnu [02:51, 02:43] (733260 MB) -PASS -- TEST control_ras_gnu [04:14, 04:05] (724168 MB) -PASS -- TEST control_p8_gnu [06:18, 05:37] (1721168 MB) -PASS -- TEST control_p8_ugwpv1_gnu [06:04, 05:31] (1717784 MB) -PASS -- TEST control_flake_gnu [05:33, 05:23] (807292 MB) - -PASS -- COMPILE rrfs_gnu [04:23, 04:23] -PASS -- TEST rap_control_gnu [08:52, 08:16] (1074284 MB) -PASS -- TEST rap_decomp_gnu [09:01, 08:29] (1070996 MB) -PASS -- TEST rap_restart_gnu [04:49, 04:21] (878588 MB) -PASS -- TEST rap_sfcdiff_gnu [08:49, 08:12] (1072536 MB) -PASS -- TEST rap_sfcdiff_decomp_gnu [09:06, 08:30] (1073080 MB) -PASS -- TEST rap_sfcdiff_restart_gnu [07:11, 06:27] (878788 MB) -PASS -- TEST hrrr_control_gnu [05:16, 04:37] (1059200 MB) -PASS -- TEST hrrr_control_noqr_gnu [04:53, 04:21] (1131592 MB) -PASS -- TEST hrrr_control_2threads_gnu [04:28, 03:51] (1037960 MB) -PASS -- TEST hrrr_control_decomp_gnu [04:59, 04:21] (1058812 MB) -PASS -- TEST hrrr_control_restart_gnu [02:35, 02:18] (877948 MB) -PASS -- TEST hrrr_control_restart_noqr_gnu [02:37, 02:23] (925836 MB) -PASS -- TEST rrfs_v1beta_gnu [08:58, 08:14] (1070552 MB) - -PASS -- COMPILE csawmg_gnu [04:36, 04:36] -PASS -- TEST control_csawmg_gnu [07:24, 07:03] (1054520 MB) - -PASS -- COMPILE atm_dyn32_debug_gnu [06:37, 06:37] -PASS -- TEST control_diag_debug_gnu [01:39, 01:16] (1618304 MB) -PASS -- TEST regional_debug_gnu [07:41, 07:26] (1138892 MB) -PASS -- TEST rap_control_debug_gnu [02:19, 02:13] (1089000 MB) -PASS -- TEST hrrr_control_debug_gnu [02:26, 02:14] (1080952 MB) -PASS -- TEST hrrr_gf_debug_gnu [02:26, 02:15] (1086672 MB) -PASS -- TEST hrrr_c3_debug_gnu [02:29, 02:19] (1086712 MB) -PASS -- TEST rap_diag_debug_gnu [02:40, 02:23] (1262768 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [03:41, 03:30] (1087032 MB) -PASS -- TEST rap_progcld_thompson_debug_gnu [02:25, 02:15] (1091840 MB) -PASS -- TEST rrfs_v1beta_debug_gnu [02:23, 02:12] (1084988 MB) -PASS -- TEST control_ras_debug_gnu [01:58, 01:26] (720796 MB) -PASS -- TEST control_stochy_debug_gnu [01:29, 01:23] (721996 MB) -PASS -- TEST control_debug_p8_gnu [01:50, 01:26] (1715212 MB) -PASS -- TEST rap_flake_debug_gnu [02:35, 02:24] (1089704 MB) -PASS -- TEST rap_clm_lake_debug_gnu [02:15, 02:07] (1094952 MB) -PASS -- TEST gnv1_c96_no_nest_debug_gnu [04:08, 03:34] (1089976 MB) - -PASS -- COMPILE wam_debug_gnu [03:23, 03:22] -PASS -- TEST control_wam_debug_gnu [05:35, 05:15] (1554916 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_gnu [04:18, 04:18] -PASS -- TEST rap_control_dyn32_phy32_gnu [07:58, 07:23] (955532 MB) -PASS -- TEST hrrr_control_dyn32_phy32_gnu [04:32, 03:48] (948404 MB) -PASS -- TEST rap_2threads_dyn32_phy32_gnu [07:27, 06:53] (890524 MB) -PASS -- TEST hrrr_control_2threads_dyn32_phy32_gnu [07:23, 06:38] (883112 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [04:51, 04:05] (940528 MB) -PASS -- TEST rap_restart_dyn32_phy32_gnu [06:14, 05:39] (853552 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [02:30, 02:09] (853140 MB) -PASS -- TEST conus13km_control_gnu [03:02, 02:37] (1255676 MB) -PASS -- TEST conus13km_2threads_gnu [07:23, 06:59] (1107712 MB) -PASS -- TEST conus13km_restart_mismatch_gnu [01:51, 01:31] (923212 MB) - -PASS -- COMPILE atm_dyn64_phy32_gnu [09:16, 09:16] -PASS -- TEST rap_control_dyn64_phy32_gnu [06:14, 05:52] (980276 MB) - -PASS -- COMPILE atm_dyn32_phy32_debug_gnu [06:52, 06:52] -PASS -- TEST rap_control_debug_dyn32_phy32_gnu [02:17, 02:09] (964732 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [02:16, 02:05] (965516 MB) -PASS -- TEST conus13km_debug_gnu [06:01, 05:37] (1271964 MB) -PASS -- TEST conus13km_debug_qr_gnu [06:12, 05:48] (946388 MB) -PASS -- TEST conus13km_debug_2threads_gnu [13:17, 12:56] (1128100 MB) -PASS -- TEST conus13km_radar_tten_debug_gnu [06:00, 05:40] (1338736 MB) - -PASS -- COMPILE atm_dyn64_phy32_debug_gnu [06:58, 06:58] -PASS -- TEST rap_control_dyn64_phy32_debug_gnu [02:21, 02:15] (990732 MB) - -PASS -- COMPILE s2swa_gnu [17:22, 17:22] -PASS -- COMPILE s2s_gnu [17:03, 17:03] -PASS -- TEST cpld_control_nowave_noaero_p8_gnu [14:55, 14:16] (3068516 MB) - -PASS -- COMPILE s2swa_debug_gnu [04:13, 04:13] -PASS -- COMPILE s2sw_pdlib_gnu [17:39, 17:39] -PASS -- TEST cpld_control_pdlib_p8_gnu [40:42, 39:57] (2922608 MB) - -PASS -- COMPILE s2sw_pdlib_debug_gnu [03:11, 03:11] -PASS -- TEST cpld_debug_pdlib_p8_gnu [16:02, 15:23] (3044048 MB) - -PASS -- COMPILE datm_cdeps_gnu [16:37, 16:37] -PASS -- TEST datm_cdeps_control_cfsr_gnu [05:46, 05:40] (759144 MB) - - -SYNOPSIS: -Starting Date/Time: 2024-12-31 16:03:18 -Ending Date/Time: 2025-01-01 08:22:26 -Total Time: 16h:19m:08s -Compiles Completed: 60/60 -Tests Completed: 246/247 -./logs/log_hercules/rt_rap_2threads_gnu.log: does not exist - -NOTES: -A file test_changes.list was generated but is empty. -If you are using this log as a pull request verification, please commit test_changes.list. - -Result: Failed - -====END OF hercules REGRESSION TESTING LOG==== ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -6f98d9fd013aa2f95cb202742161cf92c0d894d1 +c4ea32ee15fe4a74e5f5db6f38998068db93a5ab Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -437,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 74a1c84b0f6e2063f073a5b189a0a3b84f59dbca FV3 (remotes/origin/rrfsv1-to-ufs/dev7) + e1d7f499b8715e001453f00f14a0a6fc42d6da7d FV3 (remotes/origin/rrfsv1-to-ufs/dev8) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 92f1ad01744cb8309b459d3ecec5a02ab526e043 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5533-g92f1ad01) + fa3f1ce1cbaebd30998ea16a149c2d71a41ccf82 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5537-gfa3f1ce1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -465,22 +39,386 @@ 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-20241230 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_3131063 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_3930529 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-r) - USE ROCOTO -PASS -- COMPILE 'rrfs_gnu' [04:37, 04:37] -PASS -- TEST 'rap_control_gnu' [08:38, 08:17](1073 MB) -PASS -- TEST 'rap_2threads_gnu' [07:45, 07:06](999 MB) +PASS -- COMPILE 's2swa_32bit_intel' [10:53, 10:53] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:43, 14:56](2125 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:16, 17:16] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:40, 17:54](1988 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:27, 18:25](2342 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:12, 10:06](1349 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:10, 19:21](1913 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:40, 16:40] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:48, 17:28](1988 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:00, 07:00] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:36, 24:44](1967 MB) + +PASS -- COMPILE 's2swa_intel' [12:32, 12:32] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:30, 15:38](2200 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:56, 14:14](2187 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:40, 07:49](1996 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:02, 14:14](2236 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:41, 07:46](1736 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [20:51, 20:09](2467 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [15:18, 14:35](2190 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:05, 12:21](2101 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:08, 14:24](2196 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:11, 15:51](2991 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:39, 08:03](2917 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [21:11, 16:41](3880 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:36, 10:07](3704 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:22, 06:53](2105 MB) + +PASS -- COMPILE 's2sw_intel' [12:04, 12:04] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [14:23, 13:45](2001 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:20, 12:38](2105 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:00, 07:00] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [20:03, 19:16](2229 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:48, 06:48] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:20, 08:39](2045 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:04, 12:04] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:54, 04:11](2071 MB) + +PASS -- COMPILE 's2s_intel' [12:03, 12:03] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [06:29, 06:02](3012 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [02:59, 02:32](3021 MB) +PASS -- TEST 'cpld_restart_c48_intel' [01:41, 01:27](2474 MB) + +PASS -- COMPILE 's2swa_faster_intel' [11:49, 11:48] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:17, 15:39](2200 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:16, 16:16] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:52, 23:08](2068 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:21, 11:28](1397 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:27, 26:42](1996 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:34, 04:34] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:13, 27:31](2005 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:00, 09:00] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:25, 04:12](712 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:15, 02:58](1594 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:21, 02:57](1592 MB) +PASS -- TEST 'control_latlon_intel' [03:20, 03:00](1590 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:28, 03:01](1595 MB) +PASS -- TEST 'control_c48_intel' [11:09, 10:47](1693 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:23, 06:12](835 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [11:12, 10:55](1707 MB) +PASS -- TEST 'control_c192_intel' [11:29, 10:58](1777 MB) +PASS -- TEST 'control_c384_intel' [14:18, 13:13](2022 MB) +PASS -- TEST 'control_c384gdas_intel' [09:58, 08:29](1502 MB) +PASS -- TEST 'control_stochy_intel' [01:38, 01:27](660 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:25, 01:08](531 MB) +PASS -- TEST 'control_lndp_intel' [01:36, 01:25](662 MB) +PASS -- TEST 'control_iovr4_intel' [02:25, 02:11](654 MB) +PASS -- TEST 'control_iovr5_intel' [02:27, 02:18](651 MB) +PASS -- TEST 'control_p8_intel' [04:03, 03:20](1878 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:26, 02:47](1898 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:57, 03:16](1875 MB) +PASS -- TEST 'control_restart_p8_intel' [02:34, 02:02](1149 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:49, 03:16](1874 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:33, 01:57](1202 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:01, 03:25](1873 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:49, 04:10](1949 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:22, 05:58](1886 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:22, 03:39](1974 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:38, 02:57](1895 MB) +PASS -- TEST 'merra2_thompson_intel' [03:47, 03:00](1912 MB) +PASS -- TEST 'regional_control_intel' [04:56, 04:42](1231 MB) +PASS -- TEST 'regional_restart_intel' [02:52, 02:40](1179 MB) +PASS -- TEST 'regional_decomp_intel' [05:17, 04:57](1212 MB) +PASS -- TEST 'regional_2threads_intel' [04:52, 04:31](1112 MB) +PASS -- TEST 'regional_noquilt_intel' [06:04, 05:47](1543 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:02, 04:43](1232 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [04:55, 04:39](1234 MB) +PASS -- TEST 'regional_wofs_intel' [06:33, 06:17](2090 MB) + +PASS -- COMPILE 'rrfs_intel' [09:03, 09:03] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:21, 06:46](1202 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [03:59, 03:26](1386 MB) +PASS -- TEST 'rap_decomp_intel' [07:40, 07:04](1137 MB) +PASS -- TEST 'rap_2threads_intel' [09:25, 08:46](1219 MB) +PASS -- TEST 'rap_restart_intel' [04:20, 03:39](1134 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:18, 06:45](1214 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:50, 07:14](1134 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:54, 05:15](1202 MB) +PASS -- TEST 'hrrr_control_intel' [04:10, 03:33](1089 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:09, 03:33](1038 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:17, 04:37](1151 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:16, 02:01](1030 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:08, 06:32](1186 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:28, 08:18](2011 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:18, 08:09](2187 MB) + +PASS -- COMPILE 'csawmg_intel' [08:14, 08:14] +PASS -- TEST 'control_csawmg_intel' [05:51, 05:35](1040 MB) +PASS -- TEST 'control_ras_intel' [03:00, 02:54](841 MB) + +PASS -- COMPILE 'wam_intel' [08:24, 08:24] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [10:22, 10:02](1663 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:19, 09:19] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:09, 02:27](1898 MB) +PASS -- TEST 'regional_control_faster_intel' [04:38, 04:22](1229 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:35, 06:35] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:21, 02:03](1622 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:26, 01:59](1616 MB) +PASS -- TEST 'control_stochy_debug_intel' [02:49, 02:39](846 MB) +PASS -- TEST 'control_lndp_debug_intel' [02:28, 02:22](829 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:13, 03:59](1144 MB) +PASS -- TEST 'control_ras_debug_intel' [02:33, 02:22](857 MB) +PASS -- TEST 'control_diag_debug_intel' [02:41, 02:18](1700 MB) +PASS -- TEST 'control_debug_p8_intel' [03:09, 02:48](1917 MB) +PASS -- TEST 'regional_debug_intel' [15:47, 15:33](1145 MB) +PASS -- TEST 'rap_control_debug_intel' [04:16, 04:09](1217 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:14, 04:05](1210 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:32, 04:13](1231 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:19, 04:05](1217 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:29, 04:16](1235 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:02, 04:41](1310 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:33, 04:22](1235 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:35, 04:24](1214 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:20, 04:10](1226 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:26, 04:14](1231 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:23, 04:10](1226 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:18, 04:09](1222 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:05, 06:50](1212 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:19, 04:10](1212 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [04:34, 04:23](1229 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:29, 04:19](1221 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:51, 07:15](1228 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:20, 04:20] +PASS -- TEST 'control_csawmg_debug_gnu' [02:21, 02:06](1045 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:57, 03:57] ( 837 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:34, 08:34] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [03:54, 03:20](1245 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:14, 05:40](1144 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:47, 02:55](1022 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:38, 08:05](1132 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:55, 04:08](1068 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:57, 03:11](997 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:03, 04:19](1096 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:02, 01:39](962 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:44, 08:43] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:07, 01:41](1284 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:20, 00:59](1186 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:26, 01:04](1130 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:25, 08:25] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:10, 03:53](1067 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:25, 04:25] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:26, 04:19](1095 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:17, 04:07](1101 MB) +PASS -- TEST 'conus13km_debug_intel' [12:23, 12:02](1343 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [12:47, 12:23](998 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [13:18, 12:59](1241 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:13, 11:53](1424 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:40, 03:40] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:35, 04:22](1158 MB) + +PASS -- COMPILE 'hafsw_intel' [10:00, 09:59] ( 1 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:25, 05:29](851 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:49, 05:39](1257 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:50, 06:48](925 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:40, 14:26](958 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:21, 17:58](979 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:40, 05:56](600 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:51, 07:42](605 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:26, 02:57](435 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:22, 08:40](549 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:39, 04:05](606 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:40, 04:04](605 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:01, 06:16](659 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:35, 01:21](450 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:10, 04:10] ( 1462 warnings 1490 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:38, 11:53](639 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [09:52, 09:52] ( 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:05, 17:16](714 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:57, 18:06](841 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:36, 10:35] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:32, 12:06](810 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:07, 10:07] ( 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:13, 06:18](931 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:05, 06:09](890 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:27, 16:55](1340 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:00, 06:00] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:17, 02:11](1165 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:24, 01:18](1093 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:13, 02:07](1019 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:15, 02:09](1016 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:15, 02:10](1017 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:19, 02:14](1159 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:12, 03:04](1119 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:26, 02:19](1023 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:47, 05:08](1157 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:31, 04:52](1161 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:13, 02:09](1155 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:08, 03:03](2452 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:06, 03:01](2388 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:25, 03:25] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:22, 05:17](1062 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [05:14, 05:14] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:14, 02:09](1155 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [00:53, 00:53] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:19, 01:01](340 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:15, 01:01](577 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:46, 00:34](573 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:04, 10:04] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:39, 04:02](2021 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [09:38, 09:37] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:58, 07:22](2026 MB) + +PASS -- COMPILE 'atml_intel' [09:41, 09:40] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:46, 06:05](1892 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:47, 07:44](1889 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:26, 03:59](1150 MB) + +PASS -- COMPILE 'atml_debug_intel' [04:55, 04:55] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:42, 05:50](1919 MB) + +PASS -- COMPILE 'atmw_intel' [09:36, 09:36] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:47, 02:00](1935 MB) + +PASS -- COMPILE 'atmaero_intel' [09:03, 09:03] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:29, 03:51](2006 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:05, 04:28](1777 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:06, 04:34](1798 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [03:51, 03:51] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [18:58, 17:46](4503 MB) + +PASS -- COMPILE 'atm_fbh_intel' [08:15, 08:15] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [16:07, 15:54](1111 MB) + +PASS -- COMPILE 'datm_cdeps_intelllvm' [10:28, 10:28] +PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [03:21, 03:17](1145 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [01:44, 01:44] +PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [12:03, 11:59](1082 MB) + +PASS -- COMPILE 'atm_gnu' [04:17, 04:17] +PASS -- TEST 'control_c48_gnu' [08:35, 08:13](1522 MB) +PASS -- TEST 'control_stochy_gnu' [02:38, 02:28](719 MB) +PASS -- TEST 'control_ras_gnu' [04:01, 03:51](726 MB) +PASS -- TEST 'control_p8_gnu' [04:54, 04:20](1697 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:56, 06:21](1716 MB) +PASS -- TEST 'control_flake_gnu' [05:03, 04:49](800 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:33, 04:32] +PASS -- TEST 'rap_control_gnu' [09:48, 09:15](1075 MB) +PASS -- TEST 'rap_decomp_gnu' [09:41, 09:09](1073 MB) +PASS -- TEST 'rap_2threads_gnu' [12:02, 11:25](974 MB) +PASS -- TEST 'rap_restart_gnu' [05:34, 04:53](877 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [09:35, 09:00](1070 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:03, 09:25](1078 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:23, 06:54](878 MB) +PASS -- TEST 'hrrr_control_gnu' [05:31, 04:56](1059 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:20, 04:52](1131 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:21, 04:43](1036 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:42, 05:03](1064 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [02:51, 02:36](877 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:02, 02:43](925 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [10:34, 09:52](1069 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:20, 04:20] +PASS -- TEST 'control_csawmg_gnu' [07:23, 07:08](1053 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [05:58, 05:58] +PASS -- TEST 'control_diag_debug_gnu' [01:48, 01:21](1624 MB) +PASS -- TEST 'regional_debug_gnu' [06:53, 06:38](1148 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:09, 02:02](1093 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:12, 02:03](1081 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:15, 02:08](1087 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:18, 02:07](1085 MB) +PASS -- TEST 'rap_diag_debug_gnu' [02:32, 02:17](1259 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:38, 03:31](1088 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:22, 02:10](1091 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:14, 02:07](1084 MB) +PASS -- TEST 'control_ras_debug_gnu' [01:30, 01:18](719 MB) +PASS -- TEST 'control_stochy_debug_gnu' [01:31, 01:23](720 MB) +PASS -- TEST 'control_debug_p8_gnu' [01:52, 01:30](1698 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:23, 02:11](1091 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [02:15, 02:08](1092 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:02, 03:26](1093 MB) + +PASS -- COMPILE 'wam_debug_gnu' [02:47, 02:47] +PASS -- TEST 'control_wam_debug_gnu' [05:54, 05:30](1557 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 04:11] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:16, 07:43](955 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:49, 04:04](943 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:44, 07:08](917 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:49, 07:02](892 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:18, 05:34](941 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:32, 05:51](855 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:26, 02:09](852 MB) +PASS -- TEST 'conus13km_control_gnu' [03:02, 02:36](1256 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:24, 07:05](1106 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [01:51, 01:30](921 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:59, 08:58] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [04:58, 04:36](982 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:06, 06:06] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:05, 01:59](965 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:14, 02:04](959 MB) +PASS -- TEST 'conus13km_debug_gnu' [05:50, 05:26](1270 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [06:08, 05:43](946 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [13:12, 12:52](1133 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [05:44, 05:24](1340 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:44, 05:44] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:18, 02:10](990 MB) + +PASS -- COMPILE 's2swa_gnu' [16:27, 16:27] + +PASS -- COMPILE 's2s_gnu' [18:42, 18:42] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [16:09, 15:24](2712 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [03:40, 03:40] + +PASS -- COMPILE 's2sw_pdlib_gnu' [16:05, 16:05] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [40:16, 39:36](2901 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:01, 03:01] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:38, 14:58](3048 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [15:43, 15:43] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [02:23, 02:18](768 MB) SYNOPSIS: -Starting Date/Time: 20250101 08:50:51 -Ending Date/Time: 20250101 09:05:27 -Total Time: 00h:14m:54s -Compiles Completed: 1/1 -Tests Completed: 2/2 +Starting Date/Time: 20250104 06:57:17 +Ending Date/Time: 20250104 13:07:15 +Total Time: 06h:10m:31s +Compiles Completed: 60/60 +Tests Completed: 248/248 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 09b812545b..574acb17b7 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -7e1e51eae8370dc0c2e21bd6ba6a784f29cf589c +c4ea32ee15fe4a74e5f5db6f38998068db93a5ab Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 74a1c84b0f6e2063f073a5b189a0a3b84f59dbca FV3 (remotes/origin/rrfsv1-to-ufs/dev7) + e1d7f499b8715e001453f00f14a0a6fc42d6da7d FV3 (remotes/origin/rrfsv1-to-ufs/dev8) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 92f1ad01744cb8309b459d3ecec5a02ab526e043 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5533-g92f1ad01) + fa3f1ce1cbaebd30998ea16a149c2d71a41ccf82 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5537-gfa3f1ce1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -39,257 +39,257 @@ 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-20241230 -COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3081145 +COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_447506 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [45:14, 43:54] ( 1 warnings 1397 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [20:16, 13:35](1999 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [50:15, 49:04] ( 1 warnings 1444 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [02:16, 23:13](1884 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:18, 24:19](2016 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:20, 09:45](1138 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [33:11, 26:20](1855 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [47:14, 45:44] ( 1 warnings 1441 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [56:55, 22:24](1880 MB) - -PASS -- COMPILE 's2swa_intel' [46:14, 44:31] ( 1 warnings 1416 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [41:25, 17:35](2049 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [42:27, 17:01](2043 MB) -PASS -- TEST 'cpld_restart_p8_intel' [24:21, 09:00](1712 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [31:15, 16:57](2059 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [34:26, 09:03](1729 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [49:13, 15:55](2260 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [33:05, 17:15](2045 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [24:21, 14:00](2003 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [36:24, 16:54](2065 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [41:19, 09:09](1998 MB) - -PASS -- COMPILE 's2sw_intel' [43:14, 41:13] ( 1 warnings 1301 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [12:28, 09:49](1903 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [17:40, 14:13](1963 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:22] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [04:24, 27:36](2079 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:11, 06:00] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [02:10, 11:37](1929 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [39:15, 37:04] ( 1019 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [23:18, 05:31](1954 MB) - -PASS -- COMPILE 's2s_intel' [08:17, 37:34] ( 1 warnings 1042 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [12:48, 10:20](3002 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:48, 03:02](3008 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:47, 01:46](2456 MB) - -PASS -- COMPILE 's2swa_faster_intel' [09:22, 32:55] ( 1 warnings 1632 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [20:29, 16:17](2064 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [29:17, 45:51] ( 1 warnings 1361 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [36:21, 33:20](1939 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [19:16, 16:26](1148 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [42:20, 39:16](1916 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [48:14, 05:57] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:12, 38:41](1940 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [47:14, 37:28] ( 1 warnings 1125 remarks ) -PASS -- TEST 'control_flake_intel' [08:31, 04:29](645 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [11:02, 04:12](1537 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [11:05, 04:31](1543 MB) -PASS -- TEST 'control_latlon_intel' [11:00, 04:15](1543 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [11:09, 04:28](1541 MB) -PASS -- TEST 'control_c48_intel' [21:08, 18:04](1704 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:37, 10:11](830 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [22:08, 18:04](1701 MB) -PASS -- TEST 'control_c192_intel' [24:21, 15:56](1689 MB) -PASS -- TEST 'control_c384_intel' [28:19, 23:06](1781 MB) -PASS -- TEST 'control_c384gdas_intel' [19:00, 13:27](1005 MB) -PASS -- TEST 'control_stochy_intel' [05:29, 02:13](604 MB) -PASS -- TEST 'control_stochy_restart_intel' [06:27, 01:16](434 MB) -PASS -- TEST 'control_lndp_intel' [03:29, 02:01](602 MB) -PASS -- TEST 'control_iovr4_intel' [06:31, 03:22](598 MB) -PASS -- TEST 'control_iovr5_intel' [06:31, 03:22](602 MB) -PASS -- TEST 'control_p8_intel' [11:17, 04:49](1824 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [14:27, 03:59](1844 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [11:10, 04:42](1834 MB) -PASS -- TEST 'control_restart_p8_intel' [08:52, 02:37](1065 MB) -PASS -- TEST 'control_noqr_p8_intel' [11:13, 04:40](1832 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [08:56, 02:32](1075 MB) -PASS -- TEST 'control_decomp_p8_intel' [11:11, 04:52](1815 MB) -PASS -- TEST 'control_2threads_p8_intel' [11:11, 04:25](1900 MB) -PASS -- TEST 'control_p8_lndp_intel' [13:07, 08:44](1832 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [13:16, 05:07](1901 MB) -PASS -- TEST 'control_p8_mynn_intel' [11:14, 03:57](1843 MB) -PASS -- TEST 'merra2_thompson_intel' [10:16, 04:27](1844 MB) -PASS -- TEST 'regional_control_intel' [10:58, 07:07](1032 MB) -PASS -- TEST 'regional_restart_intel' [09:34, 03:44](1023 MB) -PASS -- TEST 'regional_decomp_intel' [10:58, 07:30](1043 MB) -PASS -- TEST 'regional_2threads_intel' [11:41, 04:18](1008 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [11:40, 07:05](1038 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [11:33, 07:02](1039 MB) - -PASS -- COMPILE 'rrfs_intel' [36:13, 35:02] ( 3 warnings 1100 remarks ) -PASS -- TEST 'rap_control_intel' [14:50, 10:05](986 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:03, 05:37](1185 MB) -PASS -- TEST 'rap_decomp_intel' [12:41, 10:37](979 MB) -PASS -- TEST 'rap_2threads_intel' [11:38, 09:29](1053 MB) -PASS -- TEST 'rap_restart_intel' [09:48, 05:21](971 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:40, 10:04](989 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:38, 10:36](975 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [11:47, 07:39](1001 MB) -PASS -- TEST 'hrrr_control_intel' [08:45, 05:04](980 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:40, 05:14](979 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [10:38, 04:42](1046 MB) -PASS -- TEST 'hrrr_control_restart_intel' [07:30, 02:44](918 MB) -PASS -- TEST 'rrfs_v1beta_intel' [14:53, 09:59](986 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [17:26, 13:17](1932 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [17:27, 12:58](1931 MB) - -PASS -- COMPILE 'csawmg_intel' [36:13, 35:07] ( 1099 remarks ) -PASS -- TEST 'control_csawmg_intel' [11:46, 08:02](966 MB) -PASS -- TEST 'control_ras_intel' [06:27, 04:21](663 MB) - -PASS -- COMPILE 'wam_intel' [37:13, 35:33] ( 1003 remarks ) -PASS -- TEST 'control_wam_intel' [20:02, 14:25](1610 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [40:13, 37:54] ( 1303 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:06, 03:39](1840 MB) -PASS -- TEST 'regional_control_faster_intel' [08:50, 06:37](1034 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:11, 08:27] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:43, 02:50](1542 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:50, 02:42](1560 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:26, 03:48](774 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:23, 03:24](777 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:39, 05:24](1092 MB) -PASS -- TEST 'control_ras_debug_intel' [05:24, 03:25](782 MB) -PASS -- TEST 'control_diag_debug_intel' [06:44, 03:22](1602 MB) -PASS -- TEST 'control_debug_p8_intel' [07:47, 03:14](1855 MB) -PASS -- TEST 'regional_debug_intel' [26:42, 21:57](1045 MB) -PASS -- TEST 'rap_control_debug_intel' [08:27, 06:06](1163 MB) -PASS -- TEST 'hrrr_control_debug_intel' [10:27, 06:01](1161 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [10:27, 06:08](1167 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [10:25, 06:07](1167 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:26, 06:08](1164 MB) -PASS -- TEST 'rap_diag_debug_intel' [10:34, 06:27](1252 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [10:27, 06:22](1164 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:24, 06:20](1160 MB) -PASS -- TEST 'rap_lndp_debug_intel' [09:27, 06:16](1160 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:29, 06:11](1162 MB) -PASS -- TEST 'rap_noah_debug_intel' [08:26, 06:08](1163 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:25, 06:13](1159 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:26, 10:05](1162 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:25, 06:03](1156 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:27, 06:08](1169 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:24, 06:07](1166 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:51, 10:43](1184 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:11, 05:13] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:58, 16:34](1643 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:12, 30:44] ( 3 warnings 1032 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [18:12, 05:12](1065 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:39, 08:11](908 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:43, 04:17](871 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:42, 07:47](916 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:46, 03:59](901 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:42, 04:35](854 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:45, 06:12](900 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:27, 02:18](845 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [34:13, 32:12] ( 3 warnings 1207 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:49, 02:39](1099 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:40, 01:08](1026 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:42, 01:29](1008 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [33:13, 31:28] ( 3 warnings 1052 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:52, 05:29](912 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:10] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:24, 06:05](1037 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:24, 05:58](1039 MB) -PASS -- TEST 'conus13km_debug_intel' [23:56, 17:40](1142 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [23:56, 17:45](858 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [18:49, 10:10](1093 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:49, 17:43](1215 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:12, 05:04] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [11:25, 06:09](1089 MB) - -PASS -- COMPILE 'hafsw_intel' [42:14, 40:14] ( 1 warnings 1435 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [10:27, 07:22](699 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:39, 06:15](1074 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [16:08, 09:26](756 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [22:34, 15:56](788 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [23:10, 18:59](804 MB) -PASS -- TEST 'gnv1_nested_intel' [13:34, 06:41](1668 MB) - -PASS -- COMPILE 'hafs_all_intel' [38:13, 36:40] ( 1281 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:30, 08:32](752 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:29, 08:40](741 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:08] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:25, 03:35](1074 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:23, 02:12](1044 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:23, 03:28](944 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:24, 03:31](930 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:24, 03:34](936 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:25, 03:33](1059 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:24, 03:33](1074 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:25, 03:27](931 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:18, 07:46](899 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:20, 07:40](853 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:21, 03:36](1077 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:26, 05:03](2365 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:26, 05:07](2430 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:21] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:20, 08:11](1023 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:14] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:22, 03:35](1071 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:47] ( 68 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:37, 01:18](241 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:31, 01:03](266 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:43](261 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [38:14, 36:36] ( 1024 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:14, 05:02](1909 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [37:14, 36:01] ( 1 warnings 1029 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [13:04, 11:00](1909 MB) - -PASS -- COMPILE 'atml_intel' [40:14, 38:12] ( 8 warnings 1174 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:29, 05:48](1859 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:28, 05:50](1857 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:47, 03:18](1062 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:11, 06:33] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:29, 07:18](1904 MB) - -PASS -- COMPILE 'atmw_intel' [39:14, 37:25] ( 1277 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:20, 02:35](1845 MB) - -PASS -- COMPILE 'atmaero_intel' [38:14, 36:12] ( 1107 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:00, 05:20](1928 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:16, 06:18](1708 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:03, 06:30](1716 MB) - -PASS -- COMPILE 'atm_fbh_intel' [33:13, 31:31] ( 3 warnings 1003 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:39, 15:35](1055 MB) +PASS -- COMPILE 's2swa_32bit_intel' [50:15, 43:47] ( 1 warnings 1397 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:23, 13:37](2022 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [00:20, 53:08] ( 1 warnings 1444 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [34:15, 23:07](1883 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:26, 24:19](1990 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:13, 09:45](1115 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [37:02, 26:12](1854 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [55:16, 48:52] ( 1 warnings 1441 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [30:53, 22:22](1876 MB) + +PASS -- COMPILE 's2swa_intel' [51:15, 44:09] ( 1 warnings 1416 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [28:22, 17:41](2059 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [27:32, 16:46](2063 MB) +PASS -- TEST 'cpld_restart_p8_intel' [15:20, 08:54](1712 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [24:16, 17:11](2072 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:19, 09:01](1723 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [26:06, 15:50](2257 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [27:03, 17:05](2054 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [20:24, 14:06](2000 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [27:30, 16:55](2057 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [20:20, 09:14](2018 MB) + +PASS -- COMPILE 's2sw_intel' [49:15, 42:04] ( 1 warnings 1301 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [12:29, 09:50](1904 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [21:40, 14:18](1976 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:16] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [37:20, 27:47](2085 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:11, 05:59] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [20:00, 11:35](1932 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [47:14, 36:42] ( 1019 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:24, 05:39](1971 MB) + +PASS -- COMPILE 's2s_intel' [45:14, 37:57] ( 1 warnings 1042 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [12:51, 10:22](3017 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:52, 03:06](3013 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:49, 01:45](2451 MB) + +PASS -- COMPILE 's2swa_faster_intel' [39:18, 32:34] ( 1 warnings 1632 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [19:53, 16:20](2063 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [59:15, 51:43] ( 1 warnings 1361 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [49:33, 33:38](1931 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [21:15, 16:25](1139 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [39:23, 36:55](1912 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:11, 06:03] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [42:18, 38:38](1934 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [39:14, 38:01] ( 1 warnings 1125 remarks ) +PASS -- TEST 'control_flake_intel' [06:30, 04:25](651 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [07:04, 04:13](1539 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [21:10, 04:27](1549 MB) +PASS -- TEST 'control_latlon_intel' [06:59, 04:15](1538 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [21:09, 04:20](1545 MB) +PASS -- TEST 'control_c48_intel' [20:05, 18:06](1703 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [12:37, 10:15](831 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [21:04, 18:05](1706 MB) +PASS -- TEST 'control_c192_intel' [27:21, 15:54](1703 MB) +PASS -- TEST 'control_c384_intel' [30:15, 22:58](1814 MB) +PASS -- TEST 'control_c384gdas_intel' [24:04, 13:16](1007 MB) +PASS -- TEST 'control_stochy_intel' [04:29, 02:10](604 MB) +PASS -- TEST 'control_stochy_restart_intel' [17:28, 01:14](437 MB) +PASS -- TEST 'control_lndp_intel' [03:29, 02:04](601 MB) +PASS -- TEST 'control_iovr4_intel' [05:33, 03:18](601 MB) +PASS -- TEST 'control_iovr5_intel' [05:34, 03:15](598 MB) +PASS -- TEST 'control_p8_intel' [17:24, 04:44](1836 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [21:32, 04:04](1837 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [21:17, 04:47](1827 MB) +PASS -- TEST 'control_restart_p8_intel' [06:56, 02:34](1055 MB) +PASS -- TEST 'control_noqr_p8_intel' [21:18, 04:45](1805 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:57, 02:32](1072 MB) +PASS -- TEST 'control_decomp_p8_intel' [16:23, 04:47](1810 MB) +PASS -- TEST 'control_2threads_p8_intel' [21:12, 04:31](1901 MB) +PASS -- TEST 'control_p8_lndp_intel' [11:08, 08:39](1824 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [22:20, 05:14](1903 MB) +PASS -- TEST 'control_p8_mynn_intel' [20:23, 04:01](1852 MB) +PASS -- TEST 'merra2_thompson_intel' [07:18, 04:23](1839 MB) +PASS -- TEST 'regional_control_intel' [10:58, 06:59](1046 MB) +PASS -- TEST 'regional_restart_intel' [13:39, 03:45](1018 MB) +PASS -- TEST 'regional_decomp_intel' [11:56, 07:26](1046 MB) +PASS -- TEST 'regional_2threads_intel' [22:40, 04:12](1003 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [20:45, 07:03](1041 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [24:40, 07:07](1044 MB) + +PASS -- COMPILE 'rrfs_intel' [37:13, 35:33] ( 3 warnings 1100 remarks ) +PASS -- TEST 'rap_control_intel' [12:45, 10:10](983 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [11:12, 05:37](1181 MB) +PASS -- TEST 'rap_decomp_intel' [12:44, 10:43](992 MB) +PASS -- TEST 'rap_2threads_intel' [11:55, 09:27](1056 MB) +PASS -- TEST 'rap_restart_intel' [10:47, 05:23](993 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:54, 10:07](983 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:44, 10:40](980 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [11:57, 07:41](1004 MB) +PASS -- TEST 'hrrr_control_intel' [07:55, 05:12](987 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:55, 05:20](974 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [10:45, 04:40](1049 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:31, 02:53](912 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:15, 10:02](986 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [15:34, 13:28](1927 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:34, 13:05](1934 MB) + +PASS -- COMPILE 'csawmg_intel' [36:14, 35:00] ( 1099 remarks ) +PASS -- TEST 'control_csawmg_intel' [12:39, 08:08](960 MB) +PASS -- TEST 'control_ras_intel' [07:25, 04:18](668 MB) + +PASS -- COMPILE 'wam_intel' [37:13, 35:34] ( 1003 remarks ) +PASS -- TEST 'control_wam_intel' [18:46, 14:23](1613 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [48:14, 37:41] ( 1303 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:57, 03:35](1835 MB) +PASS -- TEST 'regional_control_faster_intel' [08:38, 06:34](1036 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 08:04] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:51, 02:54](1566 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:52, 02:59](1565 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:26, 03:52](777 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:26, 03:23](781 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:44, 05:26](1088 MB) +PASS -- TEST 'control_ras_debug_intel' [05:26, 03:25](786 MB) +PASS -- TEST 'control_diag_debug_intel' [08:51, 03:20](1639 MB) +PASS -- TEST 'control_debug_p8_intel' [08:53, 03:17](1856 MB) +PASS -- TEST 'regional_debug_intel' [27:48, 21:57](1041 MB) +PASS -- TEST 'rap_control_debug_intel' [09:28, 06:14](1164 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:28, 06:10](1159 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:28, 06:05](1159 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:28, 06:09](1161 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:29, 06:07](1176 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:39, 06:24](1246 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:29, 06:22](1165 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:29, 06:13](1162 MB) +PASS -- TEST 'rap_lndp_debug_intel' [10:26, 06:10](1166 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:25, 06:18](1163 MB) +PASS -- TEST 'rap_noah_debug_intel' [10:27, 06:07](1162 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [10:26, 06:06](1167 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:27, 10:03](1172 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [11:27, 06:00](1168 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:28, 06:07](1166 MB) +PASS -- TEST 'rap_flake_debug_intel' [09:26, 06:06](1163 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:53, 10:40](1167 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:11, 05:14] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:59, 16:37](1654 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:13, 30:46] ( 3 warnings 1032 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [15:12, 05:21](1064 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:50, 08:14](909 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [14:45, 04:29](870 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [18:47, 07:56](911 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:45, 04:11](908 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [14:45, 04:45](859 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:43, 06:11](904 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:27, 02:19](843 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [34:13, 32:14] ( 3 warnings 1207 remarks ) +PASS -- TEST 'conus13km_control_intel' [09:57, 02:51](1099 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:39, 01:09](1025 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:41, 01:29](1012 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [34:13, 31:41] ( 3 warnings 1052 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:51, 05:36](905 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:17] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:31, 06:03](1039 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:30, 05:54](1034 MB) +PASS -- TEST 'conus13km_debug_intel' [19:59, 17:47](1152 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [19:59, 17:52](852 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:52, 10:16](1083 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:53, 17:52](1216 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:58] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:26, 06:08](1087 MB) + +PASS -- COMPILE 'hafsw_intel' [41:13, 39:55] ( 1 warnings 1435 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:30, 06:44](694 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [14:40, 06:19](1084 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [19:46, 09:04](758 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:36, 15:34](791 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [29:55, 18:59](791 MB) +PASS -- TEST 'gnv1_nested_intel' [15:58, 06:01](1665 MB) + +PASS -- COMPILE 'hafs_all_intel' [37:13, 36:08] ( 1281 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [18:19, 08:31](748 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [18:22, 08:37](731 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [16:11, 08:19] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:23, 03:32](1063 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:21, 02:09](1041 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:24, 03:28](930 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:24, 03:31](938 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:23, 03:34](933 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:24, 03:34](1079 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:24, 03:35](1079 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:24, 03:29](930 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:21, 07:43](897 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:19, 07:33](857 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:20, 03:34](1070 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:22, 05:06](2434 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:23, 05:12](2422 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [10:11, 03:30] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:20, 08:05](1028 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [11:11, 08:30] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:33](1075 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:41] ( 68 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:36, 01:18](241 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:28, 01:03](276 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:44](261 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [38:14, 36:43] ( 1024 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:11, 04:47](1912 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [37:13, 35:49] ( 1 warnings 1029 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [13:16, 10:24](1902 MB) + +PASS -- COMPILE 'atml_intel' [39:13, 37:55] ( 8 warnings 1174 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:25, 05:47](1851 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:24, 05:46](1852 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:44, 03:14](1063 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:11, 06:32] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [14:18, 07:16](1880 MB) + +PASS -- COMPILE 'atmw_intel' [40:13, 38:18] ( 1277 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:00, 02:32](1847 MB) + +PASS -- COMPILE 'atmaero_intel' [37:13, 36:05] ( 1107 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:07, 05:18](1932 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:06, 06:25](1709 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:55, 06:29](1724 MB) + +PASS -- COMPILE 'atm_fbh_intel' [33:13, 31:15] ( 3 warnings 1003 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:37, 15:13](1058 MB) SYNOPSIS: -Starting Date/Time: 20241231 07:41:52 -Ending Date/Time: 20241231 12:34:49 -Total Time: 04h:54m:05s +Starting Date/Time: 20250103 20:48:00 +Ending Date/Time: 20250104 01:30:22 +Total Time: 04h:43m:02s Compiles Completed: 37/37 Tests Completed: 166/166 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index daa7945e9e..b9c2c7ad6b 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -7e1e51eae8370dc0c2e21bd6ba6a784f29cf589c +c4ea32ee15fe4a74e5f5db6f38998068db93a5ab Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 74a1c84b0f6e2063f073a5b189a0a3b84f59dbca FV3 (remotes/origin/rrfsv1-to-ufs/dev7) + e1d7f499b8715e001453f00f14a0a6fc42d6da7d FV3 (remotes/origin/rrfsv1-to-ufs/dev8) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 92f1ad01744cb8309b459d3ecec5a02ab526e043 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5533-g92f1ad01) + fa3f1ce1cbaebd30998ea16a149c2d71a41ccf82 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5537-gfa3f1ce1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -39,297 +39,297 @@ 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-20241230 -COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_3676591 +COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_1055346 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [18:11, 16:20] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [37:51, 28:02](2079 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 19:12] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [58:53, 22:06](1958 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:21, 23:27](2138 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:14, 08:52](1224 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [02:53, 26:04](1876 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 19:57] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [57:50, 21:44](1948 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:10, 08:05] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [33:45, 30:46](1920 MB) - -PASS -- COMPILE 's2swa_intel' [18:11, 16:45] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [39:59, 29:36](2146 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [37:48, 27:39](2143 MB) -PASS -- TEST 'cpld_restart_p8_intel' [17:27, 14:26](1797 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [37:41, 27:43](2153 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [19:45, 14:35](1701 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [31:42, 20:50](2346 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [37:41, 27:34](2121 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [33:25, 23:33](2040 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [37:49, 27:30](2140 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [26:32, 15:58](2714 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [24:58, 09:22](2705 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [02:23, 20:18](3733 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:15, 11:07](3548 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [18:35, 08:02](2072 MB) - -PASS -- COMPILE 's2sw_intel' [17:11, 16:07] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [35:13, 27:25](1967 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [19:25, 11:46](2053 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:10, 08:40] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [25:19, 22:53](2170 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:10, 08:03] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:10, 10:12](1996 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:11, 15:20] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [13:28, 04:47](2031 MB) - -PASS -- COMPILE 's2s_intel' [17:11, 15:42] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [17:03, 08:45](3034 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [11:01, 03:02](3020 MB) -PASS -- TEST 'cpld_restart_c48_intel' [31:03, 01:56](2477 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:10, 17:01] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [58:32, 27:47](2151 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 18:36] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [57:22, 29:08](2010 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:32, 14:34](1256 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [36:19, 33:49](1926 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:11, 07:46] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [12:22, 34:37](1968 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [19:11, 13:23] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [24:30, 03:45](684 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [24:44, 03:40](1564 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [18:43, 03:37](1580 MB) -PASS -- TEST 'control_latlon_intel' [14:39, 03:32](1568 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [13:40, 03:37](1559 MB) -PASS -- TEST 'control_c48_intel' [23:43, 14:57](1701 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [16:37, 08:13](836 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [22:51, 14:41](1711 MB) -PASS -- TEST 'control_c192_intel' [16:52, 13:07](1729 MB) -PASS -- TEST 'control_c384_intel' [21:02, 16:42](1985 MB) -PASS -- TEST 'control_c384gdas_intel' [15:33, 09:56](1330 MB) -PASS -- TEST 'control_stochy_intel' [03:22, 01:50](639 MB) -PASS -- TEST 'control_stochy_restart_intel' [06:39, 01:04](471 MB) -PASS -- TEST 'control_lndp_intel' [06:25, 01:44](645 MB) -PASS -- TEST 'control_iovr4_intel' [09:26, 02:44](635 MB) -PASS -- TEST 'control_iovr5_intel' [09:25, 02:42](634 MB) -PASS -- TEST 'control_p8_intel' [11:09, 04:09](1862 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [10:10, 03:35](1886 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [11:19, 04:07](1854 MB) -PASS -- TEST 'control_restart_p8_intel' [05:11, 02:21](1083 MB) -PASS -- TEST 'control_noqr_p8_intel' [10:12, 04:05](1864 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:18, 02:19](1133 MB) -PASS -- TEST 'control_decomp_p8_intel' [11:09, 04:13](1846 MB) -PASS -- TEST 'control_2threads_p8_intel' [11:08, 04:56](1933 MB) -PASS -- TEST 'control_p8_lndp_intel' [13:40, 07:18](1867 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [09:28, 04:56](1934 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:18, 03:34](1886 MB) -PASS -- TEST 'merra2_thompson_intel' [07:33, 03:53](1872 MB) -PASS -- TEST 'regional_control_intel' [09:40, 06:38](1107 MB) -PASS -- TEST 'regional_restart_intel' [05:34, 03:38](1088 MB) -PASS -- TEST 'regional_decomp_intel' [09:31, 06:55](1100 MB) -PASS -- TEST 'regional_2threads_intel' [07:30, 04:45](1052 MB) -PASS -- TEST 'regional_noquilt_intel' [08:34, 06:29](1409 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:48, 06:32](1107 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:35, 06:36](1113 MB) -PASS -- TEST 'regional_wofs_intel' [09:39, 07:57](1892 MB) - -PASS -- COMPILE 'rrfs_intel' [19:11, 13:24] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [11:09, 08:29](1052 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:57, 05:14](1273 MB) -PASS -- TEST 'rap_decomp_intel' [10:58, 08:45](1018 MB) -PASS -- TEST 'rap_2threads_intel' [12:19, 10:08](1082 MB) -PASS -- TEST 'rap_restart_intel' [07:35, 04:24](1038 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:20, 08:24](1052 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:56, 08:43](1020 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:33, 06:18](1069 MB) -PASS -- TEST 'hrrr_control_intel' [07:20, 04:23](1022 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:16, 04:26](1012 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:24, 05:01](1083 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:40, 02:21](942 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:21, 08:22](1045 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:27, 09:53](1968 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:24, 09:32](2010 MB) - -PASS -- COMPILE 'csawmg_intel' [19:11, 13:13] -PASS -- TEST 'control_csawmg_intel' [08:48, 06:36](1017 MB) -PASS -- TEST 'control_ras_intel' [05:28, 03:30](713 MB) - -PASS -- COMPILE 'wam_intel' [18:10, 13:11] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:44, 12:49](1648 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [18:10, 12:59] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:23, 03:18](1872 MB) -PASS -- TEST 'regional_control_faster_intel' [08:37, 06:20](1104 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [13:10, 09:33] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [26:42, 02:21](1602 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [26:49, 02:13](1607 MB) -PASS -- TEST 'control_stochy_debug_intel' [27:27, 03:06](809 MB) -PASS -- TEST 'control_lndp_debug_intel' [27:26, 02:47](818 MB) -PASS -- TEST 'control_csawmg_debug_intel' [28:40, 04:19](1124 MB) -PASS -- TEST 'control_ras_debug_intel' [27:27, 02:48](823 MB) -PASS -- TEST 'control_diag_debug_intel' [25:45, 02:51](1667 MB) -PASS -- TEST 'control_debug_p8_intel' [24:43, 02:44](1896 MB) -PASS -- TEST 'regional_debug_intel' [18:37, 16:59](1106 MB) -PASS -- TEST 'rap_control_debug_intel' [06:23, 04:56](1202 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:25, 04:51](1194 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:24, 04:58](1200 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:25, 04:55](1208 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:28, 05:05](1203 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:43, 05:15](1287 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:28, 05:03](1204 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:26, 04:55](1197 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:26, 05:00](1204 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 04:52](1198 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:26, 04:48](1207 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:29, 04:55](1203 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:21, 07:56](1189 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:21, 04:49](1194 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:25, 05:03](1201 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:23, 04:52](1199 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:29, 08:17](1207 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:10, 06:19] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [41:49, 13:33](1677 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:10, 12:27] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:01, 04:59](1142 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:18, 07:12](1003 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:47, 03:50](922 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:16, 08:42](990 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:21, 04:27](958 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:47, 03:57](887 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:29, 05:25](974 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:49, 02:04](870 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [24:11, 12:38] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:55, 02:37](1161 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:54, 01:14](1117 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:52, 01:29](1066 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [22:11, 12:42] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:46, 07:09](968 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [16:11, 06:51] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:22, 05:04](1080 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 04:48](1077 MB) -PASS -- TEST 'conus13km_debug_intel' [15:57, 14:06](1227 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:50, 13:48](927 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [15:40, 13:28](1163 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:44, 13:40](1298 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:10, 06:30] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:28, 05:04](1133 MB) - -PASS -- COMPILE 'hafsw_intel' [23:10, 14:45] ( 1 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:18, 05:58](738 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:26, 06:32](1123 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:30, 07:37](812 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [31:23, 28:31](846 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [37:45, 35:01](866 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:02, 07:09](497 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:37, 08:37](503 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:57, 03:31](374 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:37, 09:42](478 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:54, 04:45](524 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:47, 04:32](526 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:55, 06:31](571 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:34, 01:35](402 MB) -PASS -- TEST 'gnv1_nested_intel' [08:13, 04:23](1713 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [19:11, 06:32] ( 1462 warnings 1490 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:05, 13:09](582 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [27:11, 14:51] ( 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:03, 15:16](655 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:25, 15:31](686 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [21:11, 14:11] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:36, 11:09](704 MB) - -PASS -- COMPILE 'hafs_all_intel' [25:11, 13:23] ( 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:23, 07:37](814 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:22, 07:41](798 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:56, 16:23](1200 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [20:11, 08:18] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 02:59](1153 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:21, 01:58](1104 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:19, 02:51](1016 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:56](1019 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:57](1024 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 02:59](1152 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:19, 02:58](1154 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:51](1018 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:11, 06:33](1013 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:11, 06:31](1003 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 03:00](1148 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:18, 04:20](2435 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:19, 04:26](2450 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [13:10, 04:31] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:19, 06:42](1085 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [22:10, 08:38] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 03:00](1150 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [11:11, 01:41] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:33, 01:03](260 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:25, 00:56](328 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:39](321 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [11:11, 01:52] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [06:33, 00:41](561 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:33, 00:23](444 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [19:11, 13:39] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [10:11, 04:14](1964 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [19:11, 12:38] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [14:10, 08:43](1967 MB) - -PASS -- COMPILE 'atml_intel' [20:10, 14:00] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:32, 04:59](1865 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:32, 04:58](1859 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [12:59, 02:52](1069 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:10, 07:43] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:27, 06:04](1892 MB) - -PASS -- COMPILE 'atmw_intel' [19:10, 14:05] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:32, 02:25](1897 MB) - -PASS -- COMPILE 'atmaero_intel' [16:10, 13:56] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:25, 04:55](1965 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:24, 05:25](1766 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:09, 05:30](1757 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [11:10, 06:04] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [24:04, 21:00](4546 MB) - -PASS -- COMPILE 'atm_fbh_intel' [17:11, 12:52] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [16:28, 13:53](1114 MB) - -PASS -- COMPILE 'hafsw_intelllvm' [12:11, 07:35] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [11:07, 08:05](573 MB) - -PASS -- COMPILE 'hafsw_debug_intelllvm' [07:11, 04:41] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [21:59, 19:39](564 MB) +PASS -- COMPILE 's2swa_32bit_intel' [20:11, 18:44] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [31:44, 27:38](2083 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:11, 21:49] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [24:39, 22:08](1956 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:19, 23:18](2116 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:15, 08:53](1229 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:45, 26:10](1871 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:11, 20:11] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [23:46, 21:37](1951 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:11, 08:43] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [34:43, 30:30](1923 MB) + +PASS -- COMPILE 's2swa_intel' [19:11, 17:58] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [33:47, 29:27](2146 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [31:37, 27:47](2140 MB) +PASS -- TEST 'cpld_restart_p8_intel' [19:48, 14:42](1799 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [31:32, 27:24](2162 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [17:51, 14:21](1702 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [24:31, 20:55](2348 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [31:32, 27:49](2139 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [26:32, 23:27](2038 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [31:40, 27:34](2143 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:24, 16:03](2713 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:10, 08:58](2710 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [29:07, 20:12](3718 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [22:08, 10:58](3546 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:22, 07:59](2076 MB) + +PASS -- COMPILE 's2sw_intel' [17:11, 15:57] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [32:07, 27:47](1961 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:16, 11:42](2047 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:11, 07:56] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [26:24, 22:23](2171 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:11, 08:02] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:10, 10:16](1997 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:11, 14:14] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:13, 04:48](2033 MB) + +PASS -- COMPILE 's2s_intel' [16:11, 14:39] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:54, 08:42](3032 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:55, 03:03](3025 MB) +PASS -- TEST 'cpld_restart_c48_intel' [05:03, 01:55](2478 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:11, 18:00] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [30:31, 28:04](2138 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 19:08] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [33:05, 29:09](2010 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:34, 14:31](1263 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [36:17, 33:40](1923 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:11, 07:17] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [38:07, 34:38](1964 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:11, 14:01] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [11:24, 03:46](685 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [08:39, 03:39](1571 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:46, 03:38](1579 MB) +PASS -- TEST 'control_latlon_intel' [05:38, 03:35](1583 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:48, 03:38](1564 MB) +PASS -- TEST 'control_c48_intel' [16:51, 14:43](1707 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:33, 08:11](839 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [16:50, 14:45](1698 MB) +PASS -- TEST 'control_c192_intel' [15:55, 13:10](1744 MB) +PASS -- TEST 'control_c384_intel' [20:55, 16:38](1983 MB) +PASS -- TEST 'control_c384gdas_intel' [14:39, 09:55](1336 MB) +PASS -- TEST 'control_stochy_intel' [03:21, 01:50](637 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:49, 01:03](474 MB) +PASS -- TEST 'control_lndp_intel' [05:21, 01:45](638 MB) +PASS -- TEST 'control_iovr4_intel' [06:30, 02:44](635 MB) +PASS -- TEST 'control_iovr5_intel' [06:29, 02:42](635 MB) +PASS -- TEST 'control_p8_intel' [09:01, 04:10](1860 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [08:13, 03:32](1881 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:21, 04:03](1865 MB) +PASS -- TEST 'control_restart_p8_intel' [06:19, 02:19](1089 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:20, 04:02](1846 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:23, 02:18](1122 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:12, 04:11](1845 MB) +PASS -- TEST 'control_2threads_p8_intel' [09:14, 05:01](1937 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:39, 07:26](1872 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:28, 04:55](1934 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:22, 03:27](1879 MB) +PASS -- TEST 'merra2_thompson_intel' [07:39, 03:51](1873 MB) +PASS -- TEST 'regional_control_intel' [08:43, 06:31](1107 MB) +PASS -- TEST 'regional_restart_intel' [05:43, 03:38](1092 MB) +PASS -- TEST 'regional_decomp_intel' [08:43, 06:52](1114 MB) +PASS -- TEST 'regional_2threads_intel' [10:42, 04:42](1054 MB) +PASS -- TEST 'regional_noquilt_intel' [12:40, 06:29](1413 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [12:41, 06:27](1104 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [11:35, 06:32](1113 MB) +PASS -- TEST 'regional_wofs_intel' [12:32, 08:00](1892 MB) + +PASS -- COMPILE 'rrfs_intel' [14:11, 12:50] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [12:00, 08:33](1052 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:53, 05:16](1270 MB) +PASS -- TEST 'rap_decomp_intel' [12:00, 08:47](1010 MB) +PASS -- TEST 'rap_2threads_intel' [21:27, 10:10](1085 MB) +PASS -- TEST 'rap_restart_intel' [08:35, 04:26](1036 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:59, 08:26](1055 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:59, 08:47](1016 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:42, 06:19](1076 MB) +PASS -- TEST 'hrrr_control_intel' [07:59, 04:22](1019 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:59, 04:28](1009 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [16:19, 05:03](1081 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:39, 02:20](941 MB) +PASS -- TEST 'rrfs_v1beta_intel' [19:22, 08:24](1044 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:28, 09:57](1976 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:24, 09:35](2015 MB) + +PASS -- COMPILE 'csawmg_intel' [14:11, 12:13] +PASS -- TEST 'control_csawmg_intel' [08:35, 06:37](1012 MB) +PASS -- TEST 'control_ras_intel' [05:20, 03:29](714 MB) + +PASS -- COMPILE 'wam_intel' [16:11, 14:18] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:45, 12:45](1651 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:10, 12:55] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:32, 03:19](1872 MB) +PASS -- TEST 'regional_control_faster_intel' [08:43, 06:19](1116 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:10, 09:16] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:47, 02:18](1601 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:51, 02:17](1606 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:23, 03:04](814 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:26, 02:47](816 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:39, 04:24](1131 MB) +PASS -- TEST 'control_ras_debug_intel' [04:28, 02:50](819 MB) +PASS -- TEST 'control_diag_debug_intel' [04:49, 02:48](1674 MB) +PASS -- TEST 'control_debug_p8_intel' [04:44, 02:45](1896 MB) +PASS -- TEST 'regional_debug_intel' [19:36, 17:41](1094 MB) +PASS -- TEST 'rap_control_debug_intel' [06:26, 04:56](1201 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:25, 04:47](1194 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:21, 04:55](1201 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 04:56](1202 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:23, 04:59](1193 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:36, 05:16](1283 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:21, 05:03](1203 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:23, 04:58](1204 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:23, 04:56](1203 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 04:55](1201 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:26, 04:55](1200 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 05:01](1197 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:24, 08:00](1192 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:24, 04:46](1202 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 05:00](1209 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:24, 05:00](1203 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:22, 08:23](1206 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:10, 06:24] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:42, 13:23](1675 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:10, 12:24] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:58, 05:06](1153 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:18, 07:13](997 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:43, 03:47](922 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [14:15, 08:40](985 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:48, 04:24](959 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:39, 03:55](886 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [14:30, 05:25](970 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:26, 02:02](873 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:10, 12:04] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [08:53, 02:34](1163 MB) +PASS -- TEST 'conus13km_2threads_intel' [08:54, 01:10](1113 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [09:50, 01:28](1069 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:10, 13:05] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:46, 04:35](968 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:10, 06:16] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [11:25, 04:53](1073 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:23, 04:48](1078 MB) +PASS -- TEST 'conus13km_debug_intel' [20:54, 13:40](1234 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [21:51, 14:05](955 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [20:41, 13:28](1167 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:51, 13:50](1302 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:10, 05:52] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [13:24, 05:00](1127 MB) + +PASS -- COMPILE 'hafsw_intel' [18:11, 15:07] ( 1 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [13:14, 05:57](726 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [14:34, 06:29](1125 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [20:27, 07:27](808 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [38:21, 27:46](834 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [44:28, 34:34](866 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [18:00, 07:08](506 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [21:30, 08:30](501 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [14:55, 03:31](369 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:18, 09:40](480 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [14:50, 04:44](524 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [14:52, 04:29](529 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [14:55, 05:40](574 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:36, 01:35](403 MB) +PASS -- TEST 'gnv1_nested_intel' [12:12, 04:17](1718 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:11, 07:01] ( 1462 warnings 1490 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [20:04, 12:55](583 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:11, 14:21] ( 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [21:55, 15:15](657 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [22:05, 15:12](724 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [18:11, 14:40] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:26, 11:14](707 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:11, 13:37] ( 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [13:16, 07:32](821 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:14, 07:34](796 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:00, 16:21](1204 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:29] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:19, 03:00](1142 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:56](1109 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:50](1023 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:55](1012 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:16, 02:55](1020 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 02:59](1162 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 02:59](1156 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:51](1019 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:05, 06:33](1028 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:00, 06:28](1010 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 02:58](1151 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:18, 04:19](2404 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:19, 04:24](2394 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 04:50] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:39](1082 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 07:34] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:58](1151 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:33] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:32, 01:03](256 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [06:24, 00:55](325 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:35](326 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:49] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [06:31, 00:37](557 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:32, 00:21](445 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:11, 13:15] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [10:11, 04:13](1963 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [17:11, 12:58] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [15:04, 08:35](1972 MB) + +PASS -- COMPILE 'atml_intel' [18:11, 14:28] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:30, 04:55](1859 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:29, 04:56](1860 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:57, 02:49](1070 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:10, 07:04] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:34, 05:48](1889 MB) + +PASS -- COMPILE 'atmw_intel' [16:11, 14:27] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:24, 02:18](1910 MB) + +PASS -- COMPILE 'atmaero_intel' [15:11, 13:57] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [10:12, 04:39](1967 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [11:11, 05:22](1751 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:05, 05:29](1762 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:10, 06:34] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [25:04, 20:50](4486 MB) + +PASS -- COMPILE 'atm_fbh_intel' [14:11, 12:38] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:29, 13:50](1106 MB) + +PASS -- COMPILE 'hafsw_intelllvm' [09:10, 07:50] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [10:03, 07:52](574 MB) + +PASS -- COMPILE 'hafsw_debug_intelllvm' [08:10, 04:34] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [21:50, 19:30](566 MB) SYNOPSIS: -Starting Date/Time: 20241231 07:18:38 -Ending Date/Time: 20241231 09:32:24 -Total Time: 02h:14m:27s +Starting Date/Time: 20250104 06:57:02 +Ending Date/Time: 20250104 08:58:07 +Total Time: 02h:01m:42s Compiles Completed: 45/45 Tests Completed: 191/191 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 595e11f06f..a2e57b5444 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -3a3a89f6f934454e3493554892333ae52a6eebdb +e7f9b6339a4ffc11272fc5797a59f8c59b1083a7 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 74a1c84b0f6e2063f073a5b189a0a3b84f59dbca FV3 (remotes/origin/rrfsv1-to-ufs/dev7) + e1d7f499b8715e001453f00f14a0a6fc42d6da7d FV3 (remotes/origin/rrfsv1-to-ufs/dev8) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 92f1ad01744cb8309b459d3ecec5a02ab526e043 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5533-g92f1ad01) + fa3f1ce1cbaebd30998ea16a149c2d71a41ccf82 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5537-gfa3f1ce1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -39,239 +39,239 @@ 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-20241230 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3646713 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3995097 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:34, 11:26] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:35, 11:30](3192 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:33, 12:04] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [21:32, 16:21](1909 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:27, 17:14](1958 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:39, 08:06](1084 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:26, 18:42](1885 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:46, 23:40] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:28, 15:50](1908 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [18:39, 16:30] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [33:19, 28:30](1951 MB) - -PASS -- COMPILE 's2swa_intel' [24:46, 23:25] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [18:12, 14:32](3228 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:31, 14:53](3226 MB) -PASS -- TEST 'cpld_restart_p8_intel' [12:33, 08:10](3153 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [18:06, 14:45](3244 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [12:39, 08:16](3171 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [34:40, 30:31](3445 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [18:05, 14:28](3223 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [15:22, 12:01](3165 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:32, 14:41](3227 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [29:47, 20:39](4234 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [25:51, 13:14](4372 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:10, 08:35](3199 MB) - -PASS -- COMPILE 's2sw_intel' [12:32, 11:02] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [11:58, 08:05](1919 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:28, 12:47](1981 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [23:44, 21:50] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:06, 05:41](1970 MB) - -PASS -- COMPILE 's2s_intel' [12:32, 10:28] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:51, 06:41](2882 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:46, 02:35](2889 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:16, 01:53](2307 MB) - -PASS -- COMPILE 's2swa_faster_intel' [35:57, 33:53] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [18:40, 14:26](3230 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:33, 11:32] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [29:07, 26:08](1921 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:19, 13:28](1110 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [34:36, 31:13](1899 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [17:33, 16:01] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:19, 30:45](1971 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [22:38, 20:26] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:37, 04:13](663 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:02, 03:23](1561 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:07, 03:42](1564 MB) -PASS -- TEST 'control_latlon_intel' [05:53, 03:28](1567 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:07, 03:30](1565 MB) -PASS -- TEST 'control_c48_intel' [13:28, 10:35](1589 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:00, 06:03](707 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [13:22, 10:35](1589 MB) -PASS -- TEST 'control_c192_intel' [14:29, 11:49](1686 MB) -PASS -- TEST 'control_c384_intel' [18:50, 14:20](1971 MB) -PASS -- TEST 'control_c384gdas_intel' [14:43, 09:32](1164 MB) -PASS -- TEST 'control_stochy_intel' [04:36, 01:56](621 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:37, 01:14](422 MB) -PASS -- TEST 'control_lndp_intel' [03:33, 01:52](615 MB) -PASS -- TEST 'control_iovr4_intel' [04:42, 02:40](613 MB) -PASS -- TEST 'control_iovr5_intel' [04:36, 02:50](614 MB) -PASS -- TEST 'control_p8_intel' [08:25, 04:01](1853 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:32, 03:40](1858 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [08:27, 04:08](1863 MB) -PASS -- TEST 'control_restart_p8_intel' [06:00, 02:29](1015 MB) -PASS -- TEST 'control_noqr_p8_intel' [08:10, 04:04](1859 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:00, 02:36](1017 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:50, 04:14](1858 MB) -PASS -- TEST 'control_2threads_p8_intel' [12:46, 08:13](1933 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:08, 06:47](1864 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:25, 04:49](1912 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:17, 03:29](1859 MB) -PASS -- TEST 'merra2_thompson_intel' [07:29, 03:46](1857 MB) -PASS -- TEST 'regional_control_intel' [07:55, 05:56](893 MB) -PASS -- TEST 'regional_restart_intel' [05:53, 03:30](877 MB) -PASS -- TEST 'regional_decomp_intel' [07:49, 05:56](894 MB) -PASS -- TEST 'regional_2threads_intel' [10:53, 08:16](1015 MB) -PASS -- TEST 'regional_noquilt_intel' [07:51, 05:30](1223 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:57, 05:31](895 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:51, 05:41](893 MB) -PASS -- TEST 'regional_wofs_intel' [08:59, 07:06](1582 MB) - -PASS -- COMPILE 'rrfs_intel' [13:27, 11:53] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [11:17, 07:34](1001 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:33, 04:50](1159 MB) -PASS -- TEST 'rap_decomp_intel' [11:17, 07:46](1003 MB) -PASS -- TEST 'rap_2threads_intel' [19:48, 16:09](1079 MB) -PASS -- TEST 'rap_restart_intel' [08:13, 03:59](882 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:29, 07:18](1000 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:29, 07:42](1001 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:39, 05:49](883 MB) -PASS -- TEST 'hrrr_control_intel' [08:21, 04:04](997 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:21, 04:10](998 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [12:44, 08:08](1073 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:44, 02:23](831 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:38, 07:26](998 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:46, 09:39](1954 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:46, 09:21](1946 MB) - -PASS -- COMPILE 'csawmg_intel' [24:44, 23:10] -PASS -- TEST 'control_csawmg_intel' [10:08, 07:29](955 MB) -PASS -- TEST 'control_ras_intel' [05:34, 03:27](655 MB) - -PASS -- COMPILE 'wam_intel' [24:44, 22:51] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:14, 12:08](1646 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [19:34, 17:24] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:35, 03:21](1858 MB) -PASS -- TEST 'regional_control_faster_intel' [08:13, 05:17](895 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [32:01, 30:38] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:15, 02:47](1607 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:05, 02:45](1607 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:34, 03:39](800 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:40, 03:14](801 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:10, 05:14](1108 MB) -PASS -- TEST 'control_ras_debug_intel' [05:35, 03:25](809 MB) -PASS -- TEST 'control_diag_debug_intel' [06:08, 03:16](1660 MB) -PASS -- TEST 'control_debug_p8_intel' [05:55, 03:16](1898 MB) -PASS -- TEST 'regional_debug_intel' [21:20, 18:48](922 MB) -PASS -- TEST 'rap_control_debug_intel' [07:39, 05:35](1188 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:42, 05:31](1184 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:37, 05:43](1183 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:36, 05:51](1186 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:39, 05:42](1190 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:49, 06:05](1268 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:36, 05:42](1193 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:33, 05:46](1187 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:35, 05:38](1190 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:35, 05:42](1188 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:34, 05:47](1181 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:36, 05:41](1188 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:41, 09:02](1186 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:38, 05:34](1182 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:39, 05:48](1188 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:35, 05:50](1188 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:54, 09:33](1187 MB) - -PASS -- COMPILE 'wam_debug_intel' [17:32, 15:31] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [17:27, 14:26](1686 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [27:56, 25:47] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:33, 04:24](1032 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:31, 06:09](877 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:32, 03:28](874 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [17:36, 13:53](925 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [12:31, 07:25](918 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:52, 03:33](873 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:36, 04:34](791 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:35, 02:01](764 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:29, 11:32] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:31, 02:26](1079 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:06, 02:09](1057 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:58, 01:35](957 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:30, 12:53] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:02, 04:17](901 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:23, 06:39] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:35, 05:28](1069 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:38, 05:32](1062 MB) -PASS -- TEST 'conus13km_debug_intel' [18:22, 15:08](1151 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [18:16, 15:41](826 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [26:21, 23:34](1142 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:23, 15:13](1219 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [13:33, 12:04] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:37, 05:28](1091 MB) - -PASS -- COMPILE 'hafsw_intel' [13:29, 11:43] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [10:53, 06:53](688 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:48, 08:14](1050 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:07, 08:06](744 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:53, 13:31](767 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:11, 14:56](793 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:20, 05:58](465 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:52, 07:44](481 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:31, 03:21](382 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:08, 09:09](437 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:07, 04:22](498 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:12, 04:01](499 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:26, 05:20](562 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:38, 02:13](406 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [13:28, 11:55] ( 1444 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:23, 14:53](611 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [14:28, 12:54] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:27, 08:31](607 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:30, 08:44](783 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [21:37, 19:33] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:47, 06:56](783 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:34, 16:52] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:51, 07:51](731 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:50, 07:48](715 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:40, 16:10](892 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:32, 14:30] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:56, 04:19](1912 MB) - -PASS -- COMPILE 'atml_intel' [21:40, 20:08] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [12:26, 11:05] ( 866 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [16:32, 14:36] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:15, 04:49](3119 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:13, 05:15](2996 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:53, 05:23](3006 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:23, 07:59] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [27:17, 22:51](4477 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:28, 11:34] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:39, 11:25](3195 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:39, 22:17] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:33, 16:23](1909 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:05, 17:13](1946 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:46, 08:08](1069 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:30, 18:50](1886 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:39, 21:48] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:28, 15:49](1908 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:22, 05:27] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [33:53, 28:29](1951 MB) + +PASS -- COMPILE 's2swa_intel' [18:33, 17:01] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [18:12, 14:43](3227 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:33, 14:46](3225 MB) +PASS -- TEST 'cpld_restart_p8_intel' [12:33, 08:12](3152 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [18:08, 14:49](3244 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [12:38, 08:15](3171 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [34:48, 30:23](3445 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:49, 14:34](3221 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [16:18, 12:05](3166 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:32, 14:56](3228 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [30:08, 20:30](4233 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [26:04, 13:09](4376 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:08, 08:41](3199 MB) + +PASS -- COMPILE 's2sw_intel' [12:28, 10:53] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:45, 08:01](1921 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:17, 12:50](1981 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:28, 10:18] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:07, 05:05](1969 MB) + +PASS -- COMPILE 's2s_intel' [13:29, 11:47] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:40, 06:20](2884 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:36, 02:23](2890 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:59, 01:35](2307 MB) + +PASS -- COMPILE 's2swa_faster_intel' [35:54, 34:19] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [18:47, 14:28](3231 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:42, 22:56] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:40, 26:17](1920 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:44, 13:30](1100 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [34:26, 30:51](1898 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:24, 08:41] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:05, 30:15](1971 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [23:46, 22:08] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:39, 04:08](664 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:10, 03:25](1562 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:13, 03:36](1574 MB) +PASS -- TEST 'control_latlon_intel' [06:02, 03:16](1567 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:16, 03:24](1565 MB) +PASS -- TEST 'control_c48_intel' [13:34, 10:38](1587 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:04, 06:00](709 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [13:34, 10:26](1587 MB) +PASS -- TEST 'control_c192_intel' [14:40, 11:37](1687 MB) +PASS -- TEST 'control_c384_intel' [18:57, 14:23](1974 MB) +PASS -- TEST 'control_c384gdas_intel' [14:48, 09:37](1167 MB) +PASS -- TEST 'control_stochy_intel' [04:34, 02:02](618 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:35, 01:14](424 MB) +PASS -- TEST 'control_lndp_intel' [04:37, 02:01](616 MB) +PASS -- TEST 'control_iovr4_intel' [04:43, 02:45](614 MB) +PASS -- TEST 'control_iovr5_intel' [05:41, 02:56](613 MB) +PASS -- TEST 'control_p8_intel' [08:25, 04:04](1864 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:38, 03:28](1858 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:13, 04:06](1863 MB) +PASS -- TEST 'control_restart_p8_intel' [05:57, 02:28](997 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:40, 04:05](1847 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:43, 02:20](1023 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:28, 04:10](1859 MB) +PASS -- TEST 'control_2threads_p8_intel' [12:30, 08:05](1926 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:01, 06:52](1864 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:16, 04:38](1912 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:58, 03:32](1861 MB) +PASS -- TEST 'merra2_thompson_intel' [08:44, 03:57](1857 MB) +PASS -- TEST 'regional_control_intel' [08:01, 05:36](892 MB) +PASS -- TEST 'regional_restart_intel' [05:58, 03:42](877 MB) +PASS -- TEST 'regional_decomp_intel' [07:56, 05:52](896 MB) +PASS -- TEST 'regional_2threads_intel' [11:00, 08:17](1022 MB) +PASS -- TEST 'regional_noquilt_intel' [08:11, 05:38](1220 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:14, 05:34](894 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:54, 05:30](894 MB) +PASS -- TEST 'regional_wofs_intel' [09:02, 07:00](1582 MB) + +PASS -- COMPILE 'rrfs_intel' [24:42, 23:21] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [11:27, 07:30](1001 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:23, 04:43](1155 MB) +PASS -- TEST 'rap_decomp_intel' [11:18, 07:47](1006 MB) +PASS -- TEST 'rap_2threads_intel' [19:28, 16:05](1078 MB) +PASS -- TEST 'rap_restart_intel' [08:18, 03:55](879 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:29, 07:17](1000 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:29, 07:34](1001 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:26, 05:42](885 MB) +PASS -- TEST 'hrrr_control_intel' [08:30, 03:58](997 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:22, 04:20](994 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [12:33, 08:10](1066 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:34, 02:20](831 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:30, 07:26](995 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:42, 09:46](1957 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:45, 09:27](1948 MB) + +PASS -- COMPILE 'csawmg_intel' [21:36, 20:13] +PASS -- TEST 'control_csawmg_intel' [10:04, 07:20](955 MB) +PASS -- TEST 'control_ras_intel' [05:38, 03:41](652 MB) + +PASS -- COMPILE 'wam_intel' [16:34, 14:19] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:14, 12:17](1643 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [20:36, 18:36] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:44, 03:20](1858 MB) +PASS -- TEST 'regional_control_faster_intel' [08:01, 05:22](895 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [34:53, 32:38] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:06, 02:47](1599 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:12, 02:52](1607 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:32, 03:33](800 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:36, 03:21](802 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:57, 05:08](1109 MB) +PASS -- TEST 'control_ras_debug_intel' [05:34, 03:31](810 MB) +PASS -- TEST 'control_diag_debug_intel' [06:03, 03:22](1662 MB) +PASS -- TEST 'control_debug_p8_intel' [05:53, 03:18](1892 MB) +PASS -- TEST 'regional_debug_intel' [21:15, 18:34](919 MB) +PASS -- TEST 'rap_control_debug_intel' [07:39, 05:44](1189 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:42, 05:34](1185 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:38, 05:48](1183 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:36, 05:53](1187 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:34, 05:44](1189 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:50, 06:07](1269 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:37, 05:58](1186 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:35, 05:42](1189 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:38, 05:41](1190 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:39, 05:47](1191 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:38, 05:44](1181 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:36, 05:39](1188 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:42, 09:08](1184 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:36, 05:39](1180 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:38, 05:36](1186 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:37, 05:37](1191 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:46, 09:29](1186 MB) + +PASS -- COMPILE 'wam_debug_intel' [12:27, 10:37] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [17:22, 14:27](1682 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [24:42, 23:01] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:23, 04:25](1028 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:26, 06:16](881 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:49, 03:33](878 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [17:28, 13:54](932 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [12:31, 07:09](923 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:28, 03:42](873 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:39, 04:34](791 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:47, 02:09](760 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [25:43, 23:42] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:20, 02:22](1080 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:16, 02:09](1068 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:15, 01:32](958 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [20:38, 19:13] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:07, 04:17](898 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:24, 09:04] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:39, 05:32](1063 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:35, 05:31](1060 MB) +PASS -- TEST 'conus13km_debug_intel' [18:20, 15:08](1152 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [18:16, 15:27](855 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [26:24, 23:23](1136 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:22, 15:04](1219 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:30, 12:57] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:40, 05:33](1090 MB) + +PASS -- COMPILE 'hafsw_intel' [17:32, 15:35] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:47, 06:36](684 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:48, 08:01](1054 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:08, 08:03](742 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:56, 13:25](769 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:21, 14:35](788 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:19, 06:02](463 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:54, 07:40](483 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:28, 03:19](380 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:11, 09:04](437 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:09, 04:27](499 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:25, 04:11](499 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:21, 05:27](562 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:44, 02:02](409 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [15:32, 13:28] ( 1444 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:26, 14:49](614 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:34, 17:53] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:28, 08:33](605 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:35, 08:45](791 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:28, 12:21] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:57, 07:12](784 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:30, 13:22] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:48, 07:48](734 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:46, 07:59](717 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:47, 16:11](903 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:31, 16:05] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:03, 04:12](1913 MB) + +PASS -- COMPILE 'atml_intel' [15:30, 13:54] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [08:22, 06:59] ( 866 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [11:28, 09:34] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:30, 04:45](3115 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:19, 05:22](2997 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:55, 05:31](3005 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:25, 07:27] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [28:02, 23:20](4497 MB) SYNOPSIS: -Starting Date/Time: 20241231 17:31:20 -Ending Date/Time: 20241231 19:17:03 -Total Time: 01h:46m:27s +Starting Date/Time: 20250106 15:24:45 +Ending Date/Time: 20250106 17:23:45 +Total Time: 02h:00m:00s Compiles Completed: 33/33 Tests Completed: 157/157 diff --git a/tests/parm/rrfs_conus13km_hrrr.nml.IN b/tests/parm/rrfs_conus13km_hrrr.nml.IN index b582d1d357..be6cf3d6fb 100644 --- a/tests/parm/rrfs_conus13km_hrrr.nml.IN +++ b/tests/parm/rrfs_conus13km_hrrr.nml.IN @@ -115,7 +115,6 @@ regional = .true. regional_bcs_from_gsi = .false. res_latlon_dynamics = @[RES_LATLON_DYNAMICS] - increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] reset_eta = .false. rf_cutoff = 20000.0 sg_cutoff = 10000.0 @@ -150,7 +149,7 @@ dust_opt = 5 drydep_opt = 1 coarsepm_settling = 1 - smoke_forecast = @[SMOKE_FORECAST] + hwp_method = @[SMOKE_FORECAST] aero_ind_fdb = .false. aero_dir_fdb = .false. addsmoke_flag = 1 From c7412fa00d6995246279b80c4984d47b5d40352a Mon Sep 17 00:00:00 2001 From: Daniel Sarmiento <42810219+dpsarmie@users.noreply.github.com> Date: Mon, 13 Jan 2025 16:32:10 -0500 Subject: [PATCH 23/24] Fix ugwpv1 timing / remove some extended WLCLK cases & PR#2491 Updates from the jedi model convention (#2543) * UFSWM - Fix sedi_semi logic issue in export_ugwpv1() and change affected RTs for more stable and quicker runtimes. * UFSWM - Alias update JEDI-related variables inside the fd_ufs.yaml file. --- tests/bl_date.conf | 2 +- tests/default_vars.sh | 9 +- tests/logs/OpnReqTests_control_p8_hera.log | 386 +++++++- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 30 +- tests/logs/RegressionTests_acorn.log | 514 +++++------ tests/logs/RegressionTests_derecho.log | 554 ++++++------ tests/logs/RegressionTests_gaeac5.log | 588 ++++++------ tests/logs/RegressionTests_gaeac6.log | 557 ++++++------ tests/logs/RegressionTests_hera.log | 805 +++++++++-------- tests/logs/RegressionTests_hercules.log | 855 ++++++++++-------- tests/logs/RegressionTests_jet.log | 497 +++++----- tests/logs/RegressionTests_orion.log | 576 ++++++------ tests/logs/RegressionTests_wcoss2.log | 460 +++++----- tests/parm/fd_ufs.yaml | 14 +- tests/parm/global_control.nml.IN | 1 + tests/test_changes.list | 156 ++-- tests/tests/control_2threads_p8 | 3 + tests/tests/control_CubedSphereGrid | 3 + tests/tests/control_CubedSphereGrid_debug | 3 + tests/tests/control_CubedSphereGrid_parallel | 3 + tests/tests/control_debug_p8 | 3 + tests/tests/control_decomp_p8 | 3 + tests/tests/control_latlon | 2 + tests/tests/control_noqr_p8 | 3 + tests/tests/control_p8 | 3 + tests/tests/control_p8_lndp | 3 + tests/tests/control_p8_ugwpv1 | 3 + tests/tests/control_restart_noqr_p8 | 3 + tests/tests/control_restart_p8 | 3 + tests/tests/control_wam | 4 + tests/tests/control_wrtGauss_netcdf_parallel | 3 + .../control_wrtGauss_netcdf_parallel_debug | 3 + tests/tests/cpld_control_gfsv17 | 6 +- tests/tests/cpld_control_gfsv17_iau | 5 +- tests/tests/cpld_debug_gfsv17 | 9 +- tests/tests/cpld_debug_pdlib_p8 | 8 +- tests/tests/cpld_mpi_gfsv17 | 3 +- tests/tests/cpld_restart_gfsv17 | 2 +- tests/tests/cpld_s2sa_p8 | 3 + 40 files changed, 3335 insertions(+), 2777 deletions(-) diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 5283e4c483..924c815cf5 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20241230 +export BL_DATE=20250107 diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 81dd617d49..410981d033 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -501,7 +501,6 @@ export FNABSC="'global_mxsnoalb.uariz.t126.384.190.rg.grb'" export RF_CUTOFF=30.0 export FAST_TAU_W_SEC=0.0 -export ATMRES=C96 export TILEDFIX=.false. export DO_CA=.false. export CA_SGS=.false. @@ -795,6 +794,7 @@ export HWRF_SAMFDEEP=.false. export RAS=.false. export RANDOM_CLDS=.false. export CNVCLD=.true. +export XR_CNVCLD=.false. export PROGSIGMA=.false. export BETASCU=8.0 export BETAMCU=1.0 @@ -1190,8 +1190,11 @@ export_ugwpv1() { esac if [[ ${DO_GSL_DRAG_SS} = .true. ]]; then export CDMBGWD=${CDMBGWD_GSL}; fi - if [[ ${SEDI_SEMI} = .true. ]]; then export DT_ATMOS=$((DT_ATMOS/2)); fi - export DT_INNER=${DT_ATMOS} + if [[ ${SEDI_SEMI} = .false. ]]; then + export DT_INNER=$((DT_ATMOS/2)) + else + export DT_INNER=${DT_ATMOS} + fi export default_dt_atmos=0 } diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 005fdb443e..c7c2c0066b 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,3 +1,387 @@ -Thu Jan 2 18:23:19 UTC 2025 +Thu Jan 9 04:34:01 UTC 2025 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_2139756/bit_base_bit_base +Checking test bit_base results .... +Moving baseline bit_base files .... + Moving sfcf000.nc .........OK + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + 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 = 261.834016 + 0: The maximum resident set size (KB) = 1442468 + +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_2139756/dbg_base_dbg_base +Checking test dbg_base results .... +Moving baseline dbg_base files .... + Moving sfcf000.nc .........OK + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + 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 = 877.474084 + 0: The maximum resident set size (KB) = 1409312 + +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_2139756/dcp_dcp +Checking test dcp results .... + Comparing sfcf000.nc .....USING NCCMP......OK + Comparing sfcf021.nc .....USING NCCMP......OK + Comparing sfcf024.nc .....USING NCCMP......OK + Comparing atmf000.nc .....USING NCCMP......OK + Comparing atmf021.nc .....USING NCCMP......OK + Comparing atmf024.nc .....USING NCCMP......OK + Comparing GFSFLX.GrbF00 .....USING CMP......OK + Comparing GFSFLX.GrbF21 .....USING CMP......OK + Comparing GFSFLX.GrbF24 .....USING CMP......OK + Comparing GFSPRS.GrbF00 .....USING CMP......OK + Comparing GFSPRS.GrbF21 .....USING CMP......OK + Comparing GFSPRS.GrbF24 .....USING CMP......OK + Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK + 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 = 235.774551 + 0: The maximum resident set size (KB) = 1405232 + +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_2139756/mpi_mpi +Checking test mpi results .... + Comparing sfcf000.nc .....USING NCCMP......OK + Comparing sfcf021.nc .....USING NCCMP......OK + Comparing sfcf024.nc .....USING NCCMP......OK + Comparing atmf000.nc .....USING NCCMP......OK + Comparing atmf021.nc .....USING NCCMP......OK + Comparing atmf024.nc .....USING NCCMP......OK + Comparing GFSFLX.GrbF00 .....USING CMP......OK + Comparing GFSFLX.GrbF21 .....USING CMP......OK + Comparing GFSFLX.GrbF24 .....USING CMP......OK + Comparing GFSPRS.GrbF00 .....USING CMP......OK + Comparing GFSPRS.GrbF21 .....USING CMP......OK + Comparing GFSPRS.GrbF24 .....USING CMP......OK + Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK + 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 = 234.823585 + 0: The maximum resident set size (KB) = 1395932 + +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_2139756/rst_rst +Checking test rst results .... + Comparing sfcf000.nc .....USING NCCMP......OK + Comparing sfcf021.nc .....USING NCCMP......OK + Comparing sfcf024.nc .....USING NCCMP......OK + Comparing atmf000.nc .....USING NCCMP......OK + Comparing atmf021.nc .....USING NCCMP......OK + Comparing atmf024.nc .....USING NCCMP......OK + Comparing GFSFLX.GrbF00 .....USING CMP......OK + Comparing GFSFLX.GrbF21 .....USING CMP......OK + Comparing GFSFLX.GrbF24 .....USING CMP......OK + Comparing GFSPRS.GrbF00 .....USING CMP......OK + Comparing GFSPRS.GrbF21 .....USING CMP......OK + Comparing GFSPRS.GrbF24 .....USING CMP......OK + Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK + 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 = 234.408969 + 0: The maximum resident set size (KB) = 1409792 + +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_2139756/std_base_std_base +Checking test std_base results .... +Moving baseline std_base files .... + Moving sfcf000.nc .........OK + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + 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 = 234.431525 + 0: The maximum resident set size (KB) = 1420012 + +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_2139756/thr_thr +Checking test thr results .... + Comparing sfcf000.nc .....USING NCCMP......OK + Comparing sfcf021.nc .....USING NCCMP......OK + Comparing sfcf024.nc .....USING NCCMP......OK + Comparing atmf000.nc .....USING NCCMP......OK + Comparing atmf021.nc .....USING NCCMP......OK + Comparing atmf024.nc .....USING NCCMP......OK + Comparing GFSFLX.GrbF00 .....USING CMP......OK + Comparing GFSFLX.GrbF21 .....USING CMP......OK + Comparing GFSFLX.GrbF24 .....USING CMP......OK + Comparing GFSPRS.GrbF00 .....USING CMP......OK + Comparing GFSPRS.GrbF21 .....USING CMP......OK + Comparing GFSPRS.GrbF24 .....USING CMP......OK + Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK + 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 = 233.407197 + 0: The maximum resident set size (KB) = 1409984 + +Test thr PASS + +OPERATION REQUIREMENT TEST WAS SUCCESSFUL +Thu Jan 9 05:49:41 UTC 2025 +Elapsed time: 01h:15m:41s. 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 9b521b171a..05fc14e4ab 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 @@ -Tue Jan 7 03:15:28 UTC 2025 +Thu Jan 9 02:59:38 UTC 2025 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_278179/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1874715/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 = 4369.524954 - 0: The maximum resident set size (KB) = 1493280 + 0: The total amount of wall time = 2326.114069 + 0: The maximum resident set size (KB) = 1489800 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_278179/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1874715/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 = 1284.724733 - 0: The maximum resident set size (KB) = 1482880 + 0: The total amount of wall time = 790.318058 + 0: The maximum resident set size (KB) = 1482288 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_278179/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1874715/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 = 1139.037288 - 0: The maximum resident set size (KB) = 1488884 + 0: The total amount of wall time = 705.815910 + 0: The maximum resident set size (KB) = 1483264 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Tue Jan 7 05:37:25 UTC 2025 -Elapsed time: 02h:21m:57s. Have a nice day! +Thu Jan 9 04:34:00 UTC 2025 +Elapsed time: 01h:34m:22s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 5e047d06e1..c8b8760531 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Mon Jan 6 12:24:27 UTC 2025 +Thu Jan 9 00:22:22 UTC 2025 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_3494311/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1259269/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 = 1407.193487 - 0: The maximum resident set size (KB) = 780976 + 0: The total amount of wall time = 1395.474569 + 0: The maximum resident set size (KB) = 748696 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_3494311/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1259269/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 = 2195.740053 - 0: The maximum resident set size (KB) = 725748 + 0: The total amount of wall time = 2283.182601 + 0: The maximum resident set size (KB) = 711084 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_3494311/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1259269/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 = 2291.331176 - 0: The maximum resident set size (KB) = 734184 + 0: The total amount of wall time = 2207.702175 + 0: The maximum resident set size (KB) = 692680 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_3494311/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1259269/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 = 2194.246673 - 0: The maximum resident set size (KB) = 723192 + 0: The total amount of wall time = 2278.935561 + 0: The maximum resident set size (KB) = 711160 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Jan 6 14:57:59 UTC 2025 -Elapsed time: 02h:33m:33s. Have a nice day! +Thu Jan 9 02:59:38 UTC 2025 +Elapsed time: 02h:37m:17s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 9e0b6478cc..d07115ab49 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,20 +1,20 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -572eba512daea70468af6d74c0134781118e9f0a +652433c9ba641f105fbac487d9515284cb22370e Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - c7ea491e6fd99e459af977bfd57fa14aa6a349eb CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-12-16) + 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) + 7d998809dc84996248f93ced49730cfe92eae7cf FV3 (heads/develop) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) + 24643b0e0f9754d76176d60ce155bf8956bfb44d FV3/ccpp/physics (EP4-1092-g24643b0e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -38,268 +38,268 @@ 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-20241212 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3668978 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20250107 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_571774 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:26, 11:31] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:29, 11:16](3190 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:26, 12:11] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:22, 15:48](1907 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [30:34, 16:41](1950 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [19:14, 07:41](1081 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:25, 18:24](1888 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:26, 12:05] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:23, 15:19](1902 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:28] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [32:24, 28:17](1943 MB) - -PASS -- COMPILE 's2swa_intel' [13:28, 11:33] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [25:12, 14:37](3226 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [29:40, 14:26](3226 MB) -PASS -- TEST 'cpld_restart_p8_intel' [15:53, 08:03](3156 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [25:06, 14:29](3245 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [15:58, 07:59](3171 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [37:39, 30:00](3451 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [26:17, 14:21](3218 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [22:24, 11:38](3168 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [29:38, 14:24](3228 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:06, 08:09](3202 MB) - -PASS -- COMPILE 's2sw_intel' [12:27, 11:08] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:31, 07:37](1917 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:01, 12:13](1980 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:26, 10:21] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:56, 05:06](1979 MB) - -PASS -- COMPILE 's2s_intel' [11:25, 10:14] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:28, 06:09](2878 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:26, 02:12](2892 MB) -PASS -- TEST 'cpld_restart_c48_intel' [05:07, 01:26](2303 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:31, 15:49] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [29:19, 14:18](3225 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:29, 11:38] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [29:06, 25:47](1918 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [18:59, 13:01](1089 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [37:05, 30:28](1899 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:12] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [50:20, 30:06](1967 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:27] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [19:48, 03:55](662 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [20:09, 03:12](1557 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [18:09, 03:16](1565 MB) -PASS -- TEST 'control_latlon_intel' [19:02, 03:18](1564 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [16:15, 03:20](1570 MB) -PASS -- TEST 'control_c48_intel' [19:24, 10:26](1581 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:58, 05:59](707 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [16:20, 10:26](1578 MB) -PASS -- TEST 'control_c192_intel' [18:18, 11:32](1687 MB) -PASS -- TEST 'control_c384_intel' [19:36, 14:00](1985 MB) -PASS -- TEST 'control_c384gdas_intel' [16:23, 09:03](1160 MB) -PASS -- TEST 'control_stochy_intel' [06:33, 01:51](617 MB) -PASS -- TEST 'control_stochy_restart_intel' [07:36, 01:14](422 MB) -PASS -- TEST 'control_lndp_intel' [05:32, 01:48](615 MB) -PASS -- TEST 'control_iovr4_intel' [06:35, 02:42](610 MB) -PASS -- TEST 'control_iovr5_intel' [06:34, 02:35](617 MB) -PASS -- TEST 'control_p8_intel' [09:19, 03:37](1850 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [09:21, 03:06](1857 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [10:22, 03:45](1849 MB) -PASS -- TEST 'control_restart_p8_intel' [06:17, 02:07](991 MB) -PASS -- TEST 'control_noqr_p8_intel' [09:38, 03:37](1855 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [07:40, 02:09](1019 MB) -PASS -- TEST 'control_decomp_p8_intel' [10:36, 03:43](1854 MB) -PASS -- TEST 'control_2threads_p8_intel' [14:44, 07:36](1930 MB) -PASS -- TEST 'control_p8_lndp_intel' [13:01, 06:24](1859 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [12:24, 04:03](1908 MB) -PASS -- TEST 'control_p8_mynn_intel' [11:11, 03:10](1857 MB) -PASS -- TEST 'merra2_thompson_intel' [12:52, 03:27](1854 MB) -PASS -- TEST 'regional_control_intel' [08:54, 05:21](891 MB) -PASS -- TEST 'regional_restart_intel' [05:49, 03:00](876 MB) -PASS -- TEST 'regional_decomp_intel' [09:49, 05:24](887 MB) -PASS -- TEST 'regional_2threads_intel' [13:51, 07:33](1017 MB) -PASS -- TEST 'regional_noquilt_intel' [09:51, 04:59](1219 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:49, 05:09](891 MB) -PASS -- TEST 'regional_wofs_intel' [10:50, 06:56](1583 MB) - -PASS -- COMPILE 'rrfs_intel' [10:23, 08:46] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [13:25, 07:14](1000 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:15, 04:29](1159 MB) -PASS -- TEST 'rap_decomp_intel' [11:31, 07:32](1003 MB) -PASS -- TEST 'rap_2threads_intel' [20:32, 15:57](1076 MB) -PASS -- TEST 'rap_restart_intel' [10:36, 03:56](883 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:23, 07:18](999 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:32, 07:35](996 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [13:28, 05:23](888 MB) -PASS -- TEST 'hrrr_control_intel' [10:26, 03:51](996 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [10:29, 03:55](991 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [14:42, 08:01](1068 MB) -PASS -- TEST 'hrrr_control_restart_intel' [08:37, 02:05](833 MB) -PASS -- TEST 'rrfs_v1beta_intel' [15:22, 07:10](995 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:39, 09:28](1956 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:40, 09:14](1944 MB) - -PASS -- COMPILE 'csawmg_intel' [09:22, 08:04] -PASS -- TEST 'control_csawmg_intel' [23:08, 06:56](952 MB) -PASS -- TEST 'control_ras_intel' [16:42, 03:26](650 MB) - -PASS -- COMPILE 'wam_intel' [10:23, 08:13] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [17:08, 12:13](1640 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:23, 08:26] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [08:21, 03:06](1849 MB) -PASS -- TEST 'regional_control_faster_intel' [06:47, 05:06](893 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 07:27] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [22:20, 02:38](1607 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [22:29, 02:37](1603 MB) -PASS -- TEST 'control_stochy_debug_intel' [18:48, 03:37](806 MB) -PASS -- TEST 'control_lndp_debug_intel' [18:49, 03:06](805 MB) -PASS -- TEST 'control_csawmg_debug_intel' [24:19, 05:01](1112 MB) -PASS -- TEST 'control_ras_debug_intel' [18:49, 03:14](810 MB) -PASS -- TEST 'control_diag_debug_intel' [22:24, 03:19](1655 MB) -PASS -- TEST 'control_debug_p8_intel' [22:15, 02:59](1904 MB) -PASS -- TEST 'regional_debug_intel' [23:16, 18:17](939 MB) -PASS -- TEST 'rap_control_debug_intel' [10:37, 05:42](1192 MB) -PASS -- TEST 'hrrr_control_debug_intel' [10:39, 05:34](1184 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [09:35, 05:37](1186 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [09:35, 05:47](1188 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:33, 05:38](1189 MB) -PASS -- TEST 'rap_diag_debug_intel' [10:46, 05:47](1272 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:34, 05:49](1192 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:34, 05:52](1188 MB) -PASS -- TEST 'rap_lndp_debug_intel' [12:38, 05:33](1192 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [13:40, 05:31](1188 MB) -PASS -- TEST 'rap_noah_debug_intel' [13:39, 05:31](1183 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [12:38, 05:45](1189 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:41, 09:03](1185 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [10:36, 05:28](1183 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [11:38, 05:33](1188 MB) -PASS -- TEST 'rap_flake_debug_intel' [11:37, 05:46](1189 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [16:41, 09:29](1189 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:19, 04:23] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [26:18, 14:10](1686 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:22, 08:03] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:16, 04:22](1029 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [12:17, 05:58](875 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [11:30, 03:26](880 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [20:23, 13:47](922 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:52, 07:13](930 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:59, 03:34](870 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:32, 04:29](789 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:30, 02:00](763 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:25, 08:05] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [08:13, 02:20](1082 MB) -PASS -- TEST 'conus13km_2threads_intel' [13:10, 02:00](1057 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:55, 01:29](958 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:26, 11:46] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:29, 06:49](3192 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:26, 12:12] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:25, 15:37](1905 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:35, 16:47](1948 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [18:19, 07:43](1070 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:15, 18:19](1882 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:27, 11:51] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [25:34, 15:17](1901 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:31] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [30:25, 25:59](1951 MB) + +PASS -- COMPILE 's2swa_intel' [13:27, 11:38] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:04, 08:37](3228 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:31, 08:42](3223 MB) +PASS -- TEST 'cpld_restart_p8_intel' [17:26, 05:08](3156 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [17:58, 08:34](3246 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [15:55, 05:18](3171 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [27:32, 16:57](3449 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [15:16, 08:25](3219 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [17:55, 07:14](3170 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:20, 08:36](3227 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [13:13, 08:15](3207 MB) + +PASS -- COMPILE 's2sw_intel' [12:26, 11:01] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:31, 04:51](1917 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:58, 07:20](1980 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:26, 10:06] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:52, 05:02](1976 MB) + +PASS -- COMPILE 's2s_intel' [12:25, 10:18] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:33, 06:01](2879 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:30, 02:10](2891 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:07, 01:23](2306 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:31, 15:31] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [17:11, 08:36](3227 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:28, 11:37] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:00, 15:37](1928 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:59, 07:47](1092 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [32:02, 18:10](1898 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 05:09] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [45:19, 27:18](1975 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:28] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [19:46, 03:56](660 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [18:07, 02:40](1557 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [17:07, 02:40](1568 MB) +PASS -- TEST 'control_latlon_intel' [16:01, 02:36](1564 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [14:09, 02:38](1567 MB) +PASS -- TEST 'control_c48_intel' [15:19, 06:24](1587 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [12:59, 06:00](706 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [13:20, 06:22](1578 MB) +PASS -- TEST 'control_c192_intel' [14:15, 07:10](1687 MB) +PASS -- TEST 'control_c384_intel' [04:19, 08:43](1969 MB) +PASS -- TEST 'control_c384gdas_intel' [07:16, 09:12](1164 MB) +PASS -- TEST 'control_stochy_intel' [06:34, 01:52](615 MB) +PASS -- TEST 'control_stochy_restart_intel' [05:34, 01:14](424 MB) +PASS -- TEST 'control_lndp_intel' [05:31, 01:41](615 MB) +PASS -- TEST 'control_iovr4_intel' [07:35, 02:44](611 MB) +PASS -- TEST 'control_iovr5_intel' [07:35, 02:33](613 MB) +PASS -- TEST 'control_p8_intel' [10:07, 03:05](1861 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [09:22, 03:05](1855 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [09:20, 02:59](1850 MB) +PASS -- TEST 'control_restart_p8_intel' [05:38, 01:54](1007 MB) +PASS -- TEST 'control_noqr_p8_intel' [08:52, 02:53](1842 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:39, 01:46](1012 MB) +PASS -- TEST 'control_decomp_p8_intel' [08:40, 03:05](1853 MB) +PASS -- TEST 'control_2threads_p8_intel' [13:25, 05:50](1931 MB) +PASS -- TEST 'control_p8_lndp_intel' [10:59, 04:57](1853 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [11:27, 04:07](1909 MB) +PASS -- TEST 'control_p8_mynn_intel' [11:14, 03:19](1857 MB) +PASS -- TEST 'merra2_thompson_intel' [11:52, 03:33](1854 MB) +PASS -- TEST 'regional_control_intel' [08:56, 05:12](887 MB) +PASS -- TEST 'regional_restart_intel' [05:45, 03:00](875 MB) +PASS -- TEST 'regional_decomp_intel' [07:54, 05:34](895 MB) +PASS -- TEST 'regional_2threads_intel' [11:51, 07:32](1015 MB) +PASS -- TEST 'regional_noquilt_intel' [08:49, 05:12](1214 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:49, 05:14](890 MB) +PASS -- TEST 'regional_wofs_intel' [10:51, 07:00](1584 MB) + +PASS -- COMPILE 'rrfs_intel' [10:24, 08:48] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [20:37, 07:19](1002 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [25:36, 04:32](1160 MB) +PASS -- TEST 'rap_decomp_intel' [20:45, 07:36](999 MB) +PASS -- TEST 'rap_2threads_intel' [26:41, 15:57](1083 MB) +PASS -- TEST 'rap_restart_intel' [08:27, 03:53](884 MB) +PASS -- TEST 'rap_sfcdiff_intel' [18:40, 07:11](999 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [18:34, 07:31](997 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:28, 05:36](886 MB) +PASS -- TEST 'hrrr_control_intel' [18:38, 03:52](998 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [22:41, 04:04](992 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [22:41, 08:01](1068 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:41, 02:08](833 MB) +PASS -- TEST 'rrfs_v1beta_intel' [17:29, 07:16](994 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:43, 09:29](1956 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:40, 09:12](1946 MB) + +PASS -- COMPILE 'csawmg_intel' [09:23, 08:06] +PASS -- TEST 'control_csawmg_intel' [13:59, 06:56](952 MB) +PASS -- TEST 'control_ras_intel' [09:35, 03:39](653 MB) + +PASS -- COMPILE 'wam_intel' [10:23, 08:17] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [16:09, 12:12](1645 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:25, 08:26] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [08:24, 03:07](1857 MB) +PASS -- TEST 'regional_control_faster_intel' [06:50, 04:58](886 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:22, 07:37] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:55, 02:49](1606 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:04, 02:50](1612 MB) +PASS -- TEST 'control_stochy_debug_intel' [07:33, 03:35](807 MB) +PASS -- TEST 'control_lndp_debug_intel' [08:32, 03:18](807 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:51, 04:59](1112 MB) +PASS -- TEST 'control_ras_debug_intel' [06:30, 03:22](811 MB) +PASS -- TEST 'control_diag_debug_intel' [06:01, 03:20](1655 MB) +PASS -- TEST 'control_debug_p8_intel' [05:49, 03:13](1904 MB) +PASS -- TEST 'regional_debug_intel' [21:10, 18:12](931 MB) +PASS -- TEST 'rap_control_debug_intel' [08:36, 05:37](1189 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:35, 05:31](1183 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:33, 05:32](1188 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [09:35, 05:46](1190 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:32, 05:44](1189 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:46, 05:51](1270 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:34, 05:50](1187 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:32, 05:43](1189 MB) +PASS -- TEST 'rap_lndp_debug_intel' [09:34, 05:51](1192 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:32, 05:36](1188 MB) +PASS -- TEST 'rap_noah_debug_intel' [09:34, 05:33](1183 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [10:39, 05:41](1187 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:38, 08:59](1183 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [10:35, 05:39](1181 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [10:35, 05:32](1187 MB) +PASS -- TEST 'rap_flake_debug_intel' [09:34, 05:32](1190 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [17:41, 09:34](1191 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:19, 04:27] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [20:11, 14:10](1687 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 08:08] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:21, 04:18](1030 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [13:19, 06:12](876 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [12:38, 03:17](875 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [21:28, 13:45](922 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:06, 07:10](919 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [11:02, 03:24](870 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:30, 04:36](789 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:32, 01:52](759 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:21, 08:07] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [07:13, 02:26](1080 MB) +PASS -- TEST 'conus13km_2threads_intel' [08:04, 01:57](1057 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:56, 01:39](958 MB) PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:23, 08:08] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:55, 04:10](897 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:28] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:34, 05:18](1059 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:36, 05:13](1057 MB) -PASS -- TEST 'conus13km_debug_intel' [21:19, 14:59](1157 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [21:14, 14:58](855 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [29:20, 23:05](1144 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:16, 14:48](1240 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:14] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:35, 05:37](1087 MB) - -PASS -- COMPILE 'hafsw_intel' [11:25, 10:01] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [22:51, 06:16](686 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [22:55, 05:49](1053 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:58, 07:43](730 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:47, 12:40](773 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:03, 14:05](934 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:07, 05:48](461 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:47, 07:19](483 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [19:26, 03:10](377 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [44:14, 08:35](433 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [13:06, 04:09](499 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:07, 03:52](498 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [21:28, 05:17](561 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [16:46, 01:59](406 MB) -PASS -- TEST 'gnv1_nested_intel' [10:26, 05:08](1697 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:20, 04:51] ( 1444 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [30:34, 14:35](666 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:27, 09:44] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [28:34, 08:26](605 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [33:47, 08:14](782 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:28, 09:54] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [36:01, 06:24](783 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:29, 09:17] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [16:46, 07:05](733 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [15:43, 07:11](718 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:33, 16:20](898 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [19:32, 09:18] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:25, 02:42](753 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:27, 01:39](755 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:22, 02:33](644 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:24, 02:35](645 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:22, 02:39](646 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:24, 02:42](766 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:24, 02:52](764 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:25, 02:38](644 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:28, 06:10](690 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:20, 06:09](673 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:23, 02:46](765 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:29, 04:45](2033 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [08:28, 04:38](2033 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [17:33, 09:22] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [07:26, 02:50](765 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [10:24, 00:51] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:40, 01:13](302 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [06:35, 01:19](449 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:32, 00:56](448 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [19:33, 10:06] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:35, 03:53](1913 MB) - -PASS -- COMPILE 'atml_intel' [19:35, 09:32] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:29, 05:06](1879 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:27, 05:17](1883 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [12:04, 03:02](1034 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:27, 05:16] ( 866 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:28, 06:35](1922 MB) - -PASS -- COMPILE 'atmw_intel' [14:28, 08:58] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:21, 02:15](1880 MB) - -PASS -- COMPILE 'atmaero_intel' [15:29, 08:35] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:58, 04:22](3116 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [12:05, 05:05](2996 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:43, 05:09](3009 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [12:26, 04:22] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [28:36, 22:19](4471 MB) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:57, 04:14](902 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:20, 04:32] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:35, 05:29](1065 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:39, 05:31](1064 MB) +PASS -- TEST 'conus13km_debug_intel' [21:15, 15:07](1156 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [19:17, 15:08](836 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [28:19, 23:17](1153 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:14, 15:09](1222 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:22] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:36, 05:34](1087 MB) + +PASS -- COMPILE 'hafsw_intel' [14:27, 10:02] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [25:58, 06:28](689 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [28:01, 06:04](1048 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:00, 07:39](730 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:50, 12:48](770 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:08, 14:11](792 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:12, 05:55](464 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [19:57, 07:20](512 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [20:28, 03:19](376 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [38:13, 08:35](437 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:03, 04:10](498 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [10:06, 03:54](498 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [31:39, 05:07](559 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [15:46, 01:58](403 MB) +PASS -- TEST 'gnv1_nested_intel' [13:32, 05:39](1698 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:23, 04:51] ( 1444 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [41:45, 14:37](678 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [14:27, 09:41] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [36:44, 08:20](711 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [37:52, 08:22](782 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [18:31, 09:56] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [36:08, 06:30](780 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:31, 09:04] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [13:45, 07:17](735 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:43, 07:15](715 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:32, 16:07](898 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [18:31, 09:14] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:25, 02:43](766 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:24, 01:49](755 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:25, 02:35](645 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:25, 02:38](646 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:22, 02:46](642 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:24, 02:49](767 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:22, 02:41](767 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:22, 02:31](642 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:33, 06:05](688 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:25, 06:15](672 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:20, 02:48](765 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:27, 04:45](2031 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:27, 04:38](2031 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [19:33, 09:25] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:23, 02:44](764 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [09:22, 00:51] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:38, 01:18](301 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:32, 01:20](447 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:35, 01:05](450 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:32, 10:04] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:38, 03:57](1917 MB) + +PASS -- COMPILE 'atml_intel' [18:34, 09:26] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:28, 05:16](1879 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:26, 05:24](1879 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:01, 03:06](1025 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:28, 05:28] ( 866 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:27, 06:56](1921 MB) + +PASS -- COMPILE 'atmw_intel' [15:28, 08:50] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:18, 02:12](1873 MB) + +PASS -- COMPILE 'atmaero_intel' [14:30, 08:35] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [10:58, 04:31](3115 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:58, 05:07](2997 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:44, 05:12](3005 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [10:24, 04:27] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [27:39, 22:42](4488 MB) SYNOPSIS: -Starting Date/Time: 20241223 13:31:07 -Ending Date/Time: 20241223 15:39:46 -Total Time: 02h:09m:07s +Starting Date/Time: 20250113 15:58:21 +Ending Date/Time: 20250113 17:57:29 +Total Time: 01h:59m:38s Compiles Completed: 37/37 Tests Completed: 177/177 diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 9f2842ee80..aa705fccf6 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,7 +1,7 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -c4ea32ee15fe4a74e5f5db6f38998068db93a5ab +b5b4558a9da026e48f0ebaca8c082af7b7e7915d Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - e1d7f499b8715e001453f00f14a0a6fc42d6da7d FV3 (remotes/origin/rrfsv1-to-ufs/dev8) + 7d998809dc84996248f93ced49730cfe92eae7cf FV3 (heads/develop) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - fa3f1ce1cbaebd30998ea16a149c2d71a41ccf82 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5537-gfa3f1ce1) + 24643b0e0f9754d76176d60ce155bf8956bfb44d FV3/ccpp/physics (EP4-1092-g24643b0e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -38,287 +38,287 @@ 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: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20241230 -COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_6568 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20250107 +COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_47098 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [23:17, 21:19] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:27, 10:30](3198 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:20, 23:18] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:16, 14:10](1922 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:21, 15:27](1961 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:30, 07:20](1082 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:11, 16:12](1888 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:17, 23:20] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:32, 13:54](1907 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:17, 11:48] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:14, 25:20](1940 MB) - -PASS -- COMPILE 's2swa_intel' [23:18, 21:32] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [18:59, 13:40](3220 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:48, 13:58](3233 MB) -PASS -- TEST 'cpld_restart_p8_intel' [12:53, 08:03](3146 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [18:39, 13:48](3249 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [13:06, 07:46](3175 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [28:41, 24:24](3816 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:37, 13:21](3218 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [15:27, 10:55](3533 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:46, 13:45](3235 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:36, 09:22](3812 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:53, 06:14](3619 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [33:11, 17:06](4536 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [32:19, 10:32](4670 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:05, 08:04](3205 MB) - -PASS -- COMPILE 's2sw_intel' [21:18, 19:50] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [11:29, 07:39](1915 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:41, 11:58](1987 MB) - -PASS -- COMPILE 's2swa_debug_intel' [13:17, 11:40] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [25:06, 20:51](3300 MB) - -PASS -- COMPILE 's2sw_debug_intel' [13:16, 10:59] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:43, 09:19](1954 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [18:16, 16:11] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:54, 05:03](1983 MB) - -PASS -- COMPILE 's2s_intel' [18:18, 16:53] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:11, 05:47](2883 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:13, 02:10](2891 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:35, 01:26](2305 MB) - -PASS -- COMPILE 's2swa_faster_intel' [25:18, 23:44] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [17:26, 13:32](3230 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [23:18, 21:31] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [26:56, 23:21](1928 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:39, 12:11](1098 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [30:58, 27:22](1892 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:14, 11:07] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:51, 27:30](1956 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:14, 14:17] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:38, 03:29](666 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:04, 02:43](1566 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:20, 02:44](1563 MB) -PASS -- TEST 'control_latlon_intel' [05:02, 02:40](1573 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:08, 02:41](1572 MB) -PASS -- TEST 'control_c48_intel' [12:12, 09:18](1586 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:43, 05:18](706 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [12:08, 09:18](1589 MB) -PASS -- TEST 'control_c192_intel' [14:24, 10:00](1692 MB) -PASS -- TEST 'control_c384_intel' [19:21, 11:20](1984 MB) -PASS -- TEST 'control_c384gdas_intel' [17:16, 07:17](1185 MB) -PASS -- TEST 'control_stochy_intel' [03:29, 01:26](624 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:43, 00:52](437 MB) -PASS -- TEST 'control_lndp_intel' [03:34, 01:23](617 MB) -PASS -- TEST 'control_iovr4_intel' [04:41, 02:12](617 MB) -PASS -- TEST 'control_iovr5_intel' [04:42, 02:08](616 MB) -PASS -- TEST 'control_p8_intel' [07:36, 03:51](1853 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:33, 03:07](1849 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:32, 03:35](1857 MB) -PASS -- TEST 'control_restart_p8_intel' [05:32, 02:23](1006 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:28, 03:36](1856 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:24, 02:20](1019 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:21, 03:41](1848 MB) -PASS -- TEST 'control_2threads_p8_intel' [09:24, 06:08](1937 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:08, 06:09](1853 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:41, 04:00](1911 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:26, 03:12](1862 MB) -PASS -- TEST 'merra2_thompson_intel' [06:19, 03:36](1863 MB) -PASS -- TEST 'regional_control_intel' [07:57, 05:00](893 MB) -PASS -- TEST 'regional_restart_intel' [06:08, 03:04](877 MB) -PASS -- TEST 'regional_decomp_intel' [07:53, 05:13](894 MB) -PASS -- TEST 'regional_noquilt_intel' [07:54, 04:52](1215 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:00, 04:57](891 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:05, 04:56](893 MB) -PASS -- TEST 'regional_wofs_intel' [09:00, 05:54](1587 MB) - -PASS -- COMPILE 'rrfs_intel' [15:17, 12:51] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:30, 06:09](1003 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:25, 03:47](1165 MB) -PASS -- TEST 'rap_decomp_intel' [09:30, 06:23](1005 MB) -PASS -- TEST 'rap_2threads_intel' [14:07, 11:29](1089 MB) -PASS -- TEST 'rap_restart_intel' [06:14, 03:16](880 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:32, 06:07](1007 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:32, 06:29](999 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:17, 04:40](885 MB) -PASS -- TEST 'hrrr_control_intel' [06:07, 03:14](999 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:07, 03:23](998 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [09:35, 05:47](1078 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:39, 01:46](832 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:33, 06:03](999 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:50, 08:07](1962 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:49, 07:51](1945 MB) - -PASS -- COMPILE 'csawmg_intel' [13:17, 11:43] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [10:02, 06:34](958 MB) -PASS -- TEST 'control_ras_intel' [05:39, 02:52](659 MB) - -PASS -- COMPILE 'wam_intel' [13:13, 11:34] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:08, 10:15](1653 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:16, 12:01] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:33, 02:56](1860 MB) -PASS -- TEST 'regional_control_faster_intel' [07:55, 04:41](891 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:14, 14:32] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:04, 02:09](1601 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:03, 02:08](1599 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:47, 02:59](803 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:34, 02:36](805 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:10, 04:45](1112 MB) -PASS -- TEST 'control_ras_debug_intel' [05:25, 02:39](814 MB) -PASS -- TEST 'control_diag_debug_intel' [06:41, 02:38](1665 MB) -PASS -- TEST 'control_debug_p8_intel' [06:06, 03:06](1895 MB) -PASS -- TEST 'regional_debug_intel' [18:55, 16:18](922 MB) -PASS -- TEST 'rap_control_debug_intel' [07:29, 04:41](1189 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:44, 04:41](1183 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:46, 04:48](1190 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:39, 04:40](1188 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:40, 04:47](1188 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:37, 05:00](1271 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:35, 04:51](1190 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:32, 04:51](1189 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:40, 04:45](1186 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:30, 04:52](1188 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:39, 04:34](1184 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:33, 04:48](1185 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:31, 07:51](1185 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:38, 04:37](1184 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:40, 04:51](1189 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:37, 04:46](1187 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:16, 08:12](1194 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:15, 07:11] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:13, 12:10](1691 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:14, 11:36] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:46, 03:34](1031 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:59, 05:11](877 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:58, 02:47](878 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:58, 09:36](927 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:59, 04:56](929 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:13, 02:57](872 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:52, 03:55](792 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:35, 01:34](769 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:14, 11:27] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:32, 01:50](1074 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:06, 01:18](1079 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:14, 01:07](963 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:19, 11:40] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:58, 03:38](902 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:21, 07:31] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:39, 04:38](1068 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:27, 04:29](1064 MB) -PASS -- TEST 'conus13km_debug_intel' [17:00, 13:11](1147 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:58, 12:48](831 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [16:40, 13:41](1147 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:33, 12:36](1214 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:21, 07:13] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:30, 04:46](1093 MB) - -PASS -- COMPILE 'hafsw_intel' [19:24, 17:50] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:23, 04:33](704 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:57, 05:23](1065 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:36, 06:28](752 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:04, 10:38](778 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:16, 11:40](796 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:18, 04:38](469 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:32, 05:49](484 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:02, 02:22](392 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:27, 06:15](459 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:07, 03:21](502 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:21, 03:05](503 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:14, 03:48](574 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:33, 01:15](427 MB) -PASS -- TEST 'gnv1_nested_intel' [08:33, 04:05](1702 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:18, 08:37] ( 1467 warnings 1469 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:07, 12:02](618 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [19:18, 17:18] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:24, 06:53](624 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:40, 06:59](681 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [20:21, 18:49] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:42, 05:20](671 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:20, 15:58] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:41, 05:41](733 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:26, 05:48](725 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:22, 16:13](897 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:23, 08:24] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:40, 02:30](769 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:51, 01:32](755 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:35, 02:22](646 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:39, 02:23](644 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:44, 02:21](647 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:37, 02:28](770 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:41, 02:29](757 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:41, 02:20](648 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:46, 05:42](696 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:37, 05:37](679 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:32, 02:28](756 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:41, 03:53](2034 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:39, 03:54](2033 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:12, 05:47] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:47, 05:15](753 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:13, 08:14] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:40, 02:27](769 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:14, 02:41] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:42, 01:15](310 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:38, 01:10](452 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:43, 00:47](450 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:19, 13:39] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:15, 04:05](1904 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:23, 12:44] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:47, 07:59](1910 MB) - -PASS -- COMPILE 'atml_intel' [16:20, 14:40] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:01, 06:56](1879 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:58, 07:07](1879 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:03, 03:55](1034 MB) - -PASS -- COMPILE 'atml_debug_intel' [12:16, 10:34] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:02, 06:11](1930 MB) - -PASS -- COMPILE 'atmw_intel' [15:19, 13:48] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:43, 02:15](1877 MB) - -PASS -- COMPILE 'atmaero_intel' [15:24, 12:58] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:05, 04:17](3130 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:13, 04:22](3001 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:21, 04:26](3014 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [10:18, 08:08] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [28:36, 21:55](4545 MB) - -PASS -- COMPILE 'atm_fbh_intel' [13:19, 11:30] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:38, 08:07](848 MB) +PASS -- COMPILE 's2swa_32bit_intel' [40:26, 21:27] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [28:43, 06:27](3201 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [42:27, 23:35] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [33:57, 14:18](1910 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:41, 15:18](1955 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:19, 07:11](1068 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:47, 16:03](1890 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [42:26, 23:34] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [33:19, 14:03](1911 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [30:23, 11:45] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:10, 23:28](1942 MB) + +PASS -- COMPILE 's2swa_intel' [40:26, 21:33] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [18:59, 08:12](3224 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:45, 08:16](3220 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:36, 04:54](3151 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [29:59, 08:24](3248 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:32, 05:00](3176 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [57:35, 13:46](3804 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:22, 07:55](3214 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [16:19, 06:39](3531 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [30:04, 08:13](3230 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:34, 09:19](3815 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [14:08, 06:17](3617 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [29:50, 10:45](4536 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [26:08, 06:59](4671 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:15, 08:04](3200 MB) + +PASS -- COMPILE 's2sw_intel' [38:26, 19:47] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:36, 04:57](1913 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:49, 06:50](1976 MB) + +PASS -- COMPILE 's2swa_debug_intel' [30:26, 11:36] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [17:57, 12:57](3305 MB) + +PASS -- COMPILE 's2sw_debug_intel' [29:23, 11:05] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:25, 06:03](1950 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [35:21, 16:13] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:51, 05:03](1981 MB) + +PASS -- COMPILE 's2s_intel' [35:25, 16:32] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:06, 05:49](2885 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [06:09, 02:14](2888 MB) +PASS -- TEST 'cpld_restart_c48_intel' [45:21, 01:40](2308 MB) + +PASS -- COMPILE 's2swa_faster_intel' [26:25, 23:38] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:22, 08:05](3232 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:25, 21:39] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:14, 14:02](1926 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:25, 07:22](1098 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:03, 15:58](1906 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:19, 11:04] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:58, 24:52](1965 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [17:14, 14:23] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [14:41, 03:26](668 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [12:54, 02:09](1572 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:28, 02:11](1567 MB) +PASS -- TEST 'control_latlon_intel' [07:03, 02:08](1561 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:08, 02:10](1573 MB) +PASS -- TEST 'control_c48_intel' [26:06, 05:44](1586 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [24:38, 05:21](710 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [25:05, 05:43](1586 MB) +PASS -- TEST 'control_c192_intel' [10:17, 06:08](1689 MB) +PASS -- TEST 'control_c384_intel' [14:00, 06:52](1980 MB) +PASS -- TEST 'control_c384gdas_intel' [16:06, 07:15](1173 MB) +PASS -- TEST 'control_stochy_intel' [03:42, 01:26](624 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:39, 00:52](436 MB) +PASS -- TEST 'control_lndp_intel' [03:36, 01:21](618 MB) +PASS -- TEST 'control_iovr4_intel' [04:45, 02:06](619 MB) +PASS -- TEST 'control_iovr5_intel' [04:48, 02:06](618 MB) +PASS -- TEST 'control_p8_intel' [07:42, 02:57](1857 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:52, 03:03](1853 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:57, 03:13](1857 MB) +PASS -- TEST 'control_restart_p8_intel' [05:24, 02:00](1004 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:39, 03:10](1856 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:23, 02:05](1019 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:32, 03:12](1851 MB) +PASS -- TEST 'control_2threads_p8_intel' [19:18, 04:44](1949 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:13, 04:49](1859 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:38, 03:53](1911 MB) +PASS -- TEST 'control_p8_mynn_intel' [08:17, 03:21](1859 MB) +PASS -- TEST 'merra2_thompson_intel' [07:38, 03:31](1858 MB) +PASS -- TEST 'regional_control_intel' [15:56, 04:55](892 MB) +PASS -- TEST 'regional_restart_intel' [05:51, 02:51](878 MB) +PASS -- TEST 'regional_decomp_intel' [15:56, 05:05](893 MB) +PASS -- TEST 'regional_noquilt_intel' [14:57, 04:52](1216 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [14:51, 04:54](892 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [14:52, 04:59](903 MB) +PASS -- TEST 'regional_wofs_intel' [14:56, 05:52](1591 MB) + +PASS -- COMPILE 'rrfs_intel' [15:21, 12:49] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [18:38, 06:09](1002 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [11:19, 04:08](1161 MB) +PASS -- TEST 'rap_decomp_intel' [17:26, 06:23](1008 MB) +PASS -- TEST 'rap_2threads_intel' [44:34, 11:28](1086 MB) +PASS -- TEST 'rap_restart_intel' [07:29, 03:13](882 MB) +PASS -- TEST 'rap_sfcdiff_intel' [18:31, 06:08](1007 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [18:31, 06:25](1002 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:27, 04:37](880 MB) +PASS -- TEST 'hrrr_control_intel' [16:15, 03:15](998 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [16:15, 03:19](996 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [39:24, 05:45](1078 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:40, 01:47](833 MB) +PASS -- TEST 'rrfs_v1beta_intel' [18:30, 06:01](997 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [18:57, 08:05](1959 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [18:54, 07:47](1943 MB) + +PASS -- COMPILE 'csawmg_intel' [15:22, 11:48] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [09:04, 06:28](962 MB) +PASS -- TEST 'control_ras_intel' [05:34, 02:53](654 MB) + +PASS -- COMPILE 'wam_intel' [13:21, 11:34] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:56, 10:16](1653 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:22, 12:07] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:21, 03:04](1855 MB) +PASS -- TEST 'regional_control_faster_intel' [07:54, 04:37](892 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [57:32, 14:29] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:15, 02:17](1603 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:14, 02:12](1605 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:39, 02:52](807 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:37, 02:34](807 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:19, 04:41](1109 MB) +PASS -- TEST 'control_ras_debug_intel' [05:41, 02:41](812 MB) +PASS -- TEST 'control_diag_debug_intel' [06:26, 02:39](1660 MB) +PASS -- TEST 'control_debug_p8_intel' [06:14, 03:12](1898 MB) +PASS -- TEST 'regional_debug_intel' [19:09, 16:17](937 MB) +PASS -- TEST 'rap_control_debug_intel' [07:47, 04:41](1189 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:46, 04:42](1186 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:46, 04:48](1186 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:45, 04:41](1186 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:47, 04:42](1189 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:09, 04:53](1270 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:34, 04:45](1191 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:29, 04:47](1189 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:31, 04:44](1187 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:34, 04:45](1190 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:25, 04:36](1187 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:34, 04:41](1187 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:27, 07:33](1185 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:27, 04:42](1183 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:27, 04:42](1191 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:33, 04:42](1192 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:09, 08:03](1193 MB) + +PASS -- COMPILE 'wam_debug_intel' [49:30, 07:12] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:09, 12:06](1688 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [51:29, 11:29] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:35, 03:37](1030 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:06, 05:09](876 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:02, 02:46](873 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [12:02, 09:36](925 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:07, 04:56](925 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:02, 02:54](871 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:12, 03:52](794 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:30, 01:32](773 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [45:21, 11:27] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:12, 01:50](1077 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:04, 01:19](1084 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:09, 01:06](963 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [44:26, 11:36] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:52, 03:39](901 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [39:20, 07:33] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:32, 04:43](1066 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:35, 04:30](1062 MB) +PASS -- TEST 'conus13km_debug_intel' [16:43, 12:47](1145 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:44, 13:04](825 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [17:25, 13:41](1147 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:30, 12:46](1215 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [38:20, 07:14] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:33, 04:41](1096 MB) + +PASS -- COMPILE 'hafsw_intel' [48:23, 17:54] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:18, 04:35](699 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:44, 05:07](1065 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:46, 06:27](757 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:28, 10:39](781 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:00, 11:44](801 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:19, 04:41](472 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:45, 05:45](485 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:04, 02:18](397 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:40, 06:12](463 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:03, 03:18](504 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:21, 03:06](507 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:23, 03:48](577 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:32, 01:13](423 MB) +PASS -- TEST 'gnv1_nested_intel' [08:25, 04:04](1703 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [39:21, 08:46] ( 1467 warnings 1469 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:14, 12:07](621 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [46:23, 17:24] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:18, 06:52](622 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:30, 07:03](685 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [21:16, 18:56] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:26, 05:19](667 MB) + +PASS -- COMPILE 'hafs_all_intel' [18:15, 15:56] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:11, 05:43](733 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:13, 05:44](725 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:13, 16:15](894 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:13, 08:31] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:26, 02:29](754 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:29, 01:31](759 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:28, 02:21](651 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:27, 02:23](646 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:28, 02:24](648 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:22, 02:29](756 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:25, 02:30](768 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:30, 02:21](644 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:40, 05:42](695 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:47, 05:38](680 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:21, 02:28](769 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:32, 03:54](1971 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:35, 03:53](2034 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:15, 05:53] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:23, 05:16](752 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:15, 08:18] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:23, 02:28](757 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:12, 02:45] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:36, 01:10](309 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:29, 01:05](450 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:33, 00:43](452 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:23, 14:02] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:36, 03:51](1910 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:14, 12:46] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:17, 05:03](1903 MB) + +PASS -- COMPILE 'atml_intel' [16:15, 14:40] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:49, 06:31](1891 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:49, 07:11](1876 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:02, 03:48](1049 MB) + +PASS -- COMPILE 'atml_debug_intel' [12:19, 10:37] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:39, 06:21](1923 MB) + +PASS -- COMPILE 'atmw_intel' [16:20, 13:52] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:29, 02:14](1882 MB) + +PASS -- COMPILE 'atmaero_intel' [15:14, 13:02] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:42, 04:21](3126 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:38, 04:18](3005 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:09, 04:22](3016 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [10:13, 08:01] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [26:42, 21:45](4539 MB) + +PASS -- COMPILE 'atm_fbh_intel' [13:20, 11:32] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:32, 08:06](846 MB) SYNOPSIS: -Starting Date/Time: 20250104 05:57:46 -Ending Date/Time: 20250104 07:49:45 -Total Time: 01h:53m:02s +Starting Date/Time: 20250108 08:23:44 +Ending Date/Time: 20250108 10:48:59 +Total Time: 02h:26m:21s Compiles Completed: 42/42 Tests Completed: 186/186 diff --git a/tests/logs/RegressionTests_gaeac5.log b/tests/logs/RegressionTests_gaeac5.log index f397089553..8a1dc3cd5a 100644 --- a/tests/logs/RegressionTests_gaeac5.log +++ b/tests/logs/RegressionTests_gaeac5.log @@ -1,7 +1,7 @@ ====START OF GAEAC5 REGRESSION TESTING LOG==== UFSWM hash used in testing: -e7f9b6339a4ffc11272fc5797a59f8c59b1083a7 +b5b4558a9da026e48f0ebaca8c082af7b7e7915d Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - e1d7f499b8715e001453f00f14a0a6fc42d6da7d FV3 (remotes/origin/rrfsv1-to-ufs/dev8) + 7d998809dc84996248f93ced49730cfe92eae7cf FV3 (heads/develop) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - fa3f1ce1cbaebd30998ea16a149c2d71a41ccf82 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5537-gfa3f1ce1) + 24643b0e0f9754d76176d60ce155bf8956bfb44d FV3/ccpp/physics (EP4-1092-g24643b0e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -38,304 +38,304 @@ 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-20241230 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_4189773 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20250107 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_2389049 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [17:13, 15:51] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:45, 15:28](3186 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:18, 19:33] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:09, 15:27](1900 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:33, 18:02](1942 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:49, 09:42](1072 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:41, 19:27](1872 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:16, 24:57] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:15, 16:44](1901 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:13, 15:56] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [31:17, 28:14](1934 MB) - -PASS -- COMPILE 's2swa_intel' [17:13, 15:53] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [22:43, 18:32](3209 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:59, 16:09](3213 MB) -PASS -- TEST 'cpld_restart_p8_intel' [16:44, 12:19](3138 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [22:38, 18:43](3236 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [16:45, 12:19](3160 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [24:02, 20:24](3438 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [19:49, 16:31](3206 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [16:55, 13:24](3153 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:59, 16:37](3210 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [15:07, 10:50](3490 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [14:37, 09:10](3600 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [30:04, 21:35](4273 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:48, 14:28](4363 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [15:55, 12:38](3193 MB) - -PASS -- COMPILE 's2sw_intel' [22:15, 20:43] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [13:24, 09:57](1914 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [18:52, 15:00](1966 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:12, 08:59] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [28:31, 25:07](3270 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:12, 08:25] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [15:21, 12:02](1937 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:17, 14:02] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:22, 07:30](1966 MB) - -PASS -- COMPILE 's2s_intel' [20:14, 18:55] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:11, 05:34](2869 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [07:14, 03:54](2878 MB) -PASS -- TEST 'cpld_restart_c48_intel' [05:52, 03:05](2294 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:14, 16:40] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [21:31, 18:21](3209 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:13, 19:32] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:30, 24:58](1920 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [18:25, 14:57](1100 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [32:13, 28:52](1892 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:13, 09:58] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [40:50, 35:15](1947 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:13, 13:26] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [07:29, 05:51](655 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:22, 03:33](1551 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:50, 05:33](1560 MB) -PASS -- TEST 'control_latlon_intel' [07:41, 05:28](1557 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:58, 04:11](1552 MB) -PASS -- TEST 'control_c48_intel' [15:11, 12:12](1574 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:48, 07:52](694 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [12:56, 10:56](1571 MB) -PASS -- TEST 'control_c192_intel' [16:26, 13:44](1690 MB) -PASS -- TEST 'control_c384_intel' [28:23, 24:28](1967 MB) -PASS -- TEST 'control_c384gdas_intel' [19:13, 15:24](1167 MB) -PASS -- TEST 'control_stochy_intel' [06:34, 04:34](610 MB) -PASS -- TEST 'control_stochy_restart_intel' [05:35, 03:14](418 MB) -PASS -- TEST 'control_lndp_intel' [06:29, 04:22](608 MB) -PASS -- TEST 'control_iovr4_intel' [06:54, 04:37](606 MB) -PASS -- TEST 'control_iovr5_intel' [05:32, 03:23](608 MB) -PASS -- TEST 'control_p8_intel' [09:00, 06:29](1840 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [09:23, 06:15](1841 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [09:03, 06:28](1847 MB) -PASS -- TEST 'control_restart_p8_intel' [07:08, 04:49](1003 MB) -PASS -- TEST 'control_noqr_p8_intel' [09:02, 06:28](1844 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [07:05, 04:48](1011 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:11, 04:10](1845 MB) -PASS -- TEST 'control_2threads_p8_intel' [08:05, 05:09](1919 MB) -PASS -- TEST 'control_p8_lndp_intel' [10:30, 07:30](1854 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:53, 04:54](1898 MB) -PASS -- TEST 'control_p8_mynn_intel' [10:15, 06:01](1854 MB) -PASS -- TEST 'merra2_thompson_intel' [10:51, 06:16](1846 MB) -PASS -- TEST 'regional_control_intel' [09:09, 06:48](869 MB) -PASS -- TEST 'regional_restart_intel' [06:55, 04:42](862 MB) -PASS -- TEST 'regional_decomp_intel' [09:42, 07:01](875 MB) -PASS -- TEST 'regional_2threads_intel' [08:42, 05:49](1002 MB) -PASS -- TEST 'regional_noquilt_intel' [07:35, 04:47](1203 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:24, 04:35](887 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:42, 06:54](880 MB) -PASS -- TEST 'regional_wofs_intel' [10:51, 08:31](1575 MB) - -PASS -- COMPILE 'rrfs_intel' [14:13, 12:59] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:08, 07:37](989 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:13, 06:28](1168 MB) -PASS -- TEST 'rap_decomp_intel' [12:13, 09:41](988 MB) -PASS -- TEST 'rap_2threads_intel' [10:58, 08:42](1065 MB) -PASS -- TEST 'rap_restart_intel' [09:00, 05:54](868 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:13, 07:06](988 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:13, 09:33](988 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:57, 07:23](874 MB) -PASS -- TEST 'hrrr_control_intel' [08:53, 06:19](981 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:55, 04:27](980 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [08:52, 06:11](1059 MB) -PASS -- TEST 'hrrr_control_restart_intel' [06:36, 04:24](817 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:40, 09:43](984 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [14:05, 11:39](1947 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:31, 09:11](1933 MB) - -PASS -- COMPILE 'csawmg_intel' [18:13, 16:20] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [10:47, 08:52](945 MB) -PASS -- TEST 'control_ras_intel' [06:26, 04:32](643 MB) - -PASS -- COMPILE 'wam_intel' [13:14, 11:35] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [18:49, 14:17](1639 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [18:15, 16:29] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [11:10, 05:38](1848 MB) -PASS -- TEST 'regional_control_faster_intel' [10:06, 06:36](877 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [13:15, 12:02] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:10, 03:28](1579 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:15, 05:11](1582 MB) -PASS -- TEST 'control_stochy_debug_intel' [07:34, 05:42](784 MB) -PASS -- TEST 'control_lndp_debug_intel' [07:33, 05:25](785 MB) -PASS -- TEST 'control_csawmg_debug_intel' [09:11, 06:29](1084 MB) -PASS -- TEST 'control_ras_debug_intel' [07:34, 05:02](790 MB) -PASS -- TEST 'control_diag_debug_intel' [08:17, 05:11](1645 MB) -PASS -- TEST 'control_debug_p8_intel' [07:58, 05:32](1877 MB) -PASS -- TEST 'regional_debug_intel' [20:38, 18:36](902 MB) -PASS -- TEST 'rap_control_debug_intel' [09:34, 07:15](1163 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:31, 05:35](1161 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [10:35, 07:52](1160 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [10:26, 08:10](1163 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:29, 05:38](1167 MB) -PASS -- TEST 'rap_diag_debug_intel' [10:36, 08:22](1249 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:27, 07:47](1163 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:34, 07:41](1164 MB) -PASS -- TEST 'rap_lndp_debug_intel' [09:39, 07:32](1165 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [11:37, 07:33](1164 MB) -PASS -- TEST 'rap_noah_debug_intel' [11:38, 07:27](1161 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:12, 05:05](1162 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:11, 10:31](1160 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:56, 05:38](1162 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [11:16, 07:30](1166 MB) -PASS -- TEST 'rap_flake_debug_intel' [10:26, 07:40](1165 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:12, 11:07](1169 MB) - -PASS -- COMPILE 'wam_debug_intel' [14:12, 12:12] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [19:57, 15:59](1674 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:14, 10:40] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:58, 06:16](1038 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:16, 08:20](865 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:12, 05:47](864 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [12:08, 09:23](910 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:02, 06:01](913 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:53, 05:56](856 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:54, 06:39](781 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:23, 02:19](753 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:12, 11:08] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [08:28, 04:29](1072 MB) -PASS -- TEST 'conus13km_2threads_intel' [06:05, 03:30](1054 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:59, 02:00](949 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:12, 10:48] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:03, 06:47](898 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:12, 08:30] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:35, 05:15](1040 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:34, 07:25](1043 MB) -PASS -- TEST 'conus13km_debug_intel' [19:27, 15:58](1126 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [19:26, 16:17](802 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [17:08, 14:10](1109 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:10, 16:17](1198 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:12, 08:03] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:33, 07:33](1064 MB) - -PASS -- COMPILE 'hafsw_intel' [16:13, 14:47] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:20, 05:40](717 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:34, 06:37](1079 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:31, 10:08](745 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:29, 14:01](777 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:52, 13:17](803 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:10, 06:01](469 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:48, 09:30](499 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [07:59, 05:12](397 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:51, 10:25](484 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:21, 06:08](505 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:26, 05:56](508 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:07, 07:04](587 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:38, 04:01](425 MB) -PASS -- TEST 'gnv1_nested_intel' [12:08, 08:37](1689 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:13, 08:24] ( 1467 warnings 1469 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:03, 15:12](611 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [15:13, 14:08] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:10, 10:05](629 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:29, 10:16](811 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:22, 14:46] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:48, 06:41](806 MB) - -PASS -- COMPILE 'hafs_all_intel' [23:18, 21:57] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:19, 08:45](735 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:25, 08:47](716 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [25:15, 22:16](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [18:13, 16:32] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:27, 04:44](764 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:32, 01:43](752 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:21, 04:38](641 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:28, 04:38](648 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:24, 04:33](641 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:28, 04:39](763 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:28, 02:37](764 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:26, 04:31](642 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:14, 08:48](693 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:15, 08:46](676 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:25, 04:43](764 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:55, 06:44](2030 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [08:56, 06:47](2030 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:16, 07:10] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:30, 07:32](735 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [18:14, 16:29] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:25, 02:38](764 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:14, 03:29] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [07:43, 04:17](315 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:45, 03:50](460 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:52, 01:30](462 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [13:12, 11:08] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [05:01, 02:39](452 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [04:46, 02:25](251 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:12, 13:53] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:20, 06:32](1914 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [22:14, 20:53] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [14:21, 11:00](1894 MB) - -PASS -- COMPILE 'atml_intel' [15:17, 13:18] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [13:30, 10:51](1879 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:19, 08:52](1879 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:50, 06:15](1028 MB) - -PASS -- COMPILE 'atml_debug_intel' [12:15, 10:10] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:25, 09:26](1906 MB) - -PASS -- COMPILE 'atmw_intel' [14:16, 13:01] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:30, 02:51](1872 MB) - -PASS -- COMPILE 'atmaero_intel' [14:19, 12:19] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [12:27, 09:26](3098 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [12:28, 09:21](2982 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [12:08, 09:44](2991 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [15:13, 13:45] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [22:03, 18:48](4442 MB) - -PASS -- COMPILE 'atm_fbh_intel' [19:18, 17:15] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [14:20, 11:35](829 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [22:14, 20:17] -PASS -- TEST 'cpld_control_gfsv17_intelllvm' [21:31, 18:08](1900 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [14:17, 13:07] -PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [33:32, 30:28](1922 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [22:18, 21:05] -PASS -- TEST 'cpld_control_sfs_intelllvm' [19:58, 17:17](1901 MB) - -PASS -- COMPILE 's2swa_intelllvm' [18:16, 16:42] -PASS -- TEST 'cpld_control_p8_intelllvm' [21:45, 18:36](3215 MB) +PASS -- COMPILE 's2swa_32bit_intel' [17:13, 15:39] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:23, 11:21](3186 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:14, 24:35] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [25:10, 15:32](1903 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:20, 18:22](1938 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:25, 10:21](1072 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:25, 19:18](1879 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:13, 21:46] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [27:51, 15:14](1896 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:13, 10:32] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [31:16, 28:47](1935 MB) + +PASS -- COMPILE 's2swa_intel' [18:17, 16:38] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [17:19, 12:27](3215 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:44, 12:14](3214 MB) +PASS -- TEST 'cpld_restart_p8_intel' [12:54, 09:17](3139 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:35, 12:26](3233 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [12:41, 09:35](3160 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [17:03, 12:58](3440 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:35, 12:24](3209 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [16:35, 11:36](3158 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:21, 12:37](3215 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [16:37, 11:23](3488 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [14:55, 10:20](3594 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [21:44, 14:44](4278 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:24, 11:02](4362 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [16:35, 12:26](3192 MB) + +PASS -- COMPILE 's2sw_intel' [20:18, 19:00] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [22:07, 05:32](1912 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [23:29, 08:07](1966 MB) + +PASS -- COMPILE 's2swa_debug_intel' [17:13, 16:03] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [20:32, 16:37](3272 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:11, 09:04] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:15, 08:25](1937 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:14, 13:05] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:09, 07:46](1970 MB) + +PASS -- COMPILE 's2s_intel' [17:13, 15:28] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [11:02, 08:04](2870 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [07:01, 04:20](2870 MB) +PASS -- TEST 'cpld_restart_c48_intel' [14:53, 03:08](2291 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:14, 15:52] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [21:50, 12:18](3214 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:16, 22:48] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:21, 16:23](1920 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:18, 09:50](1098 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [29:22, 19:31](1888 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:13, 10:22] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [39:14, 29:45](1942 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:17, 14:45] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [08:41, 05:56](656 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [08:35, 05:12](1552 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:36, 05:16](1554 MB) +PASS -- TEST 'control_latlon_intel' [08:27, 04:37](1553 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:21, 03:14](1557 MB) +PASS -- TEST 'control_c48_intel' [11:22, 08:11](1570 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:45, 07:49](696 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [09:28, 06:13](1573 MB) +PASS -- TEST 'control_c192_intel' [12:24, 09:05](1688 MB) +PASS -- TEST 'control_c384_intel' [20:45, 16:40](1973 MB) +PASS -- TEST 'control_c384gdas_intel' [21:24, 17:08](1175 MB) +PASS -- TEST 'control_stochy_intel' [06:56, 04:23](612 MB) +PASS -- TEST 'control_stochy_restart_intel' [07:39, 03:34](414 MB) +PASS -- TEST 'control_lndp_intel' [06:55, 04:21](607 MB) +PASS -- TEST 'control_iovr4_intel' [08:32, 05:28](609 MB) +PASS -- TEST 'control_iovr5_intel' [07:30, 05:01](608 MB) +PASS -- TEST 'control_p8_intel' [08:10, 05:46](1841 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [13:17, 05:52](1841 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [12:47, 05:53](1844 MB) +PASS -- TEST 'control_restart_p8_intel' [08:00, 04:23](995 MB) +PASS -- TEST 'control_noqr_p8_intel' [10:12, 05:55](1842 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [08:03, 04:46](1009 MB) +PASS -- TEST 'control_decomp_p8_intel' [10:11, 05:58](1846 MB) +PASS -- TEST 'control_2threads_p8_intel' [08:19, 03:48](1922 MB) +PASS -- TEST 'control_p8_lndp_intel' [11:59, 07:44](1847 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [11:14, 06:56](1897 MB) +PASS -- TEST 'control_p8_mynn_intel' [10:06, 06:06](1852 MB) +PASS -- TEST 'merra2_thompson_intel' [10:01, 06:25](1854 MB) +PASS -- TEST 'regional_control_intel' [06:48, 04:46](877 MB) +PASS -- TEST 'regional_restart_intel' [07:38, 04:56](861 MB) +PASS -- TEST 'regional_decomp_intel' [09:38, 07:05](878 MB) +PASS -- TEST 'regional_2threads_intel' [08:37, 05:57](1010 MB) +PASS -- TEST 'regional_noquilt_intel' [09:37, 06:47](1207 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:37, 04:41](878 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:47, 06:47](876 MB) +PASS -- TEST 'regional_wofs_intel' [10:36, 08:38](1570 MB) + +PASS -- COMPILE 'rrfs_intel' [16:16, 14:51] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [13:01, 09:31](990 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:13, 06:38](1168 MB) +PASS -- TEST 'rap_decomp_intel' [11:51, 09:18](989 MB) +PASS -- TEST 'rap_2threads_intel' [11:48, 08:55](1065 MB) +PASS -- TEST 'rap_restart_intel' [14:52, 06:02](875 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:50, 07:33](991 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:51, 07:58](988 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [14:50, 07:24](872 MB) +PASS -- TEST 'hrrr_control_intel' [05:48, 03:50](981 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:47, 06:07](987 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [08:50, 06:29](1060 MB) +PASS -- TEST 'hrrr_control_restart_intel' [11:29, 04:31](821 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:02, 09:12](980 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [14:31, 11:47](1946 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:30, 11:24](1936 MB) + +PASS -- COMPILE 'csawmg_intel' [18:14, 17:04] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [09:38, 07:13](948 MB) +PASS -- TEST 'control_ras_intel' [08:24, 06:03](644 MB) + +PASS -- COMPILE 'wam_intel' [15:13, 13:41] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [18:08, 15:05](1638 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:18, 13:00] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [09:06, 06:19](1841 MB) +PASS -- TEST 'regional_control_faster_intel' [09:37, 07:19](875 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [18:17, 16:33] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [08:42, 06:02](1578 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:45, 05:57](1582 MB) +PASS -- TEST 'control_stochy_debug_intel' [14:26, 05:44](785 MB) +PASS -- TEST 'control_lndp_debug_intel' [12:55, 05:31](782 MB) +PASS -- TEST 'control_csawmg_debug_intel' [13:32, 07:03](1088 MB) +PASS -- TEST 'control_ras_debug_intel' [13:25, 05:29](793 MB) +PASS -- TEST 'control_diag_debug_intel' [10:38, 05:18](1642 MB) +PASS -- TEST 'control_debug_p8_intel' [10:38, 03:37](1878 MB) +PASS -- TEST 'regional_debug_intel' [25:44, 18:45](891 MB) +PASS -- TEST 'rap_control_debug_intel' [13:27, 07:22](1162 MB) +PASS -- TEST 'hrrr_control_debug_intel' [16:29, 07:30](1162 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [13:27, 05:06](1163 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [15:29, 07:39](1159 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [16:24, 07:34](1164 MB) +PASS -- TEST 'rap_diag_debug_intel' [13:34, 05:16](1248 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [15:27, 07:39](1170 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [15:27, 07:41](1167 MB) +PASS -- TEST 'rap_lndp_debug_intel' [15:27, 07:47](1165 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [14:37, 07:40](1164 MB) +PASS -- TEST 'rap_noah_debug_intel' [12:29, 05:33](1161 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [13:29, 07:16](1162 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:24, 08:35](1162 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [11:22, 07:14](1161 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:28, 05:09](1162 MB) +PASS -- TEST 'rap_flake_debug_intel' [10:26, 07:37](1167 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:52, 09:08](1170 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:13, 07:16] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:48, 16:04](1668 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:14, 11:06] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [12:02, 06:22](1038 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:47, 08:36](866 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:44, 04:00](864 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [14:48, 09:36](913 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:41, 05:56](912 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:36, 05:40](863 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [16:40, 07:03](781 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [14:00, 04:14](753 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:16, 16:56] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [08:12, 04:53](1072 MB) +PASS -- TEST 'conus13km_2threads_intel' [13:59, 03:46](1055 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [13:55, 04:12](949 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:13, 12:26] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:51, 06:43](898 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:13, 08:39] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:25, 04:56](1045 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:28, 05:28](1037 MB) +PASS -- TEST 'conus13km_debug_intel' [18:59, 16:24](1128 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [18:58, 16:28](799 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [17:11, 13:43](1108 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:52, 16:17](1193 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:14, 12:37] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:45, 07:37](1068 MB) + +PASS -- COMPILE 'hafsw_intel' [15:16, 14:03] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [10:09, 07:40](714 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:28, 07:04](1078 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:01, 10:12](742 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:25, 12:11](775 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:28, 15:20](801 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:15, 06:02](472 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:08, 09:13](503 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [09:58, 05:16](399 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [20:14, 10:08](488 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [15:56, 06:39](505 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [15:55, 06:38](508 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [14:05, 06:05](585 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [13:38, 04:27](424 MB) +PASS -- TEST 'gnv1_nested_intel' [16:36, 06:50](1697 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:14, 08:56] ( 1467 warnings 1469 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [25:17, 15:26](616 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [22:14, 20:42] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:09, 08:17](631 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:22, 10:21](814 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [18:13, 16:30] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:50, 08:54](805 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:13, 13:44] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [15:50, 09:08](735 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:10, 09:01](715 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [27:11, 22:22](891 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [17:16, 15:11] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [08:25, 04:46](765 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [06:23, 03:45](752 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [08:23, 04:38](643 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [08:21, 04:40](643 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [08:19, 04:40](643 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [07:24, 04:45](765 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [08:41, 04:51](764 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:44, 04:42](652 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:10, 06:51](694 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:51, 08:18](675 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [07:33, 04:50](764 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [09:20, 06:49](2033 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [09:22, 06:53](2032 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:14, 06:22] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:19, 07:38](749 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [17:14, 15:30] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [07:21, 04:48](764 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:15, 02:27] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:39, 02:24](316 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:33, 01:51](461 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:38, 03:22](460 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [04:14, 02:58] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [06:56, 02:43](449 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [04:40, 02:28](254 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [20:13, 18:09] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:04, 06:34](1912 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:12, 11:53] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [10:56, 07:53](1903 MB) + +PASS -- COMPILE 'atml_intel' [14:17, 12:30] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [14:09, 10:52](1878 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [14:10, 10:50](1877 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:49, 06:20](1027 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:16, 08:53] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:58, 10:05](1904 MB) + +PASS -- COMPILE 'atmw_intel' [14:16, 12:28] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:42, 05:13](1878 MB) + +PASS -- COMPILE 'atmaero_intel' [14:12, 12:48] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:58, 07:46](3099 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [12:01, 09:12](2989 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:57, 09:23](2995 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [15:13, 13:30] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [24:20, 20:49](4440 MB) + +PASS -- COMPILE 'atm_fbh_intel' [17:16, 15:36] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [12:28, 09:32](829 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [21:13, 19:34] +PASS -- TEST 'cpld_control_gfsv17_intelllvm' [20:05, 17:16](1900 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [12:12, 10:58] +PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [29:23, 26:00](1934 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [22:16, 20:20] +PASS -- TEST 'cpld_control_sfs_intelllvm' [21:27, 16:49](1891 MB) + +PASS -- COMPILE 's2swa_intelllvm' [17:13, 15:17] +PASS -- TEST 'cpld_control_p8_intelllvm' [17:37, 12:46](3214 MB) SYNOPSIS: -Starting Date/Time: 20250106 07:35:16 -Ending Date/Time: 20250106 09:42:36 -Total Time: 02h:10m:16s +Starting Date/Time: 20250108 10:29:14 +Ending Date/Time: 20250108 12:41:05 +Total Time: 02h:12m:59s Compiles Completed: 47/47 Tests Completed: 193/193 diff --git a/tests/logs/RegressionTests_gaeac6.log b/tests/logs/RegressionTests_gaeac6.log index a807a999b9..243ffa660f 100644 --- a/tests/logs/RegressionTests_gaeac6.log +++ b/tests/logs/RegressionTests_gaeac6.log @@ -1,7 +1,7 @@ ====START OF GAEAC6 REGRESSION TESTING LOG==== UFSWM hash used in testing: -c4ea32ee15fe4a74e5f5db6f38998068db93a5ab +b5b4558a9da026e48f0ebaca8c082af7b7e7915d Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - e1d7f499b8715e001453f00f14a0a6fc42d6da7d FV3 (remotes/origin/rrfsv1-to-ufs/dev8) + 7d998809dc84996248f93ced49730cfe92eae7cf FV3 (heads/develop) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - fa3f1ce1cbaebd30998ea16a149c2d71a41ccf82 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5537-gfa3f1ce1) + 24643b0e0f9754d76176d60ce155bf8956bfb44d FV3/ccpp/physics (EP4-1092-g24643b0e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -38,289 +38,288 @@ 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/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20241230 -COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_380130 +BASELINE DIRECTORY: /gpfs/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20250107 +COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_1674043 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: bil-fire8 -* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [09:13, 08:10] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:59, 07:07](2034 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:14, 12:08] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [13:49, 10:28](1920 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:06, 11:17](1956 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:55, 05:16](1084 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:55, 12:18](1905 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [43:38, 41:39] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [13:08, 11:03](1913 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [27:19, 26:02] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [20:47, 17:46](1955 MB) - -PASS -- COMPILE 's2swa_intel' [23:33, 21:51] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [15:55, 09:20](2067 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:54, 09:15](2063 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:02, 04:57](1626 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:43, 09:10](2079 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:08, 05:15](1458 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [17:36, 10:41](2234 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [15:37, 08:56](2059 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:41, 07:15](2016 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:50, 09:19](2066 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:04, 05:57](2418 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [08:48, 03:59](2668 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [22:53, 11:23](3603 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:49, 06:38](3441 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:20, 05:10](1927 MB) - -PASS -- COMPILE 's2sw_intel' [09:13, 07:35] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:46, 04:50](1933 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:56, 07:59](1855 MB) - -PASS -- COMPILE 's2swa_debug_intel' [34:20, 33:01] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [17:56, 14:23](2087 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:12, 03:48] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:45, 05:59](1969 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [08:13, 07:03] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:53, 03:16](1991 MB) - -PASS -- COMPILE 's2s_intel' [59:26, 57:57] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [07:15, 04:12](2867 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:16, 01:17](2880 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:41, 00:48](2290 MB) - -PASS -- COMPILE 's2swa_faster_intel' [34:38, 33:04] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [13:07, 09:05](2065 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:14, 11:19] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:08, 17:44](1940 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:51, 09:08](1113 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:59, 20:58](1911 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:12, 03:41] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:42, 20:00](1957 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [54:26, 53:15] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:35, 02:44](533 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:10, 02:06](1430 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:15, 02:13](1443 MB) -PASS -- TEST 'control_latlon_intel' [03:58, 02:06](1437 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:47, 02:09](1436 MB) -PASS -- TEST 'control_c48_intel' [10:10, 07:32](1575 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:52, 04:26](694 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [10:22, 07:31](1573 MB) -PASS -- TEST 'control_c192_intel' [10:28, 07:43](1697 MB) -PASS -- TEST 'control_c384_intel' [20:21, 16:35](1957 MB) -PASS -- TEST 'control_c384gdas_intel' [14:11, 10:01](1175 MB) -PASS -- TEST 'control_stochy_intel' [03:44, 01:17](489 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:39, 00:44](291 MB) -PASS -- TEST 'control_lndp_intel' [03:41, 01:10](489 MB) -PASS -- TEST 'control_iovr4_intel' [03:47, 01:48](485 MB) -PASS -- TEST 'control_iovr5_intel' [03:48, 01:47](483 MB) -PASS -- TEST 'control_p8_intel' [05:35, 02:29](1722 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:06, 02:04](1722 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:26, 02:27](1722 MB) -PASS -- TEST 'control_restart_p8_intel' [04:19, 01:28](874 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:16, 02:21](1712 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:15, 01:21](885 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:11, 02:24](1717 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:12, 02:48](1799 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:02, 04:18](1727 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:27, 02:42](1774 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:30, 02:16](1739 MB) -PASS -- TEST 'merra2_thompson_intel' [05:24, 02:17](1731 MB) -PASS -- TEST 'regional_control_intel' [06:02, 03:27](876 MB) -PASS -- TEST 'regional_restart_intel' [03:56, 01:53](860 MB) -PASS -- TEST 'regional_decomp_intel' [06:03, 03:35](879 MB) -PASS -- TEST 'regional_2threads_intel' [05:02, 02:39](1023 MB) -PASS -- TEST 'regional_noquilt_intel' [06:07, 03:17](1205 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:33, 03:21](887 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:01, 03:22](880 MB) -PASS -- TEST 'regional_wofs_intel' [07:02, 04:25](1574 MB) - -PASS -- COMPILE 'rrfs_intel' [08:13, 07:01] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:19, 04:49](869 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:15, 02:51](1161 MB) -PASS -- TEST 'rap_decomp_intel' [09:22, 05:12](869 MB) -PASS -- TEST 'rap_2threads_intel' [08:28, 05:48](952 MB) -PASS -- TEST 'rap_restart_intel' [05:09, 02:33](742 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:30, 04:50](870 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:30, 05:02](867 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:17, 03:36](741 MB) -PASS -- TEST 'hrrr_control_intel' [07:32, 02:38](859 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:32, 02:40](860 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:32, 02:57](940 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:46, 01:23](694 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:25, 04:43](862 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:52, 06:09](1816 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:55, 05:58](1813 MB) - -PASS -- COMPILE 'csawmg_intel' [07:14, 05:44] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [07:57, 04:13](824 MB) -PASS -- TEST 'control_ras_intel' [05:41, 02:11](517 MB) - -PASS -- COMPILE 'wam_intel' [07:12, 05:46] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [10:10, 07:30](1510 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [08:12, 06:26] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:18, 02:07](1726 MB) -PASS -- TEST 'regional_control_faster_intel' [05:57, 03:23](882 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [36:19, 34:38] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:21, 01:35](1456 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:58, 01:32](1458 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:47, 02:10](659 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:38, 01:55](656 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:06, 02:53](963 MB) -PASS -- TEST 'control_ras_debug_intel' [04:47, 01:56](665 MB) -PASS -- TEST 'control_diag_debug_intel' [05:17, 01:52](1514 MB) -PASS -- TEST 'control_debug_p8_intel' [04:08, 01:49](1757 MB) -PASS -- TEST 'regional_debug_intel' [14:13, 11:14](889 MB) -PASS -- TEST 'rap_control_debug_intel' [05:42, 03:20](1038 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:43, 03:20](1031 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:39, 03:23](1041 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:40, 03:24](1040 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:39, 03:26](1037 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:57, 03:33](1124 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:46, 03:24](1042 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:45, 03:23](1042 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:48, 03:25](1039 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:47, 03:22](1042 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:47, 03:16](1036 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:47, 03:22](1042 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:41, 05:25](1039 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:35, 03:24](1036 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:40, 03:26](1043 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:39, 03:21](1035 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:16, 05:41](1044 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:11, 03:04] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [11:06, 08:52](1545 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:12, 05:44] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:46, 02:42](1036 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:08, 04:06](747 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:08, 02:21](743 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:05, 05:36](796 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:08, 02:43](792 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:08, 02:28](744 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:02, 03:02](649 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:39, 01:12](628 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:13, 05:48] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:13, 01:25](953 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:53, 00:45](1084 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:55, 00:52](824 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:12, 05:46] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:12, 02:46](768 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:12, 03:06] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:39, 03:16](921 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:38, 03:13](916 MB) -PASS -- TEST 'conus13km_debug_intel' [11:17, 08:45](1003 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [11:17, 09:04](674 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:04, 08:09](1144 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [11:03, 08:59](1077 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:02] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:36, 03:18](945 MB) - -PASS -- COMPILE 'hafsw_intel' [10:29, 08:42] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [10:51, 03:35](712 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:02, 02:59](1070 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:30, 04:46](779 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:58, 08:10](813 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:43, 08:39](837 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:54, 03:31](472 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:15, 04:27](486 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:56, 01:46](399 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:28, 04:46](455 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:18, 02:34](500 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:26, 02:23](503 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:57, 02:57](585 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:10, 01:10](427 MB) -PASS -- TEST 'gnv1_nested_intel' [09:16, 02:57](1709 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:12, 03:18] ( 1467 warnings 1469 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:39, 08:39](604 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [09:13, 07:25] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [08:59, 05:05](631 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:02, 05:09](801 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [09:13, 07:19] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:23, 04:00](796 MB) - -PASS -- COMPILE 'hafs_all_intel' [09:13, 07:31] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:33, 04:24](772 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:40, 04:22](759 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [15:44, 10:57](890 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:13, 05:12] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:59, 01:41](764 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:39, 01:03](739 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:58, 01:35](643 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:57, 01:38](644 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:40, 01:39](644 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:50, 01:41](763 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:47, 01:42](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:59, 01:36](644 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:50, 04:11](707 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:48, 04:06](688 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:52, 01:41](752 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:40, 02:45](2030 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:57, 02:45](2030 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:12, 02:23] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:37, 03:48](749 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:12, 05:04] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:35, 01:42](762 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:42] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:38, 01:06](324 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:15, 00:51](461 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:16, 00:35](461 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:13, 06:29] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:44, 02:29](1788 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:14, 06:09] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [10:33, 07:19](1782 MB) - -PASS -- COMPILE 'atml_intel' [57:24, 55:22] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:42, 03:56](1897 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:41, 03:57](1895 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:59, 03:07](1039 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:13, 03:46] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:32, 04:11](1921 MB) - -PASS -- COMPILE 'atmw_intel' [08:13, 07:03] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:14, 01:19](1759 MB) - -PASS -- COMPILE 'atmaero_intel' [07:13, 06:00] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:35, 02:46](1947 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:37, 03:15](1600 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:24, 03:19](1617 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:13, 03:05] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [17:34, 13:31](4446 MB) - -PASS -- COMPILE 'atm_fbh_intel' [07:12, 05:49] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [08:15, 06:01](826 MB) +PASS -- COMPILE 's2swa_32bit_intel' [10:11, 08:18] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:01, 05:20](2034 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [59:19, 57:27] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [12:43, 10:38](1929 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [13:51, 11:33](1933 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [07:36, 05:09](1086 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [14:44, 12:17](1900 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:11, 11:48] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [12:50, 10:45](1918 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 04:52] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [19:21, 16:38](1951 MB) + +PASS -- COMPILE 's2swa_intel' [10:11, 08:12] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:11, 06:13](2065 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:56, 06:12](2064 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:30, 03:23](1620 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:06, 07:08](2093 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:30, 03:17](1453 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:12, 07:17](2230 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [07:54, 05:52](2059 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:13, 05:18](2023 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:08, 06:54](2062 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [12:21, 07:34](2418 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:42, 04:16](2668 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [17:51, 07:21](3594 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:43, 05:22](3443 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:52, 06:25](1927 MB) + +PASS -- COMPILE 's2sw_intel' [09:11, 07:50] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:48, 04:18](1938 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:50, 05:36](1848 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:10, 04:25] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:01, 08:38](2089 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:10, 04:21] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:57, 03:54](1967 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [09:11, 07:19] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:46, 04:19](1990 MB) + +PASS -- COMPILE 's2s_intel' [09:11, 07:16] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [06:44, 04:13](2869 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:47, 01:18](2883 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:26, 00:46](2296 MB) + +PASS -- COMPILE 's2swa_faster_intel' [11:11, 09:10] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [08:31, 05:40](2065 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:11, 11:23] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [13:23, 10:42](1944 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:50, 05:12](1112 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [14:48, 12:23](1915 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:36] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [21:50, 18:35](1964 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [08:11, 06:37] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:25, 02:36](532 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:24, 01:46](1432 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:49, 02:25](1443 MB) +PASS -- TEST 'control_latlon_intel' [03:29, 01:48](1434 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:43, 01:49](1435 MB) +PASS -- TEST 'control_c48_intel' [06:37, 04:39](1576 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:22, 04:19](694 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [06:32, 04:52](1569 MB) +PASS -- TEST 'control_c192_intel' [06:58, 04:57](1701 MB) +PASS -- TEST 'control_c384_intel' [13:53, 10:12](1956 MB) +PASS -- TEST 'control_c384gdas_intel' [14:19, 10:21](1178 MB) +PASS -- TEST 'control_stochy_intel' [03:27, 01:21](488 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:51, 00:48](291 MB) +PASS -- TEST 'control_lndp_intel' [03:31, 01:16](485 MB) +PASS -- TEST 'control_iovr4_intel' [03:32, 01:51](484 MB) +PASS -- TEST 'control_iovr5_intel' [03:43, 01:50](484 MB) +PASS -- TEST 'control_p8_intel' [04:47, 02:10](1724 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:10, 02:23](1729 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:32, 02:00](1723 MB) +PASS -- TEST 'control_restart_p8_intel' [03:57, 01:40](857 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:31, 01:56](1715 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:11, 01:11](878 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:28, 01:59](1718 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:10, 02:14](1798 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:05, 03:19](1721 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:57, 02:46](1778 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:02, 02:26](1731 MB) +PASS -- TEST 'merra2_thompson_intel' [05:02, 02:30](1726 MB) +PASS -- TEST 'regional_control_intel' [05:52, 03:34](887 MB) +PASS -- TEST 'regional_restart_intel' [03:51, 02:04](860 MB) +PASS -- TEST 'regional_decomp_intel' [06:01, 03:48](889 MB) +PASS -- TEST 'regional_2threads_intel' [05:02, 03:04](1015 MB) +PASS -- TEST 'regional_noquilt_intel' [05:59, 03:23](1206 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:03, 03:31](874 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:00, 03:23](880 MB) +PASS -- TEST 'regional_wofs_intel' [06:49, 04:25](1572 MB) + +PASS -- COMPILE 'rrfs_intel' [08:11, 06:09] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [06:52, 05:04](865 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:50, 03:09](1161 MB) +PASS -- TEST 'rap_decomp_intel' [07:47, 05:06](867 MB) +PASS -- TEST 'rap_2threads_intel' [07:48, 05:50](941 MB) +PASS -- TEST 'rap_restart_intel' [04:39, 02:45](745 MB) +PASS -- TEST 'rap_sfcdiff_intel' [06:52, 04:51](869 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [06:54, 05:06](866 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:06, 03:36](741 MB) +PASS -- TEST 'hrrr_control_intel' [05:03, 02:38](864 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:07, 02:45](859 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:10, 03:01](933 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:32, 01:25](693 MB) +PASS -- TEST 'rrfs_v1beta_intel' [06:53, 04:47](860 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:29, 06:11](1821 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:37, 05:58](1813 MB) + +PASS -- COMPILE 'csawmg_intel' [07:11, 05:51] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [06:30, 04:12](821 MB) +PASS -- TEST 'control_ras_intel' [04:23, 02:12](517 MB) + +PASS -- COMPILE 'wam_intel' [07:11, 05:42] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [09:40, 07:45](1513 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [07:11, 05:58] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:09, 02:18](1722 MB) +PASS -- TEST 'regional_control_faster_intel' [05:49, 03:22](877 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [41:14, 40:08] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:00, 01:41](1458 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:02, 01:37](1462 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:31, 02:17](662 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:28, 02:03](661 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:56, 02:58](963 MB) +PASS -- TEST 'control_ras_debug_intel' [04:27, 02:07](668 MB) +PASS -- TEST 'control_diag_debug_intel' [05:59, 01:54](1517 MB) +PASS -- TEST 'control_debug_p8_intel' [05:56, 01:53](1747 MB) +PASS -- TEST 'regional_debug_intel' [14:56, 11:02](872 MB) +PASS -- TEST 'rap_control_debug_intel' [06:35, 03:21](1042 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:42, 03:27](1037 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:40, 03:36](1040 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:44, 03:36](1037 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:44, 03:38](1041 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:48, 03:34](1125 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:41, 03:28](1039 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:28, 03:30](1038 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:45, 03:22](1038 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:44, 03:27](1040 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:34, 03:25](1038 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:35, 03:37](1040 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:34, 05:25](1041 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:31, 03:19](1039 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:43, 03:34](1045 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:42, 03:37](1043 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:40, 05:43](1045 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:11, 03:05] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [11:08, 08:48](1541 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:12, 05:43] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:18, 03:18](1034 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:05, 04:23](747 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:45, 02:28](742 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:37, 05:21](791 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:33, 02:42](790 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:45, 02:34](739 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:46, 03:01](649 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:25, 01:15](633 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:11, 05:43] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:06, 01:26](952 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:35, 01:06](1084 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:46, 01:27](824 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:11, 05:48] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:02, 02:54](770 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 03:09] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:25, 03:20](919 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:23, 03:23](918 MB) +PASS -- TEST 'conus13km_debug_intel' [12:07, 09:10](1005 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [12:10, 09:17](675 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:14, 08:10](1135 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [11:05, 09:02](1072 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:05] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:33, 03:34](945 MB) + +PASS -- COMPILE 'hafsw_intel' [09:11, 07:27] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:25, 03:42](714 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:46, 03:08](1071 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:10, 04:49](778 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:54, 08:11](816 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [11:31, 08:31](834 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:51, 03:40](479 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:55, 04:34](486 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:37, 02:25](401 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:41, 04:41](456 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:55, 02:35](502 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:58, 02:24](502 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:56, 03:03](584 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:25, 01:01](427 MB) +PASS -- TEST 'gnv1_nested_intel' [05:51, 03:03](1709 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:11, 03:14] ( 1467 warnings 1469 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [11:03, 08:19](596 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [09:11, 07:19] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [08:04, 05:10](634 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [08:20, 05:18](799 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [09:12, 07:20] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [06:29, 03:54](792 MB) + +PASS -- COMPILE 'hafs_all_intel' [08:12, 07:06] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:03, 04:20](767 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:02, 04:28](750 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [12:56, 11:01](891 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:11, 05:01] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:23, 01:52](763 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:17, 01:02](752 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:15, 01:48](641 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 01:42](642 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:17, 01:39](650 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 01:41](751 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 01:42](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:18, 01:41](640 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:57, 04:11](706 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:53, 04:09](686 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 01:45](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:18, 02:44](2034 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:17, 02:46](2030 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:26] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:15, 03:46](745 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:11, 04:39] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:15, 01:42](764 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:39] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:24, 01:01](324 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:21, 00:51](461 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:52, 00:36](461 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:11, 06:30] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:38, 03:24](1786 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:11, 06:06] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:33, 03:18](1787 MB) + +PASS -- COMPILE 'atml_intel' [08:11, 06:36] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:35, 03:57](1893 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:38, 04:41](1892 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:25, 03:17](1042 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:12, 03:37] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:44, 04:35](1924 MB) + +PASS -- COMPILE 'atmw_intel' [08:14, 06:57] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:35, 01:25](1756 MB) + +PASS -- COMPILE 'atmaero_intel' [07:11, 06:03] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:34, 03:07](1939 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:32, 03:29](1596 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:25, 03:40](1608 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:02] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [16:03, 13:42](4443 MB) + +PASS -- COMPILE 'atm_fbh_intel' [07:12, 05:45] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [07:30, 06:02](831 MB) SYNOPSIS: -Starting Date/Time: 20250103 15:47:51 -Ending Date/Time: 20250103 17:59:54 -Total Time: 02h:14m:42s +Starting Date/Time: 20250108 10:30:02 +Ending Date/Time: 20250108 12:57:42 +Total Time: 02h:28m:21s Compiles Completed: 42/42 Tests Completed: 187/187 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index a21b65756e..49424bdd57 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -c4ea32ee15fe4a74e5f5db6f38998068db93a5ab +b5b4558a9da026e48f0ebaca8c082af7b7e7915d Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - e1d7f499b8715e001453f00f14a0a6fc42d6da7d FV3 (remotes/origin/rrfsv1-to-ufs/dev8) + 7d998809dc84996248f93ced49730cfe92eae7cf 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) @@ -26,391 +26,446 @@ 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-20241230 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3015246 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20250107 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_1533959 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:12, 13:05] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:10, 11:38](3316 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:13, 16:41] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:15, 19:53](1967 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:30, 20:59](2174 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:31, 08:21](1266 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:28, 23:47](1875 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:14, 16:11] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [22:52, 19:23](1973 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:13, 06:30] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [32:05, 27:26](1905 MB) - -PASS -- COMPILE 's2swa_intel' [15:12, 13:29] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [18:29, 15:46](3319 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:27, 14:08](3349 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:40, 07:24](3254 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [17:24, 14:10](3365 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [12:28, 09:24](3248 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [18:17, 15:22](3570 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [16:17, 14:02](3338 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:24, 11:37](3219 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:27, 14:02](3359 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:21, 10:41](3521 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:06, 06:32](3615 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [27:15, 16:21](4314 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [36:11, 09:34](4385 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:16, 07:21](3312 MB) - -PASS -- COMPILE 's2sw_intel' [14:13, 12:15] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [12:04, 09:10](1981 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:09, 10:57](2054 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:13, 06:20] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [27:12, 22:51](3407 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:13, 06:07] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:51, 09:46](2010 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:13, 11:34] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:08, 04:26](2043 MB) - -PASS -- COMPILE 's2s_intel' [13:13, 11:30] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:44, 07:55](3027 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:50, 02:25](3027 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:48, 01:29](2492 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:13, 17:00] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:41, 13:39](3350 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:13, 15:14] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [31:08, 28:11](2022 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [21:12, 14:07](1272 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [38:08, 33:35](1925 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:12, 05:44] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:12, 29:45](1952 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:13, 10:42] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:27, 03:22](712 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:46, 03:14](1596 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:51, 03:21](1595 MB) -PASS -- TEST 'control_latlon_intel' [05:40, 03:16](1587 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:52, 03:16](1594 MB) -PASS -- TEST 'control_c48_intel' [13:52, 11:33](1721 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:35, 06:37](842 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [13:50, 11:39](1726 MB) -PASS -- TEST 'control_c192_intel' [14:06, 12:07](1744 MB) -PASS -- TEST 'control_c384_intel' [17:12, 13:53](1976 MB) -PASS -- TEST 'control_c384gdas_intel' [14:29, 08:22](1381 MB) -PASS -- TEST 'control_stochy_intel' [03:26, 01:39](655 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:30, 00:58](501 MB) -PASS -- TEST 'control_lndp_intel' [03:23, 01:33](660 MB) -PASS -- TEST 'control_iovr4_intel' [04:24, 02:29](648 MB) -PASS -- TEST 'control_iovr5_intel' [04:24, 02:30](656 MB) -PASS -- TEST 'control_p8_intel' [05:56, 03:41](1883 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:59, 03:20](1889 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:53, 03:38](1887 MB) -PASS -- TEST 'control_restart_p8_intel' [03:52, 02:04](1128 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:00, 03:41](1874 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:08, 02:02](1166 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:54, 03:47](1865 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:54, 04:14](1948 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:44, 06:38](1871 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:54, 04:14](1932 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:04, 03:08](1893 MB) -PASS -- TEST 'merra2_thompson_intel' [05:56, 03:27](1892 MB) -PASS -- TEST 'regional_control_intel' [07:36, 05:27](1123 MB) -PASS -- TEST 'regional_restart_intel' [05:42, 02:57](1099 MB) -PASS -- TEST 'regional_decomp_intel' [07:35, 05:44](1108 MB) -PASS -- TEST 'regional_2threads_intel' [05:40, 04:02](1071 MB) -PASS -- TEST 'regional_noquilt_intel' [07:39, 05:33](1427 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:42, 05:29](1121 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:39, 05:30](1125 MB) -PASS -- TEST 'regional_wofs_intel' [08:42, 07:07](1895 MB) - -PASS -- COMPILE 'rrfs_intel' [12:13, 10:11] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:45, 07:52](1108 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:09, 04:16](1262 MB) -PASS -- TEST 'rap_decomp_intel' [10:47, 08:13](1040 MB) -PASS -- TEST 'rap_2threads_intel' [10:40, 08:47](1104 MB) -PASS -- TEST 'rap_restart_intel' [16:47, 04:14](1102 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:43, 07:47](1105 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:38, 08:13](1036 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [17:03, 06:00](1135 MB) -PASS -- TEST 'hrrr_control_intel' [05:40, 04:03](1034 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:39, 04:08](1028 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:46, 04:24](1085 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:27, 02:10](997 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:55, 07:50](1093 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:30, 09:45](1981 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:29, 09:13](2055 MB) - -PASS -- COMPILE 'csawmg_intel' [11:12, 09:57] -PASS -- TEST 'control_csawmg_intel' [08:41, 06:10](1017 MB) -PASS -- TEST 'control_ras_intel' [05:26, 03:21](753 MB) - -PASS -- COMPILE 'wam_intel' [11:13, 09:58] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:55, 11:18](1662 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:12, 10:27] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:56, 02:47](1885 MB) -PASS -- TEST 'regional_control_faster_intel' [07:39, 04:55](1119 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:12, 13:00] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:21, 07:47](3278 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:12, 16:11] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:07, 19:58](1966 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:19, 20:41](2132 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:11, 08:12](1257 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:05, 23:26](1867 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:12, 15:31] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:50, 19:16](1937 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:12, 06:04] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:06, 25:13](1879 MB) + +PASS -- COMPILE 's2swa_intel' [14:14, 13:00] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:21, 09:31](3319 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:24, 08:48](3323 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:14, 04:42](3217 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:15, 09:10](3326 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:21, 04:56](3231 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:11, 09:02](3524 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:12, 09:15](3306 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:19, 07:28](3192 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:21, 08:48](3325 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:20, 10:22](3491 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:52, 06:23](3589 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:12, 10:37](4269 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:40, 06:32](4347 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:14, 07:53](3292 MB) + +PASS -- COMPILE 's2sw_intel' [14:12, 12:21] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:20, 06:38](1953 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:23, 06:56](2027 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:12, 05:55] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:22, 13:32](3329 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:12, 05:43] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:04, 06:36](1952 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:12, 11:17] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:00, 04:54](2021 MB) + +PASS -- COMPILE 's2s_intel' [13:13, 11:31] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:45, 07:52](3002 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:41, 02:23](3007 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:37, 01:26](2451 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:12, 17:10] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [11:18, 08:36](3311 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:12, 16:09] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:07, 17:46](2000 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:23, 08:21](1248 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:09, 20:32](1902 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:12, 05:50] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:23, 26:51](1936 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:12, 11:06] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:22, 03:25](677 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:38, 02:34](1580 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:49, 02:36](1586 MB) +PASS -- TEST 'control_latlon_intel' [04:41, 02:31](1573 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:47, 02:35](1574 MB) +PASS -- TEST 'control_c48_intel' [09:48, 07:09](1703 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:28, 06:33](828 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [09:48, 07:09](1706 MB) +PASS -- TEST 'control_c192_intel' [10:02, 07:30](1743 MB) +PASS -- TEST 'control_c384_intel' [12:00, 08:11](1965 MB) +PASS -- TEST 'control_c384gdas_intel' [12:54, 08:07](1347 MB) +PASS -- TEST 'control_stochy_intel' [03:23, 01:44](635 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:27, 00:58](476 MB) +PASS -- TEST 'control_lndp_intel' [03:22, 01:33](639 MB) +PASS -- TEST 'control_iovr4_intel' [04:25, 02:28](637 MB) +PASS -- TEST 'control_iovr5_intel' [04:23, 02:29](634 MB) +PASS -- TEST 'control_p8_intel' [04:57, 03:02](1865 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:56, 03:09](1873 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:49, 02:53](1870 MB) +PASS -- TEST 'control_restart_p8_intel' [03:45, 02:02](1108 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:48, 02:55](1870 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:48, 01:42](1136 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:50, 03:20](1852 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:48, 03:13](1922 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:41, 05:32](1863 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:51, 04:34](1926 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:56, 03:07](1875 MB) +PASS -- TEST 'merra2_thompson_intel' [05:50, 03:23](1872 MB) +PASS -- TEST 'regional_control_intel' [07:36, 05:31](1103 MB) +PASS -- TEST 'regional_restart_intel' [04:36, 02:57](1086 MB) +PASS -- TEST 'regional_decomp_intel' [07:35, 05:42](1107 MB) +PASS -- TEST 'regional_2threads_intel' [05:36, 04:05](1043 MB) +PASS -- TEST 'regional_noquilt_intel' [07:38, 05:22](1406 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:40, 05:23](1101 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:41, 05:22](1100 MB) +PASS -- TEST 'regional_wofs_intel' [08:34, 07:08](1884 MB) + +PASS -- COMPILE 'rrfs_intel' [12:12, 10:30] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:41, 07:52](1086 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:10, 04:10](1253 MB) +PASS -- TEST 'rap_decomp_intel' [10:43, 08:30](1018 MB) +PASS -- TEST 'rap_2threads_intel' [10:38, 08:51](1080 MB) +PASS -- TEST 'rap_restart_intel' [05:44, 04:04](1081 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:44, 07:50](1086 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:39, 08:13](1021 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:44, 05:54](1121 MB) +PASS -- TEST 'hrrr_control_intel' [06:41, 04:15](1012 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:38, 04:08](1005 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:38, 04:21](1063 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:29, 02:12](978 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:45, 07:44](1080 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:31, 09:39](1961 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:30, 09:21](2048 MB) + +PASS -- COMPILE 'csawmg_intel' [11:12, 10:06] +PASS -- TEST 'control_csawmg_intel' [08:40, 06:11](1000 MB) +PASS -- TEST 'control_ras_intel' [05:24, 03:19](721 MB) + +PASS -- COMPILE 'wam_intel' [11:12, 10:01] ( 1 remarks ) +FAILED: TEST TIMED OUT -- TEST 'control_wam_intel' [, ]( MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:13, 10:14] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:51, 02:48](1867 MB) +PASS -- TEST 'regional_control_faster_intel' [06:39, 04:54](1089 MB) PASS -- COMPILE 'atm_debug_dyn32_intel' [09:12, 07:29] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:50, 02:17](1613 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:52, 02:12](1612 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:24, 03:09](830 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:25, 02:52](829 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:43, 04:35](1135 MB) -PASS -- TEST 'control_ras_debug_intel' [04:27, 02:57](837 MB) -PASS -- TEST 'control_diag_debug_intel' [04:55, 02:52](1680 MB) -PASS -- TEST 'control_debug_p8_intel' [04:50, 02:41](1893 MB) -PASS -- TEST 'regional_debug_intel' [20:47, 18:05](1103 MB) -PASS -- TEST 'rap_control_debug_intel' [07:26, 05:08](1212 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:26, 05:03](1205 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:25, 05:06](1215 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:25, 05:01](1217 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 05:02](1213 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:39, 05:31](1296 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:23, 05:13](1214 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:22, 05:15](1212 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:24, 05:08](1213 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 05:06](1204 MB) -PASS -- TEST 'rap_noah_debug_intel' [16:23, 05:02](1207 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [18:24, 05:20](1212 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [21:23, 08:31](1208 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [17:23, 05:07](1213 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [16:28, 05:28](1216 MB) -PASS -- TEST 'rap_flake_debug_intel' [15:28, 05:10](1215 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [19:40, 09:15](1218 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:13, 04:21] -PASS -- TEST 'control_csawmg_debug_gnu' [04:44, 02:25](717 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:13, 04:40] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:58, 13:32](1684 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:15, 10:24] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [15:10, 04:03](1138 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [16:44, 06:38](1050 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [13:40, 03:35](987 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [17:38, 07:39](996 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:41, 03:52](968 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [13:42, 03:41](935 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:59, 04:56](1035 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:32, 01:55](920 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:12, 10:24] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [11:59, 02:00](1194 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:43, 01:04](1161 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:44, 01:18](1092 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:13, 10:25] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [14:46, 04:13](982 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:12, 04:56] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [15:25, 05:13](1091 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [14:26, 04:55](1091 MB) -PASS -- TEST 'conus13km_debug_intel' [22:56, 14:19](1238 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [22:56, 14:38](937 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [20:50, 12:42](1163 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [22:53, 14:42](1293 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:12, 04:35] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [13:27, 05:05](1135 MB) - -PASS -- COMPILE 'hafsw_intel' [13:13, 11:57] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [12:28, 05:11](715 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [12:32, 06:11](1110 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:31, 07:12](818 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:00, 14:47](846 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [26:45, 18:58](860 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:18, 05:38](495 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:41, 06:52](506 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:49, 02:49](370 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:53, 07:27](467 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:52, 03:53](520 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:56, 03:43](520 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:01, 04:13](579 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:32, 01:17](398 MB) -PASS -- TEST 'gnv1_nested_intel' [08:46, 04:04](1727 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:12, 05:25] ( 1462 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:06, 14:10](580 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:13, 11:17] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:36, 10:15](664 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:44, 10:23](728 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:14, 12:09] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:47, 08:13](720 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:12, 10:53] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:31, 06:53](819 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:24, 06:41](793 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:57, 17:15](1212 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:13, 07:09] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 02:48](1173 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:23, 01:44](1122 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:22, 02:41](1035 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:21, 02:44](1026 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:44](1021 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:22, 02:46](1158 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:21, 02:47](1147 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:20, 02:42](1036 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:18, 06:59](1078 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:43, 07:00](1051 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:18, 02:48](1154 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:24, 04:03](2517 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:33, 04:38](2456 MB) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:50, 02:23](1576 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:52, 02:22](1588 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:27, 03:09](793 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:25, 02:48](797 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:42, 04:24](1102 MB) +PASS -- TEST 'control_ras_debug_intel' [04:25, 02:51](800 MB) +PASS -- TEST 'control_diag_debug_intel' [04:55, 02:53](1649 MB) +PASS -- TEST 'control_debug_p8_intel' [04:48, 02:49](1875 MB) +PASS -- TEST 'regional_debug_intel' [19:47, 17:56](1056 MB) +PASS -- TEST 'rap_control_debug_intel' [07:26, 05:22](1173 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:28, 04:59](1174 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:28, 05:27](1173 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:28, 05:28](1177 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:23, 05:02](1169 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:46, 05:19](1259 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:25, 05:09](1178 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:26, 05:10](1173 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:24, 05:22](1176 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:26, 05:02](1172 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:23, 04:59](1173 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:23, 05:05](1177 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:23, 08:24](1174 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 05:01](1175 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:25, 05:05](1174 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:25, 05:12](1174 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:47, 08:54](1180 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:12, 04:14] +PASS -- TEST 'control_csawmg_debug_gnu' [04:48, 02:27](699 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 04:43] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:52, 13:33](1643 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:00] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:03, 03:55](1125 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:41, 06:33](1039 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:40, 03:26](964 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:36, 07:28](983 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:32, 03:55](950 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:35, 03:39](909 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:45, 04:57](1010 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:29, 01:53](905 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 10:04] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:04, 02:03](1171 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:44, 01:00](1138 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:46, 01:21](1076 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 09:57] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:45, 04:20](963 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:37] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:31, 05:19](1047 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:29, 05:15](1047 MB) +PASS -- TEST 'conus13km_debug_intel' [16:48, 14:15](1178 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:45, 14:24](881 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [14:43, 12:41](1149 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:43, 14:17](1234 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:12, 04:31] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:24, 05:24](1096 MB) + +PASS -- COMPILE 'hafsw_intel' [13:12, 12:01] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:20, 05:01](693 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:32, 05:39](1090 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:21, 06:59](790 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:17, 14:50](824 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:29, 18:34](851 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:57, 05:35](476 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:21, 06:49](484 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:55, 02:51](350 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:35, 07:32](460 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:45, 03:42](498 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:50, 03:34](497 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:59, 04:06](548 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:31, 01:11](376 MB) +PASS -- TEST 'gnv1_nested_intel' [07:04, 04:05](1701 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:11, 05:03] ( 1462 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:55, 13:07](538 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:24] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:02, 10:12](607 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:10, 10:19](706 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 11:42] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:34, 08:12](691 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:12, 10:45] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:20, 06:31](789 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:18, 06:34](773 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:00, 16:35](1211 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:12, 06:57] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:25, 03:06](1126 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:24, 02:11](1079 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:25, 02:43](1023 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:22, 02:46](1018 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:20, 02:54](1012 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:19, 02:48](1141 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:20, 02:46](1153 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:19, 02:42](1014 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:32, 06:19](1065 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:30, 06:24](1043 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:47](1150 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:22, 03:57](2494 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:21, 03:56](2516 MB) PASS -- COMPILE 'datm_cdeps_debug_intel' [05:12, 03:17] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:21, 06:26](1091 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:12, 06:26] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 02:43](1165 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:12, 01:25] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:31, 00:45](263 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:55](323 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:33](321 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:12, 01:28] -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:34, 00:36](562 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:39, 00:18](459 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:14, 10:50] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:30, 03:49](1981 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 10:56] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:04, 08:46](1982 MB) - -PASS -- COMPILE 'atml_intel' [12:13, 11:05] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:17, 05:30](1856 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:17, 05:34](1868 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:50, 02:23](1084 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:12, 05:51] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:07, 06:17](1891 MB) - -PASS -- COMPILE 'atmw_intel' [12:13, 11:03] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:12, 01:57](1918 MB) - -PASS -- COMPILE 'atmaero_intel' [12:16, 10:50] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:16, 04:31](3195 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:10, 05:04](3090 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:53, 05:15](3110 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:12, 04:37] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_fbh_intel' [11:12, 09:47] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:31, 11:54](1116 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:12, 06:43] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:42, 08:39](1055 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:12, 06:48] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [07:45, 05:15](987 MB) - -PASS -- COMPILE 'atm_gnu' [06:13, 04:29] -PASS -- TEST 'control_c48_gnu' [11:42, 09:36](1510 MB) -PASS -- TEST 'control_stochy_gnu' [05:24, 03:41](457 MB) -PASS -- TEST 'control_ras_gnu' [07:27, 05:17](504 MB) -PASS -- TEST 'control_p8_gnu' [09:03, 06:03](1458 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [08:09, 05:46](1463 MB) -PASS -- TEST 'control_flake_gnu' [12:32, 10:51](538 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:11, 04:13] -PASS -- TEST 'rap_control_gnu' [13:45, 11:49](808 MB) -PASS -- TEST 'rap_decomp_gnu' [14:02, 11:41](806 MB) -PASS -- TEST 'rap_2threads_gnu' [20:05, 17:21](910 MB) -PASS -- TEST 'rap_restart_gnu' [08:43, 06:01](574 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [13:50, 11:29](804 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:40, 11:44](804 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:43, 08:37](580 MB) -PASS -- TEST 'hrrr_control_gnu' [07:46, 05:52](800 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:37, 05:54](792 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [10:38, 08:36](901 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:36, 05:56](836 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:29, 03:04](559 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:30, 03:00](650 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [13:48, 11:14](829 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:13, 03:53] -PASS -- TEST 'control_csawmg_gnu' [10:45, 08:39](737 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:12, 06:32] -PASS -- TEST 'control_diag_debug_gnu' [03:48, 01:41](1269 MB) -PASS -- TEST 'regional_debug_gnu' [12:41, 10:09](742 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:24, 02:38](821 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:24, 02:36](814 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:24, 02:40](822 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [05:24, 02:41](825 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:41, 02:53](906 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:24, 04:05](818 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:24, 02:37](818 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:24, 02:38](819 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:23, 01:38](455 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:23, 01:46](451 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:39, 01:38](1441 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:23, 02:44](819 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:22, 02:44](821 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:41, 04:24](823 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:24] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:13, 04:06] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:39, 09:44](698 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:37, 05:05](694 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [17:48, 15:31](736 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [09:44, 07:56](729 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:33, 05:15](692 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:44, 07:20](549 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:28, 02:37](535 MB) -PASS -- TEST 'conus13km_control_gnu' [05:57, 03:18](864 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:47, 01:35](877 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [04:47, 02:01](546 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [13:12, 09:33] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:42, 05:58](726 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [18:13, 06:56] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:25, 02:35](713 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:23, 02:35](708 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:51, 07:04](883 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:47, 07:03](568 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [07:45, 05:52](889 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:46, 07:15](949 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [18:12, 06:50] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:22, 02:39](728 MB) - -PASS -- COMPILE 's2swa_gnu' [27:14, 16:30] - -PASS -- COMPILE 's2s_gnu' [27:13, 16:33] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [24:16, 21:21](1505 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [14:12, 03:19] - -PASS -- COMPILE 's2sw_pdlib_gnu' [26:14, 16:19] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [35:26, 31:39](1459 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [12:13, 02:52] - -PASS -- COMPILE 'datm_cdeps_gnu' [24:13, 15:31] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:20, 03:02](696 MB) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:20, 06:43](1071 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:12, 06:51] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 02:44](1151 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:12, 01:05] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:30, 00:45](253 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:48](318 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:31](315 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:12, 01:19] +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:31, 00:37](538 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:35, 00:20](453 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:12, 10:55] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:03, 03:49](1954 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:13, 10:38] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:55, 04:51](1959 MB) + +PASS -- COMPILE 'atml_intel' [12:13, 11:02] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:00, 04:24](1834 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:59, 04:22](1839 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:49, 02:36](1075 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:12, 05:49] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:55, 05:50](1847 MB) + +PASS -- COMPILE 'atmw_intel' [12:14, 10:50] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:50, 01:57](1902 MB) + +PASS -- COMPILE 'atmaero_intel' [12:12, 10:33] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:06, 04:31](3170 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:06, 04:57](3066 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:46, 05:01](3072 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:13, 04:37] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_fbh_intel' [11:12, 10:02] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:31, 11:47](1095 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:12, 06:45] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:42, 08:30](1042 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:13, 06:39] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:45, 04:55](967 MB) + +PASS -- COMPILE 'atm_gnu' [06:11, 04:34] +PASS -- TEST 'control_c48_gnu' [11:44, 09:32](1497 MB) +PASS -- TEST 'control_stochy_gnu' [05:24, 03:28](481 MB) +PASS -- TEST 'control_ras_gnu' [06:24, 04:57](488 MB) +PASS -- TEST 'control_p8_gnu' [06:54, 04:28](1419 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:52, 04:26](1431 MB) +PASS -- TEST 'control_flake_gnu' [12:26, 10:41](522 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:11, 04:12] +PASS -- TEST 'rap_control_gnu' [13:41, 11:32](796 MB) +PASS -- TEST 'rap_decomp_gnu' [13:36, 11:39](798 MB) +PASS -- TEST 'rap_2threads_gnu' [19:38, 17:24](898 MB) +PASS -- TEST 'rap_restart_gnu' [07:53, 05:48](560 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:43, 11:24](795 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:37, 11:44](796 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:39, 08:29](572 MB) +PASS -- TEST 'hrrr_control_gnu' [07:41, 05:52](794 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:39, 05:51](783 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [10:35, 08:38](891 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:33, 05:55](793 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:28, 03:01](548 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:29, 02:58](637 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [13:43, 11:16](792 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 03:54] +PASS -- TEST 'control_csawmg_gnu' [10:39, 08:29](727 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:12, 06:36] +PASS -- TEST 'control_diag_debug_gnu' [03:46, 01:38](1247 MB) +PASS -- TEST 'regional_debug_gnu' [13:37, 12:05](732 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:33, 02:40](794 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:25, 02:36](796 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:25, 02:38](802 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:22, 02:40](798 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:41, 02:50](883 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:22, 04:10](798 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:22, 02:42](796 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:24, 02:38](793 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:22, 01:34](437 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:21, 01:47](429 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:40, 01:45](1410 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:24, 02:39](799 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:22, 02:41](803 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:36, 04:25](805 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:23] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:12, 04:10] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:36, 09:53](686 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:34, 05:10](689 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [17:32, 15:40](725 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [09:31, 08:03](726 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:28, 05:20](682 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:35, 07:13](538 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:26, 02:38](520 MB) +PASS -- TEST 'conus13km_control_gnu' [05:52, 03:12](851 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:41, 01:32](861 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:41, 01:54](536 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:12, 09:32] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:36, 05:57](713 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:12, 06:37] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:23, 02:35](688 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:24, 02:28](686 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:46, 06:34](852 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:40, 07:05](555 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [07:37, 05:43](860 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:36, 06:53](920 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:39] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:23, 02:40](722 MB) + +PASS -- COMPILE 's2swa_gnu' [18:13, 16:22] + +PASS -- COMPILE 's2s_gnu' [18:12, 16:14] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [13:02, 11:06](1490 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [05:12, 03:13] + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:14, 16:10] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:59, 24:46](1439 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:14, 03:05] + +PASS -- COMPILE 'datm_cdeps_gnu' [17:13, 15:28] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:17, 03:07](689 MB) SYNOPSIS: -Starting Date/Time: 20250103 20:41:28 -Ending Date/Time: 20250103 22:53:54 -Total Time: 02h:12m:47s +Starting Date/Time: 20250108 13:09:09 +Ending Date/Time: 20250108 14:58:48 +Total Time: 01h:49m:58s Compiles Completed: 61/61 -Tests Completed: 249/249 +Tests Completed: 248/249 +Failed Tests: +* TEST control_wam_intel: FAILED: TEST TIMED OUT +-- LOG: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_1533959/control_wam_intel/err + +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 HERA REGRESSION TESTING LOG==== +====START OF HERA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +b5b4558a9da026e48f0ebaca8c082af7b7e7915d + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) + ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) + b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 7d998809dc84996248f93ced49730cfe92eae7cf 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) + 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) + 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) + 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) + 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: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20250107 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3140308 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-e) - USE ECFLOW + +PASS -- COMPILE 'wam_intel' [12:12, 10:23] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:41, 11:18](1638 MB) + +SYNOPSIS: +Starting Date/Time: 20250108 17:37:44 +Ending Date/Time: 20250108 18:04:59 +Total Time: 00h:27m:23s +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_hercules.log b/tests/logs/RegressionTests_hercules.log index 12152e2aeb..6ebf5473bc 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7 +1,7 @@ -====START OF HERCULES REGRESSION TESTING LOG==== +====START OF hercules REGRESSION TESTING LOG==== UFSWM hash used in testing: -c4ea32ee15fe4a74e5f5db6f38998068db93a5ab +b5b4558a9da026e48f0ebaca8c082af7b7e7915d Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - e1d7f499b8715e001453f00f14a0a6fc42d6da7d FV3 (remotes/origin/rrfsv1-to-ufs/dev8) + 7d998809dc84996248f93ced49730cfe92eae7cf FV3 (heads/develop) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - fa3f1ce1cbaebd30998ea16a149c2d71a41ccf82 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5537-gfa3f1ce1) + 24643b0e0f9754d76176d60ce155bf8956bfb44d FV3/ccpp/physics (EP4-1092-g24643b0e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -31,394 +31,493 @@ Submodule hashes used in testing: 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - NOTES: [Times](Memory) are at the end of each compile/test in format [MM:SS](Size). The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20241230 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_3930529 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20250107 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/jongkim/FV3_RT/rt_3241797 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-r) - USE ROCOTO -PASS -- COMPILE 's2swa_32bit_intel' [10:53, 10:53] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:43, 14:56](2125 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:16, 17:16] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:40, 17:54](1988 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:27, 18:25](2342 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:12, 10:06](1349 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:10, 19:21](1913 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:40, 16:40] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:48, 17:28](1988 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:00, 07:00] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:36, 24:44](1967 MB) - -PASS -- COMPILE 's2swa_intel' [12:32, 12:32] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:30, 15:38](2200 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:56, 14:14](2187 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:40, 07:49](1996 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [15:02, 14:14](2236 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:41, 07:46](1736 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [20:51, 20:09](2467 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [15:18, 14:35](2190 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:05, 12:21](2101 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:08, 14:24](2196 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:11, 15:51](2991 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:39, 08:03](2917 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [21:11, 16:41](3880 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:36, 10:07](3704 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:22, 06:53](2105 MB) - -PASS -- COMPILE 's2sw_intel' [12:04, 12:04] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [14:23, 13:45](2001 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:20, 12:38](2105 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:00, 07:00] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [20:03, 19:16](2229 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:48, 06:48] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:20, 08:39](2045 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:04, 12:04] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:54, 04:11](2071 MB) - -PASS -- COMPILE 's2s_intel' [12:03, 12:03] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [06:29, 06:02](3012 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [02:59, 02:32](3021 MB) -PASS -- TEST 'cpld_restart_c48_intel' [01:41, 01:27](2474 MB) - -PASS -- COMPILE 's2swa_faster_intel' [11:49, 11:48] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:17, 15:39](2200 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:16, 16:16] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:52, 23:08](2068 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:21, 11:28](1397 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:27, 26:42](1996 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:34, 04:34] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:13, 27:31](2005 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:00, 09:00] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:25, 04:12](712 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:15, 02:58](1594 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:21, 02:57](1592 MB) -PASS -- TEST 'control_latlon_intel' [03:20, 03:00](1590 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:28, 03:01](1595 MB) -PASS -- TEST 'control_c48_intel' [11:09, 10:47](1693 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:23, 06:12](835 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [11:12, 10:55](1707 MB) -PASS -- TEST 'control_c192_intel' [11:29, 10:58](1777 MB) -PASS -- TEST 'control_c384_intel' [14:18, 13:13](2022 MB) -PASS -- TEST 'control_c384gdas_intel' [09:58, 08:29](1502 MB) -PASS -- TEST 'control_stochy_intel' [01:38, 01:27](660 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:25, 01:08](531 MB) -PASS -- TEST 'control_lndp_intel' [01:36, 01:25](662 MB) -PASS -- TEST 'control_iovr4_intel' [02:25, 02:11](654 MB) -PASS -- TEST 'control_iovr5_intel' [02:27, 02:18](651 MB) -PASS -- TEST 'control_p8_intel' [04:03, 03:20](1878 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:26, 02:47](1898 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:57, 03:16](1875 MB) -PASS -- TEST 'control_restart_p8_intel' [02:34, 02:02](1149 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:49, 03:16](1874 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:33, 01:57](1202 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:01, 03:25](1873 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:49, 04:10](1949 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:22, 05:58](1886 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:22, 03:39](1974 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:38, 02:57](1895 MB) -PASS -- TEST 'merra2_thompson_intel' [03:47, 03:00](1912 MB) -PASS -- TEST 'regional_control_intel' [04:56, 04:42](1231 MB) -PASS -- TEST 'regional_restart_intel' [02:52, 02:40](1179 MB) -PASS -- TEST 'regional_decomp_intel' [05:17, 04:57](1212 MB) -PASS -- TEST 'regional_2threads_intel' [04:52, 04:31](1112 MB) -PASS -- TEST 'regional_noquilt_intel' [06:04, 05:47](1543 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:02, 04:43](1232 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [04:55, 04:39](1234 MB) -PASS -- TEST 'regional_wofs_intel' [06:33, 06:17](2090 MB) - -PASS -- COMPILE 'rrfs_intel' [09:03, 09:03] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [07:21, 06:46](1202 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [03:59, 03:26](1386 MB) -PASS -- TEST 'rap_decomp_intel' [07:40, 07:04](1137 MB) -PASS -- TEST 'rap_2threads_intel' [09:25, 08:46](1219 MB) -PASS -- TEST 'rap_restart_intel' [04:20, 03:39](1134 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:18, 06:45](1214 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:50, 07:14](1134 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:54, 05:15](1202 MB) -PASS -- TEST 'hrrr_control_intel' [04:10, 03:33](1089 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:09, 03:33](1038 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:17, 04:37](1151 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:16, 02:01](1030 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:08, 06:32](1186 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:28, 08:18](2011 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:18, 08:09](2187 MB) - -PASS -- COMPILE 'csawmg_intel' [08:14, 08:14] -PASS -- TEST 'control_csawmg_intel' [05:51, 05:35](1040 MB) -PASS -- TEST 'control_ras_intel' [03:00, 02:54](841 MB) - -PASS -- COMPILE 'wam_intel' [08:24, 08:24] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [10:22, 10:02](1663 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:19, 09:19] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:09, 02:27](1898 MB) -PASS -- TEST 'regional_control_faster_intel' [04:38, 04:22](1229 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:35, 06:35] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:21, 02:03](1622 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:26, 01:59](1616 MB) -PASS -- TEST 'control_stochy_debug_intel' [02:49, 02:39](846 MB) -PASS -- TEST 'control_lndp_debug_intel' [02:28, 02:22](829 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:13, 03:59](1144 MB) -PASS -- TEST 'control_ras_debug_intel' [02:33, 02:22](857 MB) -PASS -- TEST 'control_diag_debug_intel' [02:41, 02:18](1700 MB) -PASS -- TEST 'control_debug_p8_intel' [03:09, 02:48](1917 MB) -PASS -- TEST 'regional_debug_intel' [15:47, 15:33](1145 MB) -PASS -- TEST 'rap_control_debug_intel' [04:16, 04:09](1217 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:14, 04:05](1210 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:32, 04:13](1231 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:19, 04:05](1217 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:29, 04:16](1235 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:02, 04:41](1310 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:33, 04:22](1235 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:35, 04:24](1214 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:20, 04:10](1226 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:26, 04:14](1231 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:23, 04:10](1226 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:18, 04:09](1222 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:05, 06:50](1212 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:19, 04:10](1212 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [04:34, 04:23](1229 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:29, 04:19](1221 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:51, 07:15](1228 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:20, 04:20] -PASS -- TEST 'control_csawmg_debug_gnu' [02:21, 02:06](1045 MB) - -PASS -- COMPILE 'wam_debug_intel' [03:57, 03:57] ( 837 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:34, 08:34] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [03:54, 03:20](1245 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:14, 05:40](1144 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:47, 02:55](1022 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:38, 08:05](1132 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:55, 04:08](1068 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:57, 03:11](997 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:03, 04:19](1096 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:02, 01:39](962 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:44, 08:43] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:07, 01:41](1284 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:20, 00:59](1186 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:26, 01:04](1130 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:25, 08:25] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:10, 03:53](1067 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:25, 04:25] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:26, 04:19](1095 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:17, 04:07](1101 MB) -PASS -- TEST 'conus13km_debug_intel' [12:23, 12:02](1343 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [12:47, 12:23](998 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [13:18, 12:59](1241 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:13, 11:53](1424 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:40, 03:40] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:35, 04:22](1158 MB) - -PASS -- COMPILE 'hafsw_intel' [10:00, 09:59] ( 1 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:25, 05:29](851 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:49, 05:39](1257 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:50, 06:48](925 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:40, 14:26](958 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:21, 17:58](979 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:40, 05:56](600 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:51, 07:42](605 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:26, 02:57](435 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:22, 08:40](549 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:39, 04:05](606 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:40, 04:04](605 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:01, 06:16](659 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:35, 01:21](450 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:10, 04:10] ( 1462 warnings 1490 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:38, 11:53](639 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [09:52, 09:52] ( 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:05, 17:16](714 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:57, 18:06](841 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:36, 10:35] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:32, 12:06](810 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:07, 10:07] ( 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:13, 06:18](931 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:05, 06:09](890 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:27, 16:55](1340 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:00, 06:00] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:17, 02:11](1165 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:24, 01:18](1093 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:13, 02:07](1019 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:15, 02:09](1016 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:15, 02:10](1017 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:19, 02:14](1159 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:12, 03:04](1119 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:26, 02:19](1023 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:47, 05:08](1157 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:31, 04:52](1161 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:13, 02:09](1155 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:08, 03:03](2452 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:06, 03:01](2388 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:25, 03:25] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:22, 05:17](1062 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [05:14, 05:14] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:14, 02:09](1155 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [00:53, 00:53] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:19, 01:01](340 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:15, 01:01](577 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:46, 00:34](573 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:04, 10:04] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:39, 04:02](2021 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [09:38, 09:37] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:58, 07:22](2026 MB) - -PASS -- COMPILE 'atml_intel' [09:41, 09:40] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:46, 06:05](1892 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:47, 07:44](1889 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:26, 03:59](1150 MB) - -PASS -- COMPILE 'atml_debug_intel' [04:55, 04:55] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:42, 05:50](1919 MB) - -PASS -- COMPILE 'atmw_intel' [09:36, 09:36] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:47, 02:00](1935 MB) - -PASS -- COMPILE 'atmaero_intel' [09:03, 09:03] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:29, 03:51](2006 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:05, 04:28](1777 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:06, 04:34](1798 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [03:51, 03:51] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [18:58, 17:46](4503 MB) - -PASS -- COMPILE 'atm_fbh_intel' [08:15, 08:15] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [16:07, 15:54](1111 MB) - -PASS -- COMPILE 'datm_cdeps_intelllvm' [10:28, 10:28] -PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [03:21, 03:17](1145 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [01:44, 01:44] -PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [12:03, 11:59](1082 MB) - -PASS -- COMPILE 'atm_gnu' [04:17, 04:17] -PASS -- TEST 'control_c48_gnu' [08:35, 08:13](1522 MB) -PASS -- TEST 'control_stochy_gnu' [02:38, 02:28](719 MB) -PASS -- TEST 'control_ras_gnu' [04:01, 03:51](726 MB) -PASS -- TEST 'control_p8_gnu' [04:54, 04:20](1697 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:56, 06:21](1716 MB) -PASS -- TEST 'control_flake_gnu' [05:03, 04:49](800 MB) - -PASS -- COMPILE 'rrfs_gnu' [04:33, 04:32] -PASS -- TEST 'rap_control_gnu' [09:48, 09:15](1075 MB) -PASS -- TEST 'rap_decomp_gnu' [09:41, 09:09](1073 MB) -PASS -- TEST 'rap_2threads_gnu' [12:02, 11:25](974 MB) -PASS -- TEST 'rap_restart_gnu' [05:34, 04:53](877 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [09:35, 09:00](1070 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:03, 09:25](1078 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:23, 06:54](878 MB) -PASS -- TEST 'hrrr_control_gnu' [05:31, 04:56](1059 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:20, 04:52](1131 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:21, 04:43](1036 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:42, 05:03](1064 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [02:51, 02:36](877 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:02, 02:43](925 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [10:34, 09:52](1069 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:20, 04:20] -PASS -- TEST 'control_csawmg_gnu' [07:23, 07:08](1053 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [05:58, 05:58] -PASS -- TEST 'control_diag_debug_gnu' [01:48, 01:21](1624 MB) -PASS -- TEST 'regional_debug_gnu' [06:53, 06:38](1148 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:09, 02:02](1093 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:12, 02:03](1081 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:15, 02:08](1087 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:18, 02:07](1085 MB) -PASS -- TEST 'rap_diag_debug_gnu' [02:32, 02:17](1259 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:38, 03:31](1088 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:22, 02:10](1091 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:14, 02:07](1084 MB) -PASS -- TEST 'control_ras_debug_gnu' [01:30, 01:18](719 MB) -PASS -- TEST 'control_stochy_debug_gnu' [01:31, 01:23](720 MB) -PASS -- TEST 'control_debug_p8_gnu' [01:52, 01:30](1698 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:23, 02:11](1091 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [02:15, 02:08](1092 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:02, 03:26](1093 MB) - -PASS -- COMPILE 'wam_debug_gnu' [02:47, 02:47] -PASS -- TEST 'control_wam_debug_gnu' [05:54, 05:30](1557 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 04:11] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:16, 07:43](955 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:49, 04:04](943 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:44, 07:08](917 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:49, 07:02](892 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:18, 05:34](941 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:32, 05:51](855 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:26, 02:09](852 MB) -PASS -- TEST 'conus13km_control_gnu' [03:02, 02:36](1256 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:24, 07:05](1106 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [01:51, 01:30](921 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:59, 08:58] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [04:58, 04:36](982 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:06, 06:06] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:05, 01:59](965 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:14, 02:04](959 MB) -PASS -- TEST 'conus13km_debug_gnu' [05:50, 05:26](1270 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:08, 05:43](946 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [13:12, 12:52](1133 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [05:44, 05:24](1340 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:44, 05:44] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:18, 02:10](990 MB) - -PASS -- COMPILE 's2swa_gnu' [16:27, 16:27] - -PASS -- COMPILE 's2s_gnu' [18:42, 18:42] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [16:09, 15:24](2712 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [03:40, 03:40] - -PASS -- COMPILE 's2sw_pdlib_gnu' [16:05, 16:05] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [40:16, 39:36](2901 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:01, 03:01] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:38, 14:58](3048 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [15:43, 15:43] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [02:23, 02:18](768 MB) +PASS -- COMPILE s2swa_32bit_intel +PASS -- TEST cpld_control_p8_mixedmode_intel [09:27, 08:40] (2143300 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_intel +PASS -- TEST cpld_control_gfsv17_intel [19:06, 18:11] (2021140 MB) +PASS -- TEST cpld_control_gfsv17_iau_intel [19:23, 18:19] (2329120 MB) +PASS -- TEST cpld_restart_gfsv17_intel [08:21, 07:17] (1358320 MB) +PASS -- TEST cpld_mpi_gfsv17_intel [19:28, 18:30] (1924000 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel +PASS -- TEST cpld_control_sfs_intel [17:15, 16:50] (1978888 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_debug_intel +PASS -- TEST cpld_debug_gfsv17_intel [24:22, 23:26] (1991748 MB) + +PASS -- COMPILE s2swa_intel +PASS -- TEST cpld_control_p8_intel [09:57, 08:59] (2200188 MB) +PASS -- TEST cpld_control_p8.v2.sfc_intel [09:14, 08:29] (2202884 MB) +PASS -- TEST cpld_restart_p8_intel [05:22, 04:41] (1977812 MB) +PASS -- TEST cpld_control_qr_p8_intel [09:27, 08:35] (2228172 MB) +PASS -- TEST cpld_restart_qr_p8_intel [06:08, 05:05] (1737784 MB) +PASS -- TEST cpld_2threads_p8_intel [12:04, 11:18] (2440508 MB) +PASS -- TEST cpld_decomp_p8_intel [08:52, 08:27] (2188796 MB) +PASS -- TEST cpld_mpi_p8_intel [08:00, 07:13] (2103104 MB) +PASS -- TEST cpld_control_ciceC_p8_intel [09:36, 08:49] (2206072 MB) +PASS -- TEST cpld_control_c192_p8_intel [16:59, 15:37] (2981708 MB) +PASS -- TEST cpld_restart_c192_p8_intel [08:58, 06:57] (2915792 MB) +PASS -- TEST cpld_bmark_p8_intel [17:05, 12:27] (3872412 MB) +PASS -- TEST cpld_restart_bmark_p8_intel [13:32, 07:21] (3684928 MB) +PASS -- TEST cpld_s2sa_p8_intel [07:50, 07:12] (2172628 MB) + +PASS -- COMPILE s2sw_intel +PASS -- TEST cpld_control_noaero_p8_intel [08:38, 07:55] (2004372 MB) +PASS -- TEST cpld_control_nowave_noaero_p8_intel [07:42, 07:07] (2105160 MB) + +PASS -- COMPILE s2swa_debug_intel +PASS -- TEST cpld_debug_p8_intel [12:35, 11:51] (2243484 MB) + +PASS -- COMPILE s2sw_debug_intel +PASS -- TEST cpld_debug_noaero_p8_intel [06:13, 05:38] (2048864 MB) + +PASS -- COMPILE s2s_aoflux_intel +PASS -- TEST cpld_control_noaero_p8_agrid_intel [04:46, 04:06] (2075464 MB) + +PASS -- COMPILE s2s_intel +PASS -- TEST cpld_control_c48_intel [06:18, 05:52] (3040304 MB) +PASS -- TEST cpld_warmstart_c48_intel [02:45, 02:15] (3022884 MB) +PASS -- TEST cpld_restart_c48_intel [01:32, 01:15] (2470824 MB) + +PASS -- COMPILE s2swa_faster_intel [12:06, 12:05](1 warnings,11 remarks) +PASS -- TEST cpld_control_p8_faster_intel [10:07, 09:19] (2206172 MB) + +PASS -- COMPILE s2sw_pdlib_intel [15:46, 15:46](1 warnings,11 remarks) +PASS -- TEST cpld_control_pdlib_p8_intel [16:34, 15:52] (2080476 MB) +PASS -- TEST cpld_restart_pdlib_p8_intel [07:49, 06:58] (1381748 MB) +PASS -- TEST cpld_mpi_pdlib_p8_intel [17:27, 16:45] (2005768 MB) + +PASS -- COMPILE s2sw_pdlib_debug_intel [04:41, 04:40](1520 warnings,1988 remarks) +PASS -- TEST cpld_debug_pdlib_p8_intel [25:56, 25:20] (2043700 MB) + +PASS -- COMPILE atm_dyn32_intel [09:42, 09:42](1 warnings,1 remarks) +PASS -- TEST control_flake_intel [03:12, 02:59] (708580 MB) +PASS -- TEST control_CubedSphereGrid_intel [02:34, 02:13] (1604300 MB) +PASS -- TEST control_CubedSphereGrid_parallel_intel [02:45, 02:20] (1609800 MB) +PASS -- TEST control_latlon_intel [02:37, 02:18] (1597732 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_intel [02:40, 02:16] (1603052 MB) +PASS -- TEST control_c48_intel [08:33, 08:12] (1696292 MB) +PASS -- TEST control_c48.v2.sfc_intel [06:10, 05:58] (837836 MB) +PASS -- TEST control_c192_intel [07:07, 06:35] (1769208 MB) +PASS -- TEST control_c384_intel [09:03, 07:53] (2004932 MB) +PASS -- TEST control_c384gdas_intel [12:02, 10:14] (1485064 MB) +PASS -- TEST control_stochy_intel [01:41, 01:29] (661212 MB) +PASS -- TEST control_stochy_restart_intel [01:22, 00:59] (533320 MB) +PASS -- TEST control_lndp_intel [01:30, 01:22] (672136 MB) +PASS -- TEST control_iovr4_intel [02:25, 02:13] (661796 MB) +PASS -- TEST control_iovr5_intel [02:19, 02:07] (663388 MB) +PASS -- TEST control_p8_intel [03:39, 02:57] (1901900 MB) +PASS -- TEST control_p8.v2.sfc_intel [03:19, 02:41] (1901492 MB) +PASS -- TEST control_p8_ugwpv1_intel [03:08, 02:33] (1896740 MB) +PASS -- TEST control_restart_p8_intel [02:20, 01:50] (1151312 MB) +PASS -- TEST control_noqr_p8_intel [03:08, 02:36] (1899880 MB) +PASS -- TEST control_restart_noqr_p8_intel [01:58, 01:30] (1218476 MB) +PASS -- TEST control_decomp_p8_intel [03:09, 02:38] (1884628 MB) +PASS -- TEST control_2threads_p8_intel [04:06, 03:29] (1958632 MB) +PASS -- TEST control_p8_lndp_intel [04:48, 04:30] (1893068 MB) +PASS -- TEST control_p8_rrtmgp_intel [04:21, 03:39] (1967032 MB) +PASS -- TEST control_p8_mynn_intel [03:28, 02:48] (1893932 MB) +PASS -- TEST merra2_thompson_intel [04:32, 03:52] (1893148 MB) +PASS -- TEST regional_control_intel [05:02, 04:46] (1228068 MB) +PASS -- TEST regional_restart_intel [03:16, 02:57] (1176800 MB) +PASS -- TEST regional_decomp_intel [05:09, 04:52] (1216488 MB) +PASS -- TEST regional_2threads_intel [04:29, 04:10] (1101608 MB) +PASS -- TEST regional_noquilt_intel [05:11, 04:56] (1550572 MB) +PASS -- TEST regional_netcdf_parallel_intel [05:16, 04:57] (1233904 MB) +PASS -- TEST regional_2dwrtdecomp_intel [04:57, 04:42] (1223948 MB) +PASS -- TEST regional_wofs_intel [06:17, 05:58] (2069640 MB) + +PASS -- COMPILE rrfs_intel [08:41, 08:41](3 warnings,9 remarks) +PASS -- TEST rap_control_intel [07:28, 06:54] (1217432 MB) +PASS -- TEST regional_spp_sppt_shum_skeb_intel [04:02, 03:29] (1371916 MB) +PASS -- TEST rap_decomp_intel [07:36, 06:59] (1134232 MB) +PASS -- TEST rap_2threads_intel [10:05, 09:26] (1221344 MB) +PASS -- TEST rap_restart_intel [04:25, 03:41] (1135388 MB) +PASS -- TEST rap_sfcdiff_intel [07:14, 06:40] (1227312 MB) +PASS -- TEST rap_sfcdiff_decomp_intel [07:38, 07:01] (1165328 MB) +PASS -- TEST rap_sfcdiff_restart_intel [05:42, 05:11] (1198880 MB) +PASS -- TEST hrrr_control_intel [04:11, 03:34] (1087696 MB) +PASS -- TEST hrrr_control_decomp_intel [04:11, 03:35] (1042748 MB) +PASS -- TEST hrrr_control_2threads_intel [05:21, 04:40] (1150960 MB) +PASS -- TEST hrrr_control_restart_intel [02:15, 01:58] (1028248 MB) +PASS -- TEST rrfs_v1beta_intel [07:29, 06:35] (1196672 MB) +PASS -- TEST rrfs_v1nssl_intel [08:46, 08:30] (2009736 MB) +PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [08:14, 08:05] (2169888 MB) + +PASS -- COMPILE csawmg_intel [08:31, 08:31] +PASS -- TEST control_csawmg_intel [06:09, 05:54] (1045424 MB) +PASS -- TEST control_ras_intel [03:12, 03:03] (801776 MB) + +PASS -- COMPILE wam_intel [07:56, 07:56],1 remarks) +PASS -- TEST control_wam_intel [10:26, 10:04] (1659212 MB) + +PASS -- COMPILE atm_faster_dyn32_intel [09:12, 09:12],1 remarks) +PASS -- TEST control_p8_faster_intel [03:06, 02:24] (1910428 MB) +PASS -- TEST regional_control_faster_intel [04:30, 04:17] (1225836 MB) + +PASS -- COMPILE atm_debug_dyn32_intel [06:19, 06:19](882 warnings,9 remarks) +PASS -- TEST control_CubedSphereGrid_debug_intel [02:24, 02:04] (1610876 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [02:22, 01:58] (1633204 MB) +PASS -- TEST control_stochy_debug_intel [02:44, 02:35] (841048 MB) +PASS -- TEST control_lndp_debug_intel [02:36, 02:24] (836620 MB) +PASS -- TEST control_csawmg_debug_intel [04:48, 04:29] (1137712 MB) +PASS -- TEST control_ras_debug_intel [02:31, 02:24] (841568 MB) +PASS -- TEST control_diag_debug_intel [02:36, 02:17] (1687180 MB) +PASS -- TEST control_debug_p8_intel [03:25, 02:59] (1910176 MB) +PASS -- TEST regional_debug_intel [15:41, 15:18] (1139132 MB) +PASS -- TEST rap_control_debug_intel [04:12, 04:03] (1223712 MB) +PASS -- TEST hrrr_control_debug_intel [04:09, 03:59] (1212212 MB) +PASS -- TEST hrrr_gf_debug_intel [04:14, 04:04] (1222904 MB) +PASS -- TEST hrrr_c3_debug_intel [04:33, 04:22] (1214220 MB) +PASS -- TEST rap_unified_drag_suite_debug_intel [04:21, 04:13] (1232584 MB) +PASS -- TEST rap_diag_debug_intel [04:45, 04:27] (1309180 MB) +PASS -- TEST rap_cires_ugwp_debug_intel [04:31, 04:22] (1233148 MB) +PASS -- TEST rap_unified_ugwp_debug_intel [04:31, 04:22] (1230068 MB) +PASS -- TEST rap_lndp_debug_intel [04:26, 04:19] (1221384 MB) +PASS -- TEST rap_progcld_thompson_debug_intel [04:22, 04:11] (1230672 MB) +PASS -- TEST rap_noah_debug_intel [04:11, 04:00] (1224708 MB) +PASS -- TEST rap_sfcdiff_debug_intel [04:20, 04:10] (1215508 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [07:00, 06:49] (1221000 MB) +PASS -- TEST rrfs_v1beta_debug_intel [04:11, 04:01] (1221640 MB) +PASS -- TEST rap_clm_lake_debug_intel [04:21, 04:09] (1217896 MB) +PASS -- TEST rap_flake_debug_intel [04:20, 04:08] (1231560 MB) +PASS -- TEST gnv1_c96_no_nest_debug_intel [07:57, 07:15] (1220436 MB) + +PASS -- COMPILE atm_debug_dyn32_gnu [04:04, 04:04] +PASS -- TEST control_csawmg_debug_gnu [03:11, 02:58] (1041996 MB) + +PASS -- COMPILE wam_debug_intel [04:01, 04:01](837 warnings,1 remarks) + +PASS -- COMPILE rrfs_dyn32_phy32_intel [08:27, 08:27](3 warnings,8 remarks) +PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [03:56, 03:23] (1244912 MB) +PASS -- TEST rap_control_dyn32_phy32_intel [06:18, 05:46] (1146452 MB) +PASS -- TEST hrrr_control_dyn32_phy32_intel [03:42, 02:58] (1016128 MB) +PASS -- TEST rap_2threads_dyn32_phy32_intel [08:27, 07:56] (1130472 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [04:52, 04:07] (1071376 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [03:58, 03:14] (988260 MB) +PASS -- TEST rap_restart_dyn32_phy32_intel [04:44, 04:18] (1113260 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [01:58, 01:43] (943232 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [08:25, 08:25](3 warnings,8 remarks) +PASS -- TEST conus13km_control_intel [02:08, 01:41] (1277224 MB) +PASS -- TEST conus13km_2threads_intel [01:18, 00:58] (1184016 MB) +PASS -- TEST conus13km_restart_mismatch_intel [01:25, 01:05] (1136620 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_intel [08:50, 08:50](3 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_intel [04:17, 03:58] (1061528 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [04:05, 04:04](785 warnings,8 remarks) +PASS -- TEST rap_control_debug_dyn32_phy32_intel [04:21, 04:13] (1099776 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [04:19, 04:13] (1096600 MB) +PASS -- TEST conus13km_debug_intel [12:40, 12:15] (1349648 MB) +PASS -- TEST conus13km_debug_qr_intel [12:58, 12:35] (990548 MB) +PASS -- TEST conus13km_debug_2threads_intel [13:20, 12:59] (1236768 MB) +PASS -- TEST conus13km_radar_tten_debug_intel [12:29, 12:09] (1401824 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [03:49, 03:49](785 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_debug_intel [04:37, 04:21] (1159532 MB) + +PASS -- COMPILE hafsw_intel [10:01, 10:00](1 warnings,10 remarks) +PASS -- TEST hafs_regional_atm_intel [06:34, 05:35] (849344 MB) +PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [05:47, 05:29] (1270556 MB) +PASS -- TEST hafs_regional_atm_ocn_intel [07:51, 06:42] (939244 MB) +PASS -- TEST hafs_regional_atm_wav_intel [17:13, 14:54] (966536 MB) +PASS -- TEST hafs_regional_atm_ocn_wav_intel [20:56, 18:15] (994312 MB) +PASS -- TEST hafs_regional_1nest_atm_intel [06:49, 06:08] (597392 MB) +PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [09:00, 07:49] (604792 MB) +PASS -- TEST hafs_global_1nest_atm_intel [03:36, 03:01] (435280 MB) +PASS -- TEST hafs_global_multiple_4nests_atm_intel [09:48, 08:09] (551296 MB) +PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [04:46, 04:15] (607656 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [29:03, 28:24] (608116 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [05:39, 04:55] (659088 MB) +PASS -- TEST hafs_global_storm_following_1nest_atm_intel [01:37, 01:21] (456448 MB) + +PASS -- COMPILE hafsw_debug_intel [28:06, 28:06](1462 warnings,1490 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [12:27, 11:45] (631024 MB) + +PASS -- COMPILE hafsw_faster_intel [32:55, 32:55],9 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [20:00, 19:06] (749412 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [19:12, 18:12] (833868 MB) + +PASS -- COMPILE hafs_mom6w_intel [32:53, 32:52],8 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [12:57, 11:42] (804412 MB) + +PASS -- COMPILE hafs_all_intel [32:43, 32:43],9 remarks) +PASS -- TEST hafs_regional_docn_intel [06:59, 06:06] (937508 MB) +PASS -- TEST hafs_regional_docn_oisst_intel [06:59, 06:05] (913956 MB) +PASS -- TEST hafs_regional_datm_cdeps_intel [17:05, 16:33] (1334140 MB) + +PASS -- COMPILE datm_cdeps_intel [30:03, 30:03],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_intel [02:18, 02:11] (1139316 MB) +PASS -- TEST datm_cdeps_restart_cfsr_intel [01:51, 01:44] (1084616 MB) +PASS -- TEST datm_cdeps_control_gefs_intel [03:01, 02:54] (1020872 MB) +PASS -- TEST datm_cdeps_iau_gefs_intel [02:17, 02:10] (1019564 MB) +PASS -- TEST datm_cdeps_stochy_gefs_intel [02:52, 02:48] (1023060 MB) +PASS -- TEST datm_cdeps_ciceC_cfsr_intel [02:17, 02:10] (1141616 MB) +PASS -- TEST datm_cdeps_bulk_cfsr_intel [02:17, 02:11] (1171464 MB) +PASS -- TEST datm_cdeps_bulk_gefs_intel [02:57, 02:51] (1028416 MB) +PASS -- TEST datm_cdeps_mx025_cfsr_intel [05:32, 04:56] (1166136 MB) +PASS -- TEST datm_cdeps_mx025_gefs_intel [05:22, 04:50] (1148376 MB) +PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [03:03, 03:00] (1134636 MB) +PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [03:08, 03:01] (2400892 MB) +PASS -- TEST datm_cdeps_gfs_intel [03:10, 03:03] (2396372 MB) + +PASS -- COMPILE datm_cdeps_debug_intel [03:57, 03:57](2 warnings,2 remarks) +PASS -- TEST datm_cdeps_debug_cfsr_intel [09:30, 09:26] (1069512 MB) + +PASS -- COMPILE datm_cdeps_faster_intel [06:01, 06:01],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_faster_intel [02:55, 02:50] (1146836 MB) + +PASS -- COMPILE datm_cdeps_land_intel [01:05, 01:05],1 remarks) +PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:13, 00:57] (339972 MB) +PASS -- TEST datm_cdeps_lnd_era5_intel [01:01, 00:49] (579004 MB) +PASS -- TEST datm_cdeps_lnd_era5_rst_intel [00:44, 00:35] (576012 MB) + +PASS -- COMPILE atm_ds2s_docn_pcice_intel [09:17, 09:16],3 remarks) +PASS -- TEST atm_ds2s_docn_pcice_intel [03:57, 03:19] (2020788 MB) + +PASS -- COMPILE atm_ds2s_docn_dice_intel [09:22, 09:22](1 warnings,1 remarks) +PASS -- TEST atm_ds2s_docn_dice_intel [05:02, 04:26] (2036088 MB) + +PASS -- COMPILE atml_intel [09:27, 09:27](8 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_sbs_intel [06:19, 05:30] (1892256 MB) +PASS -- TEST control_p8_atmlnd_intel [06:55, 05:57] (1894736 MB) +PASS -- TEST control_restart_p8_atmlnd_intel [03:26, 02:53] (1135016 MB) + +PASS -- COMPILE atml_debug_intel [04:49, 04:49](880 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_debug_intel [06:22, 05:32] (1930460 MB) + +PASS -- COMPILE atmw_intel [10:05, 10:05],9 remarks) +PASS -- TEST atmwav_control_noaero_p8_intel [02:47, 02:04] (1940036 MB) + +PASS -- COMPILE atmaero_intel [09:12, 09:12],1 remarks) +PASS -- TEST atmaero_control_p8_intel [04:30, 03:52] (2014620 MB) +PASS -- TEST atmaero_control_p8_rad_intel [05:08, 04:31] (1785124 MB) +PASS -- TEST atmaero_control_p8_rad_micro_intel [05:02, 04:35] (1806740 MB) + +PASS -- COMPILE atmaq_debug_intel [04:12, 04:12](882 warnings,6 remarks) +PASS -- TEST regional_atmaq_debug_intel [18:08, 17:04] (4533840 MB) + +PASS -- COMPILE atm_fbh_intel [08:34, 08:34](3 warnings,8 remarks) +PASS -- TEST cpld_regional_atm_fbh_intel [15:19, 15:05] (1115408 MB) + +PASS -- COMPILE datm_cdeps_intelllvm [11:28, 11:28] +PASS -- TEST datm_cdeps_control_cfsr_intelllvm [03:04, 03:00] (1152844 MB) + +PASS -- COMPILE datm_cdeps_debug_intelllvm [01:56, 01:56](2 warnings +PASS -- TEST datm_cdeps_debug_cfsr_intelllvm [11:36, 11:32] (1076100 MB) + +PASS -- COMPILE atm_gnu [05:53, 05:52] +PASS -- TEST control_c48_gnu [09:23, 08:57] (1527124 MB) +PASS -- TEST control_stochy_gnu [02:30, 02:20] (718676 MB) +PASS -- TEST control_ras_gnu [04:00, 03:51] (723884 MB) +PASS -- TEST control_p8_gnu [04:11, 03:36] (1700072 MB) +PASS -- TEST control_p8_ugwpv1_gnu [04:01, 03:31] (1720560 MB) +PASS -- TEST control_flake_gnu [04:59, 04:48] (806612 MB) + +PASS -- COMPILE rrfs_gnu [05:44, 05:44] +PASS -- TEST rap_control_gnu [09:51, 09:16] (1071704 MB) +PASS -- TEST rap_decomp_gnu [10:11, 09:35] (1071032 MB) +PASS -- TEST rap_restart_gnu [05:45, 04:59] (878064 MB) +PASS -- TEST rap_sfcdiff_gnu [09:43, 09:09] (1074272 MB) +PASS -- TEST rap_sfcdiff_decomp_gnu [09:58, 09:25] (1070352 MB) +PASS -- TEST rap_sfcdiff_restart_gnu [07:29, 06:58] (877244 MB) +PASS -- TEST hrrr_control_gnu [05:41, 05:01] (1061204 MB) +PASS -- TEST hrrr_control_noqr_gnu [05:32, 05:03] (1125852 MB) +PASS -- TEST hrrr_control_2threads_gnu [05:01, 04:24] (1016652 MB) +PASS -- TEST hrrr_control_decomp_gnu [05:50, 05:12] (1071448 MB) +PASS -- TEST hrrr_control_restart_gnu [02:51, 02:32] (879176 MB) +PASS -- TEST hrrr_control_restart_noqr_gnu [02:52, 02:34] (926172 MB) +PASS -- TEST rrfs_v1beta_gnu [10:56, 10:14] (1067140 MB) + +PASS -- COMPILE csawmg_gnu [05:39, 05:39] +PASS -- TEST control_csawmg_gnu [07:40, 07:22] (1051456 MB) + +PASS -- COMPILE atm_dyn32_debug_gnu [06:56, 06:56] +PASS -- TEST control_diag_debug_gnu [01:42, 01:18] (1619804 MB) +PASS -- TEST regional_debug_gnu [06:59, 06:40] (1103096 MB) +PASS -- TEST rap_control_debug_gnu [02:27, 02:17] (1094384 MB) +PASS -- TEST hrrr_control_debug_gnu [02:15, 02:04] (1085112 MB) +PASS -- TEST hrrr_gf_debug_gnu [02:21, 02:11] (1088196 MB) +PASS -- TEST hrrr_c3_debug_gnu [02:14, 02:03] (1088780 MB) +PASS -- TEST rap_diag_debug_gnu [02:25, 02:12] (1260732 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [03:38, 03:31] (1086996 MB) +PASS -- TEST rap_progcld_thompson_debug_gnu [02:21, 02:14] (1092640 MB) +PASS -- TEST rrfs_v1beta_debug_gnu [02:08, 02:02] (1084784 MB) +PASS -- TEST control_ras_debug_gnu [01:24, 01:15] (722040 MB) +PASS -- TEST control_stochy_debug_gnu [01:29, 01:21] (718640 MB) +PASS -- TEST control_debug_p8_gnu [01:41, 01:23] (1699484 MB) +PASS -- TEST rap_flake_debug_gnu [02:17, 02:07] (1090548 MB) +PASS -- TEST rap_clm_lake_debug_gnu [02:17, 02:09] (1101332 MB) +PASS -- TEST gnv1_c96_no_nest_debug_gnu [04:08, 03:33] (1092080 MB) + +PASS -- COMPILE wam_debug_gnu [02:35, 02:35] +PASS -- TEST control_wam_debug_gnu [06:08, 05:43] (1553400 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_gnu [04:22, 04:22] +PASS -- TEST rap_control_dyn32_phy32_gnu [08:17, 07:45] (952392 MB) +PASS -- TEST hrrr_control_dyn32_phy32_gnu [04:59, 04:14] (943352 MB) +PASS -- TEST rap_2threads_dyn32_phy32_gnu [07:31, 06:55] (916216 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_gnu [17:20, 16:30] (872832 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [04:44, 04:02] (940360 MB) +PASS -- TEST rap_restart_dyn32_phy32_gnu [06:31, 05:51] (853636 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [02:28, 02:04] (856100 MB) +PASS -- TEST conus13km_control_gnu [03:01, 02:38] (1256736 MB) +PASS -- TEST conus13km_2threads_gnu [07:18, 06:57] (1107844 MB) +PASS -- TEST conus13km_restart_mismatch_gnu [01:49, 01:30] (920652 MB) + +PASS -- COMPILE atm_dyn64_phy32_gnu [08:36, 08:36] +PASS -- TEST rap_control_dyn64_phy32_gnu [04:53, 04:33] (981156 MB) + +PASS -- COMPILE atm_dyn32_phy32_debug_gnu [06:47, 06:47] +PASS -- TEST rap_control_debug_dyn32_phy32_gnu [02:09, 02:00] (964180 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [02:08, 01:59] (959120 MB) +PASS -- TEST conus13km_debug_gnu [05:50, 05:27] (1272524 MB) +PASS -- TEST conus13km_debug_qr_gnu [05:59, 05:39] (945556 MB) +PASS -- TEST conus13km_debug_2threads_gnu [14:59, 14:40] (1131252 MB) +PASS -- TEST conus13km_radar_tten_debug_gnu [05:47, 05:31] (1341048 MB) + +PASS -- COMPILE atm_dyn64_phy32_debug_gnu [06:14, 06:14] +PASS -- TEST rap_control_dyn64_phy32_debug_gnu [02:09, 01:59] (991408 MB) + +PASS -- COMPILE s2swa_gnu [18:33, 18:32] +PASS -- COMPILE s2s_gnu [18:27, 18:27] +PASS -- TEST cpld_control_nowave_noaero_p8_gnu [09:29, 08:55] (2722220 MB) + +PASS -- COMPILE s2swa_debug_gnu [04:24, 04:23] +PASS -- COMPILE s2sw_pdlib_gnu [17:26, 17:25] +PASS -- TEST cpld_control_pdlib_p8_gnu [27:22, 26:42] (2996316 MB) + +PASS -- COMPILE s2sw_pdlib_debug_gnu [03:24, 03:24] +PASS -- TEST cpld_debug_pdlib_p8_gnu [13:21, 12:42] (3034912 MB) + +PASS -- COMPILE datm_cdeps_gnu [17:24, 17:23] +PASS -- TEST datm_cdeps_control_cfsr_gnu [03:36, 03:30] (767444 MB) + SYNOPSIS: -Starting Date/Time: 20250104 06:57:17 -Ending Date/Time: 20250104 13:07:15 -Total Time: 06h:10m:31s +Starting Date/Time: 2025-01-08 12:41:03 +Ending Date/Time: 2025-01-08 20:58:18 +Total Time: 08h:17m:15s Compiles Completed: 60/60 -Tests Completed: 248/248 +Tests Completed: 247/248 + + +NOTES: +A file test_changes.list was generated but is empty. +If you are using this log as a pull request verification, please commit test_changes.list. + +Result: FAIL + + +====END OF hercules REGRESSION TESTING LOG==== +====START OF HERCULES REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +b5b4558a9da026e48f0ebaca8c082af7b7e7915d + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) + ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) + 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) + (Icepack1.1.0-198-g3792520) + b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) + (cmeps_v0.4.1-2313-gb5d1cc1) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + (v1.0.0-28-gcabd775) + 7d998809dc84996248f93ced49730cfe92eae7cf FV3 7d998809dc84996248f93ced49730cfe92eae7cf FV3 (heads/develop) + (heads/develop) + 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) + (201912_public_release-408-g9490871) + 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) + (2024-07-11-dev-2-g9e1c3ab) + 24643b0e0f9754d76176d60ce155bf8956bfb44d FV3/ccpp/physics 24643b0e0f9754d76176d60ce155bf8956bfb44d FV3/ccpp/physics (EP4-1092-g24643b0e) + (EP4-1092-g24643b0e) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + (v1.6) + ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) + (upp_v10.2.0-243-gce5f3b14) +-179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd +-529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd +-179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd +-529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + (2.3.00-122-gbcf7777) + c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + (baseline_change_240904-6-gc4d2337) + c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) + (land_lad2_2021.02) + 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) + (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + (29e64d6) + 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) + (v3.7.1-444-g025043d) + 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) + (6.07.1-350-g29063ec7) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) + (v0.2.0-1-g05cad17) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + (ufs-v2.0.0-219-gfad2fe9) + + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20250107 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_3246326 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20250107 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2992092 + +RT.SH OPTIONS USED: +* (-r) - USE ROCOTO +* (-a) - HPC PROJECT ACCOUNT: epic +* (-r) - USE ROCOTO + +PASS -- COMPILE 'rrfs_gnu' [04:11, 04:11] +PASS -- TEST 'rap_control_gnu' [09:57, 09:22](1095 MB) +PASS -- TEST 'rap_2threads_gnu' [13:21, 12:41](973 MB) + +SYNOPSIS: +Starting Date/Time: 20250108 21:00:56 +Ending Date/Time: 20250108 22:10:30 +Total Time: 01h:09m:48s +Compiles Completed: 1/1 +Tests Completed: 2/2 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 574acb17b7..ed5e584bad 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -c4ea32ee15fe4a74e5f5db6f38998068db93a5ab +b5b4558a9da026e48f0ebaca8c082af7b7e7915d Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - e1d7f499b8715e001453f00f14a0a6fc42d6da7d FV3 (remotes/origin/rrfsv1-to-ufs/dev8) + 7d998809dc84996248f93ced49730cfe92eae7cf FV3 (heads/develop) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - fa3f1ce1cbaebd30998ea16a149c2d71a41ccf82 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5537-gfa3f1ce1) + 24643b0e0f9754d76176d60ce155bf8956bfb44d FV3/ccpp/physics (EP4-1092-g24643b0e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -38,258 +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-20241230 -COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_447506 +BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20250107 +COMPARISON DIRECTORY: /lfs5/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_1592612 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: h-nems -* (-l) - USE CONFIG FILE: rt.conf +* (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [50:15, 43:47] ( 1 warnings 1397 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:23, 13:37](2022 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [00:20, 53:08] ( 1 warnings 1444 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [34:15, 23:07](1883 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:26, 24:19](1990 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:13, 09:45](1115 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [37:02, 26:12](1854 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [55:16, 48:52] ( 1 warnings 1441 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [30:53, 22:22](1876 MB) - -PASS -- COMPILE 's2swa_intel' [51:15, 44:09] ( 1 warnings 1416 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [28:22, 17:41](2059 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [27:32, 16:46](2063 MB) -PASS -- TEST 'cpld_restart_p8_intel' [15:20, 08:54](1712 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [24:16, 17:11](2072 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [11:19, 09:01](1723 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [26:06, 15:50](2257 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [27:03, 17:05](2054 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [20:24, 14:06](2000 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [27:30, 16:55](2057 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [20:20, 09:14](2018 MB) - -PASS -- COMPILE 's2sw_intel' [49:15, 42:04] ( 1 warnings 1301 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [12:29, 09:50](1904 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [21:40, 14:18](1976 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:16] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [37:20, 27:47](2085 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:11, 05:59] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [20:00, 11:35](1932 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [47:14, 36:42] ( 1019 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:24, 05:39](1971 MB) - -PASS -- COMPILE 's2s_intel' [45:14, 37:57] ( 1 warnings 1042 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [12:51, 10:22](3017 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:52, 03:06](3013 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:49, 01:45](2451 MB) - -PASS -- COMPILE 's2swa_faster_intel' [39:18, 32:34] ( 1 warnings 1632 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [19:53, 16:20](2063 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [59:15, 51:43] ( 1 warnings 1361 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [49:33, 33:38](1931 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [21:15, 16:25](1139 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [39:23, 36:55](1912 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:11, 06:03] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [42:18, 38:38](1934 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [39:14, 38:01] ( 1 warnings 1125 remarks ) -PASS -- TEST 'control_flake_intel' [06:30, 04:25](651 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [07:04, 04:13](1539 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [21:10, 04:27](1549 MB) -PASS -- TEST 'control_latlon_intel' [06:59, 04:15](1538 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [21:09, 04:20](1545 MB) -PASS -- TEST 'control_c48_intel' [20:05, 18:06](1703 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:37, 10:15](831 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [21:04, 18:05](1706 MB) -PASS -- TEST 'control_c192_intel' [27:21, 15:54](1703 MB) -PASS -- TEST 'control_c384_intel' [30:15, 22:58](1814 MB) -PASS -- TEST 'control_c384gdas_intel' [24:04, 13:16](1007 MB) -PASS -- TEST 'control_stochy_intel' [04:29, 02:10](604 MB) -PASS -- TEST 'control_stochy_restart_intel' [17:28, 01:14](437 MB) -PASS -- TEST 'control_lndp_intel' [03:29, 02:04](601 MB) -PASS -- TEST 'control_iovr4_intel' [05:33, 03:18](601 MB) -PASS -- TEST 'control_iovr5_intel' [05:34, 03:15](598 MB) -PASS -- TEST 'control_p8_intel' [17:24, 04:44](1836 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [21:32, 04:04](1837 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [21:17, 04:47](1827 MB) -PASS -- TEST 'control_restart_p8_intel' [06:56, 02:34](1055 MB) -PASS -- TEST 'control_noqr_p8_intel' [21:18, 04:45](1805 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:57, 02:32](1072 MB) -PASS -- TEST 'control_decomp_p8_intel' [16:23, 04:47](1810 MB) -PASS -- TEST 'control_2threads_p8_intel' [21:12, 04:31](1901 MB) -PASS -- TEST 'control_p8_lndp_intel' [11:08, 08:39](1824 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [22:20, 05:14](1903 MB) -PASS -- TEST 'control_p8_mynn_intel' [20:23, 04:01](1852 MB) -PASS -- TEST 'merra2_thompson_intel' [07:18, 04:23](1839 MB) -PASS -- TEST 'regional_control_intel' [10:58, 06:59](1046 MB) -PASS -- TEST 'regional_restart_intel' [13:39, 03:45](1018 MB) -PASS -- TEST 'regional_decomp_intel' [11:56, 07:26](1046 MB) -PASS -- TEST 'regional_2threads_intel' [22:40, 04:12](1003 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [20:45, 07:03](1041 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [24:40, 07:07](1044 MB) - -PASS -- COMPILE 'rrfs_intel' [37:13, 35:33] ( 3 warnings 1100 remarks ) -PASS -- TEST 'rap_control_intel' [12:45, 10:10](983 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [11:12, 05:37](1181 MB) -PASS -- TEST 'rap_decomp_intel' [12:44, 10:43](992 MB) -PASS -- TEST 'rap_2threads_intel' [11:55, 09:27](1056 MB) -PASS -- TEST 'rap_restart_intel' [10:47, 05:23](993 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:54, 10:07](983 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:44, 10:40](980 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [11:57, 07:41](1004 MB) -PASS -- TEST 'hrrr_control_intel' [07:55, 05:12](987 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:55, 05:20](974 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [10:45, 04:40](1049 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:31, 02:53](912 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:15, 10:02](986 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [15:34, 13:28](1927 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:34, 13:05](1934 MB) - -PASS -- COMPILE 'csawmg_intel' [36:14, 35:00] ( 1099 remarks ) -PASS -- TEST 'control_csawmg_intel' [12:39, 08:08](960 MB) -PASS -- TEST 'control_ras_intel' [07:25, 04:18](668 MB) - -PASS -- COMPILE 'wam_intel' [37:13, 35:34] ( 1003 remarks ) -PASS -- TEST 'control_wam_intel' [18:46, 14:23](1613 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [48:14, 37:41] ( 1303 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:57, 03:35](1835 MB) -PASS -- TEST 'regional_control_faster_intel' [08:38, 06:34](1036 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 08:04] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:51, 02:54](1566 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:52, 02:59](1565 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:26, 03:52](777 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:26, 03:23](781 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:44, 05:26](1088 MB) -PASS -- TEST 'control_ras_debug_intel' [05:26, 03:25](786 MB) -PASS -- TEST 'control_diag_debug_intel' [08:51, 03:20](1639 MB) -PASS -- TEST 'control_debug_p8_intel' [08:53, 03:17](1856 MB) -PASS -- TEST 'regional_debug_intel' [27:48, 21:57](1041 MB) -PASS -- TEST 'rap_control_debug_intel' [09:28, 06:14](1164 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:28, 06:10](1159 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:28, 06:05](1159 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:28, 06:09](1161 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:29, 06:07](1176 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:39, 06:24](1246 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:29, 06:22](1165 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:29, 06:13](1162 MB) -PASS -- TEST 'rap_lndp_debug_intel' [10:26, 06:10](1166 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:25, 06:18](1163 MB) -PASS -- TEST 'rap_noah_debug_intel' [10:27, 06:07](1162 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [10:26, 06:06](1167 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:27, 10:03](1172 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [11:27, 06:00](1168 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:28, 06:07](1166 MB) -PASS -- TEST 'rap_flake_debug_intel' [09:26, 06:06](1163 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:53, 10:40](1167 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:11, 05:14] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:59, 16:37](1654 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:13, 30:46] ( 3 warnings 1032 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [15:12, 05:21](1064 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:50, 08:14](909 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [14:45, 04:29](870 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [18:47, 07:56](911 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:45, 04:11](908 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [14:45, 04:45](859 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:43, 06:11](904 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:27, 02:19](843 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [34:13, 32:14] ( 3 warnings 1207 remarks ) -PASS -- TEST 'conus13km_control_intel' [09:57, 02:51](1099 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:39, 01:09](1025 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:41, 01:29](1012 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [34:13, 31:41] ( 3 warnings 1052 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:51, 05:36](905 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:17] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:31, 06:03](1039 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:30, 05:54](1034 MB) -PASS -- TEST 'conus13km_debug_intel' [19:59, 17:47](1152 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [19:59, 17:52](852 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:52, 10:16](1083 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:53, 17:52](1216 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:58] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:26, 06:08](1087 MB) - -PASS -- COMPILE 'hafsw_intel' [41:13, 39:55] ( 1 warnings 1435 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:30, 06:44](694 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [14:40, 06:19](1084 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [19:46, 09:04](758 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:36, 15:34](791 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [29:55, 18:59](791 MB) -PASS -- TEST 'gnv1_nested_intel' [15:58, 06:01](1665 MB) - -PASS -- COMPILE 'hafs_all_intel' [37:13, 36:08] ( 1281 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [18:19, 08:31](748 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [18:22, 08:37](731 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [16:11, 08:19] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:23, 03:32](1063 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:21, 02:09](1041 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:24, 03:28](930 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:24, 03:31](938 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:23, 03:34](933 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:24, 03:34](1079 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:24, 03:35](1079 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:24, 03:29](930 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:21, 07:43](897 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:19, 07:33](857 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:20, 03:34](1070 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:22, 05:06](2434 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:23, 05:12](2422 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [10:11, 03:30] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:20, 08:05](1028 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:11, 08:30] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:33](1075 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:41] ( 68 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:36, 01:18](241 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:28, 01:03](276 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:44](261 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [38:14, 36:43] ( 1024 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:11, 04:47](1912 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [37:13, 35:49] ( 1 warnings 1029 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [13:16, 10:24](1902 MB) - -PASS -- COMPILE 'atml_intel' [39:13, 37:55] ( 8 warnings 1174 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:25, 05:47](1851 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:24, 05:46](1852 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:44, 03:14](1063 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:11, 06:32] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [14:18, 07:16](1880 MB) - -PASS -- COMPILE 'atmw_intel' [40:13, 38:18] ( 1277 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:00, 02:32](1847 MB) - -PASS -- COMPILE 'atmaero_intel' [37:13, 36:05] ( 1107 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:07, 05:18](1932 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:06, 06:25](1709 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:55, 06:29](1724 MB) - -PASS -- COMPILE 'atm_fbh_intel' [33:13, 31:15] ( 3 warnings 1003 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:37, 15:13](1058 MB) +PASS -- COMPILE 's2swa_32bit_intel' [46:15, 44:00] ( 1 warnings 1397 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:22, 08:30](2021 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [53:15, 50:16] ( 1 warnings 1444 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [25:09, 23:04](1888 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:24, 24:02](2006 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:13, 09:36](1137 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:07, 26:07](1850 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [53:15, 48:23] ( 1 warnings 1441 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [24:52, 22:40](1881 MB) + +PASS -- COMPILE 's2swa_intel' [46:15, 44:38] ( 1 warnings 1416 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [13:17, 10:40](2050 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:21, 10:15](2055 MB) +PASS -- TEST 'cpld_restart_p8_intel' [14:22, 05:38](1700 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:11, 10:23](2067 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:22, 06:08](1722 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [12:08, 09:44](2259 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [13:03, 10:21](2065 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:25, 08:33](1997 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:21, 10:14](2036 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:20, 09:47](2042 MB) + +PASS -- COMPILE 's2sw_intel' [45:14, 41:10] ( 1 warnings 1301 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:26, 06:24](1907 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:33, 08:06](1975 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:03] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [19:21, 16:47](2082 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:10, 06:19] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:04, 08:04](1937 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [38:13, 36:53] ( 1019 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:22, 05:34](1958 MB) + +PASS -- COMPILE 's2s_intel' [39:13, 37:45] ( 1 warnings 1042 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [12:56, 10:21](3020 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:55, 03:05](3006 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:49, 01:48](2452 MB) + +PASS -- COMPILE 's2swa_faster_intel' [34:18, 32:45] ( 1 warnings 1632 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [12:34, 09:45](2051 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [48:14, 46:30] ( 1 warnings 1361 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:19, 20:26](1925 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:20, 08:41](1133 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:19, 23:42](1905 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:19] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [38:17, 34:37](1938 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [40:14, 38:05] ( 1 warnings 1125 remarks ) +PASS -- TEST 'control_flake_intel' [06:34, 04:21](649 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [17:15, 03:23](1545 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [17:17, 03:34](1555 MB) +PASS -- TEST 'control_latlon_intel' [17:08, 03:24](1544 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [17:15, 03:31](1552 MB) +PASS -- TEST 'control_c48_intel' [14:12, 11:12](1698 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [12:39, 10:13](833 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [14:12, 11:12](1702 MB) +PASS -- TEST 'control_c192_intel' [20:21, 09:43](1686 MB) +PASS -- TEST 'control_c384_intel' [19:15, 13:37](1814 MB) +PASS -- TEST 'control_c384gdas_intel' [24:17, 13:16](1003 MB) +PASS -- TEST 'control_stochy_intel' [04:32, 02:13](607 MB) +PASS -- TEST 'control_stochy_restart_intel' [12:28, 01:16](441 MB) +PASS -- TEST 'control_lndp_intel' [03:32, 02:04](600 MB) +PASS -- TEST 'control_iovr4_intel' [05:35, 03:18](596 MB) +PASS -- TEST 'control_iovr5_intel' [05:34, 03:17](602 MB) +PASS -- TEST 'control_p8_intel' [18:26, 03:57](1835 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [18:30, 04:06](1823 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [17:27, 03:47](1840 MB) +PASS -- TEST 'control_restart_p8_intel' [03:49, 02:08](1059 MB) +PASS -- TEST 'control_noqr_p8_intel' [17:35, 03:48](1840 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:00, 02:04](1079 MB) +PASS -- TEST 'control_decomp_p8_intel' [18:17, 03:59](1819 MB) +PASS -- TEST 'control_2threads_p8_intel' [18:15, 03:26](1912 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:10, 06:36](1834 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [19:22, 05:18](1891 MB) +PASS -- TEST 'control_p8_mynn_intel' [18:21, 04:09](1844 MB) +PASS -- TEST 'merra2_thompson_intel' [18:15, 04:28](1838 MB) +PASS -- TEST 'regional_control_intel' [09:02, 07:05](1038 MB) +PASS -- TEST 'regional_restart_intel' [10:44, 03:50](1017 MB) +PASS -- TEST 'regional_decomp_intel' [10:01, 07:26](1043 MB) +PASS -- TEST 'regional_2threads_intel' [06:38, 04:14](997 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [11:41, 07:08](1035 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [19:38, 07:08](1041 MB) + +PASS -- COMPILE 'rrfs_intel' [37:14, 35:42] ( 3 warnings 1100 remarks ) +PASS -- TEST 'rap_control_intel' [12:45, 10:09](989 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:10, 05:40](1182 MB) +PASS -- TEST 'rap_decomp_intel' [12:46, 10:41](979 MB) +PASS -- TEST 'rap_2threads_intel' [11:51, 09:32](1060 MB) +PASS -- TEST 'rap_restart_intel' [08:49, 05:17](987 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:51, 10:07](985 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:50, 10:38](975 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [11:49, 07:34](996 MB) +PASS -- TEST 'hrrr_control_intel' [07:45, 05:13](983 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:44, 05:24](978 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:50, 04:43](1052 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:27, 02:47](908 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:00, 10:00](986 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [15:32, 13:16](1930 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:32, 12:49](1925 MB) + +PASS -- COMPILE 'csawmg_intel' [36:13, 34:50] ( 1099 remarks ) +PASS -- TEST 'control_csawmg_intel' [10:38, 08:04](963 MB) +PASS -- TEST 'control_ras_intel' [06:26, 04:20](664 MB) + +PASS -- COMPILE 'wam_intel' [37:13, 35:36] ( 1003 remarks ) +PASS -- TEST 'control_wam_intel' [16:44, 14:17](1620 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [39:13, 37:46] ( 1303 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:01, 03:37](1838 MB) +PASS -- TEST 'regional_control_faster_intel' [08:42, 06:31](1034 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 08:22] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:52, 02:58](1577 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:56, 02:52](1576 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:28, 03:48](783 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:29, 03:21](778 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:47, 05:25](1089 MB) +PASS -- TEST 'control_ras_debug_intel' [05:29, 03:26](785 MB) +PASS -- TEST 'control_diag_debug_intel' [08:54, 03:22](1632 MB) +PASS -- TEST 'control_debug_p8_intel' [07:54, 03:23](1869 MB) +PASS -- TEST 'regional_debug_intel' [27:52, 21:56](1043 MB) +PASS -- TEST 'rap_control_debug_intel' [08:31, 06:10](1160 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:32, 06:00](1158 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:32, 06:11](1167 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:32, 06:23](1167 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:31, 06:14](1161 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:42, 06:32](1244 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:32, 06:17](1166 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:32, 06:35](1165 MB) +PASS -- TEST 'rap_lndp_debug_intel' [10:27, 06:12](1163 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:24, 06:12](1154 MB) +PASS -- TEST 'rap_noah_debug_intel' [10:25, 06:04](1161 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [10:26, 06:12](1158 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:26, 10:01](1165 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [09:26, 06:07](1158 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:26, 06:11](1161 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:26, 06:12](1159 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:47, 10:40](1174 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 05:05] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [19:55, 16:39](1639 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:13, 30:41] ( 3 warnings 1032 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:07, 05:11](1063 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:43, 08:16](912 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:43, 04:19](864 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [24:43, 07:46](907 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [20:43, 03:57](900 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [21:41, 04:35](858 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [21:47, 06:13](899 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [21:27, 02:21](850 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [28:13, 25:57] ( 3 warnings 1207 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:48, 02:38](1100 MB) +PASS -- TEST 'conus13km_2threads_intel' [24:41, 01:11](1033 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [15:40, 01:26](1013 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [33:13, 31:36] ( 3 warnings 1052 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [24:48, 05:24](899 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:05] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:28, 06:03](1040 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:30, 05:59](1042 MB) +PASS -- TEST 'conus13km_debug_intel' [19:58, 17:43](1152 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [19:58, 17:44](863 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:53, 10:13](1075 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:53, 17:43](1244 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:11, 05:08] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:29, 06:09](1078 MB) + +PASS -- COMPILE 'hafsw_intel' [42:14, 40:18] ( 1 warnings 1435 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [11:23, 06:43](699 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:36, 06:17](1086 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [16:39, 09:15](753 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [22:33, 15:38](780 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:55, 18:54](808 MB) +PASS -- TEST 'gnv1_nested_intel' [13:51, 06:35](1660 MB) + +PASS -- COMPILE 'hafs_all_intel' [38:14, 36:23] ( 1281 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [12:20, 08:33](748 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [21:21, 08:36](735 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:12, 08:09] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [17:23, 03:32](1074 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:23, 02:09](1032 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [22:24, 03:26](937 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [22:24, 03:31](938 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [22:24, 03:33](938 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [22:24, 03:33](1080 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [21:24, 03:34](1070 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [13:22, 03:28](934 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [27:21, 07:44](900 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [27:21, 07:34](854 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [22:21, 03:35](1072 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:23, 05:02](2387 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [17:24, 05:04](2372 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:28] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:23, 08:03](1034 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [28:13, 08:19] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [09:21, 03:32](1087 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [19:12, 01:47] ( 68 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [15:38, 01:22](237 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [07:30, 01:03](262 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [07:26, 00:46](264 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [54:14, 36:50] ( 1024 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [11:31, 04:52](1887 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [38:14, 36:12] ( 1 warnings 1029 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [12:05, 06:15](1887 MB) + +PASS -- COMPILE 'atml_intel' [40:13, 38:21] ( 8 warnings 1174 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:06, 05:54](1850 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:12, 05:55](1840 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [11:46, 03:17](1065 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:12, 06:33] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:14, 07:19](1888 MB) + +PASS -- COMPILE 'atmw_intel' [43:14, 37:37] ( 1277 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [10:55, 02:30](1851 MB) + +PASS -- COMPILE 'atmaero_intel' [38:14, 36:17] ( 1107 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [13:03, 05:20](1909 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [14:01, 06:21](1705 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [12:55, 06:24](1717 MB) + +PASS -- COMPILE 'atm_fbh_intel' [34:13, 31:45] ( 3 warnings 1003 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:40, 15:21](1061 MB) SYNOPSIS: -Starting Date/Time: 20250103 20:48:00 -Ending Date/Time: 20250104 01:30:22 -Total Time: 04h:43m:02s +Starting Date/Time: 20250108 15:28:15 +Ending Date/Time: 20250108 20:09:14 +Total Time: 04h:41m:43s Compiles Completed: 37/37 Tests Completed: 166/166 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index b9c2c7ad6b..b85c3a5395 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -c4ea32ee15fe4a74e5f5db6f38998068db93a5ab +b5b4558a9da026e48f0ebaca8c082af7b7e7915d Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - e1d7f499b8715e001453f00f14a0a6fc42d6da7d FV3 (remotes/origin/rrfsv1-to-ufs/dev8) + 7d998809dc84996248f93ced49730cfe92eae7cf FV3 (heads/develop) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - fa3f1ce1cbaebd30998ea16a149c2d71a41ccf82 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5537-gfa3f1ce1) + 24643b0e0f9754d76176d60ce155bf8956bfb44d FV3/ccpp/physics (EP4-1092-g24643b0e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -38,298 +38,298 @@ 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-20241230 -COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_1055346 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20250107 +COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_1018631 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [20:11, 18:44] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [31:44, 27:38](2083 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:11, 21:49] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [24:39, 22:08](1956 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:19, 23:18](2116 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:15, 08:53](1229 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:45, 26:10](1871 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:11, 20:11] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [23:46, 21:37](1951 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:11, 08:43] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [34:43, 30:30](1923 MB) - -PASS -- COMPILE 's2swa_intel' [19:11, 17:58] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [33:47, 29:27](2146 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [31:37, 27:47](2140 MB) -PASS -- TEST 'cpld_restart_p8_intel' [19:48, 14:42](1799 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [31:32, 27:24](2162 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [17:51, 14:21](1702 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [24:31, 20:55](2348 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [31:32, 27:49](2139 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [26:32, 23:27](2038 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [31:40, 27:34](2143 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:24, 16:03](2713 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:10, 08:58](2710 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [29:07, 20:12](3718 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [22:08, 10:58](3546 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:22, 07:59](2076 MB) - -PASS -- COMPILE 's2sw_intel' [17:11, 15:57] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [32:07, 27:47](1961 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:16, 11:42](2047 MB) - -PASS -- COMPILE 's2swa_debug_intel' [09:11, 07:56] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [26:24, 22:23](2171 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:11, 08:02] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:10, 10:16](1997 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:11, 14:14] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:13, 04:48](2033 MB) - -PASS -- COMPILE 's2s_intel' [16:11, 14:39] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:54, 08:42](3032 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:55, 03:03](3025 MB) -PASS -- TEST 'cpld_restart_c48_intel' [05:03, 01:55](2478 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:11, 18:00] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [30:31, 28:04](2138 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 19:08] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [33:05, 29:09](2010 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:34, 14:31](1263 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [36:17, 33:40](1923 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:11, 07:17] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [38:07, 34:38](1964 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:11, 14:01] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [11:24, 03:46](685 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [08:39, 03:39](1571 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:46, 03:38](1579 MB) -PASS -- TEST 'control_latlon_intel' [05:38, 03:35](1583 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:48, 03:38](1564 MB) -PASS -- TEST 'control_c48_intel' [16:51, 14:43](1707 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:33, 08:11](839 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [16:50, 14:45](1698 MB) -PASS -- TEST 'control_c192_intel' [15:55, 13:10](1744 MB) -PASS -- TEST 'control_c384_intel' [20:55, 16:38](1983 MB) -PASS -- TEST 'control_c384gdas_intel' [14:39, 09:55](1336 MB) -PASS -- TEST 'control_stochy_intel' [03:21, 01:50](637 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:49, 01:03](474 MB) -PASS -- TEST 'control_lndp_intel' [05:21, 01:45](638 MB) -PASS -- TEST 'control_iovr4_intel' [06:30, 02:44](635 MB) -PASS -- TEST 'control_iovr5_intel' [06:29, 02:42](635 MB) -PASS -- TEST 'control_p8_intel' [09:01, 04:10](1860 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [08:13, 03:32](1881 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [08:21, 04:03](1865 MB) -PASS -- TEST 'control_restart_p8_intel' [06:19, 02:19](1089 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:20, 04:02](1846 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:23, 02:18](1122 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:12, 04:11](1845 MB) -PASS -- TEST 'control_2threads_p8_intel' [09:14, 05:01](1937 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:39, 07:26](1872 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:28, 04:55](1934 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:22, 03:27](1879 MB) -PASS -- TEST 'merra2_thompson_intel' [07:39, 03:51](1873 MB) -PASS -- TEST 'regional_control_intel' [08:43, 06:31](1107 MB) -PASS -- TEST 'regional_restart_intel' [05:43, 03:38](1092 MB) -PASS -- TEST 'regional_decomp_intel' [08:43, 06:52](1114 MB) -PASS -- TEST 'regional_2threads_intel' [10:42, 04:42](1054 MB) -PASS -- TEST 'regional_noquilt_intel' [12:40, 06:29](1413 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [12:41, 06:27](1104 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [11:35, 06:32](1113 MB) -PASS -- TEST 'regional_wofs_intel' [12:32, 08:00](1892 MB) - -PASS -- COMPILE 'rrfs_intel' [14:11, 12:50] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [12:00, 08:33](1052 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:53, 05:16](1270 MB) -PASS -- TEST 'rap_decomp_intel' [12:00, 08:47](1010 MB) -PASS -- TEST 'rap_2threads_intel' [21:27, 10:10](1085 MB) -PASS -- TEST 'rap_restart_intel' [08:35, 04:26](1036 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:59, 08:26](1055 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:59, 08:47](1016 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:42, 06:19](1076 MB) -PASS -- TEST 'hrrr_control_intel' [07:59, 04:22](1019 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:59, 04:28](1009 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [16:19, 05:03](1081 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:39, 02:20](941 MB) -PASS -- TEST 'rrfs_v1beta_intel' [19:22, 08:24](1044 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:28, 09:57](1976 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:24, 09:35](2015 MB) - -PASS -- COMPILE 'csawmg_intel' [14:11, 12:13] -PASS -- TEST 'control_csawmg_intel' [08:35, 06:37](1012 MB) -PASS -- TEST 'control_ras_intel' [05:20, 03:29](714 MB) - -PASS -- COMPILE 'wam_intel' [16:11, 14:18] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:45, 12:45](1651 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:10, 12:55] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:32, 03:19](1872 MB) -PASS -- TEST 'regional_control_faster_intel' [08:43, 06:19](1116 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:10, 09:16] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:47, 02:18](1601 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:51, 02:17](1606 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:23, 03:04](814 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:26, 02:47](816 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:39, 04:24](1131 MB) -PASS -- TEST 'control_ras_debug_intel' [04:28, 02:50](819 MB) -PASS -- TEST 'control_diag_debug_intel' [04:49, 02:48](1674 MB) -PASS -- TEST 'control_debug_p8_intel' [04:44, 02:45](1896 MB) -PASS -- TEST 'regional_debug_intel' [19:36, 17:41](1094 MB) -PASS -- TEST 'rap_control_debug_intel' [06:26, 04:56](1201 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:25, 04:47](1194 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:21, 04:55](1201 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 04:56](1202 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:23, 04:59](1193 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:36, 05:16](1283 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:21, 05:03](1203 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:23, 04:58](1204 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:23, 04:56](1203 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 04:55](1201 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:26, 04:55](1200 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 05:01](1197 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:24, 08:00](1192 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:24, 04:46](1202 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 05:00](1209 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:24, 05:00](1203 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:22, 08:23](1206 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:10, 06:24] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:42, 13:23](1675 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:10, 12:24] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:58, 05:06](1153 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:18, 07:13](997 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:43, 03:47](922 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [14:15, 08:40](985 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:48, 04:24](959 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:39, 03:55](886 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [14:30, 05:25](970 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:26, 02:02](873 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:10, 12:04] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [08:53, 02:34](1163 MB) -PASS -- TEST 'conus13km_2threads_intel' [08:54, 01:10](1113 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [09:50, 01:28](1069 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:10, 13:05] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:46, 04:35](968 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:10, 06:16] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [11:25, 04:53](1073 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:23, 04:48](1078 MB) -PASS -- TEST 'conus13km_debug_intel' [20:54, 13:40](1234 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [21:51, 14:05](955 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [20:41, 13:28](1167 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:51, 13:50](1302 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:10, 05:52] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [13:24, 05:00](1127 MB) - -PASS -- COMPILE 'hafsw_intel' [18:11, 15:07] ( 1 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [13:14, 05:57](726 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [14:34, 06:29](1125 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [20:27, 07:27](808 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [38:21, 27:46](834 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [44:28, 34:34](866 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [18:00, 07:08](506 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [21:30, 08:30](501 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [14:55, 03:31](369 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:18, 09:40](480 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [14:50, 04:44](524 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [14:52, 04:29](529 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [14:55, 05:40](574 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:36, 01:35](403 MB) -PASS -- TEST 'gnv1_nested_intel' [12:12, 04:17](1718 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:11, 07:01] ( 1462 warnings 1490 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [20:04, 12:55](583 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:11, 14:21] ( 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [21:55, 15:15](657 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [22:05, 15:12](724 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [18:11, 14:40] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:26, 11:14](707 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:11, 13:37] ( 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [13:16, 07:32](821 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:14, 07:34](796 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:00, 16:21](1204 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:29] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:19, 03:00](1142 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:56](1109 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:50](1023 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:55](1012 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:16, 02:55](1020 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 02:59](1162 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 02:59](1156 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:51](1019 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:05, 06:33](1028 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:00, 06:28](1010 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 02:58](1151 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:18, 04:19](2404 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:19, 04:24](2394 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 04:50] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:39](1082 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 07:34] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:58](1151 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:33] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:32, 01:03](256 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [06:24, 00:55](325 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:35](326 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:49] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [06:31, 00:37](557 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:32, 00:21](445 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:11, 13:15] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [10:11, 04:13](1963 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [17:11, 12:58] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [15:04, 08:35](1972 MB) - -PASS -- COMPILE 'atml_intel' [18:11, 14:28] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:30, 04:55](1859 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:29, 04:56](1860 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:57, 02:49](1070 MB) - -PASS -- COMPILE 'atml_debug_intel' [10:10, 07:04] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:34, 05:48](1889 MB) - -PASS -- COMPILE 'atmw_intel' [16:11, 14:27] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:24, 02:18](1910 MB) - -PASS -- COMPILE 'atmaero_intel' [15:11, 13:57] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [10:12, 04:39](1967 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [11:11, 05:22](1751 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:05, 05:29](1762 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:10, 06:34] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [25:04, 20:50](4486 MB) - -PASS -- COMPILE 'atm_fbh_intel' [14:11, 12:38] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:29, 13:50](1106 MB) - -PASS -- COMPILE 'hafsw_intelllvm' [09:10, 07:50] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [10:03, 07:52](574 MB) - -PASS -- COMPILE 'hafsw_debug_intelllvm' [08:10, 04:34] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [21:50, 19:30](566 MB) +PASS -- COMPILE 's2swa_32bit_intel' [18:11, 16:37] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [22:31, 15:48](2080 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 20:59] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [56:56, 21:57](1968 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:20, 23:04](2145 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:18, 08:47](1228 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [00:56, 25:52](1881 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:11, 20:38] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [54:52, 21:31](1937 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 07:54] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [31:51, 28:31](1940 MB) + +PASS -- COMPILE 's2swa_intel' [19:11, 17:32] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [48:56, 16:42](2137 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [47:49, 15:50](2130 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:45, 08:29](1793 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [46:42, 15:59](2164 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:49, 08:44](1696 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [44:40, 12:24](2330 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [47:42, 15:58](2120 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [19:34, 13:43](2036 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [47:50, 16:03](2144 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [32:31, 16:16](2715 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [21:03, 08:44](2709 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [47:22, 12:48](3712 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:19, 07:20](3538 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [38:33, 08:04](2127 MB) + +PASS -- COMPILE 's2sw_intel' [17:11, 15:28] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [18:12, 15:31](1982 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:24, 06:57](2041 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:11, 08:36] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [17:22, 14:17](2165 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:11, 07:50] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:08, 07:06](2001 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:11, 15:46] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:25, 04:49](2022 MB) + +PASS -- COMPILE 's2s_intel' [17:11, 15:16] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [11:00, 08:38](3035 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:01, 02:59](3029 MB) +PASS -- TEST 'cpld_restart_c48_intel' [09:05, 01:57](2481 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:11, 17:01] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [45:35, 16:30](2147 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:10, 18:52] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [45:17, 18:42](2003 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:23, 08:50](1257 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:18, 21:16](1932 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 07:14] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [07:37, 30:39](1974 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:11, 13:45] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [28:28, 03:43](684 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [30:52, 02:49](1579 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [30:56, 02:52](1589 MB) +PASS -- TEST 'control_latlon_intel' [30:48, 02:47](1586 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [29:56, 02:49](1583 MB) +PASS -- TEST 'control_c48_intel' [25:56, 08:58](1706 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [15:33, 08:14](835 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [25:57, 08:59](1702 MB) +PASS -- TEST 'control_c192_intel' [33:00, 08:06](1744 MB) +PASS -- TEST 'control_c384_intel' [30:54, 09:47](1985 MB) +PASS -- TEST 'control_c384gdas_intel' [31:35, 09:54](1329 MB) +PASS -- TEST 'control_stochy_intel' [21:26, 01:50](640 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:48, 01:04](472 MB) +PASS -- TEST 'control_lndp_intel' [14:27, 01:44](644 MB) +PASS -- TEST 'control_iovr4_intel' [07:27, 02:44](633 MB) +PASS -- TEST 'control_iovr5_intel' [06:22, 02:43](635 MB) +PASS -- TEST 'control_p8_intel' [08:07, 03:28](1869 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:10, 03:33](1877 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:21, 03:18](1881 MB) +PASS -- TEST 'control_restart_p8_intel' [04:11, 02:00](1084 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:14, 03:17](1878 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:28, 01:52](1123 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:09, 03:19](1864 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:16, 03:51](1942 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:43, 05:35](1870 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:20, 04:57](1944 MB) +PASS -- TEST 'control_p8_mynn_intel' [08:22, 05:15](1879 MB) +PASS -- TEST 'merra2_thompson_intel' [06:32, 03:52](1872 MB) +PASS -- TEST 'regional_control_intel' [08:35, 06:30](1111 MB) +PASS -- TEST 'regional_restart_intel' [06:42, 03:36](1088 MB) +PASS -- TEST 'regional_decomp_intel' [08:39, 06:51](1098 MB) +PASS -- TEST 'regional_2threads_intel' [06:40, 04:40](1057 MB) +PASS -- TEST 'regional_noquilt_intel' [08:42, 06:27](1412 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:51, 06:32](1107 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:38, 06:28](1107 MB) +PASS -- TEST 'regional_wofs_intel' [09:40, 07:59](1892 MB) + +PASS -- COMPILE 'rrfs_intel' [15:11, 13:17] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:29, 08:29](1055 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:55, 05:11](1269 MB) +PASS -- TEST 'rap_decomp_intel' [11:23, 08:46](1015 MB) +PASS -- TEST 'rap_2threads_intel' [12:25, 10:08](1087 MB) +PASS -- TEST 'rap_restart_intel' [07:32, 04:25](1033 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:24, 08:21](1058 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:17, 08:48](1009 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:34, 06:18](1070 MB) +PASS -- TEST 'hrrr_control_intel' [07:14, 04:23](1019 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:54, 04:28](1011 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [08:25, 05:00](1076 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:51, 02:20](939 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:21, 08:20](1052 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:26, 09:53](1973 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:24, 09:37](2011 MB) + +PASS -- COMPILE 'csawmg_intel' [14:11, 12:32] +PASS -- TEST 'control_csawmg_intel' [34:45, 10:03](1020 MB) +PASS -- TEST 'control_ras_intel' [28:27, 03:33](714 MB) + +PASS -- COMPILE 'wam_intel' [14:10, 13:01] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [16:47, 12:46](1651 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [18:10, 12:55] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:24, 03:18](1871 MB) +PASS -- TEST 'regional_control_faster_intel' [09:39, 06:15](1107 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [14:10, 09:17] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:46, 02:26](1613 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:46, 02:22](1609 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:22, 03:05](814 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:21, 02:46](816 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:36, 04:21](1122 MB) +PASS -- TEST 'control_ras_debug_intel' [05:19, 02:48](818 MB) +PASS -- TEST 'control_diag_debug_intel' [04:37, 02:47](1679 MB) +PASS -- TEST 'control_debug_p8_intel' [04:48, 02:49](1896 MB) +PASS -- TEST 'regional_debug_intel' [19:44, 17:29](1092 MB) +PASS -- TEST 'rap_control_debug_intel' [07:23, 05:10](1200 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:27, 04:54](1191 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:34, 05:01](1204 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:28, 04:58](1201 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:26, 04:52](1203 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:32, 05:17](1279 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:23, 05:09](1199 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:24, 05:03](1201 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:23, 05:01](1204 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:20, 04:55](1200 MB) +PASS -- TEST 'rap_noah_debug_intel' [09:20, 04:48](1198 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [09:22, 05:12](1208 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:24, 07:55](1203 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:23, 04:44](1197 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:26, 05:05](1202 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:25, 04:55](1203 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:28, 08:36](1213 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:10, 06:11] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [38:47, 13:28](1688 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:10, 12:31] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:56, 04:57](1143 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:22, 07:10](1001 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:09, 03:46](920 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [12:19, 08:43](986 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:32, 04:27](956 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:38, 03:59](892 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [14:33, 05:24](974 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:50, 02:03](867 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 12:20] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:58, 02:37](1166 MB) +PASS -- TEST 'conus13km_2threads_intel' [08:50, 01:11](1110 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [08:52, 01:29](1063 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:11, 12:10] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:43, 04:35](966 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:10, 06:09] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:26, 04:48](1076 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:27, 04:49](1078 MB) +PASS -- TEST 'conus13km_debug_intel' [16:55, 13:43](1224 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:53, 13:54](929 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [15:40, 13:31](1168 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:46, 13:52](1301 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:10, 06:12] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:25, 05:12](1134 MB) + +PASS -- COMPILE 'hafsw_intel' [16:11, 15:04] ( 1 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:15, 05:55](731 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:26, 06:26](1128 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [15:25, 07:29](806 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [36:19, 29:07](844 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [42:31, 34:59](866 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:05, 07:09](495 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [15:32, 08:27](507 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [09:57, 03:30](378 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [17:43, 09:38](468 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [11:57, 04:45](523 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:51, 04:28](531 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:09, 05:40](572 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:33, 01:34](400 MB) +PASS -- TEST 'gnv1_nested_intel' [13:31, 04:18](1720 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:10, 06:46] ( 1462 warnings 1490 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:06, 13:14](581 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:11, 14:26] ( 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:22, 15:18](637 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [22:32, 15:32](719 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [21:11, 15:34] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [18:32, 11:16](701 MB) + +PASS -- COMPILE 'hafs_all_intel' [18:10, 15:07] ( 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [14:20, 07:31](808 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:16, 07:31](800 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:01, 16:21](1200 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:10, 07:51] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [08:19, 02:59](1159 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:22, 01:58](1108 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [08:19, 02:52](1015 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:19, 02:58](1021 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:17, 02:54](1022 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:21, 03:01](1144 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:22, 03:01](1148 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:53](1015 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:16, 06:32](1017 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:13, 06:27](1001 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:18, 02:58](1147 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:20, 04:19](2401 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 04:21](2456 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:10, 05:34] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:19, 06:35](1081 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [11:10, 08:11] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:57](1144 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:10, 01:25] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:31, 01:02](255 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:23, 00:56](327 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:31, 00:36](322 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [04:10, 01:57] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:31, 00:36](549 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [05:34, 00:22](450 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:11, 13:08] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:13, 04:10](1964 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:11, 12:40] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:03, 05:12](1978 MB) + +PASS -- COMPILE 'atml_intel' [16:11, 13:42] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:32, 04:56](1861 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:32, 04:54](1858 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:02, 02:46](1070 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:10, 07:46] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:34, 05:57](1894 MB) + +PASS -- COMPILE 'atmw_intel' [19:11, 14:11] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:25, 02:18](1906 MB) + +PASS -- COMPILE 'atmaero_intel' [19:11, 13:30] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:25, 04:36](1973 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:23, 05:23](1755 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:08, 05:27](1758 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [10:10, 05:58] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [26:04, 20:52](4493 MB) + +PASS -- COMPILE 'atm_fbh_intel' [15:11, 12:34] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:33, 13:51](1116 MB) + +PASS -- COMPILE 'hafsw_intelllvm' [12:10, 07:54] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [11:13, 07:54](572 MB) + +PASS -- COMPILE 'hafsw_debug_intelllvm' [09:10, 04:46] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [22:53, 19:29](560 MB) SYNOPSIS: -Starting Date/Time: 20250104 06:57:02 -Ending Date/Time: 20250104 08:58:07 -Total Time: 02h:01m:42s +Starting Date/Time: 20250108 11:31:17 +Ending Date/Time: 20250108 13:47:32 +Total Time: 02h:16m:54s Compiles Completed: 45/45 Tests Completed: 191/191 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index a2e57b5444..51423f0569 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -e7f9b6339a4ffc11272fc5797a59f8c59b1083a7 +652433c9ba641f105fbac487d9515284cb22370e Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - e1d7f499b8715e001453f00f14a0a6fc42d6da7d FV3 (remotes/origin/rrfsv1-to-ufs/dev8) + 7d998809dc84996248f93ced49730cfe92eae7cf FV3 (heads/develop) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - fa3f1ce1cbaebd30998ea16a149c2d71a41ccf82 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5537-gfa3f1ce1) + 24643b0e0f9754d76176d60ce155bf8956bfb44d FV3/ccpp/physics (EP4-1092-g24643b0e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -38,240 +38,240 @@ 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-20241230 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3995097 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20250107 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3172405 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:28, 11:34] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:39, 11:25](3195 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:39, 22:17] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [21:33, 16:23](1909 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:05, 17:13](1946 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:46, 08:08](1069 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:30, 18:50](1886 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:39, 21:48] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:28, 15:49](1908 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:22, 05:27] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [33:53, 28:29](1951 MB) - -PASS -- COMPILE 's2swa_intel' [18:33, 17:01] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [18:12, 14:43](3227 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:33, 14:46](3225 MB) -PASS -- TEST 'cpld_restart_p8_intel' [12:33, 08:12](3152 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [18:08, 14:49](3244 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [12:38, 08:15](3171 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [34:48, 30:23](3445 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:49, 14:34](3221 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [16:18, 12:05](3166 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:32, 14:56](3228 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [30:08, 20:30](4233 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [26:04, 13:09](4376 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:08, 08:41](3199 MB) - -PASS -- COMPILE 's2sw_intel' [12:28, 10:53] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [11:45, 08:01](1921 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:17, 12:50](1981 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:28, 10:18] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:07, 05:05](1969 MB) - -PASS -- COMPILE 's2s_intel' [13:29, 11:47] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:40, 06:20](2884 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:36, 02:23](2890 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:59, 01:35](2307 MB) - -PASS -- COMPILE 's2swa_faster_intel' [35:54, 34:19] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [18:47, 14:28](3231 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:42, 22:56] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:40, 26:17](1920 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:44, 13:30](1100 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [34:26, 30:51](1898 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:24, 08:41] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:05, 30:15](1971 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [23:46, 22:08] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:39, 04:08](664 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:10, 03:25](1562 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:13, 03:36](1574 MB) -PASS -- TEST 'control_latlon_intel' [06:02, 03:16](1567 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:16, 03:24](1565 MB) -PASS -- TEST 'control_c48_intel' [13:34, 10:38](1587 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:04, 06:00](709 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [13:34, 10:26](1587 MB) -PASS -- TEST 'control_c192_intel' [14:40, 11:37](1687 MB) -PASS -- TEST 'control_c384_intel' [18:57, 14:23](1974 MB) -PASS -- TEST 'control_c384gdas_intel' [14:48, 09:37](1167 MB) -PASS -- TEST 'control_stochy_intel' [04:34, 02:02](618 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:35, 01:14](424 MB) -PASS -- TEST 'control_lndp_intel' [04:37, 02:01](616 MB) -PASS -- TEST 'control_iovr4_intel' [04:43, 02:45](614 MB) -PASS -- TEST 'control_iovr5_intel' [05:41, 02:56](613 MB) -PASS -- TEST 'control_p8_intel' [08:25, 04:04](1864 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:38, 03:28](1858 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [08:13, 04:06](1863 MB) -PASS -- TEST 'control_restart_p8_intel' [05:57, 02:28](997 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:40, 04:05](1847 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:43, 02:20](1023 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:28, 04:10](1859 MB) -PASS -- TEST 'control_2threads_p8_intel' [12:30, 08:05](1926 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:01, 06:52](1864 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:16, 04:38](1912 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:58, 03:32](1861 MB) -PASS -- TEST 'merra2_thompson_intel' [08:44, 03:57](1857 MB) -PASS -- TEST 'regional_control_intel' [08:01, 05:36](892 MB) -PASS -- TEST 'regional_restart_intel' [05:58, 03:42](877 MB) -PASS -- TEST 'regional_decomp_intel' [07:56, 05:52](896 MB) -PASS -- TEST 'regional_2threads_intel' [11:00, 08:17](1022 MB) -PASS -- TEST 'regional_noquilt_intel' [08:11, 05:38](1220 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:14, 05:34](894 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:54, 05:30](894 MB) -PASS -- TEST 'regional_wofs_intel' [09:02, 07:00](1582 MB) - -PASS -- COMPILE 'rrfs_intel' [24:42, 23:21] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [11:27, 07:30](1001 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:23, 04:43](1155 MB) -PASS -- TEST 'rap_decomp_intel' [11:18, 07:47](1006 MB) -PASS -- TEST 'rap_2threads_intel' [19:28, 16:05](1078 MB) -PASS -- TEST 'rap_restart_intel' [08:18, 03:55](879 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:29, 07:17](1000 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:29, 07:34](1001 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:26, 05:42](885 MB) -PASS -- TEST 'hrrr_control_intel' [08:30, 03:58](997 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:22, 04:20](994 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [12:33, 08:10](1066 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:34, 02:20](831 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:30, 07:26](995 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:42, 09:46](1957 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:45, 09:27](1948 MB) - -PASS -- COMPILE 'csawmg_intel' [21:36, 20:13] -PASS -- TEST 'control_csawmg_intel' [10:04, 07:20](955 MB) -PASS -- TEST 'control_ras_intel' [05:38, 03:41](652 MB) - -PASS -- COMPILE 'wam_intel' [16:34, 14:19] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:14, 12:17](1643 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [20:36, 18:36] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:44, 03:20](1858 MB) -PASS -- TEST 'regional_control_faster_intel' [08:01, 05:22](895 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [34:53, 32:38] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:06, 02:47](1599 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:12, 02:52](1607 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:32, 03:33](800 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:36, 03:21](802 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:57, 05:08](1109 MB) -PASS -- TEST 'control_ras_debug_intel' [05:34, 03:31](810 MB) -PASS -- TEST 'control_diag_debug_intel' [06:03, 03:22](1662 MB) -PASS -- TEST 'control_debug_p8_intel' [05:53, 03:18](1892 MB) -PASS -- TEST 'regional_debug_intel' [21:15, 18:34](919 MB) -PASS -- TEST 'rap_control_debug_intel' [07:39, 05:44](1189 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:42, 05:34](1185 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:38, 05:48](1183 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:36, 05:53](1187 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:34, 05:44](1189 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:50, 06:07](1269 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:37, 05:58](1186 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:35, 05:42](1189 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:38, 05:41](1190 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:39, 05:47](1191 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:38, 05:44](1181 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:36, 05:39](1188 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:42, 09:08](1184 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:36, 05:39](1180 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:38, 05:36](1186 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:37, 05:37](1191 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:46, 09:29](1186 MB) - -PASS -- COMPILE 'wam_debug_intel' [12:27, 10:37] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [17:22, 14:27](1682 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [24:42, 23:01] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:23, 04:25](1028 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:26, 06:16](881 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:49, 03:33](878 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [17:28, 13:54](932 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [12:31, 07:09](923 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:28, 03:42](873 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:39, 04:34](791 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:47, 02:09](760 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [25:43, 23:42] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:20, 02:22](1080 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:16, 02:09](1068 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:15, 01:32](958 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [20:38, 19:13] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:07, 04:17](898 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:24, 09:04] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:39, 05:32](1063 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:35, 05:31](1060 MB) -PASS -- TEST 'conus13km_debug_intel' [18:20, 15:08](1152 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [18:16, 15:27](855 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [26:24, 23:23](1136 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:22, 15:04](1219 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:30, 12:57] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:40, 05:33](1090 MB) - -PASS -- COMPILE 'hafsw_intel' [17:32, 15:35] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:47, 06:36](684 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:48, 08:01](1054 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:08, 08:03](742 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:56, 13:25](769 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:21, 14:35](788 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:19, 06:02](463 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:54, 07:40](483 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:28, 03:19](380 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:11, 09:04](437 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:09, 04:27](499 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:25, 04:11](499 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:21, 05:27](562 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:44, 02:02](409 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [15:32, 13:28] ( 1444 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:26, 14:49](614 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [19:34, 17:53] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:28, 08:33](605 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:35, 08:45](791 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:28, 12:21] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:57, 07:12](784 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:30, 13:22] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:48, 07:48](734 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:46, 07:59](717 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:47, 16:11](903 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:31, 16:05] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:03, 04:12](1913 MB) - -PASS -- COMPILE 'atml_intel' [15:30, 13:54] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [08:22, 06:59] ( 866 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [11:28, 09:34] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:30, 04:45](3115 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:19, 05:22](2997 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:55, 05:31](3005 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:25, 07:27] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [28:02, 23:20](4497 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:29, 11:30] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:41, 07:28](3192 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:28, 12:18] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:45, 16:15](1909 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:05, 17:05](1947 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:45, 07:55](1078 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:44, 18:54](1885 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:29, 11:39] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:23, 15:53](1902 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:22, 05:25] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [31:58, 26:11](1949 MB) + +PASS -- COMPILE 's2swa_intel' [13:29, 11:37] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [13:19, 08:55](3228 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:34, 08:39](3224 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:16, 05:24](3154 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:11, 08:51](3244 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:24, 05:17](3171 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [21:31, 17:24](3444 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:49, 08:48](3223 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:24, 07:24](3166 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:34, 08:49](3228 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [23:56, 14:07](4232 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:05, 10:01](4372 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [13:21, 09:06](3199 MB) + +PASS -- COMPILE 's2sw_intel' [12:29, 10:53] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:51, 05:20](1919 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:20, 07:43](1978 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:28, 10:23] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:16, 05:27](1969 MB) + +PASS -- COMPILE 's2s_intel' [12:28, 10:33] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:49, 06:46](2883 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:46, 02:45](2889 MB) +PASS -- TEST 'cpld_restart_c48_intel' [05:44, 02:07](2306 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:32, 15:56] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [12:29, 08:45](3230 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:29, 11:19] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:09, 15:52](1920 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:16, 07:55](1097 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:14, 18:31](1897 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:21, 05:20] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:11, 27:18](1968 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:26, 09:28] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:40, 04:10](666 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:04, 02:38](1557 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:14, 02:53](1564 MB) +PASS -- TEST 'control_latlon_intel' [04:56, 02:37](1566 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:11, 02:44](1562 MB) +PASS -- TEST 'control_c48_intel' [09:29, 06:29](1582 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:06, 06:08](708 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [09:30, 06:39](1589 MB) +PASS -- TEST 'control_c192_intel' [10:30, 07:25](1685 MB) +PASS -- TEST 'control_c384_intel' [13:57, 09:14](1972 MB) +PASS -- TEST 'control_c384gdas_intel' [14:49, 09:22](1175 MB) +PASS -- TEST 'control_stochy_intel' [04:41, 02:09](620 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:38, 01:20](424 MB) +PASS -- TEST 'control_lndp_intel' [04:34, 01:54](617 MB) +PASS -- TEST 'control_iovr4_intel' [04:38, 02:44](619 MB) +PASS -- TEST 'control_iovr5_intel' [05:39, 02:54](614 MB) +PASS -- TEST 'control_p8_intel' [07:30, 03:29](1857 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:37, 03:34](1855 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:34, 03:25](1853 MB) +PASS -- TEST 'control_restart_p8_intel' [06:35, 02:16](1010 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:56, 03:14](1846 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:35, 02:10](1015 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:50, 03:28](1857 MB) +PASS -- TEST 'control_2threads_p8_intel' [10:31, 06:27](1938 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:04, 05:24](1854 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:43, 04:30](1906 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:36, 03:48](1858 MB) +PASS -- TEST 'merra2_thompson_intel' [08:53, 04:04](1858 MB) +PASS -- TEST 'regional_control_intel' [08:01, 05:47](892 MB) +PASS -- TEST 'regional_restart_intel' [05:55, 03:42](875 MB) +PASS -- TEST 'regional_decomp_intel' [07:57, 05:56](894 MB) +PASS -- TEST 'regional_2threads_intel' [10:58, 08:23](1014 MB) +PASS -- TEST 'regional_noquilt_intel' [07:58, 05:31](1223 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:04, 05:41](893 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:55, 05:49](899 MB) +PASS -- TEST 'regional_wofs_intel' [10:03, 07:21](1581 MB) + +PASS -- COMPILE 'rrfs_intel' [10:25, 08:53] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [11:40, 07:28](1001 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:26, 04:47](1159 MB) +PASS -- TEST 'rap_decomp_intel' [10:48, 07:44](1007 MB) +PASS -- TEST 'rap_2threads_intel' [20:52, 16:10](1076 MB) +PASS -- TEST 'rap_restart_intel' [08:45, 04:07](881 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:35, 07:28](1000 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:45, 07:38](997 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:34, 05:37](884 MB) +PASS -- TEST 'hrrr_control_intel' [08:38, 04:06](998 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:37, 04:17](994 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [11:51, 08:08](1068 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:37, 02:17](830 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:38, 07:24](997 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:46, 09:36](1954 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:51, 09:30](1940 MB) + +PASS -- COMPILE 'csawmg_intel' [10:25, 08:11] +PASS -- TEST 'control_csawmg_intel' [09:59, 07:18](956 MB) +PASS -- TEST 'control_ras_intel' [05:33, 03:45](653 MB) + +PASS -- COMPILE 'wam_intel' [10:24, 08:20] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:20, 12:14](1641 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:25, 08:33] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:38, 03:32](1859 MB) +PASS -- TEST 'regional_control_faster_intel' [07:56, 05:29](890 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 07:32] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:10, 03:05](1606 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:12, 02:48](1608 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:39, 03:40](800 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:39, 03:26](804 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:04, 05:26](1109 MB) +PASS -- TEST 'control_ras_debug_intel' [05:39, 03:25](809 MB) +PASS -- TEST 'control_diag_debug_intel' [06:08, 03:24](1661 MB) +PASS -- TEST 'control_debug_p8_intel' [06:00, 03:31](1893 MB) +PASS -- TEST 'regional_debug_intel' [21:18, 18:54](919 MB) +PASS -- TEST 'rap_control_debug_intel' [07:41, 05:46](1188 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:43, 05:46](1181 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:39, 05:47](1184 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:40, 05:42](1187 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:38, 05:42](1191 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:50, 06:08](1269 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:40, 05:57](1193 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:38, 06:05](1189 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:36, 05:55](1194 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:35, 05:51](1192 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:35, 05:46](1182 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:36, 05:41](1185 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:42, 08:58](1183 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:34, 05:46](1183 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:37, 05:48](1187 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:37, 05:50](1188 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:55, 09:40](1189 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:20, 04:30] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [17:17, 14:36](1679 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:24, 08:16] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:23, 04:21](1032 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:36, 06:09](878 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:12, 03:31](878 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [17:35, 13:54](932 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [12:34, 07:16](934 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:05, 03:39](871 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:45, 04:42](791 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:41, 01:59](761 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:26, 08:13] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:21, 02:22](1079 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:06, 02:08](1062 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:05, 01:41](958 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:23, 08:23] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:02, 04:25](902 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 04:44] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:35, 05:36](1068 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:37, 05:34](1065 MB) +PASS -- TEST 'conus13km_debug_intel' [18:23, 15:10](1151 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [18:21, 15:25](828 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [26:22, 23:33](1142 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:15, 15:16](1219 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 04:30] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:40, 05:43](1091 MB) + +PASS -- COMPILE 'hafsw_intel' [11:25, 10:10] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [10:50, 07:19](686 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:44, 08:10](1054 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:10, 08:20](740 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:55, 13:14](764 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:12, 14:47](788 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:20, 06:05](463 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:56, 07:38](481 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:26, 03:26](380 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:10, 09:05](485 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:09, 04:34](497 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:13, 04:19](498 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:22, 05:07](560 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:40, 02:11](408 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:21, 05:12] ( 1444 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:22, 14:43](609 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:25, 09:44] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:23, 08:26](609 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:33, 08:45](785 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:25, 09:50] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:48, 06:56](785 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:24, 09:09] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:51, 07:59](736 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:46, 07:40](716 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:42, 16:16](892 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:26, 10:24] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:02, 04:08](1914 MB) + +PASS -- COMPILE 'atml_intel' [11:25, 09:38] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [07:21, 05:39] ( 866 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [10:24, 08:42] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:14, 04:54](3116 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:11, 05:26](2997 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:52, 05:24](3010 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:20, 04:33] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [27:55, 23:04](4497 MB) SYNOPSIS: -Starting Date/Time: 20250106 15:24:45 -Ending Date/Time: 20250106 17:23:45 -Total Time: 02h:00m:00s +Starting Date/Time: 20250113 18:18:48 +Ending Date/Time: 20250113 19:53:03 +Total Time: 01h:35m:21s Compiles Completed: 33/33 Tests Completed: 157/157 diff --git a/tests/parm/fd_ufs.yaml b/tests/parm/fd_ufs.yaml index 34602a3272..7e382a8fa4 100644 --- a/tests/parm/fd_ufs.yaml +++ b/tests/parm/fd_ufs.yaml @@ -1081,11 +1081,11 @@ field_dictionary: # - standard_name: ps canonical_units: Pa - alias: surface_pressure + alias: air_pressure_at_surface # - standard_name: sphum canonical_units: kg kg-1 - alias: specific_humidity + alias: water_vapor_mixing_ratio_wrt_moist_air # - standard_name: ice_wat canonical_units: kg kg-1 @@ -1113,20 +1113,19 @@ field_dictionary: # - standard_name: phis canonical_units: m2 s-2 - alias: sfc_geopotential_height_times_grav + alias: geopotential_height_times_gravity_at_surface # - standard_name: u_srf canonical_units: m s-1 - alias: surface_eastward_wind + alias: eastward_wind_at_surface # - standard_name: v_srf canonical_units: m s-1 - alias: surface_northward_wind - # + alias: northward_wind_at_surface # - standard_name: t2m canonical_units: K - alias: surface_temperature + alias: air_temperature_at_2m # - standard_name: slmsk canonical_units: flag @@ -1138,6 +1137,7 @@ field_dictionary: alias: sheleg # - standard_name: tsea + alias: skin_temperature_at_surface canonical_units: K description: surface skin temperature # diff --git a/tests/parm/global_control.nml.IN b/tests/parm/global_control.nml.IN index 77f3c513ae..b3ae2bde9e 100644 --- a/tests/parm/global_control.nml.IN +++ b/tests/parm/global_control.nml.IN @@ -173,6 +173,7 @@ random_clds = @[RANDOM_CLDS] trans_trac = @[TRANS_TRAC] cnvcld = @[CNVCLD] + xr_cnvcld = @[XR_CNVCLD] imfshalcnv = @[IMFSHALCNV] imfdeepcnv = @[IMFDEEPCNV] progsigma = @[PROGSIGMA] diff --git a/tests/test_changes.list b/tests/test_changes.list index 619c6f7558..317f529375 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,86 +1,70 @@ -rap_control intel -regional_spp_sppt_shum_skeb intel -rap_decomp intel -rap_2threads intel -rap_restart intel -rap_sfcdiff intel -rap_sfcdiff_decomp intel -rap_sfcdiff_restart intel -hrrr_control intel -hrrr_control_decomp intel -hrrr_control_2threads intel -hrrr_control_restart intel -rap_control_debug intel -hrrr_control_debug intel -hrrr_gf_debug intel -hrrr_c3_debug intel -rap_unified_drag_suite_debug intel -rap_diag_debug intel -rap_cires_ugwp_debug intel -rap_unified_ugwp_debug intel -rap_lndp_debug intel -rap_progcld_thompson_debug intel -rap_sfcdiff_debug intel -rap_clm_lake_debug intel -rap_flake_debug intel -regional_spp_sppt_shum_skeb_dyn32_phy32 intel -rap_control_dyn32_phy32 intel -hrrr_control_dyn32_phy32 intel -rap_2threads_dyn32_phy32 intel -hrrr_control_2threads_dyn32_phy32 intel -hrrr_control_decomp_dyn32_phy32 intel -rap_restart_dyn32_phy32 intel -hrrr_control_restart_dyn32_phy32 intel -conus13km_control intel -conus13km_2threads intel -conus13km_restart_mismatch intel -rap_control_dyn64_phy32 intel -rap_control_debug_dyn32_phy32 intel -hrrr_control_debug_dyn32_phy32 intel -conus13km_debug intel -conus13km_debug_qr intel -conus13km_debug_2threads intel -conus13km_radar_tten_debug intel -rap_control_dyn64_phy32_debug intel -cpld_regional_atm_fbh intel -rap_control_dyn32_phy32 intelllvm -rap_control_dyn64_phy32 intelllvm -rap_control gnu -rap_decomp gnu -rap_2threads gnu -rap_restart gnu -rap_sfcdiff gnu -rap_sfcdiff_decomp gnu -rap_sfcdiff_restart gnu -hrrr_control gnu -hrrr_control_noqr gnu -hrrr_control_2threads gnu -hrrr_control_decomp gnu -hrrr_control_restart gnu -hrrr_control_restart_noqr gnu -rap_control_debug gnu -hrrr_control_debug gnu -hrrr_gf_debug gnu -hrrr_c3_debug gnu -rap_diag_debug gnu -rap_progcld_thompson_debug gnu -rap_flake_debug gnu -rap_clm_lake_debug gnu -rap_control_dyn32_phy32 gnu -hrrr_control_dyn32_phy32 gnu -rap_2threads_dyn32_phy32 gnu -hrrr_control_2threads_dyn32_phy32 gnu -hrrr_control_decomp_dyn32_phy32 gnu -rap_restart_dyn32_phy32 gnu -hrrr_control_restart_dyn32_phy32 gnu -conus13km_control gnu -conus13km_2threads gnu -conus13km_restart_mismatch gnu -rap_control_dyn64_phy32 gnu -rap_control_debug_dyn32_phy32 gnu -hrrr_control_debug_dyn32_phy32 gnu -conus13km_debug gnu -conus13km_debug_qr gnu -conus13km_debug_2threads gnu -conus13km_radar_tten_debug gnu -rap_control_dyn64_phy32_debug gnu +cpld_control_p8_mixedmode intel +cpld_control_gfsv17 intel +cpld_control_gfsv17_iau intel +cpld_restart_gfsv17 intel +cpld_mpi_gfsv17 intel +cpld_control_sfs intel +cpld_debug_gfsv17 intel +cpld_control_p8 intel +cpld_control_p8.v2.sfc intel +cpld_restart_p8 intel +cpld_control_qr_p8 intel +cpld_restart_qr_p8 intel +cpld_2threads_p8 intel +cpld_decomp_p8 intel +cpld_mpi_p8 intel +cpld_control_ciceC_p8 intel +cpld_bmark_p8 intel +cpld_restart_bmark_p8 intel +cpld_s2sa_p8 intel +cpld_control_noaero_p8 intel +cpld_control_nowave_noaero_p8 intel +cpld_debug_p8 intel +cpld_debug_noaero_p8 intel +cpld_control_noaero_p8_agrid intel +cpld_control_c48 intel +cpld_warmstart_c48 intel +cpld_restart_c48 intel +cpld_control_p8_faster intel +cpld_control_pdlib_p8 intel +cpld_restart_pdlib_p8 intel +cpld_mpi_pdlib_p8 intel +cpld_debug_pdlib_p8 intel +control_CubedSphereGrid intel +control_CubedSphereGrid_parallel intel +control_latlon intel +control_wrtGauss_netcdf_parallel intel +control_c48 intel +control_c48_lnd_iau intel +control_c192 intel +control_c384 intel +control_p8 intel +control_p8.v2.sfc intel +control_p8_ugwpv1 intel +control_restart_p8 intel +control_noqr_p8 intel +control_restart_noqr_p8 intel +control_decomp_p8 intel +control_2threads_p8 intel +control_p8_lndp intel +merra2_thompson intel +control_p8_faster intel +control_CubedSphereGrid_debug intel +control_wrtGauss_netcdf_parallel_debug intel +control_debug_p8 intel +atm_ds2s_docn_pcice intel +atm_ds2s_docn_dice intel +control_p8_atmlnd_sbs intel +control_p8_atmlnd intel +control_restart_p8_atmlnd intel +control_p8_atmlnd_debug intel +atmwav_control_noaero_p8 intel +atmaero_control_p8 intel +atmaero_control_p8_rad intel +atmaero_control_p8_rad_micro intel +control_c48 gnu +control_p8 gnu +control_p8_ugwpv1 gnu +control_debug_p8 gnu +cpld_control_nowave_noaero_p8 gnu +cpld_control_pdlib_p8 gnu diff --git a/tests/tests/control_2threads_p8 b/tests/tests/control_2threads_p8 index 22b5a8f3f5..87f0c5a178 100644 --- a/tests/tests/control_2threads_p8 +++ b/tests/tests/control_2threads_p8 @@ -153,6 +153,9 @@ export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. +export K_SPLIT=2 +export N_SPLIT=4 + export SATMEDMF=.true. ESMF_THREADING=false diff --git a/tests/tests/control_CubedSphereGrid b/tests/tests/control_CubedSphereGrid index 52bf0f12c9..43819db746 100644 --- a/tests/tests/control_CubedSphereGrid +++ b/tests/tests/control_CubedSphereGrid @@ -51,5 +51,8 @@ export IOVR=3 export WRITE_DOPOST=.false. +export K_SPLIT=2 +export N_SPLIT=4 + export FV3_RUN=control_run.IN export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_CubedSphereGrid_debug b/tests/tests/control_CubedSphereGrid_debug index 1789845883..a65928335c 100644 --- a/tests/tests/control_CubedSphereGrid_debug +++ b/tests/tests/control_CubedSphereGrid_debug @@ -51,5 +51,8 @@ export IAER=5111 export IOVR=3 export OUTPUT_FH="0 1" +export K_SPLIT=2 +export N_SPLIT=4 + export FV3_RUN=control_run.IN export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_CubedSphereGrid_parallel b/tests/tests/control_CubedSphereGrid_parallel index 6bd709a41a..8dd3f8d857 100644 --- a/tests/tests/control_CubedSphereGrid_parallel +++ b/tests/tests/control_CubedSphereGrid_parallel @@ -42,5 +42,8 @@ export IOVR=3 export HISTORY_FILE_ON_NATIVE_GRID=.true. export WRITE_DOPOST=.true. +export K_SPLIT=2 +export N_SPLIT=4 + export FV3_RUN=control_run.IN export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_debug_p8 b/tests/tests/control_debug_p8 index dc8521b587..7fc6dbe695 100644 --- a/tests/tests/control_debug_p8 +++ b/tests/tests/control_debug_p8 @@ -97,6 +97,9 @@ export DOGP_SGS_CNV=.true. export SATMEDMF=.true. +export K_SPLIT=2 +export N_SPLIT=4 + if [[ " hera orion hercules jet " =~ " ${MACHINE_ID} " ]] ; then ZSTANDARD_LEVEL=5 fi diff --git a/tests/tests/control_decomp_p8 b/tests/tests/control_decomp_p8 index 867e2457c7..2fbc0f9272 100644 --- a/tests/tests/control_decomp_p8 +++ b/tests/tests/control_decomp_p8 @@ -139,4 +139,7 @@ export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. +export K_SPLIT=2 +export N_SPLIT=4 + export SATMEDMF=.true. diff --git a/tests/tests/control_latlon b/tests/tests/control_latlon index a5cbce2863..8dad21374d 100644 --- a/tests/tests/control_latlon +++ b/tests/tests/control_latlon @@ -37,6 +37,8 @@ export IAER=5111 export IOVR=3 export OUTPUT_FH='0 24' +export K_SPLIT=2 +export N_SPLIT=4 export FV3_RUN=control_run.IN export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_noqr_p8 b/tests/tests/control_noqr_p8 index 47e065497c..2b27399384 100644 --- a/tests/tests/control_noqr_p8 +++ b/tests/tests/control_noqr_p8 @@ -137,4 +137,7 @@ export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. +export K_SPLIT=2 +export N_SPLIT=4 + export SATMEDMF=.true. diff --git a/tests/tests/control_p8 b/tests/tests/control_p8 index 5ef5b0acae..2ab20e6bd6 100644 --- a/tests/tests/control_p8 +++ b/tests/tests/control_p8 @@ -138,6 +138,9 @@ export DOGP_SGS_CNV=.true. export SATMEDMF=.true. +export K_SPLIT=2 +export N_SPLIT=4 + if [[ " hera orion hercules jet " =~ " ${MACHINE_ID} " ]] ; then ZSTANDARD_LEVEL=5 fi diff --git a/tests/tests/control_p8_lndp b/tests/tests/control_p8_lndp index 3414969d4f..1333a645be 100644 --- a/tests/tests/control_p8_lndp +++ b/tests/tests/control_p8_lndp @@ -114,4 +114,7 @@ export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. +export K_SPLIT=2 +export N_SPLIT=4 + export SATMEDMF=.true. diff --git a/tests/tests/control_p8_ugwpv1 b/tests/tests/control_p8_ugwpv1 index a580362248..639350bd86 100644 --- a/tests/tests/control_p8_ugwpv1 +++ b/tests/tests/control_p8_ugwpv1 @@ -137,4 +137,7 @@ export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. +export K_SPLIT=2 +export N_SPLIT=4 + export SATMEDMF=.true. diff --git a/tests/tests/control_restart_noqr_p8 b/tests/tests/control_restart_noqr_p8 index 3465569ad6..1db0adb81d 100644 --- a/tests/tests/control_restart_noqr_p8 +++ b/tests/tests/control_restart_noqr_p8 @@ -136,4 +136,7 @@ export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. +export K_SPLIT=2 +export N_SPLIT=4 + export SATMEDMF=.true. diff --git a/tests/tests/control_restart_p8 b/tests/tests/control_restart_p8 index 27808b02c4..8123012298 100644 --- a/tests/tests/control_restart_p8 +++ b/tests/tests/control_restart_p8 @@ -135,4 +135,7 @@ export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. +export K_SPLIT=2 +export N_SPLIT=4 + export SATMEDMF=.true. diff --git a/tests/tests/control_wam b/tests/tests/control_wam index d70921938b..b829fa03b9 100644 --- a/tests/tests/control_wam +++ b/tests/tests/control_wam @@ -109,3 +109,7 @@ export INPUT_NML=wam_v17.nml.IN if [[ " hera orion hercules gaeac5 gaeac6 jet " =~ " ${MACHINE_ID} " ]] ; then ZSTANDARD_LEVEL=5 fi + +if [[ $MACHINE_ID = hera ]]; then + WLCLK=45 +fi diff --git a/tests/tests/control_wrtGauss_netcdf_parallel b/tests/tests/control_wrtGauss_netcdf_parallel index 8ee30f0ad1..36d3f59533 100644 --- a/tests/tests/control_wrtGauss_netcdf_parallel +++ b/tests/tests/control_wrtGauss_netcdf_parallel @@ -37,5 +37,8 @@ export OUTPUT_FILE="'netcdf_parallel' 'netcdf_parallel'" export IDEFLATE=1 export QUANTIZE_NSD=14 +export K_SPLIT=2 +export N_SPLIT=4 + export FV3_RUN=control_run.IN export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_wrtGauss_netcdf_parallel_debug b/tests/tests/control_wrtGauss_netcdf_parallel_debug index 8d29303cef..de4cbd882a 100644 --- a/tests/tests/control_wrtGauss_netcdf_parallel_debug +++ b/tests/tests/control_wrtGauss_netcdf_parallel_debug @@ -34,5 +34,8 @@ export IDEFLATE=1 export QUANTIZE_NSD=14 export OUTPUT_FH="0 1" +export K_SPLIT=2 +export N_SPLIT=4 + export FV3_RUN=control_run.IN export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/cpld_control_gfsv17 b/tests/tests/cpld_control_gfsv17 index fe6a489aa4..9f06aa9890 100644 --- a/tests/tests/cpld_control_gfsv17 +++ b/tests/tests/cpld_control_gfsv17 @@ -117,11 +117,7 @@ export WW3_RSTFLDS="ice" export PROGSIGMA=.true. export IOPT_DIAG=2 -if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then - WLCLK=40 -fi - -export K_SPLIT=2 +export K_SPLIT=4 export N_SPLIT=5 # HR4 GFSv17 GWD update diff --git a/tests/tests/cpld_control_gfsv17_iau b/tests/tests/cpld_control_gfsv17_iau index 1a7afd6323..33f41626b7 100644 --- a/tests/tests/cpld_control_gfsv17_iau +++ b/tests/tests/cpld_control_gfsv17_iau @@ -129,9 +129,8 @@ export IAU_INC_FILES="'fv_increment3.nc','fv_increment6.nc','fv_increment9.nc'" export ODA_INCUPD="True" export ODA_INCUPD_UV="True" -if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then - WLCLK=40 -fi +export K_SPLIT=4 +export N_SPLIT=5 # HR4 GFSv17 GWD update export DO_GWD_OPT_PSL=.true. diff --git a/tests/tests/cpld_debug_gfsv17 b/tests/tests/cpld_debug_gfsv17 index 457a73b303..47bcbfa552 100644 --- a/tests/tests/cpld_debug_gfsv17 +++ b/tests/tests/cpld_debug_gfsv17 @@ -56,7 +56,6 @@ export LIST_FILES="sfcf003.tile1.nc \ ufs.cpld.ww3.r.2021-03-22-32400.nc \ 20210322.090000.out_pnt.ww3 \ 20210322.090000.out_grd.ww3 " -export DT_ATMOS=360 export_fv3 export_ugwpv1 export_cpl @@ -106,21 +105,15 @@ export WW3_RSTFLDS="ice" export FV3_RUN=cpld_control_run.IN -export K_SPLIT=2 +export K_SPLIT=4 export N_SPLIT=5 -if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then - WLCLK=40 -fi if [[ $MACHINE_ID = gaeac5 ]] && [[ $RT_COMPILER = intelllvm ]]; then WLCLK=40 fi if [[ $MACHINE_ID = gaeac6 ]] && [[ $RT_COMPILER = intelllvm ]]; then WLCLK=40 fi -if [[ $MACHINE_ID = orion ]]; 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 685c8d4b57..db129626c4 100644 --- a/tests/tests/cpld_debug_pdlib_p8 +++ b/tests/tests/cpld_debug_pdlib_p8 @@ -57,7 +57,6 @@ export LIST_FILES="sfcf003.tile1.nc \ 20210322.090000.out_pnt.ww3 \ 20210322.090000.out_grd.ww3 " -export DT_ATMOS=720 export_fv3 export_ugwpv1 export_cpl @@ -100,15 +99,12 @@ export UFS_CONFIGURE=ufs.configure.s2sw_fast.IN export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = hera ]] || [[ $MACHINE_ID = jet ]]; then +if [[ $MACHINE_ID = jet || $MACHINE_ID = orion ]]; then WLCLK=50 fi if [[ $MACHINE_ID = hercules && $RT_COMPILER = intelllvm ]]; then WLCLK=50 fi -if [[ $MACHINE_ID = orion ]]; then - WLCLK=50 -fi if [[ $MACHINE_ID = gaeac5 ]]; then WLCLK=50 fi @@ -121,7 +117,7 @@ fi # set component and coupling timesteps due to long # runtime -export K_SPLIT=2 +export K_SPLIT=4 export N_SPLIT=5 # HR4 GFSv17 GWD update diff --git a/tests/tests/cpld_mpi_gfsv17 b/tests/tests/cpld_mpi_gfsv17 index 8de9119ba0..8e1ff12745 100644 --- a/tests/tests/cpld_mpi_gfsv17 +++ b/tests/tests/cpld_mpi_gfsv17 @@ -123,10 +123,9 @@ export WW3_RSTFLDS="ice" export PROGSIGMA=.true. export IOPT_DIAG=2 -export K_SPLIT=2 +export K_SPLIT=4 export N_SPLIT=5 - # HR4 GFSv17 GWD update export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. diff --git a/tests/tests/cpld_restart_gfsv17 b/tests/tests/cpld_restart_gfsv17 index 98d011f61d..2732ba4b18 100644 --- a/tests/tests/cpld_restart_gfsv17 +++ b/tests/tests/cpld_restart_gfsv17 @@ -122,7 +122,7 @@ export WW3_RSTFLDS="ice" export PROGSIGMA=.true. export IOPT_DIAG=2 -export K_SPLIT=2 +export K_SPLIT=4 export N_SPLIT=5 # HR4 GFSv17 GWD update diff --git a/tests/tests/cpld_s2sa_p8 b/tests/tests/cpld_s2sa_p8 index 80fc63eb56..f47df4c534 100644 --- a/tests/tests/cpld_s2sa_p8 +++ b/tests/tests/cpld_s2sa_p8 @@ -79,6 +79,9 @@ export UFS_CONFIGURE=ufs.configure.s2sa.IN export FV3_RUN=cpld_control_run.IN +export K_SPLIT=4 +export N_SPLIT=5 + # HR4 GFSv17 GWD update export DO_UGWP_V0=.false. export DO_UGWP_V1=.true. From 3a5e52ee1fb055e7c88a76aa1797450f01281a53 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Fri, 17 Jan 2025 12:14:44 -0500 Subject: [PATCH 24/24] Ninth reconciliation PR from production/RRFS.v1 + Add CCPP host variable to track initialization of GFS_phys_time_vary (#2544) + develop of WW3 up to 2024-01-11 to dev/ufs-weather-model #1342 (#2549) (#2532) * UFSWM - fix REFS ensemble member and add GF convection cold start parameter; Add CCPP host variable to track initialization of GFS_phys_time_vary; Update WW3 with develop up to 2024-01-11 * FV3 - fix REFS ensemble member and add GF convection cold start parameter; Add CCPP host variable to track initialization of GFS_phys_time_vary, fix bug for MP Thompson init flag * ccpp-physics - fix REFS ensemble member and add GF convection cold start parameter; In GFS_phys_time_vary.fv3: make is_initialized a host model variable to support multiple instances of CCPP physics in a model run * WW3 - Update one commit hash --------- Co-authored-by: Dom Heinzeller Co-authored-by: Dom Heinzeller Co-authored-by: Jessica Meixner --- FV3 | 2 +- WW3 | 2 +- tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 30 +- tests/logs/RegressionTests_acorn.log | 516 +++++------ tests/logs/RegressionTests_derecho.log | 554 ++++++------ tests/logs/RegressionTests_gaeac5.log | 589 ++++++------ tests/logs/RegressionTests_gaeac6.log | 557 ++++++------ tests/logs/RegressionTests_hera.log | 809 ++++++++--------- tests/logs/RegressionTests_hercules.log | 855 ++++++++---------- tests/logs/RegressionTests_jet.log | 497 +++++----- tests/logs/RegressionTests_orion.log | 576 ++++++------ tests/logs/RegressionTests_wcoss2.log | 460 +++++----- tests/rt.sh | 2 +- tests/test_changes.list | 70 -- 16 files changed, 2685 insertions(+), 2906 deletions(-) diff --git a/FV3 b/FV3 index 7d998809dc..b40f99dd17 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 7d998809dc84996248f93ced49730cfe92eae7cf +Subproject commit b40f99dd1701569ee27b01d53c3c8f32f4d33951 diff --git a/WW3 b/WW3 index 29063ec7b6..d61564b3c4 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit 29063ec7b631d3a967172e8c45c5af13a18e0a82 +Subproject commit d61564b3c4c3e1e3b6280fd8a2f95ad3f74a9878 diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index c7c2c0066b..6ef90c4656 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Thu Jan 9 04:34:01 UTC 2025 +Thu Jan 16 02:20:50 UTC 2025 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_2139756/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1016055/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 = 261.834016 - 0: The maximum resident set size (KB) = 1442468 + 0: The total amount of wall time = 261.027190 + 0: The maximum resident set size (KB) = 1441528 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_2139756/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1016055/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 = 877.474084 - 0: The maximum resident set size (KB) = 1409312 + 0: The total amount of wall time = 861.499721 + 0: The maximum resident set size (KB) = 1437744 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_2139756/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1016055/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 = 235.774551 - 0: The maximum resident set size (KB) = 1405232 + 0: The total amount of wall time = 234.417104 + 0: The maximum resident set size (KB) = 1432200 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_2139756/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1016055/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 = 234.823585 - 0: The maximum resident set size (KB) = 1395932 + 0: The total amount of wall time = 232.294417 + 0: The maximum resident set size (KB) = 1411528 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_2139756/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1016055/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 = 234.408969 - 0: The maximum resident set size (KB) = 1409792 + 0: The total amount of wall time = 237.487397 + 0: The maximum resident set size (KB) = 1430640 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_2139756/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1016055/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 = 234.431525 - 0: The maximum resident set size (KB) = 1420012 + 0: The total amount of wall time = 234.983976 + 0: The maximum resident set size (KB) = 1431388 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_2139756/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1016055/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 = 233.407197 - 0: The maximum resident set size (KB) = 1409984 + 0: The total amount of wall time = 234.798466 + 0: The maximum resident set size (KB) = 1420696 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Jan 9 05:49:41 UTC 2025 -Elapsed time: 01h:15m:41s. Have a nice day! +Thu Jan 16 03:29:59 UTC 2025 +Elapsed time: 01h:09m:10s. 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 05fc14e4ab..0db7bdfb12 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 Jan 9 02:59:38 UTC 2025 +Thu Jan 16 00:45:58 UTC 2025 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_1874715/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_558058/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 = 2326.114069 - 0: The maximum resident set size (KB) = 1489800 + 0: The total amount of wall time = 2356.533795 + 0: The maximum resident set size (KB) = 1502332 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_1874715/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_558058/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 = 790.318058 - 0: The maximum resident set size (KB) = 1482288 + 0: The total amount of wall time = 723.863649 + 0: The maximum resident set size (KB) = 1515736 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_1874715/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_558058/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 = 705.815910 - 0: The maximum resident set size (KB) = 1483264 + 0: The total amount of wall time = 651.528034 + 0: The maximum resident set size (KB) = 1498716 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Jan 9 04:34:00 UTC 2025 -Elapsed time: 01h:34m:22s. Have a nice day! +Thu Jan 16 02:20:48 UTC 2025 +Elapsed time: 01h:34m:50s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index c8b8760531..45b40ea16c 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Thu Jan 9 00:22:22 UTC 2025 +Wed Jan 15 22:10:56 UTC 2025 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_1259269/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_137260/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 = 1395.474569 - 0: The maximum resident set size (KB) = 748696 + 0: The total amount of wall time = 1456.664645 + 0: The maximum resident set size (KB) = 738576 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_1259269/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_137260/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 = 2283.182601 - 0: The maximum resident set size (KB) = 711084 + 0: The total amount of wall time = 2198.663168 + 0: The maximum resident set size (KB) = 722576 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_1259269/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_137260/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 = 2207.702175 - 0: The maximum resident set size (KB) = 692680 + 0: The total amount of wall time = 2203.598340 + 0: The maximum resident set size (KB) = 724300 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_1259269/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_137260/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 = 2278.935561 - 0: The maximum resident set size (KB) = 711160 + 0: The total amount of wall time = 2200.940827 + 0: The maximum resident set size (KB) = 714264 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Jan 9 02:59:38 UTC 2025 -Elapsed time: 02h:37m:17s. Have a nice day! +Thu Jan 16 00:45:58 UTC 2025 +Elapsed time: 02h:35m:04s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index d07115ab49..b3091a5d86 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,7 +1,7 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -652433c9ba641f105fbac487d9515284cb22370e +b8c45aa9505538b1212b9b6069ad21d5ee2a6706 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 7d998809dc84996248f93ced49730cfe92eae7cf FV3 (heads/develop) + 312657ab886269bc71d239abfb4dc2c86d1b9f21 FV3 (remotes/origin/rrfsv1-to-ufs/dev9) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 24643b0e0f9754d76176d60ce155bf8956bfb44d FV3/ccpp/physics (EP4-1092-g24643b0e) + 0b426618bef07638c3e095755c831af93c7f1aa4 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5544-g0b426618) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -27,7 +27,7 @@ Submodule hashes used in testing: 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) + 174cf7b56f864e260f70f801f4fa3d70c7fac7e9 WW3 (remotes/origin/devufs20241211develop20240111) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -39,267 +39,267 @@ 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-20250107 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_571774 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3572326 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:26, 11:46] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:29, 06:49](3192 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:26, 12:12] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:25, 15:37](1905 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:35, 16:47](1948 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [18:19, 07:43](1070 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:15, 18:19](1882 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:27, 11:51] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [25:34, 15:17](1901 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:31] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [30:25, 25:59](1951 MB) - -PASS -- COMPILE 's2swa_intel' [13:27, 11:38] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:04, 08:37](3228 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:31, 08:42](3223 MB) -PASS -- TEST 'cpld_restart_p8_intel' [17:26, 05:08](3156 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [17:58, 08:34](3246 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [15:55, 05:18](3171 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [27:32, 16:57](3449 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [15:16, 08:25](3219 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [17:55, 07:14](3170 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:20, 08:36](3227 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [13:13, 08:15](3207 MB) - -PASS -- COMPILE 's2sw_intel' [12:26, 11:01] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:31, 04:51](1917 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:58, 07:20](1980 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:26, 10:06] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:52, 05:02](1976 MB) - -PASS -- COMPILE 's2s_intel' [12:25, 10:18] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:33, 06:01](2879 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:30, 02:10](2891 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:07, 01:23](2306 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:31, 15:31] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [17:11, 08:36](3227 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:28, 11:37] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:00, 15:37](1928 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:59, 07:47](1092 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [32:02, 18:10](1898 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 05:09] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [45:19, 27:18](1975 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:28] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [19:46, 03:56](660 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [18:07, 02:40](1557 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [17:07, 02:40](1568 MB) -PASS -- TEST 'control_latlon_intel' [16:01, 02:36](1564 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [14:09, 02:38](1567 MB) -PASS -- TEST 'control_c48_intel' [15:19, 06:24](1587 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:59, 06:00](706 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [13:20, 06:22](1578 MB) -PASS -- TEST 'control_c192_intel' [14:15, 07:10](1687 MB) -PASS -- TEST 'control_c384_intel' [04:19, 08:43](1969 MB) -PASS -- TEST 'control_c384gdas_intel' [07:16, 09:12](1164 MB) -PASS -- TEST 'control_stochy_intel' [06:34, 01:52](615 MB) -PASS -- TEST 'control_stochy_restart_intel' [05:34, 01:14](424 MB) -PASS -- TEST 'control_lndp_intel' [05:31, 01:41](615 MB) -PASS -- TEST 'control_iovr4_intel' [07:35, 02:44](611 MB) -PASS -- TEST 'control_iovr5_intel' [07:35, 02:33](613 MB) -PASS -- TEST 'control_p8_intel' [10:07, 03:05](1861 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [09:22, 03:05](1855 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [09:20, 02:59](1850 MB) -PASS -- TEST 'control_restart_p8_intel' [05:38, 01:54](1007 MB) -PASS -- TEST 'control_noqr_p8_intel' [08:52, 02:53](1842 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:39, 01:46](1012 MB) -PASS -- TEST 'control_decomp_p8_intel' [08:40, 03:05](1853 MB) -PASS -- TEST 'control_2threads_p8_intel' [13:25, 05:50](1931 MB) -PASS -- TEST 'control_p8_lndp_intel' [10:59, 04:57](1853 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [11:27, 04:07](1909 MB) -PASS -- TEST 'control_p8_mynn_intel' [11:14, 03:19](1857 MB) -PASS -- TEST 'merra2_thompson_intel' [11:52, 03:33](1854 MB) -PASS -- TEST 'regional_control_intel' [08:56, 05:12](887 MB) -PASS -- TEST 'regional_restart_intel' [05:45, 03:00](875 MB) -PASS -- TEST 'regional_decomp_intel' [07:54, 05:34](895 MB) -PASS -- TEST 'regional_2threads_intel' [11:51, 07:32](1015 MB) -PASS -- TEST 'regional_noquilt_intel' [08:49, 05:12](1214 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:49, 05:14](890 MB) -PASS -- TEST 'regional_wofs_intel' [10:51, 07:00](1584 MB) - -PASS -- COMPILE 'rrfs_intel' [10:24, 08:48] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [20:37, 07:19](1002 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [25:36, 04:32](1160 MB) -PASS -- TEST 'rap_decomp_intel' [20:45, 07:36](999 MB) -PASS -- TEST 'rap_2threads_intel' [26:41, 15:57](1083 MB) -PASS -- TEST 'rap_restart_intel' [08:27, 03:53](884 MB) -PASS -- TEST 'rap_sfcdiff_intel' [18:40, 07:11](999 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [18:34, 07:31](997 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:28, 05:36](886 MB) -PASS -- TEST 'hrrr_control_intel' [18:38, 03:52](998 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [22:41, 04:04](992 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [22:41, 08:01](1068 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:41, 02:08](833 MB) -PASS -- TEST 'rrfs_v1beta_intel' [17:29, 07:16](994 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:43, 09:29](1956 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:40, 09:12](1946 MB) - -PASS -- COMPILE 'csawmg_intel' [09:23, 08:06] -PASS -- TEST 'control_csawmg_intel' [13:59, 06:56](952 MB) -PASS -- TEST 'control_ras_intel' [09:35, 03:39](653 MB) - -PASS -- COMPILE 'wam_intel' [10:23, 08:17] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [16:09, 12:12](1645 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:25, 08:26] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [08:24, 03:07](1857 MB) -PASS -- TEST 'regional_control_faster_intel' [06:50, 04:58](886 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:22, 07:37] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:55, 02:49](1606 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:04, 02:50](1612 MB) -PASS -- TEST 'control_stochy_debug_intel' [07:33, 03:35](807 MB) -PASS -- TEST 'control_lndp_debug_intel' [08:32, 03:18](807 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:51, 04:59](1112 MB) -PASS -- TEST 'control_ras_debug_intel' [06:30, 03:22](811 MB) -PASS -- TEST 'control_diag_debug_intel' [06:01, 03:20](1655 MB) -PASS -- TEST 'control_debug_p8_intel' [05:49, 03:13](1904 MB) -PASS -- TEST 'regional_debug_intel' [21:10, 18:12](931 MB) -PASS -- TEST 'rap_control_debug_intel' [08:36, 05:37](1189 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:35, 05:31](1183 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:33, 05:32](1188 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [09:35, 05:46](1190 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:32, 05:44](1189 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:46, 05:51](1270 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:34, 05:50](1187 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:32, 05:43](1189 MB) -PASS -- TEST 'rap_lndp_debug_intel' [09:34, 05:51](1192 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:32, 05:36](1188 MB) -PASS -- TEST 'rap_noah_debug_intel' [09:34, 05:33](1183 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [10:39, 05:41](1187 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:38, 08:59](1183 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [10:35, 05:39](1181 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [10:35, 05:32](1187 MB) -PASS -- TEST 'rap_flake_debug_intel' [09:34, 05:32](1190 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [17:41, 09:34](1191 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:19, 04:27] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [20:11, 14:10](1687 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 08:08] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:21, 04:18](1030 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [13:19, 06:12](876 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [12:38, 03:17](875 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [21:28, 13:45](922 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:06, 07:10](919 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [11:02, 03:24](870 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:30, 04:36](789 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:32, 01:52](759 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:21, 08:07] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [07:13, 02:26](1080 MB) -PASS -- TEST 'conus13km_2threads_intel' [08:04, 01:57](1057 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:56, 01:39](958 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:23, 08:08] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:57, 04:14](902 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:20, 04:32] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:35, 05:29](1065 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:39, 05:31](1064 MB) -PASS -- TEST 'conus13km_debug_intel' [21:15, 15:07](1156 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [19:17, 15:08](836 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [28:19, 23:17](1153 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:14, 15:09](1222 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:22] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:36, 05:34](1087 MB) - -PASS -- COMPILE 'hafsw_intel' [14:27, 10:02] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [25:58, 06:28](689 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [28:01, 06:04](1048 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:00, 07:39](730 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:50, 12:48](770 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:08, 14:11](792 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:12, 05:55](464 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [19:57, 07:20](512 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [20:28, 03:19](376 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [38:13, 08:35](437 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:03, 04:10](498 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [10:06, 03:54](498 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [31:39, 05:07](559 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [15:46, 01:58](403 MB) -PASS -- TEST 'gnv1_nested_intel' [13:32, 05:39](1698 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:23, 04:51] ( 1444 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [41:45, 14:37](678 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [14:27, 09:41] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [36:44, 08:20](711 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [37:52, 08:22](782 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [18:31, 09:56] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [36:08, 06:30](780 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:31, 09:04] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [13:45, 07:17](735 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:43, 07:15](715 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:32, 16:07](898 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [18:31, 09:14] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:25, 02:43](766 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:24, 01:49](755 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:25, 02:35](645 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:25, 02:38](646 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:22, 02:46](642 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:24, 02:49](767 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:22, 02:41](767 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:22, 02:31](642 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:33, 06:05](688 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:25, 06:15](672 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:20, 02:48](765 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:27, 04:45](2031 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:27, 04:38](2031 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [19:33, 09:25] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:23, 02:44](764 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [09:22, 00:51] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:38, 01:18](301 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:32, 01:20](447 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:35, 01:05](450 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:32, 10:04] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:38, 03:57](1917 MB) - -PASS -- COMPILE 'atml_intel' [18:34, 09:26] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:28, 05:16](1879 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:26, 05:24](1879 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:01, 03:06](1025 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:28, 05:28] ( 866 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:27, 06:56](1921 MB) - -PASS -- COMPILE 'atmw_intel' [15:28, 08:50] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:18, 02:12](1873 MB) - -PASS -- COMPILE 'atmaero_intel' [14:30, 08:35] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [10:58, 04:31](3115 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:58, 05:07](2997 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:44, 05:12](3005 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [10:24, 04:27] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [27:39, 22:42](4488 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:26, 11:43] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:17, 06:56](3192 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:26, 12:16] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:15, 15:41](1904 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [29:37, 16:45](1949 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [20:21, 07:35](1070 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:04, 18:31](1881 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:26, 12:15] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:16, 15:27](1909 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:30] ( 1502 warnings 1991 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [30:33, 25:44](1942 MB) + +PASS -- COMPILE 's2swa_intel' [14:28, 12:25] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [18:03, 08:34](3227 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:27, 08:35](3225 MB) +PASS -- TEST 'cpld_restart_p8_intel' [17:16, 05:08](3156 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [17:56, 08:36](3245 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [17:23, 05:09](3171 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [26:27, 16:57](3452 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [15:13, 08:36](3220 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [28:21, 07:10](3168 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:24, 08:45](3227 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [15:08, 08:26](3207 MB) + +PASS -- COMPILE 's2sw_intel' [12:26, 10:48] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:30, 04:51](1928 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:00, 07:05](1984 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:26, 10:20] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:57, 05:00](1967 MB) + +PASS -- COMPILE 's2s_intel' [12:27, 10:21] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:32, 06:11](2884 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:30, 02:15](2893 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:08, 01:30](2309 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:33, 15:40] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [20:24, 08:29](3228 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:28, 11:53] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:49, 15:41](1918 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [19:08, 07:50](1103 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [32:01, 18:20](1899 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:12] ( 1502 warnings 1991 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [48:18, 26:58](1967 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:37] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [14:40, 03:57](660 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [14:07, 02:33](1560 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [13:08, 02:40](1567 MB) +PASS -- TEST 'control_latlon_intel' [13:57, 02:38](1565 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [12:12, 02:45](1564 MB) +PASS -- TEST 'control_c48_intel' [16:22, 06:26](1581 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [15:01, 06:03](702 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [15:16, 06:30](1586 MB) +PASS -- TEST 'control_c192_intel' [14:18, 07:07](1683 MB) +PASS -- TEST 'control_c384_intel' [08:24, 08:48](1972 MB) +PASS -- TEST 'control_c384gdas_intel' [15:24, 09:13](1163 MB) +PASS -- TEST 'control_stochy_intel' [09:36, 01:56](615 MB) +PASS -- TEST 'control_stochy_restart_intel' [04:34, 01:14](423 MB) +PASS -- TEST 'control_lndp_intel' [08:34, 01:43](615 MB) +PASS -- TEST 'control_iovr4_intel' [08:37, 02:35](611 MB) +PASS -- TEST 'control_iovr5_intel' [08:37, 02:38](610 MB) +PASS -- TEST 'control_p8_intel' [10:22, 03:01](1849 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [10:22, 03:07](1855 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [11:23, 03:03](1850 MB) +PASS -- TEST 'control_restart_p8_intel' [05:18, 01:53](1005 MB) +PASS -- TEST 'control_noqr_p8_intel' [10:39, 03:05](1855 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:36, 01:52](1018 MB) +PASS -- TEST 'control_decomp_p8_intel' [11:04, 03:02](1854 MB) +PASS -- TEST 'control_2threads_p8_intel' [14:22, 05:51](1933 MB) +PASS -- TEST 'control_p8_lndp_intel' [10:58, 05:02](1851 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [10:25, 04:08](1907 MB) +PASS -- TEST 'control_p8_mynn_intel' [08:12, 03:17](1857 MB) +PASS -- TEST 'merra2_thompson_intel' [09:51, 03:31](1854 MB) +PASS -- TEST 'regional_control_intel' [07:53, 05:15](887 MB) +PASS -- TEST 'regional_restart_intel' [05:52, 03:07](874 MB) +PASS -- TEST 'regional_decomp_intel' [07:47, 05:28](885 MB) +PASS -- TEST 'regional_2threads_intel' [11:51, 07:34](1010 MB) +PASS -- TEST 'regional_noquilt_intel' [07:50, 05:03](1218 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:50, 05:15](887 MB) +PASS -- TEST 'regional_wofs_intel' [10:53, 07:00](1584 MB) + +PASS -- COMPILE 'rrfs_intel' [10:24, 08:45] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [18:33, 07:16](1000 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [24:35, 04:34](1158 MB) +PASS -- TEST 'rap_decomp_intel' [21:39, 07:39](1003 MB) +PASS -- TEST 'rap_2threads_intel' [26:46, 15:59](1078 MB) +PASS -- TEST 'rap_restart_intel' [09:28, 03:49](881 MB) +PASS -- TEST 'rap_sfcdiff_intel' [18:34, 07:12](1000 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [18:43, 07:32](997 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [11:28, 05:27](886 MB) +PASS -- TEST 'hrrr_control_intel' [21:55, 03:49](998 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [20:43, 03:55](992 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [25:42, 08:01](1067 MB) +PASS -- TEST 'hrrr_control_restart_intel' [06:39, 02:07](833 MB) +PASS -- TEST 'rrfs_v1beta_intel' [18:30, 07:16](995 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [25:53, 09:37](1957 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [24:52, 09:16](1943 MB) + +PASS -- COMPILE 'csawmg_intel' [09:22, 08:04] +PASS -- TEST 'control_csawmg_intel' [17:01, 06:59](952 MB) +PASS -- TEST 'control_ras_intel' [12:39, 03:34](655 MB) + +PASS -- COMPILE 'wam_intel' [10:23, 08:15] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:07, 12:08](1639 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:23, 08:26] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:22, 03:16](1849 MB) +PASS -- TEST 'regional_control_faster_intel' [06:54, 05:08](892 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 07:39] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:56, 02:56](1606 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:06, 02:42](1612 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:31, 03:41](808 MB) +PASS -- TEST 'control_lndp_debug_intel' [06:31, 03:12](804 MB) +PASS -- TEST 'control_csawmg_debug_intel' [09:53, 04:56](1111 MB) +PASS -- TEST 'control_ras_debug_intel' [06:32, 03:20](811 MB) +PASS -- TEST 'control_diag_debug_intel' [07:02, 03:21](1663 MB) +PASS -- TEST 'control_debug_p8_intel' [06:53, 03:12](1906 MB) +PASS -- TEST 'regional_debug_intel' [22:07, 18:31](940 MB) +PASS -- TEST 'rap_control_debug_intel' [09:34, 05:44](1189 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:37, 05:38](1184 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:35, 05:50](1188 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [09:35, 05:42](1188 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:33, 05:43](1190 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:52, 05:57](1273 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:34, 05:49](1190 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:32, 05:44](1188 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:34, 05:39](1191 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:33, 05:41](1188 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:33, 05:41](1184 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [09:35, 05:40](1190 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:39, 09:08](1183 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [09:34, 05:45](1181 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [11:38, 05:43](1189 MB) +PASS -- TEST 'rap_flake_debug_intel' [10:35, 05:49](1189 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [16:40, 09:44](1190 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:19, 04:25] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [23:15, 14:14](1685 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 08:07] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [15:25, 04:19](1040 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [13:21, 06:06](876 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [11:27, 03:27](871 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [20:23, 13:47](934 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [13:01, 07:05](928 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:43, 03:33](868 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:35, 04:40](790 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:34, 02:00](762 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:23, 08:09] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [07:13, 02:15](1079 MB) +PASS -- TEST 'conus13km_2threads_intel' [07:04, 02:00](1062 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:57, 01:41](958 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:23, 08:13] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:53, 04:13](897 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 04:30] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:33, 05:28](1059 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:35, 05:32](1063 MB) +PASS -- TEST 'conus13km_debug_intel' [19:19, 14:48](1156 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [19:12, 14:55](823 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [28:19, 23:06](1146 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:12, 14:53](1241 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:18] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:35, 05:36](1088 MB) + +PASS -- COMPILE 'hafsw_intel' [11:25, 10:01] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [22:55, 06:19](688 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [26:59, 05:59](1044 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [15:03, 07:42](728 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [19:51, 13:04](770 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [28:13, 14:21](946 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [12:11, 05:45](465 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [25:00, 07:24](481 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [21:32, 03:27](376 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [46:17, 08:40](438 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:03, 04:14](495 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:04, 03:55](494 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [25:32, 05:06](564 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [19:51, 01:59](406 MB) +PASS -- TEST 'gnv1_nested_intel' [10:30, 05:24](1698 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:21, 04:49] ( 1446 warnings 1494 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [35:38, 14:32](618 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:27, 09:38] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [29:37, 08:06](610 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [32:48, 08:17](783 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:25, 09:52] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [32:07, 06:39](781 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:26, 09:08] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:43, 07:25](731 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:40, 07:25](714 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:33, 16:15](896 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [15:29, 09:24] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:24, 02:40](766 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:26, 01:48](754 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:23, 02:32](644 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:24, 02:37](645 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:24, 02:34](648 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:24, 02:43](765 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:24, 02:52](767 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:23, 02:42](643 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:26, 06:15](693 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:20, 06:07](675 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:22, 02:48](755 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:27, 04:41](2034 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:26, 04:41](2034 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [18:34, 09:18] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:23, 02:48](753 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [10:24, 00:52] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:40, 01:19](311 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [06:34, 01:24](448 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [07:38, 01:01](447 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [19:34, 09:57] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:37, 04:04](1915 MB) + +PASS -- COMPILE 'atml_intel' [18:33, 09:24] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [13:34, 05:22](1879 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [12:28, 05:17](1877 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [11:06, 03:02](1035 MB) + +PASS -- COMPILE 'atml_debug_intel' [12:27, 05:18] ( 866 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [14:30, 06:39](1921 MB) + +PASS -- COMPILE 'atmw_intel' [14:29, 09:02] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:17, 02:14](1878 MB) + +PASS -- COMPILE 'atmaero_intel' [15:28, 08:38] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [12:01, 04:33](3115 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [13:03, 05:09](2996 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [12:45, 05:10](3006 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [12:25, 04:26] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [32:45, 22:26](4569 MB) SYNOPSIS: -Starting Date/Time: 20250113 15:58:21 -Ending Date/Time: 20250113 17:57:29 -Total Time: 01h:59m:38s +Starting Date/Time: 20250115 16:11:45 +Ending Date/Time: 20250115 18:17:25 +Total Time: 02h:06m:09s Compiles Completed: 37/37 Tests Completed: 177/177 diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index aa705fccf6..dd904daee4 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,7 +1,7 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -b5b4558a9da026e48f0ebaca8c082af7b7e7915d +b8c45aa9505538b1212b9b6069ad21d5ee2a6706 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 7d998809dc84996248f93ced49730cfe92eae7cf FV3 (heads/develop) + 312657ab886269bc71d239abfb4dc2c86d1b9f21 FV3 (remotes/origin/rrfsv1-to-ufs/dev9) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 24643b0e0f9754d76176d60ce155bf8956bfb44d FV3/ccpp/physics (EP4-1092-g24643b0e) + 0b426618bef07638c3e095755c831af93c7f1aa4 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5544-g0b426618) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -27,7 +27,7 @@ Submodule hashes used in testing: 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) + 174cf7b56f864e260f70f801f4fa3d70c7fac7e9 WW3 (remotes/origin/devufs20241211develop20240111) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -39,286 +39,286 @@ 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-20250107 -COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_47098 +COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_21130 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [40:26, 21:27] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [28:43, 06:27](3201 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [42:27, 23:35] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [33:57, 14:18](1910 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:41, 15:18](1955 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:19, 07:11](1068 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:47, 16:03](1890 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [42:26, 23:34] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [33:19, 14:03](1911 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [30:23, 11:45] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:10, 23:28](1942 MB) - -PASS -- COMPILE 's2swa_intel' [40:26, 21:33] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [18:59, 08:12](3224 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:45, 08:16](3220 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:36, 04:54](3151 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [29:59, 08:24](3248 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:32, 05:00](3176 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [57:35, 13:46](3804 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:22, 07:55](3214 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [16:19, 06:39](3531 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [30:04, 08:13](3230 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:34, 09:19](3815 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [14:08, 06:17](3617 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [29:50, 10:45](4536 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [26:08, 06:59](4671 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:15, 08:04](3200 MB) - -PASS -- COMPILE 's2sw_intel' [38:26, 19:47] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:36, 04:57](1913 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:49, 06:50](1976 MB) - -PASS -- COMPILE 's2swa_debug_intel' [30:26, 11:36] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [17:57, 12:57](3305 MB) - -PASS -- COMPILE 's2sw_debug_intel' [29:23, 11:05] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:25, 06:03](1950 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [35:21, 16:13] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:51, 05:03](1981 MB) - -PASS -- COMPILE 's2s_intel' [35:25, 16:32] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:06, 05:49](2885 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [06:09, 02:14](2888 MB) -PASS -- TEST 'cpld_restart_c48_intel' [45:21, 01:40](2308 MB) - -PASS -- COMPILE 's2swa_faster_intel' [26:25, 23:38] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:22, 08:05](3232 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:25, 21:39] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:14, 14:02](1926 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:25, 07:22](1098 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:03, 15:58](1906 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:19, 11:04] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:58, 24:52](1965 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [17:14, 14:23] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [14:41, 03:26](668 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [12:54, 02:09](1572 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:28, 02:11](1567 MB) -PASS -- TEST 'control_latlon_intel' [07:03, 02:08](1561 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:08, 02:10](1573 MB) -PASS -- TEST 'control_c48_intel' [26:06, 05:44](1586 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [24:38, 05:21](710 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [25:05, 05:43](1586 MB) -PASS -- TEST 'control_c192_intel' [10:17, 06:08](1689 MB) -PASS -- TEST 'control_c384_intel' [14:00, 06:52](1980 MB) -PASS -- TEST 'control_c384gdas_intel' [16:06, 07:15](1173 MB) -PASS -- TEST 'control_stochy_intel' [03:42, 01:26](624 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:39, 00:52](436 MB) -PASS -- TEST 'control_lndp_intel' [03:36, 01:21](618 MB) -PASS -- TEST 'control_iovr4_intel' [04:45, 02:06](619 MB) -PASS -- TEST 'control_iovr5_intel' [04:48, 02:06](618 MB) -PASS -- TEST 'control_p8_intel' [07:42, 02:57](1857 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:52, 03:03](1853 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:57, 03:13](1857 MB) -PASS -- TEST 'control_restart_p8_intel' [05:24, 02:00](1004 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:39, 03:10](1856 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:23, 02:05](1019 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:32, 03:12](1851 MB) -PASS -- TEST 'control_2threads_p8_intel' [19:18, 04:44](1949 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:13, 04:49](1859 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:38, 03:53](1911 MB) -PASS -- TEST 'control_p8_mynn_intel' [08:17, 03:21](1859 MB) -PASS -- TEST 'merra2_thompson_intel' [07:38, 03:31](1858 MB) -PASS -- TEST 'regional_control_intel' [15:56, 04:55](892 MB) -PASS -- TEST 'regional_restart_intel' [05:51, 02:51](878 MB) -PASS -- TEST 'regional_decomp_intel' [15:56, 05:05](893 MB) -PASS -- TEST 'regional_noquilt_intel' [14:57, 04:52](1216 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [14:51, 04:54](892 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [14:52, 04:59](903 MB) -PASS -- TEST 'regional_wofs_intel' [14:56, 05:52](1591 MB) - -PASS -- COMPILE 'rrfs_intel' [15:21, 12:49] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [18:38, 06:09](1002 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [11:19, 04:08](1161 MB) -PASS -- TEST 'rap_decomp_intel' [17:26, 06:23](1008 MB) -PASS -- TEST 'rap_2threads_intel' [44:34, 11:28](1086 MB) -PASS -- TEST 'rap_restart_intel' [07:29, 03:13](882 MB) -PASS -- TEST 'rap_sfcdiff_intel' [18:31, 06:08](1007 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [18:31, 06:25](1002 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:27, 04:37](880 MB) -PASS -- TEST 'hrrr_control_intel' [16:15, 03:15](998 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [16:15, 03:19](996 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [39:24, 05:45](1078 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:40, 01:47](833 MB) -PASS -- TEST 'rrfs_v1beta_intel' [18:30, 06:01](997 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [18:57, 08:05](1959 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [18:54, 07:47](1943 MB) - -PASS -- COMPILE 'csawmg_intel' [15:22, 11:48] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [09:04, 06:28](962 MB) -PASS -- TEST 'control_ras_intel' [05:34, 02:53](654 MB) - -PASS -- COMPILE 'wam_intel' [13:21, 11:34] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:56, 10:16](1653 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:22, 12:07] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:21, 03:04](1855 MB) -PASS -- TEST 'regional_control_faster_intel' [07:54, 04:37](892 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [57:32, 14:29] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:15, 02:17](1603 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:14, 02:12](1605 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:39, 02:52](807 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:37, 02:34](807 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:19, 04:41](1109 MB) -PASS -- TEST 'control_ras_debug_intel' [05:41, 02:41](812 MB) -PASS -- TEST 'control_diag_debug_intel' [06:26, 02:39](1660 MB) -PASS -- TEST 'control_debug_p8_intel' [06:14, 03:12](1898 MB) -PASS -- TEST 'regional_debug_intel' [19:09, 16:17](937 MB) -PASS -- TEST 'rap_control_debug_intel' [07:47, 04:41](1189 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:46, 04:42](1186 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:46, 04:48](1186 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:45, 04:41](1186 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:47, 04:42](1189 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:09, 04:53](1270 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:34, 04:45](1191 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:29, 04:47](1189 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:31, 04:44](1187 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:34, 04:45](1190 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:25, 04:36](1187 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:34, 04:41](1187 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:27, 07:33](1185 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:27, 04:42](1183 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:27, 04:42](1191 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:33, 04:42](1192 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:09, 08:03](1193 MB) - -PASS -- COMPILE 'wam_debug_intel' [49:30, 07:12] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:09, 12:06](1688 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [51:29, 11:29] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:35, 03:37](1030 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:06, 05:09](876 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:02, 02:46](873 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [12:02, 09:36](925 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:07, 04:56](925 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:02, 02:54](871 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:12, 03:52](794 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:30, 01:32](773 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [45:21, 11:27] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:12, 01:50](1077 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:04, 01:19](1084 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:09, 01:06](963 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [44:26, 11:36] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:52, 03:39](901 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [39:20, 07:33] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:32, 04:43](1066 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:35, 04:30](1062 MB) -PASS -- TEST 'conus13km_debug_intel' [16:43, 12:47](1145 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:44, 13:04](825 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [17:25, 13:41](1147 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:30, 12:46](1215 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [38:20, 07:14] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:33, 04:41](1096 MB) - -PASS -- COMPILE 'hafsw_intel' [48:23, 17:54] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:18, 04:35](699 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:44, 05:07](1065 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:46, 06:27](757 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:28, 10:39](781 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:00, 11:44](801 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:19, 04:41](472 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:45, 05:45](485 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:04, 02:18](397 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:40, 06:12](463 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:03, 03:18](504 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:21, 03:06](507 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:23, 03:48](577 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:32, 01:13](423 MB) -PASS -- TEST 'gnv1_nested_intel' [08:25, 04:04](1703 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [39:21, 08:46] ( 1467 warnings 1469 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:14, 12:07](621 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [46:23, 17:24] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:18, 06:52](622 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:30, 07:03](685 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [21:16, 18:56] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:26, 05:19](667 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:15, 15:56] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:11, 05:43](733 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:13, 05:44](725 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:13, 16:15](894 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:13, 08:31] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:26, 02:29](754 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:29, 01:31](759 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:28, 02:21](651 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:27, 02:23](646 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:28, 02:24](648 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:22, 02:29](756 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:25, 02:30](768 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:30, 02:21](644 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:40, 05:42](695 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:47, 05:38](680 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:21, 02:28](769 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:32, 03:54](1971 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:35, 03:53](2034 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:15, 05:53] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:23, 05:16](752 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:15, 08:18] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:23, 02:28](757 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:12, 02:45] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:36, 01:10](309 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:29, 01:05](450 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:33, 00:43](452 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:23, 14:02] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:36, 03:51](1910 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:14, 12:46] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:17, 05:03](1903 MB) - -PASS -- COMPILE 'atml_intel' [16:15, 14:40] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:49, 06:31](1891 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:49, 07:11](1876 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:02, 03:48](1049 MB) - -PASS -- COMPILE 'atml_debug_intel' [12:19, 10:37] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:39, 06:21](1923 MB) - -PASS -- COMPILE 'atmw_intel' [16:20, 13:52] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:29, 02:14](1882 MB) - -PASS -- COMPILE 'atmaero_intel' [15:14, 13:02] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:42, 04:21](3126 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:38, 04:18](3005 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:09, 04:22](3016 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [10:13, 08:01] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [26:42, 21:45](4539 MB) - -PASS -- COMPILE 'atm_fbh_intel' [13:20, 11:32] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:32, 08:06](846 MB) +PASS -- COMPILE 's2swa_32bit_intel' [30:19, 21:29] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:28, 06:41](3204 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [32:19, 23:19] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:11, 14:18](1918 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:33, 15:18](1942 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:51, 07:14](1078 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:14, 15:53](1878 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [32:23, 23:35] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:21, 13:57](1915 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [21:23, 11:47] ( 1528 warnings 1941 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:05, 23:27](1941 MB) + +PASS -- COMPILE 's2swa_intel' [30:23, 21:36] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [13:25, 08:22](3224 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:13, 08:19](3220 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:35, 04:56](3149 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:03, 08:16](3253 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:35, 04:51](3176 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [18:31, 13:54](3812 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:55, 07:59](3217 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:09, 06:28](3533 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:16, 08:10](3233 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:28, 09:08](3818 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [15:08, 06:22](3621 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [31:01, 10:35](4538 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [29:30, 07:17](4673 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:39, 08:01](3207 MB) + +PASS -- COMPILE 's2sw_intel' [29:24, 19:53] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:43, 04:59](1921 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:57, 07:01](1976 MB) + +PASS -- COMPILE 's2swa_debug_intel' [21:21, 11:46] ( 1418 warnings 1202 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [15:52, 12:27](3305 MB) + +PASS -- COMPILE 's2sw_debug_intel' [20:20, 11:16] ( 1418 warnings 1202 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:29, 06:13](1956 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [25:23, 16:09] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:45, 05:01](1984 MB) + +PASS -- COMPILE 's2s_intel' [26:23, 16:43] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:12, 05:49](2885 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:14, 02:10](2890 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:11, 01:28](2310 MB) + +PASS -- COMPILE 's2swa_faster_intel' [26:24, 23:49] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [12:44, 08:15](3234 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:23, 21:45] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:59, 14:14](1922 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:12, 07:15](1081 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:06, 16:06](1888 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:20, 11:05] ( 1528 warnings 1941 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:53, 25:07](1960 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:20, 14:19] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:50, 03:25](668 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:33, 02:09](1565 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:49, 02:11](1566 MB) +PASS -- TEST 'control_latlon_intel' [05:32, 02:07](1567 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:34, 02:09](1563 MB) +PASS -- TEST 'control_c48_intel' [09:25, 05:42](1584 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:44, 05:19](710 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [09:25, 05:43](1586 MB) +PASS -- TEST 'control_c192_intel' [10:24, 06:07](1695 MB) +PASS -- TEST 'control_c384_intel' [16:29, 06:53](1980 MB) +PASS -- TEST 'control_c384gdas_intel' [19:20, 07:13](1179 MB) +PASS -- TEST 'control_stochy_intel' [03:45, 01:27](624 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:36, 00:52](436 MB) +PASS -- TEST 'control_lndp_intel' [03:46, 01:23](619 MB) +PASS -- TEST 'control_iovr4_intel' [04:53, 02:07](617 MB) +PASS -- TEST 'control_iovr5_intel' [04:47, 02:06](622 MB) +PASS -- TEST 'control_p8_intel' [06:55, 03:04](1854 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:30, 03:13](1852 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:31, 03:05](1855 MB) +PASS -- TEST 'control_restart_p8_intel' [05:22, 02:07](1007 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:37, 03:01](1847 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:20, 02:01](1015 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:30, 03:04](1846 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:33, 04:47](1946 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:22, 04:45](1859 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:35, 04:05](1910 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:32, 03:28](1865 MB) +PASS -- TEST 'merra2_thompson_intel' [06:30, 03:32](1856 MB) +PASS -- TEST 'regional_control_intel' [07:56, 05:02](892 MB) +PASS -- TEST 'regional_restart_intel' [05:53, 02:58](878 MB) +PASS -- TEST 'regional_decomp_intel' [07:53, 05:05](893 MB) +PASS -- TEST 'regional_noquilt_intel' [07:07, 04:46](1217 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:54, 04:56](904 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:05, 04:53](890 MB) +PASS -- TEST 'regional_wofs_intel' [09:01, 05:53](1587 MB) + +PASS -- COMPILE 'rrfs_intel' [15:20, 12:51] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:23, 06:11](1002 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:51, 03:46](1165 MB) +PASS -- TEST 'rap_decomp_intel' [09:24, 06:26](1008 MB) +PASS -- TEST 'rap_2threads_intel' [14:14, 11:27](1085 MB) +PASS -- TEST 'rap_restart_intel' [06:17, 03:15](880 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:17, 06:07](1006 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:14, 06:24](1002 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:12, 04:37](883 MB) +PASS -- TEST 'hrrr_control_intel' [06:28, 03:13](999 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:23, 03:18](997 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [09:15, 05:45](1082 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:51, 01:48](831 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:21, 06:01](998 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:45, 08:03](1960 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:48, 07:47](1947 MB) + +PASS -- COMPILE 'csawmg_intel' [13:13, 11:41] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [10:05, 06:40](959 MB) +PASS -- TEST 'control_ras_intel' [05:31, 02:52](653 MB) + +PASS -- COMPILE 'wam_intel' [13:14, 11:36] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:09, 10:23](1652 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:19, 12:10] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:36, 03:10](1855 MB) +PASS -- TEST 'regional_control_faster_intel' [07:05, 04:45](892 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:15, 14:36] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:13, 02:15](1603 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:20, 02:14](1605 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:47, 02:57](805 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:47, 02:40](806 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:02, 04:35](1114 MB) +PASS -- TEST 'control_ras_debug_intel' [04:40, 02:42](811 MB) +PASS -- TEST 'control_diag_debug_intel' [06:46, 02:37](1660 MB) +PASS -- TEST 'control_debug_p8_intel' [06:05, 03:03](1893 MB) +PASS -- TEST 'regional_debug_intel' [19:08, 16:40](931 MB) +PASS -- TEST 'rap_control_debug_intel' [07:33, 04:44](1189 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:32, 04:42](1180 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:39, 04:47](1188 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:39, 04:45](1189 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:39, 04:43](1190 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:58, 05:00](1270 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:40, 04:50](1190 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:38, 04:48](1189 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:31, 04:43](1186 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:41, 04:44](1191 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:41, 04:37](1186 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:34, 04:39](1186 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:47, 07:33](1185 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:31, 04:43](1185 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:41, 04:42](1190 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:36, 04:51](1190 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:10, 08:03](1193 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:20, 07:07] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:29, 12:36](1687 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:19, 11:34] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:27, 03:33](1034 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:00, 05:09](875 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:20, 02:47](876 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [13:59, 09:38](936 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:57, 04:57](928 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:58, 02:56](875 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:00, 03:55](792 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:35, 01:33](772 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:14, 11:26] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:48, 01:51](1078 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:26, 01:20](1084 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:11, 01:08](964 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:15, 11:48] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:13, 03:38](902 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:14, 07:32] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:25, 04:34](1065 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:35, 04:24](1060 MB) +PASS -- TEST 'conus13km_debug_intel' [16:50, 12:42](1147 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:41, 12:51](827 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [18:01, 13:45](1148 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:51, 12:41](1212 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:13, 07:26] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:38, 04:37](1089 MB) + +PASS -- COMPILE 'hafsw_intel' [20:18, 17:58] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:38, 04:37](702 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:24, 05:14](1063 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:54, 06:34](757 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:22, 10:46](775 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:26, 12:02](798 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:21, 04:41](470 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:39, 05:47](486 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:03, 02:20](396 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:46, 06:14](459 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:12, 03:20](505 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:33, 03:07](505 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:23, 03:51](576 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:31, 01:13](425 MB) +PASS -- TEST 'gnv1_nested_intel' [08:31, 04:06](1705 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:19, 08:43] ( 1470 warnings 1474 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:20, 12:15](623 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:20, 17:35] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:42, 06:54](622 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:31, 07:01](681 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [21:16, 19:09] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:49, 05:27](671 MB) + +PASS -- COMPILE 'hafs_all_intel' [18:20, 16:01] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:43, 05:53](736 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:51, 05:47](723 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:15, 16:11](895 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:19, 08:29] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:37, 02:28](770 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:49, 01:33](743 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:32, 02:21](646 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:39, 02:24](645 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:42, 02:23](648 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:40, 02:29](756 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:37, 02:31](755 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:44, 02:22](645 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:13, 05:43](696 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:09, 05:44](677 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:28, 02:29](757 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:45, 03:58](2032 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:37, 03:55](2033 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:15, 05:49] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:25, 05:17](750 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:19, 08:31] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:45, 02:29](768 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:11, 02:43] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:08, 01:16](309 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:46, 01:11](452 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:41, 00:45](451 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:19, 13:38] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:59, 03:52](1909 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:22, 12:47] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:31, 05:07](1910 MB) + +PASS -- COMPILE 'atml_intel' [16:15, 14:45] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:41, 07:03](1877 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [11:00, 07:13](1875 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:58, 03:46](1036 MB) + +PASS -- COMPILE 'atml_debug_intel' [12:21, 10:42] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:55, 06:10](1923 MB) + +PASS -- COMPILE 'atmw_intel' [16:15, 14:05] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:30, 02:26](1875 MB) + +PASS -- COMPILE 'atmaero_intel' [15:19, 13:08] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:41, 04:16](3129 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:47, 04:19](3006 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:12, 04:24](3019 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [10:20, 08:04] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [28:20, 22:04](4543 MB) + +PASS -- COMPILE 'atm_fbh_intel' [13:14, 11:38] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:36, 08:06](844 MB) SYNOPSIS: -Starting Date/Time: 20250108 08:23:44 -Ending Date/Time: 20250108 10:48:59 -Total Time: 02h:26m:21s +Starting Date/Time: 20250115 09:22:06 +Ending Date/Time: 20250115 11:19:15 +Total Time: 01h:58m:12s Compiles Completed: 42/42 Tests Completed: 186/186 diff --git a/tests/logs/RegressionTests_gaeac5.log b/tests/logs/RegressionTests_gaeac5.log index 8a1dc3cd5a..c04c01fb9e 100644 --- a/tests/logs/RegressionTests_gaeac5.log +++ b/tests/logs/RegressionTests_gaeac5.log @@ -1,7 +1,7 @@ ====START OF GAEAC5 REGRESSION TESTING LOG==== UFSWM hash used in testing: -b5b4558a9da026e48f0ebaca8c082af7b7e7915d +b8c45aa9505538b1212b9b6069ad21d5ee2a6706 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 7d998809dc84996248f93ced49730cfe92eae7cf FV3 (heads/develop) + 312657ab886269bc71d239abfb4dc2c86d1b9f21 FV3 (remotes/origin/rrfsv1-to-ufs/dev9) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 24643b0e0f9754d76176d60ce155bf8956bfb44d FV3/ccpp/physics (EP4-1092-g24643b0e) + 0b426618bef07638c3e095755c831af93c7f1aa4 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5544-g0b426618) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -27,7 +27,7 @@ Submodule hashes used in testing: 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) + 174cf7b56f864e260f70f801f4fa3d70c7fac7e9 WW3 (remotes/origin/devufs20241211develop20240111) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -39,303 +39,304 @@ 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-20250107 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_2389049 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_458468 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [17:13, 15:39] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:23, 11:21](3186 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:14, 24:35] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [25:10, 15:32](1903 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:20, 18:22](1938 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:25, 10:21](1072 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:25, 19:18](1879 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:13, 21:46] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [27:51, 15:14](1896 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:13, 10:32] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [31:16, 28:47](1935 MB) - -PASS -- COMPILE 's2swa_intel' [18:17, 16:38] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [17:19, 12:27](3215 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:44, 12:14](3214 MB) -PASS -- TEST 'cpld_restart_p8_intel' [12:54, 09:17](3139 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:35, 12:26](3233 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [12:41, 09:35](3160 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [17:03, 12:58](3440 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [16:35, 12:24](3209 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [16:35, 11:36](3158 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:21, 12:37](3215 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:37, 11:23](3488 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [14:55, 10:20](3594 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [21:44, 14:44](4278 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:24, 11:02](4362 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [16:35, 12:26](3192 MB) - -PASS -- COMPILE 's2sw_intel' [20:18, 19:00] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [22:07, 05:32](1912 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [23:29, 08:07](1966 MB) - -PASS -- COMPILE 's2swa_debug_intel' [17:13, 16:03] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [20:32, 16:37](3272 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:11, 09:04] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:15, 08:25](1937 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [14:14, 13:05] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:09, 07:46](1970 MB) - -PASS -- COMPILE 's2s_intel' [17:13, 15:28] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [11:02, 08:04](2870 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [07:01, 04:20](2870 MB) -PASS -- TEST 'cpld_restart_c48_intel' [14:53, 03:08](2291 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:14, 15:52] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [21:50, 12:18](3214 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:16, 22:48] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:21, 16:23](1920 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:18, 09:50](1098 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [29:22, 19:31](1888 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:13, 10:22] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [39:14, 29:45](1942 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:17, 14:45] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [08:41, 05:56](656 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [08:35, 05:12](1552 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:36, 05:16](1554 MB) -PASS -- TEST 'control_latlon_intel' [08:27, 04:37](1553 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:21, 03:14](1557 MB) -PASS -- TEST 'control_c48_intel' [11:22, 08:11](1570 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:45, 07:49](696 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [09:28, 06:13](1573 MB) -PASS -- TEST 'control_c192_intel' [12:24, 09:05](1688 MB) -PASS -- TEST 'control_c384_intel' [20:45, 16:40](1973 MB) -PASS -- TEST 'control_c384gdas_intel' [21:24, 17:08](1175 MB) -PASS -- TEST 'control_stochy_intel' [06:56, 04:23](612 MB) -PASS -- TEST 'control_stochy_restart_intel' [07:39, 03:34](414 MB) -PASS -- TEST 'control_lndp_intel' [06:55, 04:21](607 MB) -PASS -- TEST 'control_iovr4_intel' [08:32, 05:28](609 MB) -PASS -- TEST 'control_iovr5_intel' [07:30, 05:01](608 MB) -PASS -- TEST 'control_p8_intel' [08:10, 05:46](1841 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [13:17, 05:52](1841 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [12:47, 05:53](1844 MB) -PASS -- TEST 'control_restart_p8_intel' [08:00, 04:23](995 MB) -PASS -- TEST 'control_noqr_p8_intel' [10:12, 05:55](1842 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [08:03, 04:46](1009 MB) -PASS -- TEST 'control_decomp_p8_intel' [10:11, 05:58](1846 MB) -PASS -- TEST 'control_2threads_p8_intel' [08:19, 03:48](1922 MB) -PASS -- TEST 'control_p8_lndp_intel' [11:59, 07:44](1847 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [11:14, 06:56](1897 MB) -PASS -- TEST 'control_p8_mynn_intel' [10:06, 06:06](1852 MB) -PASS -- TEST 'merra2_thompson_intel' [10:01, 06:25](1854 MB) -PASS -- TEST 'regional_control_intel' [06:48, 04:46](877 MB) -PASS -- TEST 'regional_restart_intel' [07:38, 04:56](861 MB) -PASS -- TEST 'regional_decomp_intel' [09:38, 07:05](878 MB) -PASS -- TEST 'regional_2threads_intel' [08:37, 05:57](1010 MB) -PASS -- TEST 'regional_noquilt_intel' [09:37, 06:47](1207 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:37, 04:41](878 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:47, 06:47](876 MB) -PASS -- TEST 'regional_wofs_intel' [10:36, 08:38](1570 MB) - -PASS -- COMPILE 'rrfs_intel' [16:16, 14:51] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [13:01, 09:31](990 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:13, 06:38](1168 MB) -PASS -- TEST 'rap_decomp_intel' [11:51, 09:18](989 MB) -PASS -- TEST 'rap_2threads_intel' [11:48, 08:55](1065 MB) -PASS -- TEST 'rap_restart_intel' [14:52, 06:02](875 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:50, 07:33](991 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:51, 07:58](988 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [14:50, 07:24](872 MB) -PASS -- TEST 'hrrr_control_intel' [05:48, 03:50](981 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:47, 06:07](987 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [08:50, 06:29](1060 MB) -PASS -- TEST 'hrrr_control_restart_intel' [11:29, 04:31](821 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:02, 09:12](980 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [14:31, 11:47](1946 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:30, 11:24](1936 MB) - -PASS -- COMPILE 'csawmg_intel' [18:14, 17:04] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [09:38, 07:13](948 MB) -PASS -- TEST 'control_ras_intel' [08:24, 06:03](644 MB) - -PASS -- COMPILE 'wam_intel' [15:13, 13:41] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [18:08, 15:05](1638 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:18, 13:00] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [09:06, 06:19](1841 MB) -PASS -- TEST 'regional_control_faster_intel' [09:37, 07:19](875 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [18:17, 16:33] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [08:42, 06:02](1578 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:45, 05:57](1582 MB) -PASS -- TEST 'control_stochy_debug_intel' [14:26, 05:44](785 MB) -PASS -- TEST 'control_lndp_debug_intel' [12:55, 05:31](782 MB) -PASS -- TEST 'control_csawmg_debug_intel' [13:32, 07:03](1088 MB) -PASS -- TEST 'control_ras_debug_intel' [13:25, 05:29](793 MB) -PASS -- TEST 'control_diag_debug_intel' [10:38, 05:18](1642 MB) -PASS -- TEST 'control_debug_p8_intel' [10:38, 03:37](1878 MB) -PASS -- TEST 'regional_debug_intel' [25:44, 18:45](891 MB) -PASS -- TEST 'rap_control_debug_intel' [13:27, 07:22](1162 MB) -PASS -- TEST 'hrrr_control_debug_intel' [16:29, 07:30](1162 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [13:27, 05:06](1163 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [15:29, 07:39](1159 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [16:24, 07:34](1164 MB) -PASS -- TEST 'rap_diag_debug_intel' [13:34, 05:16](1248 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [15:27, 07:39](1170 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [15:27, 07:41](1167 MB) -PASS -- TEST 'rap_lndp_debug_intel' [15:27, 07:47](1165 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [14:37, 07:40](1164 MB) -PASS -- TEST 'rap_noah_debug_intel' [12:29, 05:33](1161 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [13:29, 07:16](1162 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:24, 08:35](1162 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [11:22, 07:14](1161 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:28, 05:09](1162 MB) -PASS -- TEST 'rap_flake_debug_intel' [10:26, 07:37](1167 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:52, 09:08](1170 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:13, 07:16] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:48, 16:04](1668 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:14, 11:06] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [12:02, 06:22](1038 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:47, 08:36](866 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:44, 04:00](864 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [14:48, 09:36](913 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:41, 05:56](912 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:36, 05:40](863 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [16:40, 07:03](781 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [14:00, 04:14](753 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:16, 16:56] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [08:12, 04:53](1072 MB) -PASS -- TEST 'conus13km_2threads_intel' [13:59, 03:46](1055 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [13:55, 04:12](949 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:13, 12:26] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:51, 06:43](898 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:13, 08:39] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:25, 04:56](1045 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:28, 05:28](1037 MB) -PASS -- TEST 'conus13km_debug_intel' [18:59, 16:24](1128 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [18:58, 16:28](799 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [17:11, 13:43](1108 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:52, 16:17](1193 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:14, 12:37] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:45, 07:37](1068 MB) - -PASS -- COMPILE 'hafsw_intel' [15:16, 14:03] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [10:09, 07:40](714 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:28, 07:04](1078 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:01, 10:12](742 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:25, 12:11](775 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:28, 15:20](801 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:15, 06:02](472 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:08, 09:13](503 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [09:58, 05:16](399 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [20:14, 10:08](488 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [15:56, 06:39](505 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [15:55, 06:38](508 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [14:05, 06:05](585 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [13:38, 04:27](424 MB) -PASS -- TEST 'gnv1_nested_intel' [16:36, 06:50](1697 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:14, 08:56] ( 1467 warnings 1469 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [25:17, 15:26](616 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [22:14, 20:42] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:09, 08:17](631 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:22, 10:21](814 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [18:13, 16:30] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:50, 08:54](805 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:13, 13:44] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [15:50, 09:08](735 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:10, 09:01](715 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [27:11, 22:22](891 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [17:16, 15:11] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [08:25, 04:46](765 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [06:23, 03:45](752 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [08:23, 04:38](643 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [08:21, 04:40](643 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [08:19, 04:40](643 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [07:24, 04:45](765 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [08:41, 04:51](764 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:44, 04:42](652 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:10, 06:51](694 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:51, 08:18](675 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [07:33, 04:50](764 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [09:20, 06:49](2033 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [09:22, 06:53](2032 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:14, 06:22] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:19, 07:38](749 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [17:14, 15:30] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [07:21, 04:48](764 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:15, 02:27] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:39, 02:24](316 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:33, 01:51](461 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:38, 03:22](460 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [04:14, 02:58] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [06:56, 02:43](449 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [04:40, 02:28](254 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [20:13, 18:09] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:04, 06:34](1912 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:12, 11:53] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [10:56, 07:53](1903 MB) - -PASS -- COMPILE 'atml_intel' [14:17, 12:30] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [14:09, 10:52](1878 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [14:10, 10:50](1877 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:49, 06:20](1027 MB) - -PASS -- COMPILE 'atml_debug_intel' [10:16, 08:53] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:58, 10:05](1904 MB) - -PASS -- COMPILE 'atmw_intel' [14:16, 12:28] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:42, 05:13](1878 MB) - -PASS -- COMPILE 'atmaero_intel' [14:12, 12:48] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:58, 07:46](3099 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [12:01, 09:12](2989 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:57, 09:23](2995 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [15:13, 13:30] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [24:20, 20:49](4440 MB) - -PASS -- COMPILE 'atm_fbh_intel' [17:16, 15:36] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [12:28, 09:32](829 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [21:13, 19:34] -PASS -- TEST 'cpld_control_gfsv17_intelllvm' [20:05, 17:16](1900 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [12:12, 10:58] -PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [29:23, 26:00](1934 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [22:16, 20:20] -PASS -- TEST 'cpld_control_sfs_intelllvm' [21:27, 16:49](1891 MB) - -PASS -- COMPILE 's2swa_intelllvm' [17:13, 15:17] -PASS -- TEST 'cpld_control_p8_intelllvm' [17:37, 12:46](3214 MB) +PASS -- COMPILE 's2swa_32bit_intel' [30:15, 28:38] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:56, 11:55](3184 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [27:17, 25:39] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:46, 16:28](1913 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:30, 17:45](1938 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:17, 09:27](1066 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:30, 18:28](1877 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [32:20, 30:53] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:43, 16:38](1899 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [23:14, 21:10] ( 1528 warnings 1941 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [30:43, 27:07](1932 MB) + +PASS -- COMPILE 's2swa_intel' [21:18, 19:56] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [17:23, 12:09](3210 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:10, 12:51](3213 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:36, 06:54](3137 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [17:59, 13:14](3236 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:27, 06:55](3161 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [17:48, 13:12](3436 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:58, 12:46](3210 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:20, 10:38](3157 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:19, 12:48](3217 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:19, 13:19](3490 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [15:27, 09:28](3601 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [24:14, 15:01](4283 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:50, 11:02](4363 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [17:46, 12:53](3188 MB) + +PASS -- COMPILE 's2sw_intel' [21:13, 19:13] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [12:04, 07:41](1920 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:20, 09:49](1978 MB) + +PASS -- COMPILE 's2swa_debug_intel' [23:14, 21:19] ( 1418 warnings 1202 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [21:47, 16:59](3268 MB) + +PASS -- COMPILE 's2sw_debug_intel' [14:16, 12:25] ( 1418 warnings 1202 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:46, 06:33](1946 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [18:16, 16:29] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:52, 07:18](1967 MB) + +PASS -- COMPILE 's2s_intel' [18:16, 16:49] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:16, 07:27](2865 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [07:47, 03:36](2883 MB) +PASS -- TEST 'cpld_restart_c48_intel' [06:06, 03:01](2295 MB) + +PASS -- COMPILE 's2swa_faster_intel' [23:25, 21:31] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:45, 12:06](3214 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:22, 19:01] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:33, 16:28](1921 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:17, 09:39](1088 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:24, 19:30](1888 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [19:18, 17:46] ( 1528 warnings 1941 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:57, 27:47](1943 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [19:16, 18:10] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [09:46, 06:39](654 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [08:32, 05:29](1555 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:39, 05:29](1567 MB) +PASS -- TEST 'control_latlon_intel' [08:28, 05:29](1559 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:39, 05:20](1552 MB) +PASS -- TEST 'control_c48_intel' [11:39, 07:48](1570 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:11, 05:40](693 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [10:38, 07:31](1569 MB) +PASS -- TEST 'control_c192_intel' [14:24, 09:46](1682 MB) +PASS -- TEST 'control_c384_intel' [20:03, 16:31](1967 MB) +PASS -- TEST 'control_c384gdas_intel' [21:45, 17:18](1168 MB) +PASS -- TEST 'control_stochy_intel' [06:56, 04:34](609 MB) +PASS -- TEST 'control_stochy_restart_intel' [05:29, 03:06](415 MB) +PASS -- TEST 'control_lndp_intel' [06:56, 03:56](609 MB) +PASS -- TEST 'control_iovr4_intel' [08:00, 05:28](606 MB) +PASS -- TEST 'control_iovr5_intel' [05:59, 03:38](606 MB) +PASS -- TEST 'control_p8_intel' [08:48, 05:35](1842 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [10:03, 05:57](1844 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:12, 03:40](1844 MB) +PASS -- TEST 'control_restart_p8_intel' [06:54, 03:57](999 MB) +PASS -- TEST 'control_noqr_p8_intel' [08:38, 05:11](1836 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:04, 03:22](1009 MB) +PASS -- TEST 'control_decomp_p8_intel' [08:58, 05:42](1845 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:51, 03:54](1919 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:50, 05:00](1841 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [09:06, 06:05](1902 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:07, 04:05](1847 MB) +PASS -- TEST 'merra2_thompson_intel' [09:00, 05:55](1853 MB) +PASS -- TEST 'regional_control_intel' [09:43, 06:44](879 MB) +PASS -- TEST 'regional_restart_intel' [07:31, 04:46](859 MB) +PASS -- TEST 'regional_decomp_intel' [09:37, 06:32](877 MB) +PASS -- TEST 'regional_2threads_intel' [06:39, 04:23](1006 MB) +PASS -- TEST 'regional_noquilt_intel' [06:40, 04:45](1205 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:48, 06:50](877 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:32, 06:48](868 MB) +PASS -- TEST 'regional_wofs_intel' [10:34, 08:07](1574 MB) + +PASS -- COMPILE 'rrfs_intel' [26:18, 24:21] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:47, 09:38](994 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:09, 06:24](1170 MB) +PASS -- TEST 'rap_decomp_intel' [09:58, 07:02](990 MB) +PASS -- TEST 'rap_2threads_intel' [12:49, 10:06](1073 MB) +PASS -- TEST 'rap_restart_intel' [06:55, 04:21](870 MB) +PASS -- TEST 'rap_sfcdiff_intel' [13:01, 09:03](988 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:04, 09:24](990 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:57, 07:23](875 MB) +PASS -- TEST 'hrrr_control_intel' [10:06, 06:16](988 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [10:05, 05:45](982 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [10:09, 06:25](1057 MB) +PASS -- TEST 'hrrr_control_restart_intel' [06:31, 04:24](816 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:58, 07:28](981 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:34, 11:06](1947 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:31, 10:33](1939 MB) + +PASS -- COMPILE 'csawmg_intel' [24:15, 23:07] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [11:35, 09:06](941 MB) +PASS -- TEST 'control_ras_intel' [05:26, 03:16](644 MB) + +PASS -- COMPILE 'wam_intel' [24:14, 22:39] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [17:09, 14:20](1641 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:14, 12:53] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [08:59, 05:41](1844 MB) +PASS -- TEST 'regional_control_faster_intel' [08:37, 06:44](883 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [23:14, 21:52] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:48, 05:28](1580 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:48, 05:23](1590 MB) +PASS -- TEST 'control_stochy_debug_intel' [08:28, 05:57](782 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:27, 03:22](782 MB) +PASS -- TEST 'control_csawmg_debug_intel' [09:36, 07:10](1085 MB) +PASS -- TEST 'control_ras_debug_intel' [05:27, 03:32](791 MB) +PASS -- TEST 'control_diag_debug_intel' [08:54, 05:35](1641 MB) +PASS -- TEST 'control_debug_p8_intel' [06:45, 04:15](1872 MB) +PASS -- TEST 'regional_debug_intel' [20:40, 18:29](885 MB) +PASS -- TEST 'rap_control_debug_intel' [09:30, 07:27](1169 MB) +PASS -- TEST 'hrrr_control_debug_intel' [09:28, 07:23](1158 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [10:21, 07:40](1163 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [09:44, 07:14](1158 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:23, 05:41](1162 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:33, 06:00](1248 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:24, 05:45](1167 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:27, 07:02](1166 MB) +PASS -- TEST 'rap_lndp_debug_intel' [09:29, 07:33](1165 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:03, 05:04](1164 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:04, 05:34](1160 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [09:29, 06:43](1161 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:39, 09:43](1162 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:54, 05:33](1157 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:27, 06:46](1165 MB) +PASS -- TEST 'rap_flake_debug_intel' [10:35, 07:39](1168 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:54, 10:08](1168 MB) + +PASS -- COMPILE 'wam_debug_intel' [18:17, 16:59] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:05, 14:54](1662 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:16, 13:15] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:08, 04:23](1041 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:48, 07:58](869 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:43, 05:48](865 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [12:00, 08:35](931 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:46, 05:07](911 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:42, 06:29](865 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:48, 04:44](783 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:03, 03:48](755 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:13, 11:35] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [08:12, 03:02](1073 MB) +PASS -- TEST 'conus13km_2threads_intel' [06:56, 03:39](1053 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:16, 02:00](954 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:16, 12:25] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [11:52, 06:48](894 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:14, 08:29] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:23, 06:18](1045 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:29, 06:05](1043 MB) +PASS -- TEST 'conus13km_debug_intel' [19:19, 16:11](1126 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:55, 13:40](800 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [16:39, 13:37](1112 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:51, 13:11](1192 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:13, 09:27] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:26, 07:34](1066 MB) + +PASS -- COMPILE 'hafsw_intel' [23:21, 21:36] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:48, 06:08](717 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:39, 04:54](1076 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:33, 10:08](748 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:21, 11:56](774 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:48, 13:12](805 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:12, 08:20](472 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:33, 08:54](499 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [09:20, 05:10](398 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:39, 09:29](489 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:24, 05:35](509 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:13, 05:03](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:13, 06:59](589 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:46, 02:02](427 MB) +PASS -- TEST 'gnv1_nested_intel' [10:58, 07:29](1694 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [17:18, 15:13] ( 1470 warnings 1474 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:14, 15:37](614 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [21:20, 20:14] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:45, 09:57](631 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:27, 08:39](808 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:18, 15:31] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:19, 08:00](809 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:13, 15:01] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:19, 07:33](735 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:58, 08:21](719 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [26:20, 22:05](890 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [13:17, 11:19] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:45, 04:35](751 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:33, 01:36](741 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:36, 04:24](642 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:29, 04:07](649 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:27, 04:08](645 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:27, 04:12](753 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:30, 02:38](764 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:28, 04:30](642 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:15, 07:54](696 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:16, 06:52](675 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:22, 02:37](764 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:41, 06:11](2032 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [09:28, 06:45](2031 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [10:16, 08:18] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:28, 07:29](747 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [26:19, 25:02] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [07:29, 04:36](764 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:13, 03:21] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [07:43, 05:29](314 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [06:41, 03:59](461 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [23:40, 01:38](464 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [07:13, 05:24] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [05:55, 02:25](451 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [22:59, 00:23](251 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:17, 13:15] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:27, 05:03](1902 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [21:25, 19:47] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [12:10, 06:51](1908 MB) + +PASS -- COMPILE 'atml_intel' [17:15, 15:27] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [37:31, 09:21](1882 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [38:22, 09:30](1877 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [09:38, 07:07](1024 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:25, 08:29] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [36:09, 08:21](1902 MB) + +PASS -- COMPILE 'atmw_intel' [15:20, 14:05] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [32:05, 04:44](1881 MB) + +PASS -- COMPILE 'atmaero_intel' [14:14, 12:20] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [35:15, 08:32](3100 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [36:19, 08:50](2984 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [34:05, 07:24](2994 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [11:13, 09:35] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [51:56, 20:38](4445 MB) + +PASS -- COMPILE 'atm_fbh_intel' [18:19, 16:49] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [37:55, 11:09](829 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [28:15, 26:27] +PASS -- TEST 'cpld_control_gfsv17_intelllvm' [42:06, 17:10](1903 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [14:17, 12:25] +PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [54:31, 28:11](1934 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [21:23, 20:04] +PASS -- TEST 'cpld_control_sfs_intelllvm' [38:57, 15:09](1900 MB) + +PASS -- COMPILE 's2swa_intelllvm' [19:17, 17:25] +PASS -- TEST 'cpld_control_p8_intelllvm' [37:36, 12:26](3214 MB) SYNOPSIS: -Starting Date/Time: 20250108 10:29:14 -Ending Date/Time: 20250108 12:41:05 -Total Time: 02h:12m:59s +Starting Date/Time: 20250115 11:25:04 +Ending Date/Time: 20250115 13:54:57 +Total Time: 02h:31m:04s Compiles Completed: 47/47 Tests Completed: 193/193 diff --git a/tests/logs/RegressionTests_gaeac6.log b/tests/logs/RegressionTests_gaeac6.log index 243ffa660f..e1014f34de 100644 --- a/tests/logs/RegressionTests_gaeac6.log +++ b/tests/logs/RegressionTests_gaeac6.log @@ -1,7 +1,7 @@ ====START OF GAEAC6 REGRESSION TESTING LOG==== UFSWM hash used in testing: -b5b4558a9da026e48f0ebaca8c082af7b7e7915d +b8c45aa9505538b1212b9b6069ad21d5ee2a6706 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 7d998809dc84996248f93ced49730cfe92eae7cf FV3 (heads/develop) + 312657ab886269bc71d239abfb4dc2c86d1b9f21 FV3 (remotes/origin/rrfsv1-to-ufs/dev9) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 24643b0e0f9754d76176d60ce155bf8956bfb44d FV3/ccpp/physics (EP4-1092-g24643b0e) + 0b426618bef07638c3e095755c831af93c7f1aa4 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5544-g0b426618) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -27,7 +27,7 @@ Submodule hashes used in testing: 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) + 174cf7b56f864e260f70f801f4fa3d70c7fac7e9 WW3 (remotes/origin/devufs20241211develop20240111) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -39,287 +39,288 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /gpfs/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20250107 -COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_1674043 +COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2829144 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: bil-fire8 +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [10:11, 08:18] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:01, 05:20](2034 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [59:19, 57:27] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [12:43, 10:38](1929 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [13:51, 11:33](1933 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [07:36, 05:09](1086 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [14:44, 12:17](1900 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:11, 11:48] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [12:50, 10:45](1918 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 04:52] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [19:21, 16:38](1951 MB) - -PASS -- COMPILE 's2swa_intel' [10:11, 08:12] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:11, 06:13](2065 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:56, 06:12](2064 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:30, 03:23](1620 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:06, 07:08](2093 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:30, 03:17](1453 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:12, 07:17](2230 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [07:54, 05:52](2059 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:13, 05:18](2023 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:08, 06:54](2062 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [12:21, 07:34](2418 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:42, 04:16](2668 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [17:51, 07:21](3594 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:43, 05:22](3443 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:52, 06:25](1927 MB) - -PASS -- COMPILE 's2sw_intel' [09:11, 07:50] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:48, 04:18](1938 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:50, 05:36](1848 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:10, 04:25] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:01, 08:38](2089 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:10, 04:21] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:57, 03:54](1967 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [09:11, 07:19] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:46, 04:19](1990 MB) - -PASS -- COMPILE 's2s_intel' [09:11, 07:16] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [06:44, 04:13](2869 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:47, 01:18](2883 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:26, 00:46](2296 MB) - -PASS -- COMPILE 's2swa_faster_intel' [11:11, 09:10] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [08:31, 05:40](2065 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:11, 11:23] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [13:23, 10:42](1944 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:50, 05:12](1112 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [14:48, 12:23](1915 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:36] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [21:50, 18:35](1964 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [08:11, 06:37] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:25, 02:36](532 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:24, 01:46](1432 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:49, 02:25](1443 MB) -PASS -- TEST 'control_latlon_intel' [03:29, 01:48](1434 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:43, 01:49](1435 MB) -PASS -- TEST 'control_c48_intel' [06:37, 04:39](1576 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:22, 04:19](694 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [06:32, 04:52](1569 MB) -PASS -- TEST 'control_c192_intel' [06:58, 04:57](1701 MB) -PASS -- TEST 'control_c384_intel' [13:53, 10:12](1956 MB) -PASS -- TEST 'control_c384gdas_intel' [14:19, 10:21](1178 MB) -PASS -- TEST 'control_stochy_intel' [03:27, 01:21](488 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:51, 00:48](291 MB) -PASS -- TEST 'control_lndp_intel' [03:31, 01:16](485 MB) -PASS -- TEST 'control_iovr4_intel' [03:32, 01:51](484 MB) -PASS -- TEST 'control_iovr5_intel' [03:43, 01:50](484 MB) -PASS -- TEST 'control_p8_intel' [04:47, 02:10](1724 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:10, 02:23](1729 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:32, 02:00](1723 MB) -PASS -- TEST 'control_restart_p8_intel' [03:57, 01:40](857 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:31, 01:56](1715 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:11, 01:11](878 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:28, 01:59](1718 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:10, 02:14](1798 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:05, 03:19](1721 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:57, 02:46](1778 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:02, 02:26](1731 MB) -PASS -- TEST 'merra2_thompson_intel' [05:02, 02:30](1726 MB) -PASS -- TEST 'regional_control_intel' [05:52, 03:34](887 MB) -PASS -- TEST 'regional_restart_intel' [03:51, 02:04](860 MB) -PASS -- TEST 'regional_decomp_intel' [06:01, 03:48](889 MB) -PASS -- TEST 'regional_2threads_intel' [05:02, 03:04](1015 MB) -PASS -- TEST 'regional_noquilt_intel' [05:59, 03:23](1206 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:03, 03:31](874 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:00, 03:23](880 MB) -PASS -- TEST 'regional_wofs_intel' [06:49, 04:25](1572 MB) - -PASS -- COMPILE 'rrfs_intel' [08:11, 06:09] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [06:52, 05:04](865 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:50, 03:09](1161 MB) -PASS -- TEST 'rap_decomp_intel' [07:47, 05:06](867 MB) -PASS -- TEST 'rap_2threads_intel' [07:48, 05:50](941 MB) -PASS -- TEST 'rap_restart_intel' [04:39, 02:45](745 MB) -PASS -- TEST 'rap_sfcdiff_intel' [06:52, 04:51](869 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [06:54, 05:06](866 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:06, 03:36](741 MB) -PASS -- TEST 'hrrr_control_intel' [05:03, 02:38](864 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:07, 02:45](859 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:10, 03:01](933 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:32, 01:25](693 MB) -PASS -- TEST 'rrfs_v1beta_intel' [06:53, 04:47](860 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:29, 06:11](1821 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:37, 05:58](1813 MB) - -PASS -- COMPILE 'csawmg_intel' [07:11, 05:51] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [06:30, 04:12](821 MB) -PASS -- TEST 'control_ras_intel' [04:23, 02:12](517 MB) - -PASS -- COMPILE 'wam_intel' [07:11, 05:42] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [09:40, 07:45](1513 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [07:11, 05:58] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:09, 02:18](1722 MB) -PASS -- TEST 'regional_control_faster_intel' [05:49, 03:22](877 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [41:14, 40:08] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:00, 01:41](1458 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:02, 01:37](1462 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:31, 02:17](662 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:28, 02:03](661 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:56, 02:58](963 MB) -PASS -- TEST 'control_ras_debug_intel' [04:27, 02:07](668 MB) -PASS -- TEST 'control_diag_debug_intel' [05:59, 01:54](1517 MB) -PASS -- TEST 'control_debug_p8_intel' [05:56, 01:53](1747 MB) -PASS -- TEST 'regional_debug_intel' [14:56, 11:02](872 MB) -PASS -- TEST 'rap_control_debug_intel' [06:35, 03:21](1042 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:42, 03:27](1037 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:40, 03:36](1040 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:44, 03:36](1037 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:44, 03:38](1041 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:48, 03:34](1125 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:41, 03:28](1039 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:28, 03:30](1038 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:45, 03:22](1038 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:44, 03:27](1040 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:34, 03:25](1038 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:35, 03:37](1040 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:34, 05:25](1041 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:31, 03:19](1039 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:43, 03:34](1045 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:42, 03:37](1043 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:40, 05:43](1045 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:11, 03:05] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [11:08, 08:48](1541 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:12, 05:43] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:18, 03:18](1034 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:05, 04:23](747 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:45, 02:28](742 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:37, 05:21](791 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:33, 02:42](790 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:45, 02:34](739 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:46, 03:01](649 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:25, 01:15](633 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:11, 05:43] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:06, 01:26](952 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:35, 01:06](1084 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:46, 01:27](824 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:11, 05:48] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:02, 02:54](770 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 03:09] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:25, 03:20](919 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:23, 03:23](918 MB) -PASS -- TEST 'conus13km_debug_intel' [12:07, 09:10](1005 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [12:10, 09:17](675 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:14, 08:10](1135 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [11:05, 09:02](1072 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:05] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:33, 03:34](945 MB) - -PASS -- COMPILE 'hafsw_intel' [09:11, 07:27] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:25, 03:42](714 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:46, 03:08](1071 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:10, 04:49](778 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:54, 08:11](816 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [11:31, 08:31](834 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:51, 03:40](479 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:55, 04:34](486 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:37, 02:25](401 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:41, 04:41](456 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:55, 02:35](502 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:58, 02:24](502 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:56, 03:03](584 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:25, 01:01](427 MB) -PASS -- TEST 'gnv1_nested_intel' [05:51, 03:03](1709 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:11, 03:14] ( 1467 warnings 1469 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [11:03, 08:19](596 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [09:11, 07:19] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [08:04, 05:10](634 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [08:20, 05:18](799 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [09:12, 07:20] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [06:29, 03:54](792 MB) - -PASS -- COMPILE 'hafs_all_intel' [08:12, 07:06] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:03, 04:20](767 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:02, 04:28](750 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [12:56, 11:01](891 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:11, 05:01] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:23, 01:52](763 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:17, 01:02](752 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:15, 01:48](641 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 01:42](642 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:17, 01:39](650 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 01:41](751 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 01:42](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:18, 01:41](640 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:57, 04:11](706 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:53, 04:09](686 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 01:45](763 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:18, 02:44](2034 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:17, 02:46](2030 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:26] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:15, 03:46](745 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:11, 04:39] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:15, 01:42](764 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:39] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:24, 01:01](324 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:21, 00:51](461 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:52, 00:36](461 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:11, 06:30] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:38, 03:24](1786 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:11, 06:06] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:33, 03:18](1787 MB) - -PASS -- COMPILE 'atml_intel' [08:11, 06:36] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:35, 03:57](1893 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:38, 04:41](1892 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:25, 03:17](1042 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:12, 03:37] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:44, 04:35](1924 MB) - -PASS -- COMPILE 'atmw_intel' [08:14, 06:57] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:35, 01:25](1756 MB) - -PASS -- COMPILE 'atmaero_intel' [07:11, 06:03] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:34, 03:07](1939 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:32, 03:29](1596 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:25, 03:40](1608 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:02] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [16:03, 13:42](4443 MB) - -PASS -- COMPILE 'atm_fbh_intel' [07:12, 05:45] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [07:30, 06:02](831 MB) +PASS -- COMPILE 's2swa_32bit_intel' [10:10, 08:12] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:45, 04:15](2033 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:14, 11:49] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [12:35, 10:23](1920 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:34, 11:13](1953 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:27, 05:07](1083 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [14:26, 12:09](1907 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:11, 11:51] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [12:24, 10:10](1923 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:10, 03:48] ( 1528 warnings 1941 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [18:34, 16:16](1942 MB) + +PASS -- COMPILE 's2swa_intel' [10:11, 08:21] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [10:40, 05:16](2066 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:43, 05:19](2065 MB) +PASS -- TEST 'cpld_restart_p8_intel' [04:28, 03:00](1619 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:38, 05:18](2083 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [04:32, 03:04](1465 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:35, 06:05](2228 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [07:41, 05:08](2062 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:36, 04:16](2016 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:47, 05:16](2068 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [12:23, 06:01](2419 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [05:55, 04:01](2667 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [13:58, 06:49](3588 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [09:07, 04:27](3420 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:39, 05:13](1919 MB) + +PASS -- COMPILE 's2sw_intel' [09:10, 08:07] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [05:31, 03:02](1934 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:32, 04:29](1856 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:10, 03:46] ( 1418 warnings 1202 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:36, 08:36](2091 MB) + +PASS -- COMPILE 's2sw_debug_intel' [30:14, 29:03] ( 1418 warnings 1202 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:32, 03:53](1966 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [08:11, 06:45] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:31, 03:14](1982 MB) + +PASS -- COMPILE 's2s_intel' [08:10, 06:58] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [06:22, 04:11](2867 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:22, 01:16](2871 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:19, 00:45](2296 MB) + +PASS -- COMPILE 's2swa_faster_intel' [10:11, 09:03] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [07:40, 05:11](2065 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:11, 11:15] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [12:32, 10:22](1927 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:26, 05:11](1096 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [14:29, 12:07](1921 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 03:36] ( 1528 warnings 1941 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [20:34, 18:01](1965 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [08:11, 06:30] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:17, 02:34](533 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:25, 01:40](1435 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:27, 01:45](1445 MB) +PASS -- TEST 'control_latlon_intel' [03:24, 01:37](1435 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:29, 01:39](1426 MB) +PASS -- TEST 'control_c48_intel' [06:28, 04:35](1570 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:19, 04:15](695 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [06:27, 04:34](1576 MB) +PASS -- TEST 'control_c192_intel' [06:28, 04:44](1692 MB) +PASS -- TEST 'control_c384_intel' [11:35, 09:38](1962 MB) +PASS -- TEST 'control_c384gdas_intel' [12:00, 09:59](1179 MB) +PASS -- TEST 'control_stochy_intel' [03:17, 01:10](487 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:15, 00:43](291 MB) +PASS -- TEST 'control_lndp_intel' [03:17, 01:09](486 MB) +PASS -- TEST 'control_iovr4_intel' [03:15, 01:42](485 MB) +PASS -- TEST 'control_iovr5_intel' [03:17, 01:43](483 MB) +PASS -- TEST 'control_p8_intel' [03:26, 01:55](1722 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:29, 02:02](1722 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:27, 01:54](1728 MB) +PASS -- TEST 'control_restart_p8_intel' [02:23, 01:07](873 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:24, 01:53](1712 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:24, 01:06](886 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:24, 01:56](1722 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:23, 02:08](1795 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:21, 03:14](1723 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:26, 02:37](1778 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:23, 02:03](1726 MB) +PASS -- TEST 'merra2_thompson_intel' [04:23, 02:15](1728 MB) +PASS -- TEST 'regional_control_intel' [05:17, 03:23](875 MB) +PASS -- TEST 'regional_restart_intel' [03:17, 01:50](860 MB) +PASS -- TEST 'regional_decomp_intel' [05:19, 03:30](889 MB) +PASS -- TEST 'regional_2threads_intel' [04:18, 02:36](1024 MB) +PASS -- TEST 'regional_noquilt_intel' [05:22, 03:15](1205 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:24, 03:19](880 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:21, 03:23](878 MB) +PASS -- TEST 'regional_wofs_intel' [06:22, 04:28](1572 MB) + +PASS -- COMPILE 'rrfs_intel' [08:10, 06:14] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [06:24, 04:46](870 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:33, 02:49](1164 MB) +PASS -- TEST 'rap_decomp_intel' [06:21, 05:03](866 MB) +PASS -- TEST 'rap_2threads_intel' [07:22, 05:45](938 MB) +PASS -- TEST 'rap_restart_intel' [05:21, 02:29](744 MB) +PASS -- TEST 'rap_sfcdiff_intel' [06:22, 04:46](869 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [06:20, 05:01](864 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:21, 03:34](741 MB) +PASS -- TEST 'hrrr_control_intel' [04:25, 02:36](864 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:19, 02:38](861 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:19, 02:57](938 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:16, 01:22](692 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:24, 04:42](860 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:17, 06:06](1821 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:19, 05:54](1813 MB) + +PASS -- COMPILE 'csawmg_intel' [07:11, 06:00] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [09:21, 04:09](821 MB) +PASS -- TEST 'control_ras_intel' [07:15, 02:11](519 MB) + +PASS -- COMPILE 'wam_intel' [07:11, 05:46] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:23, 07:30](1519 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [07:10, 06:04] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:27, 01:55](1725 MB) +PASS -- TEST 'regional_control_faster_intel' [05:19, 03:15](877 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:12, 05:44] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:22, 01:37](1459 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:23, 01:33](1456 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:15, 02:03](657 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:15, 01:51](659 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:20, 02:52](962 MB) +PASS -- TEST 'control_ras_debug_intel' [06:15, 01:53](669 MB) +PASS -- TEST 'control_diag_debug_intel' [05:20, 01:50](1515 MB) +PASS -- TEST 'control_debug_p8_intel' [05:20, 01:48](1761 MB) +PASS -- TEST 'regional_debug_intel' [15:21, 11:20](901 MB) +PASS -- TEST 'rap_control_debug_intel' [06:16, 03:18](1043 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:16, 03:15](1037 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:15, 03:17](1041 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:15, 03:19](1036 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:14, 03:22](1041 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:18, 03:31](1124 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:15, 03:22](1038 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:16, 03:28](1039 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:15, 03:20](1039 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:16, 03:17](1041 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:16, 03:16](1037 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:16, 03:23](1040 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:17, 05:20](1041 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:15, 03:19](1035 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:16, 03:20](1043 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:16, 03:24](1038 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:23, 05:41](1045 MB) + +PASS -- COMPILE 'wam_debug_intel' [23:13, 21:53] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [11:23, 08:34](1540 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:12, 05:41] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:33, 02:41](1039 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:22, 04:05](745 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:24, 02:15](743 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:19, 04:56](793 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:20, 02:35](791 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:19, 02:20](743 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:19, 02:58](645 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:16, 01:15](627 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:12, 05:46] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:29, 01:21](953 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:19, 00:44](1080 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:21, 00:56](824 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:12, 05:50] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:25, 02:45](771 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:12, 03:05] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:17, 03:17](913 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:16, 03:11](917 MB) +PASS -- TEST 'conus13km_debug_intel' [11:26, 08:50](1005 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [10:23, 09:04](673 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:21, 07:59](1138 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [10:21, 08:51](1070 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:12, 03:01] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:15, 03:18](947 MB) + +PASS -- COMPILE 'hafsw_intel' [09:12, 07:18] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [05:45, 03:34](718 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:18, 02:53](1068 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:52, 04:45](784 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [09:44, 08:01](817 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [11:50, 08:35](839 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:42, 03:31](476 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:55, 04:31](489 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:28, 01:46](401 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:15, 04:39](455 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:32, 02:32](507 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:36, 02:23](501 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:35, 02:58](588 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:20, 00:59](430 MB) +PASS -- TEST 'gnv1_nested_intel' [04:54, 02:58](1711 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:11, 03:32] ( 1470 warnings 1474 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:33, 08:24](605 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [09:12, 07:29] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [06:35, 04:59](632 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [06:36, 05:04](800 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [09:12, 07:47] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:52, 03:50](790 MB) + +PASS -- COMPILE 'hafs_all_intel' [09:12, 07:38] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [06:43, 04:21](770 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:44, 04:22](759 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [12:36, 10:56](890 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:12, 04:47] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:15, 01:42](751 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:14, 01:02](751 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:14, 01:36](641 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:16, 01:37](643 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:16, 01:37](643 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:14, 01:41](763 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:14, 01:41](762 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:14, 01:36](639 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:32, 04:12](706 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:30, 04:10](687 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:13, 01:43](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:15, 02:46](2031 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:15, 02:45](2031 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [18:14, 16:23] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:15, 03:46](747 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 05:03] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:14, 01:40](764 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:38] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:23, 01:00](324 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:20, 00:50](461 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:20, 00:34](460 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:11, 06:38] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:31, 02:28](1799 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:11, 06:01] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:28, 03:14](1788 MB) + +PASS -- COMPILE 'atml_intel' [08:11, 06:27] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:32, 04:27](1894 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [05:32, 03:58](1895 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:18, 02:12](1041 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:10, 03:38] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:30, 04:10](1925 MB) + +PASS -- COMPILE 'atmw_intel' [08:11, 07:07] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:25, 01:16](1765 MB) + +PASS -- COMPILE 'atmaero_intel' [01:19, 00:08] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:28, 02:45](1948 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:28, 03:13](1610 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:25, 03:19](1609 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:11, 03:10] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [15:47, 13:38](4455 MB) + +PASS -- COMPILE 'atm_fbh_intel' [54:16, 52:54] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [07:20, 06:02](830 MB) SYNOPSIS: -Starting Date/Time: 20250108 10:30:02 -Ending Date/Time: 20250108 12:57:42 -Total Time: 02h:28m:21s +Starting Date/Time: 20250115 22:22:02 +Ending Date/Time: 20250116 00:01:17 +Total Time: 01h:39m:36s Compiles Completed: 42/42 Tests Completed: 187/187 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 49424bdd57..661c64f2c1 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -b5b4558a9da026e48f0ebaca8c082af7b7e7915d +b8c45aa9505538b1212b9b6069ad21d5ee2a6706 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,13 +9,13 @@ Submodule hashes used in testing: ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 7d998809dc84996248f93ced49730cfe92eae7cf FV3 (heads/develop) + 312657ab886269bc71d239abfb4dc2c86d1b9f21 FV3 (remotes/origin/rrfsv1-to-ufs/dev9) 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) 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) + 174cf7b56f864e260f70f801f4fa3d70c7fac7e9 WW3 (remotes/origin/devufs20241211develop20240111) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -27,445 +27,390 @@ 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-20250107 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_1533959 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1806604 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:12, 13:00] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:21, 07:47](3278 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:12, 16:11] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:07, 19:58](1966 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:19, 20:41](2132 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:11, 08:12](1257 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:05, 23:26](1867 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:12, 15:31] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [21:50, 19:16](1937 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:12, 06:04] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:06, 25:13](1879 MB) - -PASS -- COMPILE 's2swa_intel' [14:14, 13:00] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:21, 09:31](3319 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:24, 08:48](3323 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:14, 04:42](3217 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:15, 09:10](3326 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:21, 04:56](3231 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:11, 09:02](3524 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:12, 09:15](3306 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:19, 07:28](3192 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:21, 08:48](3325 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:20, 10:22](3491 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:52, 06:23](3589 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:12, 10:37](4269 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:40, 06:32](4347 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:14, 07:53](3292 MB) - -PASS -- COMPILE 's2sw_intel' [14:12, 12:21] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:20, 06:38](1953 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:23, 06:56](2027 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:12, 05:55] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [16:22, 13:32](3329 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:12, 05:43] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:04, 06:36](1952 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:12, 11:17] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:00, 04:54](2021 MB) - -PASS -- COMPILE 's2s_intel' [13:13, 11:31] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:45, 07:52](3002 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:41, 02:23](3007 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:37, 01:26](2451 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:12, 17:10] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [11:18, 08:36](3311 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:12, 16:09] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:07, 17:46](2000 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:23, 08:21](1248 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:09, 20:32](1902 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:12, 05:50] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:23, 26:51](1936 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:12, 11:06] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:22, 03:25](677 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:38, 02:34](1580 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:49, 02:36](1586 MB) -PASS -- TEST 'control_latlon_intel' [04:41, 02:31](1573 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:47, 02:35](1574 MB) -PASS -- TEST 'control_c48_intel' [09:48, 07:09](1703 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:28, 06:33](828 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [09:48, 07:09](1706 MB) -PASS -- TEST 'control_c192_intel' [10:02, 07:30](1743 MB) -PASS -- TEST 'control_c384_intel' [12:00, 08:11](1965 MB) -PASS -- TEST 'control_c384gdas_intel' [12:54, 08:07](1347 MB) -PASS -- TEST 'control_stochy_intel' [03:23, 01:44](635 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:27, 00:58](476 MB) -PASS -- TEST 'control_lndp_intel' [03:22, 01:33](639 MB) -PASS -- TEST 'control_iovr4_intel' [04:25, 02:28](637 MB) -PASS -- TEST 'control_iovr5_intel' [04:23, 02:29](634 MB) -PASS -- TEST 'control_p8_intel' [04:57, 03:02](1865 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:56, 03:09](1873 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:49, 02:53](1870 MB) -PASS -- TEST 'control_restart_p8_intel' [03:45, 02:02](1108 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:48, 02:55](1870 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:48, 01:42](1136 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:50, 03:20](1852 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:48, 03:13](1922 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:41, 05:32](1863 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:51, 04:34](1926 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:56, 03:07](1875 MB) -PASS -- TEST 'merra2_thompson_intel' [05:50, 03:23](1872 MB) -PASS -- TEST 'regional_control_intel' [07:36, 05:31](1103 MB) -PASS -- TEST 'regional_restart_intel' [04:36, 02:57](1086 MB) -PASS -- TEST 'regional_decomp_intel' [07:35, 05:42](1107 MB) -PASS -- TEST 'regional_2threads_intel' [05:36, 04:05](1043 MB) -PASS -- TEST 'regional_noquilt_intel' [07:38, 05:22](1406 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:40, 05:23](1101 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:41, 05:22](1100 MB) -PASS -- TEST 'regional_wofs_intel' [08:34, 07:08](1884 MB) - -PASS -- COMPILE 'rrfs_intel' [12:12, 10:30] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:41, 07:52](1086 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:10, 04:10](1253 MB) -PASS -- TEST 'rap_decomp_intel' [10:43, 08:30](1018 MB) -PASS -- TEST 'rap_2threads_intel' [10:38, 08:51](1080 MB) -PASS -- TEST 'rap_restart_intel' [05:44, 04:04](1081 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:44, 07:50](1086 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:39, 08:13](1021 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:44, 05:54](1121 MB) -PASS -- TEST 'hrrr_control_intel' [06:41, 04:15](1012 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:38, 04:08](1005 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:38, 04:21](1063 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:29, 02:12](978 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:45, 07:44](1080 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:31, 09:39](1961 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:30, 09:21](2048 MB) - -PASS -- COMPILE 'csawmg_intel' [11:12, 10:06] -PASS -- TEST 'control_csawmg_intel' [08:40, 06:11](1000 MB) -PASS -- TEST 'control_ras_intel' [05:24, 03:19](721 MB) - -PASS -- COMPILE 'wam_intel' [11:12, 10:01] ( 1 remarks ) -FAILED: TEST TIMED OUT -- TEST 'control_wam_intel' [, ]( MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:13, 10:14] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:51, 02:48](1867 MB) -PASS -- TEST 'regional_control_faster_intel' [06:39, 04:54](1089 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:12, 07:29] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:50, 02:23](1576 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:52, 02:22](1588 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:27, 03:09](793 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:25, 02:48](797 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:42, 04:24](1102 MB) -PASS -- TEST 'control_ras_debug_intel' [04:25, 02:51](800 MB) -PASS -- TEST 'control_diag_debug_intel' [04:55, 02:53](1649 MB) -PASS -- TEST 'control_debug_p8_intel' [04:48, 02:49](1875 MB) -PASS -- TEST 'regional_debug_intel' [19:47, 17:56](1056 MB) -PASS -- TEST 'rap_control_debug_intel' [07:26, 05:22](1173 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:28, 04:59](1174 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:28, 05:27](1173 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:28, 05:28](1177 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:23, 05:02](1169 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:46, 05:19](1259 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:25, 05:09](1178 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:26, 05:10](1173 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:24, 05:22](1176 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:26, 05:02](1172 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:23, 04:59](1173 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:23, 05:05](1177 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:23, 08:24](1174 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 05:01](1175 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:25, 05:05](1174 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:25, 05:12](1174 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:47, 08:54](1180 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:12, 04:14] -PASS -- TEST 'control_csawmg_debug_gnu' [04:48, 02:27](699 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:11, 04:43] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:52, 13:33](1643 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:00] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:03, 03:55](1125 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:41, 06:33](1039 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:40, 03:26](964 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:36, 07:28](983 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:32, 03:55](950 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:35, 03:39](909 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:45, 04:57](1010 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:29, 01:53](905 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 10:04] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:04, 02:03](1171 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:44, 01:00](1138 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:46, 01:21](1076 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 09:57] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:45, 04:20](963 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:37] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:31, 05:19](1047 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:29, 05:15](1047 MB) -PASS -- TEST 'conus13km_debug_intel' [16:48, 14:15](1178 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:45, 14:24](881 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [14:43, 12:41](1149 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:43, 14:17](1234 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:12, 04:31] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:24, 05:24](1096 MB) - -PASS -- COMPILE 'hafsw_intel' [13:12, 12:01] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:20, 05:01](693 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:32, 05:39](1090 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:21, 06:59](790 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:17, 14:50](824 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:29, 18:34](851 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:57, 05:35](476 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:21, 06:49](484 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:55, 02:51](350 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:35, 07:32](460 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:45, 03:42](498 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:50, 03:34](497 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:59, 04:06](548 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:31, 01:11](376 MB) -PASS -- TEST 'gnv1_nested_intel' [07:04, 04:05](1701 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:11, 05:03] ( 1462 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:55, 13:07](538 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:24] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:02, 10:12](607 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:10, 10:19](706 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 11:42] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:34, 08:12](691 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:12, 10:45] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:20, 06:31](789 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:18, 06:34](773 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:00, 16:35](1211 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:12, 06:57] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:25, 03:06](1126 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:24, 02:11](1079 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:25, 02:43](1023 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:22, 02:46](1018 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:20, 02:54](1012 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:19, 02:48](1141 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:20, 02:46](1153 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:19, 02:42](1014 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:32, 06:19](1065 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:30, 06:24](1043 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:47](1150 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:22, 03:57](2494 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:21, 03:56](2516 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:12, 03:17] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:20, 06:43](1071 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:12, 06:51] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 02:44](1151 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:12, 01:05] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:30, 00:45](253 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:48](318 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:31](315 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:12, 01:19] -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:31, 00:37](538 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:35, 00:20](453 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:12, 10:55] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:03, 03:49](1954 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:13, 10:38] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:55, 04:51](1959 MB) - -PASS -- COMPILE 'atml_intel' [12:13, 11:02] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:00, 04:24](1834 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:59, 04:22](1839 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:49, 02:36](1075 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:12, 05:49] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:55, 05:50](1847 MB) - -PASS -- COMPILE 'atmw_intel' [12:14, 10:50] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:50, 01:57](1902 MB) - -PASS -- COMPILE 'atmaero_intel' [12:12, 10:33] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:06, 04:31](3170 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:06, 04:57](3066 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:46, 05:01](3072 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:13, 04:37] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_fbh_intel' [11:12, 10:02] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:31, 11:47](1095 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:12, 06:45] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:42, 08:30](1042 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:13, 06:39] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:45, 04:55](967 MB) - -PASS -- COMPILE 'atm_gnu' [06:11, 04:34] -PASS -- TEST 'control_c48_gnu' [11:44, 09:32](1497 MB) -PASS -- TEST 'control_stochy_gnu' [05:24, 03:28](481 MB) -PASS -- TEST 'control_ras_gnu' [06:24, 04:57](488 MB) -PASS -- TEST 'control_p8_gnu' [06:54, 04:28](1419 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:52, 04:26](1431 MB) -PASS -- TEST 'control_flake_gnu' [12:26, 10:41](522 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:11, 04:12] -PASS -- TEST 'rap_control_gnu' [13:41, 11:32](796 MB) -PASS -- TEST 'rap_decomp_gnu' [13:36, 11:39](798 MB) -PASS -- TEST 'rap_2threads_gnu' [19:38, 17:24](898 MB) -PASS -- TEST 'rap_restart_gnu' [07:53, 05:48](560 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [13:43, 11:24](795 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:37, 11:44](796 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:39, 08:29](572 MB) -PASS -- TEST 'hrrr_control_gnu' [07:41, 05:52](794 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:39, 05:51](783 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [10:35, 08:38](891 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:33, 05:55](793 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:28, 03:01](548 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:29, 02:58](637 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [13:43, 11:16](792 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:11, 12:37] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:03, 07:36](3301 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 16:49] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:02, 19:52](1980 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:15, 20:35](2220 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:09, 08:30](1255 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:54, 23:25](1881 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:11, 16:32] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:42, 19:13](1965 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 06:16] ( 1523 warnings 1991 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:06, 24:48](1946 MB) + +PASS -- COMPILE 's2swa_intel' [15:11, 13:19] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:15, 09:45](3347 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:21, 08:42](3349 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:12, 05:03](3254 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:11, 08:48](3369 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:19, 04:48](3260 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:08, 08:58](3558 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:08, 08:53](3329 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:23, 07:25](3218 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:19, 08:39](3354 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:00, 10:16](3523 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:01, 06:38](3612 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:13, 10:17](4323 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:42, 06:33](4361 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:23, 07:24](3334 MB) + +PASS -- COMPILE 's2sw_intel' [14:11, 12:20] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:55, 06:17](1985 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:57, 06:23](2058 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:34] ( 1413 warnings 1221 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:12, 13:35](3372 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:11, 06:00] ( 1413 warnings 1221 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:56, 06:26](2012 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:11, 11:21] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:57, 04:39](2013 MB) + +PASS -- COMPILE 's2s_intel' [13:11, 11:48] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:38, 07:54](3039 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:38, 02:25](3032 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:37, 01:27](2483 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:11, 16:34] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [11:15, 08:26](3333 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 15:44] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:00, 18:07](2012 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:05, 08:19](1249 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:59, 21:23](1925 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:45] ( 1523 warnings 1991 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:04, 26:25](1992 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:11, 10:51] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:21, 03:27](703 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:40, 02:33](1591 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:45, 02:37](1596 MB) +PASS -- TEST 'control_latlon_intel' [04:38, 02:36](1599 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:45, 02:36](1589 MB) +PASS -- TEST 'control_c48_intel' [09:41, 07:11](1723 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:26, 06:35](846 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [09:40, 07:15](1722 MB) +PASS -- TEST 'control_c192_intel' [09:54, 07:35](1752 MB) +PASS -- TEST 'control_c384_intel' [12:05, 08:12](1996 MB) +PASS -- TEST 'control_c384gdas_intel' [12:51, 08:14](1391 MB) +PASS -- TEST 'control_stochy_intel' [03:22, 01:42](659 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:26, 01:10](474 MB) +PASS -- TEST 'control_lndp_intel' [03:20, 01:38](661 MB) +PASS -- TEST 'control_iovr4_intel' [04:23, 02:39](616 MB) +PASS -- TEST 'control_iovr5_intel' [04:23, 02:33](656 MB) +PASS -- TEST 'control_p8_intel' [04:54, 03:00](1891 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:56, 03:11](1889 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:50, 02:59](1867 MB) +PASS -- TEST 'control_restart_p8_intel' [03:44, 01:41](1117 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:50, 03:01](1882 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:49, 01:42](1162 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:45, 03:02](1870 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:42, 03:14](1946 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:40, 05:11](1869 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:47, 04:13](1940 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:51, 03:11](1895 MB) +PASS -- TEST 'merra2_thompson_intel' [05:48, 03:29](1899 MB) +PASS -- TEST 'regional_control_intel' [07:35, 05:26](1118 MB) +PASS -- TEST 'regional_restart_intel' [04:31, 02:56](1098 MB) +PASS -- TEST 'regional_decomp_intel' [07:33, 05:46](1118 MB) +PASS -- TEST 'regional_2threads_intel' [05:34, 04:03](1069 MB) +PASS -- TEST 'regional_noquilt_intel' [07:35, 05:21](1421 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:38, 05:21](1118 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:33, 05:26](1117 MB) +PASS -- TEST 'regional_wofs_intel' [08:33, 07:00](1903 MB) + +PASS -- COMPILE 'rrfs_intel' [12:11, 10:11] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:36, 07:53](1112 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:01, 04:18](1268 MB) +PASS -- TEST 'rap_decomp_intel' [10:37, 08:16](1039 MB) +PASS -- TEST 'rap_2threads_intel' [10:37, 08:49](1098 MB) +PASS -- TEST 'rap_restart_intel' [05:39, 04:07](1108 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:45, 07:55](1098 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:36, 08:19](1043 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:46, 06:03](1126 MB) +PASS -- TEST 'hrrr_control_intel' [05:38, 04:02](1038 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:32, 04:10](1029 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:31, 04:22](1085 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:24, 02:12](996 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:45, 07:48](1091 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:24, 09:41](1975 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:24, 09:26](2050 MB) + +PASS -- COMPILE 'csawmg_intel' [12:11, 10:09] +PASS -- TEST 'control_csawmg_intel' [08:38, 06:13](1028 MB) +PASS -- TEST 'control_ras_intel' [05:20, 03:20](751 MB) + +PASS -- COMPILE 'wam_intel' [12:11, 10:15] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:42, 11:11](1657 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:20] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:46, 02:48](1893 MB) +PASS -- TEST 'regional_control_faster_intel' [06:35, 04:57](1123 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 07:48] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:53, 02:29](1622 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:55, 02:27](1627 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:34, 03:11](825 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:29, 02:51](830 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:47, 04:25](1139 MB) +PASS -- TEST 'control_ras_debug_intel' [04:28, 02:49](837 MB) +PASS -- TEST 'control_diag_debug_intel' [04:57, 02:50](1684 MB) +PASS -- TEST 'control_debug_p8_intel' [04:51, 02:47](1910 MB) +PASS -- TEST 'regional_debug_intel' [19:49, 18:00](1095 MB) +PASS -- TEST 'rap_control_debug_intel' [06:30, 05:02](1207 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:33, 04:57](1216 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:34, 05:11](1209 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:33, 05:05](1212 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:23, 05:10](1213 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:32, 05:26](1297 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:20, 05:18](1216 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:21, 05:18](1210 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:22, 05:07](1217 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:21, 05:05](1214 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:22, 05:07](1218 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:22, 05:07](1210 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:23, 08:23](1205 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:25, 05:08](1207 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:22, 05:02](1209 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:24, 05:07](1215 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:37, 08:55](1218 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:11, 04:29] +PASS -- TEST 'control_csawmg_debug_gnu' [04:42, 02:32](714 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 04:41] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:04, 14:01](1671 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 10:17] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:00, 04:04](1148 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:36, 06:34](1060 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:36, 03:27](987 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:32, 07:31](998 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:31, 03:51](973 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:28, 03:38](920 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:38, 04:54](1027 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:25, 01:53](919 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 10:03] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:54, 02:03](1192 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:37, 01:00](1161 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:38, 01:15](1093 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 10:01] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:40, 04:15](986 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:59] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 05:08](1093 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:21, 05:02](1092 MB) +PASS -- TEST 'conus13km_debug_intel' [16:45, 14:57](1195 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:45, 14:17](936 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [14:43, 12:35](1225 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:41, 14:05](1302 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:57] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:21, 05:04](1131 MB) + +PASS -- COMPILE 'hafsw_intel' [13:11, 12:01] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:17, 04:59](717 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:30, 05:50](1111 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:26, 06:57](816 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:15, 14:53](849 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:30, 18:57](868 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:07, 05:32](493 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:16, 06:47](506 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:41, 02:43](380 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:21, 07:13](480 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:47, 03:44](518 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:52, 03:31](519 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:50, 04:07](581 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:25, 01:13](403 MB) +PASS -- TEST 'gnv1_nested_intel' [06:24, 04:07](1713 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:11, 05:00] ( 1465 warnings 1494 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:51, 13:00](583 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:12, 11:10] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:55, 10:13](656 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:02, 10:18](734 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 11:27] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:26, 08:13](720 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:11, 11:04] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:15, 06:33](816 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:13, 06:35](796 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:55, 17:10](1197 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:10, 06:27] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:17, 02:48](1155 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:44](1123 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:37](1029 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:47](1034 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:16, 02:48](1024 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:16, 02:44](1155 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 02:49](1165 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:16, 02:46](1021 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:32, 06:25](1074 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:21, 06:21](1049 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:15, 03:20](1143 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:17, 03:54](2480 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:19, 03:57](2526 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:20] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 06:28](1081 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:10, 06:52] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:16, 02:46](1147 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:16] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:27, 00:45](262 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:47](327 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:24, 00:33](322 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:47] +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:31, 00:36](563 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:30, 00:18](458 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 10:42] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:58, 03:43](1994 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 10:51] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:54, 04:49](1968 MB) + +PASS -- COMPILE 'atml_intel' [12:12, 11:07] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:59, 04:17](1867 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:54, 04:22](1855 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:38, 02:23](1100 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:11, 05:55] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:52, 05:48](1891 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 10:45] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:50, 02:06](1892 MB) + +PASS -- COMPILE 'atmaero_intel' [12:11, 10:27] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:51, 04:25](3194 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:54, 06:28](3046 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:41, 04:59](3104 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:10, 04:45] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_fbh_intel' [11:11, 10:02] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:27, 11:50](1104 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:11, 06:49] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:35, 08:31](1066 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:11, 06:50] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:39, 04:57](983 MB) + +PASS -- COMPILE 'atm_gnu' [06:11, 04:30] +PASS -- TEST 'control_c48_gnu' [11:37, 09:37](1510 MB) +PASS -- TEST 'control_stochy_gnu' [05:20, 03:30](496 MB) +PASS -- TEST 'control_ras_gnu' [06:20, 04:58](500 MB) +PASS -- TEST 'control_p8_gnu' [06:53, 04:33](1457 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:48, 04:24](1450 MB) +PASS -- TEST 'control_flake_gnu' [12:26, 10:33](542 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:11, 04:15] +PASS -- TEST 'rap_control_gnu' [13:36, 11:36](808 MB) +PASS -- TEST 'rap_decomp_gnu' [13:30, 11:37](803 MB) +PASS -- TEST 'rap_2threads_gnu' [19:35, 17:20](910 MB) +PASS -- TEST 'rap_restart_gnu' [07:34, 05:49](572 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:35, 11:35](833 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:31, 11:44](837 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:40, 08:34](578 MB) +PASS -- TEST 'hrrr_control_gnu' [07:35, 06:02](805 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:30, 05:55](823 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [10:35, 08:35](898 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:31, 05:59](805 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:24, 03:05](559 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:24, 03:03](648 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [13:46, 11:19](836 MB) PASS -- COMPILE 'csawmg_gnu' [05:11, 03:54] -PASS -- TEST 'control_csawmg_gnu' [10:39, 08:29](727 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:12, 06:36] -PASS -- TEST 'control_diag_debug_gnu' [03:46, 01:38](1247 MB) -PASS -- TEST 'regional_debug_gnu' [13:37, 12:05](732 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:33, 02:40](794 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:25, 02:36](796 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:25, 02:38](802 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:22, 02:40](798 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:41, 02:50](883 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:22, 04:10](798 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:22, 02:42](796 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:24, 02:38](793 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:22, 01:34](437 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:21, 01:47](429 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:40, 01:45](1410 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:24, 02:39](799 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:22, 02:41](803 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:36, 04:25](805 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:23] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:12, 04:10] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:36, 09:53](686 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:34, 05:10](689 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [17:32, 15:40](725 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [09:31, 08:03](726 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:28, 05:20](682 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:35, 07:13](538 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:26, 02:38](520 MB) -PASS -- TEST 'conus13km_control_gnu' [05:52, 03:12](851 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:41, 01:32](861 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:41, 01:54](536 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:12, 09:32] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:36, 05:57](713 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:12, 06:37] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:23, 02:35](688 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:24, 02:28](686 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:46, 06:34](852 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:40, 07:05](555 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [07:37, 05:43](860 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:36, 06:53](920 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:39] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:23, 02:40](722 MB) - -PASS -- COMPILE 's2swa_gnu' [18:13, 16:22] - -PASS -- COMPILE 's2s_gnu' [18:12, 16:14] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [13:02, 11:06](1490 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [05:12, 03:13] - -PASS -- COMPILE 's2sw_pdlib_gnu' [18:14, 16:10] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:59, 24:46](1439 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:14, 03:05] - -PASS -- COMPILE 'datm_cdeps_gnu' [17:13, 15:28] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:17, 03:07](689 MB) +PASS -- TEST 'control_csawmg_gnu' [10:33, 08:35](738 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:42] +PASS -- TEST 'control_diag_debug_gnu' [03:42, 01:39](1270 MB) +PASS -- TEST 'regional_debug_gnu' [14:34, 12:07](717 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:21, 02:42](820 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:20, 02:35](814 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:20, 02:41](813 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:21, 02:37](821 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:34, 02:57](898 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:21, 04:07](813 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:22, 02:42](821 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:22, 02:42](811 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:21, 01:37](455 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:20, 01:45](449 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:38, 01:39](1429 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:23, 02:41](816 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:22, 02:42](822 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:34, 04:31](821 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:10, 02:25] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 04:07] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:34, 09:45](699 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:34, 05:12](689 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [17:32, 15:43](737 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [10:29, 08:09](735 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:30, 05:17](693 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:33, 07:18](548 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:27, 02:44](530 MB) +PASS -- TEST 'conus13km_control_gnu' [05:52, 03:10](866 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:45, 01:37](873 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:44, 01:53](547 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:55] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:40, 05:59](720 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:41] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:21, 02:37](703 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:21, 02:33](706 MB) +PASS -- TEST 'conus13km_debug_gnu' [09:46, 07:08](882 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:46, 07:02](572 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [07:39, 05:53](890 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:39, 06:57](954 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:40] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:21, 02:38](728 MB) + +PASS -- COMPILE 's2swa_gnu' [18:12, 16:41] + +PASS -- COMPILE 's2s_gnu' [17:11, 16:04] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [15:07, 12:14](1493 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:04] + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 16:08] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [25:01, 22:29](1447 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:52] + +PASS -- COMPILE 'datm_cdeps_gnu' [17:11, 15:59] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:20, 03:04](696 MB) SYNOPSIS: -Starting Date/Time: 20250108 13:09:09 -Ending Date/Time: 20250108 14:58:48 -Total Time: 01h:49m:58s +Starting Date/Time: 20250115 16:21:51 +Ending Date/Time: 20250115 18:08:44 +Total Time: 01h:47m:11s Compiles Completed: 61/61 -Tests Completed: 248/249 -Failed Tests: -* TEST control_wam_intel: FAILED: TEST TIMED OUT --- LOG: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_1533959/control_wam_intel/err - -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 HERA REGRESSION TESTING LOG==== -====START OF HERA REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -b5b4558a9da026e48f0ebaca8c082af7b7e7915d - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) - ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) - b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 7d998809dc84996248f93ced49730cfe92eae7cf 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) - 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) - 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) - 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: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20250107 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3140308 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-e) - USE ECFLOW - -PASS -- COMPILE 'wam_intel' [12:12, 10:23] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:41, 11:18](1638 MB) - -SYNOPSIS: -Starting Date/Time: 20250108 17:37:44 -Ending Date/Time: 20250108 18:04:59 -Total Time: 00h:27m:23s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 249/249 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 6ebf5473bc..1c786a574f 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7 +1,7 @@ -====START OF hercules REGRESSION TESTING LOG==== +====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -b5b4558a9da026e48f0ebaca8c082af7b7e7915d +b8c45aa9505538b1212b9b6069ad21d5ee2a6706 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 7d998809dc84996248f93ced49730cfe92eae7cf FV3 (heads/develop) + 312657ab886269bc71d239abfb4dc2c86d1b9f21 FV3 (remotes/origin/rrfsv1-to-ufs/dev9) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 24643b0e0f9754d76176d60ce155bf8956bfb44d FV3/ccpp/physics (EP4-1092-g24643b0e) + 0b426618bef07638c3e095755c831af93c7f1aa4 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5544-g0b426618) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -27,460 +27,10 @@ Submodule hashes used in testing: 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) + 174cf7b56f864e260f70f801f4fa3d70c7fac7e9 WW3 (remotes/origin/devufs20241211develop20240111) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20250107 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/jongkim/FV3_RT/rt_3241797 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-r) - USE ROCOTO - -PASS -- COMPILE s2swa_32bit_intel -PASS -- TEST cpld_control_p8_mixedmode_intel [09:27, 08:40] (2143300 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_intel -PASS -- TEST cpld_control_gfsv17_intel [19:06, 18:11] (2021140 MB) -PASS -- TEST cpld_control_gfsv17_iau_intel [19:23, 18:19] (2329120 MB) -PASS -- TEST cpld_restart_gfsv17_intel [08:21, 07:17] (1358320 MB) -PASS -- TEST cpld_mpi_gfsv17_intel [19:28, 18:30] (1924000 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel -PASS -- TEST cpld_control_sfs_intel [17:15, 16:50] (1978888 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_debug_intel -PASS -- TEST cpld_debug_gfsv17_intel [24:22, 23:26] (1991748 MB) - -PASS -- COMPILE s2swa_intel -PASS -- TEST cpld_control_p8_intel [09:57, 08:59] (2200188 MB) -PASS -- TEST cpld_control_p8.v2.sfc_intel [09:14, 08:29] (2202884 MB) -PASS -- TEST cpld_restart_p8_intel [05:22, 04:41] (1977812 MB) -PASS -- TEST cpld_control_qr_p8_intel [09:27, 08:35] (2228172 MB) -PASS -- TEST cpld_restart_qr_p8_intel [06:08, 05:05] (1737784 MB) -PASS -- TEST cpld_2threads_p8_intel [12:04, 11:18] (2440508 MB) -PASS -- TEST cpld_decomp_p8_intel [08:52, 08:27] (2188796 MB) -PASS -- TEST cpld_mpi_p8_intel [08:00, 07:13] (2103104 MB) -PASS -- TEST cpld_control_ciceC_p8_intel [09:36, 08:49] (2206072 MB) -PASS -- TEST cpld_control_c192_p8_intel [16:59, 15:37] (2981708 MB) -PASS -- TEST cpld_restart_c192_p8_intel [08:58, 06:57] (2915792 MB) -PASS -- TEST cpld_bmark_p8_intel [17:05, 12:27] (3872412 MB) -PASS -- TEST cpld_restart_bmark_p8_intel [13:32, 07:21] (3684928 MB) -PASS -- TEST cpld_s2sa_p8_intel [07:50, 07:12] (2172628 MB) - -PASS -- COMPILE s2sw_intel -PASS -- TEST cpld_control_noaero_p8_intel [08:38, 07:55] (2004372 MB) -PASS -- TEST cpld_control_nowave_noaero_p8_intel [07:42, 07:07] (2105160 MB) - -PASS -- COMPILE s2swa_debug_intel -PASS -- TEST cpld_debug_p8_intel [12:35, 11:51] (2243484 MB) - -PASS -- COMPILE s2sw_debug_intel -PASS -- TEST cpld_debug_noaero_p8_intel [06:13, 05:38] (2048864 MB) - -PASS -- COMPILE s2s_aoflux_intel -PASS -- TEST cpld_control_noaero_p8_agrid_intel [04:46, 04:06] (2075464 MB) - -PASS -- COMPILE s2s_intel -PASS -- TEST cpld_control_c48_intel [06:18, 05:52] (3040304 MB) -PASS -- TEST cpld_warmstart_c48_intel [02:45, 02:15] (3022884 MB) -PASS -- TEST cpld_restart_c48_intel [01:32, 01:15] (2470824 MB) - -PASS -- COMPILE s2swa_faster_intel [12:06, 12:05](1 warnings,11 remarks) -PASS -- TEST cpld_control_p8_faster_intel [10:07, 09:19] (2206172 MB) - -PASS -- COMPILE s2sw_pdlib_intel [15:46, 15:46](1 warnings,11 remarks) -PASS -- TEST cpld_control_pdlib_p8_intel [16:34, 15:52] (2080476 MB) -PASS -- TEST cpld_restart_pdlib_p8_intel [07:49, 06:58] (1381748 MB) -PASS -- TEST cpld_mpi_pdlib_p8_intel [17:27, 16:45] (2005768 MB) - -PASS -- COMPILE s2sw_pdlib_debug_intel [04:41, 04:40](1520 warnings,1988 remarks) -PASS -- TEST cpld_debug_pdlib_p8_intel [25:56, 25:20] (2043700 MB) - -PASS -- COMPILE atm_dyn32_intel [09:42, 09:42](1 warnings,1 remarks) -PASS -- TEST control_flake_intel [03:12, 02:59] (708580 MB) -PASS -- TEST control_CubedSphereGrid_intel [02:34, 02:13] (1604300 MB) -PASS -- TEST control_CubedSphereGrid_parallel_intel [02:45, 02:20] (1609800 MB) -PASS -- TEST control_latlon_intel [02:37, 02:18] (1597732 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_intel [02:40, 02:16] (1603052 MB) -PASS -- TEST control_c48_intel [08:33, 08:12] (1696292 MB) -PASS -- TEST control_c48.v2.sfc_intel [06:10, 05:58] (837836 MB) -PASS -- TEST control_c192_intel [07:07, 06:35] (1769208 MB) -PASS -- TEST control_c384_intel [09:03, 07:53] (2004932 MB) -PASS -- TEST control_c384gdas_intel [12:02, 10:14] (1485064 MB) -PASS -- TEST control_stochy_intel [01:41, 01:29] (661212 MB) -PASS -- TEST control_stochy_restart_intel [01:22, 00:59] (533320 MB) -PASS -- TEST control_lndp_intel [01:30, 01:22] (672136 MB) -PASS -- TEST control_iovr4_intel [02:25, 02:13] (661796 MB) -PASS -- TEST control_iovr5_intel [02:19, 02:07] (663388 MB) -PASS -- TEST control_p8_intel [03:39, 02:57] (1901900 MB) -PASS -- TEST control_p8.v2.sfc_intel [03:19, 02:41] (1901492 MB) -PASS -- TEST control_p8_ugwpv1_intel [03:08, 02:33] (1896740 MB) -PASS -- TEST control_restart_p8_intel [02:20, 01:50] (1151312 MB) -PASS -- TEST control_noqr_p8_intel [03:08, 02:36] (1899880 MB) -PASS -- TEST control_restart_noqr_p8_intel [01:58, 01:30] (1218476 MB) -PASS -- TEST control_decomp_p8_intel [03:09, 02:38] (1884628 MB) -PASS -- TEST control_2threads_p8_intel [04:06, 03:29] (1958632 MB) -PASS -- TEST control_p8_lndp_intel [04:48, 04:30] (1893068 MB) -PASS -- TEST control_p8_rrtmgp_intel [04:21, 03:39] (1967032 MB) -PASS -- TEST control_p8_mynn_intel [03:28, 02:48] (1893932 MB) -PASS -- TEST merra2_thompson_intel [04:32, 03:52] (1893148 MB) -PASS -- TEST regional_control_intel [05:02, 04:46] (1228068 MB) -PASS -- TEST regional_restart_intel [03:16, 02:57] (1176800 MB) -PASS -- TEST regional_decomp_intel [05:09, 04:52] (1216488 MB) -PASS -- TEST regional_2threads_intel [04:29, 04:10] (1101608 MB) -PASS -- TEST regional_noquilt_intel [05:11, 04:56] (1550572 MB) -PASS -- TEST regional_netcdf_parallel_intel [05:16, 04:57] (1233904 MB) -PASS -- TEST regional_2dwrtdecomp_intel [04:57, 04:42] (1223948 MB) -PASS -- TEST regional_wofs_intel [06:17, 05:58] (2069640 MB) - -PASS -- COMPILE rrfs_intel [08:41, 08:41](3 warnings,9 remarks) -PASS -- TEST rap_control_intel [07:28, 06:54] (1217432 MB) -PASS -- TEST regional_spp_sppt_shum_skeb_intel [04:02, 03:29] (1371916 MB) -PASS -- TEST rap_decomp_intel [07:36, 06:59] (1134232 MB) -PASS -- TEST rap_2threads_intel [10:05, 09:26] (1221344 MB) -PASS -- TEST rap_restart_intel [04:25, 03:41] (1135388 MB) -PASS -- TEST rap_sfcdiff_intel [07:14, 06:40] (1227312 MB) -PASS -- TEST rap_sfcdiff_decomp_intel [07:38, 07:01] (1165328 MB) -PASS -- TEST rap_sfcdiff_restart_intel [05:42, 05:11] (1198880 MB) -PASS -- TEST hrrr_control_intel [04:11, 03:34] (1087696 MB) -PASS -- TEST hrrr_control_decomp_intel [04:11, 03:35] (1042748 MB) -PASS -- TEST hrrr_control_2threads_intel [05:21, 04:40] (1150960 MB) -PASS -- TEST hrrr_control_restart_intel [02:15, 01:58] (1028248 MB) -PASS -- TEST rrfs_v1beta_intel [07:29, 06:35] (1196672 MB) -PASS -- TEST rrfs_v1nssl_intel [08:46, 08:30] (2009736 MB) -PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [08:14, 08:05] (2169888 MB) - -PASS -- COMPILE csawmg_intel [08:31, 08:31] -PASS -- TEST control_csawmg_intel [06:09, 05:54] (1045424 MB) -PASS -- TEST control_ras_intel [03:12, 03:03] (801776 MB) - -PASS -- COMPILE wam_intel [07:56, 07:56],1 remarks) -PASS -- TEST control_wam_intel [10:26, 10:04] (1659212 MB) - -PASS -- COMPILE atm_faster_dyn32_intel [09:12, 09:12],1 remarks) -PASS -- TEST control_p8_faster_intel [03:06, 02:24] (1910428 MB) -PASS -- TEST regional_control_faster_intel [04:30, 04:17] (1225836 MB) - -PASS -- COMPILE atm_debug_dyn32_intel [06:19, 06:19](882 warnings,9 remarks) -PASS -- TEST control_CubedSphereGrid_debug_intel [02:24, 02:04] (1610876 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [02:22, 01:58] (1633204 MB) -PASS -- TEST control_stochy_debug_intel [02:44, 02:35] (841048 MB) -PASS -- TEST control_lndp_debug_intel [02:36, 02:24] (836620 MB) -PASS -- TEST control_csawmg_debug_intel [04:48, 04:29] (1137712 MB) -PASS -- TEST control_ras_debug_intel [02:31, 02:24] (841568 MB) -PASS -- TEST control_diag_debug_intel [02:36, 02:17] (1687180 MB) -PASS -- TEST control_debug_p8_intel [03:25, 02:59] (1910176 MB) -PASS -- TEST regional_debug_intel [15:41, 15:18] (1139132 MB) -PASS -- TEST rap_control_debug_intel [04:12, 04:03] (1223712 MB) -PASS -- TEST hrrr_control_debug_intel [04:09, 03:59] (1212212 MB) -PASS -- TEST hrrr_gf_debug_intel [04:14, 04:04] (1222904 MB) -PASS -- TEST hrrr_c3_debug_intel [04:33, 04:22] (1214220 MB) -PASS -- TEST rap_unified_drag_suite_debug_intel [04:21, 04:13] (1232584 MB) -PASS -- TEST rap_diag_debug_intel [04:45, 04:27] (1309180 MB) -PASS -- TEST rap_cires_ugwp_debug_intel [04:31, 04:22] (1233148 MB) -PASS -- TEST rap_unified_ugwp_debug_intel [04:31, 04:22] (1230068 MB) -PASS -- TEST rap_lndp_debug_intel [04:26, 04:19] (1221384 MB) -PASS -- TEST rap_progcld_thompson_debug_intel [04:22, 04:11] (1230672 MB) -PASS -- TEST rap_noah_debug_intel [04:11, 04:00] (1224708 MB) -PASS -- TEST rap_sfcdiff_debug_intel [04:20, 04:10] (1215508 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [07:00, 06:49] (1221000 MB) -PASS -- TEST rrfs_v1beta_debug_intel [04:11, 04:01] (1221640 MB) -PASS -- TEST rap_clm_lake_debug_intel [04:21, 04:09] (1217896 MB) -PASS -- TEST rap_flake_debug_intel [04:20, 04:08] (1231560 MB) -PASS -- TEST gnv1_c96_no_nest_debug_intel [07:57, 07:15] (1220436 MB) - -PASS -- COMPILE atm_debug_dyn32_gnu [04:04, 04:04] -PASS -- TEST control_csawmg_debug_gnu [03:11, 02:58] (1041996 MB) - -PASS -- COMPILE wam_debug_intel [04:01, 04:01](837 warnings,1 remarks) - -PASS -- COMPILE rrfs_dyn32_phy32_intel [08:27, 08:27](3 warnings,8 remarks) -PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [03:56, 03:23] (1244912 MB) -PASS -- TEST rap_control_dyn32_phy32_intel [06:18, 05:46] (1146452 MB) -PASS -- TEST hrrr_control_dyn32_phy32_intel [03:42, 02:58] (1016128 MB) -PASS -- TEST rap_2threads_dyn32_phy32_intel [08:27, 07:56] (1130472 MB) -PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [04:52, 04:07] (1071376 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [03:58, 03:14] (988260 MB) -PASS -- TEST rap_restart_dyn32_phy32_intel [04:44, 04:18] (1113260 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [01:58, 01:43] (943232 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [08:25, 08:25](3 warnings,8 remarks) -PASS -- TEST conus13km_control_intel [02:08, 01:41] (1277224 MB) -PASS -- TEST conus13km_2threads_intel [01:18, 00:58] (1184016 MB) -PASS -- TEST conus13km_restart_mismatch_intel [01:25, 01:05] (1136620 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_intel [08:50, 08:50](3 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_intel [04:17, 03:58] (1061528 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [04:05, 04:04](785 warnings,8 remarks) -PASS -- TEST rap_control_debug_dyn32_phy32_intel [04:21, 04:13] (1099776 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [04:19, 04:13] (1096600 MB) -PASS -- TEST conus13km_debug_intel [12:40, 12:15] (1349648 MB) -PASS -- TEST conus13km_debug_qr_intel [12:58, 12:35] (990548 MB) -PASS -- TEST conus13km_debug_2threads_intel [13:20, 12:59] (1236768 MB) -PASS -- TEST conus13km_radar_tten_debug_intel [12:29, 12:09] (1401824 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [03:49, 03:49](785 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_debug_intel [04:37, 04:21] (1159532 MB) - -PASS -- COMPILE hafsw_intel [10:01, 10:00](1 warnings,10 remarks) -PASS -- TEST hafs_regional_atm_intel [06:34, 05:35] (849344 MB) -PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [05:47, 05:29] (1270556 MB) -PASS -- TEST hafs_regional_atm_ocn_intel [07:51, 06:42] (939244 MB) -PASS -- TEST hafs_regional_atm_wav_intel [17:13, 14:54] (966536 MB) -PASS -- TEST hafs_regional_atm_ocn_wav_intel [20:56, 18:15] (994312 MB) -PASS -- TEST hafs_regional_1nest_atm_intel [06:49, 06:08] (597392 MB) -PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [09:00, 07:49] (604792 MB) -PASS -- TEST hafs_global_1nest_atm_intel [03:36, 03:01] (435280 MB) -PASS -- TEST hafs_global_multiple_4nests_atm_intel [09:48, 08:09] (551296 MB) -PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [04:46, 04:15] (607656 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [29:03, 28:24] (608116 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [05:39, 04:55] (659088 MB) -PASS -- TEST hafs_global_storm_following_1nest_atm_intel [01:37, 01:21] (456448 MB) - -PASS -- COMPILE hafsw_debug_intel [28:06, 28:06](1462 warnings,1490 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [12:27, 11:45] (631024 MB) - -PASS -- COMPILE hafsw_faster_intel [32:55, 32:55],9 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [20:00, 19:06] (749412 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [19:12, 18:12] (833868 MB) - -PASS -- COMPILE hafs_mom6w_intel [32:53, 32:52],8 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [12:57, 11:42] (804412 MB) - -PASS -- COMPILE hafs_all_intel [32:43, 32:43],9 remarks) -PASS -- TEST hafs_regional_docn_intel [06:59, 06:06] (937508 MB) -PASS -- TEST hafs_regional_docn_oisst_intel [06:59, 06:05] (913956 MB) -PASS -- TEST hafs_regional_datm_cdeps_intel [17:05, 16:33] (1334140 MB) - -PASS -- COMPILE datm_cdeps_intel [30:03, 30:03],2 remarks) -PASS -- TEST datm_cdeps_control_cfsr_intel [02:18, 02:11] (1139316 MB) -PASS -- TEST datm_cdeps_restart_cfsr_intel [01:51, 01:44] (1084616 MB) -PASS -- TEST datm_cdeps_control_gefs_intel [03:01, 02:54] (1020872 MB) -PASS -- TEST datm_cdeps_iau_gefs_intel [02:17, 02:10] (1019564 MB) -PASS -- TEST datm_cdeps_stochy_gefs_intel [02:52, 02:48] (1023060 MB) -PASS -- TEST datm_cdeps_ciceC_cfsr_intel [02:17, 02:10] (1141616 MB) -PASS -- TEST datm_cdeps_bulk_cfsr_intel [02:17, 02:11] (1171464 MB) -PASS -- TEST datm_cdeps_bulk_gefs_intel [02:57, 02:51] (1028416 MB) -PASS -- TEST datm_cdeps_mx025_cfsr_intel [05:32, 04:56] (1166136 MB) -PASS -- TEST datm_cdeps_mx025_gefs_intel [05:22, 04:50] (1148376 MB) -PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [03:03, 03:00] (1134636 MB) -PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [03:08, 03:01] (2400892 MB) -PASS -- TEST datm_cdeps_gfs_intel [03:10, 03:03] (2396372 MB) - -PASS -- COMPILE datm_cdeps_debug_intel [03:57, 03:57](2 warnings,2 remarks) -PASS -- TEST datm_cdeps_debug_cfsr_intel [09:30, 09:26] (1069512 MB) - -PASS -- COMPILE datm_cdeps_faster_intel [06:01, 06:01],2 remarks) -PASS -- TEST datm_cdeps_control_cfsr_faster_intel [02:55, 02:50] (1146836 MB) - -PASS -- COMPILE datm_cdeps_land_intel [01:05, 01:05],1 remarks) -PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:13, 00:57] (339972 MB) -PASS -- TEST datm_cdeps_lnd_era5_intel [01:01, 00:49] (579004 MB) -PASS -- TEST datm_cdeps_lnd_era5_rst_intel [00:44, 00:35] (576012 MB) - -PASS -- COMPILE atm_ds2s_docn_pcice_intel [09:17, 09:16],3 remarks) -PASS -- TEST atm_ds2s_docn_pcice_intel [03:57, 03:19] (2020788 MB) - -PASS -- COMPILE atm_ds2s_docn_dice_intel [09:22, 09:22](1 warnings,1 remarks) -PASS -- TEST atm_ds2s_docn_dice_intel [05:02, 04:26] (2036088 MB) - -PASS -- COMPILE atml_intel [09:27, 09:27](8 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_sbs_intel [06:19, 05:30] (1892256 MB) -PASS -- TEST control_p8_atmlnd_intel [06:55, 05:57] (1894736 MB) -PASS -- TEST control_restart_p8_atmlnd_intel [03:26, 02:53] (1135016 MB) - -PASS -- COMPILE atml_debug_intel [04:49, 04:49](880 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_debug_intel [06:22, 05:32] (1930460 MB) - -PASS -- COMPILE atmw_intel [10:05, 10:05],9 remarks) -PASS -- TEST atmwav_control_noaero_p8_intel [02:47, 02:04] (1940036 MB) - -PASS -- COMPILE atmaero_intel [09:12, 09:12],1 remarks) -PASS -- TEST atmaero_control_p8_intel [04:30, 03:52] (2014620 MB) -PASS -- TEST atmaero_control_p8_rad_intel [05:08, 04:31] (1785124 MB) -PASS -- TEST atmaero_control_p8_rad_micro_intel [05:02, 04:35] (1806740 MB) - -PASS -- COMPILE atmaq_debug_intel [04:12, 04:12](882 warnings,6 remarks) -PASS -- TEST regional_atmaq_debug_intel [18:08, 17:04] (4533840 MB) - -PASS -- COMPILE atm_fbh_intel [08:34, 08:34](3 warnings,8 remarks) -PASS -- TEST cpld_regional_atm_fbh_intel [15:19, 15:05] (1115408 MB) - -PASS -- COMPILE datm_cdeps_intelllvm [11:28, 11:28] -PASS -- TEST datm_cdeps_control_cfsr_intelllvm [03:04, 03:00] (1152844 MB) - -PASS -- COMPILE datm_cdeps_debug_intelllvm [01:56, 01:56](2 warnings -PASS -- TEST datm_cdeps_debug_cfsr_intelllvm [11:36, 11:32] (1076100 MB) - -PASS -- COMPILE atm_gnu [05:53, 05:52] -PASS -- TEST control_c48_gnu [09:23, 08:57] (1527124 MB) -PASS -- TEST control_stochy_gnu [02:30, 02:20] (718676 MB) -PASS -- TEST control_ras_gnu [04:00, 03:51] (723884 MB) -PASS -- TEST control_p8_gnu [04:11, 03:36] (1700072 MB) -PASS -- TEST control_p8_ugwpv1_gnu [04:01, 03:31] (1720560 MB) -PASS -- TEST control_flake_gnu [04:59, 04:48] (806612 MB) - -PASS -- COMPILE rrfs_gnu [05:44, 05:44] -PASS -- TEST rap_control_gnu [09:51, 09:16] (1071704 MB) -PASS -- TEST rap_decomp_gnu [10:11, 09:35] (1071032 MB) -PASS -- TEST rap_restart_gnu [05:45, 04:59] (878064 MB) -PASS -- TEST rap_sfcdiff_gnu [09:43, 09:09] (1074272 MB) -PASS -- TEST rap_sfcdiff_decomp_gnu [09:58, 09:25] (1070352 MB) -PASS -- TEST rap_sfcdiff_restart_gnu [07:29, 06:58] (877244 MB) -PASS -- TEST hrrr_control_gnu [05:41, 05:01] (1061204 MB) -PASS -- TEST hrrr_control_noqr_gnu [05:32, 05:03] (1125852 MB) -PASS -- TEST hrrr_control_2threads_gnu [05:01, 04:24] (1016652 MB) -PASS -- TEST hrrr_control_decomp_gnu [05:50, 05:12] (1071448 MB) -PASS -- TEST hrrr_control_restart_gnu [02:51, 02:32] (879176 MB) -PASS -- TEST hrrr_control_restart_noqr_gnu [02:52, 02:34] (926172 MB) -PASS -- TEST rrfs_v1beta_gnu [10:56, 10:14] (1067140 MB) - -PASS -- COMPILE csawmg_gnu [05:39, 05:39] -PASS -- TEST control_csawmg_gnu [07:40, 07:22] (1051456 MB) - -PASS -- COMPILE atm_dyn32_debug_gnu [06:56, 06:56] -PASS -- TEST control_diag_debug_gnu [01:42, 01:18] (1619804 MB) -PASS -- TEST regional_debug_gnu [06:59, 06:40] (1103096 MB) -PASS -- TEST rap_control_debug_gnu [02:27, 02:17] (1094384 MB) -PASS -- TEST hrrr_control_debug_gnu [02:15, 02:04] (1085112 MB) -PASS -- TEST hrrr_gf_debug_gnu [02:21, 02:11] (1088196 MB) -PASS -- TEST hrrr_c3_debug_gnu [02:14, 02:03] (1088780 MB) -PASS -- TEST rap_diag_debug_gnu [02:25, 02:12] (1260732 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [03:38, 03:31] (1086996 MB) -PASS -- TEST rap_progcld_thompson_debug_gnu [02:21, 02:14] (1092640 MB) -PASS -- TEST rrfs_v1beta_debug_gnu [02:08, 02:02] (1084784 MB) -PASS -- TEST control_ras_debug_gnu [01:24, 01:15] (722040 MB) -PASS -- TEST control_stochy_debug_gnu [01:29, 01:21] (718640 MB) -PASS -- TEST control_debug_p8_gnu [01:41, 01:23] (1699484 MB) -PASS -- TEST rap_flake_debug_gnu [02:17, 02:07] (1090548 MB) -PASS -- TEST rap_clm_lake_debug_gnu [02:17, 02:09] (1101332 MB) -PASS -- TEST gnv1_c96_no_nest_debug_gnu [04:08, 03:33] (1092080 MB) - -PASS -- COMPILE wam_debug_gnu [02:35, 02:35] -PASS -- TEST control_wam_debug_gnu [06:08, 05:43] (1553400 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_gnu [04:22, 04:22] -PASS -- TEST rap_control_dyn32_phy32_gnu [08:17, 07:45] (952392 MB) -PASS -- TEST hrrr_control_dyn32_phy32_gnu [04:59, 04:14] (943352 MB) -PASS -- TEST rap_2threads_dyn32_phy32_gnu [07:31, 06:55] (916216 MB) -PASS -- TEST hrrr_control_2threads_dyn32_phy32_gnu [17:20, 16:30] (872832 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [04:44, 04:02] (940360 MB) -PASS -- TEST rap_restart_dyn32_phy32_gnu [06:31, 05:51] (853636 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [02:28, 02:04] (856100 MB) -PASS -- TEST conus13km_control_gnu [03:01, 02:38] (1256736 MB) -PASS -- TEST conus13km_2threads_gnu [07:18, 06:57] (1107844 MB) -PASS -- TEST conus13km_restart_mismatch_gnu [01:49, 01:30] (920652 MB) - -PASS -- COMPILE atm_dyn64_phy32_gnu [08:36, 08:36] -PASS -- TEST rap_control_dyn64_phy32_gnu [04:53, 04:33] (981156 MB) - -PASS -- COMPILE atm_dyn32_phy32_debug_gnu [06:47, 06:47] -PASS -- TEST rap_control_debug_dyn32_phy32_gnu [02:09, 02:00] (964180 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [02:08, 01:59] (959120 MB) -PASS -- TEST conus13km_debug_gnu [05:50, 05:27] (1272524 MB) -PASS -- TEST conus13km_debug_qr_gnu [05:59, 05:39] (945556 MB) -PASS -- TEST conus13km_debug_2threads_gnu [14:59, 14:40] (1131252 MB) -PASS -- TEST conus13km_radar_tten_debug_gnu [05:47, 05:31] (1341048 MB) - -PASS -- COMPILE atm_dyn64_phy32_debug_gnu [06:14, 06:14] -PASS -- TEST rap_control_dyn64_phy32_debug_gnu [02:09, 01:59] (991408 MB) - -PASS -- COMPILE s2swa_gnu [18:33, 18:32] -PASS -- COMPILE s2s_gnu [18:27, 18:27] -PASS -- TEST cpld_control_nowave_noaero_p8_gnu [09:29, 08:55] (2722220 MB) - -PASS -- COMPILE s2swa_debug_gnu [04:24, 04:23] -PASS -- COMPILE s2sw_pdlib_gnu [17:26, 17:25] -PASS -- TEST cpld_control_pdlib_p8_gnu [27:22, 26:42] (2996316 MB) - -PASS -- COMPILE s2sw_pdlib_debug_gnu [03:24, 03:24] -PASS -- TEST cpld_debug_pdlib_p8_gnu [13:21, 12:42] (3034912 MB) - -PASS -- COMPILE datm_cdeps_gnu [17:24, 17:23] -PASS -- TEST datm_cdeps_control_cfsr_gnu [03:36, 03:30] (767444 MB) - - -SYNOPSIS: -Starting Date/Time: 2025-01-08 12:41:03 -Ending Date/Time: 2025-01-08 20:58:18 -Total Time: 08h:17m:15s -Compiles Completed: 60/60 -Tests Completed: 247/248 - - -NOTES: -A file test_changes.list was generated but is empty. -If you are using this log as a pull request verification, please commit test_changes.list. - -Result: FAIL - - -====END OF hercules REGRESSION TESTING LOG==== -====START OF HERCULES REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -b5b4558a9da026e48f0ebaca8c082af7b7e7915d - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) - ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) - 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - (Icepack1.1.0-198-g3792520) - b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) - (cmeps_v0.4.1-2313-gb5d1cc1) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - (v1.0.0-28-gcabd775) - 7d998809dc84996248f93ced49730cfe92eae7cf FV3 7d998809dc84996248f93ced49730cfe92eae7cf FV3 (heads/develop) - (heads/develop) - 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) - (201912_public_release-408-g9490871) - 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - (2024-07-11-dev-2-g9e1c3ab) - 24643b0e0f9754d76176d60ce155bf8956bfb44d FV3/ccpp/physics 24643b0e0f9754d76176d60ce155bf8956bfb44d FV3/ccpp/physics (EP4-1092-g24643b0e) - (EP4-1092-g24643b0e) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - (v1.6) - ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) - (upp_v10.2.0-243-gce5f3b14) --179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd --529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd --179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd --529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - (2.3.00-122-gbcf7777) - c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) - (baseline_change_240904-6-gc4d2337) - c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - (land_lad2_2021.02) - 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) - (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - (29e64d6) - 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - (v3.7.1-444-g025043d) - 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) - (6.07.1-350-g29063ec7) - 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - (v0.2.0-1-g05cad17) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - (ufs-v2.0.0-219-gfad2fe9) - - NOTES: [Times](Memory) are at the end of each compile/test in format [MM:SS](Size). @@ -489,35 +39,386 @@ 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-20250107 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_3246326 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2512050 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20250107 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2992092 - -RT.SH OPTIONS USED: -* (-r) - USE ROCOTO -* (-a) - HPC PROJECT ACCOUNT: epic * (-r) - USE ROCOTO -PASS -- COMPILE 'rrfs_gnu' [04:11, 04:11] -PASS -- TEST 'rap_control_gnu' [09:57, 09:22](1095 MB) -PASS -- TEST 'rap_2threads_gnu' [13:21, 12:41](973 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:50, 13:38] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:12, 08:20](2127 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:47, 17:46] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:07, 17:16](2018 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:21, 18:15](2332 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:02, 06:53](1354 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:31, 18:43](1925 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:46, 17:46] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:42, 17:16](1981 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:06, 05:06] ( 1523 warnings 1993 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:50, 23:55](1999 MB) + +PASS -- COMPILE 's2swa_intel' [11:03, 11:03] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [10:36, 09:40](2206 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:17, 09:30](2194 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:26, 04:37](1963 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:43, 08:51](2231 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:38, 04:40](1737 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [12:07, 11:26](2431 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:27, 08:42](2193 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:08, 07:18](2110 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:25, 08:36](2200 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [16:55, 15:42](2991 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [08:09, 06:25](2916 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [16:11, 11:22](3858 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [12:43, 06:38](3691 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:33, 07:02](2166 MB) + +PASS -- COMPILE 's2sw_intel' [10:17, 10:17] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:39, 07:59](2027 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:05, 06:27](2111 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:00, 05:00] ( 1413 warnings 1223 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [12:58, 12:12](2237 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:01, 05:01] ( 1413 warnings 1223 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:15, 06:37](2046 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [09:39, 09:39] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:57, 04:13](2060 MB) + +PASS -- COMPILE 's2s_intel' [09:43, 09:43] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [06:23, 05:57](3035 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [02:15, 01:49](3022 MB) +PASS -- TEST 'cpld_restart_c48_intel' [01:18, 01:03](2475 MB) + +PASS -- COMPILE 's2swa_faster_intel' [12:28, 12:28] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:29, 09:43](2194 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [15:48, 15:48] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:24, 14:35](2066 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:41, 07:03](1401 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:56, 16:15](1994 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:00, 05:00] ( 1523 warnings 1993 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:19, 26:38](2052 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:34, 09:34] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:05, 02:53](710 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [02:34, 02:12](1601 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [02:45, 02:22](1618 MB) +PASS -- TEST 'control_latlon_intel' [02:22, 02:06](1606 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [02:38, 02:15](1601 MB) +PASS -- TEST 'control_c48_intel' [09:23, 09:00](1707 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:12, 05:59](834 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [06:49, 06:29](1704 MB) +PASS -- TEST 'control_c192_intel' [07:00, 06:33](1777 MB) +PASS -- TEST 'control_c384_intel' [10:01, 08:56](2028 MB) +PASS -- TEST 'control_c384gdas_intel' [09:19, 07:49](1504 MB) +PASS -- TEST 'control_stochy_intel' [01:34, 01:27](660 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:09, 00:55](543 MB) +PASS -- TEST 'control_lndp_intel' [01:32, 01:22](663 MB) +PASS -- TEST 'control_iovr4_intel' [02:18, 02:10](669 MB) +PASS -- TEST 'control_iovr5_intel' [02:18, 02:11](652 MB) +PASS -- TEST 'control_p8_intel' [03:16, 02:37](1889 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:31, 02:46](1899 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:12, 02:34](1891 MB) +PASS -- TEST 'control_restart_p8_intel' [02:21, 01:34](1162 MB) +PASS -- TEST 'control_noqr_p8_intel' [02:58, 02:31](1897 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:14, 01:32](1192 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:13, 02:34](1886 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:48, 04:06](1954 MB) +PASS -- TEST 'control_p8_lndp_intel' [04:47, 04:23](1904 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:15, 03:37](1964 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:32, 02:53](1902 MB) +PASS -- TEST 'merra2_thompson_intel' [05:15, 04:26](1896 MB) +PASS -- TEST 'regional_control_intel' [04:55, 04:37](1221 MB) +PASS -- TEST 'regional_restart_intel' [02:54, 02:35](1177 MB) +PASS -- TEST 'regional_decomp_intel' [06:34, 06:11](1214 MB) +PASS -- TEST 'regional_2threads_intel' [04:30, 04:13](1117 MB) +PASS -- TEST 'regional_noquilt_intel' [04:46, 04:31](1551 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:05, 04:44](1219 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [04:57, 04:38](1236 MB) +PASS -- TEST 'regional_wofs_intel' [06:15, 06:01](2064 MB) + +PASS -- COMPILE 'rrfs_intel' [08:47, 08:47] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:31, 06:56](1194 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [03:58, 03:25](1383 MB) +PASS -- TEST 'rap_decomp_intel' [07:38, 07:03](1164 MB) +PASS -- TEST 'rap_2threads_intel' [10:08, 09:32](1215 MB) +PASS -- TEST 'rap_restart_intel' [04:17, 03:36](1144 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:20, 06:48](1212 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:52, 07:12](1158 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:49, 05:19](1189 MB) +PASS -- TEST 'hrrr_control_intel' [04:57, 04:20](1069 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:16, 03:39](1028 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:08, 04:34](1139 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:08, 01:53](1029 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:26, 06:42](1258 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:33, 08:23](2011 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:29, 11:18](2163 MB) + +PASS -- COMPILE 'csawmg_intel' [08:14, 08:13] +PASS -- TEST 'control_csawmg_intel' [05:47, 05:34](1047 MB) +PASS -- TEST 'control_ras_intel' [03:04, 02:53](830 MB) + +PASS -- COMPILE 'wam_intel' [08:23, 08:22] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [10:18, 09:55](1655 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [08:42, 08:42] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:19, 02:35](1899 MB) +PASS -- TEST 'regional_control_faster_intel' [04:41, 04:22](1222 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:44, 06:44] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:28, 02:01](1624 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:27, 01:58](1629 MB) +PASS -- TEST 'control_stochy_debug_intel' [02:52, 02:41](841 MB) +PASS -- TEST 'control_lndp_debug_intel' [02:35, 02:25](836 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:39, 04:25](1144 MB) +PASS -- TEST 'control_ras_debug_intel' [02:35, 02:24](842 MB) +PASS -- TEST 'control_diag_debug_intel' [02:46, 02:20](1696 MB) +PASS -- TEST 'control_debug_p8_intel' [03:28, 03:10](1932 MB) +PASS -- TEST 'regional_debug_intel' [15:05, 14:47](1157 MB) +PASS -- TEST 'rap_control_debug_intel' [04:26, 04:14](1222 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:16, 04:06](1206 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:22, 04:12](1217 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:29, 04:19](1230 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:35, 04:22](1233 MB) +PASS -- TEST 'rap_diag_debug_intel' [04:39, 04:22](1303 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:23, 04:11](1230 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:23, 04:16](1223 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:17, 04:08](1228 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:03, 05:50](1237 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:16, 04:04](1224 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:14, 04:07](1228 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:01, 06:49](1208 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:18, 04:07](1222 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [04:20, 04:07](1224 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:18, 04:05](1222 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:36, 06:56](1222 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 04:10] +PASS -- TEST 'control_csawmg_debug_gnu' [02:25, 02:11](1041 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:48, 03:48] ( 837 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:34, 08:34] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:05, 04:32](1253 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:09, 05:35](1164 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:42, 02:56](1028 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:36, 08:02](1113 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:42, 03:57](1076 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:51, 03:08](1002 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:43, 04:07](1135 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [01:55, 01:36](957 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:22, 08:21] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:38, 02:13](1299 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:20, 01:01](1180 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:26, 01:04](1144 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:20, 08:20] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:10, 03:49](1085 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:50, 03:50] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:17, 04:07](1103 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:17, 04:08](1104 MB) +PASS -- TEST 'conus13km_debug_intel' [11:53, 11:28](1334 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [12:22, 11:57](996 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [13:09, 12:50](1231 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:01, 11:42](1417 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:54, 03:54] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:42, 04:35](1157 MB) + +PASS -- COMPILE 'hafsw_intel' [10:12, 10:12] ( 1 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:54, 05:53](845 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:47, 05:29](1269 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:32, 06:27](936 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:26, 14:24](960 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:01, 17:37](981 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:31, 07:42](592 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:41, 09:30](608 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:26, 03:50](433 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:51, 10:56](553 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:40, 05:02](598 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:19, 04:44](606 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:00, 05:06](672 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:03, 01:42](452 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:14, 04:14] ( 1465 warnings 1495 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [23:14, 22:16](630 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [10:18, 10:18] ( 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [19:50, 18:59](752 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [20:46, 19:47](825 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:37, 10:37] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:15, 12:50](773 MB) + +PASS -- COMPILE 'hafs_all_intel' [09:49, 09:49] ( 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:15, 06:08](928 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:25, 06:16](899 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:10, 16:32](1349 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [05:57, 05:56] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:16, 03:09](1148 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:25, 01:18](1102 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:17, 02:09](1010 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:27, 02:18](1020 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:07, 03:02](1011 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:16, 02:11](1152 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:16, 02:11](1152 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:14, 02:09](1020 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:34, 04:58](1171 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:31, 04:56](1152 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:08, 03:04](1144 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:07, 03:01](2409 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:08, 03:02](2394 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:45, 03:45] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:32, 09:26](1071 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:41, 06:41] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:19, 02:13](1153 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [00:49, 00:49] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:16, 00:59](344 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:13, 00:57](574 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:47, 00:35](573 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:15, 09:15] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:05, 03:27](2011 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [09:23, 09:23] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:57, 04:24](2021 MB) + +PASS -- COMPILE 'atml_intel' [09:10, 09:09] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:32, 05:47](1888 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:50, 06:03](1892 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:18, 02:54](1142 MB) + +PASS -- COMPILE 'atml_debug_intel' [04:47, 04:46] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:01, 05:13](1918 MB) + +PASS -- COMPILE 'atmw_intel' [10:09, 10:08] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:46, 02:05](1942 MB) + +PASS -- COMPILE 'atmaero_intel' [10:11, 10:11] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:24, 04:47](2007 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:49, 05:08](1785 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:53, 05:22](1793 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [03:47, 03:47] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [18:16, 17:08](4537 MB) + +PASS -- COMPILE 'atm_fbh_intel' [08:43, 08:42] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:23, 10:08](1118 MB) + +PASS -- COMPILE 'datm_cdeps_intelllvm' [12:27, 12:27] +PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [03:18, 03:11](1130 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [01:56, 01:56] +PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [06:16, 06:09](1059 MB) + +PASS -- COMPILE 'atm_gnu' [04:42, 04:41] +PASS -- TEST 'control_c48_gnu' [12:25, 12:00](1525 MB) +PASS -- TEST 'control_stochy_gnu' [02:31, 02:21](722 MB) +PASS -- TEST 'control_ras_gnu' [04:01, 03:53](724 MB) +PASS -- TEST 'control_p8_gnu' [04:21, 03:43](1719 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:01, 03:29](1700 MB) +PASS -- TEST 'control_flake_gnu' [06:46, 06:33](800 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:23, 04:23] +PASS -- TEST 'rap_control_gnu' [08:47, 08:08](1077 MB) +PASS -- TEST 'rap_decomp_gnu' [09:07, 08:30](1074 MB) +PASS -- TEST 'rap_2threads_gnu' [07:55, 07:16](996 MB) +PASS -- TEST 'rap_restart_gnu' [05:03, 04:19](878 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [08:57, 08:19](1073 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:51, 08:14](1072 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:36, 05:56](880 MB) +PASS -- TEST 'hrrr_control_gnu' [04:38, 04:02](1068 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [04:35, 04:06](1134 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:17, 03:39](1021 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [04:55, 04:15](1061 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [02:25, 02:16](877 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:22, 02:14](925 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [08:50, 08:07](1069 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:06, 04:06] +PASS -- TEST 'control_csawmg_gnu' [08:00, 07:41](1053 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:09, 07:09] +PASS -- TEST 'control_diag_debug_gnu' [01:49, 01:22](1617 MB) +PASS -- TEST 'regional_debug_gnu' [08:13, 07:56](1138 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:08, 01:59](1088 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:18, 02:08](1075 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:05, 01:59](1087 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:06, 01:59](1089 MB) +PASS -- TEST 'rap_diag_debug_gnu' [02:18, 02:06](1257 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:24, 03:17](1084 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:05, 01:56](1086 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:06, 01:59](1079 MB) +PASS -- TEST 'control_ras_debug_gnu' [01:30, 01:18](717 MB) +PASS -- TEST 'control_stochy_debug_gnu' [01:25, 01:20](711 MB) +PASS -- TEST 'control_debug_p8_gnu' [01:44, 01:26](1738 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:15, 02:09](1087 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [02:18, 02:11](1091 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:24, 03:46](1089 MB) + +PASS -- COMPILE 'wam_debug_gnu' [02:48, 02:48] +PASS -- TEST 'control_wam_debug_gnu' [06:28, 06:04](1553 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:22, 04:22] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:07, 07:36](953 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:50, 04:09](943 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:39, 10:04](917 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:29, 03:39](893 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:50, 04:07](945 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:17, 05:49](855 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:18, 02:10](853 MB) +PASS -- TEST 'conus13km_control_gnu' [03:08, 02:44](1256 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:07, 06:52](1109 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [01:52, 01:31](918 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:32, 09:32] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [04:51, 04:33](979 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:27, 06:27] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:02, 01:55](974 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:04, 01:55](966 MB) +PASS -- TEST 'conus13km_debug_gnu' [05:42, 05:18](1276 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [05:53, 05:27](946 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [19:23, 19:04](1126 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [05:35, 05:15](1342 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:14, 07:13] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:16, 02:10](999 MB) + +PASS -- COMPILE 's2swa_gnu' [16:59, 16:58] + +PASS -- COMPILE 's2s_gnu' [15:40, 15:40] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:54, 08:11](3066 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [03:26, 03:26] + +PASS -- COMPILE 's2sw_pdlib_gnu' [19:29, 19:29] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:29, 26:39](2903 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:18, 03:18] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:02, 14:21](2918 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [16:09, 16:08] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:40, 05:33](754 MB) SYNOPSIS: -Starting Date/Time: 20250108 21:00:56 -Ending Date/Time: 20250108 22:10:30 -Total Time: 01h:09m:48s -Compiles Completed: 1/1 -Tests Completed: 2/2 +Starting Date/Time: 20250115 10:22:21 +Ending Date/Time: 20250115 15:24:30 +Total Time: 05h:03m:12s +Compiles Completed: 60/60 +Tests Completed: 248/248 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index ed5e584bad..42f7cd4f64 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -b5b4558a9da026e48f0ebaca8c082af7b7e7915d +b8c45aa9505538b1212b9b6069ad21d5ee2a6706 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 7d998809dc84996248f93ced49730cfe92eae7cf FV3 (heads/develop) + 312657ab886269bc71d239abfb4dc2c86d1b9f21 FV3 (remotes/origin/rrfsv1-to-ufs/dev9) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 24643b0e0f9754d76176d60ce155bf8956bfb44d FV3/ccpp/physics (EP4-1092-g24643b0e) + 0b426618bef07638c3e095755c831af93c7f1aa4 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5544-g0b426618) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -27,7 +27,7 @@ Submodule hashes used in testing: 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) + 174cf7b56f864e260f70f801f4fa3d70c7fac7e9 WW3 (remotes/origin/devufs20241211develop20240111) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -39,256 +39,257 @@ 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-20250107 -COMPARISON DIRECTORY: /lfs5/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_1592612 +COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2754429 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic +* (-a) - HPC PROJECT ACCOUNT: h-nems +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [46:15, 44:00] ( 1 warnings 1397 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:22, 08:30](2021 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [53:15, 50:16] ( 1 warnings 1444 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [25:09, 23:04](1888 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:24, 24:02](2006 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:13, 09:36](1137 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:07, 26:07](1850 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [53:15, 48:23] ( 1 warnings 1441 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [24:52, 22:40](1881 MB) - -PASS -- COMPILE 's2swa_intel' [46:15, 44:38] ( 1 warnings 1416 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [13:17, 10:40](2050 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:21, 10:15](2055 MB) -PASS -- TEST 'cpld_restart_p8_intel' [14:22, 05:38](1700 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:11, 10:23](2067 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:22, 06:08](1722 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [12:08, 09:44](2259 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [13:03, 10:21](2065 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:25, 08:33](1997 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:21, 10:14](2036 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:20, 09:47](2042 MB) - -PASS -- COMPILE 's2sw_intel' [45:14, 41:10] ( 1 warnings 1301 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:26, 06:24](1907 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:33, 08:06](1975 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:03] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [19:21, 16:47](2082 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:10, 06:19] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:04, 08:04](1937 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [38:13, 36:53] ( 1019 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:22, 05:34](1958 MB) - -PASS -- COMPILE 's2s_intel' [39:13, 37:45] ( 1 warnings 1042 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [12:56, 10:21](3020 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:55, 03:05](3006 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:49, 01:48](2452 MB) - -PASS -- COMPILE 's2swa_faster_intel' [34:18, 32:45] ( 1 warnings 1632 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:34, 09:45](2051 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [48:14, 46:30] ( 1 warnings 1361 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:19, 20:26](1925 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:20, 08:41](1133 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:19, 23:42](1905 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:19] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [38:17, 34:37](1938 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [40:14, 38:05] ( 1 warnings 1125 remarks ) -PASS -- TEST 'control_flake_intel' [06:34, 04:21](649 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [17:15, 03:23](1545 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [17:17, 03:34](1555 MB) -PASS -- TEST 'control_latlon_intel' [17:08, 03:24](1544 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [17:15, 03:31](1552 MB) -PASS -- TEST 'control_c48_intel' [14:12, 11:12](1698 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:39, 10:13](833 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [14:12, 11:12](1702 MB) -PASS -- TEST 'control_c192_intel' [20:21, 09:43](1686 MB) -PASS -- TEST 'control_c384_intel' [19:15, 13:37](1814 MB) -PASS -- TEST 'control_c384gdas_intel' [24:17, 13:16](1003 MB) -PASS -- TEST 'control_stochy_intel' [04:32, 02:13](607 MB) -PASS -- TEST 'control_stochy_restart_intel' [12:28, 01:16](441 MB) -PASS -- TEST 'control_lndp_intel' [03:32, 02:04](600 MB) -PASS -- TEST 'control_iovr4_intel' [05:35, 03:18](596 MB) -PASS -- TEST 'control_iovr5_intel' [05:34, 03:17](602 MB) -PASS -- TEST 'control_p8_intel' [18:26, 03:57](1835 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [18:30, 04:06](1823 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [17:27, 03:47](1840 MB) -PASS -- TEST 'control_restart_p8_intel' [03:49, 02:08](1059 MB) -PASS -- TEST 'control_noqr_p8_intel' [17:35, 03:48](1840 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:00, 02:04](1079 MB) -PASS -- TEST 'control_decomp_p8_intel' [18:17, 03:59](1819 MB) -PASS -- TEST 'control_2threads_p8_intel' [18:15, 03:26](1912 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:10, 06:36](1834 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [19:22, 05:18](1891 MB) -PASS -- TEST 'control_p8_mynn_intel' [18:21, 04:09](1844 MB) -PASS -- TEST 'merra2_thompson_intel' [18:15, 04:28](1838 MB) -PASS -- TEST 'regional_control_intel' [09:02, 07:05](1038 MB) -PASS -- TEST 'regional_restart_intel' [10:44, 03:50](1017 MB) -PASS -- TEST 'regional_decomp_intel' [10:01, 07:26](1043 MB) -PASS -- TEST 'regional_2threads_intel' [06:38, 04:14](997 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [11:41, 07:08](1035 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [19:38, 07:08](1041 MB) - -PASS -- COMPILE 'rrfs_intel' [37:14, 35:42] ( 3 warnings 1100 remarks ) -PASS -- TEST 'rap_control_intel' [12:45, 10:09](989 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:10, 05:40](1182 MB) -PASS -- TEST 'rap_decomp_intel' [12:46, 10:41](979 MB) -PASS -- TEST 'rap_2threads_intel' [11:51, 09:32](1060 MB) -PASS -- TEST 'rap_restart_intel' [08:49, 05:17](987 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:51, 10:07](985 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:50, 10:38](975 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [11:49, 07:34](996 MB) -PASS -- TEST 'hrrr_control_intel' [07:45, 05:13](983 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:44, 05:24](978 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:50, 04:43](1052 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:27, 02:47](908 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:00, 10:00](986 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [15:32, 13:16](1930 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:32, 12:49](1925 MB) - -PASS -- COMPILE 'csawmg_intel' [36:13, 34:50] ( 1099 remarks ) -PASS -- TEST 'control_csawmg_intel' [10:38, 08:04](963 MB) -PASS -- TEST 'control_ras_intel' [06:26, 04:20](664 MB) - -PASS -- COMPILE 'wam_intel' [37:13, 35:36] ( 1003 remarks ) -PASS -- TEST 'control_wam_intel' [16:44, 14:17](1620 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [39:13, 37:46] ( 1303 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:01, 03:37](1838 MB) -PASS -- TEST 'regional_control_faster_intel' [08:42, 06:31](1034 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 08:22] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:52, 02:58](1577 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:56, 02:52](1576 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:28, 03:48](783 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:29, 03:21](778 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:47, 05:25](1089 MB) -PASS -- TEST 'control_ras_debug_intel' [05:29, 03:26](785 MB) -PASS -- TEST 'control_diag_debug_intel' [08:54, 03:22](1632 MB) -PASS -- TEST 'control_debug_p8_intel' [07:54, 03:23](1869 MB) -PASS -- TEST 'regional_debug_intel' [27:52, 21:56](1043 MB) -PASS -- TEST 'rap_control_debug_intel' [08:31, 06:10](1160 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:32, 06:00](1158 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:32, 06:11](1167 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:32, 06:23](1167 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:31, 06:14](1161 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:42, 06:32](1244 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:32, 06:17](1166 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:32, 06:35](1165 MB) -PASS -- TEST 'rap_lndp_debug_intel' [10:27, 06:12](1163 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:24, 06:12](1154 MB) -PASS -- TEST 'rap_noah_debug_intel' [10:25, 06:04](1161 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [10:26, 06:12](1158 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:26, 10:01](1165 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [09:26, 06:07](1158 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:26, 06:11](1161 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:26, 06:12](1159 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:47, 10:40](1174 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:11, 05:05] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [19:55, 16:39](1639 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:13, 30:41] ( 3 warnings 1032 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:07, 05:11](1063 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:43, 08:16](912 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:43, 04:19](864 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [24:43, 07:46](907 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [20:43, 03:57](900 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [21:41, 04:35](858 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [21:47, 06:13](899 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [21:27, 02:21](850 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [28:13, 25:57] ( 3 warnings 1207 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:48, 02:38](1100 MB) -PASS -- TEST 'conus13km_2threads_intel' [24:41, 01:11](1033 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [15:40, 01:26](1013 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [33:13, 31:36] ( 3 warnings 1052 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [24:48, 05:24](899 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:05] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:28, 06:03](1040 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:30, 05:59](1042 MB) -PASS -- TEST 'conus13km_debug_intel' [19:58, 17:43](1152 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [19:58, 17:44](863 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:53, 10:13](1075 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:53, 17:43](1244 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:11, 05:08] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:29, 06:09](1078 MB) - -PASS -- COMPILE 'hafsw_intel' [42:14, 40:18] ( 1 warnings 1435 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [11:23, 06:43](699 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:36, 06:17](1086 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [16:39, 09:15](753 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [22:33, 15:38](780 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:55, 18:54](808 MB) -PASS -- TEST 'gnv1_nested_intel' [13:51, 06:35](1660 MB) - -PASS -- COMPILE 'hafs_all_intel' [38:14, 36:23] ( 1281 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [12:20, 08:33](748 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [21:21, 08:36](735 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:12, 08:09] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [17:23, 03:32](1074 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:23, 02:09](1032 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [22:24, 03:26](937 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [22:24, 03:31](938 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [22:24, 03:33](938 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [22:24, 03:33](1080 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [21:24, 03:34](1070 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [13:22, 03:28](934 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [27:21, 07:44](900 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [27:21, 07:34](854 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [22:21, 03:35](1072 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:23, 05:02](2387 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [17:24, 05:04](2372 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:28] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:23, 08:03](1034 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [28:13, 08:19] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [09:21, 03:32](1087 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [19:12, 01:47] ( 68 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [15:38, 01:22](237 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [07:30, 01:03](262 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [07:26, 00:46](264 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [54:14, 36:50] ( 1024 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [11:31, 04:52](1887 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [38:14, 36:12] ( 1 warnings 1029 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [12:05, 06:15](1887 MB) - -PASS -- COMPILE 'atml_intel' [40:13, 38:21] ( 8 warnings 1174 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:06, 05:54](1850 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:12, 05:55](1840 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [11:46, 03:17](1065 MB) - -PASS -- COMPILE 'atml_debug_intel' [10:12, 06:33] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:14, 07:19](1888 MB) - -PASS -- COMPILE 'atmw_intel' [43:14, 37:37] ( 1277 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [10:55, 02:30](1851 MB) - -PASS -- COMPILE 'atmaero_intel' [38:14, 36:17] ( 1107 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [13:03, 05:20](1909 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [14:01, 06:21](1705 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [12:55, 06:24](1717 MB) - -PASS -- COMPILE 'atm_fbh_intel' [34:13, 31:45] ( 3 warnings 1003 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:40, 15:21](1061 MB) +PASS -- COMPILE 's2swa_32bit_intel' [45:14, 43:19] ( 1 warnings 1400 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [22:23, 08:19](2014 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:15, 47:19] ( 1 warnings 1447 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [38:16, 22:44](1888 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:27, 23:55](2023 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:11, 09:33](1134 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [41:05, 25:47](1865 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [54:15, 52:17] ( 1 warnings 1444 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [33:48, 21:44](1877 MB) + +PASS -- COMPILE 's2swa_intel' [45:14, 44:04] ( 1 warnings 1419 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:24, 10:29](2043 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [26:34, 10:02](2043 MB) +PASS -- TEST 'cpld_restart_p8_intel' [16:20, 05:30](1703 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:13, 10:13](2063 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [15:16, 05:34](1729 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [27:06, 09:26](2257 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [19:10, 10:16](2041 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:24, 08:32](1998 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:30, 10:05](2054 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [26:21, 09:30](2036 MB) + +PASS -- COMPILE 's2sw_intel' [42:14, 40:38] ( 1 warnings 1304 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:24, 06:26](1898 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:37, 08:10](1962 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:05] ( 1413 warnings 1221 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [32:22, 16:34](2077 MB) + +PASS -- COMPILE 's2sw_debug_intel' [12:11, 06:01] ( 1413 warnings 1221 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [21:08, 07:37](1925 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [39:13, 37:15] ( 1019 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:20, 05:38](1955 MB) + +PASS -- COMPILE 's2s_intel' [46:13, 37:36] ( 1 warnings 1042 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [12:48, 10:21](3004 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:51, 03:04](3006 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:48, 01:45](2455 MB) + +PASS -- COMPILE 's2swa_faster_intel' [43:18, 32:18] ( 1 warnings 1635 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [12:35, 09:44](2063 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [56:15, 46:35] ( 1 warnings 1364 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:30, 21:08](1922 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:21, 09:25](1147 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:12, 23:38](1901 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:11, 05:58] ( 1523 warnings 1991 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [38:15, 34:50](1943 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [39:13, 37:27] ( 1 warnings 1125 remarks ) +PASS -- TEST 'control_flake_intel' [06:29, 04:21](657 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [18:09, 03:16](1545 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [14:09, 03:38](1555 MB) +PASS -- TEST 'control_latlon_intel' [17:03, 03:15](1550 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [15:10, 03:38](1553 MB) +PASS -- TEST 'control_c48_intel' [15:05, 11:11](1697 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [12:35, 10:11](835 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [15:06, 11:09](1701 MB) +PASS -- TEST 'control_c192_intel' [13:18, 09:55](1686 MB) +PASS -- TEST 'control_c384_intel' [22:10, 13:36](1804 MB) +PASS -- TEST 'control_c384gdas_intel' [24:05, 13:19](1024 MB) +PASS -- TEST 'control_stochy_intel' [04:28, 02:08](607 MB) +PASS -- TEST 'control_stochy_restart_intel' [13:26, 01:15](438 MB) +PASS -- TEST 'control_lndp_intel' [04:28, 02:00](601 MB) +PASS -- TEST 'control_iovr4_intel' [05:31, 03:13](598 MB) +PASS -- TEST 'control_iovr5_intel' [05:31, 03:15](600 MB) +PASS -- TEST 'control_p8_intel' [14:31, 03:52](1839 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [19:35, 03:58](1835 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [14:17, 03:41](1837 MB) +PASS -- TEST 'control_restart_p8_intel' [07:51, 02:07](1039 MB) +PASS -- TEST 'control_noqr_p8_intel' [15:20, 03:40](1830 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [07:54, 02:03](1080 MB) +PASS -- TEST 'control_decomp_p8_intel' [17:18, 03:48](1821 MB) +PASS -- TEST 'control_2threads_p8_intel' [20:19, 03:25](1906 MB) +PASS -- TEST 'control_p8_lndp_intel' [21:10, 06:35](1844 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [20:20, 05:09](1904 MB) +PASS -- TEST 'control_p8_mynn_intel' [14:21, 04:04](1854 MB) +PASS -- TEST 'merra2_thompson_intel' [18:21, 04:20](1842 MB) +PASS -- TEST 'regional_control_intel' [09:59, 07:05](1036 MB) +PASS -- TEST 'regional_restart_intel' [11:38, 03:51](1019 MB) +PASS -- TEST 'regional_decomp_intel' [09:59, 07:28](1046 MB) +PASS -- TEST 'regional_2threads_intel' [09:00, 04:16](999 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [10:44, 07:05](1041 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [15:36, 07:08](1034 MB) + +PASS -- COMPILE 'rrfs_intel' [36:13, 34:49] ( 3 warnings 1100 remarks ) +PASS -- TEST 'rap_control_intel' [20:43, 10:09](987 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [16:07, 05:46](1181 MB) +PASS -- TEST 'rap_decomp_intel' [21:42, 10:40](981 MB) +PASS -- TEST 'rap_2threads_intel' [18:48, 09:31](1061 MB) +PASS -- TEST 'rap_restart_intel' [11:45, 05:21](986 MB) +PASS -- TEST 'rap_sfcdiff_intel' [18:50, 10:06](978 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [17:41, 10:42](979 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [13:47, 07:39](1005 MB) +PASS -- TEST 'hrrr_control_intel' [11:45, 05:10](982 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [10:42, 05:16](980 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [10:38, 04:43](1054 MB) +PASS -- TEST 'hrrr_control_restart_intel' [10:26, 02:47](920 MB) +PASS -- TEST 'rrfs_v1beta_intel' [16:00, 09:57](985 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [18:27, 13:31](1936 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [18:27, 12:53](1922 MB) + +PASS -- COMPILE 'csawmg_intel' [36:13, 34:57] ( 1099 remarks ) +PASS -- TEST 'control_csawmg_intel' [10:40, 08:10](962 MB) +PASS -- TEST 'control_ras_intel' [06:26, 04:18](662 MB) + +PASS -- COMPILE 'wam_intel' [37:13, 35:28] ( 1003 remarks ) +PASS -- TEST 'control_wam_intel' [16:42, 14:18](1611 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [39:13, 37:29] ( 1303 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:03, 03:38](1837 MB) +PASS -- TEST 'regional_control_faster_intel' [08:45, 06:31](1037 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:12, 08:27] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [10:51, 02:54](1581 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [10:57, 02:54](1574 MB) +PASS -- TEST 'control_stochy_debug_intel' [08:30, 03:43](782 MB) +PASS -- TEST 'control_lndp_debug_intel' [07:30, 03:21](782 MB) +PASS -- TEST 'control_csawmg_debug_intel' [12:48, 05:28](1090 MB) +PASS -- TEST 'control_ras_debug_intel' [07:29, 03:23](786 MB) +PASS -- TEST 'control_diag_debug_intel' [10:53, 03:26](1630 MB) +PASS -- TEST 'control_debug_p8_intel' [10:54, 03:25](1861 MB) +PASS -- TEST 'regional_debug_intel' [29:52, 22:01](1040 MB) +PASS -- TEST 'rap_control_debug_intel' [11:31, 06:05](1165 MB) +PASS -- TEST 'hrrr_control_debug_intel' [13:34, 06:03](1152 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [13:34, 06:12](1156 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [13:33, 06:11](1169 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:32, 06:07](1167 MB) +PASS -- TEST 'rap_diag_debug_intel' [11:43, 06:23](1249 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [11:28, 06:17](1168 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [14:26, 06:15](1163 MB) +PASS -- TEST 'rap_lndp_debug_intel' [14:28, 06:15](1165 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [12:25, 06:06](1160 MB) +PASS -- TEST 'rap_noah_debug_intel' [11:25, 06:07](1164 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [11:25, 06:14](1161 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [15:26, 10:07](1156 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [10:25, 06:12](1154 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:24, 06:15](1165 MB) +PASS -- TEST 'rap_flake_debug_intel' [09:24, 06:16](1160 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:49, 10:47](1168 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:11, 05:11] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:52, 16:33](1638 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:13, 31:00] ( 3 warnings 1032 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:06, 05:05](1067 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:36, 08:15](908 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:38, 04:17](878 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:47, 07:48](899 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:43, 04:01](902 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:38, 04:36](850 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:40, 06:13](902 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:27, 02:22](844 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [32:13, 25:50] ( 3 warnings 1207 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:55, 02:41](1098 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:43, 01:11](1032 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:43, 01:28](1013 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [33:13, 31:27] ( 3 warnings 1052 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:50, 05:35](902 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:22] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:26, 06:03](1039 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:27, 05:55](1036 MB) +PASS -- TEST 'conus13km_debug_intel' [19:58, 17:46](1153 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [19:58, 17:43](865 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:49, 10:14](1084 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:50, 17:44](1213 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 05:05] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:25, 06:06](1084 MB) + +PASS -- COMPILE 'hafsw_intel' [42:13, 40:36] ( 1 warnings 1438 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:17, 06:37](694 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:30, 06:07](1083 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:32, 09:06](753 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [20:28, 15:42](779 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [23:41, 19:04](803 MB) +PASS -- TEST 'gnv1_nested_intel' [10:54, 06:27](1668 MB) + +PASS -- COMPILE 'hafs_all_intel' [38:13, 36:25] ( 1284 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:27, 08:28](751 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:28, 08:29](734 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:10] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:23, 03:32](1084 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:22, 02:09](1046 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:23, 03:26](937 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:22, 03:32](938 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:22, 03:32](934 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:22, 03:32](1068 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [07:23, 03:34](1063 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:22, 03:27](942 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:18, 07:45](903 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:15, 07:33](854 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:18, 03:34](1092 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:26, 05:04](2359 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [08:25, 05:07](2424 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:28] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:23, 08:06](1025 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:16] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:32](1081 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:11, 01:41] ( 68 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:34, 01:20](238 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:29, 01:03](263 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:26, 00:41](262 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [38:13, 36:35] ( 1024 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:10, 04:51](1899 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [37:13, 35:54] ( 1 warnings 1029 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:03, 06:14](1900 MB) + +PASS -- COMPILE 'atml_intel' [39:13, 37:42] ( 8 warnings 1174 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:07, 05:48](1845 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:05, 05:44](1858 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:43, 03:17](1067 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:11, 06:17] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:10, 07:18](1876 MB) + +PASS -- COMPILE 'atmw_intel' [39:13, 37:20] ( 1280 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:59, 02:30](1846 MB) + +PASS -- COMPILE 'atmaero_intel' [37:13, 35:59] ( 1107 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:02, 05:17](1927 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [12:05, 06:18](1702 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:53, 06:24](1703 MB) + +PASS -- COMPILE 'atm_fbh_intel' [33:13, 31:45] ( 3 warnings 1003 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:33, 15:17](1056 MB) SYNOPSIS: -Starting Date/Time: 20250108 15:28:15 -Ending Date/Time: 20250108 20:09:14 -Total Time: 04h:41m:43s +Starting Date/Time: 20250115 16:24:37 +Ending Date/Time: 20250115 20:56:41 +Total Time: 04h:32m:36s Compiles Completed: 37/37 Tests Completed: 166/166 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index b85c3a5395..9eed6bc03a 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -b5b4558a9da026e48f0ebaca8c082af7b7e7915d +b8c45aa9505538b1212b9b6069ad21d5ee2a6706 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 7d998809dc84996248f93ced49730cfe92eae7cf FV3 (heads/develop) + 312657ab886269bc71d239abfb4dc2c86d1b9f21 FV3 (remotes/origin/rrfsv1-to-ufs/dev9) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 24643b0e0f9754d76176d60ce155bf8956bfb44d FV3/ccpp/physics (EP4-1092-g24643b0e) + 0b426618bef07638c3e095755c831af93c7f1aa4 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5544-g0b426618) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -27,7 +27,7 @@ Submodule hashes used in testing: 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) + 174cf7b56f864e260f70f801f4fa3d70c7fac7e9 WW3 (remotes/origin/devufs20241211develop20240111) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -39,297 +39,297 @@ 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-20250107 -COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_1018631 +COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_868133 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [18:11, 16:37] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [22:31, 15:48](2080 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 20:59] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [56:56, 21:57](1968 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:20, 23:04](2145 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:18, 08:47](1228 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [00:56, 25:52](1881 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:11, 20:38] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [54:52, 21:31](1937 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 07:54] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [31:51, 28:31](1940 MB) - -PASS -- COMPILE 's2swa_intel' [19:11, 17:32] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [48:56, 16:42](2137 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [47:49, 15:50](2130 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:45, 08:29](1793 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [46:42, 15:59](2164 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [11:49, 08:44](1696 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [44:40, 12:24](2330 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [47:42, 15:58](2120 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [19:34, 13:43](2036 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [47:50, 16:03](2144 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [32:31, 16:16](2715 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [21:03, 08:44](2709 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [47:22, 12:48](3712 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:19, 07:20](3538 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [38:33, 08:04](2127 MB) - -PASS -- COMPILE 's2sw_intel' [17:11, 15:28] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [18:12, 15:31](1982 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:24, 06:57](2041 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:11, 08:36] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [17:22, 14:17](2165 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:11, 07:50] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:08, 07:06](2001 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:11, 15:46] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:25, 04:49](2022 MB) - -PASS -- COMPILE 's2s_intel' [17:11, 15:16] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [11:00, 08:38](3035 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:01, 02:59](3029 MB) -PASS -- TEST 'cpld_restart_c48_intel' [09:05, 01:57](2481 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:11, 17:01] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [45:35, 16:30](2147 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:10, 18:52] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [45:17, 18:42](2003 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:23, 08:50](1257 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:18, 21:16](1932 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 07:14] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [07:37, 30:39](1974 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:11, 13:45] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [28:28, 03:43](684 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [30:52, 02:49](1579 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [30:56, 02:52](1589 MB) -PASS -- TEST 'control_latlon_intel' [30:48, 02:47](1586 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [29:56, 02:49](1583 MB) -PASS -- TEST 'control_c48_intel' [25:56, 08:58](1706 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [15:33, 08:14](835 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [25:57, 08:59](1702 MB) -PASS -- TEST 'control_c192_intel' [33:00, 08:06](1744 MB) -PASS -- TEST 'control_c384_intel' [30:54, 09:47](1985 MB) -PASS -- TEST 'control_c384gdas_intel' [31:35, 09:54](1329 MB) -PASS -- TEST 'control_stochy_intel' [21:26, 01:50](640 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:48, 01:04](472 MB) -PASS -- TEST 'control_lndp_intel' [14:27, 01:44](644 MB) -PASS -- TEST 'control_iovr4_intel' [07:27, 02:44](633 MB) -PASS -- TEST 'control_iovr5_intel' [06:22, 02:43](635 MB) -PASS -- TEST 'control_p8_intel' [08:07, 03:28](1869 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:10, 03:33](1877 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:21, 03:18](1881 MB) -PASS -- TEST 'control_restart_p8_intel' [04:11, 02:00](1084 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:14, 03:17](1878 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:28, 01:52](1123 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:09, 03:19](1864 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:16, 03:51](1942 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:43, 05:35](1870 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:20, 04:57](1944 MB) -PASS -- TEST 'control_p8_mynn_intel' [08:22, 05:15](1879 MB) -PASS -- TEST 'merra2_thompson_intel' [06:32, 03:52](1872 MB) -PASS -- TEST 'regional_control_intel' [08:35, 06:30](1111 MB) -PASS -- TEST 'regional_restart_intel' [06:42, 03:36](1088 MB) -PASS -- TEST 'regional_decomp_intel' [08:39, 06:51](1098 MB) -PASS -- TEST 'regional_2threads_intel' [06:40, 04:40](1057 MB) -PASS -- TEST 'regional_noquilt_intel' [08:42, 06:27](1412 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:51, 06:32](1107 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:38, 06:28](1107 MB) -PASS -- TEST 'regional_wofs_intel' [09:40, 07:59](1892 MB) - -PASS -- COMPILE 'rrfs_intel' [15:11, 13:17] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [11:29, 08:29](1055 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:55, 05:11](1269 MB) -PASS -- TEST 'rap_decomp_intel' [11:23, 08:46](1015 MB) -PASS -- TEST 'rap_2threads_intel' [12:25, 10:08](1087 MB) -PASS -- TEST 'rap_restart_intel' [07:32, 04:25](1033 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:24, 08:21](1058 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:17, 08:48](1009 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:34, 06:18](1070 MB) -PASS -- TEST 'hrrr_control_intel' [07:14, 04:23](1019 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:54, 04:28](1011 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [08:25, 05:00](1076 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:51, 02:20](939 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:21, 08:20](1052 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:26, 09:53](1973 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:24, 09:37](2011 MB) - -PASS -- COMPILE 'csawmg_intel' [14:11, 12:32] -PASS -- TEST 'control_csawmg_intel' [34:45, 10:03](1020 MB) -PASS -- TEST 'control_ras_intel' [28:27, 03:33](714 MB) - -PASS -- COMPILE 'wam_intel' [14:10, 13:01] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [16:47, 12:46](1651 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [18:10, 12:55] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:24, 03:18](1871 MB) -PASS -- TEST 'regional_control_faster_intel' [09:39, 06:15](1107 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [14:10, 09:17] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:46, 02:26](1613 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:46, 02:22](1609 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:22, 03:05](814 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:21, 02:46](816 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:36, 04:21](1122 MB) -PASS -- TEST 'control_ras_debug_intel' [05:19, 02:48](818 MB) -PASS -- TEST 'control_diag_debug_intel' [04:37, 02:47](1679 MB) -PASS -- TEST 'control_debug_p8_intel' [04:48, 02:49](1896 MB) -PASS -- TEST 'regional_debug_intel' [19:44, 17:29](1092 MB) -PASS -- TEST 'rap_control_debug_intel' [07:23, 05:10](1200 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:27, 04:54](1191 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:34, 05:01](1204 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:28, 04:58](1201 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:26, 04:52](1203 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:32, 05:17](1279 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:23, 05:09](1199 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:24, 05:03](1201 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:23, 05:01](1204 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:20, 04:55](1200 MB) -PASS -- TEST 'rap_noah_debug_intel' [09:20, 04:48](1198 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [09:22, 05:12](1208 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:24, 07:55](1203 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:23, 04:44](1197 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:26, 05:05](1202 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:25, 04:55](1203 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:28, 08:36](1213 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:10, 06:11] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [38:47, 13:28](1688 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:10, 12:31] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:56, 04:57](1143 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:22, 07:10](1001 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:09, 03:46](920 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [12:19, 08:43](986 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:32, 04:27](956 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:38, 03:59](892 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [14:33, 05:24](974 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:50, 02:03](867 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 12:20] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:58, 02:37](1166 MB) -PASS -- TEST 'conus13km_2threads_intel' [08:50, 01:11](1110 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [08:52, 01:29](1063 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:11, 12:10] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:43, 04:35](966 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:10, 06:09] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:26, 04:48](1076 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:27, 04:49](1078 MB) -PASS -- TEST 'conus13km_debug_intel' [16:55, 13:43](1224 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:53, 13:54](929 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [15:40, 13:31](1168 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:46, 13:52](1301 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:10, 06:12] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:25, 05:12](1134 MB) - -PASS -- COMPILE 'hafsw_intel' [16:11, 15:04] ( 1 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:15, 05:55](731 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:26, 06:26](1128 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [15:25, 07:29](806 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [36:19, 29:07](844 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [42:31, 34:59](866 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:05, 07:09](495 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [15:32, 08:27](507 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [09:57, 03:30](378 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [17:43, 09:38](468 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [11:57, 04:45](523 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:51, 04:28](531 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:09, 05:40](572 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:33, 01:34](400 MB) -PASS -- TEST 'gnv1_nested_intel' [13:31, 04:18](1720 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:10, 06:46] ( 1462 warnings 1490 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:06, 13:14](581 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:11, 14:26] ( 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:22, 15:18](637 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [22:32, 15:32](719 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [21:11, 15:34] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [18:32, 11:16](701 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:10, 15:07] ( 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [14:20, 07:31](808 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:16, 07:31](800 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:01, 16:21](1200 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:10, 07:51] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [08:19, 02:59](1159 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:22, 01:58](1108 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [08:19, 02:52](1015 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:19, 02:58](1021 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:17, 02:54](1022 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:21, 03:01](1144 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:22, 03:01](1148 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:53](1015 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:16, 06:32](1017 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:13, 06:27](1001 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:18, 02:58](1147 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:20, 04:19](2401 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 04:21](2456 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:10, 05:34] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:19, 06:35](1081 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:10, 08:11] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:57](1144 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:10, 01:25] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:31, 01:02](255 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:23, 00:56](327 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:31, 00:36](322 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [04:10, 01:57] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:31, 00:36](549 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [05:34, 00:22](450 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:11, 13:08] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:13, 04:10](1964 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:11, 12:40] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:03, 05:12](1978 MB) - -PASS -- COMPILE 'atml_intel' [16:11, 13:42] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:32, 04:56](1861 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:32, 04:54](1858 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:02, 02:46](1070 MB) - -PASS -- COMPILE 'atml_debug_intel' [10:10, 07:46] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:34, 05:57](1894 MB) - -PASS -- COMPILE 'atmw_intel' [19:11, 14:11] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:25, 02:18](1906 MB) - -PASS -- COMPILE 'atmaero_intel' [19:11, 13:30] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:25, 04:36](1973 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:23, 05:23](1755 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:08, 05:27](1758 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [10:10, 05:58] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [26:04, 20:52](4493 MB) - -PASS -- COMPILE 'atm_fbh_intel' [15:11, 12:34] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:33, 13:51](1116 MB) - -PASS -- COMPILE 'hafsw_intelllvm' [12:10, 07:54] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [11:13, 07:54](572 MB) - -PASS -- COMPILE 'hafsw_debug_intelllvm' [09:10, 04:46] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [22:53, 19:29](560 MB) +PASS -- COMPILE 's2swa_32bit_intel' [20:11, 18:13] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [22:40, 16:18](2079 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [31:11, 29:58] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [24:50, 21:45](1962 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:27, 23:05](2133 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:21, 08:46](1233 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:44, 25:43](1870 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:11, 22:41] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [23:42, 21:25](1953 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:10, 09:01] ( 1523 warnings 1993 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [31:55, 28:35](1947 MB) + +PASS -- COMPILE 's2swa_intel' [19:11, 18:03] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [23:47, 16:53](2141 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:42, 15:56](2137 MB) +PASS -- TEST 'cpld_restart_p8_intel' [12:50, 08:24](1803 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [21:27, 15:54](2162 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [13:49, 08:30](1698 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [19:33, 12:30](2339 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [21:27, 15:46](2142 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [16:29, 13:44](2043 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:43, 15:44](2142 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [21:31, 16:05](2725 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [15:23, 09:11](2711 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [22:29, 12:51](3760 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:43, 07:20](3581 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:21, 08:03](2124 MB) + +PASS -- COMPILE 's2sw_intel' [18:11, 16:46] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [18:04, 15:35](1961 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:11, 06:51](2049 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:11, 09:09] ( 1413 warnings 1223 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:24, 13:48](2164 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:11, 08:42] ( 1413 warnings 1223 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:06, 07:09](1991 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:11, 15:41] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:12, 04:49](2020 MB) + +PASS -- COMPILE 's2s_intel' [18:11, 17:01] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:55, 08:44](3027 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:57, 02:58](3023 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:49, 01:59](2477 MB) + +PASS -- COMPILE 's2swa_faster_intel' [20:11, 18:46] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [19:17, 16:18](2144 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 19:27] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:17, 18:46](2013 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:32, 08:57](1247 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:15, 21:31](1928 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 07:57] ( 1523 warnings 1993 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [37:33, 31:04](1992 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:11, 14:09] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:24, 03:43](688 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:50, 02:48](1579 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:55, 02:50](1585 MB) +PASS -- TEST 'control_latlon_intel' [04:46, 02:47](1582 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:55, 02:48](1578 MB) +PASS -- TEST 'control_c48_intel' [10:55, 09:05](1693 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:31, 08:10](836 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [10:55, 09:09](1703 MB) +PASS -- TEST 'control_c192_intel' [12:00, 08:09](1745 MB) +PASS -- TEST 'control_c384_intel' [15:09, 09:53](1991 MB) +PASS -- TEST 'control_c384gdas_intel' [15:58, 09:56](1333 MB) +PASS -- TEST 'control_stochy_intel' [03:23, 01:50](640 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:40, 01:04](472 MB) +PASS -- TEST 'control_lndp_intel' [03:24, 01:43](644 MB) +PASS -- TEST 'control_iovr4_intel' [04:26, 02:42](640 MB) +PASS -- TEST 'control_iovr5_intel' [04:30, 02:45](640 MB) +PASS -- TEST 'control_p8_intel' [06:20, 03:19](1883 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:14, 03:35](1868 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:28, 03:15](1876 MB) +PASS -- TEST 'control_restart_p8_intel' [05:18, 01:54](1076 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:22, 03:15](1866 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:18, 01:50](1134 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:17, 03:21](1857 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:16, 03:50](1942 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:42, 05:32](1883 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:16, 04:53](1930 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:20, 03:38](1884 MB) +PASS -- TEST 'merra2_thompson_intel' [08:42, 03:50](1882 MB) +PASS -- TEST 'regional_control_intel' [08:40, 06:28](1111 MB) +PASS -- TEST 'regional_restart_intel' [10:33, 03:33](1089 MB) +PASS -- TEST 'regional_decomp_intel' [09:42, 06:47](1100 MB) +PASS -- TEST 'regional_2threads_intel' [07:42, 04:40](1059 MB) +PASS -- TEST 'regional_noquilt_intel' [08:37, 06:27](1411 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:39, 06:29](1105 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:41, 06:32](1106 MB) +PASS -- TEST 'regional_wofs_intel' [11:41, 07:58](1897 MB) + +PASS -- COMPILE 'rrfs_intel' [15:12, 13:19] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [12:30, 08:28](1053 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:03, 05:11](1270 MB) +PASS -- TEST 'rap_decomp_intel' [12:00, 08:44](1015 MB) +PASS -- TEST 'rap_2threads_intel' [16:20, 10:10](1089 MB) +PASS -- TEST 'rap_restart_intel' [09:33, 04:24](1036 MB) +PASS -- TEST 'rap_sfcdiff_intel' [15:14, 08:27](1046 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:59, 08:41](1016 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:30, 06:17](1072 MB) +PASS -- TEST 'hrrr_control_intel' [11:12, 04:21](1022 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [11:03, 04:25](1012 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [14:30, 05:00](1077 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:52, 02:21](942 MB) +PASS -- TEST 'rrfs_v1beta_intel' [13:26, 08:19](1055 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:24, 09:57](1974 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [17:24, 09:37](2012 MB) + +PASS -- COMPILE 'csawmg_intel' [15:12, 13:14] +PASS -- TEST 'control_csawmg_intel' [13:37, 06:36](1012 MB) +PASS -- TEST 'control_ras_intel' [10:24, 03:29](713 MB) + +PASS -- COMPILE 'wam_intel' [15:11, 13:39] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [19:49, 12:45](1643 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:11, 13:48] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [11:28, 03:18](1877 MB) +PASS -- TEST 'regional_control_faster_intel' [13:36, 06:16](1110 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:13, 10:24] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:49, 02:27](1609 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:51, 02:22](1606 MB) +PASS -- TEST 'control_stochy_debug_intel' [08:26, 03:09](808 MB) +PASS -- TEST 'control_lndp_debug_intel' [07:28, 02:48](818 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:42, 04:22](1124 MB) +PASS -- TEST 'control_ras_debug_intel' [07:26, 02:47](822 MB) +PASS -- TEST 'control_diag_debug_intel' [06:50, 02:47](1672 MB) +PASS -- TEST 'control_debug_p8_intel' [05:49, 02:51](1906 MB) +PASS -- TEST 'regional_debug_intel' [20:41, 17:29](1079 MB) +PASS -- TEST 'rap_control_debug_intel' [06:26, 04:57](1196 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:23, 04:49](1199 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:21, 04:54](1200 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:56](1197 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:20, 05:00](1199 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:39, 05:05](1286 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:22, 05:01](1200 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:30, 04:57](1201 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:25, 05:00](1203 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 04:56](1198 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:48](1198 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:23, 04:58](1202 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:23, 08:00](1197 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:21, 04:54](1200 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:27, 04:57](1204 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:20, 04:57](1208 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:29, 08:29](1207 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:10, 06:44] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:41, 13:28](1681 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:10, 14:04] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:58, 04:55](1138 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:17, 07:09](998 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:41, 03:47](920 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:10, 08:38](986 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:28, 04:26](962 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:22, 03:58](894 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:29, 05:25](971 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:40, 02:04](874 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:10, 13:40] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:55, 02:34](1169 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:54, 01:09](1114 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:47, 01:29](1067 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:10, 15:25] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:45, 04:35](966 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:10, 06:10] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:22, 04:55](1075 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:23, 04:52](1078 MB) +PASS -- TEST 'conus13km_debug_intel' [15:40, 13:52](1231 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:51, 13:50](928 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [15:49, 13:30](1167 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:45, 13:56](1296 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:10, 06:06] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 05:03](1134 MB) + +PASS -- COMPILE 'hafsw_intel' [19:11, 16:20] ( 1 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:18, 05:55](734 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:29, 06:25](1120 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:25, 07:31](809 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [30:14, 27:54](843 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [37:22, 34:50](869 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:59, 07:11](494 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:28, 08:29](507 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:53, 03:31](372 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:32, 09:38](476 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:57, 04:44](519 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:56, 04:30](522 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:54, 05:40](568 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:31, 01:34](402 MB) +PASS -- TEST 'gnv1_nested_intel' [10:17, 04:18](1720 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:10, 07:43] ( 1465 warnings 1495 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:10, 13:18](583 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [18:11, 15:51] ( 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:00, 15:06](655 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [28:11, 24:54](699 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 15:29] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:29, 11:07](708 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:11, 15:20] ( 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:22, 07:56](815 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:22, 07:30](796 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:57, 16:22](1203 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [14:12, 10:53] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 03:01](1151 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:21, 01:55](1107 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:54](1018 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:55](1015 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:56](1020 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 03:00](1156 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 03:02](1138 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:52](1014 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:17, 06:33](1023 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:15, 06:28](1005 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 02:59](1150 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:21, 04:21](2450 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 04:20](2450 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:11, 05:36] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 06:38](1066 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:11, 09:00] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [08:17, 02:59](1149 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:10, 01:25] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:31, 01:02](252 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:26, 00:56](325 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:29, 00:36](328 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:47] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [05:32, 00:36](557 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:39, 00:21](444 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [20:13, 15:40] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:14, 04:12](1957 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [19:11, 14:23] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [10:02, 05:14](1972 MB) + +PASS -- COMPILE 'atml_intel' [20:12, 16:05] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:38, 04:57](1861 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:33, 04:55](1868 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:03, 02:46](1076 MB) + +PASS -- COMPILE 'atml_debug_intel' [11:10, 07:46] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:33, 05:58](1893 MB) + +PASS -- COMPILE 'atmw_intel' [16:11, 14:23] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:25, 02:19](1905 MB) + +PASS -- COMPILE 'atmaero_intel' [16:14, 14:06] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [11:25, 04:35](1959 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [11:25, 05:23](1764 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:02, 05:29](1756 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [13:12, 06:38] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [27:12, 20:47](4487 MB) + +PASS -- COMPILE 'atm_fbh_intel' [19:11, 13:24] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [18:29, 13:52](1119 MB) + +PASS -- COMPILE 'hafsw_intelllvm' [13:11, 08:35] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [13:06, 07:55](569 MB) + +PASS -- COMPILE 'hafsw_debug_intelllvm' [08:11, 05:02] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [22:54, 19:22](563 MB) SYNOPSIS: -Starting Date/Time: 20250108 11:31:17 -Ending Date/Time: 20250108 13:47:32 -Total Time: 02h:16m:54s +Starting Date/Time: 20250115 10:22:37 +Ending Date/Time: 20250115 12:15:06 +Total Time: 01h:53m:02s Compiles Completed: 45/45 Tests Completed: 191/191 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 51423f0569..e3e0518ee1 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -652433c9ba641f105fbac487d9515284cb22370e +b8c45aa9505538b1212b9b6069ad21d5ee2a6706 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 7d998809dc84996248f93ced49730cfe92eae7cf FV3 (heads/develop) + 312657ab886269bc71d239abfb4dc2c86d1b9f21 FV3 (remotes/origin/rrfsv1-to-ufs/dev9) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 24643b0e0f9754d76176d60ce155bf8956bfb44d FV3/ccpp/physics (EP4-1092-g24643b0e) + 0b426618bef07638c3e095755c831af93c7f1aa4 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5544-g0b426618) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -27,7 +27,7 @@ Submodule hashes used in testing: 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) + 174cf7b56f864e260f70f801f4fa3d70c7fac7e9 WW3 (remotes/origin/devufs20241211develop20240111) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -39,239 +39,239 @@ 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-20250107 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3172405 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4170434 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:29, 11:30] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:41, 07:28](3192 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:28, 12:18] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [21:45, 16:15](1909 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:05, 17:05](1947 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:45, 07:55](1078 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:44, 18:54](1885 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:29, 11:39] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:23, 15:53](1902 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:22, 05:25] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [31:58, 26:11](1949 MB) - -PASS -- COMPILE 's2swa_intel' [13:29, 11:37] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [13:19, 08:55](3228 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:34, 08:39](3224 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:16, 05:24](3154 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:11, 08:51](3244 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:24, 05:17](3171 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [21:31, 17:24](3444 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:49, 08:48](3223 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:24, 07:24](3166 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:34, 08:49](3228 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [23:56, 14:07](4232 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:05, 10:01](4372 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [13:21, 09:06](3199 MB) - -PASS -- COMPILE 's2sw_intel' [12:29, 10:53] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:51, 05:20](1919 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:20, 07:43](1978 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:28, 10:23] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:16, 05:27](1969 MB) - -PASS -- COMPILE 's2s_intel' [12:28, 10:33] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:49, 06:46](2883 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:46, 02:45](2889 MB) -PASS -- TEST 'cpld_restart_c48_intel' [05:44, 02:07](2306 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:32, 15:56] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:29, 08:45](3230 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:29, 11:19] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:09, 15:52](1920 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:16, 07:55](1097 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:14, 18:31](1897 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:21, 05:20] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:11, 27:18](1968 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:26, 09:28] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:40, 04:10](666 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:04, 02:38](1557 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:14, 02:53](1564 MB) -PASS -- TEST 'control_latlon_intel' [04:56, 02:37](1566 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:11, 02:44](1562 MB) -PASS -- TEST 'control_c48_intel' [09:29, 06:29](1582 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [09:06, 06:08](708 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [09:30, 06:39](1589 MB) -PASS -- TEST 'control_c192_intel' [10:30, 07:25](1685 MB) -PASS -- TEST 'control_c384_intel' [13:57, 09:14](1972 MB) -PASS -- TEST 'control_c384gdas_intel' [14:49, 09:22](1175 MB) -PASS -- TEST 'control_stochy_intel' [04:41, 02:09](620 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:38, 01:20](424 MB) -PASS -- TEST 'control_lndp_intel' [04:34, 01:54](617 MB) -PASS -- TEST 'control_iovr4_intel' [04:38, 02:44](619 MB) -PASS -- TEST 'control_iovr5_intel' [05:39, 02:54](614 MB) -PASS -- TEST 'control_p8_intel' [07:30, 03:29](1857 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:37, 03:34](1855 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:34, 03:25](1853 MB) -PASS -- TEST 'control_restart_p8_intel' [06:35, 02:16](1010 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:56, 03:14](1846 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:35, 02:10](1015 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:50, 03:28](1857 MB) -PASS -- TEST 'control_2threads_p8_intel' [10:31, 06:27](1938 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:04, 05:24](1854 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:43, 04:30](1906 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:36, 03:48](1858 MB) -PASS -- TEST 'merra2_thompson_intel' [08:53, 04:04](1858 MB) -PASS -- TEST 'regional_control_intel' [08:01, 05:47](892 MB) -PASS -- TEST 'regional_restart_intel' [05:55, 03:42](875 MB) -PASS -- TEST 'regional_decomp_intel' [07:57, 05:56](894 MB) -PASS -- TEST 'regional_2threads_intel' [10:58, 08:23](1014 MB) -PASS -- TEST 'regional_noquilt_intel' [07:58, 05:31](1223 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:04, 05:41](893 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:55, 05:49](899 MB) -PASS -- TEST 'regional_wofs_intel' [10:03, 07:21](1581 MB) - -PASS -- COMPILE 'rrfs_intel' [10:25, 08:53] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [11:40, 07:28](1001 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:26, 04:47](1159 MB) -PASS -- TEST 'rap_decomp_intel' [10:48, 07:44](1007 MB) -PASS -- TEST 'rap_2threads_intel' [20:52, 16:10](1076 MB) -PASS -- TEST 'rap_restart_intel' [08:45, 04:07](881 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:35, 07:28](1000 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:45, 07:38](997 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:34, 05:37](884 MB) -PASS -- TEST 'hrrr_control_intel' [08:38, 04:06](998 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:37, 04:17](994 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [11:51, 08:08](1068 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:37, 02:17](830 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:38, 07:24](997 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:46, 09:36](1954 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:51, 09:30](1940 MB) - -PASS -- COMPILE 'csawmg_intel' [10:25, 08:11] -PASS -- TEST 'control_csawmg_intel' [09:59, 07:18](956 MB) -PASS -- TEST 'control_ras_intel' [05:33, 03:45](653 MB) - -PASS -- COMPILE 'wam_intel' [10:24, 08:20] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:20, 12:14](1641 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:25, 08:33] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:38, 03:32](1859 MB) -PASS -- TEST 'regional_control_faster_intel' [07:56, 05:29](890 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 07:32] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:10, 03:05](1606 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:12, 02:48](1608 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:39, 03:40](800 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:39, 03:26](804 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:04, 05:26](1109 MB) -PASS -- TEST 'control_ras_debug_intel' [05:39, 03:25](809 MB) -PASS -- TEST 'control_diag_debug_intel' [06:08, 03:24](1661 MB) -PASS -- TEST 'control_debug_p8_intel' [06:00, 03:31](1893 MB) -PASS -- TEST 'regional_debug_intel' [21:18, 18:54](919 MB) -PASS -- TEST 'rap_control_debug_intel' [07:41, 05:46](1188 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:43, 05:46](1181 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:39, 05:47](1184 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:40, 05:42](1187 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:38, 05:42](1191 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:50, 06:08](1269 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:40, 05:57](1193 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:38, 06:05](1189 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:36, 05:55](1194 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:35, 05:51](1192 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:35, 05:46](1182 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:36, 05:41](1185 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:42, 08:58](1183 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:34, 05:46](1183 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:37, 05:48](1187 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:37, 05:50](1188 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:55, 09:40](1189 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:20, 04:30] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [17:17, 14:36](1679 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:24, 08:16] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:23, 04:21](1032 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:36, 06:09](878 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:12, 03:31](878 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [17:35, 13:54](932 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [12:34, 07:16](934 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:05, 03:39](871 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:45, 04:42](791 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:41, 01:59](761 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:26, 08:13] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:21, 02:22](1079 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:06, 02:08](1062 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:05, 01:41](958 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:23, 08:23] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:02, 04:25](902 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 04:44] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:35, 05:36](1068 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:37, 05:34](1065 MB) -PASS -- TEST 'conus13km_debug_intel' [18:23, 15:10](1151 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [18:21, 15:25](828 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [26:22, 23:33](1142 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:15, 15:16](1219 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 04:30] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:40, 05:43](1091 MB) - -PASS -- COMPILE 'hafsw_intel' [11:25, 10:10] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [10:50, 07:19](686 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:44, 08:10](1054 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:10, 08:20](740 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:55, 13:14](764 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:12, 14:47](788 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:20, 06:05](463 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:56, 07:38](481 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:26, 03:26](380 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:10, 09:05](485 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:09, 04:34](497 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:13, 04:19](498 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:22, 05:07](560 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:40, 02:11](408 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:21, 05:12] ( 1444 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:22, 14:43](609 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:25, 09:44] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:23, 08:26](609 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:33, 08:45](785 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:25, 09:50] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:48, 06:56](785 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:24, 09:09] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:51, 07:59](736 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:46, 07:40](716 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:42, 16:16](892 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:26, 10:24] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:02, 04:08](1914 MB) - -PASS -- COMPILE 'atml_intel' [11:25, 09:38] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [07:21, 05:39] ( 866 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [10:24, 08:42] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:14, 04:54](3116 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:11, 05:26](2997 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:52, 05:24](3010 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:20, 04:33] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [27:55, 23:04](4497 MB) +PASS -- COMPILE 's2swa_32bit_intel' [15:33, 11:34] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:06, 07:05](3192 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:31, 12:05] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:02, 15:52](1909 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:23, 16:58](1944 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [16:02, 07:55](1077 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:07, 18:31](1887 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:33, 12:49] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:36, 15:37](1908 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:25, 05:27] ( 1502 warnings 1991 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [32:48, 26:09](1946 MB) + +PASS -- COMPILE 's2swa_intel' [15:33, 11:34] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [13:47, 08:34](3228 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:51, 08:33](3226 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:45, 05:15](3156 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:36, 08:45](3247 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:55, 05:16](3173 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [22:52, 17:14](3447 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [13:10, 08:35](3224 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [12:46, 07:18](3168 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:53, 08:45](3230 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [09:27, 13:53](4238 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:54, 10:14](4379 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [13:38, 08:36](3201 MB) + +PASS -- COMPILE 's2sw_intel' [15:33, 10:54] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:16, 05:10](1921 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:43, 07:26](1981 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:30, 10:14] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:23, 05:11](1970 MB) + +PASS -- COMPILE 's2s_intel' [14:28, 10:29] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:51, 06:22](2884 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:45, 02:39](2889 MB) +PASS -- TEST 'cpld_restart_c48_intel' [05:59, 01:50](2307 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:35, 15:45] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [14:58, 08:41](3230 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [15:33, 11:39] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:31, 15:52](1918 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:29, 08:11](1097 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:31, 18:30](1898 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:22, 05:17] ( 1502 warnings 1991 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:22, 28:58](1966 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:32] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:36, 04:08](663 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:27, 02:41](1557 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:42, 02:50](1575 MB) +PASS -- TEST 'control_latlon_intel' [06:25, 02:40](1563 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:49, 02:47](1566 MB) +PASS -- TEST 'control_c48_intel' [10:40, 06:30](1583 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:14, 06:04](710 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [10:34, 06:30](1590 MB) +PASS -- TEST 'control_c192_intel' [10:42, 07:20](1693 MB) +PASS -- TEST 'control_c384_intel' [15:07, 09:06](1968 MB) +PASS -- TEST 'control_c384gdas_intel' [15:16, 09:21](1182 MB) +PASS -- TEST 'control_stochy_intel' [04:42, 02:04](620 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:44, 01:18](422 MB) +PASS -- TEST 'control_lndp_intel' [04:40, 01:53](620 MB) +PASS -- TEST 'control_iovr4_intel' [05:47, 02:49](613 MB) +PASS -- TEST 'control_iovr5_intel' [05:42, 02:50](619 MB) +PASS -- TEST 'control_p8_intel' [08:53, 03:22](1863 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [08:54, 03:27](1851 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:34, 03:12](1850 MB) +PASS -- TEST 'control_restart_p8_intel' [08:29, 02:12](1010 MB) +PASS -- TEST 'control_noqr_p8_intel' [08:18, 03:19](1848 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [07:36, 02:14](1023 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:59, 03:22](1848 MB) +PASS -- TEST 'control_2threads_p8_intel' [10:44, 06:14](1937 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:15, 05:24](1865 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:56, 04:26](1912 MB) +PASS -- TEST 'control_p8_mynn_intel' [08:05, 03:29](1869 MB) +PASS -- TEST 'merra2_thompson_intel' [08:21, 03:51](1857 MB) +PASS -- TEST 'regional_control_intel' [08:08, 05:35](893 MB) +PASS -- TEST 'regional_restart_intel' [06:01, 03:24](876 MB) +PASS -- TEST 'regional_decomp_intel' [08:57, 05:50](900 MB) +PASS -- TEST 'regional_2threads_intel' [12:09, 07:55](1013 MB) +PASS -- TEST 'regional_noquilt_intel' [09:04, 05:31](1222 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:07, 05:29](893 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [10:00, 05:46](892 MB) +PASS -- TEST 'regional_wofs_intel' [10:59, 07:11](1583 MB) + +PASS -- COMPILE 'rrfs_intel' [11:25, 08:47] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [14:52, 07:25](1005 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:35, 04:48](1160 MB) +PASS -- TEST 'rap_decomp_intel' [13:46, 07:43](1006 MB) +PASS -- TEST 'rap_2threads_intel' [21:56, 16:12](1080 MB) +PASS -- TEST 'rap_restart_intel' [08:44, 03:59](882 MB) +PASS -- TEST 'rap_sfcdiff_intel' [13:41, 07:23](999 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:41, 07:47](997 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:46, 05:36](883 MB) +PASS -- TEST 'hrrr_control_intel' [09:50, 04:09](996 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [09:14, 04:14](998 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [12:54, 08:06](1073 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:42, 02:19](830 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:52, 07:21](1000 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:46, 09:37](1954 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:48, 09:15](1946 MB) + +PASS -- COMPILE 'csawmg_intel' [10:24, 08:12] +PASS -- TEST 'control_csawmg_intel' [10:08, 07:21](955 MB) +PASS -- TEST 'control_ras_intel' [05:37, 03:38](656 MB) + +PASS -- COMPILE 'wam_intel' [10:25, 08:20] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:21, 12:17](1642 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:25, 08:31] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:42, 03:19](1858 MB) +PASS -- TEST 'regional_control_faster_intel' [09:02, 05:28](896 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:26, 07:39] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:17, 03:03](1597 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:21, 03:00](1602 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:40, 03:47](800 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:37, 03:22](802 MB) +PASS -- TEST 'control_csawmg_debug_intel' [09:14, 05:19](1108 MB) +PASS -- TEST 'control_ras_debug_intel' [05:38, 03:28](810 MB) +PASS -- TEST 'control_diag_debug_intel' [07:26, 03:20](1663 MB) +PASS -- TEST 'control_debug_p8_intel' [07:12, 03:27](1897 MB) +PASS -- TEST 'regional_debug_intel' [21:24, 18:48](945 MB) +PASS -- TEST 'rap_control_debug_intel' [08:41, 05:53](1188 MB) +PASS -- TEST 'hrrr_control_debug_intel' [09:49, 05:48](1178 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [10:42, 05:47](1190 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [09:40, 05:46](1184 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:42, 05:47](1188 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:52, 06:04](1269 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:35, 05:53](1190 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:40, 05:56](1189 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:38, 05:55](1189 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:37, 05:38](1190 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:38, 05:49](1186 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:37, 05:39](1188 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:45, 09:02](1183 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:40, 05:38](1180 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:41, 05:46](1188 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:39, 05:53](1187 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:01, 09:40](1188 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:20, 04:31] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [17:27, 14:30](1685 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:24, 08:11] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:28, 04:33](1030 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:39, 06:07](877 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:35, 03:36](874 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [18:41, 13:47](936 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [13:14, 07:13](918 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:34, 03:48](870 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:42, 04:44](790 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:41, 02:03](761 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:25, 08:07] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [07:26, 02:27](1081 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:11, 02:10](1059 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:04, 01:40](958 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:28, 08:22] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:12, 04:21](898 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:21, 04:38] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [09:41, 05:37](1067 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:42, 05:34](1062 MB) +PASS -- TEST 'conus13km_debug_intel' [18:41, 15:06](1151 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [19:28, 15:29](827 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [26:28, 23:23](1132 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:24, 15:15](1218 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:30] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:44, 05:44](1087 MB) + +PASS -- COMPILE 'hafsw_intel' [12:27, 10:14] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [11:51, 07:24](687 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [11:55, 08:16](1049 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:15, 08:25](740 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:08, 13:48](763 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:14, 15:00](931 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:22, 06:16](465 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:59, 07:52](480 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [07:35, 03:41](380 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:30, 09:21](450 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:14, 04:39](496 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:18, 04:18](497 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:30, 05:26](565 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:41, 02:00](413 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:23, 04:58] ( 1446 warnings 1494 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:45, 15:11](614 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:28, 09:45] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:35, 08:36](603 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:42, 08:45](786 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:28, 09:57] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:00, 07:01](786 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:26, 09:20] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [12:54, 08:12](734 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:56, 08:05](714 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:44, 16:20](894 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:28, 09:57] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:15, 04:18](1915 MB) + +PASS -- COMPILE 'atml_intel' [11:29, 09:41] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [08:21, 05:24] ( 866 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [10:25, 08:36] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:10, 04:58](3119 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:03, 05:18](2995 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:49, 05:30](3010 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:20, 04:28] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [28:18, 23:27](4479 MB) SYNOPSIS: -Starting Date/Time: 20250113 18:18:48 -Ending Date/Time: 20250113 19:53:03 -Total Time: 01h:35m:21s +Starting Date/Time: 20250115 16:10:47 +Ending Date/Time: 20250115 18:01:32 +Total Time: 01h:52m:20s Compiles Completed: 33/33 Tests Completed: 157/157 diff --git a/tests/rt.sh b/tests/rt.sh index 275ec03510..65c97132b9 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -1049,7 +1049,7 @@ if [[ "${CREATE_BASELINE}" == false ]] ; then fi INPUTDATA_ROOT=${INPUTDATA_ROOT:-${DISKNM}/NEMSfv3gfs/input-data-20240501} -INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20240214 +INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20250114 INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-${DISKNM}/NEMSfv3gfs/BM_IC-20220207} INPUTDATA_LM4=${INPUTDATA_LM4:-${INPUTDATA_ROOT}/LM4_input_data} diff --git a/tests/test_changes.list b/tests/test_changes.list index 317f529375..e69de29bb2 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,70 +0,0 @@ -cpld_control_p8_mixedmode intel -cpld_control_gfsv17 intel -cpld_control_gfsv17_iau intel -cpld_restart_gfsv17 intel -cpld_mpi_gfsv17 intel -cpld_control_sfs intel -cpld_debug_gfsv17 intel -cpld_control_p8 intel -cpld_control_p8.v2.sfc intel -cpld_restart_p8 intel -cpld_control_qr_p8 intel -cpld_restart_qr_p8 intel -cpld_2threads_p8 intel -cpld_decomp_p8 intel -cpld_mpi_p8 intel -cpld_control_ciceC_p8 intel -cpld_bmark_p8 intel -cpld_restart_bmark_p8 intel -cpld_s2sa_p8 intel -cpld_control_noaero_p8 intel -cpld_control_nowave_noaero_p8 intel -cpld_debug_p8 intel -cpld_debug_noaero_p8 intel -cpld_control_noaero_p8_agrid intel -cpld_control_c48 intel -cpld_warmstart_c48 intel -cpld_restart_c48 intel -cpld_control_p8_faster intel -cpld_control_pdlib_p8 intel -cpld_restart_pdlib_p8 intel -cpld_mpi_pdlib_p8 intel -cpld_debug_pdlib_p8 intel -control_CubedSphereGrid intel -control_CubedSphereGrid_parallel intel -control_latlon intel -control_wrtGauss_netcdf_parallel intel -control_c48 intel -control_c48_lnd_iau intel -control_c192 intel -control_c384 intel -control_p8 intel -control_p8.v2.sfc intel -control_p8_ugwpv1 intel -control_restart_p8 intel -control_noqr_p8 intel -control_restart_noqr_p8 intel -control_decomp_p8 intel -control_2threads_p8 intel -control_p8_lndp intel -merra2_thompson intel -control_p8_faster intel -control_CubedSphereGrid_debug intel -control_wrtGauss_netcdf_parallel_debug intel -control_debug_p8 intel -atm_ds2s_docn_pcice intel -atm_ds2s_docn_dice intel -control_p8_atmlnd_sbs intel -control_p8_atmlnd intel -control_restart_p8_atmlnd intel -control_p8_atmlnd_debug intel -atmwav_control_noaero_p8 intel -atmaero_control_p8 intel -atmaero_control_p8_rad intel -atmaero_control_p8_rad_micro intel -control_c48 gnu -control_p8 gnu -control_p8_ugwpv1 gnu -control_debug_p8 gnu -cpld_control_nowave_noaero_p8 gnu -cpld_control_pdlib_p8 gnu