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] 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