From b5ab330279b6a6b0b55ba53cfcbc0baa3054912f Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Wed, 23 Mar 2022 14:34:22 +0000 Subject: [PATCH 01/76] Update .gitmodules --- .gitmodules | 12 ++++++++---- FV3 | 2 +- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.gitmodules b/.gitmodules index a963b019d8..1bef8b0364 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,15 +1,19 @@ [submodule "FV3"] path = FV3 - url = https://github.com/NOAA-EMC/fv3atm - branch = develop + #url = https://github.com/NOAA-EMC/fv3atm + #branch = develop + url = https://github.com/DusanJovic-NOAA/fv3atm + branch = no_arg_mismatch [submodule "WW3"] path = WW3 url = https://github.com/NOAA-EMC/WW3 branch = dev/ufs-weather-model [submodule "stochastic_physics"] path = stochastic_physics - url = https://github.com/noaa-psd/stochastic_physics - branch = master + #url = https://github.com/noaa-psd/stochastic_physics + #branch = master + url = https://github.com/DusanJovic-NOAA/stochastic_physics + branch = no_arg_mismatch [submodule "CMakeModules"] path = CMakeModules url = https://github.com/NOAA-EMC/CMakeModules diff --git a/FV3 b/FV3 index 2b988fe191..b1ff97ab9a 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 2b988fe191cc0dd9bf17f447a48654925f2c3509 +Subproject commit b1ff97ab9aec7ae2231e42ecc92ef7f1dd655ba4 From 3e445e20a2d4260c886725901e7d61972f02077b Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Thu, 24 Mar 2022 14:49:45 +0000 Subject: [PATCH 02/76] Resolve argument mismatch errors when using gfortran --- CICE-interface/CMakeLists.txt | 205 +++++++++++++++++---------------- CMEPS-interface/CMakeLists.txt | 1 - FV3 | 2 +- cmake/GNU.cmake | 10 +- stochastic_physics | 2 +- 5 files changed, 109 insertions(+), 111 deletions(-) diff --git a/CICE-interface/CMakeLists.txt b/CICE-interface/CMakeLists.txt index 3dd4d055a1..081f09a92d 100644 --- a/CICE-interface/CMakeLists.txt +++ b/CICE-interface/CMakeLists.txt @@ -1,101 +1,104 @@ -### CICE Fortran compiler flags -if(CMAKE_Fortran_COMPILER_ID MATCHES "GNU") - set(CMAKE_Fortran_FLAGS "-g -fbacktrace") - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fconvert=big-endian -ffree-line-length-none ") - 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 "-g -traceback") - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -FR -convert big_endian -assume byterecl -ftz -align array64byte -xHOST") - 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 "-g") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS}") - 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 "-g -traceback") - set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -xHOST") - 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 "-g") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS}") - 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 "NetCDF" 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}) - -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() - -############################################################################### -### 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 "-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 "-g -traceback") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -FR -convert big_endian -assume byterecl -ftz -align array64byte -xHOST") + 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 "-g") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS}") + 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 "-g -traceback") + set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -xHOST") + 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 "-g") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS}") + 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 "NetCDF" 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}) + +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() + +############################################################################### +### Install +############################################################################### + +install( + TARGETS cice + EXPORT cice-config + LIBRARY DESTINATION lib + ARCHIVE DESTINATION lib + COMPONENT Library) + +install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod DESTINATION ${CMAKE_INSTALL_PREFIX}/CICE) + +install(EXPORT cice-config + DESTINATION lib/cmake) diff --git a/CMEPS-interface/CMakeLists.txt b/CMEPS-interface/CMakeLists.txt index 60104f0dc5..94a08b9ede 100644 --- a/CMEPS-interface/CMakeLists.txt +++ b/CMEPS-interface/CMakeLists.txt @@ -4,7 +4,6 @@ if(CMAKE_Fortran_COMPILER_ID MATCHES "GNU") 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 "${CMAKE_Fortran_FLAGS}") 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 "") diff --git a/FV3 b/FV3 index b1ff97ab9a..a8edc94d05 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit b1ff97ab9aec7ae2231e42ecc92ef7f1dd655ba4 +Subproject commit a8edc94d052f9f2121ec6f1a0be4ade661b2d526 diff --git a/cmake/GNU.cmake b/cmake/GNU.cmake index 039e9f9b72..fe2538adcf 100644 --- a/cmake/GNU.cmake +++ b/cmake/GNU.cmake @@ -1,9 +1,5 @@ set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -ggdb -fbacktrace -cpp -fcray-pointer -ffree-line-length-none -fno-range-check") -if(${CMAKE_Fortran_COMPILER_VERSION} VERSION_GREATER_EQUAL 10) - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fallow-argument-mismatch -fallow-invalid-boz") -endif() - if(NOT 32BIT) set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fdefault-real-8 -fdefault-double-8") endif() @@ -27,9 +23,9 @@ else() endif() # For ccpp -set(CMAKE_C_FLAGS_RELEASE "-O2 -fPIC" CACHE STRING "" FORCE) -set(CMAKE_CXX_FLAGS_RELEASE "-O2 -fPIC" CACHE STRING "" FORCE) -set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -fPIC" CACHE STRING "" FORCE) +set(CMAKE_C_FLAGS_RELEASE "-O2 -fPIC" CACHE STRING "" FORCE) +set(CMAKE_CXX_FLAGS_RELEASE "-O2 -fPIC" CACHE STRING "" FORCE) +set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -fPIC" CACHE STRING "" FORCE) set(CMAKE_C_FLAGS_BITFORBIT "-O2 -fPIC" CACHE STRING "" FORCE) set(CMAKE_CXX_FLAGS_BITFORBIT "-O2 -fPIC" CACHE STRING "" FORCE) set(CMAKE_Fortran_FLAGS_BITFORBIT "-O2 -fPIC" CACHE STRING "" FORCE) diff --git a/stochastic_physics b/stochastic_physics index 00d063ed99..5dc8f66fd0 160000 --- a/stochastic_physics +++ b/stochastic_physics @@ -1 +1 @@ -Subproject commit 00d063ed991a1ca0d0705634366beadbff063345 +Subproject commit 5dc8f66fd06b2419b91686a37364905be4c40e80 From 50cef09bd9b853b3ebf791f0c6c91892761d8e5b Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Tue, 29 Mar 2022 13:43:41 +0000 Subject: [PATCH 03/76] Update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index a8edc94d05..fa198bddbb 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit a8edc94d052f9f2121ec6f1a0be4ade661b2d526 +Subproject commit fa198bddbb9ea0e1552fea8d8bbca3b3085fa44a From eef2070af0145be48dc5771869ec9ad52a15e92a Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Tue, 14 Jun 2022 14:44:43 +0000 Subject: [PATCH 04/76] Update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 0bf32da342..20592a5d82 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 0bf32da34274f14b143f42d950c4350dc624868a +Subproject commit 20592a5d826367c74017b22915f3c14d14bec135 From 47f446b93deb5fda23dc4b3f5ea1a76f2f189fcc Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Tue, 5 Jul 2022 19:35:42 +0000 Subject: [PATCH 05/76] update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 20592a5d82..e68681b13c 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 20592a5d826367c74017b22915f3c14d14bec135 +Subproject commit e68681b13ca7fbdf2a0c9d8c7044acfc313180c6 From 65ef6f8ad128ba63e280704e82cb38e411c121a1 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Tue, 19 Jul 2022 18:01:49 +0000 Subject: [PATCH 06/76] update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index e68681b13c..2c53d1a641 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit e68681b13ca7fbdf2a0c9d8c7044acfc313180c6 +Subproject commit 2c53d1a6418749b2924e9c03d1a5f4441479ddcf From 1fcbe2950879b0994e5d30e24711aae6169e73a3 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Tue, 19 Jul 2022 18:04:28 +0000 Subject: [PATCH 07/76] update stochastic_physics --- stochastic_physics | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stochastic_physics b/stochastic_physics index c402cf921c..827b6a5105 160000 --- a/stochastic_physics +++ b/stochastic_physics @@ -1 +1 @@ -Subproject commit c402cf921cb04abfb6d06a7b9ae5152b647f30de +Subproject commit 827b6a5105be410337a58de217b15e30a4722542 From 65df0f1b1c05372d9afae10ccb815a2c0b454faa Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Tue, 19 Jul 2022 21:16:32 +0000 Subject: [PATCH 08/76] update FV3 --- AQM | 2 +- FV3 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/AQM b/AQM index 9fd5978c74..73da18b422 160000 --- a/AQM +++ b/AQM @@ -1 +1 @@ -Subproject commit 9fd5978c748de6e753de1f0663d28a2f70a1d480 +Subproject commit 73da18b422c2b2dcf1e15a1d21fbba12a0479059 diff --git a/FV3 b/FV3 index 2c53d1a641..cc78bf1e70 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 2c53d1a6418749b2924e9c03d1a5f4441479ddcf +Subproject commit cc78bf1e7074201a9c56c22306d78d82398509c0 From dc8a5fc99ba8dea1a7ce3cafbd803d5bd2625fe4 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Wed, 20 Jul 2022 11:50:12 -0500 Subject: [PATCH 09/76] update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index cc78bf1e70..65f85271d6 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit cc78bf1e7074201a9c56c22306d78d82398509c0 +Subproject commit 65f85271d6be08ba2ab89db4dc785f09f5e7c4b8 From 489297c637f03fb7cd4fd22ce5c3a6f9d90f86f6 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Wed, 10 Aug 2022 17:41:40 +0000 Subject: [PATCH 10/76] update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 65f85271d6..c794167e83 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 65f85271d6be08ba2ab89db4dc785f09f5e7c4b8 +Subproject commit c794167e83c172bbc40d7382498a724c0190ee0a From 4c2cf8c21d711a93beb10d921bdff329bd9003ad Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Wed, 28 Sep 2022 14:13:01 +0000 Subject: [PATCH 11/76] Update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index c794167e83..eda17e08eb 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit c794167e83c172bbc40d7382498a724c0190ee0a +Subproject commit eda17e08ebf1aaeec8d328e1766432d235065481 From b9744af7cc7252f33635f5c4487171ccb696aedc Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Wed, 28 Sep 2022 14:13:55 +0000 Subject: [PATCH 12/76] Update stochastic_physics --- stochastic_physics | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stochastic_physics b/stochastic_physics index 827b6a5105..06f7d84dce 160000 --- a/stochastic_physics +++ b/stochastic_physics @@ -1 +1 @@ -Subproject commit 827b6a5105be410337a58de217b15e30a4722542 +Subproject commit 06f7d84dcecd71d4d72d3255dcb21167eb99f464 From 4d8cee7a6de78dae49cbdd0f2572eb7597c88ce2 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Wed, 28 Sep 2022 15:26:13 +0000 Subject: [PATCH 13/76] update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index eda17e08eb..32d30e47cb 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit eda17e08ebf1aaeec8d328e1766432d235065481 +Subproject commit 32d30e47cbd956e2bca9f28b210aa642f5135c42 From 28919f1f48f3adf4ab4d7015752d475cad8f8110 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Thu, 13 Oct 2022 15:43:26 -0500 Subject: [PATCH 14/76] Update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 32d30e47cb..1da7ce1c9e 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 32d30e47cbd956e2bca9f28b210aa642f5135c42 +Subproject commit 1da7ce1c9e21b59ae2eed1c0f5f04949bca21649 From 4520d99929fe420b7133c992a92657be58b02e28 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Mon, 17 Oct 2022 16:48:18 +0000 Subject: [PATCH 15/76] Update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 1da7ce1c9e..9fa264e1d9 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 1da7ce1c9e21b59ae2eed1c0f5f04949bca21649 +Subproject commit 9fa264e1d94a2c62372bf37b16d1300c35a3c514 From fd8b682aa1e5b6da64af8b878311c0946dd427e9 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Mon, 7 Nov 2022 17:29:40 +0000 Subject: [PATCH 16/76] Update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 9fa264e1d9..aff6aa2efe 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 9fa264e1d94a2c62372bf37b16d1300c35a3c514 +Subproject commit aff6aa2efe37262447c5be09a1c97dfca8976c13 From 16e6ec085dcc2462d1b16bf5db0559d18a7a97c0 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Mon, 7 Nov 2022 11:23:05 -0700 Subject: [PATCH 17/76] Update submodule pointer for CMakeModules --- CMakeModules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeModules b/CMakeModules index cedeb2c64e..cabd7753ae 160000 --- a/CMakeModules +++ b/CMakeModules @@ -1 +1 @@ -Subproject commit cedeb2c64e55d3445ac4e4847ea7c4fa3220c3dd +Subproject commit cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 From b662de248455aa354f4eb16cfc45665e9939dccb Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Mon, 7 Nov 2022 11:38:09 -0700 Subject: [PATCH 18/76] Update .gitmodules and submodule pointer for FV3 --- .gitmodules | 10 ++++++---- FV3 | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.gitmodules b/.gitmodules index cfac4e4e97..7ed8883f19 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,9 +1,11 @@ [submodule "FV3"] path = FV3 - #url = https://github.com/NOAA-EMC/fv3atm - #branch = develop - url = https://github.com/DusanJovic-NOAA/fv3atm - branch = no_arg_mismatch + ##url = https://github.com/NOAA-EMC/fv3atm + ##branch = develop + #url = https://github.com/DusanJovic-NOAA/fv3atm + #branch = no_arg_mismatch + url = https://github.com/climbfuji/fv3atm + branch = feature/no_arg_mismatch_dom [submodule "WW3"] path = WW3 url = https://github.com/NOAA-EMC/WW3 diff --git a/FV3 b/FV3 index 9fa264e1d9..6b7fea8a4b 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 9fa264e1d94a2c62372bf37b16d1300c35a3c514 +Subproject commit 6b7fea8a4b82cb7f5ee19a6656918aa448923942 From 63f9b1bba4d13c2f24f8977a3d3164a36e2c5f25 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Mon, 7 Nov 2022 11:41:46 -0700 Subject: [PATCH 19/76] Also find shared PIO libraries --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b31fc1044c..80f118da41 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -127,7 +127,7 @@ if(FMS) endif() endif() if(CMEPS) - find_package(PIO 2.5.3 REQUIRED COMPONENTS C Fortran STATIC) + find_package(PIO 2.5.3 REQUIRED COMPONENTS C Fortran) endif() find_package(bacio 2.4.0 REQUIRED) From 2a000bca73af3cc3553c684382031724a7e59d4f Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Mon, 7 Nov 2022 11:42:01 -0700 Subject: [PATCH 20/76] Update modulefiles/ufs_cheyenne.gnu.lua, modulefiles/ufs_cheyenne.gnu_debug.lua, tests/fv3_conf/fv3_qsub.IN_cheyenne --- modulefiles/ufs_cheyenne.gnu.lua | 42 +++++++++----------------- modulefiles/ufs_cheyenne.gnu_debug.lua | 42 +++++++++----------------- tests/fv3_conf/fv3_qsub.IN_cheyenne | 2 +- 3 files changed, 29 insertions(+), 57 deletions(-) mode change 100644 => 100755 tests/fv3_conf/fv3_qsub.IN_cheyenne diff --git a/modulefiles/ufs_cheyenne.gnu.lua b/modulefiles/ufs_cheyenne.gnu.lua index 7e963b41d7..5e026f5528 100644 --- a/modulefiles/ufs_cheyenne.gnu.lua +++ b/modulefiles/ufs_cheyenne.gnu.lua @@ -2,38 +2,24 @@ help([[ loads UFS Model prerequisites for Cheyenne/GNU ]]) -cmake_ver=os.getenv("cmake_ver") or "3.22.0" -load(pathJoin("cmake", cmake_ver)) +-- Fix module setup on Cheyenne +remove_path ("MODULEPATH", "/glade/u/apps/ch/modulefiles/default/compilers") +setenv("MODULEPATH_ROOT", "/glade/work/jedipara/cheyenne/spack-stack/modulefiles") -python_ver=os.getenv("python_ver") or "3.7.9" -load(pathJoin("python", python_ver)) +-- Load spack-stack modules +prepend_path("MODULEPATH", "/glade/work/jedipara/cheyenne/spack-stack/modulefiles/compilers") +prepend_path("MODULEPATH", "/glade/work/jedipara/cheyenne/spack-stack/modulefiles/misc") +prepend_path("MODULEPATH", "/glade/work/jedipara/cheyenne/spack-stack/spack-stack-v1/envs/skylab-2.0.0-plus-ufs-gnu-10.1.0/install/modulefiles/Core") -ncarenv_ver=os.getenv("ncarenv_ver") or "1.3" -load(pathJoin("ncarenv", ncarenv_ver)) +load("miniconda/3.9.12") +load("ecflow/5.8.4") -gnu_ver=os.getenv("gnu_ver") or "10.1.0" -load(pathJoin("gnu", gnu_ver)) +load("stack-gcc/10.1.0") +load("stack-openmpi/4.1.1") +load("stack-python/3.9.12") -mpt_ver=os.getenv("mpt_ver") or "2.22" -load(pathJoin("mpt", mpt_ver)) - -ncarcompilers_ver=os.getenv("ncarcompilers_ver") or "0.5.0" -load(pathJoin("ncarcompilers", ncarcompilers_ver)) - -unload("netcdf") - -prepend_path("MODULEPATH", "/glade/work/epicufsrt/GMTB/tools/gnu/10.1.0/hpc-stack-v1.2.0/modulefiles/stack") - -hpc_ver=os.getenv("hpc_ver") or "1.2.0" -load(pathJoin("hpc", hpc_ver)) - -hpc_gnu_ver=os.getenv("hpc_gnu_ver") or "10.1.0" -load(pathJoin("hpc-gnu", hpc_gnu_ver)) - -hpc_mpt_ver=os.getenv("hpc_mpt_ver") or "2.22" -load(pathJoin("hpc-mpt", hpc_mpt_ver)) - -load("ufs_common") +load("ufs-weather-model-env/1.0.0") +load("w3emc/2.9.2") setenv("CC", "mpicc") setenv("CXX", "mpicxx") diff --git a/modulefiles/ufs_cheyenne.gnu_debug.lua b/modulefiles/ufs_cheyenne.gnu_debug.lua index 6c6f12dac7..e824556328 100644 --- a/modulefiles/ufs_cheyenne.gnu_debug.lua +++ b/modulefiles/ufs_cheyenne.gnu_debug.lua @@ -2,38 +2,24 @@ help([[ loads UFS Model prerequisites for Cheyenne/GNU ]]) -cmake_ver=os.getenv("cmake_ver") or "3.22.0" -load(pathJoin("cmake", cmake_ver)) +-- Fix module setup on Cheyenne +remove_path ("MODULEPATH", "/glade/u/apps/ch/modulefiles/default/compilers") +setenv("MODULEPATH_ROOT", "/glade/work/jedipara/cheyenne/spack-stack/modulefiles") -python_ver=os.getenv("python_ver") or "3.7.9" -load(pathJoin("python", python_ver)) +-- Load spack-stack modules +prepend_path("MODULEPATH", "/glade/work/jedipara/cheyenne/spack-stack/modulefiles/compilers") +prepend_path("MODULEPATH", "/glade/work/jedipara/cheyenne/spack-stack/modulefiles/misc") +prepend_path("MODULEPATH", "/glade/work/jedipara/cheyenne/spack-stack/spack-stack-v1/envs/skylab-2.0.0-plus-ufs-gnu-10.1.0/install/modulefiles/Core") -ncarenv_ver=os.getenv("ncarenv_ver") or "1.3" -load(pathJoin("ncarenv", ncarenv_ver)) +load("miniconda/3.9.12") +load("ecflow/5.8.4") -gnu_ver=os.getenv("gnu_ver") or "10.1.0" -load(pathJoin("gnu", gnu_ver)) +load("stack-gcc/10.1.0") +load("stack-openmpi/4.1.1") +load("stack-python/3.9.12") -mpt_ver=os.getenv("mpt_ver") or "2.22" -load(pathJoin("mpt", mpt_ver)) - -ncarcompilers_ver=os.getenv("ncarcompilers_ver") or "0.5.0" -load(pathJoin("ncarcompilers", ncarcompilers_ver)) - -unload("netcdf") - -prepend_path("MODULEPATH", "/glade/work/epicufsrt/GMTB/tools/gnu/10.1.0/hpc-stack-v1.2.0/modulefiles/stack") - -hpc_ver=os.getenv("hpc_ver") or "1.2.0" -load(pathJoin("hpc", hpc_ver)) - -hpc_gnu_ver=os.getenv("hpc_gnu_ver") or "10.1.0" -load(pathJoin("hpc-gnu", hpc_gnu_ver)) - -hpc_mpt_ver=os.getenv("hpc_mpt_ver") or "2.22" -load(pathJoin("hpc-mpt", hpc_mpt_ver)) - -load("ufs_common_debug") +load("ufs-weather-model-env/1.0.0-debug") +load("w3emc/2.9.2") setenv("CC", "mpicc") setenv("CXX", "mpicxx") diff --git a/tests/fv3_conf/fv3_qsub.IN_cheyenne b/tests/fv3_conf/fv3_qsub.IN_cheyenne old mode 100644 new mode 100755 index a874742018..75726d566a --- a/tests/fv3_conf/fv3_qsub.IN_cheyenne +++ b/tests/fv3_conf/fv3_qsub.IN_cheyenne @@ -30,7 +30,7 @@ export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" # Avoid job errors because of filesystem synchronization delays sync && sleep 1 -mpiexec_mpt -p %g: -np @[TASKS] ./fv3.exe +mpiexec --tag-output -np @[TASKS] ./fv3.exe echo "Model ended: " `date` echo -n " $( date +%s )," >> job_timestamp.txt From 5dee80dffe9b7f6e384e8c40a50af86e4a4eee2f Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Mon, 7 Nov 2022 13:15:54 -0700 Subject: [PATCH 21/76] Remove lmod reinit for Cheyenne in tests/module-setup.sh --- tests/module-setup.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/module-setup.sh b/tests/module-setup.sh index 34767e40a7..379b09972a 100755 --- a/tests/module-setup.sh +++ b/tests/module-setup.sh @@ -39,9 +39,6 @@ elif [[ $MACHINE_ID = wcoss2* || $MACHINE_ID = acorn* ]] ; then elif [[ $MACHINE_ID = cheyenne* ]] ; then # We are on NCAR Cheyenne - if ( ! eval module help > /dev/null 2>&1 ) ; then - source /glade/u/apps/ch/modulefiles/default/localinit/localinit.sh - fi module purge elif [[ $MACHINE_ID = stampede* ]] ; then From 5204f2f1290f9d9f6436ad12bbf55eae7dceb9b7 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Mon, 7 Nov 2022 14:18:18 -0700 Subject: [PATCH 22/76] Changes to tests/compile.sh tests/module-setup.sh for cheyenne.gnu with spack-stack --- tests/compile.sh | 4 ++++ tests/module-setup.sh | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/tests/compile.sh b/tests/compile.sh index 001a1cfea2..39ce715379 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -60,6 +60,10 @@ else if [[ $MACHINE_ID == gaea.* ]] ; then source /lustre/f2/pdata/esrl/gsd/contrib/lua-5.1.4.9/init/init_lmod.sh fi + # Needed for spack-stack + if [[ $MACHINE_ID == cheyenne.gnu ]] ; then + module purge + fi # Load fv3 module module use $PATHTR/modulefiles modulefile="ufs_${MACHINE_ID}" diff --git a/tests/module-setup.sh b/tests/module-setup.sh index 379b09972a..feed2256f6 100755 --- a/tests/module-setup.sh +++ b/tests/module-setup.sh @@ -39,6 +39,11 @@ elif [[ $MACHINE_ID = wcoss2* || $MACHINE_ID = acorn* ]] ; then elif [[ $MACHINE_ID = cheyenne* ]] ; then # We are on NCAR Cheyenne + if [[ $MACHINE_ID == cheyenne.intel ]] ; then + if ( ! eval module help > /dev/null 2>&1 ) ; then + source /glade/u/apps/ch/modulefiles/default/localinit/localinit.sh + fi + fi module purge elif [[ $MACHINE_ID = stampede* ]] ; then From 78e495e04c25bd8b806e509d9a33dc935ff21025 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Mon, 7 Nov 2022 22:46:34 +0000 Subject: [PATCH 23/76] Update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index aff6aa2efe..2c5e14f39e 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit aff6aa2efe37262447c5be09a1c97dfca8976c13 +Subproject commit 2c5e14f39ead21bb79220c1cec020e7f0ddfd420 From 08e3b4c8bdb9e765621ae7297173d6102a3981f4 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Mon, 7 Nov 2022 21:02:34 -0700 Subject: [PATCH 24/76] Revert .gitmodules --- .gitmodules | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.gitmodules b/.gitmodules index e6372a8a58..607e4e0a4c 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,11 +1,9 @@ [submodule "FV3"] path = FV3 - ##url = https://github.com/NOAA-EMC/fv3atm - ##branch = develop - #url = https://github.com/DusanJovic-NOAA/fv3atm - #branch = no_arg_mismatch - url = https://github.com/climbfuji/fv3atm - branch = feature/no_arg_mismatch_dom + #url = https://github.com/NOAA-EMC/fv3atm + #branch = develop + url = https://github.com/DusanJovic-NOAA/fv3atm + branch = no_arg_mismatch [submodule "WW3"] path = WW3 url = https://github.com/NOAA-EMC/WW3 From 67a020672ab50ba2bf7987e55e0085b9954c5a79 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Mon, 7 Nov 2022 21:09:17 -0700 Subject: [PATCH 25/76] Update ecflow on Cheyenne for rt.sh --- tests/rt.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tests/rt.sh b/tests/rt.sh index d0b83438b3..9f256e9ffa 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -308,9 +308,12 @@ elif [[ $MACHINE_ID = s4.* ]]; then elif [[ $MACHINE_ID = cheyenne.* ]]; then - export PATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/bin:/glade/p/ral/jntp/tools/miniconda3/4.8.3/bin:$PATH - export PYTHONPATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/glade/p/ral/jntp/tools/miniconda3/4.8.3/lib/python3.8/site-packages - ECFLOW_START=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/bin/ecflow_start.sh + #export PATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/bin:/glade/p/ral/jntp/tools/miniconda3/4.8.3/bin:$PATH + #export PYTHONPATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/glade/p/ral/jntp/tools/miniconda3/4.8.3/lib/python3.8/site-packages + module use /glade/work/jedipara/cheyenne/spack-stack/modulefiles/misc + module load miniconda/3.9.12 + module load ecflow/5.8.4 + ECFLOW_START=`which ecflow_start.sh` ECF_PORT=$(( $(id -u) + 1500 )) QUEUE=regular From ba9b6e0cd9eaa3daa98e61955c4f4008e7a51001 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Mon, 7 Nov 2022 21:10:06 -0700 Subject: [PATCH 26/76] Remove executable permission from tests/fv3_conv/fv3_qsub.IN_cheyenne --- tests/fv3_conf/fv3_qsub.IN_cheyenne | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 tests/fv3_conf/fv3_qsub.IN_cheyenne diff --git a/tests/fv3_conf/fv3_qsub.IN_cheyenne b/tests/fv3_conf/fv3_qsub.IN_cheyenne old mode 100755 new mode 100644 From cabc22fc244d2add95446dd54ac2380ca92bbd8d Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Tue, 8 Nov 2022 22:24:03 +0000 Subject: [PATCH 27/76] Update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 2c5e14f39e..61caea912f 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 2c5e14f39ead21bb79220c1cec020e7f0ddfd420 +Subproject commit 61caea912fb39c7371d126aa0b667f413005c457 From 4f840c6b1db8870f2c53d4731f6ed9eb9b4c69c3 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Fri, 18 Nov 2022 21:00:31 +0000 Subject: [PATCH 28/76] update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 61caea912f..14db1f89aa 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 61caea912fb39c7371d126aa0b667f413005c457 +Subproject commit 14db1f89aae10f569e1dc9c57251f67bc10a8721 From 250d17a8d30e0460f604aee10f86a2a1559c56f1 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Thu, 15 Dec 2022 14:27:12 +0000 Subject: [PATCH 29/76] Update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 14db1f89aa..d237d4ef2a 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 14db1f89aae10f569e1dc9c57251f67bc10a8721 +Subproject commit d237d4ef2af8e5a3063d4f71384342650286c796 From 93b7ce132fca4410f9c3e684a6b60a0d904bcfbd Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Fri, 30 Dec 2022 18:27:01 +0000 Subject: [PATCH 30/76] Update FV3 and stochastic_physics --- FV3 | 2 +- stochastic_physics | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/FV3 b/FV3 index d237d4ef2a..90522ef779 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit d237d4ef2af8e5a3063d4f71384342650286c796 +Subproject commit 90522ef779631ee8d09570b8f19ffb997ba8aeae diff --git a/stochastic_physics b/stochastic_physics index 06f7d84dce..91cfe21200 160000 --- a/stochastic_physics +++ b/stochastic_physics @@ -1 +1 @@ -Subproject commit 06f7d84dcecd71d4d72d3255dcb21167eb99f464 +Subproject commit 91cfe212008016e86a70ae19c0d69351ba8bbcdd From 63d2df7acbfd30c0aa570f8493697716e257c2c7 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Thu, 16 Mar 2023 15:08:26 +0000 Subject: [PATCH 31/76] Update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 90522ef779..73126de48f 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 90522ef779631ee8d09570b8f19ffb997ba8aeae +Subproject commit 73126de48fd03dd92a4150e0d00f6ed0d38fcc6a From 217845591dd07354aa33a432b3c20c944a27a659 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Thu, 16 Mar 2023 17:47:02 +0000 Subject: [PATCH 32/76] Update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 73126de48f..a33c14e4af 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 73126de48fd03dd92a4150e0d00f6ed0d38fcc6a +Subproject commit a33c14e4af00d90d453eabe76ed12f123e783a8c From f2e809b18a1107a2b94f9b54bd8207b9c8c0d248 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Wed, 29 Mar 2023 17:35:37 +0000 Subject: [PATCH 33/76] Update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index a33c14e4af..ec39f19bae 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit a33c14e4af00d90d453eabe76ed12f123e783a8c +Subproject commit ec39f19bae7328abc7efc1eeb39e4e8777162c68 From a8d6ad4ffcc70f9dda18ce957f94794177dcb68f Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Thu, 30 Mar 2023 12:36:29 +0000 Subject: [PATCH 34/76] Update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index ec39f19bae..e49985e27a 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit ec39f19bae7328abc7efc1eeb39e4e8777162c68 +Subproject commit e49985e27a93fb53b940daaf939551d4ca31d646 From 63753a8ef8f7aae8a39c64b85509c99ead771644 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Wed, 26 Apr 2023 12:43:43 +0000 Subject: [PATCH 35/76] Update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index e49985e27a..45d7302961 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit e49985e27a93fb53b940daaf939551d4ca31d646 +Subproject commit 45d73029615931f2d8ee874deea834794ac7abe2 From 93806a64e07f498388682e4701bb364550325101 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Wed, 26 Apr 2023 14:16:28 +0000 Subject: [PATCH 36/76] Print MPI Library version in the main program --- driver/UFS.F90 | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/driver/UFS.F90 b/driver/UFS.F90 index a180578883..10b1b7bcbc 100644 --- a/driver/UFS.F90 +++ b/driver/UFS.F90 @@ -79,6 +79,9 @@ PROGRAM UFS TYPE(ESMF_Config) :: CF_MAIN !<-- The Configure object ! CHARACTER(ESMF_MAXSTR) :: MESSAGE_CHECK +! + CHARACTER(len=MPI_MAX_LIBRARY_VERSION_STRING) :: library_version + INTEGER :: resultlen ! INTEGER :: RC, RC_USER !<-- The running error signal ! @@ -122,7 +125,12 @@ PROGRAM UFS !*** Print subversion version and other status information. !----------------------------------------------------------------------- ! - if (mype==0) call w3tagb('ufs ',0000,0000,0000,'np23 ') + if (mype == 0) then + call w3tagb('ufs-weather-model',0,0,0,'np23') + 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 + endif ! !----------------------------------------------------------------------- !*** Set up the default log. From dcfa818a9985d6727fd1d84ff2f998293b090c11 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Thu, 4 May 2023 13:10:12 +0000 Subject: [PATCH 37/76] Update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 45d7302961..cfeee46be3 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 45d73029615931f2d8ee874deea834794ac7abe2 +Subproject commit cfeee46be32e30fb10ced6d8fcf6b9b66d40ae36 From da77c36cdfed79f169899fe9aaf93b03b06b9105 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Thu, 8 Jun 2023 12:40:04 +0000 Subject: [PATCH 38/76] Update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index cfeee46be3..b4fc2a0367 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit cfeee46be32e30fb10ced6d8fcf6b9b66d40ae36 +Subproject commit b4fc2a03674ed37d56018be63cab7931da191b16 From 840a0138ff10e460cb2644cce239ed0fd2af4a9e Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Tue, 13 Jun 2023 13:43:17 +0000 Subject: [PATCH 39/76] Update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index b4fc2a0367..fd09660c9b 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit b4fc2a03674ed37d56018be63cab7931da191b16 +Subproject commit fd09660c9b0c4c35434e136bf0109e3984c5b790 From a1e8e361a17c2c29418abdd4b031dd055b4541e0 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Fri, 4 Aug 2023 15:49:07 +0000 Subject: [PATCH 40/76] Update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index fd09660c9b..d7d1748739 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit fd09660c9b0c4c35434e136bf0109e3984c5b790 +Subproject commit d7d1748739b9049c5e66258851c47f8a37a76936 From 58762d9bf56950d7b7bf16f4e428bc9420711d8e Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Mon, 28 Aug 2023 21:02:21 +0000 Subject: [PATCH 41/76] Update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index d7d1748739..87973ed879 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit d7d1748739b9049c5e66258851c47f8a37a76936 +Subproject commit 87973ed87910f296a4b1f4d556d8c6c157cff7c4 From ae6dfabc82a58dcd9d34cc2febbf7dc95cfaad98 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Wed, 6 Sep 2023 09:51:00 -0500 Subject: [PATCH 42/76] Update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 87973ed879..fe44a3f057 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 87973ed87910f296a4b1f4d556d8c6c157cff7c4 +Subproject commit fe44a3f05753aa1ac2574f02a63013ba817dc1e0 From f73ca6257bd90caaadd10b083037ade3a6a09751 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Wed, 6 Sep 2023 09:51:50 -0500 Subject: [PATCH 43/76] Update stochastic_physics --- stochastic_physics | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stochastic_physics b/stochastic_physics index 91cfe21200..a256065d3b 160000 --- a/stochastic_physics +++ b/stochastic_physics @@ -1 +1 @@ -Subproject commit 91cfe212008016e86a70ae19c0d69351ba8bbcdd +Subproject commit a256065d3be4bce98540265b5990e53f2870c3d8 From 07c9e6968b275c290f19581e89fb1ff980222721 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Fri, 15 Sep 2023 14:28:51 +0000 Subject: [PATCH 44/76] Update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index fe44a3f057..b8dd082b43 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit fe44a3f05753aa1ac2574f02a63013ba817dc1e0 +Subproject commit b8dd082b43e0189b3a18d11510bd02efd133be87 From 7751377c820e9791797ba264ca3f132ce3b05024 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Fri, 15 Sep 2023 14:31:17 +0000 Subject: [PATCH 45/76] Update stochastic_physics --- stochastic_physics | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stochastic_physics b/stochastic_physics index a256065d3b..2184936242 160000 --- a/stochastic_physics +++ b/stochastic_physics @@ -1 +1 @@ -Subproject commit a256065d3be4bce98540265b5990e53f2870c3d8 +Subproject commit 218493624271b26295df73d875370f3cbb457698 From 80c1492800267091d8b2bfa457be0044f866220c Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Mon, 18 Sep 2023 13:16:03 +0000 Subject: [PATCH 46/76] Update ufs_cheyenne.gnu.lua --- modulefiles/ufs_cheyenne.gnu.lua | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/modulefiles/ufs_cheyenne.gnu.lua b/modulefiles/ufs_cheyenne.gnu.lua index 7849bc3058..74f3ada97b 100644 --- a/modulefiles/ufs_cheyenne.gnu.lua +++ b/modulefiles/ufs_cheyenne.gnu.lua @@ -2,21 +2,17 @@ help([[ loads UFS Model prerequisites for Cheyenne/GNU ]]) --- Fix module setup on Cheyenne -remove_path ("MODULEPATH", "/glade/u/apps/ch/modulefiles/default/compilers") -setenv("MODULEPATH_ROOT", "/glade/work/jedipara/cheyenne/spack-stack/modulefiles") +cmake_ver=os.getenv("cmake_ver") or "3.22.0" +load(pathJoin("cmake", cmake_ver)) --- Load spack-stack modules -prepend_path("MODULEPATH", "/glade/work/jedipara/cheyenne/spack-stack/modulefiles/compilers") -prepend_path("MODULEPATH", "/glade/work/jedipara/cheyenne/spack-stack/modulefiles/misc") -prepend_path("MODULEPATH", "/glade/work/jedipara/cheyenne/spack-stack/spack-stack-v1/envs/skylab-2.0.0-plus-ufs-gnu-10.1.0/install/modulefiles/Core") +python_ver=os.getenv("python_ver") or "3.7.9" +load(pathJoin("python", python_ver)) -load("miniconda/3.9.12") -load("ecflow/5.8.4") +ncarenv_ver=os.getenv("ncarenv_ver") or "1.3" +load(pathJoin("ncarenv", ncarenv_ver)) -load("stack-gcc/10.1.0") -load("stack-openmpi/4.1.1") -load("stack-python/3.9.12") +gnu_ver=os.getenv("gnu_ver") or "10.1.0" +load(pathJoin("gnu", gnu_ver)) mpt_ver=os.getenv("mpt_ver") or "2.25" load(pathJoin("mpt", mpt_ver)) From 5c58f05a1a9064e7019c8439901744e2b724db68 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Tue, 19 Sep 2023 17:27:48 +0000 Subject: [PATCH 47/76] Update compile.sh and module-setup.sh from develop --- tests/compile.sh | 4 ---- tests/module-setup.sh | 6 ++---- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/tests/compile.sh b/tests/compile.sh index 92eeac9e58..34d9b79d9b 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -61,10 +61,6 @@ else if [[ $MACHINE_ID == gaea ]]; then source /lustre/f2/dev/role.epic/contrib/Lmod_init.sh fi - # Needed for spack-stack - if [[ $MACHINE_ID == cheyenne.gnu ]] ; then - module purge - fi # Load fv3 module module use $PATHTR/modulefiles modulefile="ufs_${MACHINE_ID}.${RT_COMPILER}" diff --git a/tests/module-setup.sh b/tests/module-setup.sh index 0215c2fca6..ed6dacec0d 100755 --- a/tests/module-setup.sh +++ b/tests/module-setup.sh @@ -39,10 +39,8 @@ elif [[ $MACHINE_ID = wcoss2 || $MACHINE_ID = acorn ]] ; then elif [[ $MACHINE_ID = cheyenne ]] ; then # We are on NCAR Cheyenne - if [[ $MACHINE_ID == cheyenne.intel ]] ; then - if ( ! eval module help > /dev/null 2>&1 ) ; then - source /glade/u/apps/ch/modulefiles/default/localinit/localinit.sh - fi + if ( ! eval module help > /dev/null 2>&1 ) ; then + source /glade/u/apps/ch/modulefiles/default/localinit/localinit.sh fi module purge From 0e0551ed45f9cd1fa6cfc1743b8a6c4e0f65cc0a Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Wed, 1 Nov 2023 13:10:36 +0000 Subject: [PATCH 48/76] Update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index b8dd082b43..a3f4f3b5bc 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit b8dd082b43e0189b3a18d11510bd02efd133be87 +Subproject commit a3f4f3b5bc068915136a5d20e90afdf9cf49b5ae From 504c2af2609abcf8931e5ba2f0404c99907bcffd Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Wed, 1 Nov 2023 13:11:42 +0000 Subject: [PATCH 49/76] Update stochastic_physics --- stochastic_physics | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stochastic_physics b/stochastic_physics index 2184936242..6a713a95e5 160000 --- a/stochastic_physics +++ b/stochastic_physics @@ -1 +1 @@ -Subproject commit 218493624271b26295df73d875370f3cbb457698 +Subproject commit 6a713a95e56f57afeb8c94f52c3e260ff1058d3d From fd8863d088f80affb7d7c598f36a991b7bda5d34 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Fri, 3 Nov 2023 11:55:29 -0500 Subject: [PATCH 50/76] Update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index a3f4f3b5bc..7e19af5d0a 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit a3f4f3b5bc068915136a5d20e90afdf9cf49b5ae +Subproject commit 7e19af5d0af421e3aace22284153dae597fa5f66 From 1319cf0552fe2cffe323a4fde8b97d04b957506d Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Fri, 3 Nov 2023 13:52:13 -0500 Subject: [PATCH 51/76] Update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 7e19af5d0a..d50e4d312d 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 7e19af5d0af421e3aace22284153dae597fa5f66 +Subproject commit d50e4d312d8b55bb9d9008e01c1f7c9d58187737 From 513d04253aa541f195bbad1e40e947795a56f3a7 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Mon, 18 Dec 2023 13:46:51 +0000 Subject: [PATCH 52/76] Update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index d50e4d312d..5627d62cdb 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit d50e4d312d8b55bb9d9008e01c1f7c9d58187737 +Subproject commit 5627d62cdbb6e89abde3575dcbf902cb2905bb86 From d680eab73bff6fa4186c10a2cf18f2ffb2cfdabb Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Thu, 4 Jan 2024 21:56:42 +0000 Subject: [PATCH 53/76] Update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 5627d62cdb..420e67beba 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 5627d62cdbb6e89abde3575dcbf902cb2905bb86 +Subproject commit 420e67beba33e9fcbc5f5e81e4070476b7730cc1 From 884961fab4218d1f2890513184141eca54bdab8b Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Thu, 4 Jan 2024 21:57:46 +0000 Subject: [PATCH 54/76] Update stochastic_physics --- stochastic_physics | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stochastic_physics b/stochastic_physics index 6a713a95e5..d6cc61888a 160000 --- a/stochastic_physics +++ b/stochastic_physics @@ -1 +1 @@ -Subproject commit 6a713a95e56f57afeb8c94f52c3e260ff1058d3d +Subproject commit d6cc61888a5fb8cd35e716a74eef20cf96afd9d8 From c08b7f959f1411ec86982ff1437e97c1e48a7d55 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Tue, 16 Jan 2024 19:33:45 +0000 Subject: [PATCH 55/76] Update FV3 and stochastic_physics --- FV3 | 2 +- stochastic_physics | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/FV3 b/FV3 index 420e67beba..107f35e6c7 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 420e67beba33e9fcbc5f5e81e4070476b7730cc1 +Subproject commit 107f35e6c722177edafcd720284b77008828c5b4 diff --git a/stochastic_physics b/stochastic_physics index d6cc61888a..520f70584a 160000 --- a/stochastic_physics +++ b/stochastic_physics @@ -1 +1 @@ -Subproject commit d6cc61888a5fb8cd35e716a74eef20cf96afd9d8 +Subproject commit 520f70584a37d706859be49d8b86fc01e816b6ea From 7967de00ad94411c5a307b0720bfcfaf64e7a26d Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Fri, 19 Jan 2024 17:07:31 +0000 Subject: [PATCH 56/76] Update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 107f35e6c7..af7380a162 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 107f35e6c722177edafcd720284b77008828c5b4 +Subproject commit af7380a162f83cdc1d7c317554199e1ce0260ff6 From 0b4dc0f943bc7ec19df9cf2313de21fdde6a6a11 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Wed, 7 Feb 2024 13:40:18 +0000 Subject: [PATCH 57/76] Update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index af7380a162..81425d8330 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit af7380a162f83cdc1d7c317554199e1ce0260ff6 +Subproject commit 81425d8330225dfa70184610c46a7558b504adec From bc30ad32ca54f5aa17e910ceeb508a6f87486279 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Wed, 7 Feb 2024 16:49:15 +0000 Subject: [PATCH 58/76] Update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 81425d8330..1859bdc927 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 81425d8330225dfa70184610c46a7558b504adec +Subproject commit 1859bdc92781b1944cbaca791c86875a247b26e0 From b9f0c3e2f870d025b11535ac1ef22189e942b9e1 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Wed, 7 Feb 2024 14:54:51 -0600 Subject: [PATCH 59/76] Update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 1859bdc927..64cdefe859 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 1859bdc92781b1944cbaca791c86875a247b26e0 +Subproject commit 64cdefe85951e82e56cf073fc0341ef93e62fb61 From 4ae108c4d31e7842b91fe317cb07e7b732686f29 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Mon, 26 Feb 2024 13:46:08 +0000 Subject: [PATCH 60/76] Update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 64cdefe859..663e179ba1 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 64cdefe85951e82e56cf073fc0341ef93e62fb61 +Subproject commit 663e179ba1e561bf68d15f2a5bec91c4b15b47bd From cca412e10aee8af43e4e7ab5f230b4d0f02074f1 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Tue, 27 Feb 2024 00:03:37 +0000 Subject: [PATCH 61/76] Update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 663e179ba1..b74599bee9 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 663e179ba1e561bf68d15f2a5bec91c4b15b47bd +Subproject commit b74599bee956ca14c33e917fe122e39dbdce78a3 From 1d0e135c9119ccb632c013e022e574277b63a036 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Mon, 18 Mar 2024 19:00:48 +0000 Subject: [PATCH 62/76] Update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index b74599bee9..5ef24e6280 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit b74599bee956ca14c33e917fe122e39dbdce78a3 +Subproject commit 5ef24e6280fb6fc7df685ba5f48917e83d46d177 From 159c8a9d745474fcfe0e2c2fb8ec0a11195f8827 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Mon, 18 Mar 2024 21:17:35 +0000 Subject: [PATCH 63/76] Regression test passed on Hera --- tests/logs/RegressionTests_hera.log | 727 ++++++++++++++-------------- tests/test_changes.list | 14 - 2 files changed, 363 insertions(+), 378 deletions(-) diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index ca2e3d2fc1..1205225b76 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -1345562a9e6c858e0b80292dab11cd23a0da902e +ba1d11b83d417702ff3cb008a21c042067675a27 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,13 +9,13 @@ Submodule hashes used in testing: 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-1412-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308) + 5ef24e6280fb6fc7df685ba5f48917e83d46d177 FV3 (heads/no_arg_mismatch) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) + 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705) NOTES: @@ -25,374 +25,373 @@ 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-20240315 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_5454 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_217014 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nems -* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:08, 12:06] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:26, 05:29](3102 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:10, 16:01] -PASS -- TEST 'cpld_control_gfsv17_intel' [20:04, 16:11](1707 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:16, 16:48](2010 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:07, 07:35](1112 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:00, 18:08](1633 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:07, 04:23] -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:01, 22:23](1671 MB) - -PASS -- COMPILE 's2swa_intel' [14:09, 12:14] -PASS -- TEST 'cpld_control_p8_intel' [09:28, 05:43](3189 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:39, 05:50](3148 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:28, 03:17](3240 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:28, 05:48](3214 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:26, 03:21](3251 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:24, 05:28](3534 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:24, 05:50](3178 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:27, 04:42](3049 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:36, 05:43](3186 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:22, 09:47](3279 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:41, 05:54](3566 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:57, 09:56](4097 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:15, 06:40](4327 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:29, 05:27](3154 MB) - -PASS -- COMPILE 's2sw_intel' [14:08, 11:42] -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:14, 04:38](1701 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:24, 04:22](1765 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:07, 04:23] -PASS -- TEST 'cpld_debug_p8_intel' [15:08, 08:04](3238 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:07, 03:59] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:04, 05:36](1749 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:09, 10:42] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:02, 04:26](1760 MB) - -PASS -- COMPILE 's2s_intel' [13:08, 10:44] -PASS -- TEST 'cpld_control_c48_intel' [11:41, 09:25](2833 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:10, 16:17] -PASS -- TEST 'cpld_control_p8_faster_intel' [09:13, 05:18](3195 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:10, 15:10] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:09, 16:17](1759 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:14, 07:38](1140 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:02, 18:34](1661 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:07, 04:05] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:22, 24:47](1686 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:08, 10:31] -PASS -- TEST 'control_flake_intel' [07:22, 03:25](689 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:24, 02:22](643 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:25, 02:32](651 MB) -PASS -- TEST 'control_latlon_intel' [05:21, 02:23](647 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:26, 02:26](623 MB) -PASS -- TEST 'control_c48_intel' [11:24, 06:13](872 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:24, 06:13](874 MB) -PASS -- TEST 'control_c192_intel' [10:39, 08:59](851 MB) -PASS -- TEST 'control_c384_intel' [13:29, 08:59](1274 MB) -PASS -- TEST 'control_c384gdas_intel' [13:53, 07:56](1385 MB) -PASS -- TEST 'control_stochy_intel' [05:19, 01:38](639 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:22, 00:58](497 MB) -PASS -- TEST 'control_lndp_intel' [04:17, 01:34](650 MB) -PASS -- TEST 'control_iovr4_intel' [05:21, 02:27](617 MB) -PASS -- TEST 'control_iovr5_intel' [05:20, 02:26](620 MB) -PASS -- TEST 'control_p8_intel' [06:02, 02:58](1616 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:06, 02:56](1599 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:59, 02:48](1620 MB) -PASS -- TEST 'control_restart_p8_intel' [04:47, 01:38](859 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:57, 02:52](1603 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:55, 01:37](925 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:54, 02:58](1605 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:49, 02:43](1707 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:48, 05:09](1617 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:51, 03:48](1647 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:54, 02:58](1621 MB) -PASS -- TEST 'merra2_thompson_intel' [05:53, 03:26](1615 MB) -PASS -- TEST 'regional_control_intel' [07:35, 05:06](849 MB) -PASS -- TEST 'regional_restart_intel' [05:38, 02:45](1006 MB) -PASS -- TEST 'regional_decomp_intel' [07:39, 05:31](815 MB) -PASS -- TEST 'regional_2threads_intel' [05:44, 03:10](847 MB) -PASS -- TEST 'regional_noquilt_intel' [07:40, 05:02](1361 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:43, 05:03](851 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:38, 05:09](829 MB) -PASS -- TEST 'regional_wofs_intel' [10:41, 06:38](1882 MB) - -PASS -- COMPILE 'rrfs_intel' [13:07, 09:45] -PASS -- TEST 'rap_control_intel' [10:34, 07:44](1089 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:09, 04:09](1290 MB) -PASS -- TEST 'rap_decomp_intel' [11:35, 08:04](1022 MB) -PASS -- TEST 'rap_2threads_intel' [09:39, 07:17](1184 MB) -PASS -- TEST 'rap_restart_intel' [05:40, 03:59](1096 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:42, 07:42](1099 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:35, 08:06](1028 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:41, 05:46](1104 MB) -PASS -- TEST 'hrrr_control_intel' [07:33, 03:58](994 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:32, 04:08](1027 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:36, 03:36](1109 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:24, 02:09](996 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:43, 07:33](1087 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:26, 09:06](1988 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:31, 08:52](2059 MB) - -PASS -- COMPILE 'csawmg_intel' [13:07, 09:30] -PASS -- TEST 'control_csawmg_intel' [08:39, 06:11](707 MB) -PASS -- TEST 'control_csawmgt_intel' [08:43, 05:55](716 MB) -PASS -- TEST 'control_ras_intel' [05:20, 03:17](731 MB) - -PASS -- COMPILE 'csawmg_gnu' [06:07, 03:28] -PASS -- TEST 'control_csawmg_gnu' [11:40, 08:48](586 MB) -PASS -- TEST 'control_csawmgt_gnu' [11:38, 08:40](586 MB) - -PASS -- COMPILE 'wam_intel' [11:07, 09:03] -PASS -- TEST 'control_wam_intel' [04:19, 02:02](644 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:07, 09:50] -PASS -- TEST 'control_p8_faster_intel' [05:50, 02:41](1592 MB) -PASS -- TEST 'regional_control_faster_intel' [06:39, 04:41](821 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:06, 04:16] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:22, 02:40](807 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:25, 02:34](813 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:18, 03:00](781 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:17, 02:42](816 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:35, 04:07](857 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [05:36, 04:00](856 MB) -PASS -- TEST 'control_ras_debug_intel' [04:17, 02:43](792 MB) -PASS -- TEST 'control_diag_debug_intel' [04:28, 02:47](865 MB) -PASS -- TEST 'control_debug_p8_intel' [04:36, 02:45](1635 MB) -PASS -- TEST 'regional_debug_intel' [18:38, 16:35](836 MB) -PASS -- TEST 'rap_control_debug_intel' [06:20, 04:42](1192 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:18, 04:38](1202 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:19, 04:48](1189 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:19, 04:46](1195 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:20, 04:46](1195 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:34, 05:04](1262 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:21, 04:49](1206 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:20, 04:48](1193 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:21, 04:42](1193 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:23, 04:49](1201 MB) -PASS -- TEST 'rap_noah_debug_intel' [08:20, 04:41](1202 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:21, 04:47](1197 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:20, 07:48](1200 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:22, 04:37](1181 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:21, 05:42](1196 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:23, 04:45](1188 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:40, 08:05](1201 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:06, 02:20] -PASS -- TEST 'control_csawmg_debug_gnu' [04:37, 02:07](570 MB) -PASS -- TEST 'control_csawmgt_debug_gnu' [04:34, 02:06](564 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:06, 03:02] -PASS -- TEST 'control_wam_debug_intel' [06:18, 04:44](501 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:07, 09:19] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:00, 03:48](1156 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:37, 06:19](1046 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:32, 03:21](985 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:30, 05:59](1097 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:27, 03:06](951 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:27, 03:33](915 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [17:42, 04:48](1031 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:21, 01:50](902 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:08, 11:44] -PASS -- TEST 'conus13km_control_intel' [04:52, 02:00](1193 MB) -PASS -- TEST 'conus13km_2threads_intel' [13:39, 00:56](1110 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [14:41, 01:12](1099 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:07, 09:15] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:40, 04:12](963 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:07, 03:13] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:39](1047 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:18, 04:34](1068 MB) -PASS -- TEST 'conus13km_debug_intel' [15:48, 13:33](1215 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:45, 13:59](919 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:43, 07:46](1140 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:45, 13:44](1283 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:07, 03:13] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:23, 04:46](1112 MB) - -PASS -- COMPILE 'hafsw_intel' [14:08, 10:24] -PASS -- TEST 'hafs_regional_atm_intel' [07:15, 04:42](716 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:26, 05:42](1105 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:21, 06:47](823 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:15, 12:51](862 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:21, 14:30](880 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [15:55, 05:16](502 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:14, 06:26](516 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [15:43, 02:36](371 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [21:20, 06:55](470 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [16:42, 03:33](524 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [16:43, 03:21](528 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [15:51, 04:01](579 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [13:26, 01:11](406 MB) -PASS -- TEST 'gnv1_nested_intel' [16:47, 03:57](765 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:07, 03:30] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [24:52, 12:18](565 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [14:09, 11:07] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [21:00, 08:22](639 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [22:05, 08:30](689 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:09, 11:02] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [19:02, 06:18](717 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:08, 10:19] -PASS -- TEST 'hafs_regional_docn_intel' [19:12, 06:13](826 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [20:17, 06:15](804 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [27:55, 16:17](1209 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:07, 05:52] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:14, 02:55](1120 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [08:17, 01:39](1069 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:14, 02:35](1009 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:18, 02:39](994 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [12:15, 02:38](1001 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [10:18, 02:40](1121 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [09:15, 02:38](1120 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [08:15, 02:28](1010 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:22, 06:04](1051 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:12, 06:21](1030 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:12, 02:42](1133 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:17, 03:55](2431 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:17, 03:52](2476 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:07, 02:53] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:15, 06:08](1045 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:07, 06:06] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:15, 02:40](1117 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:06, 01:00] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:27, 00:45](255 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:20, 00:47](321 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:21, 00:30](323 MB) - -PASS -- COMPILE 'atml_intel' [13:07, 10:49] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:02, 04:14](1586 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:00, 04:14](1586 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:48, 02:16](885 MB) - -PASS -- COMPILE 'atmw_intel' [12:08, 10:00] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:48, 01:45](1623 MB) - -PASS -- COMPILE 'atmwm_intel' [12:07, 09:53] -PASS -- TEST 'control_atmwav_intel' [03:31, 01:39](668 MB) - -PASS -- COMPILE 'atmaero_intel' [12:08, 09:40] -PASS -- TEST 'atmaero_control_p8_intel' [05:58, 03:53](3016 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:00, 04:44](3085 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:42, 05:05](3037 MB) - -PASS -- COMPILE 'atmaq_intel' [11:08, 09:22] - -PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:17] -PASS -- TEST 'regional_atmaq_debug_intel' [25:15, 20:06](4479 MB) - -PASS -- COMPILE 'atm_gnu' [05:06, 03:27] -PASS -- TEST 'control_c48_gnu' [14:25, 11:40](788 MB) -PASS -- TEST 'control_stochy_gnu' [07:19, 04:01](549 MB) -PASS -- TEST 'control_ras_gnu' [08:19, 04:59](553 MB) -PASS -- TEST 'control_p8_gnu' [09:03, 04:53](1311 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [07:56, 04:44](1310 MB) -PASS -- TEST 'control_flake_gnu' [08:19, 05:51](594 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:06, 03:29] -PASS -- TEST 'rap_control_gnu' [14:31, 11:43](894 MB) -PASS -- TEST 'rap_decomp_gnu' [14:31, 11:50](895 MB) -PASS -- TEST 'rap_2threads_gnu' [12:41, 10:28](971 MB) -PASS -- TEST 'rap_restart_gnu' [08:39, 06:01](625 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [14:38, 11:46](893 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [14:38, 11:42](892 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:39, 08:46](627 MB) -PASS -- TEST 'hrrr_control_gnu' [08:30, 06:00](888 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [08:29, 05:56](878 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [07:36, 05:12](976 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:34, 06:00](889 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [06:26, 03:13](610 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:27, 03:13](705 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [13:42, 11:21](893 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [05:06, 03:21] -PASS -- TEST 'control_diag_debug_gnu' [03:26, 01:36](589 MB) -PASS -- TEST 'regional_debug_gnu' [09:43, 07:27](599 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:22, 02:31](906 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:20, 02:30](902 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:18, 02:33](872 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [05:17, 02:36](907 MB) -PASS -- TEST 'rap_diag_debug_gnu' [05:36, 02:43](993 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [07:22, 03:53](906 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:23, 02:31](904 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:19, 02:30](902 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:16, 01:32](542 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:16, 01:50](536 MB) -PASS -- TEST 'control_debug_p8_gnu' [04:41, 01:42](1293 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:20, 02:32](911 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:22, 02:51](912 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:37, 04:08](911 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:06, 01:42] -PASS -- TEST 'control_wam_debug_gnu' [04:18, 02:27](242 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:06, 03:22] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [14:34, 11:55](749 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [08:27, 06:05](743 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [13:37, 10:36](803 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:32, 05:19](794 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:27, 06:01](742 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [11:37, 08:55](595 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [05:22, 03:32](580 MB) -PASS -- TEST 'conus13km_control_gnu' [07:57, 04:11](897 MB) -PASS -- TEST 'conus13km_2threads_gnu' [04:40, 01:56](930 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [04:40, 02:22](599 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [06:06, 05:02] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [09:42, 07:00](781 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [05:08, 03:20] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:20, 02:30](756 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:19, 02:33](756 MB) -PASS -- TEST 'conus13km_debug_gnu' [10:40, 07:02](912 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [09:41, 07:02](627 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [06:40, 04:20](948 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:40, 07:11](981 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:09, 03:23] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:20, 02:34](782 MB) - -PASS -- COMPILE 's2swa_gnu' [15:09, 13:51] -PASS -- TEST 'cpld_control_p8_gnu' [13:10, 10:50](1510 MB) - -PASS -- COMPILE 's2s_gnu' [15:09, 13:35] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:02, 06:34](1400 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:06, 02:18] -PASS -- TEST 'cpld_debug_p8_gnu' [09:04, 06:12](1514 MB) - -PASS -- COMPILE 's2sw_pdlib_gnu' [15:09, 13:38] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [24:58, 22:17](1373 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:06, 02:06] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:55, 12:49](1384 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [15:07, 13:23] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:14, 03:00](700 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:07, 12:02] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:06, 05:21](3159 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:08, 16:17] +PASS -- TEST 'cpld_control_gfsv17_intel' [25:18, 16:10](1729 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:23, 16:51](2011 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:11, 07:42](1074 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:17, 18:18](1615 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:06, 04:26] +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:05, 22:24](1672 MB) + +PASS -- COMPILE 's2swa_intel' [14:07, 12:09] +PASS -- TEST 'cpld_control_p8_intel' [10:22, 05:38](3186 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:30, 05:44](3163 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:37, 03:23](3256 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:22, 05:47](3218 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:37, 03:29](3270 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [08:15, 05:38](3526 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:22, 05:40](3170 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:15, 04:41](3010 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:20, 05:45](3165 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [23:32, 09:49](3317 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:53, 06:07](3587 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [28:30, 10:07](4141 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:00, 06:46](4344 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:23, 05:26](3165 MB) + +PASS -- COMPILE 's2sw_intel' [13:07, 11:36] +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:01, 04:41](1693 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:06, 04:31](1764 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:06, 04:28] +PASS -- TEST 'cpld_debug_p8_intel' [11:10, 08:10](3249 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:06, 04:07] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:01, 05:45](1707 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:07, 10:54] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:06, 04:22](1771 MB) + +PASS -- COMPILE 's2s_intel' [13:07, 10:30] +PASS -- TEST 'cpld_control_c48_intel' [11:50, 09:21](2830 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:08, 16:17] +PASS -- TEST 'cpld_control_p8_faster_intel' [15:28, 05:17](3195 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:08, 15:11] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:12, 16:28](1763 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:18, 07:39](1146 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:04, 18:40](1639 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:07, 03:53] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:10, 24:09](1693 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:07, 10:33] +PASS -- TEST 'control_flake_intel' [11:31, 03:16](698 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [11:33, 02:22](643 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [11:35, 02:32](628 MB) +PASS -- TEST 'control_latlon_intel' [11:28, 02:24](642 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [11:35, 02:29](648 MB) +PASS -- TEST 'control_c48_intel' [09:28, 06:17](873 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:28, 06:16](872 MB) +PASS -- TEST 'control_c192_intel' [17:50, 09:09](844 MB) +PASS -- TEST 'control_c384_intel' [18:49, 09:22](1283 MB) +PASS -- TEST 'control_c384gdas_intel' [19:32, 08:21](1386 MB) +PASS -- TEST 'control_stochy_intel' [10:20, 01:41](623 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:23, 00:58](471 MB) +PASS -- TEST 'control_lndp_intel' [10:17, 01:33](619 MB) +PASS -- TEST 'control_iovr4_intel' [11:20, 02:29](621 MB) +PASS -- TEST 'control_iovr5_intel' [10:20, 02:26](646 MB) +PASS -- TEST 'control_p8_intel' [12:04, 02:57](1613 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [10:03, 02:59](1611 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [12:01, 02:59](1581 MB) +PASS -- TEST 'control_restart_p8_intel' [03:54, 01:46](887 MB) +PASS -- TEST 'control_noqr_p8_intel' [10:02, 02:55](1619 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:56, 01:44](913 MB) +PASS -- TEST 'control_decomp_p8_intel' [09:58, 03:02](1612 MB) +PASS -- TEST 'control_2threads_p8_intel' [08:53, 02:50](1705 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:47, 05:23](1608 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:59, 03:54](1672 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:05, 03:07](1624 MB) +PASS -- TEST 'merra2_thompson_intel' [06:03, 03:32](1613 MB) +PASS -- TEST 'regional_control_intel' [07:41, 05:12](847 MB) +PASS -- TEST 'regional_restart_intel' [09:45, 02:46](1017 MB) +PASS -- TEST 'regional_decomp_intel' [07:40, 05:29](847 MB) +PASS -- TEST 'regional_2threads_intel' [05:43, 03:19](814 MB) +PASS -- TEST 'regional_noquilt_intel' [07:40, 05:13](1361 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:41, 05:24](845 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:35, 05:25](815 MB) +PASS -- TEST 'regional_wofs_intel' [08:40, 06:39](1914 MB) + +PASS -- COMPILE 'rrfs_intel' [12:09, 09:55] +PASS -- TEST 'rap_control_intel' [11:45, 07:53](1105 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:03, 04:25](1294 MB) +PASS -- TEST 'rap_decomp_intel' [11:39, 08:22](1026 MB) +PASS -- TEST 'rap_2threads_intel' [10:34, 07:37](1137 MB) +PASS -- TEST 'rap_restart_intel' [06:43, 04:02](1063 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:46, 07:55](1093 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:44, 08:17](1027 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:46, 05:45](1124 MB) +PASS -- TEST 'hrrr_control_intel' [06:33, 04:07](1040 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:33, 04:15](1041 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:44, 03:53](1116 MB) +PASS -- TEST 'hrrr_control_restart_intel' [06:28, 02:10](997 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:51, 07:48](1100 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:31, 09:15](1962 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:30, 09:03](2058 MB) + +PASS -- COMPILE 'csawmg_intel' [11:06, 09:37] +PASS -- TEST 'control_csawmg_intel' [08:46, 06:12](708 MB) +PASS -- TEST 'control_csawmgt_intel' [08:43, 06:06](745 MB) +PASS -- TEST 'control_ras_intel' [05:19, 03:25](746 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:06, 03:37] +PASS -- TEST 'control_csawmg_gnu' [15:41, 08:52](590 MB) +PASS -- TEST 'control_csawmgt_gnu' [15:42, 08:41](588 MB) + +PASS -- COMPILE 'wam_intel' [11:06, 09:04] +PASS -- TEST 'control_wam_intel' [09:21, 02:03](647 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:06, 09:52] +PASS -- TEST 'control_p8_faster_intel' [09:59, 02:40](1614 MB) +PASS -- TEST 'regional_control_faster_intel' [11:42, 04:40](849 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:06, 04:23] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:26, 02:36](805 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:27, 02:39](785 MB) +PASS -- TEST 'control_stochy_debug_intel' [09:21, 03:06](812 MB) +PASS -- TEST 'control_lndp_debug_intel' [07:22, 02:44](785 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:37, 04:05](859 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [08:38, 03:59](856 MB) +PASS -- TEST 'control_ras_debug_intel' [07:20, 02:40](819 MB) +PASS -- TEST 'control_diag_debug_intel' [07:29, 02:44](867 MB) +PASS -- TEST 'control_debug_p8_intel' [04:45, 02:46](1636 MB) +PASS -- TEST 'regional_debug_intel' [18:46, 16:49](832 MB) +PASS -- TEST 'rap_control_debug_intel' [06:24, 04:42](1189 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:23, 04:36](1195 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:20, 04:42](1201 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:22, 04:46](1189 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:22, 04:45](1206 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:40, 04:59](1290 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:23, 04:53](1178 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:22, 04:48](1196 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:25, 04:49](1188 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:25, 04:52](1165 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:21, 04:41](1178 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:24, 04:46](1197 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:21, 07:43](1197 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:21, 04:39](1157 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:20, 06:00](1174 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:22, 04:48](1203 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:37, 08:08](1206 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:06, 02:30] +PASS -- TEST 'control_csawmg_debug_gnu' [04:34, 02:09](570 MB) +PASS -- TEST 'control_csawmgt_debug_gnu' [04:35, 02:05](571 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:06, 03:15] +PASS -- TEST 'control_wam_debug_intel' [06:18, 04:45](509 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:08, 09:25] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:02, 03:55](1151 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:38, 06:21](1044 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:35, 03:20](963 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:34, 06:02](1083 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:26, 03:08](966 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:30, 03:32](934 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:36, 04:46](1021 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:23, 01:52](937 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:09, 11:24] +PASS -- TEST 'conus13km_control_intel' [04:55, 02:03](1194 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:41, 00:53](1088 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:41, 01:13](1102 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [18:07, 09:23] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:44, 04:11](985 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:07, 03:10] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:47](1046 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:19, 04:37](1075 MB) +PASS -- TEST 'conus13km_debug_intel' [15:50, 13:50](1218 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:42, 14:00](903 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:47, 07:40](1145 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:48, 13:53](1270 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:07, 03:12] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:25, 04:50](1110 MB) + +PASS -- COMPILE 'hafsw_intel' [19:08, 11:10] +PASS -- TEST 'hafs_regional_atm_intel' [07:19, 04:52](732 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:31, 06:06](1105 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:23, 06:59](828 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:16, 13:17](854 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:29, 14:44](853 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:06, 05:22](498 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:20, 06:33](500 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:44, 02:48](367 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:11, 07:03](482 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:48, 03:34](528 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:56, 03:24](518 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:50, 04:06](583 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:25, 01:15](399 MB) +PASS -- TEST 'gnv1_nested_intel' [06:55, 04:04](800 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [11:08, 03:48] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:51, 12:27](557 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [18:08, 11:24] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:54, 08:29](633 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:00, 08:33](704 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [18:08, 11:36] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:59, 06:23](686 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:07, 11:02] +PASS -- TEST 'hafs_regional_docn_intel' [09:17, 06:14](825 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:12, 06:16](810 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:55, 15:58](1209 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:07, 06:11] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:17, 02:37](1119 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:17, 01:43](1067 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:15, 02:35](1001 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:16, 02:36](1017 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:15, 02:37](998 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:13, 02:40](1120 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:15, 02:41](1110 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 02:35](995 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:16, 06:11](1050 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:09, 06:57](1022 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:12, 02:45](1113 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:17, 03:53](2490 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:16, 04:13](2432 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:07, 03:09] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:15, 06:06](1048 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:07, 06:14] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:14, 02:42](1121 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:08, 01:08] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:29, 00:43](257 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:19, 00:50](314 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [06:23, 00:30](320 MB) + +PASS -- COMPILE 'atml_intel' [13:07, 11:17] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:08, 04:13](1587 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [11:02, 04:17](1581 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:46, 02:29](872 MB) + +PASS -- COMPILE 'atmw_intel' [12:07, 10:12] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:51, 01:44](1635 MB) + +PASS -- COMPILE 'atmwm_intel' [17:08, 09:53] +PASS -- TEST 'control_atmwav_intel' [04:31, 01:38](666 MB) + +PASS -- COMPILE 'atmaero_intel' [16:07, 09:46] +PASS -- TEST 'atmaero_control_p8_intel' [08:58, 03:52](3015 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:05, 04:47](3069 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:41, 04:58](3106 MB) + +PASS -- COMPILE 'atmaq_intel' [16:07, 09:43] + +PASS -- COMPILE 'atmaq_debug_intel' [07:07, 03:18] +PASS -- TEST 'regional_atmaq_debug_intel' [27:01, 20:44](4366 MB) + +PASS -- COMPILE 'atm_gnu' [07:08, 03:28] +PASS -- TEST 'control_c48_gnu' [13:25, 11:36](787 MB) +PASS -- TEST 'control_stochy_gnu' [07:19, 04:05](553 MB) +PASS -- TEST 'control_ras_gnu' [07:19, 05:04](551 MB) +PASS -- TEST 'control_p8_gnu' [09:59, 04:54](1302 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [10:56, 04:37](1304 MB) +PASS -- TEST 'control_flake_gnu' [10:21, 05:57](593 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:07, 03:33] +PASS -- TEST 'rap_control_gnu' [16:41, 11:27](894 MB) +PASS -- TEST 'rap_decomp_gnu' [16:36, 11:41](892 MB) +PASS -- TEST 'rap_2threads_gnu' [17:31, 10:30](976 MB) +PASS -- TEST 'rap_restart_gnu' [25:53, 06:07](622 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [18:41, 11:34](895 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [18:35, 11:41](902 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [20:49, 08:43](627 MB) +PASS -- TEST 'hrrr_control_gnu' [12:33, 06:00](890 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [12:32, 05:57](876 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [11:37, 05:15](967 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [12:34, 05:57](890 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [24:30, 03:14](609 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [24:26, 03:11](702 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [18:40, 11:24](889 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:07, 03:25] +PASS -- TEST 'control_diag_debug_gnu' [08:29, 01:36](590 MB) +PASS -- TEST 'regional_debug_gnu' [14:44, 07:34](595 MB) +PASS -- TEST 'rap_control_debug_gnu' [09:23, 02:33](909 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [08:19, 02:26](907 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [08:19, 02:29](905 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [08:18, 02:36](903 MB) +PASS -- TEST 'rap_diag_debug_gnu' [08:32, 02:44](987 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [08:22, 03:54](901 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [06:20, 02:32](902 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [06:20, 02:34](902 MB) +PASS -- TEST 'control_ras_debug_gnu' [05:17, 01:32](542 MB) +PASS -- TEST 'control_stochy_debug_gnu' [06:20, 02:16](536 MB) +PASS -- TEST 'control_debug_p8_gnu' [04:38, 01:39](1287 MB) +PASS -- TEST 'rap_flake_debug_gnu' [05:21, 02:34](903 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:22, 02:48](915 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:36, 04:09](914 MB) + +PASS -- COMPILE 'wam_debug_gnu' [05:07, 01:45] +PASS -- TEST 'control_wam_debug_gnu' [26:22, 02:32](241 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:08, 03:28] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [36:34, 11:51](744 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [30:30, 06:04](744 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [34:49, 10:55](797 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [28:36, 05:22](802 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [28:31, 06:00](743 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [12:19, 09:10](586 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [06:22, 03:21](578 MB) +PASS -- TEST 'conus13km_control_gnu' [27:01, 04:15](896 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:45, 01:58](928 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [05:42, 02:20](594 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [07:08, 05:07] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [29:48, 06:59](779 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [05:06, 03:24] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [25:24, 02:32](757 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [25:21, 02:31](752 MB) +PASS -- TEST 'conus13km_debug_gnu' [29:55, 07:04](913 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [14:45, 07:09](629 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [11:43, 04:21](948 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [28:47, 07:11](979 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:05, 03:25] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [24:25, 02:40](784 MB) + +PASS -- COMPILE 's2swa_gnu' [16:06, 14:03] +PASS -- TEST 'cpld_control_p8_gnu' [32:20, 11:01](1508 MB) + +PASS -- COMPILE 's2s_gnu' [16:08, 14:02] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [28:14, 06:39](1400 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:07, 02:21] +PASS -- TEST 'cpld_debug_p8_gnu' [28:09, 06:17](1523 MB) + +PASS -- COMPILE 's2sw_pdlib_gnu' [15:08, 13:43] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [43:07, 22:13](1373 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:06, 02:18] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [32:00, 13:05](1388 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [15:07, 13:35] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [17:15, 03:07](702 MB) SYNOPSIS: -Starting Date/Time: 20240317 23:58:13 -Ending Date/Time: 20240318 01:49:49 -Total Time: 01h:51m:57s +Starting Date/Time: 20240318 19:02:14 +Ending Date/Time: 20240318 21:14:57 +Total Time: 02h:13m:32s Compiles Completed: 55/55 Tests Completed: 247/247 diff --git a/tests/test_changes.list b/tests/test_changes.list index d8008eff46..e69de29bb2 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,14 +0,0 @@ -conus13km_control intel -conus13km_2threads intel -conus13km_restart_mismatch intel -conus13km_debug intel -conus13km_debug_qr intel -conus13km_debug_2threads intel -conus13km_radar_tten_debug intel -conus13km_control gnu -conus13km_2threads gnu -conus13km_restart_mismatch gnu -conus13km_debug gnu -conus13km_debug_qr gnu -conus13km_debug_2threads gnu -conus13km_radar_tten_debug gnu From 166605b5c0cdbab35770bb74bbdca5b33f7d85b5 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Tue, 19 Mar 2024 07:22:18 -0500 Subject: [PATCH 64/76] Update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 5ef24e6280..51d107b15a 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 5ef24e6280fb6fc7df685ba5f48917e83d46d177 +Subproject commit 51d107b15a68445179bd3114d88b3c1fd20469ee From 2b2e99fad4184e0d535121f4fae907e900321227 Mon Sep 17 00:00:00 2001 From: JONG KIM Date: Tue, 19 Mar 2024 08:39:55 -0400 Subject: [PATCH 65/76] Update repo_check.sh: turn off upp check --- tests/ci/repo_check.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/ci/repo_check.sh b/tests/ci/repo_check.sh index fe42ac0403..e8a10e09a4 100755 --- a/tests/ci/repo_check.sh +++ b/tests/ci/repo_check.sh @@ -13,8 +13,8 @@ result() { } # Declare variables -declare -A base fv3 mom6 cice ww3 stoch gocart cmeps cdeps hycom cmake ccpp-framework ccpp-physics upp atmos_cubed_sphere -submodules="fv3 mom6 cice ww3 stoch gocart cmeps cdeps hycom cmake ccpp-framework ccpp-physics upp atmos_cubed_sphere" +declare -A base fv3 mom6 cice ww3 stoch gocart cmeps cdeps hycom cmake ccpp-framework ccpp-physics atmos_cubed_sphere +submodules="fv3 mom6 cice ww3 stoch gocart cmeps cdeps hycom cmake ccpp-framework ccpp-physics atmos_cubed_sphere" comment='' ownerID=$1 @@ -71,9 +71,9 @@ ccpp-physics[repo]='https://github.com/ufs-community/ccpp-physics' ccpp-physics[branch]='ufs/dev' ccpp-physics[dir]='ccpp/physics' -upp[repo]='https://github.com/NOAA-EMC/UPP' -upp[branch]='develop' -upp[dir]='upp' +#upp[repo]='https://github.com/NOAA-EMC/UPP' +#upp[branch]='develop' +#upp[dir]='upp' atmos_cubed_sphere[repo]='https://github.com/NOAA-GFDL/GFDL_atmos_cubed_sphere' atmos_cubed_sphere[branch]='main' From 5e70cd6cc0cb7ae9cbe45ed33357c41119a4f29a Mon Sep 17 00:00:00 2001 From: epic-cicd-jenkins Date: Tue, 19 Mar 2024 08:02:45 -0500 Subject: [PATCH 66/76] [AutoRT] Hercules Job Failed! on-behalf-of @ufs-community --- tests/logs/RT-run-Hercules.log | 2301 ++++++++++++++++++++++++++++++++ 1 file changed, 2301 insertions(+) create mode 100644 tests/logs/RT-run-Hercules.log diff --git a/tests/logs/RT-run-Hercules.log b/tests/logs/RT-run-Hercules.log new file mode 100644 index 0000000000..bc5b38365a --- /dev/null +++ b/tests/logs/RT-run-Hercules.log @@ -0,0 +1,2301 @@ +hercules-login-1.hpc.msstate.edu +Machine: hercules Account: epic +Linking /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_2703530 to /work/noaa/epic/role-epic/jenkins/workspace/s-weather-model_pipeline_PR-1147/tests/run_dir +Run regression test in: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_2703530 +No update needed to TESTS_FILE +COMPILING s2swa_32bit_intel +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: 150 169 +ICE_petlist_bounds: 170 179 +WAV_petlist_bounds: 180 199 +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 200 +COMPILING s2swa_32bit_pdlib_intel +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: 150 169 +ICE_petlist_bounds: 170 179 +WAV_petlist_bounds: 180 239 +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 240 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: 150 169 +ICE_petlist_bounds: 170 179 +WAV_petlist_bounds: 180 239 +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 240 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: 150 169 +ICE_petlist_bounds: 170 179 +WAV_petlist_bounds: 180 239 +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 240 +ATM_petlist_bounds: 0 197 +OCN_petlist_bounds: 198 231 +ICE_petlist_bounds: 232 251 +WAV_petlist_bounds: 252 301 +CHM_petlist_bounds: 0 191 +MED_petlist_bounds: 0 191 +AQM_petlist_bounds: 0 191 +LND_petlist_bounds: +UFS_tasks : 302 +COMPILING s2swa_32bit_pdlib_debug_intel +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: 150 169 +ICE_petlist_bounds: 170 179 +WAV_petlist_bounds: 180 257 +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 258 +COMPILING s2swa_intel +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: 150 169 +ICE_petlist_bounds: 170 179 +WAV_petlist_bounds: 180 199 +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 200 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: 150 169 +ICE_petlist_bounds: 170 179 +WAV_petlist_bounds: 180 199 +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 200 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: 150 169 +ICE_petlist_bounds: 170 179 +WAV_petlist_bounds: 180 199 +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 200 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: 150 169 +ICE_petlist_bounds: 170 179 +WAV_petlist_bounds: 180 199 +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 200 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: 150 169 +ICE_petlist_bounds: 170 179 +WAV_petlist_bounds: 180 199 +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 200 +ATM_petlist_bounds: 0 167 +OCN_petlist_bounds: 168 187 +ICE_petlist_bounds: 188 197 +WAV_petlist_bounds: 198 221 +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 222 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: 150 169 +ICE_petlist_bounds: 170 179 +WAV_petlist_bounds: 180 199 +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 200 +ATM_petlist_bounds: 0 197 +OCN_petlist_bounds: 198 231 +ICE_petlist_bounds: 232 251 +WAV_petlist_bounds: 252 279 +CHM_petlist_bounds: 0 191 +MED_petlist_bounds: 0 191 +AQM_petlist_bounds: 0 191 +LND_petlist_bounds: +UFS_tasks : 280 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: 150 169 +ICE_petlist_bounds: 170 179 +WAV_petlist_bounds: 180 199 +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 200 +ATM_petlist_bounds: 0 623 +OCN_petlist_bounds: 624 683 +ICE_petlist_bounds: 684 707 +WAV_petlist_bounds: 708 787 +CHM_petlist_bounds: 0 575 +MED_petlist_bounds: 0 575 +AQM_petlist_bounds: 0 575 +LND_petlist_bounds: +UFS_tasks : 788 +ATM_petlist_bounds: 0 599 +OCN_petlist_bounds: 600 659 +ICE_petlist_bounds: 660 683 +WAV_petlist_bounds: 684 763 +CHM_petlist_bounds: 0 575 +MED_petlist_bounds: 0 575 +AQM_petlist_bounds: 0 575 +LND_petlist_bounds: +UFS_tasks : 764 +ATM_petlist_bounds: 0 959 +OCN_petlist_bounds: 960 1079 +ICE_petlist_bounds: 1080 1127 +WAV_petlist_bounds: 1128 1287 +CHM_petlist_bounds: 0 767 +MED_petlist_bounds: 0 767 +AQM_petlist_bounds: 0 767 +LND_petlist_bounds: +UFS_tasks : 1288 +ATM_petlist_bounds: 0 959 +OCN_petlist_bounds: 960 1079 +ICE_petlist_bounds: 1080 1127 +WAV_petlist_bounds: 1128 1287 +CHM_petlist_bounds: 0 767 +MED_petlist_bounds: 0 767 +AQM_petlist_bounds: 0 767 +LND_petlist_bounds: +UFS_tasks : 1288 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: 150 169 +ICE_petlist_bounds: 170 179 +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 180 +COMPILING s2sw_intel +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: 150 169 +ICE_petlist_bounds: 170 179 +WAV_petlist_bounds: 180 199 +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 200 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: 150 169 +ICE_petlist_bounds: 170 179 +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 180 +COMPILING s2swa_debug_intel +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: 150 169 +ICE_petlist_bounds: 170 179 +WAV_petlist_bounds: 180 199 +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 200 +COMPILING s2sw_debug_intel +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: 150 169 +ICE_petlist_bounds: 170 179 +WAV_petlist_bounds: 180 199 +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 200 +COMPILING s2s_aoflux_intel +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: 150 169 +ICE_petlist_bounds: 170 179 +WAV_petlist_bounds: 180 199 +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 200 +COMPILING s2s_intel +ATM_petlist_bounds: 0 11 +OCN_petlist_bounds: 12 15 +ICE_petlist_bounds: 16 19 +WAV_petlist_bounds: +CHM_petlist_bounds: 0 5 +MED_petlist_bounds: 0 5 +AQM_petlist_bounds: 0 5 +LND_petlist_bounds: +UFS_tasks : 20 +COMPILING s2swa_faster_intel +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: 150 169 +ICE_petlist_bounds: 170 179 +WAV_petlist_bounds: 180 199 +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 200 +COMPILING s2sw_pdlib_intel +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: 150 169 +ICE_petlist_bounds: 170 179 +WAV_petlist_bounds: 180 239 +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 240 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: 150 169 +ICE_petlist_bounds: 170 179 +WAV_petlist_bounds: 180 239 +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 240 +ATM_petlist_bounds: 0 197 +OCN_petlist_bounds: 198 231 +ICE_petlist_bounds: 232 251 +WAV_petlist_bounds: 252 301 +CHM_petlist_bounds: 0 191 +MED_petlist_bounds: 0 191 +AQM_petlist_bounds: 0 191 +LND_petlist_bounds: +UFS_tasks : 302 +COMPILING s2sw_pdlib_debug_intel +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: 150 169 +ICE_petlist_bounds: 170 179 +WAV_petlist_bounds: 180 257 +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 258 +COMPILING atm_dyn32_intel +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 7 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 5 +MED_petlist_bounds: 0 5 +AQM_petlist_bounds: 0 5 +LND_petlist_bounds: +UFS_tasks : 8 +ATM_petlist_bounds: 0 7 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 5 +MED_petlist_bounds: 0 5 +AQM_petlist_bounds: 0 5 +LND_petlist_bounds: +UFS_tasks : 8 +ATM_petlist_bounds: 0 203 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 191 +MED_petlist_bounds: 0 191 +AQM_petlist_bounds: 0 191 +LND_petlist_bounds: +UFS_tasks : 204 +ATM_petlist_bounds: 0 671 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 575 +MED_petlist_bounds: 0 575 +AQM_petlist_bounds: 0 575 +LND_petlist_bounds: +UFS_tasks : 672 +ATM_petlist_bounds: 0 671 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 575 +MED_petlist_bounds: 0 575 +AQM_petlist_bounds: 0 575 +LND_petlist_bounds: +UFS_tasks : 672 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 155 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 156 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 119 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 109 +MED_petlist_bounds: 0 109 +AQM_petlist_bounds: 0 109 +LND_petlist_bounds: +UFS_tasks : 120 +ATM_petlist_bounds: 0 119 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 109 +MED_petlist_bounds: 0 109 +AQM_petlist_bounds: 0 109 +LND_petlist_bounds: +UFS_tasks : 120 +ATM_petlist_bounds: 0 119 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 109 +MED_petlist_bounds: 0 109 +AQM_petlist_bounds: 0 109 +LND_petlist_bounds: +UFS_tasks : 120 +ATM_petlist_bounds: 0 239 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 219 +MED_petlist_bounds: 0 219 +AQM_petlist_bounds: 0 219 +LND_petlist_bounds: +UFS_tasks : 240 +ATM_petlist_bounds: 0 109 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 109 +MED_petlist_bounds: 0 109 +AQM_petlist_bounds: 0 109 +LND_petlist_bounds: +UFS_tasks : 110 +ATM_petlist_bounds: 0 119 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 109 +MED_petlist_bounds: 0 109 +AQM_petlist_bounds: 0 109 +LND_petlist_bounds: +UFS_tasks : 120 +ATM_petlist_bounds: 0 119 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 109 +MED_petlist_bounds: 0 109 +AQM_petlist_bounds: 0 109 +LND_petlist_bounds: +UFS_tasks : 120 +ATM_petlist_bounds: 0 119 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 109 +MED_petlist_bounds: 0 109 +AQM_petlist_bounds: 0 109 +LND_petlist_bounds: +UFS_tasks : 120 +COMPILING ifi_intel +COMPILING rrfs_intel +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 383 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 359 +MED_petlist_bounds: 0 359 +AQM_petlist_bounds: 0 359 +LND_petlist_bounds: +UFS_tasks : 384 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 155 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 156 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 155 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 156 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +COMPILING csawmg_intel +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +COMPILING csawmg_gnu +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +COMPILING wam_intel +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +COMPILING atm_faster_dyn32_intel +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 119 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 109 +MED_petlist_bounds: 0 109 +AQM_petlist_bounds: 0 109 +LND_petlist_bounds: +UFS_tasks : 120 +COMPILING atm_debug_dyn32_intel +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 119 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 109 +MED_petlist_bounds: 0 109 +AQM_petlist_bounds: 0 109 +LND_petlist_bounds: +UFS_tasks : 120 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +COMPILING atm_debug_dyn32_gnu +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +COMPILING wam_debug_intel +COMPILING rrfs_dyn32_phy32_intel +ATM_petlist_bounds: 0 383 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 359 +MED_petlist_bounds: 0 359 +AQM_petlist_bounds: 0 359 +LND_petlist_bounds: +UFS_tasks : 384 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 155 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 156 +ATM_petlist_bounds: 0 155 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 156 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +COMPILING rrfs_dyn32_phy32_faster_intel +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 299 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 287 +MED_petlist_bounds: 0 287 +AQM_petlist_bounds: 0 287 +LND_petlist_bounds: +UFS_tasks : 300 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +COMPILING rrfs_dyn64_phy32_intel +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +COMPILING rrfs_dyn32_phy32_debug_intel +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 299 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 287 +MED_petlist_bounds: 0 287 +AQM_petlist_bounds: 0 287 +LND_petlist_bounds: +UFS_tasks : 300 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +COMPILING rrfs_dyn64_phy32_debug_intel +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +COMPILING hafsw_intel +ATM_petlist_bounds: 0 599 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 479 +MED_petlist_bounds: 0 479 +AQM_petlist_bounds: 0 479 +LND_petlist_bounds: +UFS_tasks : 600 +ATM_petlist_bounds: 0 599 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 479 +MED_petlist_bounds: 0 479 +AQM_petlist_bounds: 0 479 +LND_petlist_bounds: +UFS_tasks : 600 +ATM_petlist_bounds: 0 299 +OCN_petlist_bounds: 300 359 +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 239 +MED_petlist_bounds: 0 239 +AQM_petlist_bounds: 0 239 +LND_petlist_bounds: +UFS_tasks : 360 +ATM_petlist_bounds: 0 299 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: 300 359 +CHM_petlist_bounds: 0 239 +MED_petlist_bounds: 0 239 +AQM_petlist_bounds: 0 239 +LND_petlist_bounds: +UFS_tasks : 360 +ATM_petlist_bounds: 0 299 +OCN_petlist_bounds: 300 359 +ICE_petlist_bounds: +WAV_petlist_bounds: 360 419 +CHM_petlist_bounds: 0 239 +MED_petlist_bounds: 0 239 +AQM_petlist_bounds: 0 239 +LND_petlist_bounds: +UFS_tasks : 420 +ATM_petlist_bounds: 0 359 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 239 +MED_petlist_bounds: 0 239 +AQM_petlist_bounds: 0 239 +LND_petlist_bounds: +UFS_tasks : 360 +ATM_petlist_bounds: 0 479 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 359 +MED_petlist_bounds: 0 359 +AQM_petlist_bounds: 0 359 +LND_petlist_bounds: +UFS_tasks : 480 +ATM_petlist_bounds: 0 479 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 359 +MED_petlist_bounds: 0 359 +AQM_petlist_bounds: 0 359 +LND_petlist_bounds: +UFS_tasks : 480 +ATM_petlist_bounds: 0 839 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 719 +MED_petlist_bounds: 0 719 +AQM_petlist_bounds: 0 719 +LND_petlist_bounds: +UFS_tasks : 840 +ATM_petlist_bounds: 0 359 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 239 +MED_petlist_bounds: 0 239 +AQM_petlist_bounds: 0 239 +LND_petlist_bounds: +UFS_tasks : 360 +ATM_petlist_bounds: 0 359 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 239 +MED_petlist_bounds: 0 239 +AQM_petlist_bounds: 0 239 +LND_petlist_bounds: +UFS_tasks : 360 +ATM_petlist_bounds: 0 479 +OCN_petlist_bounds: 480 599 +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 239 +MED_petlist_bounds: 0 239 +AQM_petlist_bounds: 0 239 +LND_petlist_bounds: +UFS_tasks : 600 +ATM_petlist_bounds: 0 479 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 359 +MED_petlist_bounds: 0 359 +AQM_petlist_bounds: 0 359 +LND_petlist_bounds: +UFS_tasks : 480 +COMPILING hafsw_debug_intel +ATM_petlist_bounds: 0 479 +OCN_petlist_bounds: 480 599 +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 239 +MED_petlist_bounds: 0 239 +AQM_petlist_bounds: 0 239 +LND_petlist_bounds: +UFS_tasks : 600 +COMPILING hafsw_faster_intel +ATM_petlist_bounds: 0 359 +OCN_petlist_bounds: 360 479 +ICE_petlist_bounds: +WAV_petlist_bounds: 480 599 +CHM_petlist_bounds: 0 239 +MED_petlist_bounds: 0 239 +AQM_petlist_bounds: 0 239 +LND_petlist_bounds: +UFS_tasks : 600 +ATM_petlist_bounds: 0 359 +OCN_petlist_bounds: 360 479 +ICE_petlist_bounds: +WAV_petlist_bounds: 480 599 +CHM_petlist_bounds: 0 239 +MED_petlist_bounds: 0 239 +AQM_petlist_bounds: 0 239 +LND_petlist_bounds: +UFS_tasks : 600 +COMPILING hafs_mom6w_intel +ATM_petlist_bounds: 0 359 +OCN_petlist_bounds: 360 479 +ICE_petlist_bounds: +WAV_petlist_bounds: 480 599 +CHM_petlist_bounds: 0 239 +MED_petlist_bounds: 0 239 +AQM_petlist_bounds: 0 239 +LND_petlist_bounds: +UFS_tasks : 600 +COMPILING hafs_all_intel +ATM_petlist_bounds: 0 299 +OCN_petlist_bounds: 300 359 +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 239 +MED_petlist_bounds: 0 239 +AQM_petlist_bounds: 0 239 +LND_petlist_bounds: +UFS_tasks : 360 +ATM_petlist_bounds: 0 299 +OCN_petlist_bounds: 300 359 +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 239 +MED_petlist_bounds: 0 239 +AQM_petlist_bounds: 0 239 +LND_petlist_bounds: +UFS_tasks : 360 +ATM_petlist_bounds: 0 59 +OCN_petlist_bounds: 60 119 +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 59 +MED_petlist_bounds: 0 59 +AQM_petlist_bounds: 0 59 +LND_petlist_bounds: +UFS_tasks : 120 +COMPILING datm_cdeps_intel +ATM_petlist_bounds: 0 11 +OCN_petlist_bounds: 12 27 +ICE_petlist_bounds: 28 39 +WAV_petlist_bounds: +CHM_petlist_bounds: 0 11 +MED_petlist_bounds: 0 11 +AQM_petlist_bounds: 0 11 +LND_petlist_bounds: +UFS_tasks : 40 +ATM_petlist_bounds: 0 11 +OCN_petlist_bounds: 12 27 +ICE_petlist_bounds: 28 39 +WAV_petlist_bounds: +CHM_petlist_bounds: 0 11 +MED_petlist_bounds: 0 11 +AQM_petlist_bounds: 0 11 +LND_petlist_bounds: +UFS_tasks : 40 +ATM_petlist_bounds: 0 11 +OCN_petlist_bounds: 12 27 +ICE_petlist_bounds: 28 39 +WAV_petlist_bounds: +CHM_petlist_bounds: 0 11 +MED_petlist_bounds: 0 11 +AQM_petlist_bounds: 0 11 +LND_petlist_bounds: +UFS_tasks : 40 +ATM_petlist_bounds: 0 11 +OCN_petlist_bounds: 12 27 +ICE_petlist_bounds: 28 39 +WAV_petlist_bounds: +CHM_petlist_bounds: 0 11 +MED_petlist_bounds: 0 11 +AQM_petlist_bounds: 0 11 +LND_petlist_bounds: +UFS_tasks : 40 +ATM_petlist_bounds: 0 11 +OCN_petlist_bounds: 12 27 +ICE_petlist_bounds: 28 39 +WAV_petlist_bounds: +CHM_petlist_bounds: 0 11 +MED_petlist_bounds: 0 11 +AQM_petlist_bounds: 0 11 +LND_petlist_bounds: +UFS_tasks : 40 +ATM_petlist_bounds: 0 11 +OCN_petlist_bounds: 12 27 +ICE_petlist_bounds: 28 39 +WAV_petlist_bounds: +CHM_petlist_bounds: 0 11 +MED_petlist_bounds: 0 11 +AQM_petlist_bounds: 0 11 +LND_petlist_bounds: +UFS_tasks : 40 +ATM_petlist_bounds: 0 11 +OCN_petlist_bounds: 12 27 +ICE_petlist_bounds: 28 39 +WAV_petlist_bounds: +CHM_petlist_bounds: 0 11 +MED_petlist_bounds: 0 11 +AQM_petlist_bounds: 0 11 +LND_petlist_bounds: +UFS_tasks : 40 +ATM_petlist_bounds: 0 11 +OCN_petlist_bounds: 12 27 +ICE_petlist_bounds: 28 39 +WAV_petlist_bounds: +CHM_petlist_bounds: 0 11 +MED_petlist_bounds: 0 11 +AQM_petlist_bounds: 0 11 +LND_petlist_bounds: +UFS_tasks : 40 +ATM_petlist_bounds: 0 39 +OCN_petlist_bounds: 40 159 +ICE_petlist_bounds: 160 207 +WAV_petlist_bounds: +CHM_petlist_bounds: 0 39 +MED_petlist_bounds: 0 39 +AQM_petlist_bounds: 0 39 +LND_petlist_bounds: +UFS_tasks : 208 +ATM_petlist_bounds: 0 39 +OCN_petlist_bounds: 40 159 +ICE_petlist_bounds: 160 207 +WAV_petlist_bounds: +CHM_petlist_bounds: 0 39 +MED_petlist_bounds: 0 39 +AQM_petlist_bounds: 0 39 +LND_petlist_bounds: +UFS_tasks : 208 +ATM_petlist_bounds: 0 11 +OCN_petlist_bounds: 12 27 +ICE_petlist_bounds: 28 39 +WAV_petlist_bounds: +CHM_petlist_bounds: 0 11 +MED_petlist_bounds: 0 11 +AQM_petlist_bounds: 0 11 +LND_petlist_bounds: +UFS_tasks : 40 +ATM_petlist_bounds: 0 11 +OCN_petlist_bounds: 12 27 +ICE_petlist_bounds: 28 39 +WAV_petlist_bounds: +CHM_petlist_bounds: 0 11 +MED_petlist_bounds: 0 11 +AQM_petlist_bounds: 0 11 +LND_petlist_bounds: +UFS_tasks : 40 +ATM_petlist_bounds: 0 11 +OCN_petlist_bounds: 12 27 +ICE_petlist_bounds: 28 39 +WAV_petlist_bounds: +CHM_petlist_bounds: 0 11 +MED_petlist_bounds: 0 11 +AQM_petlist_bounds: 0 11 +LND_petlist_bounds: +UFS_tasks : 40 +COMPILING datm_cdeps_debug_intel +ATM_petlist_bounds: 0 11 +OCN_petlist_bounds: 12 27 +ICE_petlist_bounds: 28 39 +WAV_petlist_bounds: +CHM_petlist_bounds: 0 11 +MED_petlist_bounds: 0 11 +AQM_petlist_bounds: 0 11 +LND_petlist_bounds: +UFS_tasks : 40 +COMPILING datm_cdeps_faster_intel +ATM_petlist_bounds: 0 11 +OCN_petlist_bounds: 12 27 +ICE_petlist_bounds: 28 39 +WAV_petlist_bounds: +CHM_petlist_bounds: 0 11 +MED_petlist_bounds: 0 11 +AQM_petlist_bounds: 0 11 +LND_petlist_bounds: +UFS_tasks : 40 +COMPILING datm_cdeps_land_intel +ATM_petlist_bounds: 0 143 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: 144 287 +UFS_tasks : 288 +ATM_petlist_bounds: 0 143 +OCN_petlist_bounds: 144 159 +ICE_petlist_bounds: 160 171 +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: 172 315 +UFS_tasks : 316 +ATM_petlist_bounds: 0 143 +OCN_petlist_bounds: 144 159 +ICE_petlist_bounds: 160 171 +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: 172 315 +UFS_tasks : 316 +COMPILING atml_intel +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: 150 293 +UFS_tasks : 294 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: 150 293 +UFS_tasks : 294 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: 150 293 +UFS_tasks : 294 +COMPILING atmw_intel +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: 150 179 +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 180 +COMPILING atmwm_intel +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: 150 179 +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 180 +COMPILING atmaero_intel +ATM_petlist_bounds: 0 197 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 191 +MED_petlist_bounds: 0 191 +AQM_petlist_bounds: 0 191 +LND_petlist_bounds: +UFS_tasks : 198 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +COMPILING atmaq_intel +COMPILING atmaq_debug_intel +ATM_petlist_bounds: 0 271 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 263 +MED_petlist_bounds: 0 263 +AQM_petlist_bounds: 0 263 +LND_petlist_bounds: +UFS_tasks : 272 +COMPILING atm_gnu +ATM_petlist_bounds: 0 7 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 5 +MED_petlist_bounds: 0 5 +AQM_petlist_bounds: 0 5 +LND_petlist_bounds: +UFS_tasks : 8 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +COMPILING rrfs_gnu +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 155 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 156 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 155 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 156 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +COMPILING atm_dyn32_debug_gnu +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 119 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 109 +MED_petlist_bounds: 0 109 +AQM_petlist_bounds: 0 109 +LND_petlist_bounds: +UFS_tasks : 120 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +COMPILING wam_debug_gnu +COMPILING rrfs_dyn32_phy32_gnu +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 155 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 156 +ATM_petlist_bounds: 0 155 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 156 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 299 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 287 +MED_petlist_bounds: 0 287 +AQM_petlist_bounds: 0 287 +LND_petlist_bounds: +UFS_tasks : 300 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +COMPILING atm_dyn64_phy32_gnu +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +COMPILING atm_dyn32_phy32_debug_gnu +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +ATM_petlist_bounds: 0 299 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 287 +MED_petlist_bounds: 0 287 +AQM_petlist_bounds: 0 287 +LND_petlist_bounds: +UFS_tasks : 300 +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +COMPILING atm_dyn64_phy32_debug_gnu +ATM_petlist_bounds: 0 149 +OCN_petlist_bounds: +ICE_petlist_bounds: +WAV_petlist_bounds: +CHM_petlist_bounds: 0 143 +MED_petlist_bounds: 0 143 +AQM_petlist_bounds: 0 143 +LND_petlist_bounds: +UFS_tasks : 150 +COMPILING s2swa_gnu +COMPILING s2s_gnu +COMPILING s2swa_debug_gnu +COMPILING s2sw_pdlib_gnu +COMPILING s2sw_pdlib_debug_gnu +COMPILING datm_cdeps_gnu +ping server(hercules-login-1.hpc.msstate.edu:11198) succeeded in 00:00:00.005473 ~5 milliseconds +ecflow_server is already running on hercules-login-1.hpc.msstate.edu:11198 +ecflow tasks remaining: 293 +ecflow tasks remaining: 293 +ecflow tasks remaining: 293 +ecflow tasks remaining: 293 +ecflow tasks remaining: 293 +ecflow tasks remaining: 293 +ecflow tasks remaining: 293 +ecflow tasks remaining: 293 +ecflow tasks remaining: 293 +ecflow tasks remaining: 293 +ecflow tasks remaining: 293 +ecflow tasks remaining: 293 +ecflow tasks remaining: 293 +ecflow tasks remaining: 293 +ecflow tasks remaining: 293 +ecflow tasks remaining: 293 +ecflow tasks remaining: 293 +ecflow tasks remaining: 293 +ecflow tasks remaining: 293 +ecflow tasks remaining: 293 +ecflow tasks remaining: 293 +ecflow tasks remaining: 293 +ecflow tasks remaining: 293 +ecflow tasks remaining: 293 +ecflow tasks remaining: 293 +ecflow tasks remaining: 293 +ecflow tasks remaining: 293 +ecflow tasks remaining: 293 +ecflow tasks remaining: 293 +ecflow tasks remaining: 293 +ecflow tasks remaining: 293 +ecflow tasks remaining: 293 +ecflow tasks remaining: 293 +ecflow tasks remaining: 292 +ecflow tasks remaining: 292 +ecflow tasks remaining: 292 +ecflow tasks remaining: 292 +ecflow tasks remaining: 292 +ecflow tasks remaining: 290 +ecflow tasks remaining: 290 +ecflow tasks remaining: 290 +ecflow tasks remaining: 290 +ecflow tasks remaining: 290 +ecflow tasks remaining: 290 +ecflow tasks remaining: 290 +ecflow tasks remaining: 290 +ecflow tasks remaining: 290 +ecflow tasks remaining: 290 +ecflow tasks remaining: 290 +ecflow tasks remaining: 290 +ecflow tasks remaining: 290 +ecflow tasks remaining: 290 +ecflow tasks remaining: 290 +ecflow tasks remaining: 290 +ecflow tasks remaining: 290 +ecflow tasks remaining: 290 +ecflow tasks remaining: 290 +ecflow tasks remaining: 290 +ecflow tasks remaining: 289 +ecflow tasks remaining: 287 +ecflow tasks remaining: 287 +ecflow tasks remaining: 286 +ecflow tasks remaining: 286 +ecflow tasks remaining: 285 +ecflow tasks remaining: 285 +ecflow tasks remaining: 285 +ecflow tasks remaining: 285 +ecflow tasks remaining: 285 +ecflow tasks remaining: 285 +ecflow tasks remaining: 285 +ecflow tasks remaining: 285 +ecflow tasks remaining: 285 +ecflow tasks remaining: 284 +ecflow tasks remaining: 284 +ecflow tasks remaining: 283 +ecflow tasks remaining: 282 +ecflow tasks remaining: 282 +ecflow tasks remaining: 282 +ecflow tasks remaining: 282 +ecflow tasks remaining: 282 +ecflow tasks remaining: 282 +ecflow tasks remaining: 282 +ecflow tasks remaining: 282 +ecflow tasks remaining: 282 +ecflow tasks remaining: 282 +ecflow tasks remaining: 282 +ecflow tasks remaining: 282 +ecflow tasks remaining: 282 +ecflow tasks remaining: 245 +ecflow tasks remaining: 245 +ecflow tasks remaining: 245 +ecflow tasks remaining: 244 +ecflow tasks remaining: 244 +ecflow tasks remaining: 243 +ecflow tasks remaining: 243 +ecflow tasks remaining: 243 From b91a8c15f40c173b599f74efcfb1366ff3270e78 Mon Sep 17 00:00:00 2001 From: JONG KIM Date: Tue, 19 Mar 2024 10:29:51 -0400 Subject: [PATCH 67/76] Update repo_check.sh: fix path and branch names --- tests/ci/repo_check.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/ci/repo_check.sh b/tests/ci/repo_check.sh index e8a10e09a4..04a44585ed 100755 --- a/tests/ci/repo_check.sh +++ b/tests/ci/repo_check.sh @@ -44,7 +44,7 @@ stoch[branch]='master' stoch[dir]='stochastic_physics' gocart[repo]='https://github.com/GEOS-ESM/GOCART' -gocart[branch]='main' +gocart[branch]='develop' gocart[dir]='GOCART' cmeps[repo]='https://github.com/NOAA-EMC/CMEPS' @@ -65,19 +65,19 @@ cmake[dir]='CMakeModules' ccpp-framework[repo]='https://github.com/NCAR/ccpp-framework' ccpp-framework[branch]='main' -ccpp-framework[dir]='ccpp/framework' +ccpp-framework[dir]='FV3/ccpp/framework' ccpp-physics[repo]='https://github.com/ufs-community/ccpp-physics' ccpp-physics[branch]='ufs/dev' -ccpp-physics[dir]='ccpp/physics' +ccpp-physics[dir]='FV3/ccpp/physics' #upp[repo]='https://github.com/NOAA-EMC/UPP' #upp[branch]='develop' #upp[dir]='upp' atmos_cubed_sphere[repo]='https://github.com/NOAA-GFDL/GFDL_atmos_cubed_sphere' -atmos_cubed_sphere[branch]='main' -atmos_cubed_sphere[dir]='atmos_cubed_sphere' +atmos_cubed_sphere[branch]='dev/emc' +atmos_cubed_sphere[dir]='FV3/atmos_cubed_sphere' # Get sha-1's of the top of develop of ufs-weather-model app="Accept: application/vnd.github.v3+json" From a0c8f70021b9cc6fdb371b6a75713140cd32e0b9 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Tue, 19 Mar 2024 14:30:53 +0000 Subject: [PATCH 68/76] WCOSS2 RT Log: Pass --- tests/logs/RegressionTests_wcoss2.log | 458 +++++++++++++------------- 1 file changed, 229 insertions(+), 229 deletions(-) diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 58db38592f..5346ff3eb9 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -0939a1dff2a2060b541eca9642a19c5ed1541f17 +7908de2724b95cab917b6b6c3d059c66cb8bdaa7 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308) + 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch) 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459) - 87e6d92e2ca48a55b66f8810f347b51c70c193c4 FV3/ccpp/framework (v0.1.0-1436-g87e6d92) - 2f15ae92802cae11fd0efb902439a084609984f3 FV3/ccpp/physics (EP4-695-g2f15ae92) + 7384d92b6c2897be4f29ad4a3747f66762631574 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-703-g7384d92) + 94596b3823c40ea33255121220dac4463e8ccef5 FV3/ccpp/physics (EP4-737-g94596b38) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -26,19 +26,19 @@ Submodule hashes used in testing: 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) + 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705) 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308) + 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) + 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705) NOTES: @@ -48,235 +48,235 @@ 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-20240315 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_259455 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10549 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [16:03, 15:20] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [53:17, 01:28](2974 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:57, 11:47] -PASS -- TEST 'cpld_control_gfsv17_intel' [56:21, 02:13](1590 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [37:41, 02:06](1710 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [37:21, 01:22](846 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [56:22, 01:44](1564 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:22, 04:22] -PASS -- TEST 'cpld_debug_gfsv17_intel' [03:58, 01:44](1609 MB) - -PASS -- COMPILE 's2swa_intel' [11:53, 11:07] -PASS -- TEST 'cpld_control_p8_intel' [57:26, 01:50](3005 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [57:26, 02:21](3004 MB) -PASS -- TEST 'cpld_restart_p8_intel' [48:24, 01:45](3060 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [57:26, 01:50](3027 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [48:24, 01:42](3081 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [57:26, 01:22](3314 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [57:26, 01:43](3000 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [57:27, 01:46](2925 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [57:26, 02:07](3003 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [57:35, 03:30](3955 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [39:00, 04:30](4255 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [57:26, 02:17](2967 MB) - -PASS -- COMPILE 's2sw_intel' [21:13, 20:46] -PASS -- TEST 'cpld_control_noaero_p8_intel' [48:06, 00:48](1588 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [48:06, 01:58](1637 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [23:17, 22:22] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [46:01, 00:57](1634 MB) - -PASS -- COMPILE 's2s_intel' [10:51, 09:41] -PASS -- TEST 'cpld_control_c48_intel' [58:28, 00:43](2652 MB) - -PASS -- COMPILE 's2swa_faster_intel' [32:40, 31:36] -PASS -- TEST 'cpld_control_p8_faster_intel' [36:22, 01:57](3002 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:03, 15:27] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [53:17, 01:26](1607 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [35:39, 01:33](900 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:04, 00:46](1580 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:21, 04:10] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [03:59, 01:37](1612 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [22:07, 21:33] -PASS -- TEST 'control_flake_intel' [41:50, 00:24](574 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [41:50, 00:48](523 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [41:50, 00:44](529 MB) -PASS -- TEST 'control_latlon_intel' [41:50, 00:46](522 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [41:50, 00:51](523 MB) -PASS -- TEST 'control_c48_intel' [41:49, 00:57](713 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [41:49, 00:58](714 MB) -PASS -- TEST 'control_c192_intel' [41:50, 00:27](636 MB) -PASS -- TEST 'control_c384_intel' [41:54, 01:59](957 MB) -PASS -- TEST 'control_c384gdas_intel' [41:54, 02:34](1087 MB) -PASS -- TEST 'control_stochy_intel' [41:50, 00:27](529 MB) -PASS -- TEST 'control_stochy_restart_intel' [39:25, 00:58](333 MB) -PASS -- TEST 'control_lndp_intel' [41:50, 00:31](528 MB) -PASS -- TEST 'control_iovr4_intel' [41:50, 00:45](522 MB) -PASS -- TEST 'control_iovr5_intel' [41:50, 00:44](523 MB) -PASS -- TEST 'control_p8_intel' [41:50, 01:57](1500 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [41:50, 02:01](1502 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [41:50, 02:04](1507 MB) -PASS -- TEST 'control_restart_p8_intel' [36:18, 01:22](692 MB) -PASS -- TEST 'control_noqr_p8_intel' [41:31, 01:38](1504 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [36:16, 01:22](700 MB) -PASS -- TEST 'control_decomp_p8_intel' [41:22, 01:32](1495 MB) -PASS -- TEST 'control_2threads_p8_intel' [41:22, 01:13](1589 MB) -PASS -- TEST 'control_p8_lndp_intel' [40:14, 01:19](1511 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [39:30, 01:01](1568 MB) -PASS -- TEST 'control_p8_mynn_intel' [39:26, 01:50](1517 MB) -PASS -- TEST 'merra2_thompson_intel' [38:23, 01:42](1512 MB) -PASS -- TEST 'regional_control_intel' [38:19, 00:25](608 MB) -PASS -- TEST 'regional_restart_intel' [32:26, 00:25](777 MB) -PASS -- TEST 'regional_decomp_intel' [38:19, 00:10](608 MB) -PASS -- TEST 'regional_2threads_intel' [38:19, 01:15](665 MB) -PASS -- TEST 'regional_noquilt_intel' [38:15, 00:33](1154 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [38:11, 00:33](609 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [38:08, 00:22](610 MB) -PASS -- TEST 'regional_wofs_intel' [37:56, 01:05](1579 MB) - -PASS -- COMPILE 'rrfs_intel' [33:32, 32:40] -PASS -- TEST 'rap_control_intel' [30:25, 01:20](919 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [30:26, 01:12](1095 MB) -PASS -- TEST 'rap_decomp_intel' [30:25, 01:40](917 MB) -PASS -- TEST 'rap_2threads_intel' [30:25, 01:58](1006 MB) -PASS -- TEST 'rap_restart_intel' [21:45, 01:22](786 MB) -PASS -- TEST 'rap_sfcdiff_intel' [30:25, 01:21](912 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [30:25, 01:40](916 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [21:46, 01:50](787 MB) -PASS -- TEST 'hrrr_control_intel' [30:25, 01:10](909 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [30:25, 01:07](910 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [30:26, 01:34](998 MB) -PASS -- TEST 'hrrr_control_restart_intel' [25:13, 01:05](739 MB) -PASS -- TEST 'rrfs_v1beta_intel' [30:25, 01:19](912 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [30:25, 01:09](1881 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [30:01, 00:29](1861 MB) - -PASS -- COMPILE 'csawmg_intel' [18:52, 18:25] -PASS -- TEST 'control_csawmg_intel' [37:43, 00:45](600 MB) -PASS -- TEST 'control_csawmgt_intel' [36:59, 00:49](600 MB) -PASS -- TEST 'control_ras_intel' [36:56, 01:00](560 MB) - -PASS -- COMPILE 'wam_intel' [16:47, 16:12] -PASS -- TEST 'control_wam_intel' [36:16, 00:54](272 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:38, 12:14] -PASS -- TEST 'control_p8_faster_intel' [43:44, 02:09](1505 MB) -PASS -- TEST 'regional_control_faster_intel' [43:43, 00:29](611 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [25:07, 23:53] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [28:09, 01:21](689 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [28:09, 00:29](689 MB) -PASS -- TEST 'control_stochy_debug_intel' [28:09, 01:01](693 MB) -PASS -- TEST 'control_lndp_debug_intel' [28:09, 01:17](692 MB) -PASS -- TEST 'control_csawmg_debug_intel' [28:09, 00:42](730 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [28:09, 00:44](732 MB) -PASS -- TEST 'control_ras_debug_intel' [27:26, 01:11](702 MB) -PASS -- TEST 'control_diag_debug_intel' [27:15, 01:14](746 MB) -PASS -- TEST 'control_debug_p8_intel' [27:08, 01:11](1521 MB) -PASS -- TEST 'regional_debug_intel' [25:12, 00:09](629 MB) -PASS -- TEST 'rap_control_debug_intel' [25:13, 01:00](1077 MB) -PASS -- TEST 'hrrr_control_debug_intel' [25:09, 01:08](1068 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [24:19, 01:03](1073 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [24:11, 01:01](1072 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [23:55, 01:00](1075 MB) -PASS -- TEST 'rap_diag_debug_intel' [23:29, 00:56](1158 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [23:28, 00:53](1073 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [23:26, 00:53](1073 MB) -PASS -- TEST 'rap_lndp_debug_intel' [22:55, 00:56](1078 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [22:40, 01:00](1077 MB) -PASS -- TEST 'rap_noah_debug_intel' [22:20, 01:08](1074 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [22:10, 01:00](1077 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [22:10, 01:01](1075 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [21:58, 01:03](1067 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [21:49, 01:13](1077 MB) -PASS -- TEST 'rap_flake_debug_intel' [21:45, 00:59](1074 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [21:43, 01:20](1078 MB) - -PASS -- COMPILE 'wam_debug_intel' [18:53, 18:36] -PASS -- TEST 'control_wam_debug_intel' [33:59, 00:58](297 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [23:12, 22:19] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:11, 01:23](950 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:10, 01:33](789 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [10:10, 01:38](788 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:10, 02:02](855 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:11, 01:32](842 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:10, 01:30](786 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [02:25, 01:14](687 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:57, 00:21](666 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:52, 17:42] -PASS -- TEST 'conus13km_control_intel' [21:14, 01:07](1006 MB) -PASS -- TEST 'conus13km_2threads_intel' [17:20, 00:58](1008 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [17:19, 00:49](882 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:47, 14:44] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [21:09, 01:32](812 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:22, 04:31] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [36:16, 01:10](954 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [36:15, 00:16](954 MB) -PASS -- TEST 'conus13km_debug_intel' [35:41, 00:52](1037 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [35:03, 00:31](708 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [34:00, 00:40](1037 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [33:27, 00:44](1105 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [23:11, 22:28] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [17:26, 01:06](980 MB) - -PASS -- COMPILE 'hafsw_intel' [23:06, 22:31] -PASS -- TEST 'hafs_regional_atm_intel' [16:33, 02:15](621 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [16:33, 00:35](967 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [16:31, 01:45](665 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:31, 01:48](697 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:32, 01:47](709 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [16:22, 01:06](389 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [16:19, 02:13](412 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [16:08, 01:25](279 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:50, 02:27](369 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [15:45, 01:27](414 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [15:35, 00:52](425 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [15:26, 00:56](487 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [15:20, 01:12](310 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:21, 04:59] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [31:21, 00:50](499 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [22:07, 21:01] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:23, 00:55](527 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:23, 00:47](711 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:48, 15:24] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [18:38, 01:04](713 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:41, 12:01] -PASS -- TEST 'hafs_regional_docn_intel' [18:37, 01:19](661 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [18:37, 01:14](644 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:35, 00:44](881 MB) - -PASS -- COMPILE 'atml_intel' [13:43, 13:05] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [16:42, 01:12](1551 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [16:42, 02:15](1547 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:54, 00:21](748 MB) - -PASS -- COMPILE 'atmaero_intel' [18:55, 18:30] -PASS -- TEST 'atmaero_control_p8_intel' [09:14, 01:42](2848 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:14, 01:04](2911 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:14, 01:46](2926 MB) - -PASS -- COMPILE 'atmaq_intel' [19:00, 17:59] - -PASS -- COMPILE 'atmaq_debug_intel' [07:26, 07:00] -PASS -- TEST 'regional_atmaq_debug_intel' [19:43, 01:40](4438 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:35, 11:04] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [41:51, 01:19](2974 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [39:46, 38:52] +PASS -- TEST 'cpld_control_gfsv17_intel' [13:39, 02:31](1586 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [54:55, 01:56](1708 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [54:55, 02:10](847 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [13:40, 02:17](1577 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:34, 10:22] +PASS -- TEST 'cpld_debug_gfsv17_intel' [41:53, 01:15](1604 MB) + +PASS -- COMPILE 's2swa_intel' [19:55, 18:56] +PASS -- TEST 'cpld_control_p8_intel' [33:30, 01:29](3002 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [33:30, 01:34](3002 MB) +PASS -- TEST 'cpld_restart_p8_intel' [24:57, 02:02](3059 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [33:30, 01:26](3028 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [24:57, 01:55](3082 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [33:30, 00:59](3317 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [33:30, 01:32](2999 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [33:31, 01:24](2925 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [33:30, 01:38](3002 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [33:39, 05:02](3952 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:50, 04:24](4254 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [33:30, 01:50](2970 MB) + +PASS -- COMPILE 's2sw_intel' [10:32, 10:05] +PASS -- TEST 'cpld_control_noaero_p8_intel' [42:53, 00:59](1584 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [42:53, 01:08](1635 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [24:04, 23:22] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [29:21, 02:01](1634 MB) + +PASS -- COMPILE 's2s_intel' [27:10, 26:15] +PASS -- TEST 'cpld_control_c48_intel' [26:00, 00:50](2657 MB) + +PASS -- COMPILE 's2swa_faster_intel' [28:13, 27:56] +PASS -- TEST 'cpld_control_p8_faster_intel' [24:57, 01:47](3003 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [11:35, 10:52] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [41:51, 01:30](1602 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [24:01, 01:43](901 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:37, 01:04](1568 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:20, 04:18] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [48:06, 01:08](1623 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [18:50, 18:04] +PASS -- TEST 'control_flake_intel' [29:13, 00:25](570 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [29:13, 00:48](518 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [29:13, 00:43](531 MB) +PASS -- TEST 'control_latlon_intel' [29:13, 00:40](525 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [29:13, 00:49](521 MB) +PASS -- TEST 'control_c48_intel' [29:12, 00:57](716 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [29:12, 00:57](714 MB) +PASS -- TEST 'control_c192_intel' [29:13, 00:35](639 MB) +PASS -- TEST 'control_c384_intel' [29:17, 01:53](954 MB) +PASS -- TEST 'control_c384gdas_intel' [29:17, 02:36](1093 MB) +PASS -- TEST 'control_stochy_intel' [29:13, 00:24](535 MB) +PASS -- TEST 'control_stochy_restart_intel' [26:45, 01:01](332 MB) +PASS -- TEST 'control_lndp_intel' [29:13, 00:26](527 MB) +PASS -- TEST 'control_iovr4_intel' [29:13, 00:43](524 MB) +PASS -- TEST 'control_iovr5_intel' [29:13, 00:39](524 MB) +PASS -- TEST 'control_p8_intel' [29:13, 01:57](1501 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [29:13, 01:58](1499 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [29:13, 01:59](1510 MB) +PASS -- TEST 'control_restart_p8_intel' [23:37, 00:54](689 MB) +PASS -- TEST 'control_noqr_p8_intel' [26:45, 01:29](1488 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [21:33, 00:58](695 MB) +PASS -- TEST 'control_decomp_p8_intel' [26:01, 01:35](1497 MB) +PASS -- TEST 'control_2threads_p8_intel' [25:43, 00:52](1593 MB) +PASS -- TEST 'control_p8_lndp_intel' [25:41, 01:20](1510 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [25:40, 01:06](1566 MB) +PASS -- TEST 'control_p8_mynn_intel' [25:40, 01:53](1513 MB) +PASS -- TEST 'merra2_thompson_intel' [25:36, 01:36](1510 MB) +PASS -- TEST 'regional_control_intel' [25:32, 00:20](609 MB) +PASS -- TEST 'regional_restart_intel' [19:37, 00:29](776 MB) +PASS -- TEST 'regional_decomp_intel' [24:54, 01:04](606 MB) +PASS -- TEST 'regional_2threads_intel' [24:45, 01:02](666 MB) +PASS -- TEST 'regional_noquilt_intel' [24:44, 00:33](1145 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [24:38, 00:28](608 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [24:11, 00:15](610 MB) +PASS -- TEST 'regional_wofs_intel' [23:33, 01:01](1584 MB) + +PASS -- COMPILE 'rrfs_intel' [13:42, 12:32] +PASS -- TEST 'rap_control_intel' [22:24, 01:22](920 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [22:24, 01:16](1092 MB) +PASS -- TEST 'rap_decomp_intel' [21:36, 02:08](917 MB) +PASS -- TEST 'rap_2threads_intel' [21:33, 01:34](1010 MB) +PASS -- TEST 'rap_restart_intel' [13:41, 01:19](785 MB) +PASS -- TEST 'rap_sfcdiff_intel' [20:52, 01:17](913 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [20:51, 01:59](912 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [12:18, 01:58](788 MB) +PASS -- TEST 'hrrr_control_intel' [20:16, 01:16](913 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [20:11, 01:09](910 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [20:06, 01:24](987 MB) +PASS -- TEST 'hrrr_control_restart_intel' [15:00, 01:08](741 MB) +PASS -- TEST 'rrfs_v1beta_intel' [19:52, 01:22](914 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [19:48, 01:09](1876 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [19:07, 00:28](1860 MB) + +PASS -- COMPILE 'csawmg_intel' [23:01, 22:26] +PASS -- TEST 'control_csawmg_intel' [18:49, 00:32](599 MB) +PASS -- TEST 'control_csawmgt_intel' [18:43, 00:40](599 MB) +PASS -- TEST 'control_ras_intel' [18:39, 00:49](561 MB) + +PASS -- COMPILE 'wam_intel' [22:02, 21:34] +PASS -- TEST 'control_wam_intel' [18:18, 00:57](273 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [30:26, 29:18] +PASS -- TEST 'control_p8_faster_intel' [11:25, 02:03](1510 MB) +PASS -- TEST 'regional_control_faster_intel' [11:19, 00:29](611 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [21:02, 20:46] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:49, 01:18](687 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [12:27, 01:25](690 MB) +PASS -- TEST 'control_stochy_debug_intel' [12:23, 00:54](694 MB) +PASS -- TEST 'control_lndp_debug_intel' [11:56, 01:12](695 MB) +PASS -- TEST 'control_csawmg_debug_intel' [11:31, 00:43](736 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [11:20, 00:47](735 MB) +PASS -- TEST 'control_ras_debug_intel' [10:55, 01:10](700 MB) +PASS -- TEST 'control_diag_debug_intel' [10:52, 01:15](746 MB) +PASS -- TEST 'control_debug_p8_intel' [10:15, 01:07](1519 MB) +PASS -- TEST 'regional_debug_intel' [10:01, 01:08](629 MB) +PASS -- TEST 'rap_control_debug_intel' [09:14, 01:01](1079 MB) +PASS -- TEST 'hrrr_control_debug_intel' [09:14, 01:04](1068 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [09:14, 00:59](1073 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [09:02, 01:01](1074 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:21, 00:58](1074 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:09, 00:55](1163 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:54, 00:53](1072 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:43, 00:50](1073 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:37, 00:55](1078 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:25, 01:06](1074 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:56, 01:08](1074 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:55, 01:04](1071 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [06:46, 00:49](1071 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 01:10](1066 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:15, 01:14](1075 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:55, 01:03](1073 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [05:39, 01:35](1077 MB) + +PASS -- COMPILE 'wam_debug_intel' [13:43, 13:23] +PASS -- TEST 'control_wam_debug_intel' [15:37, 00:59](301 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:43, 14:08] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [14:31, 01:20](955 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [14:30, 01:18](790 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [14:30, 01:43](785 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [14:30, 01:50](856 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:31, 02:01](843 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [14:30, 01:35](788 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:33, 01:45](687 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:31, 00:15](667 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [20:58, 20:25] +PASS -- TEST 'conus13km_control_intel' [05:30, 01:05](1006 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:28, 00:54](1006 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:25, 00:42](879 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:56, 16:17] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:29, 01:30](809 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:22, 03:57] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [18:16, 01:17](954 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [18:02, 00:17](952 MB) +PASS -- TEST 'conus13km_debug_intel' [18:02, 00:43](1037 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:57, 00:35](713 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [17:40, 00:48](1038 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:35, 00:34](1104 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:27, 07:01] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [13:22, 01:07](979 MB) + +PASS -- COMPILE 'hafsw_intel' [14:48, 13:37] +PASS -- TEST 'hafs_regional_atm_intel' [03:40, 02:08](619 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [03:19, 01:20](968 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [03:05, 02:01](662 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [02:37, 01:37](690 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [02:38, 01:27](707 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [02:37, 01:16](388 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [02:28, 02:12](408 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [01:50, 01:19](289 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [01:38, 02:20](371 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [01:34, 01:35](414 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [01:20, 00:50](414 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [01:14, 01:54](491 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:05, 01:08](314 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:33, 09:49] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [00:46, 01:05](502 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [14:47, 13:52] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [00:21, 00:52](526 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [00:21, 00:49](707 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:42, 12:52] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [00:16, 00:59](712 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:42, 14:18] +PASS -- TEST 'hafs_regional_docn_intel' [58:57, 01:14](660 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [58:57, 02:11](649 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [58:55, 00:38](880 MB) + +PASS -- COMPILE 'atml_intel' [21:59, 21:38] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [51:24, 02:29](1539 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [51:24, 02:34](1553 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [43:16, 01:16](744 MB) + +PASS -- COMPILE 'atmaero_intel' [14:46, 13:35] +PASS -- TEST 'atmaero_control_p8_intel' [57:41, 01:37](2849 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [57:41, 01:02](2911 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [57:41, 01:51](2926 MB) + +PASS -- COMPILE 'atmaq_intel' [15:48, 14:48] + +PASS -- COMPILE 'atmaq_debug_intel' [11:39, 10:56] +PASS -- TEST 'regional_atmaq_debug_intel' [57:42, 01:13](4434 MB) SYNOPSIS: -Starting Date/Time: 20240315 18:50:23 -Ending Date/Time: 20240315 20:07:29 -Total Time: 01h:17m:44s +Starting Date/Time: 20240319 13:06:16 +Ending Date/Time: 20240319 14:29:03 +Total Time: 01h:23m:32s Compiles Completed: 31/31 Tests Completed: 157/157 From a1fbd3d96a96b14f663bd5ab0126111016846c06 Mon Sep 17 00:00:00 2001 From: zach1221 Date: Tue, 19 Mar 2024 09:47:39 -0500 Subject: [PATCH 69/76] add hercules RT logs: passed --- tests/logs/RegressionTests_hercules.log | 716 ++++++++++++------------ 1 file changed, 358 insertions(+), 358 deletions(-) diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index bb954465fb..3de3fa4b14 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7 +1,7 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -818ea1590078efdc8c6b0089acfbec656b9c1dca +879e6870478881f0145029af307915a5d57b674d Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308) + 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch) 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459) - 87e6d92e2ca48a55b66f8810f347b51c70c193c4 FV3/ccpp/framework (v0.1.0-1436-g87e6d92) - 2f15ae92802cae11fd0efb902439a084609984f3 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5141-g2f15ae92) + 7384d92b6c2897be4f29ad4a3747f66762631574 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-703-g7384d92) + 94596b3823c40ea33255121220dac4463e8ccef5 FV3/ccpp/physics (remotes/origin/no_arg_mismatch) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -26,19 +26,19 @@ Submodule hashes used in testing: 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) + 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705) 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308) + 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) + 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705) NOTES: @@ -48,365 +48,365 @@ 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-20240315 -COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_3021165 +COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_2844701 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:06, 11:32] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:14, 07:43](1889 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:07, 17:43] -PASS -- TEST 'cpld_control_gfsv17_intel' [16:10, 13:26](1773 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:32, 14:09](2163 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:24, 06:31](1182 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:12, 15:15](1696 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:05, 04:47] -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:12, 20:17](1727 MB) - -PASS -- COMPILE 's2swa_intel' [13:06, 11:05] -PASS -- TEST 'cpld_control_p8_intel' [10:06, 07:41](2066 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:11, 07:40](2079 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:17, 04:23](1978 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:02, 07:35](1970 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:21, 04:21](1738 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [12:09, 09:04](2498 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:06, 07:29](2064 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:15, 06:24](1901 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:13, 07:39](2062 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [18:39, 15:32](2793 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:20, 05:49](2927 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [15:43, 09:01](3631 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:23, 05:28](3612 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [06:59, 04:58](2020 MB) - -PASS -- COMPILE 's2sw_intel' [12:06, 10:41] -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:11, 07:07](1772 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:02, 04:01](1816 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:10] -PASS -- TEST 'cpld_debug_p8_intel' [09:04, 06:53](2043 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:05, 04:37] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:54, 04:42](1805 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:06, 09:14] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:58, 03:59](1817 MB) - -PASS -- COMPILE 's2s_intel' [11:06, 09:19] -PASS -- TEST 'cpld_control_c48_intel' [09:38, 07:13](2816 MB) - -PASS -- COMPILE 's2swa_faster_intel' [15:06, 13:16] -PASS -- TEST 'cpld_control_p8_faster_intel' [10:08, 07:15](2092 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [19:07, 17:09] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:02, 13:50](1806 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:57, 06:56](1278 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:50, 15:37](1729 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:07, 04:34] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:54, 22:05](1766 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:06, 08:11] -PASS -- TEST 'control_flake_intel' [04:20, 02:52](708 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:22, 02:06](667 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:28, 02:10](667 MB) -PASS -- TEST 'control_latlon_intel' [04:20, 02:10](663 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:25, 02:09](664 MB) -PASS -- TEST 'control_c48_intel' [07:26, 05:45](855 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:27, 05:45](856 MB) -PASS -- TEST 'control_c192_intel' [09:32, 07:49](977 MB) -PASS -- TEST 'control_c384_intel' [11:06, 08:22](1456 MB) -PASS -- TEST 'control_c384gdas_intel' [10:59, 07:43](1532 MB) -PASS -- TEST 'control_stochy_intel' [03:20, 01:25](668 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:26, 00:55](528 MB) -PASS -- TEST 'control_lndp_intel' [03:20, 01:21](671 MB) -PASS -- TEST 'control_iovr4_intel' [04:22, 02:07](663 MB) -PASS -- TEST 'control_iovr5_intel' [04:19, 02:09](657 MB) -PASS -- TEST 'control_p8_intel' [04:52, 02:39](1645 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:06, 02:39](1637 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:05, 02:29](1633 MB) -PASS -- TEST 'control_restart_p8_intel' [03:56, 01:24](925 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:50, 02:32](1638 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:55, 01:25](972 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:50, 02:38](1628 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:55, 02:28](1729 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:48, 04:28](1631 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:05, 03:30](1714 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:01, 02:39](1635 MB) -PASS -- TEST 'merra2_thompson_intel' [05:12, 02:59](1660 MB) -PASS -- TEST 'regional_control_intel' [06:31, 04:34](957 MB) -PASS -- TEST 'regional_restart_intel' [04:24, 02:30](1101 MB) -PASS -- TEST 'regional_decomp_intel' [06:26, 04:44](946 MB) -PASS -- TEST 'regional_2threads_intel' [04:32, 03:02](911 MB) -PASS -- TEST 'regional_noquilt_intel' [06:30, 04:22](1487 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:30, 04:31](955 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:30, 04:30](955 MB) -PASS -- TEST 'regional_wofs_intel' [07:28, 05:51](2067 MB) - -PASS -- COMPILE 'rrfs_intel' [09:06, 07:41] -PASS -- TEST 'rap_control_intel' [08:51, 06:37](1192 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:48, 03:26](1416 MB) -PASS -- TEST 'rap_decomp_intel' [08:39, 06:56](1121 MB) -PASS -- TEST 'rap_2threads_intel' [08:34, 06:13](1389 MB) -PASS -- TEST 'rap_restart_intel' [05:52, 03:30](1131 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:38, 06:26](1199 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:33, 06:54](1148 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:01, 04:56](1199 MB) -PASS -- TEST 'hrrr_control_intel' [05:52, 03:25](1062 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:37, 03:37](1057 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:34, 03:13](1111 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:20, 01:50](1019 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:00, 06:32](1186 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:21, 07:41](2014 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:21, 07:38](2202 MB) - -PASS -- COMPILE 'csawmg_intel' [09:06, 07:25] -PASS -- TEST 'control_csawmg_intel' [07:26, 05:20](842 MB) -PASS -- TEST 'control_csawmgt_intel' [07:29, 05:16](817 MB) -PASS -- TEST 'control_ras_intel' [04:16, 02:51](818 MB) - -PASS -- COMPILE 'csawmg_gnu' [06:05, 04:29] -PASS -- TEST 'control_csawmg_gnu' [08:33, 06:33](811 MB) -PASS -- TEST 'control_csawmgt_gnu' [08:25, 06:25](807 MB) - -PASS -- COMPILE 'wam_intel' [08:06, 06:52] -PASS -- TEST 'control_wam_intel' [03:19, 01:54](784 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:05, 10:04] -PASS -- TEST 'control_p8_faster_intel' [04:58, 02:15](1630 MB) -PASS -- TEST 'regional_control_faster_intel' [06:29, 04:09](957 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:05, 03:53] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:19, 02:21](822 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:21, 02:15](828 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:21, 02:32](839 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:19, 02:14](827 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:27, 03:27](878 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [05:23, 03:20](872 MB) -PASS -- TEST 'control_ras_debug_intel' [04:14, 02:18](849 MB) -PASS -- TEST 'control_diag_debug_intel' [04:22, 02:19](888 MB) -PASS -- TEST 'control_debug_p8_intel' [04:30, 02:24](1663 MB) -PASS -- TEST 'regional_debug_intel' [16:31, 14:23](899 MB) -PASS -- TEST 'rap_control_debug_intel' [05:16, 03:58](1218 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:13, 03:53](1217 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:13, 03:59](1222 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:16, 04:04](1237 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:17, 04:02](1215 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:35, 04:08](1296 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:17, 04:05](1216 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:17, 04:03](1228 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:16, 04:02](1219 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:29, 03:58](1220 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:22, 03:56](1213 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:15, 03:56](1230 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:17, 06:26](1217 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:16, 03:56](1220 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:18, 04:51](1219 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:20, 03:58](1215 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:53, 06:54](1226 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:06, 03:37] -PASS -- TEST 'control_csawmg_debug_gnu' [03:29, 01:46](793 MB) -PASS -- TEST 'control_csawmgt_debug_gnu' [03:23, 01:46](790 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:06, 02:38] - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:05, 07:14] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:45, 03:17](1274 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:49, 05:27](1135 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:56, 02:54](1043 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:51, 05:21](1292 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:40, 02:39](1035 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:37, 03:04](975 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:50, 04:17](1101 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:23, 01:39](950 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:07, 09:19] -PASS -- TEST 'conus13km_control_intel' [03:41, 01:43](1295 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:29, 00:44](1200 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:24, 01:04](1152 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:06, 07:06] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:40, 03:45](1074 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:06, 02:57] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:21, 03:57](1102 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:15, 03:59](1088 MB) -PASS -- TEST 'conus13km_debug_intel' [13:30, 11:35](1351 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [13:39, 12:03](998 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:36, 06:41](1231 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:37, 11:40](1391 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:06, 02:58] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:20, 04:01](1154 MB) - -PASS -- COMPILE 'hafsw_intel' [11:08, 09:56] -PASS -- TEST 'hafs_regional_atm_intel' [08:01, 05:23](882 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:17, 05:09](1277 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:10, 06:26](937 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:00, 13:45](980 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:16, 14:49](962 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:52, 05:33](607 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:25, 07:11](614 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:43, 02:54](435 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:12, 07:57](535 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:49, 04:06](616 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:39, 03:43](618 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:42, 04:57](686 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:21, 01:37](454 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:06, 03:15] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:46, 11:14](632 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:06, 11:19] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:57, 16:39](729 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:55, 16:35](811 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:05, 10:19] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:55, 09:44](795 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:05, 09:40] -PASS -- TEST 'hafs_regional_docn_intel' [08:00, 05:26](947 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:02, 05:26](957 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:39, 16:24](1345 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:06, 07:06] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:11, 02:08](1155 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:10, 01:19](1103 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:11, 02:03](1016 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:12, 02:07](1013 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:09, 02:08](1017 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:09, 02:07](1161 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:09, 02:07](1154 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:09, 02:05](1011 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:49, 04:58](1165 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:44, 04:52](1140 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:08, 02:09](1148 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:10, 02:59](2432 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:12, 03:02](2442 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 03:55] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:12, 05:06](1067 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:05, 05:43] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:09, 02:07](1153 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 00:55] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:22, 00:57](337 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:15, 00:54](558 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:16, 00:34](564 MB) - -PASS -- COMPILE 'atml_intel' [10:07, 09:01] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:42, 05:53](1653 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:39, 05:54](1653 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:39, 03:05](945 MB) - -PASS -- COMPILE 'atmw_intel' [11:06, 09:43] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:50, 01:33](1692 MB) - -PASS -- COMPILE 'atmwm_intel' [11:06, 09:59] -PASS -- TEST 'control_atmwav_intel' [03:41, 01:32](702 MB) - -PASS -- COMPILE 'atmaero_intel' [09:05, 07:39] -PASS -- TEST 'atmaero_control_p8_intel' [05:45, 03:35](1793 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:47, 04:12](1805 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:25, 04:31](1821 MB) - -PASS -- COMPILE 'atmaq_intel' [09:06, 07:12] - -PASS -- COMPILE 'atmaq_debug_intel' [04:05, 02:52] -PASS -- TEST 'regional_atmaq_debug_intel' [20:34, 17:22](4603 MB) - -PASS -- COMPILE 'atm_gnu' [06:05, 04:34] -PASS -- TEST 'control_c48_gnu' [11:25, 09:27](860 MB) -PASS -- TEST 'control_stochy_gnu' [04:18, 02:20](733 MB) -PASS -- TEST 'control_ras_gnu' [05:15, 03:47](728 MB) -PASS -- TEST 'control_p8_gnu' [05:50, 03:38](1515 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:40, 03:32](1516 MB) -PASS -- TEST 'control_flake_gnu' [06:45, 04:26](810 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:05, 04:08] -PASS -- TEST 'rap_control_gnu' [09:54, 07:49](1088 MB) -PASS -- TEST 'rap_decomp_gnu' [09:40, 07:56](1083 MB) -PASS -- TEST 'rap_2threads_gnu' [09:30, 07:28](1151 MB) -PASS -- TEST 'rap_restart_gnu' [05:47, 03:58](885 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [10:09, 07:50](1088 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:02, 07:51](1083 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:55, 05:44](884 MB) -PASS -- TEST 'hrrr_control_gnu' [05:47, 03:57](1071 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:45, 04:00](1133 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:45, 03:41](1030 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:31, 04:06](1071 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:19, 02:05](879 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:22, 02:01](935 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [09:47, 07:35](1080 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:05, 04:47] -PASS -- TEST 'control_diag_debug_gnu' [03:33, 01:22](777 MB) -PASS -- TEST 'regional_debug_gnu' [08:26, 06:21](923 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:18, 01:57](1098 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:41, 02:04](1088 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:13, 02:04](1093 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:13, 02:01](1094 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:23, 02:02](1268 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:29, 03:04](1097 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:17, 02:00](1096 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:17, 01:57](1091 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:14, 01:09](725 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:17, 01:16](723 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:36, 01:26](1504 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:18, 02:01](1101 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:16, 02:07](1099 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:47, 03:19](1102 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:05, 02:34] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:07, 04:35] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:44, 07:14](961 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:51, 03:48](949 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:51, 06:44](1008 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:34, 03:33](891 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:36, 03:54](950 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:53, 05:29](858 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:17, 01:59](856 MB) -PASS -- TEST 'conus13km_control_gnu' [04:39, 02:27](1266 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:33, 01:08](1171 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:30, 01:26](946 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:06, 09:16] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:29, 04:18](992 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:05, 05:55] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:15, 02:01](978 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:13, 01:52](972 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:30, 05:28](1278 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:29, 05:31](960 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [05:27, 03:16](1188 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:27, 05:22](1348 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:06, 06:39] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:18, 01:57](1010 MB) - -PASS -- COMPILE 's2swa_gnu' [20:06, 18:13] - -PASS -- COMPILE 's2s_gnu' [18:06, 16:17] - -PASS -- COMPILE 's2swa_debug_gnu' [08:06, 06:52] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:06, 15:47] - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [08:06, 06:41] - -PASS -- COMPILE 'datm_cdeps_gnu' [18:06, 16:22] +PASS -- COMPILE 's2swa_32bit_intel' [12:06, 10:28] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:00, 07:41](1891 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:15, 16:44] +PASS -- TEST 'cpld_control_gfsv17_intel' [24:19, 13:28](1773 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:45, 14:09](2166 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:43, 06:32](1190 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:03, 15:00](1690 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:06, 06:45] +PASS -- TEST 'cpld_debug_gfsv17_intel' [22:57, 20:17](1733 MB) + +PASS -- COMPILE 's2swa_intel' [14:07, 12:16] +PASS -- TEST 'cpld_control_p8_intel' [16:02, 07:51](2092 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:58, 07:43](2095 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:04, 04:15](1965 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:49, 07:38](1977 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:37, 04:25](1743 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [14:52, 08:53](2501 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:50, 07:37](2076 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:56, 06:23](1886 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:03, 07:45](2070 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [22:19, 15:40](2807 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:35, 05:51](2926 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:04, 08:53](3627 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:31, 06:10](3621 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:54, 05:02](2040 MB) + +PASS -- COMPILE 's2sw_intel' [12:06, 10:05] +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:57, 07:05](1766 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:08, 04:00](1820 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:06, 06:25] +PASS -- TEST 'cpld_debug_p8_intel' [10:38, 06:50](2073 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:06, 04:25] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:25, 04:39](1807 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:06, 10:21] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:05, 03:57](1816 MB) + +PASS -- COMPILE 's2s_intel' [12:07, 10:15] +PASS -- TEST 'cpld_control_c48_intel' [12:13, 07:11](2832 MB) + +PASS -- COMPILE 's2swa_faster_intel' [15:07, 13:46] +PASS -- TEST 'cpld_control_p8_faster_intel' [20:24, 07:34](2096 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:04, 16:29] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:57, 13:51](1813 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:12, 06:41](1293 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:45, 15:24](1719 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:31, 04:10] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:30, 21:30](1769 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:26, 09:01] +PASS -- TEST 'control_flake_intel' [14:29, 02:55](710 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [12:01, 02:06](659 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [12:06, 02:16](675 MB) +PASS -- TEST 'control_latlon_intel' [12:00, 02:09](673 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [12:05, 02:13](662 MB) +PASS -- TEST 'control_c48_intel' [16:12, 05:46](857 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [16:11, 05:46](857 MB) +PASS -- TEST 'control_c192_intel' [17:14, 08:07](983 MB) +PASS -- TEST 'control_c384_intel' [17:11, 08:30](1450 MB) +PASS -- TEST 'control_c384gdas_intel' [16:56, 07:32](1526 MB) +PASS -- TEST 'control_stochy_intel' [12:06, 01:27](666 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:32, 00:59](545 MB) +PASS -- TEST 'control_lndp_intel' [09:05, 01:21](670 MB) +PASS -- TEST 'control_iovr4_intel' [09:09, 02:06](666 MB) +PASS -- TEST 'control_iovr5_intel' [08:45, 02:10](672 MB) +PASS -- TEST 'control_p8_intel' [08:20, 02:49](1646 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [08:12, 02:33](1629 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:20, 02:27](1642 MB) +PASS -- TEST 'control_restart_p8_intel' [04:05, 01:28](918 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:54, 02:30](1625 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:07, 01:23](992 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:56, 02:36](1627 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:27, 02:26](1727 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:12, 04:37](1633 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:23, 03:31](1717 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:20, 02:39](1659 MB) +PASS -- TEST 'merra2_thompson_intel' [05:04, 03:02](1651 MB) +PASS -- TEST 'regional_control_intel' [06:28, 04:38](962 MB) +PASS -- TEST 'regional_restart_intel' [09:25, 02:32](1105 MB) +PASS -- TEST 'regional_decomp_intel' [06:28, 04:49](948 MB) +PASS -- TEST 'regional_2threads_intel' [04:40, 02:58](920 MB) +PASS -- TEST 'regional_noquilt_intel' [07:32, 04:23](1494 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:27, 04:30](960 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:15, 04:32](961 MB) +PASS -- TEST 'regional_wofs_intel' [07:32, 05:34](2072 MB) + +PASS -- COMPILE 'rrfs_intel' [09:26, 07:34] +PASS -- TEST 'rap_control_intel' [08:52, 06:33](1207 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:02, 03:41](1456 MB) +PASS -- TEST 'rap_decomp_intel' [08:46, 06:48](1144 MB) +PASS -- TEST 'rap_2threads_intel' [08:45, 06:12](1373 MB) +PASS -- TEST 'rap_restart_intel' [09:01, 03:34](1132 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:07, 06:46](1207 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:35, 06:56](1137 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:18, 05:14](1192 MB) +PASS -- TEST 'hrrr_control_intel' [06:23, 03:24](1060 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:11, 03:26](1038 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [09:10, 03:09](1129 MB) +PASS -- TEST 'hrrr_control_restart_intel' [07:44, 01:54](1019 MB) +PASS -- TEST 'rrfs_v1beta_intel' [14:16, 06:29](1184 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [14:36, 07:51](2003 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:26, 07:34](2167 MB) + +PASS -- COMPILE 'csawmg_intel' [08:26, 07:22] +PASS -- TEST 'control_csawmg_intel' [11:41, 05:24](827 MB) +PASS -- TEST 'control_csawmgt_intel' [10:56, 05:29](835 MB) +PASS -- TEST 'control_ras_intel' [08:54, 02:54](820 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:59, 04:16] +PASS -- TEST 'control_csawmg_gnu' [17:05, 06:39](808 MB) +PASS -- TEST 'control_csawmgt_gnu' [17:05, 06:35](808 MB) + +PASS -- COMPILE 'wam_intel' [08:26, 07:05] +PASS -- TEST 'control_wam_intel' [07:25, 01:53](772 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:55, 09:20] +PASS -- TEST 'control_p8_faster_intel' [11:00, 02:18](1640 MB) +PASS -- TEST 'regional_control_faster_intel' [11:38, 04:19](959 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:32, 04:25] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:21, 02:14](821 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:26, 02:17](824 MB) +PASS -- TEST 'control_stochy_debug_intel' [08:17, 02:28](827 MB) +PASS -- TEST 'control_lndp_debug_intel' [07:16, 02:15](840 MB) +PASS -- TEST 'control_csawmg_debug_intel' [10:05, 03:31](877 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [10:01, 03:23](878 MB) +PASS -- TEST 'control_ras_debug_intel' [07:22, 02:21](835 MB) +PASS -- TEST 'control_diag_debug_intel' [07:35, 02:24](882 MB) +PASS -- TEST 'control_debug_p8_intel' [08:02, 02:28](1667 MB) +PASS -- TEST 'regional_debug_intel' [18:02, 14:14](895 MB) +PASS -- TEST 'rap_control_debug_intel' [07:59, 04:04](1221 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:20, 04:11](1213 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:17, 04:12](1218 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:18, 04:02](1219 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:26, 04:11](1228 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:38, 04:28](1298 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:19, 04:10](1212 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:17, 04:11](1214 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:19, 04:09](1213 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:17, 04:04](1235 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:43, 04:04](1225 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:16, 04:02](1220 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:17, 06:34](1213 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:45, 03:57](1215 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:30, 04:51](1221 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:26, 04:02](1215 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:46, 06:50](1215 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [10:03, 04:15] +PASS -- TEST 'control_csawmg_debug_gnu' [03:29, 01:45](788 MB) +PASS -- TEST 'control_csawmgt_debug_gnu' [03:26, 01:46](787 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:37, 03:02] + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:37, 07:11] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:46, 03:29](1269 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:52, 05:24](1144 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:53, 02:56](1023 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:46, 05:14](1292 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:36, 02:38](1039 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:41, 02:58](981 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:13, 04:02](1091 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:02, 01:36](965 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:58, 10:09] +PASS -- TEST 'conus13km_control_intel' [04:43, 01:49](1301 MB) +PASS -- TEST 'conus13km_2threads_intel' [09:36, 00:53](1212 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [10:33, 01:05](1164 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:57, 08:18] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:42, 03:43](1086 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:38, 04:11] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:15, 03:53](1094 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:13, 03:52](1096 MB) +PASS -- TEST 'conus13km_debug_intel' [13:57, 11:43](1334 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:41, 12:42](982 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:47, 06:38](1243 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:47, 11:42](1391 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:38, 04:13] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:58, 04:04](1154 MB) + +PASS -- COMPILE 'hafsw_intel' [16:20, 10:08] +PASS -- TEST 'hafs_regional_atm_intel' [08:37, 05:32](877 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:53, 05:24](1284 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [15:31, 06:39](960 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:31, 14:05](966 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:30, 15:30](1007 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:29, 05:37](606 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:58, 07:11](615 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [11:23, 03:00](437 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:27, 08:11](539 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [11:16, 04:02](616 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:27, 03:52](616 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:19, 04:54](675 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [09:24, 01:21](446 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:19, 03:32] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:53, 11:27](632 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:29, 11:34] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [20:51, 16:10](729 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:07, 18:11](813 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:20, 10:59] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:11, 10:09](789 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:20, 10:27] +PASS -- TEST 'hafs_regional_docn_intel' [12:18, 05:32](938 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:49, 05:37](947 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:42, 16:27](1339 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [11:21, 06:45] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:20, 02:12](1148 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:21, 01:17](1096 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:18, 02:06](1015 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:09, 02:07](1008 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:22, 02:08](1012 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:19, 02:09](1124 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:12, 02:09](1148 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 02:03](999 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:50, 04:59](1159 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:49, 04:50](1137 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:07](1146 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:36, 03:00](2437 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:33, 03:00](2442 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:19, 03:52] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:21, 05:05](1077 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:20, 06:19] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:20, 02:07](1134 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:05, 01:07] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:44, 00:58](332 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:15, 00:55](560 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:36](561 MB) + +PASS -- COMPILE 'atml_intel' [10:08, 08:20] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:17, 05:56](1635 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:51, 05:58](1631 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:37, 03:03](950 MB) + +PASS -- COMPILE 'atmw_intel' [12:10, 10:47] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:44, 01:32](1701 MB) + +PASS -- COMPILE 'atmwm_intel' [12:10, 09:14] +PASS -- TEST 'control_atmwav_intel' [03:42, 01:29](687 MB) + +PASS -- COMPILE 'atmaero_intel' [10:08, 07:10] +PASS -- TEST 'atmaero_control_p8_intel' [06:21, 03:31](1792 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:27, 04:20](1801 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:37, 04:29](1810 MB) + +PASS -- COMPILE 'atmaq_intel' [12:10, 07:15] + +PASS -- COMPILE 'atmaq_debug_intel' [08:10, 03:04] +PASS -- TEST 'regional_atmaq_debug_intel' [20:21, 16:49](4593 MB) + +PASS -- COMPILE 'atm_gnu' [09:09, 04:17] +PASS -- TEST 'control_c48_gnu' [10:59, 09:28](881 MB) +PASS -- TEST 'control_stochy_gnu' [04:17, 02:11](731 MB) +PASS -- TEST 'control_ras_gnu' [05:16, 03:40](728 MB) +PASS -- TEST 'control_p8_gnu' [06:20, 03:33](1518 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:56, 03:23](1517 MB) +PASS -- TEST 'control_flake_gnu' [06:15, 04:22](813 MB) + +PASS -- COMPILE 'rrfs_gnu' [09:09, 04:18] +PASS -- TEST 'rap_control_gnu' [09:40, 07:39](1085 MB) +PASS -- TEST 'rap_decomp_gnu' [09:40, 07:40](1088 MB) +PASS -- TEST 'rap_2threads_gnu' [10:00, 07:08](1129 MB) +PASS -- TEST 'rap_restart_gnu' [05:41, 04:01](884 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [10:13, 07:40](1082 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:34, 07:44](1084 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:49, 05:48](883 MB) +PASS -- TEST 'hrrr_control_gnu' [05:46, 03:57](1072 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:32, 03:57](1138 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:31, 03:37](1041 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:31, 03:58](1071 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:17, 02:03](882 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:14, 02:04](932 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [10:17, 07:36](1084 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [14:17, 10:23] +PASS -- TEST 'control_diag_debug_gnu' [03:34, 01:11](777 MB) +PASS -- TEST 'regional_debug_gnu' [08:43, 06:15](925 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:38, 01:56](1101 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:13, 01:53](1090 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:18, 01:56](1096 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:13, 01:56](1093 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:23, 02:03](1271 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:14, 03:03](1095 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:16, 01:56](1098 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:33, 01:54](1091 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:20, 01:09](725 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:14, 01:16](720 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:34, 01:13](1504 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:37, 01:57](1100 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:31, 02:10](1102 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:30, 03:15](1100 MB) + +PASS -- COMPILE 'wam_debug_gnu' [08:09, 05:14] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [11:25, 06:36] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:32, 07:21](964 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:55, 03:47](956 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:43, 06:45](994 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:37, 03:24](876 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:37, 03:49](950 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:49, 05:34](860 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:24, 01:58](856 MB) +PASS -- TEST 'conus13km_control_gnu' [04:36, 02:29](1266 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:34, 01:07](1171 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:27, 01:27](950 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [17:19, 14:15] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:28, 04:28](989 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [15:15, 12:37] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:17, 01:55](976 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:17, 01:52](967 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:35, 05:30](1279 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:33, 05:33](970 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [05:29, 03:16](1190 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:32, 05:22](1347 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [15:09, 13:01] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:18, 01:55](1000 MB) + +PASS -- COMPILE 's2swa_gnu' [18:21, 17:12] + +PASS -- COMPILE 's2s_gnu' [17:21, 15:59] + +PASS -- COMPILE 's2swa_debug_gnu' [15:21, 13:27] + +PASS -- COMPILE 's2sw_pdlib_gnu' [19:11, 18:00] + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [14:21, 12:55] + +PASS -- COMPILE 'datm_cdeps_gnu' [20:14, 15:20] SYNOPSIS: -Starting Date/Time: 20240317 15:38:17 -Ending Date/Time: 20240317 17:01:00 -Total Time: 01h:23m:19s +Starting Date/Time: 20240319 07:58:04 +Ending Date/Time: 20240319 09:37:41 +Total Time: 01h:40m:07s Compiles Completed: 55/55 Tests Completed: 238/238 From 3271aa5c133fed0321ebaed97155098eead5f1b7 Mon Sep 17 00:00:00 2001 From: zach1221 Date: Tue, 19 Mar 2024 08:53:45 -0600 Subject: [PATCH 70/76] add dereco RT logs: passed --- tests/logs/RegressionTests_derecho.log | 526 ++++++++++++------------- 1 file changed, 263 insertions(+), 263 deletions(-) diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index fa56c4353e..c133ec4b92 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,7 +1,7 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -7076763c9cb076a4c05505b604424e438d686936 +879e6870478881f0145029af307915a5d57b674d Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308) + 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch) 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459) - 87e6d92e2ca48a55b66f8810f347b51c70c193c4 FV3/ccpp/framework (v0.1.0-1436-g87e6d92) - 2f15ae92802cae11fd0efb902439a084609984f3 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5141-g2f15ae92) + 7384d92b6c2897be4f29ad4a3747f66762631574 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-703-g7384d92) + 94596b3823c40ea33255121220dac4463e8ccef5 FV3/ccpp/physics (remotes/origin/no_arg_mismatch) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -26,19 +26,19 @@ Submodule hashes used in testing: 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) + 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705) 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308) + 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) + 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705) NOTES: @@ -48,270 +48,270 @@ 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-20240315 -COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_84275 +COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_116949 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [20:30, 19:43] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:40, 04:59](3074 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:24, 21:05] -PASS -- TEST 'cpld_control_gfsv17_intel' [16:59, 13:50](1686 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:29, 15:26](1823 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:23, 07:36](972 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:12, 15:53](1654 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:21, 09:28] -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:30, 21:40](1693 MB) - -PASS -- COMPILE 's2swa_intel' [20:30, 19:28] -PASS -- TEST 'cpld_control_p8_intel' [09:47, 05:41](3091 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:02, 05:42](3088 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:34, 03:20](3148 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:48, 05:39](3128 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:34, 03:25](3177 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:29, 05:34](3092 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:35, 04:41](3396 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:59, 05:43](3099 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [15:50, 08:54](3636 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [17:44, 06:13](3618 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [34:56, 09:56](4341 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [29:54, 07:53](4642 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:09, 05:20](3063 MB) - -PASS -- COMPILE 's2sw_intel' [19:30, 18:49] -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:06, 04:20](1685 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:15, 04:19](1726 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:26, 09:27] -PASS -- TEST 'cpld_debug_p8_intel' [12:14, 07:49](3147 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:25, 08:43] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:01, 05:17](1702 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:29, 14:31] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:36, 04:21](1720 MB) - -PASS -- COMPILE 's2s_intel' [15:29, 14:26] -PASS -- TEST 'cpld_control_c48_intel' [08:24, 06:38](2669 MB) - -PASS -- COMPILE 's2swa_faster_intel' [23:31, 22:57] -PASS -- TEST 'cpld_control_p8_faster_intel' [09:12, 05:35](3098 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:24, 19:33] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:41, 14:07](1701 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:48, 07:38](1011 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:17, 16:04](1664 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:20, 08:57] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:45, 22:39](1718 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:16, 12:33] -PASS -- TEST 'control_flake_intel' [04:48, 03:29](669 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:51, 02:04](618 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:59, 02:13](622 MB) -PASS -- TEST 'control_latlon_intel' [03:48, 02:07](617 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:57, 02:09](623 MB) -PASS -- TEST 'control_c48_intel' [06:56, 05:17](736 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:57, 05:22](737 MB) -PASS -- TEST 'control_c192_intel' [10:08, 07:53](740 MB) -PASS -- TEST 'control_c384_intel' [16:33, 08:24](1060 MB) -PASS -- TEST 'control_c384gdas_intel' [19:07, 07:33](1200 MB) -PASS -- TEST 'control_stochy_intel' [02:47, 01:28](626 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:39, 00:53](438 MB) -PASS -- TEST 'control_lndp_intel' [02:47, 01:23](623 MB) -PASS -- TEST 'control_iovr4_intel' [03:42, 02:08](622 MB) -PASS -- TEST 'control_iovr5_intel' [03:48, 02:09](622 MB) -PASS -- TEST 'control_p8_intel' [04:47, 02:31](1599 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:52, 02:33](1596 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:10, 02:31](1596 MB) -PASS -- TEST 'control_restart_p8_intel' [03:43, 01:29](798 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:50, 02:33](1592 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:53, 01:25](803 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:45, 02:37](1586 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:36, 04:24](1592 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:51, 03:20](1658 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:54, 02:35](1601 MB) -PASS -- TEST 'merra2_thompson_intel' [06:09, 03:04](1610 MB) -PASS -- TEST 'regional_control_intel' [06:22, 04:31](632 MB) -PASS -- TEST 'regional_restart_intel' [04:24, 02:36](800 MB) -PASS -- TEST 'regional_decomp_intel' [06:23, 04:48](628 MB) -PASS -- TEST 'regional_noquilt_intel' [06:16, 04:27](1159 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:22, 04:32](625 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:19, 04:35](628 MB) -PASS -- TEST 'regional_wofs_intel' [08:23, 05:42](1599 MB) - -PASS -- COMPILE 'rrfs_intel' [12:22, 11:08] -PASS -- TEST 'rap_control_intel' [08:47, 06:09](1003 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:22, 03:47](1196 MB) -PASS -- TEST 'rap_decomp_intel' [08:54, 06:25](1003 MB) -PASS -- TEST 'rap_restart_intel' [05:32, 03:15](882 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:50, 06:06](1003 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:51, 06:26](1002 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:34, 04:36](882 MB) -PASS -- TEST 'hrrr_control_intel' [05:36, 03:15](1001 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:33, 03:20](996 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:25, 02:48](1092 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:08, 01:49](1405 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:21, 05:59](1000 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:56, 07:25](1956 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:01, 07:10](1946 MB) - -PASS -- COMPILE 'csawmg_intel' [11:21, 10:16] -PASS -- TEST 'control_csawmg_intel' [08:16, 05:53](691 MB) -PASS -- TEST 'control_csawmgt_intel' [08:19, 05:48](690 MB) -PASS -- TEST 'control_ras_intel' [04:53, 02:55](656 MB) - -PASS -- COMPILE 'wam_intel' [10:19, 09:35] -PASS -- TEST 'control_wam_intel' [03:38, 01:56](380 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:23, 12:43] -PASS -- TEST 'control_p8_faster_intel' [05:00, 02:29](1590 MB) -PASS -- TEST 'regional_control_faster_intel' [06:16, 04:18](628 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 08:37] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:57, 02:39](792 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:54, 02:34](795 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:43, 02:51](798 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:50, 02:39](800 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:21, 03:59](836 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [06:27, 04:01](838 MB) -PASS -- TEST 'control_ras_debug_intel' [03:42, 02:39](808 MB) -PASS -- TEST 'control_diag_debug_intel' [04:53, 02:44](853 MB) -PASS -- TEST 'control_debug_p8_intel' [04:23, 02:43](1629 MB) -PASS -- TEST 'regional_debug_intel' [17:30, 15:50](672 MB) -PASS -- TEST 'rap_control_debug_intel' [05:48, 04:48](1180 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:54, 04:31](1176 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:42, 04:41](1179 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:55, 04:46](1180 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:39, 04:38](1178 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:24, 04:53](1263 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:50, 04:46](1179 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:50, 04:46](1183 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:48, 04:51](1179 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:51, 04:49](1182 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:51, 04:35](1179 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:42, 04:43](1180 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:53, 07:31](1176 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:51, 04:42](1177 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:49, 05:27](1180 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:43, 04:39](1176 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:15, 07:53](1185 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:19, 05:17] -PASS -- TEST 'control_wam_debug_intel' [05:46, 04:40](420 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:21, 09:42] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:39, 03:37](1057 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:24, 05:09](887 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:27, 02:47](881 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:38, 02:57](1405 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:19, 03:54](972 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:58, 01:36](775 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:22, 11:50] -PASS -- TEST 'conus13km_control_intel' [06:39, 01:59](1081 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:24, 01:05](1079 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:24, 01:11](973 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:21, 10:00] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:21, 03:42](908 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 05:44] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:47, 04:42](1057 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:37, 04:27](1055 MB) -PASS -- TEST 'conus13km_debug_intel' [17:07, 13:29](1132 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:57, 13:49](819 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:48, 13:22](1200 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 05:30] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:41, 04:37](1084 MB) - -PASS -- COMPILE 'hafsw_intel' [16:23, 15:52] -PASS -- TEST 'hafs_regional_atm_intel' [07:02, 04:42](712 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:24, 05:21](1071 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:41, 06:38](777 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:23, 11:05](795 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:53, 12:19](811 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:50, 04:41](1405 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:11, 05:49](495 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:29, 02:25](384 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:08, 06:30](458 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:24, 03:22](509 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:42, 03:07](506 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:58, 03:53](579 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:42, 01:21](424 MB) -PASS -- TEST 'gnv1_nested_intel' [06:00, 03:34](780 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:20, 07:04] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:35, 12:40](614 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [20:24, 19:37] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:48, 07:16](630 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:41, 07:25](685 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [17:23, 16:29] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:21, 05:26](673 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:16, 14:16] -PASS -- TEST 'hafs_regional_docn_intel' [08:10, 05:43](750 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:13, 05:44](735 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:34, 16:13](895 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:19, 07:45] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:46, 02:31](760 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:03, 01:36](748 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:52, 02:24](640 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:53, 02:27](641 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:52, 02:29](638 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:50, 02:33](760 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:38, 02:33](761 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:41, 02:24](638 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:22, 05:54](687 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:21, 05:52](669 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:25, 02:31](761 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:05, 04:01](1957 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:03, 03:59](2016 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:18, 05:02] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:43, 05:10](746 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:19, 07:49] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:50, 02:31](972 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:12, 02:19] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:03, 01:17](308 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:39, 01:10](450 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:51, 00:45](449 MB) - -PASS -- COMPILE 'atml_intel' [14:21, 12:59] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:03, 06:40](1637 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:57, 06:45](1630 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:10, 03:42](853 MB) - -PASS -- COMPILE 'atmw_intel' [13:27, 12:32] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:41, 01:37](1637 MB) - -PASS -- COMPILE 'atmwm_intel' [13:26, 12:32] -PASS -- TEST 'control_atmwav_intel' [03:17, 01:32](637 MB) - -PASS -- COMPILE 'atmaero_intel' [12:26, 11:13] -PASS -- TEST 'atmaero_control_p8_intel' [06:19, 03:43](2944 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:13, 04:19](2999 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:44, 04:35](3009 MB) - -PASS -- COMPILE 'atmaq_intel' [11:20, 10:57] - -PASS -- COMPILE 'atmaq_debug_intel' [07:19, 06:27] -PASS -- TEST 'regional_atmaq_debug_intel' [27:36, 22:37](4530 MB) +PASS -- COMPILE 's2swa_32bit_intel' [20:27, 19:47] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:48, 04:57](3075 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:32, 21:05] +PASS -- TEST 'cpld_control_gfsv17_intel' [19:31, 13:49](1683 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:43, 15:04](1820 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:27, 07:10](954 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:59, 15:53](1655 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:22, 09:30] +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:58, 21:47](1701 MB) + +PASS -- COMPILE 's2swa_intel' [20:28, 19:24] +PASS -- TEST 'cpld_control_p8_intel' [12:04, 05:37](3092 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:31, 05:33](3088 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:28, 03:16](3146 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:04, 05:34](3126 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:28, 03:18](3177 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:04, 05:29](3088 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:10, 04:34](3383 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:24, 05:36](3100 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:22, 08:47](3635 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [16:13, 06:01](3609 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [43:16, 09:43](4342 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [29:37, 06:57](4649 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:47, 05:14](3067 MB) + +PASS -- COMPILE 's2sw_intel' [19:27, 18:46] +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:11, 04:12](1680 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:00, 04:18](1725 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:23, 09:33] +PASS -- TEST 'cpld_debug_p8_intel' [11:31, 07:52](3152 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:23, 08:49] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:06, 05:15](1698 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:28, 14:30] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:04, 04:14](1725 MB) + +PASS -- COMPILE 's2s_intel' [15:28, 14:19] +PASS -- TEST 'cpld_control_c48_intel' [09:16, 06:35](2669 MB) + +PASS -- COMPILE 's2swa_faster_intel' [23:31, 22:39] +PASS -- TEST 'cpld_control_p8_faster_intel' [11:33, 05:26](3097 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:34, 19:29] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:44, 14:01](1698 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:40, 07:17](1015 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:08, 15:56](1672 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:25, 08:55] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:29, 22:39](1716 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:24, 12:29] +PASS -- TEST 'control_flake_intel' [05:38, 03:25](670 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:38, 02:04](617 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:52, 02:08](623 MB) +PASS -- TEST 'control_latlon_intel' [04:38, 02:04](621 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:42, 02:10](623 MB) +PASS -- TEST 'control_c48_intel' [07:15, 05:15](735 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:18, 05:14](733 MB) +PASS -- TEST 'control_c192_intel' [11:08, 07:51](737 MB) +PASS -- TEST 'control_c384_intel' [16:00, 08:07](1059 MB) +PASS -- TEST 'control_c384gdas_intel' [24:00, 07:11](1206 MB) +PASS -- TEST 'control_stochy_intel' [03:39, 01:29](624 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:03, 00:54](440 MB) +PASS -- TEST 'control_lndp_intel' [03:20, 01:20](624 MB) +PASS -- TEST 'control_iovr4_intel' [04:16, 02:06](621 MB) +PASS -- TEST 'control_iovr5_intel' [04:18, 02:03](621 MB) +PASS -- TEST 'control_p8_intel' [06:11, 02:27](1591 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:14, 02:27](1595 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:12, 02:26](1604 MB) +PASS -- TEST 'control_restart_p8_intel' [03:57, 01:25](798 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:08, 02:27](1593 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:44, 01:23](802 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:59, 02:32](1584 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:15, 04:20](1591 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:38, 03:17](1650 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:36, 02:29](1607 MB) +PASS -- TEST 'merra2_thompson_intel' [06:20, 03:00](1603 MB) +PASS -- TEST 'regional_control_intel' [06:54, 04:30](629 MB) +PASS -- TEST 'regional_restart_intel' [05:29, 02:31](801 MB) +PASS -- TEST 'regional_decomp_intel' [06:40, 04:40](628 MB) +PASS -- TEST 'regional_noquilt_intel' [06:31, 04:23](1156 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:43, 04:25](628 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:41, 04:27](628 MB) +PASS -- TEST 'regional_wofs_intel' [07:40, 05:36](1600 MB) + +PASS -- COMPILE 'rrfs_intel' [12:38, 11:25] +PASS -- TEST 'rap_control_intel' [09:01, 06:08](1003 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:42, 03:48](1194 MB) +PASS -- TEST 'rap_decomp_intel' [10:11, 06:23](1001 MB) +PASS -- TEST 'rap_restart_intel' [05:48, 03:10](878 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:09, 06:03](1003 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:06, 06:21](1001 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:02, 04:37](879 MB) +PASS -- TEST 'hrrr_control_intel' [05:54, 03:12](997 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:54, 03:17](997 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:54, 02:47](1090 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:07, 01:44](830 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:00, 05:56](1001 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:26, 07:20](1956 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:19, 07:09](1947 MB) + +PASS -- COMPILE 'csawmg_intel' [11:36, 10:21] +PASS -- TEST 'control_csawmg_intel' [07:44, 05:50](696 MB) +PASS -- TEST 'control_csawmgt_intel' [07:37, 05:45](689 MB) +PASS -- TEST 'control_ras_intel' [05:00, 02:51](655 MB) + +PASS -- COMPILE 'wam_intel' [10:30, 09:35] +PASS -- TEST 'control_wam_intel' [03:30, 01:53](385 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:32, 12:42] +PASS -- TEST 'control_p8_faster_intel' [05:44, 02:22](1593 MB) +PASS -- TEST 'regional_control_faster_intel' [06:31, 04:13](629 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:40, 08:38] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:04, 02:37](792 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:13, 02:37](790 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:05, 02:54](793 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:01, 02:34](794 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:52, 04:01](840 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [05:50, 03:52](839 MB) +PASS -- TEST 'control_ras_debug_intel' [04:02, 02:36](807 MB) +PASS -- TEST 'control_diag_debug_intel' [05:15, 02:42](855 MB) +PASS -- TEST 'control_debug_p8_intel' [05:21, 02:39](1627 MB) +PASS -- TEST 'regional_debug_intel' [19:19, 16:06](665 MB) +PASS -- TEST 'rap_control_debug_intel' [06:08, 04:41](1177 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:10, 04:37](1178 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:27, 04:38](1181 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:24, 04:41](1180 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:13, 04:47](1178 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:34, 04:51](1260 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:15, 04:43](1179 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:21, 04:47](1181 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:14, 04:41](1186 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:05, 04:38](1179 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:08, 04:41](1176 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:05, 04:39](1180 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:08, 07:30](1178 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:07, 04:34](1172 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:12, 05:26](1183 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:01, 04:39](1182 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:32, 07:51](1181 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:28, 05:29] +PASS -- TEST 'control_wam_debug_intel' [05:43, 04:43](425 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:25, 09:50] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:15, 03:30](1060 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:31, 05:06](882 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:00, 02:47](881 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:55, 02:54](878 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:15, 03:52](794 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:00, 01:37](778 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:28, 11:48] +PASS -- TEST 'conus13km_control_intel' [05:52, 01:52](1080 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:30, 00:54](1079 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:36, 01:08](973 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:30, 09:46] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:33, 03:38](906 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:22, 05:47] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:58, 04:39](1057 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:51, 04:25](1055 MB) +PASS -- TEST 'conus13km_debug_intel' [17:53, 13:36](1133 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:41, 13:33](815 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:28, 13:26](1200 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:28, 05:27] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:59, 04:42](1079 MB) + +PASS -- COMPILE 'hafsw_intel' [16:30, 15:57] +PASS -- TEST 'hafs_regional_atm_intel' [07:36, 04:31](713 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:56, 05:06](1066 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:12, 06:27](777 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:44, 10:57](791 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:32, 12:06](817 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:07, 04:37](476 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:06, 05:44](496 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:29, 02:20](386 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:59, 06:13](458 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:27, 03:17](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:52, 03:03](508 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:44, 03:49](581 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:46, 01:16](425 MB) +PASS -- TEST 'gnv1_nested_intel' [05:32, 03:21](782 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:24, 07:06] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:47, 12:28](611 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:31, 19:38] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:59, 07:07](637 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:24, 07:11](746 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:29, 16:34] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:59, 05:21](674 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:26, 14:16] +PASS -- TEST 'hafs_regional_docn_intel' [08:08, 05:40](752 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:21, 05:33](736 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:47, 16:15](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:22, 07:40] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:54, 02:28](760 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:59, 01:32](749 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:42, 02:21](641 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:44, 02:22](643 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:45, 02:22](643 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:42, 02:28](760 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:45, 02:28](761 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:37, 02:23](639 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:13, 05:39](689 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:20, 05:38](672 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:28, 02:32](760 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:49, 03:53](2017 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:55, 03:56](2017 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:20, 05:00] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:50, 05:08](744 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:15, 07:40] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:50, 02:28](747 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:19, 02:24] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:52, 01:08](311 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:46, 01:05](450 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:46, 00:44](450 MB) + +PASS -- COMPILE 'atml_intel' [13:23, 12:54] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:53, 06:53](1635 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:37, 06:28](1628 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:20, 03:57](847 MB) + +PASS -- COMPILE 'atmw_intel' [13:24, 12:40] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:45, 01:33](1628 MB) + +PASS -- COMPILE 'atmwm_intel' [13:18, 12:19] +PASS -- TEST 'control_atmwav_intel' [03:04, 01:33](635 MB) + +PASS -- COMPILE 'atmaero_intel' [12:18, 11:11] +PASS -- TEST 'atmaero_control_p8_intel' [05:51, 03:38](2944 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:51, 04:15](3001 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:24, 04:28](3007 MB) + +PASS -- COMPILE 'atmaq_intel' [11:18, 10:46] + +PASS -- COMPILE 'atmaq_debug_intel' [07:21, 06:17] +PASS -- TEST 'regional_atmaq_debug_intel' [28:06, 21:58](4531 MB) SYNOPSIS: -Starting Date/Time: 20240317 12:41:56 -Ending Date/Time: 20240317 14:13:29 -Total Time: 01h:32m:37s +Starting Date/Time: 20240319 06:58:51 +Ending Date/Time: 20240319 08:34:27 +Total Time: 01h:36m:28s Compiles Completed: 39/39 Tests Completed: 175/175 From 889b350550238abd90bed430ef48afac6ecf1d84 Mon Sep 17 00:00:00 2001 From: zach1221 Date: Tue, 19 Mar 2024 09:59:05 -0500 Subject: [PATCH 71/76] add orion RT logs: passed --- tests/logs/RegressionTests_orion.log | 620 ++++++++++++--------------- 1 file changed, 271 insertions(+), 349 deletions(-) diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 444af26a1f..e8b5873eab 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -0939a1dff2a2060b541eca9642a19c5ed1541f17 +7908de2724b95cab917b6b6c3d059c66cb8bdaa7 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308) + 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch) 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459) - 87e6d92e2ca48a55b66f8810f347b51c70c193c4 FV3/ccpp/framework (v0.1.0-1436-g87e6d92) - 2f15ae92802cae11fd0efb902439a084609984f3 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5141-g2f15ae92) + 7384d92b6c2897be4f29ad4a3747f66762631574 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-703-g7384d92) + 94596b3823c40ea33255121220dac4463e8ccef5 FV3/ccpp/physics (remotes/origin/no_arg_mismatch) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -26,19 +26,19 @@ Submodule hashes used in testing: 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) + 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705) 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308) + 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) + 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705) NOTES: @@ -48,357 +48,279 @@ 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-20240315 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_400865 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_210523 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [16:10, 14:57] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:50, 05:08](3183 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:10, 19:36] -PASS -- TEST 'cpld_control_gfsv17_intel' [23:55, 16:21](1740 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:04, 18:04](2024 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:05, 08:13](1111 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:55, 18:30](1644 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:07, 05:43] -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:53, 23:32](1697 MB) - -PASS -- COMPILE 's2swa_intel' [16:10, 14:38] -PASS -- TEST 'cpld_control_p8_intel' [14:50, 05:33](3211 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:04, 05:51](3210 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:00, 03:23](3252 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:04, 05:46](3241 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:56, 03:24](3276 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [12:50, 06:12](3555 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:50, 05:46](3196 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:48, 04:43](3071 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:49, 05:39](3210 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:07, 09:55](3346 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:10, 06:08](3617 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [21:57, 10:59](4129 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:46, 06:58](4359 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [14:51, 05:28](3169 MB) - -PASS -- COMPILE 's2sw_intel' [16:10, 14:22] -PASS -- TEST 'cpld_control_noaero_p8_intel' [14:34, 04:29](1742 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:46, 04:26](1778 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:07, 05:41] -PASS -- TEST 'cpld_debug_p8_intel' [11:28, 08:40](3251 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:07, 04:52] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:12, 06:03](1757 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [14:10, 12:11] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:37, 04:32](1705 MB) - -PASS -- COMPILE 's2s_intel' [14:10, 12:10] -PASS -- TEST 'cpld_control_c48_intel' [10:00, 08:01](2835 MB) - -PASS -- COMPILE 's2swa_faster_intel' [21:10, 19:41] -PASS -- TEST 'cpld_control_p8_faster_intel' [12:43, 05:18](3152 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [19:08, 17:07] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:14, 16:32](1774 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:58, 08:05](1176 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:13, 18:34](1677 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:07, 05:20] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:10, 24:51](1721 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:08, 13:45] -PASS -- TEST 'control_flake_intel' [09:23, 03:31](700 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [08:22, 02:25](657 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:28, 02:32](657 MB) -PASS -- TEST 'control_latlon_intel' [08:20, 02:26](655 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:29, 02:31](654 MB) -PASS -- TEST 'control_c48_intel' [11:28, 05:56](882 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:28, 05:58](873 MB) -PASS -- TEST 'control_c192_intel' [15:41, 09:10](852 MB) -PASS -- TEST 'control_c384_intel' [17:32, 10:09](1252 MB) -PASS -- TEST 'control_c384gdas_intel' [16:57, 09:05](1352 MB) -PASS -- TEST 'control_stochy_intel' [06:23, 01:38](652 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:28, 00:58](507 MB) -PASS -- TEST 'control_lndp_intel' [03:25, 01:41](654 MB) -PASS -- TEST 'control_iovr4_intel' [04:23, 02:28](656 MB) -PASS -- TEST 'control_iovr5_intel' [05:22, 02:28](648 MB) -PASS -- TEST 'control_p8_intel' [06:00, 03:02](1633 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:19, 02:57](1627 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:32, 02:49](1638 MB) -PASS -- TEST 'control_restart_p8_intel' [05:14, 01:37](895 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:20, 02:52](1616 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:12, 01:36](926 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:13, 02:58](1620 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:12, 03:00](1716 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:56, 05:11](1633 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:39, 03:53](1651 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:32, 02:59](1639 MB) -PASS -- TEST 'merra2_thompson_intel' [06:58, 03:25](1635 MB) -PASS -- TEST 'regional_control_intel' [07:36, 05:12](856 MB) -PASS -- TEST 'regional_restart_intel' [05:37, 02:43](1023 MB) -PASS -- TEST 'regional_decomp_intel' [07:35, 05:29](849 MB) -PASS -- TEST 'regional_2threads_intel' [05:46, 03:38](849 MB) -PASS -- TEST 'regional_noquilt_intel' [07:37, 05:04](1361 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:43, 05:02](859 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:42, 05:06](853 MB) -PASS -- TEST 'regional_wofs_intel' [08:37, 06:35](1917 MB) - -PASS -- COMPILE 'rrfs_intel' [14:09, 12:06] -PASS -- TEST 'rap_control_intel' [11:28, 07:49](1107 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:56, 04:44](1299 MB) -PASS -- TEST 'rap_decomp_intel' [12:03, 08:14](1030 MB) -PASS -- TEST 'rap_2threads_intel' [11:18, 07:57](1179 MB) -PASS -- TEST 'rap_restart_intel' [06:20, 04:00](1096 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:06, 07:41](1110 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:06, 08:07](1030 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:31, 05:54](1132 MB) -PASS -- TEST 'hrrr_control_intel' [07:06, 03:57](996 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:00, 04:06](1019 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:53, 03:28](1109 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:21, 02:12](998 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:17, 07:36](1098 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:29, 09:10](1994 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:32, 08:58](2076 MB) - -PASS -- COMPILE 'csawmg_intel' [14:09, 12:40] -PASS -- TEST 'control_csawmg_intel' [08:43, 06:03](742 MB) -PASS -- TEST 'control_csawmgt_intel' [08:42, 05:57](748 MB) -PASS -- TEST 'control_ras_intel' [05:23, 03:21](745 MB) - -PASS -- COMPILE 'wam_intel' [12:06, 10:53] -PASS -- TEST 'control_wam_intel' [04:20, 02:06](659 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:08, 11:09] -PASS -- TEST 'control_p8_faster_intel' [05:26, 02:39](1631 MB) -PASS -- TEST 'regional_control_faster_intel' [07:40, 04:38](851 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:07, 04:26] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:27, 02:45](814 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:24, 02:42](809 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:17, 03:03](813 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:16, 02:48](820 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:35, 04:06](866 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [06:39, 04:07](864 MB) -PASS -- TEST 'control_ras_debug_intel' [04:20, 02:48](825 MB) -PASS -- TEST 'control_diag_debug_intel' [04:29, 02:52](870 MB) -PASS -- TEST 'control_debug_p8_intel' [04:41, 03:01](1635 MB) -PASS -- TEST 'regional_debug_intel' [19:45, 17:41](842 MB) -PASS -- TEST 'rap_control_debug_intel' [06:25, 04:59](1203 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:22, 04:49](1202 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:23, 05:04](1146 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:56](1204 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 04:52](1202 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:29, 05:11](1288 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:22, 05:05](1206 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:17, 05:04](1201 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:28, 05:00](1203 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 04:53](1203 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:20, 04:53](1198 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:23, 04:57](1202 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:18, 07:58](1203 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:22, 04:54](1198 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:41, 05:58](1206 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:30, 04:55](1204 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:23, 08:29](1204 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:07, 03:22] -PASS -- TEST 'control_wam_debug_intel' [10:19, 05:10](512 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:07, 10:47] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:25, 04:27](1165 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:11, 06:26](1043 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:24, 03:27](982 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:52, 06:42](1092 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:48, 03:01](964 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:47, 03:35](926 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:16, 04:48](1039 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:47, 01:53](934 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:08, 12:44] -PASS -- TEST 'conus13km_control_intel' [05:06, 02:04](1199 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:46, 01:02](1123 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [06:43, 01:18](1107 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:07, 10:50] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:44, 04:14](994 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:06, 03:26] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:23, 05:11](1023 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:19, 05:07](1074 MB) -PASS -- TEST 'conus13km_debug_intel' [16:53, 14:14](1253 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:50, 14:12](921 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:39, 08:30](1153 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:57, 14:37](1294 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:06, 03:18] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:23, 05:02](1116 MB) - -PASS -- COMPILE 'hafsw_intel' [16:07, 12:35] -PASS -- TEST 'hafs_regional_atm_intel' [09:21, 06:19](750 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:26, 06:08](1121 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:31, 06:57](832 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [19:40, 12:47](864 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:03, 14:30](882 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:19, 06:06](504 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:37, 07:32](468 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [08:01, 03:11](373 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:35, 08:08](432 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:48, 04:07](529 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:53, 03:55](530 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:53, 05:26](585 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:25, 01:31](400 MB) -FAIL TO COMPARE -- TEST 'gnv1_nested_intel' [, ]( MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:06, 04:03] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:54, 13:18](574 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [15:10, 13:15] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:07, 09:44](770 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:04, 09:50](708 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:10, 15:05] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:59, 06:55](731 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:08, 12:00] -PASS -- TEST 'hafs_regional_docn_intel' [11:10, 06:13](831 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:15, 06:19](763 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:57, 16:00](1209 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:08, 07:44] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:15, 02:35](1133 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:40](1090 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:14, 02:31](1020 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:14, 02:33](1015 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:14, 02:38](1013 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:14, 02:38](1127 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:14, 02:40](1136 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 02:33](1017 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:24, 06:02](1063 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:26, 06:01](1040 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:14, 02:53](1097 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:14, 03:34](2446 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:15, 03:40](2489 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:08, 03:26] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:15, 06:22](1062 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:08, 07:37] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:13, 02:37](1131 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:02] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:28, 00:52](252 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:21, 00:48](321 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:35](322 MB) - -PASS -- COMPILE 'atml_intel' [16:07, 11:59] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:41, 04:20](1615 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:32, 04:19](1611 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:52, 02:23](896 MB) - -PASS -- COMPILE 'atmw_intel' [16:08, 12:03] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:36, 01:46](1663 MB) - -PASS -- COMPILE 'atmwm_intel' [15:07, 11:58] -PASS -- TEST 'control_atmwav_intel' [05:28, 01:40](675 MB) - -PASS -- COMPILE 'atmaero_intel' [15:06, 11:40] -PASS -- TEST 'atmaero_control_p8_intel' [07:30, 04:08](2951 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:18, 04:50](3100 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:06, 05:04](3107 MB) - -PASS -- COMPILE 'atmaq_intel' [13:08, 11:25] - -PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:21] -PASS -- TEST 'regional_atmaq_debug_intel' [23:52, 20:37](4393 MB) +PASS -- COMPILE 's2swa_32bit_intel' [16:07, 14:29] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:53, 05:14](3181 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:07, 20:46] +PASS -- TEST 'cpld_control_gfsv17_intel' [20:07, 17:06](1736 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:05, 17:17](2029 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [15:04, 08:06](1116 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:06, 18:21](1647 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:06, 05:29] +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:17, 23:24](1692 MB) + +PASS -- COMPILE 's2swa_intel' [15:07, 13:45] +PASS -- TEST 'cpld_control_p8_intel' [08:29, 05:37](3218 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:48, 05:39](3214 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:50, 03:19](3253 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:29, 05:40](3230 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:50, 03:24](3273 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:46, 06:07](3558 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:29, 05:39](3209 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:35, 04:41](3067 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:51, 05:39](3211 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:51, 10:08](3336 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:26, 06:21](3564 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [21:17, 11:06](4112 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:52, 06:56](4367 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:42, 05:24](3171 MB) + +PASS -- COMPILE 's2sw_intel' [16:07, 15:03] +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:20, 04:29](1733 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:39, 04:24](1777 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:44] +PASS -- TEST 'cpld_debug_p8_intel' [13:37, 08:43](3243 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:06, 05:10] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:13, 06:03](1757 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:07, 14:24] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:38, 04:22](1782 MB) + +PASS -- COMPILE 's2s_intel' [15:07, 14:03] +PASS -- TEST 'cpld_control_c48_intel' [10:12, 08:00](2828 MB) + +PASS -- COMPILE 's2swa_faster_intel' [20:07, 18:44] +PASS -- TEST 'cpld_control_p8_faster_intel' [08:40, 05:30](3217 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:06, 15:40] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:26, 16:32](1705 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:27, 08:04](1174 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [25:16, 19:25](1680 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:57] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:07, 24:46](1718 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:06, 12:03] +PASS -- TEST 'control_flake_intel' [05:20, 03:33](647 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:25, 02:29](646 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:29, 02:35](660 MB) +PASS -- TEST 'control_latlon_intel' [04:20, 02:32](652 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:29, 02:33](648 MB) +PASS -- TEST 'control_c48_intel' [07:33, 05:57](870 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:32, 05:56](878 MB) +PASS -- TEST 'control_c192_intel' [11:38, 09:07](851 MB) +PASS -- TEST 'control_c384_intel' [13:46, 10:07](1251 MB) +PASS -- TEST 'control_c384gdas_intel' [13:59, 09:08](1362 MB) +PASS -- TEST 'control_stochy_intel' [03:20, 01:41](655 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:19, 00:58](500 MB) +PASS -- TEST 'control_lndp_intel' [03:20, 01:42](652 MB) +PASS -- TEST 'control_iovr4_intel' [04:26, 02:24](651 MB) +PASS -- TEST 'control_iovr5_intel' [04:22, 02:30](651 MB) +PASS -- TEST 'control_p8_intel' [05:19, 02:58](1625 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:19, 02:58](1631 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:34, 02:50](1642 MB) +PASS -- TEST 'control_restart_p8_intel' [04:40, 01:42](893 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:18, 02:53](1620 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:23, 01:37](927 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:11, 03:01](1612 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:06, 03:00](1720 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:51, 05:14](1628 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:37, 03:57](1692 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:38, 03:02](1639 MB) +PASS -- TEST 'merra2_thompson_intel' [06:44, 03:26](1650 MB) +PASS -- TEST 'regional_control_intel' [07:36, 05:08](857 MB) +PASS -- TEST 'regional_restart_intel' [05:49, 02:42](1023 MB) +PASS -- TEST 'regional_decomp_intel' [07:29, 05:26](851 MB) +PASS -- TEST 'regional_2threads_intel' [05:31, 03:43](844 MB) +PASS -- TEST 'regional_noquilt_intel' [07:33, 05:04](1360 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:39, 05:07](857 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:40, 05:13](857 MB) +PASS -- TEST 'regional_wofs_intel' [08:35, 06:40](1917 MB) + +PASS -- COMPILE 'rrfs_intel' [12:08, 10:40] +PASS -- TEST 'rap_control_intel' [10:35, 07:44](1105 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:01, 04:48](1296 MB) +PASS -- TEST 'rap_decomp_intel' [11:23, 08:14](1030 MB) +PASS -- TEST 'rap_2threads_intel' [10:36, 07:51](1182 MB) +PASS -- TEST 'rap_restart_intel' [06:27, 04:03](1101 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:39, 07:46](1107 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:31, 08:07](1034 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:32, 05:48](1134 MB) +PASS -- TEST 'hrrr_control_intel' [07:00, 04:07](1036 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:24, 04:11](1019 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:01, 03:30](1110 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:22, 02:11](999 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:28, 07:43](1102 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:27, 09:14](1998 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:23, 08:55](2080 MB) + +PASS -- COMPILE 'csawmg_intel' [13:09, 11:36] +PASS -- TEST 'control_csawmg_intel' [07:50, 06:03](749 MB) +PASS -- TEST 'control_csawmgt_intel' [08:55, 06:03](750 MB) +PASS -- TEST 'control_ras_intel' [05:25, 03:15](736 MB) + +PASS -- COMPILE 'wam_intel' [13:09, 11:08] +PASS -- TEST 'control_wam_intel' [04:18, 02:04](657 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:08, 11:47] +PASS -- TEST 'control_p8_faster_intel' [05:34, 02:41](1621 MB) +PASS -- TEST 'regional_control_faster_intel' [06:48, 04:40](854 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:07, 04:47] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:24, 02:43](806 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:28, 02:45](814 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:18, 03:03](816 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:22, 02:51](811 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:40, 04:08](867 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [06:41, 04:06](860 MB) +PASS -- TEST 'control_ras_debug_intel' [04:20, 02:43](827 MB) +PASS -- TEST 'control_diag_debug_intel' [04:26, 02:48](870 MB) +PASS -- TEST 'control_debug_p8_intel' [04:54, 02:51](1645 MB) +PASS -- TEST 'regional_debug_intel' [19:47, 17:40](843 MB) +PASS -- TEST 'rap_control_debug_intel' [06:23, 04:57](1197 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:25, 04:51](1200 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:22, 04:52](1193 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:20, 04:56](1202 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:20, 04:51](1202 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:41, 05:15](1284 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:25, 04:56](1199 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:20, 04:51](1201 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:22, 04:56](1201 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:25, 04:53](1204 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:53](1203 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:23, 04:56](1204 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:25, 08:05](1141 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:22, 04:53](1198 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:21, 05:59](1208 MB) +PASS -- TEST 'rap_flake_debug_intel' [11:24, 04:52](1213 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:27, 08:19](1206 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:08, 03:43] +PASS -- TEST 'control_wam_debug_intel' [11:18, 05:02](510 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:06, 10:49] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:55, 04:25](1162 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [12:28, 06:25](1053 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:42, 03:28](961 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [12:00, 06:41](1094 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:40, 02:57](965 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:13, 03:42](931 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [14:14, 04:48](1037 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:22, 01:54](939 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:07, 13:36] +PASS -- TEST 'conus13km_control_intel' [08:57, 02:05](1160 MB) +PASS -- TEST 'conus13km_2threads_intel' [08:52, 01:00](1121 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [08:42, 01:15](1115 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:09, 11:35] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:51, 04:20](990 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:06, 03:21] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:22, 04:58](1088 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [12:21, 04:50](1078 MB) +PASS -- TEST 'conus13km_debug_intel' [21:01, 14:11](1231 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [21:44, 14:40](924 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [14:44, 08:23](1116 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:44, 14:34](1280 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:06, 03:19] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [11:25, 04:54](1128 MB) + +PASS -- COMPILE 'hafsw_intel' [14:07, 12:41] +PASS -- TEST 'hafs_regional_atm_intel' [09:14, 05:34](744 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:25, 05:59](1125 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:30, 06:58](826 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [22:15, 13:05](824 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:35, 14:44](1020 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [13:56, 06:07](498 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [15:24, 07:20](513 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [12:49, 03:07](372 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [18:21, 07:55](471 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [12:44, 04:07](528 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:53, 03:55](524 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [11:54, 05:21](587 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:24, 01:22](404 MB) +PASS -- TEST 'gnv1_nested_intel' [11:50, 04:27](798 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:06, 03:36] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [20:50, 12:53](572 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [15:06, 13:53] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:04, 09:32](677 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:08, 09:33](704 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:09, 13:42] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:07, 06:54](729 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:06, 12:09] +PASS -- TEST 'hafs_regional_docn_intel' [15:14, 06:15](828 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [15:13, 06:19](816 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [24:02, 15:49](1207 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:06, 06:35] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:16, 02:37](1151 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [06:15, 01:38](1080 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:14, 02:37](1016 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:14, 02:36](1005 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:12, 02:38](1012 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:15, 02:41](1129 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:13, 02:37](1127 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:18, 02:37](1019 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:10, 06:06](1061 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:08, 05:50](1043 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:11, 02:40](1133 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:15, 03:36](2439 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:14, 03:40](2491 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:07, 03:58] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:13, 06:14](1055 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:07, 06:57] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:13, 02:37](1136 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 01:00] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:27, 00:49](254 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:19, 00:48](326 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:21, 00:33](321 MB) + +PASS -- COMPILE 'atml_intel' [15:07, 12:45] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:31, 04:14](1593 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:27, 04:18](1607 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:42, 02:26](907 MB) + +PASS -- COMPILE 'atmw_intel' [14:07, 12:03] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:19, 01:45](1664 MB) + +PASS -- COMPILE 'atmwm_intel' [13:07, 11:17] +PASS -- TEST 'control_atmwav_intel' [07:08, 01:41](666 MB) + +PASS -- COMPILE 'atmaero_intel' [13:07, 11:54] +PASS -- TEST 'atmaero_control_p8_intel' [10:23, 04:08](3023 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:21, 04:50](3090 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:59, 05:07](3119 MB) + +PASS -- COMPILE 'atmaq_intel' [12:07, 10:47] + +PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:17] +PASS -- TEST 'regional_atmaq_debug_intel' [26:49, 21:10](4574 MB) SYNOPSIS: -Starting Date/Time: 20240315 12:47:18 -Ending Date/Time: 20240315 14:22:44 -Total Time: 01h:36m:12s +Starting Date/Time: 20240319 08:14:33 +Ending Date/Time: 20240319 09:52:54 +Total Time: 01h:39m:11s Compiles Completed: 39/39 -Tests Completed: 181/182 -Failed Tests: -* TEST gnv1_nested_intel: FAIL TO COMPARE --- LOG: /work2/noaa/stmp/zshrader/orion/rt-2181/tests/logs/log_orion/rt_gnv1_nested_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF ORION REGRESSION TESTING LOG==== -====START OF ORION REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -0939a1dff2a2060b541eca9642a19c5ed1541f17 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308) - 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459) - 87e6d92e2ca48a55b66f8810f347b51c70c193c4 FV3/ccpp/framework (v0.1.0-1436-g87e6d92) - 2f15ae92802cae11fd0efb902439a084609984f3 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5141-g2f15ae92) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) - 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) - - -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-20240315 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_120510 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: nems -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 'hafsw_intel' [16:08, 14:05] -PASS -- TEST 'gnv1_nested_intel' [06:42, 04:50](809 MB) - -SYNOPSIS: -Starting Date/Time: 20240315 14:56:25 -Ending Date/Time: 20240315 15:36:40 -Total Time: 00h:40m:30s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 182/182 NOTES: A file 'test_changes.list' was generated but is empty. From 6b6625ac8cf4e5874bd53e339a304359dae2951a Mon Sep 17 00:00:00 2001 From: epic-cicd-jenkins Date: Tue, 19 Mar 2024 13:23:09 -0400 Subject: [PATCH 72/76] [AutoRT] Gaea Job Completed. on-behalf-of @ufs-community --- tests/logs/RegressionTests_gaea.log | 540 ++++++++++++++-------------- 1 file changed, 270 insertions(+), 270 deletions(-) diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 59f17fa68c..f9d95844de 100755 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -0939a1dff2a2060b541eca9642a19c5ed1541f17 +889b350550238abd90bed430ef48afac6ecf1d84 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308) + 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch) 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459) - 87e6d92e2ca48a55b66f8810f347b51c70c193c4 FV3/ccpp/framework (v0.1.0-1436-g87e6d92) - 2f15ae92802cae11fd0efb902439a084609984f3 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5141-g2f15ae92) + 7384d92b6c2897be4f29ad4a3747f66762631574 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-703-g7384d92) + 94596b3823c40ea33255121220dac4463e8ccef5 FV3/ccpp/physics (remotes/origin/no_arg_mismatch) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -26,19 +26,19 @@ Submodule hashes used in testing: 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) + 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705) 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308) + 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) + 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705) NOTES: @@ -48,277 +48,277 @@ 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-20240315 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_17834 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/role.epic/FV3_RT/rt_206641 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [21:14, 19:10] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:33, 07:50](3070 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:15, 22:38] -PASS -- TEST 'cpld_control_gfsv17_intel' [18:50, 13:55](1700 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:41, 14:17](1814 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:53, 06:51](952 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:45, 15:14](1668 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:08, 13:36] -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:40, 25:20](1702 MB) - -PASS -- COMPILE 's2swa_intel' [21:14, 19:22] -PASS -- TEST 'cpld_control_p8_intel' [14:40, 08:09](3099 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:51, 08:15](3099 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:26, 05:12](3157 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [14:31, 08:19](3125 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:27, 05:07](3178 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:48, 06:42](3413 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:10, 08:16](3099 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [12:59, 07:28](3022 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:50, 08:17](3099 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:33, 10:16](3272 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:41, 07:29](3603 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [23:23, 13:35](4041 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:51, 09:25](4345 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [13:09, 08:05](3068 MB) - -PASS -- COMPILE 's2sw_intel' [20:11, 18:20] -PASS -- TEST 'cpld_control_noaero_p8_intel' [12:32, 05:40](1682 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:32, 06:01](1730 MB) - -PASS -- COMPILE 's2swa_debug_intel' [15:08, 13:28] -PASS -- TEST 'cpld_debug_p8_intel' [17:24, 10:23](3132 MB) - -PASS -- COMPILE 's2sw_debug_intel' [14:12, 12:51] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:43, 06:01](1700 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:09, 15:33] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [12:00, 05:23](1733 MB) - -PASS -- COMPILE 's2s_intel' [18:13, 16:10] -PASS -- TEST 'cpld_control_c48_intel' [10:55, 06:53](2661 MB) - -PASS -- COMPILE 's2swa_faster_intel' [24:15, 22:32] -PASS -- TEST 'cpld_control_p8_faster_intel' [13:29, 08:12](3099 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:52, 22:28] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:52, 15:22](1702 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:19, 08:17](998 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:45, 17:35](1677 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:11, 13:31] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:34, 27:07](1709 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [23:10, 21:09] -PASS -- TEST 'control_flake_intel' [05:52, 03:45](675 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:52, 02:55](619 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:51, 02:39](627 MB) -PASS -- TEST 'control_latlon_intel' [04:35, 02:50](623 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:51, 02:38](623 MB) -PASS -- TEST 'control_c48_intel' [08:11, 05:38](727 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:11, 05:40](721 MB) -PASS -- TEST 'control_c192_intel' [12:08, 09:16](739 MB) -PASS -- TEST 'control_c384_intel' [20:04, 16:24](1042 MB) -PASS -- TEST 'control_c384gdas_intel' [19:12, 14:12](1187 MB) -PASS -- TEST 'control_stochy_intel' [05:27, 02:12](626 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:41, 01:10](430 MB) -PASS -- TEST 'control_lndp_intel' [03:35, 01:49](628 MB) -PASS -- TEST 'control_iovr4_intel' [04:50, 02:51](623 MB) -PASS -- TEST 'control_iovr5_intel' [04:50, 02:49](623 MB) -PASS -- TEST 'control_p8_intel' [06:57, 03:29](1606 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:30, 03:28](1608 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:07, 03:25](1609 MB) -PASS -- TEST 'control_restart_p8_intel' [04:34, 02:00](789 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:06, 03:43](1596 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:24, 01:46](792 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:54, 03:30](1594 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:51, 02:57](1687 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:33, 05:32](1607 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:00, 04:19](1657 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:20, 03:53](1615 MB) -PASS -- TEST 'merra2_thompson_intel' [06:51, 04:02](1615 MB) -PASS -- TEST 'regional_control_intel' [07:07, 04:35](615 MB) -PASS -- TEST 'regional_restart_intel' [06:49, 02:58](789 MB) -PASS -- TEST 'regional_decomp_intel' [07:04, 04:51](615 MB) -PASS -- TEST 'regional_2threads_intel' [05:58, 03:21](756 MB) -PASS -- TEST 'regional_noquilt_intel' [07:01, 04:57](1153 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:09, 05:09](615 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:06, 04:51](615 MB) -PASS -- TEST 'regional_wofs_intel' [08:06, 06:05](1591 MB) - -PASS -- COMPILE 'rrfs_intel' [16:21, 14:30] -PASS -- TEST 'rap_control_intel' [09:54, 06:57](1010 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:56, 04:02](1187 MB) -PASS -- TEST 'rap_decomp_intel' [09:54, 07:00](1009 MB) -PASS -- TEST 'rap_2threads_intel' [09:54, 06:13](1095 MB) -PASS -- TEST 'rap_restart_intel' [06:19, 03:27](880 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:54, 06:57](1007 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:55, 07:15](1005 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:15, 05:22](880 MB) -PASS -- TEST 'hrrr_control_intel' [06:48, 03:59](1004 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:48, 04:01](1006 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:48, 03:05](1084 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:41, 01:58](838 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:54, 06:48](1003 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:30, 08:15](1969 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:28, 07:50](1948 MB) - -PASS -- COMPILE 'csawmg_intel' [15:48, 13:45] -PASS -- TEST 'control_csawmg_intel' [09:51, 06:43](695 MB) -PASS -- TEST 'control_csawmgt_intel' [09:51, 06:36](691 MB) -PASS -- TEST 'control_ras_intel' [06:03, 03:26](657 MB) - -PASS -- COMPILE 'wam_intel' [21:19, 19:23] -PASS -- TEST 'control_wam_intel' [04:32, 02:12](369 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [28:18, 26:05] -PASS -- TEST 'control_p8_faster_intel' [06:32, 03:38](1608 MB) -PASS -- TEST 'regional_control_faster_intel' [07:01, 04:35](614 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [35:20, 33:26] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:13, 02:50](777 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:01, 02:47](781 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:35, 03:09](784 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:52, 02:51](788 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:54, 04:33](824 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [06:54, 04:25](825 MB) -PASS -- TEST 'control_ras_debug_intel' [04:42, 02:51](794 MB) -PASS -- TEST 'control_diag_debug_intel' [05:41, 03:03](843 MB) -PASS -- TEST 'control_debug_p8_intel' [05:54, 03:49](1618 MB) -PASS -- TEST 'regional_debug_intel' [18:56, 16:11](632 MB) -PASS -- TEST 'rap_control_debug_intel' [07:34, 05:35](1165 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:33, 05:36](1164 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:34, 05:30](1169 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:32, 05:35](1166 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:38, 05:30](1166 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:58, 05:14](1250 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:51, 05:15](1168 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:52, 05:20](1167 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:39, 05:19](1168 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:36, 05:06](1166 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:42, 05:02](1166 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:38, 05:19](1166 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:36, 08:13](1166 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:36, 05:01](1162 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:46, 05:51](1168 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:36, 05:05](1166 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:08, 08:30](1169 MB) - -PASS -- COMPILE 'wam_debug_intel' [32:17, 30:01] -PASS -- TEST 'control_wam_debug_intel' [06:24, 04:46](396 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:09, 12:23] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:18, 03:53](1049 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:12, 05:50](888 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:57, 03:32](885 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:55, 05:32](945 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:06, 02:48](936 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:00, 03:45](886 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:48, 04:12](782 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:19, 02:03](765 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:18, 15:35] -PASS -- TEST 'conus13km_control_intel' [05:08, 02:10](1095 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:39, 01:06](1072 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:22, 01:23](974 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:18, 12:51] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:12, 04:26](904 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:14, 08:53] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:33, 05:00](1048 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:35, 04:59](1048 MB) -PASS -- TEST 'conus13km_debug_intel' [17:54, 14:04](1129 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:00, 14:12](804 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:49, 08:28](1110 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:53, 14:30](1195 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:08, 09:56] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:04, 05:07](1067 MB) - -PASS -- COMPILE 'hafsw_intel' [19:13, 17:13] -PASS -- TEST 'hafs_regional_atm_intel' [08:23, 05:17](706 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:10, 04:34](1061 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:42, 07:54](753 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:25, 11:46](785 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:51, 13:16](793 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:28, 05:30](475 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:41, 06:51](497 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:20, 02:57](372 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:57, 08:09](432 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:59, 03:53](509 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:08, 03:32](512 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:16, 04:54](575 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:43, 02:01](401 MB) -PASS -- TEST 'gnv1_nested_intel' [07:31, 04:24](768 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [13:10, 11:53] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:48, 13:03](582 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [23:13, 21:42] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:51, 08:26](615 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:16, 08:12](785 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [19:11, 17:52] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:20, 06:29](786 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:12, 16:00] -PASS -- TEST 'hafs_regional_docn_intel' [09:14, 06:18](747 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:19, 06:18](729 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:51, 20:09](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:12, 11:38] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:20, 02:36](758 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:22, 01:34](747 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:10, 02:28](635 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:44, 02:28](639 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:26, 02:31](639 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:25, 02:36](758 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:25, 02:34](745 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:27, 02:26](635 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:25, 06:14](692 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:57, 06:08](675 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:22, 02:34](759 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:23, 04:34](2012 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:04, 04:36](2013 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:07, 07:13] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:28, 05:30](739 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [14:12, 12:51] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:23, 02:33](756 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [06:11, 03:51] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:53, 02:17](310 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:54, 01:35](456 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:46, 01:40](456 MB) - -PASS -- COMPILE 'atml_intel' [58:25, 57:11] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:07, 07:47](1640 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:07, 07:47](1640 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:08, 05:47](835 MB) - -PASS -- COMPILE 'atmw_intel' [17:13, 15:22] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:06, 02:22](1649 MB) - -PASS -- COMPILE 'atmwm_intel' [16:10, 14:49] -PASS -- TEST 'control_atmwav_intel' [05:43, 02:04](640 MB) - -PASS -- COMPILE 'atmaero_intel' [16:12, 14:38] -PASS -- TEST 'atmaero_control_p8_intel' [08:26, 05:58](2944 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:29, 06:28](3013 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:18, 06:48](3019 MB) - -PASS -- COMPILE 'atmaq_intel' [17:11, 15:12] - -PASS -- COMPILE 'atmaq_debug_intel' [13:18, 11:28] -PASS -- TEST 'regional_atmaq_debug_intel' [21:41, 18:22](4482 MB) +PASS -- COMPILE 's2swa_32bit_intel' [21:10, 19:54] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [26:02, 07:26](3071 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:11, 22:25] +PASS -- TEST 'cpld_control_gfsv17_intel' [28:16, 13:56](1691 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:59, 14:54](1814 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [18:49, 07:27](951 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:59, 15:06](1673 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:13, 12:43] +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:00, 24:49](1700 MB) + +PASS -- COMPILE 's2swa_intel' [13:24, 12:09] +PASS -- TEST 'cpld_control_p8_intel' [15:14, 09:28](3100 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:25, 09:23](3101 MB) +PASS -- TEST 'cpld_restart_p8_intel' [15:46, 05:40](3157 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [14:22, 09:01](3124 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [15:05, 06:15](3178 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [13:42, 07:26](3416 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:57, 09:02](3099 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:56, 07:48](3022 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:17, 08:25](3100 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:05, 11:18](3272 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [19:13, 07:47](3601 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [27:53, 13:19](4040 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:30, 09:37](4336 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:59, 08:02](3068 MB) + +PASS -- COMPILE 's2sw_intel' [19:14, 17:44] +PASS -- TEST 'cpld_control_noaero_p8_intel' [23:08, 05:11](1682 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [24:18, 05:32](1728 MB) + +PASS -- COMPILE 's2swa_debug_intel' [14:13, 12:06] +PASS -- TEST 'cpld_debug_p8_intel' [24:56, 10:12](3132 MB) + +PASS -- COMPILE 's2sw_debug_intel' [14:13, 12:20] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:46, 05:58](1699 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [18:10, 16:16] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [24:12, 05:37](1730 MB) + +PASS -- COMPILE 's2s_intel' [16:09, 14:41] +PASS -- TEST 'cpld_control_c48_intel' [11:21, 06:56](2662 MB) + +PASS -- COMPILE 's2swa_faster_intel' [13:24, 12:09] +PASS -- TEST 'cpld_control_p8_faster_intel' [14:58, 09:00](3100 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:13, 22:04] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [29:14, 15:27](1702 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:05, 07:56](999 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:08, 17:25](1683 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:13, 13:05] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:45, 26:16](1708 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:09, 14:53] +PASS -- TEST 'control_flake_intel' [15:52, 04:13](675 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [11:20, 02:51](619 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [16:21, 03:20](627 MB) +PASS -- TEST 'control_latlon_intel' [14:04, 03:09](623 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [15:52, 03:07](623 MB) +PASS -- TEST 'control_c48_intel' [13:22, 05:40](721 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [17:26, 05:41](728 MB) +PASS -- TEST 'control_c192_intel' [25:30, 09:50](738 MB) +PASS -- TEST 'control_c384_intel' [34:02, 17:19](1041 MB) +PASS -- TEST 'control_c384gdas_intel' [35:38, 14:14](1184 MB) +PASS -- TEST 'control_stochy_intel' [15:55, 01:59](626 MB) +PASS -- TEST 'control_stochy_restart_intel' [14:41, 01:26](430 MB) +PASS -- TEST 'control_lndp_intel' [14:04, 02:00](628 MB) +PASS -- TEST 'control_iovr4_intel' [14:09, 03:07](622 MB) +PASS -- TEST 'control_iovr5_intel' [17:09, 03:57](623 MB) +PASS -- TEST 'control_p8_intel' [24:15, 03:46](1606 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [25:40, 03:51](1608 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [23:26, 03:18](1609 MB) +PASS -- TEST 'control_restart_p8_intel' [14:29, 02:19](790 MB) +PASS -- TEST 'control_noqr_p8_intel' [24:14, 03:22](1595 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [14:30, 02:19](793 MB) +PASS -- TEST 'control_decomp_p8_intel' [24:13, 03:24](1596 MB) +PASS -- TEST 'control_2threads_p8_intel' [20:17, 03:20](1684 MB) +PASS -- TEST 'control_p8_lndp_intel' [25:03, 05:18](1607 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [16:25, 04:45](1657 MB) +PASS -- TEST 'control_p8_mynn_intel' [15:23, 03:51](1615 MB) +PASS -- TEST 'merra2_thompson_intel' [15:28, 04:15](1615 MB) +PASS -- TEST 'regional_control_intel' [07:48, 05:23](615 MB) +PASS -- TEST 'regional_restart_intel' [05:46, 02:44](789 MB) +PASS -- TEST 'regional_decomp_intel' [07:46, 05:37](615 MB) +PASS -- TEST 'regional_2threads_intel' [11:54, 03:10](766 MB) +PASS -- TEST 'regional_noquilt_intel' [13:33, 04:45](1153 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:26, 04:38](615 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [14:16, 05:00](615 MB) +PASS -- TEST 'regional_wofs_intel' [13:52, 06:06](1591 MB) + +PASS -- COMPILE 'rrfs_intel' [14:13, 12:31] +PASS -- TEST 'rap_control_intel' [21:29, 07:17](1009 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [17:08, 04:03](1186 MB) +PASS -- TEST 'rap_decomp_intel' [22:15, 07:30](1009 MB) +PASS -- TEST 'rap_2threads_intel' [21:23, 06:22](1093 MB) +PASS -- TEST 'rap_restart_intel' [06:00, 03:53](881 MB) +PASS -- TEST 'rap_sfcdiff_intel' [22:11, 07:06](1007 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [20:10, 07:38](1005 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:17, 05:20](880 MB) +PASS -- TEST 'hrrr_control_intel' [16:23, 04:12](1005 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [16:14, 04:18](1006 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [14:14, 03:11](1084 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:34, 02:28](837 MB) +PASS -- TEST 'rrfs_v1beta_intel' [18:12, 07:09](1003 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [20:51, 08:49](1967 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [18:45, 08:25](1950 MB) + +PASS -- COMPILE 'csawmg_intel' [16:09, 14:14] +PASS -- TEST 'control_csawmg_intel' [16:44, 07:05](695 MB) +PASS -- TEST 'control_csawmgt_intel' [16:45, 07:00](692 MB) +PASS -- TEST 'control_ras_intel' [13:35, 03:46](657 MB) + +PASS -- COMPILE 'wam_intel' [15:09, 13:28] +PASS -- TEST 'control_wam_intel' [10:35, 02:30](369 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [17:09, 15:45] +PASS -- TEST 'control_p8_faster_intel' [12:18, 03:33](1607 MB) +PASS -- TEST 'regional_control_faster_intel' [10:47, 04:49](615 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [12:08, 10:55] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:39, 03:01](778 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:38, 03:03](782 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:36, 03:16](785 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:39, 03:14](789 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:44, 04:42](825 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [06:49, 04:23](826 MB) +PASS -- TEST 'control_ras_debug_intel' [05:27, 03:04](795 MB) +PASS -- TEST 'control_diag_debug_intel' [05:33, 03:08](843 MB) +PASS -- TEST 'control_debug_p8_intel' [05:42, 03:22](1619 MB) +PASS -- TEST 'regional_debug_intel' [19:54, 16:36](634 MB) +PASS -- TEST 'rap_control_debug_intel' [08:38, 05:20](1167 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:37, 05:07](1165 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:32, 04:59](1167 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:43, 04:59](1168 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:40, 05:12](1167 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:42, 05:17](1252 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:40, 05:10](1167 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:37, 05:04](1167 MB) +PASS -- TEST 'rap_lndp_debug_intel' [09:37, 05:26](1169 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:39, 05:00](1167 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:30, 04:49](1167 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:28, 05:00](1164 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:32, 07:59](1166 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:43, 04:56](1163 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:32, 06:20](1169 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:31, 05:22](1167 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:17, 08:49](1170 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:08, 07:36] +PASS -- TEST 'control_wam_debug_intel' [06:28, 05:00](396 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:09, 11:11] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:11, 04:08](1052 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:05, 06:11](888 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:48, 03:29](884 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:39, 05:14](949 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:16, 02:48](936 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [11:10, 03:49](886 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [14:10, 04:30](784 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:49, 02:28](764 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:14, 13:37] +PASS -- TEST 'conus13km_control_intel' [12:11, 02:55](1094 MB) +PASS -- TEST 'conus13km_2threads_intel' [12:52, 01:35](1076 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [13:49, 01:55](974 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:09, 12:55] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [13:15, 05:29](904 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:08, 07:27] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [13:34, 05:33](1048 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [13:32, 05:22](1048 MB) +PASS -- TEST 'conus13km_debug_intel' [25:01, 14:32](1129 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [24:59, 14:41](805 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [17:47, 08:29](1108 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:46, 14:25](1195 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:09, 09:51] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [15:40, 05:25](1067 MB) + +PASS -- COMPILE 'hafsw_intel' [19:10, 17:30] +PASS -- TEST 'hafs_regional_atm_intel' [14:37, 05:21](705 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [15:43, 04:40](1055 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [17:46, 07:42](753 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [23:29, 11:52](789 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [23:17, 13:36](801 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:26, 06:18](477 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [18:12, 06:49](495 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [12:36, 03:05](372 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [23:17, 08:15](435 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [13:07, 03:58](510 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [16:36, 03:33](507 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [17:22, 04:50](567 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [13:47, 01:51](402 MB) +PASS -- TEST 'gnv1_nested_intel' [17:34, 04:20](764 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [14:10, 12:24] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [24:18, 12:51](585 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [22:12, 20:09] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [20:19, 07:54](615 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:28, 08:04](786 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [18:09, 16:25] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:40, 06:21](786 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:11, 15:37] +PASS -- TEST 'hafs_regional_docn_intel' [16:28, 06:41](747 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:30, 06:27](732 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [29:29, 20:22](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [12:19, 10:58] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [12:41, 02:56](758 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:39, 01:34](747 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [11:34, 02:56](635 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [08:30, 02:27](639 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [08:37, 02:28](637 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:31, 02:36](745 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:24, 02:35](758 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:30, 02:26](638 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:06, 06:19](693 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:05, 06:07](674 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:22, 02:34](758 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:53, 04:40](2012 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:53, 04:34](2013 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:08, 07:14] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:49, 05:28](739 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:08, 11:11] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:36, 02:33](758 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:06, 03:19] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:13, 02:19](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:07, 01:09](456 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:09, 01:20](456 MB) + +PASS -- COMPILE 'atml_intel' [16:10, 14:08] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:54, 09:07](1640 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [12:54, 09:26](1640 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:55, 05:10](835 MB) + +PASS -- COMPILE 'atmw_intel' [15:13, 13:33] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:18, 02:27](1649 MB) + +PASS -- COMPILE 'atmwm_intel' [15:14, 13:26] +PASS -- TEST 'control_atmwav_intel' [05:12, 02:15](640 MB) + +PASS -- COMPILE 'atmaero_intel' [15:09, 13:08] +PASS -- TEST 'atmaero_control_p8_intel' [10:33, 07:15](2943 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:34, 07:09](3012 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:15, 07:09](3019 MB) + +PASS -- COMPILE 'atmaq_intel' [14:12, 12:29] + +PASS -- COMPILE 'atmaq_debug_intel' [12:10, 09:52] +PASS -- TEST 'regional_atmaq_debug_intel' [22:17, 18:37](4481 MB) SYNOPSIS: -Starting Date/Time: 20240315 14:58:48 -Ending Date/Time: 20240315 17:15:28 -Total Time: 02h:17m:20s +Starting Date/Time: 20240319 11:05:14 +Ending Date/Time: 20240319 13:19:30 +Total Time: 02h:15m:11s Compiles Completed: 39/39 Tests Completed: 182/182 From 7842b88d5f4979fd000cd6ef32e466b79e7dfdf2 Mon Sep 17 00:00:00 2001 From: zach1221 <99902696+zach1221@users.noreply.github.com> Date: Tue, 19 Mar 2024 14:12:26 -0400 Subject: [PATCH 73/76] Delete tests/logs/RT-run-Hercules.log --- tests/logs/RT-run-Hercules.log | 2301 -------------------------------- 1 file changed, 2301 deletions(-) delete mode 100644 tests/logs/RT-run-Hercules.log diff --git a/tests/logs/RT-run-Hercules.log b/tests/logs/RT-run-Hercules.log deleted file mode 100644 index bc5b38365a..0000000000 --- a/tests/logs/RT-run-Hercules.log +++ /dev/null @@ -1,2301 +0,0 @@ -hercules-login-1.hpc.msstate.edu -Machine: hercules Account: epic -Linking /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_2703530 to /work/noaa/epic/role-epic/jenkins/workspace/s-weather-model_pipeline_PR-1147/tests/run_dir -Run regression test in: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_2703530 -No update needed to TESTS_FILE -COMPILING s2swa_32bit_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 199 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 200 -COMPILING s2swa_32bit_pdlib_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 239 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 240 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 239 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 240 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 239 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 240 -ATM_petlist_bounds: 0 197 -OCN_petlist_bounds: 198 231 -ICE_petlist_bounds: 232 251 -WAV_petlist_bounds: 252 301 -CHM_petlist_bounds: 0 191 -MED_petlist_bounds: 0 191 -AQM_petlist_bounds: 0 191 -LND_petlist_bounds: -UFS_tasks : 302 -COMPILING s2swa_32bit_pdlib_debug_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 257 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 258 -COMPILING s2swa_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 199 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 200 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 199 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 200 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 199 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 200 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 199 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 200 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 199 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 200 -ATM_petlist_bounds: 0 167 -OCN_petlist_bounds: 168 187 -ICE_petlist_bounds: 188 197 -WAV_petlist_bounds: 198 221 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 222 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 199 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 200 -ATM_petlist_bounds: 0 197 -OCN_petlist_bounds: 198 231 -ICE_petlist_bounds: 232 251 -WAV_petlist_bounds: 252 279 -CHM_petlist_bounds: 0 191 -MED_petlist_bounds: 0 191 -AQM_petlist_bounds: 0 191 -LND_petlist_bounds: -UFS_tasks : 280 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 199 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 200 -ATM_petlist_bounds: 0 623 -OCN_petlist_bounds: 624 683 -ICE_petlist_bounds: 684 707 -WAV_petlist_bounds: 708 787 -CHM_petlist_bounds: 0 575 -MED_petlist_bounds: 0 575 -AQM_petlist_bounds: 0 575 -LND_petlist_bounds: -UFS_tasks : 788 -ATM_petlist_bounds: 0 599 -OCN_petlist_bounds: 600 659 -ICE_petlist_bounds: 660 683 -WAV_petlist_bounds: 684 763 -CHM_petlist_bounds: 0 575 -MED_petlist_bounds: 0 575 -AQM_petlist_bounds: 0 575 -LND_petlist_bounds: -UFS_tasks : 764 -ATM_petlist_bounds: 0 959 -OCN_petlist_bounds: 960 1079 -ICE_petlist_bounds: 1080 1127 -WAV_petlist_bounds: 1128 1287 -CHM_petlist_bounds: 0 767 -MED_petlist_bounds: 0 767 -AQM_petlist_bounds: 0 767 -LND_petlist_bounds: -UFS_tasks : 1288 -ATM_petlist_bounds: 0 959 -OCN_petlist_bounds: 960 1079 -ICE_petlist_bounds: 1080 1127 -WAV_petlist_bounds: 1128 1287 -CHM_petlist_bounds: 0 767 -MED_petlist_bounds: 0 767 -AQM_petlist_bounds: 0 767 -LND_petlist_bounds: -UFS_tasks : 1288 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 180 -COMPILING s2sw_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 199 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 200 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 180 -COMPILING s2swa_debug_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 199 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 200 -COMPILING s2sw_debug_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 199 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 200 -COMPILING s2s_aoflux_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 199 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 200 -COMPILING s2s_intel -ATM_petlist_bounds: 0 11 -OCN_petlist_bounds: 12 15 -ICE_petlist_bounds: 16 19 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 5 -MED_petlist_bounds: 0 5 -AQM_petlist_bounds: 0 5 -LND_petlist_bounds: -UFS_tasks : 20 -COMPILING s2swa_faster_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 199 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 200 -COMPILING s2sw_pdlib_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 239 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 240 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 239 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 240 -ATM_petlist_bounds: 0 197 -OCN_petlist_bounds: 198 231 -ICE_petlist_bounds: 232 251 -WAV_petlist_bounds: 252 301 -CHM_petlist_bounds: 0 191 -MED_petlist_bounds: 0 191 -AQM_petlist_bounds: 0 191 -LND_petlist_bounds: -UFS_tasks : 302 -COMPILING s2sw_pdlib_debug_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 257 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 258 -COMPILING atm_dyn32_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 7 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 5 -MED_petlist_bounds: 0 5 -AQM_petlist_bounds: 0 5 -LND_petlist_bounds: -UFS_tasks : 8 -ATM_petlist_bounds: 0 7 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 5 -MED_petlist_bounds: 0 5 -AQM_petlist_bounds: 0 5 -LND_petlist_bounds: -UFS_tasks : 8 -ATM_petlist_bounds: 0 203 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 191 -MED_petlist_bounds: 0 191 -AQM_petlist_bounds: 0 191 -LND_petlist_bounds: -UFS_tasks : 204 -ATM_petlist_bounds: 0 671 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 575 -MED_petlist_bounds: 0 575 -AQM_petlist_bounds: 0 575 -LND_petlist_bounds: -UFS_tasks : 672 -ATM_petlist_bounds: 0 671 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 575 -MED_petlist_bounds: 0 575 -AQM_petlist_bounds: 0 575 -LND_petlist_bounds: -UFS_tasks : 672 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 155 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 156 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 119 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 109 -MED_petlist_bounds: 0 109 -AQM_petlist_bounds: 0 109 -LND_petlist_bounds: -UFS_tasks : 120 -ATM_petlist_bounds: 0 119 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 109 -MED_petlist_bounds: 0 109 -AQM_petlist_bounds: 0 109 -LND_petlist_bounds: -UFS_tasks : 120 -ATM_petlist_bounds: 0 119 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 109 -MED_petlist_bounds: 0 109 -AQM_petlist_bounds: 0 109 -LND_petlist_bounds: -UFS_tasks : 120 -ATM_petlist_bounds: 0 239 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 219 -MED_petlist_bounds: 0 219 -AQM_petlist_bounds: 0 219 -LND_petlist_bounds: -UFS_tasks : 240 -ATM_petlist_bounds: 0 109 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 109 -MED_petlist_bounds: 0 109 -AQM_petlist_bounds: 0 109 -LND_petlist_bounds: -UFS_tasks : 110 -ATM_petlist_bounds: 0 119 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 109 -MED_petlist_bounds: 0 109 -AQM_petlist_bounds: 0 109 -LND_petlist_bounds: -UFS_tasks : 120 -ATM_petlist_bounds: 0 119 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 109 -MED_petlist_bounds: 0 109 -AQM_petlist_bounds: 0 109 -LND_petlist_bounds: -UFS_tasks : 120 -ATM_petlist_bounds: 0 119 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 109 -MED_petlist_bounds: 0 109 -AQM_petlist_bounds: 0 109 -LND_petlist_bounds: -UFS_tasks : 120 -COMPILING ifi_intel -COMPILING rrfs_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 383 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 359 -MED_petlist_bounds: 0 359 -AQM_petlist_bounds: 0 359 -LND_petlist_bounds: -UFS_tasks : 384 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 155 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 156 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 155 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 156 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -COMPILING csawmg_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -COMPILING csawmg_gnu -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -COMPILING wam_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -COMPILING atm_faster_dyn32_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 119 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 109 -MED_petlist_bounds: 0 109 -AQM_petlist_bounds: 0 109 -LND_petlist_bounds: -UFS_tasks : 120 -COMPILING atm_debug_dyn32_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 119 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 109 -MED_petlist_bounds: 0 109 -AQM_petlist_bounds: 0 109 -LND_petlist_bounds: -UFS_tasks : 120 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -COMPILING atm_debug_dyn32_gnu -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -COMPILING wam_debug_intel -COMPILING rrfs_dyn32_phy32_intel -ATM_petlist_bounds: 0 383 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 359 -MED_petlist_bounds: 0 359 -AQM_petlist_bounds: 0 359 -LND_petlist_bounds: -UFS_tasks : 384 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 155 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 156 -ATM_petlist_bounds: 0 155 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 156 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -COMPILING rrfs_dyn32_phy32_faster_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 299 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 287 -MED_petlist_bounds: 0 287 -AQM_petlist_bounds: 0 287 -LND_petlist_bounds: -UFS_tasks : 300 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -COMPILING rrfs_dyn64_phy32_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -COMPILING rrfs_dyn32_phy32_debug_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 299 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 287 -MED_petlist_bounds: 0 287 -AQM_petlist_bounds: 0 287 -LND_petlist_bounds: -UFS_tasks : 300 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -COMPILING rrfs_dyn64_phy32_debug_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -COMPILING hafsw_intel -ATM_petlist_bounds: 0 599 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 479 -MED_petlist_bounds: 0 479 -AQM_petlist_bounds: 0 479 -LND_petlist_bounds: -UFS_tasks : 600 -ATM_petlist_bounds: 0 599 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 479 -MED_petlist_bounds: 0 479 -AQM_petlist_bounds: 0 479 -LND_petlist_bounds: -UFS_tasks : 600 -ATM_petlist_bounds: 0 299 -OCN_petlist_bounds: 300 359 -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 239 -MED_petlist_bounds: 0 239 -AQM_petlist_bounds: 0 239 -LND_petlist_bounds: -UFS_tasks : 360 -ATM_petlist_bounds: 0 299 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: 300 359 -CHM_petlist_bounds: 0 239 -MED_petlist_bounds: 0 239 -AQM_petlist_bounds: 0 239 -LND_petlist_bounds: -UFS_tasks : 360 -ATM_petlist_bounds: 0 299 -OCN_petlist_bounds: 300 359 -ICE_petlist_bounds: -WAV_petlist_bounds: 360 419 -CHM_petlist_bounds: 0 239 -MED_petlist_bounds: 0 239 -AQM_petlist_bounds: 0 239 -LND_petlist_bounds: -UFS_tasks : 420 -ATM_petlist_bounds: 0 359 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 239 -MED_petlist_bounds: 0 239 -AQM_petlist_bounds: 0 239 -LND_petlist_bounds: -UFS_tasks : 360 -ATM_petlist_bounds: 0 479 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 359 -MED_petlist_bounds: 0 359 -AQM_petlist_bounds: 0 359 -LND_petlist_bounds: -UFS_tasks : 480 -ATM_petlist_bounds: 0 479 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 359 -MED_petlist_bounds: 0 359 -AQM_petlist_bounds: 0 359 -LND_petlist_bounds: -UFS_tasks : 480 -ATM_petlist_bounds: 0 839 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 719 -MED_petlist_bounds: 0 719 -AQM_petlist_bounds: 0 719 -LND_petlist_bounds: -UFS_tasks : 840 -ATM_petlist_bounds: 0 359 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 239 -MED_petlist_bounds: 0 239 -AQM_petlist_bounds: 0 239 -LND_petlist_bounds: -UFS_tasks : 360 -ATM_petlist_bounds: 0 359 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 239 -MED_petlist_bounds: 0 239 -AQM_petlist_bounds: 0 239 -LND_petlist_bounds: -UFS_tasks : 360 -ATM_petlist_bounds: 0 479 -OCN_petlist_bounds: 480 599 -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 239 -MED_petlist_bounds: 0 239 -AQM_petlist_bounds: 0 239 -LND_petlist_bounds: -UFS_tasks : 600 -ATM_petlist_bounds: 0 479 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 359 -MED_petlist_bounds: 0 359 -AQM_petlist_bounds: 0 359 -LND_petlist_bounds: -UFS_tasks : 480 -COMPILING hafsw_debug_intel -ATM_petlist_bounds: 0 479 -OCN_petlist_bounds: 480 599 -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 239 -MED_petlist_bounds: 0 239 -AQM_petlist_bounds: 0 239 -LND_petlist_bounds: -UFS_tasks : 600 -COMPILING hafsw_faster_intel -ATM_petlist_bounds: 0 359 -OCN_petlist_bounds: 360 479 -ICE_petlist_bounds: -WAV_petlist_bounds: 480 599 -CHM_petlist_bounds: 0 239 -MED_petlist_bounds: 0 239 -AQM_petlist_bounds: 0 239 -LND_petlist_bounds: -UFS_tasks : 600 -ATM_petlist_bounds: 0 359 -OCN_petlist_bounds: 360 479 -ICE_petlist_bounds: -WAV_petlist_bounds: 480 599 -CHM_petlist_bounds: 0 239 -MED_petlist_bounds: 0 239 -AQM_petlist_bounds: 0 239 -LND_petlist_bounds: -UFS_tasks : 600 -COMPILING hafs_mom6w_intel -ATM_petlist_bounds: 0 359 -OCN_petlist_bounds: 360 479 -ICE_petlist_bounds: -WAV_petlist_bounds: 480 599 -CHM_petlist_bounds: 0 239 -MED_petlist_bounds: 0 239 -AQM_petlist_bounds: 0 239 -LND_petlist_bounds: -UFS_tasks : 600 -COMPILING hafs_all_intel -ATM_petlist_bounds: 0 299 -OCN_petlist_bounds: 300 359 -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 239 -MED_petlist_bounds: 0 239 -AQM_petlist_bounds: 0 239 -LND_petlist_bounds: -UFS_tasks : 360 -ATM_petlist_bounds: 0 299 -OCN_petlist_bounds: 300 359 -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 239 -MED_petlist_bounds: 0 239 -AQM_petlist_bounds: 0 239 -LND_petlist_bounds: -UFS_tasks : 360 -ATM_petlist_bounds: 0 59 -OCN_petlist_bounds: 60 119 -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 59 -MED_petlist_bounds: 0 59 -AQM_petlist_bounds: 0 59 -LND_petlist_bounds: -UFS_tasks : 120 -COMPILING datm_cdeps_intel -ATM_petlist_bounds: 0 11 -OCN_petlist_bounds: 12 27 -ICE_petlist_bounds: 28 39 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 11 -MED_petlist_bounds: 0 11 -AQM_petlist_bounds: 0 11 -LND_petlist_bounds: -UFS_tasks : 40 -ATM_petlist_bounds: 0 11 -OCN_petlist_bounds: 12 27 -ICE_petlist_bounds: 28 39 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 11 -MED_petlist_bounds: 0 11 -AQM_petlist_bounds: 0 11 -LND_petlist_bounds: -UFS_tasks : 40 -ATM_petlist_bounds: 0 11 -OCN_petlist_bounds: 12 27 -ICE_petlist_bounds: 28 39 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 11 -MED_petlist_bounds: 0 11 -AQM_petlist_bounds: 0 11 -LND_petlist_bounds: -UFS_tasks : 40 -ATM_petlist_bounds: 0 11 -OCN_petlist_bounds: 12 27 -ICE_petlist_bounds: 28 39 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 11 -MED_petlist_bounds: 0 11 -AQM_petlist_bounds: 0 11 -LND_petlist_bounds: -UFS_tasks : 40 -ATM_petlist_bounds: 0 11 -OCN_petlist_bounds: 12 27 -ICE_petlist_bounds: 28 39 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 11 -MED_petlist_bounds: 0 11 -AQM_petlist_bounds: 0 11 -LND_petlist_bounds: -UFS_tasks : 40 -ATM_petlist_bounds: 0 11 -OCN_petlist_bounds: 12 27 -ICE_petlist_bounds: 28 39 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 11 -MED_petlist_bounds: 0 11 -AQM_petlist_bounds: 0 11 -LND_petlist_bounds: -UFS_tasks : 40 -ATM_petlist_bounds: 0 11 -OCN_petlist_bounds: 12 27 -ICE_petlist_bounds: 28 39 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 11 -MED_petlist_bounds: 0 11 -AQM_petlist_bounds: 0 11 -LND_petlist_bounds: -UFS_tasks : 40 -ATM_petlist_bounds: 0 11 -OCN_petlist_bounds: 12 27 -ICE_petlist_bounds: 28 39 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 11 -MED_petlist_bounds: 0 11 -AQM_petlist_bounds: 0 11 -LND_petlist_bounds: -UFS_tasks : 40 -ATM_petlist_bounds: 0 39 -OCN_petlist_bounds: 40 159 -ICE_petlist_bounds: 160 207 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 39 -MED_petlist_bounds: 0 39 -AQM_petlist_bounds: 0 39 -LND_petlist_bounds: -UFS_tasks : 208 -ATM_petlist_bounds: 0 39 -OCN_petlist_bounds: 40 159 -ICE_petlist_bounds: 160 207 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 39 -MED_petlist_bounds: 0 39 -AQM_petlist_bounds: 0 39 -LND_petlist_bounds: -UFS_tasks : 208 -ATM_petlist_bounds: 0 11 -OCN_petlist_bounds: 12 27 -ICE_petlist_bounds: 28 39 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 11 -MED_petlist_bounds: 0 11 -AQM_petlist_bounds: 0 11 -LND_petlist_bounds: -UFS_tasks : 40 -ATM_petlist_bounds: 0 11 -OCN_petlist_bounds: 12 27 -ICE_petlist_bounds: 28 39 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 11 -MED_petlist_bounds: 0 11 -AQM_petlist_bounds: 0 11 -LND_petlist_bounds: -UFS_tasks : 40 -ATM_petlist_bounds: 0 11 -OCN_petlist_bounds: 12 27 -ICE_petlist_bounds: 28 39 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 11 -MED_petlist_bounds: 0 11 -AQM_petlist_bounds: 0 11 -LND_petlist_bounds: -UFS_tasks : 40 -COMPILING datm_cdeps_debug_intel -ATM_petlist_bounds: 0 11 -OCN_petlist_bounds: 12 27 -ICE_petlist_bounds: 28 39 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 11 -MED_petlist_bounds: 0 11 -AQM_petlist_bounds: 0 11 -LND_petlist_bounds: -UFS_tasks : 40 -COMPILING datm_cdeps_faster_intel -ATM_petlist_bounds: 0 11 -OCN_petlist_bounds: 12 27 -ICE_petlist_bounds: 28 39 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 11 -MED_petlist_bounds: 0 11 -AQM_petlist_bounds: 0 11 -LND_petlist_bounds: -UFS_tasks : 40 -COMPILING datm_cdeps_land_intel -ATM_petlist_bounds: 0 143 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: 144 287 -UFS_tasks : 288 -ATM_petlist_bounds: 0 143 -OCN_petlist_bounds: 144 159 -ICE_petlist_bounds: 160 171 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: 172 315 -UFS_tasks : 316 -ATM_petlist_bounds: 0 143 -OCN_petlist_bounds: 144 159 -ICE_petlist_bounds: 160 171 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: 172 315 -UFS_tasks : 316 -COMPILING atml_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: 150 293 -UFS_tasks : 294 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: 150 293 -UFS_tasks : 294 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: 150 293 -UFS_tasks : 294 -COMPILING atmw_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: 150 179 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 180 -COMPILING atmwm_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: 150 179 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 180 -COMPILING atmaero_intel -ATM_petlist_bounds: 0 197 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 191 -MED_petlist_bounds: 0 191 -AQM_petlist_bounds: 0 191 -LND_petlist_bounds: -UFS_tasks : 198 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -COMPILING atmaq_intel -COMPILING atmaq_debug_intel -ATM_petlist_bounds: 0 271 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 263 -MED_petlist_bounds: 0 263 -AQM_petlist_bounds: 0 263 -LND_petlist_bounds: -UFS_tasks : 272 -COMPILING atm_gnu -ATM_petlist_bounds: 0 7 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 5 -MED_petlist_bounds: 0 5 -AQM_petlist_bounds: 0 5 -LND_petlist_bounds: -UFS_tasks : 8 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -COMPILING rrfs_gnu -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 155 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 156 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 155 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 156 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -COMPILING atm_dyn32_debug_gnu -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 119 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 109 -MED_petlist_bounds: 0 109 -AQM_petlist_bounds: 0 109 -LND_petlist_bounds: -UFS_tasks : 120 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -COMPILING wam_debug_gnu -COMPILING rrfs_dyn32_phy32_gnu -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 155 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 156 -ATM_petlist_bounds: 0 155 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 156 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 299 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 287 -MED_petlist_bounds: 0 287 -AQM_petlist_bounds: 0 287 -LND_petlist_bounds: -UFS_tasks : 300 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -COMPILING atm_dyn64_phy32_gnu -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -COMPILING atm_dyn32_phy32_debug_gnu -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 299 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 287 -MED_petlist_bounds: 0 287 -AQM_petlist_bounds: 0 287 -LND_petlist_bounds: -UFS_tasks : 300 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -COMPILING atm_dyn64_phy32_debug_gnu -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -COMPILING s2swa_gnu -COMPILING s2s_gnu -COMPILING s2swa_debug_gnu -COMPILING s2sw_pdlib_gnu -COMPILING s2sw_pdlib_debug_gnu -COMPILING datm_cdeps_gnu -ping server(hercules-login-1.hpc.msstate.edu:11198) succeeded in 00:00:00.005473 ~5 milliseconds -ecflow_server is already running on hercules-login-1.hpc.msstate.edu:11198 -ecflow tasks remaining: 293 -ecflow tasks remaining: 293 -ecflow tasks remaining: 293 -ecflow tasks remaining: 293 -ecflow tasks remaining: 293 -ecflow tasks remaining: 293 -ecflow tasks remaining: 293 -ecflow tasks remaining: 293 -ecflow tasks remaining: 293 -ecflow tasks remaining: 293 -ecflow tasks remaining: 293 -ecflow tasks remaining: 293 -ecflow tasks remaining: 293 -ecflow tasks remaining: 293 -ecflow tasks remaining: 293 -ecflow tasks remaining: 293 -ecflow tasks remaining: 293 -ecflow tasks remaining: 293 -ecflow tasks remaining: 293 -ecflow tasks remaining: 293 -ecflow tasks remaining: 293 -ecflow tasks remaining: 293 -ecflow tasks remaining: 293 -ecflow tasks remaining: 293 -ecflow tasks remaining: 293 -ecflow tasks remaining: 293 -ecflow tasks remaining: 293 -ecflow tasks remaining: 293 -ecflow tasks remaining: 293 -ecflow tasks remaining: 293 -ecflow tasks remaining: 293 -ecflow tasks remaining: 293 -ecflow tasks remaining: 293 -ecflow tasks remaining: 292 -ecflow tasks remaining: 292 -ecflow tasks remaining: 292 -ecflow tasks remaining: 292 -ecflow tasks remaining: 292 -ecflow tasks remaining: 290 -ecflow tasks remaining: 290 -ecflow tasks remaining: 290 -ecflow tasks remaining: 290 -ecflow tasks remaining: 290 -ecflow tasks remaining: 290 -ecflow tasks remaining: 290 -ecflow tasks remaining: 290 -ecflow tasks remaining: 290 -ecflow tasks remaining: 290 -ecflow tasks remaining: 290 -ecflow tasks remaining: 290 -ecflow tasks remaining: 290 -ecflow tasks remaining: 290 -ecflow tasks remaining: 290 -ecflow tasks remaining: 290 -ecflow tasks remaining: 290 -ecflow tasks remaining: 290 -ecflow tasks remaining: 290 -ecflow tasks remaining: 290 -ecflow tasks remaining: 289 -ecflow tasks remaining: 287 -ecflow tasks remaining: 287 -ecflow tasks remaining: 286 -ecflow tasks remaining: 286 -ecflow tasks remaining: 285 -ecflow tasks remaining: 285 -ecflow tasks remaining: 285 -ecflow tasks remaining: 285 -ecflow tasks remaining: 285 -ecflow tasks remaining: 285 -ecflow tasks remaining: 285 -ecflow tasks remaining: 285 -ecflow tasks remaining: 285 -ecflow tasks remaining: 284 -ecflow tasks remaining: 284 -ecflow tasks remaining: 283 -ecflow tasks remaining: 282 -ecflow tasks remaining: 282 -ecflow tasks remaining: 282 -ecflow tasks remaining: 282 -ecflow tasks remaining: 282 -ecflow tasks remaining: 282 -ecflow tasks remaining: 282 -ecflow tasks remaining: 282 -ecflow tasks remaining: 282 -ecflow tasks remaining: 282 -ecflow tasks remaining: 282 -ecflow tasks remaining: 282 -ecflow tasks remaining: 282 -ecflow tasks remaining: 245 -ecflow tasks remaining: 245 -ecflow tasks remaining: 245 -ecflow tasks remaining: 244 -ecflow tasks remaining: 244 -ecflow tasks remaining: 243 -ecflow tasks remaining: 243 -ecflow tasks remaining: 243 From bce9e3d83194fb902248b035e34f7d32ca7d7b81 Mon Sep 17 00:00:00 2001 From: zach1221 <99902696+zach1221@users.noreply.github.com> Date: Tue, 19 Mar 2024 14:12:39 -0400 Subject: [PATCH 74/76] Delete tests/logs/RT-run-Orion.log --- tests/logs/RT-run-Orion.log | 2467 ----------------------------------- 1 file changed, 2467 deletions(-) delete mode 100644 tests/logs/RT-run-Orion.log diff --git a/tests/logs/RT-run-Orion.log b/tests/logs/RT-run-Orion.log deleted file mode 100644 index d6bd7eb96b..0000000000 --- a/tests/logs/RT-run-Orion.log +++ /dev/null @@ -1,2467 +0,0 @@ -Orion-login-1.HPC.MsState.Edu -Machine: orion Account: epic -Linking /work/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_170319 to /work/noaa/epic/role-epic/jenkins/workspace/s-weather-model_pipeline_PR-2172/tests/run_dir -Run regression test in: /work/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_170319 -No update needed to TESTS_FILE -COMPILING s2swa_32bit_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 199 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 200 -COMPILING s2swa_32bit_pdlib_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 239 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 240 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 239 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 240 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 239 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 240 -ATM_petlist_bounds: 0 197 -OCN_petlist_bounds: 198 231 -ICE_petlist_bounds: 232 251 -WAV_petlist_bounds: 252 301 -CHM_petlist_bounds: 0 191 -MED_petlist_bounds: 0 191 -AQM_petlist_bounds: 0 191 -LND_petlist_bounds: -UFS_tasks : 302 -COMPILING s2swa_32bit_pdlib_debug_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 257 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 258 -COMPILING s2swa_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 199 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 200 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 199 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 200 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 199 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 200 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 199 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 200 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 199 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 200 -ATM_petlist_bounds: 0 167 -OCN_petlist_bounds: 168 187 -ICE_petlist_bounds: 188 197 -WAV_petlist_bounds: 198 221 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 222 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 199 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 200 -ATM_petlist_bounds: 0 197 -OCN_petlist_bounds: 198 231 -ICE_petlist_bounds: 232 251 -WAV_petlist_bounds: 252 279 -CHM_petlist_bounds: 0 191 -MED_petlist_bounds: 0 191 -AQM_petlist_bounds: 0 191 -LND_petlist_bounds: -UFS_tasks : 280 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 199 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 200 -ATM_petlist_bounds: 0 623 -OCN_petlist_bounds: 624 683 -ICE_petlist_bounds: 684 707 -WAV_petlist_bounds: 708 787 -CHM_petlist_bounds: 0 575 -MED_petlist_bounds: 0 575 -AQM_petlist_bounds: 0 575 -LND_petlist_bounds: -UFS_tasks : 788 -ATM_petlist_bounds: 0 599 -OCN_petlist_bounds: 600 659 -ICE_petlist_bounds: 660 683 -WAV_petlist_bounds: 684 763 -CHM_petlist_bounds: 0 575 -MED_petlist_bounds: 0 575 -AQM_petlist_bounds: 0 575 -LND_petlist_bounds: -UFS_tasks : 764 -ATM_petlist_bounds: 0 959 -OCN_petlist_bounds: 960 1079 -ICE_petlist_bounds: 1080 1127 -WAV_petlist_bounds: 1128 1287 -CHM_petlist_bounds: 0 767 -MED_petlist_bounds: 0 767 -AQM_petlist_bounds: 0 767 -LND_petlist_bounds: -UFS_tasks : 1288 -ATM_petlist_bounds: 0 959 -OCN_petlist_bounds: 960 1079 -ICE_petlist_bounds: 1080 1127 -WAV_petlist_bounds: 1128 1287 -CHM_petlist_bounds: 0 767 -MED_petlist_bounds: 0 767 -AQM_petlist_bounds: 0 767 -LND_petlist_bounds: -UFS_tasks : 1288 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 180 -COMPILING s2sw_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 199 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 200 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 180 -COMPILING s2swa_debug_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 199 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 200 -COMPILING s2sw_debug_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 199 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 200 -COMPILING s2s_aoflux_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 199 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 200 -COMPILING s2s_intel -ATM_petlist_bounds: 0 11 -OCN_petlist_bounds: 12 15 -ICE_petlist_bounds: 16 19 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 5 -MED_petlist_bounds: 0 5 -AQM_petlist_bounds: 0 5 -LND_petlist_bounds: -UFS_tasks : 20 -COMPILING s2swa_faster_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 199 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 200 -COMPILING s2sw_pdlib_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 239 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 240 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 239 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 240 -ATM_petlist_bounds: 0 197 -OCN_petlist_bounds: 198 231 -ICE_petlist_bounds: 232 251 -WAV_petlist_bounds: 252 301 -CHM_petlist_bounds: 0 191 -MED_petlist_bounds: 0 191 -AQM_petlist_bounds: 0 191 -LND_petlist_bounds: -UFS_tasks : 302 -COMPILING s2sw_pdlib_debug_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: 150 169 -ICE_petlist_bounds: 170 179 -WAV_petlist_bounds: 180 257 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 258 -COMPILING atm_dyn32_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 7 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 5 -MED_petlist_bounds: 0 5 -AQM_petlist_bounds: 0 5 -LND_petlist_bounds: -UFS_tasks : 8 -ATM_petlist_bounds: 0 7 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 5 -MED_petlist_bounds: 0 5 -AQM_petlist_bounds: 0 5 -LND_petlist_bounds: -UFS_tasks : 8 -ATM_petlist_bounds: 0 203 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 191 -MED_petlist_bounds: 0 191 -AQM_petlist_bounds: 0 191 -LND_petlist_bounds: -UFS_tasks : 204 -ATM_petlist_bounds: 0 671 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 575 -MED_petlist_bounds: 0 575 -AQM_petlist_bounds: 0 575 -LND_petlist_bounds: -UFS_tasks : 672 -ATM_petlist_bounds: 0 671 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 575 -MED_petlist_bounds: 0 575 -AQM_petlist_bounds: 0 575 -LND_petlist_bounds: -UFS_tasks : 672 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 155 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 156 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 119 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 109 -MED_petlist_bounds: 0 109 -AQM_petlist_bounds: 0 109 -LND_petlist_bounds: -UFS_tasks : 120 -ATM_petlist_bounds: 0 119 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 109 -MED_petlist_bounds: 0 109 -AQM_petlist_bounds: 0 109 -LND_petlist_bounds: -UFS_tasks : 120 -ATM_petlist_bounds: 0 119 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 109 -MED_petlist_bounds: 0 109 -AQM_petlist_bounds: 0 109 -LND_petlist_bounds: -UFS_tasks : 120 -ATM_petlist_bounds: 0 239 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 219 -MED_petlist_bounds: 0 219 -AQM_petlist_bounds: 0 219 -LND_petlist_bounds: -UFS_tasks : 240 -ATM_petlist_bounds: 0 109 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 109 -MED_petlist_bounds: 0 109 -AQM_petlist_bounds: 0 109 -LND_petlist_bounds: -UFS_tasks : 110 -ATM_petlist_bounds: 0 119 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 109 -MED_petlist_bounds: 0 109 -AQM_petlist_bounds: 0 109 -LND_petlist_bounds: -UFS_tasks : 120 -ATM_petlist_bounds: 0 119 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 109 -MED_petlist_bounds: 0 109 -AQM_petlist_bounds: 0 109 -LND_petlist_bounds: -UFS_tasks : 120 -ATM_petlist_bounds: 0 119 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 109 -MED_petlist_bounds: 0 109 -AQM_petlist_bounds: 0 109 -LND_petlist_bounds: -UFS_tasks : 120 -COMPILING ifi_intel -COMPILING rrfs_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 383 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 359 -MED_petlist_bounds: 0 359 -AQM_petlist_bounds: 0 359 -LND_petlist_bounds: -UFS_tasks : 384 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 155 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 156 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 155 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 156 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -COMPILING csawmg_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -COMPILING wam_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -COMPILING atm_faster_dyn32_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 119 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 109 -MED_petlist_bounds: 0 109 -AQM_petlist_bounds: 0 109 -LND_petlist_bounds: -UFS_tasks : 120 -COMPILING atm_debug_dyn32_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 119 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 109 -MED_petlist_bounds: 0 109 -AQM_petlist_bounds: 0 109 -LND_petlist_bounds: -UFS_tasks : 120 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -COMPILING wam_debug_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -COMPILING rrfs_dyn32_phy32_intel -ATM_petlist_bounds: 0 383 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 359 -MED_petlist_bounds: 0 359 -AQM_petlist_bounds: 0 359 -LND_petlist_bounds: -UFS_tasks : 384 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 155 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 156 -ATM_petlist_bounds: 0 155 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 156 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -COMPILING rrfs_dyn32_phy32_faster_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 299 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 287 -MED_petlist_bounds: 0 287 -AQM_petlist_bounds: 0 287 -LND_petlist_bounds: -UFS_tasks : 300 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -COMPILING rrfs_dyn64_phy32_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -COMPILING rrfs_dyn32_phy32_debug_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 299 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 287 -MED_petlist_bounds: 0 287 -AQM_petlist_bounds: 0 287 -LND_petlist_bounds: -UFS_tasks : 300 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -COMPILING rrfs_dyn64_phy32_debug_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -COMPILING hafsw_intel -ATM_petlist_bounds: 0 599 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 479 -MED_petlist_bounds: 0 479 -AQM_petlist_bounds: 0 479 -LND_petlist_bounds: -UFS_tasks : 600 -ATM_petlist_bounds: 0 599 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 479 -MED_petlist_bounds: 0 479 -AQM_petlist_bounds: 0 479 -LND_petlist_bounds: -UFS_tasks : 600 -ATM_petlist_bounds: 0 299 -OCN_petlist_bounds: 300 359 -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 239 -MED_petlist_bounds: 0 239 -AQM_petlist_bounds: 0 239 -LND_petlist_bounds: -UFS_tasks : 360 -ATM_petlist_bounds: 0 299 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: 300 359 -CHM_petlist_bounds: 0 239 -MED_petlist_bounds: 0 239 -AQM_petlist_bounds: 0 239 -LND_petlist_bounds: -UFS_tasks : 360 -ATM_petlist_bounds: 0 299 -OCN_petlist_bounds: 300 359 -ICE_petlist_bounds: -WAV_petlist_bounds: 360 419 -CHM_petlist_bounds: 0 239 -MED_petlist_bounds: 0 239 -AQM_petlist_bounds: 0 239 -LND_petlist_bounds: -UFS_tasks : 420 -ATM_petlist_bounds: 0 359 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 239 -MED_petlist_bounds: 0 239 -AQM_petlist_bounds: 0 239 -LND_petlist_bounds: -UFS_tasks : 360 -ATM_petlist_bounds: 0 479 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 359 -MED_petlist_bounds: 0 359 -AQM_petlist_bounds: 0 359 -LND_petlist_bounds: -UFS_tasks : 480 -ATM_petlist_bounds: 0 479 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 359 -MED_petlist_bounds: 0 359 -AQM_petlist_bounds: 0 359 -LND_petlist_bounds: -UFS_tasks : 480 -ATM_petlist_bounds: 0 839 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 719 -MED_petlist_bounds: 0 719 -AQM_petlist_bounds: 0 719 -LND_petlist_bounds: -UFS_tasks : 840 -ATM_petlist_bounds: 0 359 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 239 -MED_petlist_bounds: 0 239 -AQM_petlist_bounds: 0 239 -LND_petlist_bounds: -UFS_tasks : 360 -ATM_petlist_bounds: 0 359 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 239 -MED_petlist_bounds: 0 239 -AQM_petlist_bounds: 0 239 -LND_petlist_bounds: -UFS_tasks : 360 -ATM_petlist_bounds: 0 479 -OCN_petlist_bounds: 480 599 -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 239 -MED_petlist_bounds: 0 239 -AQM_petlist_bounds: 0 239 -LND_petlist_bounds: -UFS_tasks : 600 -ATM_petlist_bounds: 0 479 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 359 -MED_petlist_bounds: 0 359 -AQM_petlist_bounds: 0 359 -LND_petlist_bounds: -UFS_tasks : 480 -ATM_petlist_bounds: 0 479 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 359 -MED_petlist_bounds: 0 359 -AQM_petlist_bounds: 0 359 -LND_petlist_bounds: -UFS_tasks : 480 -COMPILING hafsw_debug_intel -ATM_petlist_bounds: 0 479 -OCN_petlist_bounds: 480 599 -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 239 -MED_petlist_bounds: 0 239 -AQM_petlist_bounds: 0 239 -LND_petlist_bounds: -UFS_tasks : 600 -COMPILING hafsw_faster_intel -ATM_petlist_bounds: 0 359 -OCN_petlist_bounds: 360 479 -ICE_petlist_bounds: -WAV_petlist_bounds: 480 599 -CHM_petlist_bounds: 0 239 -MED_petlist_bounds: 0 239 -AQM_petlist_bounds: 0 239 -LND_petlist_bounds: -UFS_tasks : 600 -ATM_petlist_bounds: 0 359 -OCN_petlist_bounds: 360 479 -ICE_petlist_bounds: -WAV_petlist_bounds: 480 599 -CHM_petlist_bounds: 0 239 -MED_petlist_bounds: 0 239 -AQM_petlist_bounds: 0 239 -LND_petlist_bounds: -UFS_tasks : 600 -COMPILING hafs_mom6w_intel -ATM_petlist_bounds: 0 359 -OCN_petlist_bounds: 360 479 -ICE_petlist_bounds: -WAV_petlist_bounds: 480 599 -CHM_petlist_bounds: 0 239 -MED_petlist_bounds: 0 239 -AQM_petlist_bounds: 0 239 -LND_petlist_bounds: -UFS_tasks : 600 -COMPILING hafs_all_intel -ATM_petlist_bounds: 0 299 -OCN_petlist_bounds: 300 359 -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 239 -MED_petlist_bounds: 0 239 -AQM_petlist_bounds: 0 239 -LND_petlist_bounds: -UFS_tasks : 360 -ATM_petlist_bounds: 0 299 -OCN_petlist_bounds: 300 359 -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 239 -MED_petlist_bounds: 0 239 -AQM_petlist_bounds: 0 239 -LND_petlist_bounds: -UFS_tasks : 360 -ATM_petlist_bounds: 0 59 -OCN_petlist_bounds: 60 119 -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 59 -MED_petlist_bounds: 0 59 -AQM_petlist_bounds: 0 59 -LND_petlist_bounds: -UFS_tasks : 120 -COMPILING datm_cdeps_intel -ATM_petlist_bounds: 0 11 -OCN_petlist_bounds: 12 27 -ICE_petlist_bounds: 28 39 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 11 -MED_petlist_bounds: 0 11 -AQM_petlist_bounds: 0 11 -LND_petlist_bounds: -UFS_tasks : 40 -ATM_petlist_bounds: 0 11 -OCN_petlist_bounds: 12 27 -ICE_petlist_bounds: 28 39 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 11 -MED_petlist_bounds: 0 11 -AQM_petlist_bounds: 0 11 -LND_petlist_bounds: -UFS_tasks : 40 -ATM_petlist_bounds: 0 11 -OCN_petlist_bounds: 12 27 -ICE_petlist_bounds: 28 39 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 11 -MED_petlist_bounds: 0 11 -AQM_petlist_bounds: 0 11 -LND_petlist_bounds: -UFS_tasks : 40 -ATM_petlist_bounds: 0 11 -OCN_petlist_bounds: 12 27 -ICE_petlist_bounds: 28 39 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 11 -MED_petlist_bounds: 0 11 -AQM_petlist_bounds: 0 11 -LND_petlist_bounds: -UFS_tasks : 40 -ATM_petlist_bounds: 0 11 -OCN_petlist_bounds: 12 27 -ICE_petlist_bounds: 28 39 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 11 -MED_petlist_bounds: 0 11 -AQM_petlist_bounds: 0 11 -LND_petlist_bounds: -UFS_tasks : 40 -ATM_petlist_bounds: 0 11 -OCN_petlist_bounds: 12 27 -ICE_petlist_bounds: 28 39 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 11 -MED_petlist_bounds: 0 11 -AQM_petlist_bounds: 0 11 -LND_petlist_bounds: -UFS_tasks : 40 -ATM_petlist_bounds: 0 11 -OCN_petlist_bounds: 12 27 -ICE_petlist_bounds: 28 39 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 11 -MED_petlist_bounds: 0 11 -AQM_petlist_bounds: 0 11 -LND_petlist_bounds: -UFS_tasks : 40 -ATM_petlist_bounds: 0 11 -OCN_petlist_bounds: 12 27 -ICE_petlist_bounds: 28 39 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 11 -MED_petlist_bounds: 0 11 -AQM_petlist_bounds: 0 11 -LND_petlist_bounds: -UFS_tasks : 40 -ATM_petlist_bounds: 0 39 -OCN_petlist_bounds: 40 159 -ICE_petlist_bounds: 160 207 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 39 -MED_petlist_bounds: 0 39 -AQM_petlist_bounds: 0 39 -LND_petlist_bounds: -UFS_tasks : 208 -ATM_petlist_bounds: 0 39 -OCN_petlist_bounds: 40 159 -ICE_petlist_bounds: 160 207 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 39 -MED_petlist_bounds: 0 39 -AQM_petlist_bounds: 0 39 -LND_petlist_bounds: -UFS_tasks : 208 -ATM_petlist_bounds: 0 11 -OCN_petlist_bounds: 12 27 -ICE_petlist_bounds: 28 39 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 11 -MED_petlist_bounds: 0 11 -AQM_petlist_bounds: 0 11 -LND_petlist_bounds: -UFS_tasks : 40 -ATM_petlist_bounds: 0 11 -OCN_petlist_bounds: 12 27 -ICE_petlist_bounds: 28 39 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 11 -MED_petlist_bounds: 0 11 -AQM_petlist_bounds: 0 11 -LND_petlist_bounds: -UFS_tasks : 40 -ATM_petlist_bounds: 0 11 -OCN_petlist_bounds: 12 27 -ICE_petlist_bounds: 28 39 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 11 -MED_petlist_bounds: 0 11 -AQM_petlist_bounds: 0 11 -LND_petlist_bounds: -UFS_tasks : 40 -COMPILING datm_cdeps_debug_intel -ATM_petlist_bounds: 0 11 -OCN_petlist_bounds: 12 27 -ICE_petlist_bounds: 28 39 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 11 -MED_petlist_bounds: 0 11 -AQM_petlist_bounds: 0 11 -LND_petlist_bounds: -UFS_tasks : 40 -COMPILING datm_cdeps_faster_intel -ATM_petlist_bounds: 0 11 -OCN_petlist_bounds: 12 27 -ICE_petlist_bounds: 28 39 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 11 -MED_petlist_bounds: 0 11 -AQM_petlist_bounds: 0 11 -LND_petlist_bounds: -UFS_tasks : 40 -COMPILING datm_cdeps_land_intel -ATM_petlist_bounds: 0 143 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: 144 287 -UFS_tasks : 288 -ATM_petlist_bounds: 0 143 -OCN_petlist_bounds: 144 159 -ICE_petlist_bounds: 160 171 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: 172 315 -UFS_tasks : 316 -ATM_petlist_bounds: 0 143 -OCN_petlist_bounds: 144 159 -ICE_petlist_bounds: 160 171 -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: 172 315 -UFS_tasks : 316 -COMPILING atml_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: 150 293 -UFS_tasks : 294 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: 150 293 -UFS_tasks : 294 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: 150 293 -UFS_tasks : 294 -COMPILING atmw_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: 150 179 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 180 -COMPILING atmwm_intel -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: 150 179 -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 180 -COMPILING atmaero_intel -ATM_petlist_bounds: 0 197 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 191 -MED_petlist_bounds: 0 191 -AQM_petlist_bounds: 0 191 -LND_petlist_bounds: -UFS_tasks : 198 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -ATM_petlist_bounds: 0 149 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 143 -MED_petlist_bounds: 0 143 -AQM_petlist_bounds: 0 143 -LND_petlist_bounds: -UFS_tasks : 150 -COMPILING atmaq_intel -COMPILING atmaq_debug_intel -ATM_petlist_bounds: 0 271 -OCN_petlist_bounds: -ICE_petlist_bounds: -WAV_petlist_bounds: -CHM_petlist_bounds: 0 263 -MED_petlist_bounds: 0 263 -AQM_petlist_bounds: 0 263 -LND_petlist_bounds: -UFS_tasks : 272 -COMPILING atm_gnu -COMPILING rrfs_gnu -COMPILING atm_dyn32_debug_gnu -COMPILING wam_debug_gnu -COMPILING rrfs_dyn32_phy32_gnu -COMPILING atm_dyn64_phy32_gnu -COMPILING atm_dyn32_phy32_debug_gnu -COMPILING atm_dyn64_phy32_debug_gnu -COMPILING s2swa_gnu -COMPILING s2s_gnu -COMPILING s2swa_debug_gnu -COMPILING s2sw_pdlib_gnu -COMPILING s2sw_pdlib_debug_gnu -COMPILING datm_cdeps_gnu -ping server(Orion-login-1.HPC.MsState.Edu:11198) succeeded in 00:00:00.430490 ~430 milliseconds -ecflow_server is already running on Orion-login-1.HPC.MsState.Edu:11198 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 221 -ecflow tasks remaining: 219 -ecflow tasks remaining: 219 -ecflow tasks remaining: 219 -ecflow tasks remaining: 219 -ecflow tasks remaining: 219 -ecflow tasks remaining: 219 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 218 -ecflow tasks remaining: 216 -ecflow tasks remaining: 216 -ecflow tasks remaining: 216 -ecflow tasks remaining: 216 -ecflow tasks remaining: 216 -ecflow tasks remaining: 216 -ecflow tasks remaining: 216 -ecflow tasks remaining: 216 -ecflow tasks remaining: 216 -ecflow tasks remaining: 216 -ecflow tasks remaining: 216 -ecflow tasks remaining: 216 -ecflow tasks remaining: 213 -ecflow tasks remaining: 213 -ecflow tasks remaining: 213 -ecflow tasks remaining: 213 -ecflow tasks remaining: 213 -ecflow tasks remaining: 213 -ecflow tasks remaining: 213 -ecflow tasks remaining: 213 -ecflow tasks remaining: 213 -ecflow tasks remaining: 213 -ecflow tasks remaining: 213 -ecflow tasks remaining: 212 -ecflow tasks remaining: 212 -ecflow tasks remaining: 212 -ecflow tasks remaining: 212 -ecflow tasks remaining: 212 -ecflow tasks remaining: 212 -ecflow tasks remaining: 212 -ecflow tasks remaining: 212 -ecflow tasks remaining: 212 -ecflow tasks remaining: 212 -ecflow tasks remaining: 212 -ecflow tasks remaining: 212 -ecflow tasks remaining: 211 -ecflow tasks remaining: 211 -ecflow tasks remaining: 211 -ecflow tasks remaining: 211 -ecflow tasks remaining: 211 -ecflow tasks remaining: 211 -ecflow tasks remaining: 211 -ecflow tasks remaining: 211 -ecflow tasks remaining: 211 -ecflow tasks remaining: 211 -ecflow tasks remaining: 211 -ecflow tasks remaining: 211 -ecflow tasks remaining: 211 -ecflow tasks remaining: 211 -ecflow tasks remaining: 211 -ecflow tasks remaining: 211 -ecflow tasks remaining: 211 -ecflow tasks remaining: 211 -ecflow tasks remaining: 210 -ecflow tasks remaining: 210 -ecflow tasks remaining: 210 -ecflow tasks remaining: 210 -ecflow tasks remaining: 210 -ecflow tasks remaining: 210 -ecflow tasks remaining: 210 -ecflow tasks remaining: 210 -ecflow tasks remaining: 210 -ecflow tasks remaining: 210 -ecflow tasks remaining: 210 -ecflow tasks remaining: 210 -ecflow tasks remaining: 210 -ecflow tasks remaining: 210 -ecflow tasks remaining: 210 -ecflow tasks remaining: 210 -ecflow tasks remaining: 210 -ecflow tasks remaining: 210 -ecflow tasks remaining: 208 -ecflow tasks remaining: 208 -ecflow tasks remaining: 208 -ecflow tasks remaining: 208 -ecflow tasks remaining: 208 -ecflow tasks remaining: 208 -ecflow tasks remaining: 208 -ecflow tasks remaining: 207 -ecflow tasks remaining: 207 -ecflow tasks remaining: 207 -ecflow tasks remaining: 207 -ecflow tasks remaining: 207 -ecflow tasks remaining: 206 -ecflow tasks remaining: 206 -ecflow tasks remaining: 206 -ecflow tasks remaining: 206 -ecflow tasks remaining: 206 -ecflow tasks remaining: 206 -ecflow tasks remaining: 205 -ecflow tasks remaining: 205 -ecflow tasks remaining: 205 -ecflow tasks remaining: 205 -ecflow tasks remaining: 205 -ecflow tasks remaining: 205 -ecflow tasks remaining: 204 -ecflow tasks remaining: 204 -ecflow tasks remaining: 204 -ecflow tasks remaining: 204 -ecflow tasks remaining: 204 -ecflow tasks remaining: 204 -ecflow tasks remaining: 204 -ecflow tasks remaining: 203 -ecflow tasks remaining: 203 -ecflow tasks remaining: 203 -ecflow tasks remaining: 203 -ecflow tasks remaining: 203 -ecflow tasks remaining: 203 -ecflow tasks remaining: 203 -ecflow tasks remaining: 203 -ecflow tasks remaining: 203 -ecflow tasks remaining: 203 -ecflow tasks remaining: 202 -ecflow tasks remaining: 202 -ecflow tasks remaining: 202 -ecflow tasks remaining: 202 -ecflow tasks remaining: 202 -ecflow tasks remaining: 202 -ecflow tasks remaining: 201 -ecflow tasks remaining: 201 -ecflow tasks remaining: 201 -ecflow tasks remaining: 201 -ecflow tasks remaining: 201 -ecflow tasks remaining: 201 -ecflow tasks remaining: 201 -ecflow tasks remaining: 201 -ecflow tasks remaining: 201 -ecflow tasks remaining: 201 -ecflow tasks remaining: 201 -ecflow tasks remaining: 201 -ecflow tasks remaining: 200 -ecflow tasks remaining: 200 -ecflow tasks remaining: 200 -ecflow tasks remaining: 200 -ecflow tasks remaining: 200 -ecflow tasks remaining: 200 -ecflow tasks remaining: 200 -ecflow tasks remaining: 200 -ecflow tasks remaining: 199 -ecflow tasks remaining: 199 -ecflow tasks remaining: 199 -ecflow tasks remaining: 199 -ecflow tasks remaining: 199 -ecflow tasks remaining: 198 -ecflow tasks remaining: 198 -ecflow tasks remaining: 198 -ecflow tasks remaining: 198 -ecflow tasks remaining: 198 -ecflow tasks remaining: 198 -ecflow tasks remaining: 198 -ecflow tasks remaining: 198 -ecflow tasks remaining: 198 -ecflow tasks remaining: 198 -ecflow tasks remaining: 198 -ecflow tasks remaining: 198 -ecflow tasks remaining: 198 -ecflow tasks remaining: 198 -ecflow tasks remaining: 198 -ecflow tasks remaining: 198 -ecflow tasks remaining: 198 -ecflow tasks remaining: 198 -ecflow tasks remaining: 198 -ecflow tasks remaining: 198 -ecflow tasks remaining: 198 -ecflow tasks remaining: 198 -ecflow tasks remaining: 198 -ecflow tasks remaining: 196 -ecflow tasks remaining: 196 -ecflow tasks remaining: 196 -ecflow tasks remaining: 196 -ecflow tasks remaining: 196 -ecflow tasks remaining: 196 -ecflow tasks remaining: 195 -ecflow tasks remaining: 195 -ecflow tasks remaining: 195 -ecflow tasks remaining: 195 -ecflow tasks remaining: 195 -ecflow tasks remaining: 195 -ecflow tasks remaining: 195 -ecflow tasks remaining: 195 -ecflow tasks remaining: 195 -ecflow tasks remaining: 195 -ecflow tasks remaining: 195 -ecflow tasks remaining: 195 -ecflow tasks remaining: 195 -ecflow tasks remaining: 195 -ecflow tasks remaining: 195 -ecflow tasks remaining: 195 -ecflow tasks remaining: 195 -ecflow tasks remaining: 195 -ecflow tasks remaining: 194 -ecflow tasks remaining: 194 -ecflow tasks remaining: 194 -ecflow tasks remaining: 194 -ecflow tasks remaining: 194 -ecflow tasks remaining: 194 -ecflow tasks remaining: 191 -ecflow tasks remaining: 191 -ecflow tasks remaining: 190 -ecflow tasks remaining: 190 -ecflow tasks remaining: 190 -ecflow tasks remaining: 190 -ecflow tasks remaining: 190 -ecflow tasks remaining: 190 -ecflow tasks remaining: 190 -ecflow tasks remaining: 190 -ecflow tasks remaining: 190 -ecflow tasks remaining: 190 -ecflow tasks remaining: 190 -ecflow tasks remaining: 190 -ecflow tasks remaining: 190 -ecflow tasks remaining: 190 -ecflow tasks remaining: 190 -ecflow tasks remaining: 190 -ecflow tasks remaining: 190 -ecflow tasks remaining: 189 -ecflow tasks remaining: 189 -ecflow tasks remaining: 189 -ecflow tasks remaining: 189 -ecflow tasks remaining: 189 -ecflow tasks remaining: 189 -ecflow tasks remaining: 189 -ecflow tasks remaining: 189 -ecflow tasks remaining: 189 -ecflow tasks remaining: 189 -ecflow tasks remaining: 188 -ecflow tasks remaining: 188 -ecflow tasks remaining: 188 -ecflow tasks remaining: 188 -ecflow tasks remaining: 188 -ecflow tasks remaining: 188 -ecflow tasks remaining: 187 -ecflow tasks remaining: 187 -ecflow tasks remaining: 187 -ecflow tasks remaining: 187 -ecflow tasks remaining: 187 -ecflow tasks remaining: 187 -ecflow tasks remaining: 187 -ecflow tasks remaining: 187 -ecflow tasks remaining: 187 -ecflow tasks remaining: 187 -ecflow tasks remaining: 187 -ecflow tasks remaining: 187 -ecflow tasks remaining: 187 -ecflow tasks remaining: 187 -ecflow tasks remaining: 187 -ecflow tasks remaining: 187 -ecflow tasks remaining: 187 -ecflow tasks remaining: 187 -ecflow tasks remaining: 186 -ecflow tasks remaining: 186 -ecflow tasks remaining: 186 -ecflow tasks remaining: 186 -ecflow tasks remaining: 186 -ecflow tasks remaining: 186 -ecflow tasks remaining: 186 -ecflow tasks remaining: 186 -ecflow tasks remaining: 186 -ecflow tasks remaining: 186 -ecflow tasks remaining: 186 -ecflow tasks remaining: 186 -ecflow tasks remaining: 185 -ecflow tasks remaining: 185 -ecflow tasks remaining: 185 -ecflow tasks remaining: 185 -ecflow tasks remaining: 185 -ecflow tasks remaining: 185 -ecflow tasks remaining: 185 -ecflow tasks remaining: 185 -ecflow tasks remaining: 185 -ecflow tasks remaining: 185 -ecflow tasks remaining: 185 -ecflow tasks remaining: 185 -ecflow tasks remaining: 185 -ecflow tasks remaining: 185 -ecflow tasks remaining: 185 -ecflow tasks remaining: 185 -ecflow tasks remaining: 185 -ecflow tasks remaining: 185 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -ecflow tasks remaining: 182 -rt.sh finished -SUITES=suite regtest_264799 -suite regtest_170319 From 1ea32ad45ab54b2c97280d87ca106cffcd30ff68 Mon Sep 17 00:00:00 2001 From: zach1221 Date: Tue, 19 Mar 2024 18:23:15 +0000 Subject: [PATCH 75/76] add jet RT logs: passed --- tests/logs/RegressionTests_jet.log | 474 ++++++++++++++--------------- 1 file changed, 237 insertions(+), 237 deletions(-) diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index b45e0da9cf..81587c04bd 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -0939a1dff2a2060b541eca9642a19c5ed1541f17 +7908de2724b95cab917b6b6c3d059c66cb8bdaa7 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308) + 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch) 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459) - 87e6d92e2ca48a55b66f8810f347b51c70c193c4 FV3/ccpp/framework (v0.1.0-1436-g87e6d92) - 2f15ae92802cae11fd0efb902439a084609984f3 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5141-g2f15ae92) + 7384d92b6c2897be4f29ad4a3747f66762631574 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-703-g7384d92) + 94596b3823c40ea33255121220dac4463e8ccef5 FV3/ccpp/physics (remotes/origin/no_arg_mismatch) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -26,19 +26,19 @@ Submodule hashes used in testing: 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) + 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705) 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308) + 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) + 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705) NOTES: @@ -48,244 +48,244 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240315 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2893158 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_3728126 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [39:23, 37:48] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:45, 06:51](1792 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [54:29, 52:51] -PASS -- TEST 'cpld_control_gfsv17_intel' [24:00, 20:30](1662 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:12, 22:01](1883 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [14:12, 10:13](998 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:34, 23:37](1630 MB) - -PASS -- COMPILE 's2swa_intel' [39:23, 38:15] -PASS -- TEST 'cpld_control_p8_intel' [10:21, 07:28](1828 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:43, 07:36](1821 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:47, 04:19](1711 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:22, 07:34](1851 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:46, 04:21](1730 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:14, 07:09](2274 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:14, 07:42](1826 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:38, 06:24](1791 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:40, 07:28](1833 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:29, 07:09](1786 MB) - -PASS -- COMPILE 's2sw_intel' [37:22, 35:55] -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:28, 05:43](1662 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:39, 05:43](1717 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:09, 05:06] -PASS -- TEST 'cpld_debug_p8_intel' [14:03, 10:25](1842 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:08, 04:40] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:21, 07:10](1681 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [33:18, 31:51] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:49, 05:39](1709 MB) - -PASS -- COMPILE 's2s_intel' [33:18, 32:02] -PASS -- TEST 'cpld_control_c48_intel' [15:09, 12:41](2798 MB) - -PASS -- COMPILE 's2swa_faster_intel' [34:43, 32:58] -PASS -- TEST 'cpld_control_p8_faster_intel' [09:56, 07:02](1829 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [49:24, 48:06] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:49, 20:40](1682 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:49, 10:19](1033 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:37, 23:50](1654 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:08, 04:41] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:41, 31:59](1690 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [36:20, 34:33] -PASS -- TEST 'control_flake_intel' [06:27, 04:30](646 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:28, 03:18](599 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:34, 03:44](605 MB) -PASS -- TEST 'control_latlon_intel' [05:25, 03:21](604 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:34, 03:29](600 MB) -PASS -- TEST 'control_c48_intel' [11:34, 10:06](843 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:37, 10:08](849 MB) -PASS -- TEST 'control_c192_intel' [14:46, 12:28](730 MB) -PASS -- TEST 'control_c384_intel' [18:39, 15:43](895 MB) -PASS -- TEST 'control_c384gdas_intel' [18:17, 13:23](1017 MB) -PASS -- TEST 'control_stochy_intel' [04:27, 02:17](602 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:25, 01:17](435 MB) -PASS -- TEST 'control_lndp_intel' [04:27, 02:12](600 MB) -PASS -- TEST 'control_iovr4_intel' [05:28, 03:23](600 MB) -PASS -- TEST 'control_iovr5_intel' [05:30, 03:25](596 MB) -PASS -- TEST 'control_p8_intel' [06:31, 04:02](1582 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:45, 03:53](1575 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:37, 03:45](1578 MB) -PASS -- TEST 'control_restart_p8_intel' [05:03, 02:09](818 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:13, 03:48](1571 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:13, 02:05](844 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:07, 04:00](1565 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:07, 03:40](1669 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:49, 06:57](1570 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:35, 05:05](1631 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:23, 04:00](1575 MB) -PASS -- TEST 'merra2_thompson_intel' [07:47, 04:32](1586 MB) -PASS -- TEST 'regional_control_intel' [09:43, 07:04](767 MB) -PASS -- TEST 'regional_restart_intel' [05:49, 03:41](936 MB) -PASS -- TEST 'regional_decomp_intel' [09:41, 07:21](762 MB) -PASS -- TEST 'regional_2threads_intel' [06:40, 04:14](757 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:44, 06:57](761 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:40, 06:56](766 MB) - -PASS -- COMPILE 'rrfs_intel' [34:18, 32:17] -PASS -- TEST 'rap_control_intel' [12:10, 10:05](993 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:19, 05:32](1217 MB) -PASS -- TEST 'rap_decomp_intel' [13:10, 10:39](980 MB) -PASS -- TEST 'rap_2threads_intel' [12:10, 09:35](1079 MB) -PASS -- TEST 'rap_restart_intel' [08:26, 05:14](987 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:36, 10:04](999 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:09, 10:44](980 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:19, 07:29](1002 MB) -PASS -- TEST 'hrrr_control_intel' [08:02, 05:08](990 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:01, 05:16](978 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:33, 04:43](1060 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:29, 02:46](920 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:34, 09:52](983 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [14:35, 12:22](1944 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:35, 12:11](1938 MB) - -PASS -- COMPILE 'csawmg_intel' [32:20, 30:47] -PASS -- TEST 'control_csawmg_intel' [09:42, 08:01](692 MB) -PASS -- TEST 'control_csawmgt_intel' [09:42, 07:52](695 MB) -PASS -- TEST 'control_ras_intel' [06:21, 04:23](664 MB) - -PASS -- COMPILE 'wam_intel' [31:20, 29:34] -PASS -- TEST 'control_wam_intel' [04:22, 02:45](501 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [33:19, 31:18] -PASS -- TEST 'control_p8_faster_intel' [06:44, 03:36](1581 MB) -PASS -- TEST 'regional_control_faster_intel' [08:49, 06:27](764 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:08, 05:22] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:23, 03:18](756 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:26, 03:19](756 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:19, 03:42](769 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:20, 03:19](764 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:37, 05:14](808 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [07:42, 05:09](809 MB) -PASS -- TEST 'control_ras_debug_intel' [05:22, 03:23](771 MB) -PASS -- TEST 'control_diag_debug_intel' [05:34, 03:26](815 MB) -PASS -- TEST 'control_debug_p8_intel' [05:50, 03:32](1587 MB) -PASS -- TEST 'regional_debug_intel' [23:52, 21:35](775 MB) -PASS -- TEST 'rap_control_debug_intel' [07:24, 06:02](1152 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:24, 05:53](1151 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:23, 05:57](1155 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:24, 06:01](1148 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:25, 06:01](1156 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:41, 06:20](1238 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:28, 06:06](1154 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:22, 06:06](1154 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:25, 06:01](1143 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:25, 05:59](1159 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:26, 05:52](1144 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:26, 06:03](1151 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:28, 09:48](1148 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:27, 05:55](1144 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:32, 07:18](1145 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:29, 05:59](1152 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:31, 10:21](1159 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:07, 03:40] -PASS -- TEST 'control_wam_debug_intel' [08:25, 06:07](441 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:20, 29:36] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:13, 05:09](1079 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:02, 08:14](912 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:03, 04:21](871 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:22, 07:48](945 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:41, 03:59](906 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:01, 04:37](859 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:22, 06:14](899 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:28, 02:22](846 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:23, 42:17] -PASS -- TEST 'conus13km_control_intel' [05:04, 02:53](1105 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:44, 01:20](1048 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:35](1027 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:19, 30:14] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:57, 05:26](903 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:07, 03:44] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:28, 05:56](1025 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:23, 05:53](1027 MB) -PASS -- TEST 'conus13km_debug_intel' [21:06, 18:30](1134 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [21:06, 18:39](858 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:57, 10:40](1086 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:01, 18:26](1207 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:08, 03:44] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:33, 06:02](1070 MB) - -PASS -- COMPILE 'hafsw_intel' [35:18, 34:11] -PASS -- TEST 'hafs_regional_atm_intel' [09:16, 07:01](712 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:30, 06:23](1085 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:39, 09:15](771 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [19:25, 16:23](795 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:45, 18:12](830 MB) -PASS -- TEST 'gnv1_nested_intel' [08:24, 05:41](780 MB) - -PASS -- COMPILE 'hafs_all_intel' [33:21, 31:24] -PASS -- TEST 'hafs_regional_docn_intel' [11:29, 08:35](774 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:31, 08:34](750 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:09, 07:43] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:21, 03:36](1060 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:21, 02:09](1018 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:20, 03:30](930 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:20, 03:34](927 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:21, 03:36](924 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:21, 03:36](1047 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:20, 03:38](1060 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:21, 03:31](919 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:11, 07:51](894 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:12, 07:36](840 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:17, 03:37](1065 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:21, 05:00](2399 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:21, 05:01](2402 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:07, 03:15] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:21, 08:00](1028 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:10, 07:48] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:20, 03:37](1047 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:38] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:32, 01:31](227 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:26, 01:17](250 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:48](252 MB) - -PASS -- COMPILE 'atml_intel' [35:20, 33:36] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:42, 07:54](1596 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:38, 07:45](1602 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:51, 03:56](874 MB) - -PASS -- COMPILE 'atmw_intel' [34:18, 32:26] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:41, 02:14](1606 MB) - -PASS -- COMPILE 'atmwm_intel' [33:19, 31:37] -PASS -- TEST 'control_atmwav_intel' [05:10, 02:12](613 MB) - -PASS -- COMPILE 'atmaero_intel' [32:18, 30:18] -PASS -- TEST 'atmaero_control_p8_intel' [08:34, 05:07](1698 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:27, 06:14](1722 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:12, 06:38](1743 MB) +PASS -- COMPILE 's2swa_32bit_intel' [39:25, 38:16] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:44, 06:50](1787 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:42, 48:32] +PASS -- TEST 'cpld_control_gfsv17_intel' [24:39, 20:52](1659 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:10, 22:23](1876 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [14:20, 10:18](988 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:01, 24:06](1634 MB) + +PASS -- COMPILE 's2swa_intel' [40:25, 38:27] +PASS -- TEST 'cpld_control_p8_intel' [10:33, 07:40](1828 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:56, 07:39](1834 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:45, 04:18](1716 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:33, 07:48](1849 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:46, 04:23](1732 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:28, 07:20](2270 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:27, 07:51](1828 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:14, 07:05](1782 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:56, 07:48](1833 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:46, 07:14](1784 MB) + +PASS -- COMPILE 's2sw_intel' [37:23, 35:37] +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:22, 05:48](1664 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:37, 05:38](1708 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:09, 05:17] +PASS -- TEST 'cpld_debug_p8_intel' [13:52, 10:26](1855 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:08, 04:42] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:23, 07:12](1679 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [34:20, 32:17] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:57, 05:42](1715 MB) + +PASS -- COMPILE 's2s_intel' [34:25, 32:36] +PASS -- TEST 'cpld_control_c48_intel' [15:29, 12:44](2793 MB) + +PASS -- COMPILE 's2swa_faster_intel' [34:57, 33:16] +PASS -- TEST 'cpld_control_p8_faster_intel' [10:04, 06:59](1833 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [47:33, 45:34] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:39, 20:41](1687 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:40, 10:18](1037 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:41, 23:55](1656 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:09, 04:56] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:42, 31:53](1695 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [36:30, 35:06] +PASS -- TEST 'control_flake_intel' [06:27, 04:30](648 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:29, 03:17](596 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:35, 03:51](596 MB) +PASS -- TEST 'control_latlon_intel' [05:27, 03:19](602 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:37, 03:28](599 MB) +PASS -- TEST 'control_c48_intel' [11:41, 10:07](841 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:39, 10:05](837 MB) +PASS -- TEST 'control_c192_intel' [14:53, 12:24](726 MB) +PASS -- TEST 'control_c384_intel' [19:17, 15:36](897 MB) +PASS -- TEST 'control_c384gdas_intel' [18:52, 13:21](1020 MB) +PASS -- TEST 'control_stochy_intel' [04:28, 02:14](601 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:27, 01:17](434 MB) +PASS -- TEST 'control_lndp_intel' [04:28, 02:08](605 MB) +PASS -- TEST 'control_iovr4_intel' [05:31, 03:17](597 MB) +PASS -- TEST 'control_iovr5_intel' [05:31, 03:18](595 MB) +PASS -- TEST 'control_p8_intel' [06:29, 04:02](1571 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:40, 04:01](1574 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:47, 03:52](1580 MB) +PASS -- TEST 'control_restart_p8_intel' [05:11, 02:06](818 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:34, 03:52](1559 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:10, 02:04](833 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:34, 04:00](1558 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:34, 03:37](1664 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:16, 06:56](1572 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:55, 05:12](1643 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:46, 04:03](1590 MB) +PASS -- TEST 'merra2_thompson_intel' [08:07, 04:39](1592 MB) +PASS -- TEST 'regional_control_intel' [10:04, 07:05](765 MB) +PASS -- TEST 'regional_restart_intel' [05:43, 03:43](938 MB) +PASS -- TEST 'regional_decomp_intel' [10:04, 07:28](760 MB) +PASS -- TEST 'regional_2threads_intel' [06:56, 04:19](748 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:49, 06:56](759 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:39, 06:54](761 MB) + +PASS -- COMPILE 'rrfs_intel' [35:24, 33:31] +PASS -- TEST 'rap_control_intel' [12:10, 10:01](990 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:05, 05:29](1214 MB) +PASS -- TEST 'rap_decomp_intel' [13:14, 10:26](991 MB) +PASS -- TEST 'rap_2threads_intel' [12:06, 09:29](1077 MB) +PASS -- TEST 'rap_restart_intel' [08:20, 05:16](989 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:28, 10:00](990 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:10, 10:39](989 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:27, 07:49](1001 MB) +PASS -- TEST 'hrrr_control_intel' [07:51, 05:07](988 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:53, 05:19](982 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:19, 04:43](1055 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:36, 02:45](917 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:36, 09:48](993 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [14:32, 12:13](1951 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:31, 11:59](1940 MB) + +PASS -- COMPILE 'csawmg_intel' [32:19, 30:58] +PASS -- TEST 'control_csawmg_intel' [09:50, 07:59](692 MB) +PASS -- TEST 'control_csawmgt_intel' [09:47, 07:54](695 MB) +PASS -- TEST 'control_ras_intel' [06:24, 04:20](665 MB) + +PASS -- COMPILE 'wam_intel' [31:17, 29:47] +PASS -- TEST 'control_wam_intel' [04:21, 02:44](507 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [32:18, 31:13] +PASS -- TEST 'control_p8_faster_intel' [06:38, 03:35](1581 MB) +PASS -- TEST 'regional_control_faster_intel' [08:49, 06:27](769 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:08, 05:59] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:27, 03:19](764 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:31, 03:20](765 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:24, 03:42](768 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:24, 03:24](765 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:44, 05:21](812 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [07:44, 05:14](812 MB) +PASS -- TEST 'control_ras_debug_intel' [05:25, 03:22](771 MB) +PASS -- TEST 'control_diag_debug_intel' [05:30, 03:26](818 MB) +PASS -- TEST 'control_debug_p8_intel' [05:50, 03:30](1592 MB) +PASS -- TEST 'regional_debug_intel' [23:54, 21:40](779 MB) +PASS -- TEST 'rap_control_debug_intel' [07:26, 05:57](1154 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:28, 05:52](1142 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:22, 05:58](1152 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:23, 06:02](1152 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:24, 06:01](1146 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:38, 06:17](1231 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:28, 06:13](1153 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:24, 06:10](1150 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:25, 06:04](1152 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:24, 05:59](1152 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:28, 05:55](1148 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:25, 05:59](1149 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:27, 10:00](1151 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:29, 06:03](1152 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:26, 07:16](1157 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:26, 06:02](1150 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:53, 10:24](1161 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:07, 03:44] +PASS -- TEST 'control_wam_debug_intel' [08:22, 06:10](438 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:18, 29:33] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:12, 05:12](1070 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:59, 08:15](903 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:59, 04:23](867 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:24, 07:52](943 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:34, 04:01](908 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:59, 04:39](853 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:08, 06:12](899 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:28, 02:21](847 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [44:25, 42:33] +PASS -- TEST 'conus13km_control_intel' [05:09, 03:02](1109 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:43, 01:22](1059 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:44, 01:33](1018 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:24, 30:26] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:59, 05:27](900 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:08, 03:53] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:26, 05:59](1031 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:24, 05:52](1029 MB) +PASS -- TEST 'conus13km_debug_intel' [21:03, 18:20](1146 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [21:03, 18:28](857 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:52, 10:38](1088 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:57, 18:19](1207 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:08, 03:47] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:30, 06:04](1066 MB) + +PASS -- COMPILE 'hafsw_intel' [36:20, 34:58] +PASS -- TEST 'hafs_regional_atm_intel' [09:19, 06:54](717 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:31, 06:16](1088 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:38, 09:09](773 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [19:28, 16:16](806 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:47, 17:58](824 MB) +PASS -- TEST 'gnv1_nested_intel' [08:25, 05:33](775 MB) + +PASS -- COMPILE 'hafs_all_intel' [33:20, 31:19] +PASS -- TEST 'hafs_regional_docn_intel' [11:26, 08:27](768 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:30, 08:30](753 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:10, 08:08] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:31, 03:35](1059 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:19, 02:13](1030 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:31, 03:25](926 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:32, 03:32](936 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:32, 03:34](923 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:31, 03:37](1054 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:32, 03:32](1076 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:30, 03:29](928 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:13, 07:49](898 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:13, 07:44](847 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:25, 03:34](1069 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:22, 05:04](2396 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:21, 05:04](2394 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:08, 03:17] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:24, 08:01](1028 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:10, 07:52] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:19, 03:49](1079 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:07, 01:51] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:30, 01:31](228 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:24, 01:18](254 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:47](248 MB) + +PASS -- COMPILE 'atml_intel' [35:20, 33:46] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:48, 07:54](1612 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:50, 07:50](1602 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:50, 04:01](865 MB) + +PASS -- COMPILE 'atmw_intel' [33:18, 31:59] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:23, 02:15](1597 MB) + +PASS -- COMPILE 'atmwm_intel' [32:19, 30:28] +PASS -- TEST 'control_atmwav_intel' [05:16, 02:11](612 MB) + +PASS -- COMPILE 'atmaero_intel' [32:19, 30:16] +PASS -- TEST 'atmaero_control_p8_intel' [08:30, 05:08](1693 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:28, 06:16](1719 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:12, 06:42](1732 MB) SYNOPSIS: -Starting Date/Time: 20240315 18:58:13 -Ending Date/Time: 20240315 22:27:49 -Total Time: 03h:30m:13s +Starting Date/Time: 20240319 13:16:22 +Ending Date/Time: 20240319 16:46:11 +Total Time: 03h:30m:34s Compiles Completed: 33/33 Tests Completed: 161/161 From c9e0b9b6b738a27487a42615c1362097daf502e9 Mon Sep 17 00:00:00 2001 From: Dusan Jovic Date: Tue, 19 Mar 2024 23:17:14 +0000 Subject: [PATCH 76/76] Revert .gitmodules and update FV3 and stochastic_physics --- .gitmodules | 12 ++++-------- FV3 | 2 +- stochastic_physics | 2 +- 3 files changed, 6 insertions(+), 10 deletions(-) diff --git a/.gitmodules b/.gitmodules index 607e4e0a4c..a3775fc12d 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,19 +1,15 @@ [submodule "FV3"] path = FV3 - #url = https://github.com/NOAA-EMC/fv3atm - #branch = develop - url = https://github.com/DusanJovic-NOAA/fv3atm - branch = no_arg_mismatch + url = https://github.com/NOAA-EMC/fv3atm + branch = develop [submodule "WW3"] path = WW3 url = https://github.com/NOAA-EMC/WW3 branch = dev/ufs-weather-model [submodule "stochastic_physics"] path = stochastic_physics - #url = https://github.com/NOAA-PSL/stochastic_physics - #branch = master - url = https://github.com/DusanJovic-NOAA/stochastic_physics - branch = no_arg_mismatch + url = https://github.com/NOAA-PSL/stochastic_physics + branch = master [submodule "CMakeModules"] path = CMakeModules url = https://github.com/NOAA-EMC/CMakeModules diff --git a/FV3 b/FV3 index 51d107b15a..6942270941 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 51d107b15a68445179bd3114d88b3c1fd20469ee +Subproject commit 694227094198b8c1fe101af22dc506e9aeff9ebe diff --git a/stochastic_physics b/stochastic_physics index 520f70584a..7dc4d9ba48 160000 --- a/stochastic_physics +++ b/stochastic_physics @@ -1 +1 @@ -Subproject commit 520f70584a37d706859be49d8b86fc01e816b6ea +Subproject commit 7dc4d9ba48dea57f88f4f10091c8c2042105954e