Skip to content
Merged
Show file tree
Hide file tree
Changes from 23 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
4c4742f
port to ursa intel llvm (called "intel" in modulefiles and scripts)
SamuelTrahanNOAA Jun 4, 2025
e975ea9
use the same KPO list for fv3gefs pe and non-pe tests on HERA
SamuelTrahanNOAA Jun 4, 2025
0c53c48
compiler is in all modulefile names and is an argument to rt.sh (mand…
SamuelTrahanNOAA Jun 4, 2025
dd946c0
longer wallclock for 3drtm
SamuelTrahanNOAA Jun 4, 2025
2f97013
all ci jobs are exclusive on ursa
SamuelTrahanNOAA Jun 4, 2025
5b6c63c
ursa older intel compiler modulefile
SamuelTrahanNOAA Jun 4, 2025
8cb6595
put $compiler in runtime.log in rt.sh
SamuelTrahanNOAA Jun 4, 2025
6877e6c
revert accidental change: upp_common.lua should have no _intel
SamuelTrahanNOAA Jun 4, 2025
051ecf7
put compiler name in rt.log filename
SamuelTrahanNOAA Jun 4, 2025
1ca8b34
hera tests passed
SamuelTrahanNOAA Jun 4, 2025
bbe181d
ursa tests passed
SamuelTrahanNOAA Jun 4, 2025
43b99b6
Merge branch 'feature/ursa' of ssh://github.com/SamuelTrahanNOAA/UPP …
SamuelTrahanNOAA Jun 4, 2025
151b98c
revert to develop for ci
SamuelTrahanNOAA Jun 6, 2025
8105efa
revert to original logs
SamuelTrahanNOAA Jun 6, 2025
a2917c0
remove ursa tests
SamuelTrahanNOAA Jun 6, 2025
de55ae2
revert hera log
SamuelTrahanNOAA Jun 6, 2025
d63c645
remove unneeded script
SamuelTrahanNOAA Jun 6, 2025
ad91bc0
ursa default compiler = intelllvm; move defaults to top of file
SamuelTrahanNOAA Jun 6, 2025
810f6cf
restore defaults for usage message
SamuelTrahanNOAA Jun 6, 2025
20fc881
default compiler is intel on ursa
SamuelTrahanNOAA Jun 9, 2025
3b1620e
hercules rt log
gspetro-NOAA Jun 10, 2025
7098e48
hera rt log
gspetro-NOAA Jun 10, 2025
ac06aba
orion rt log
gspetro-NOAA Jun 10, 2025
09fbd66
wcoss2 rt log
WenMeng-NOAA Jun 10, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
51 changes: 51 additions & 0 deletions modulefiles/ursa_intel.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
help([[
Load environment to build UPP on ursa
]])

prepend_path("MODULEPATH", "/contrib/spack-stack/spack-stack-1.9.1/envs/ue-oneapi-2024.2.1/install/modulefiles/Core")
prepend_path("MODULEPATH", "/scratch4/NAGAPE/epic/role-epic/modulefiles")

stack_oneapi_ver=os.getenv("stack_oneapi_ver") or "2024.2.1"
load(pathJoin("stack-oneapi", stack_oneapi_ver))

stack_impi_ver=os.getenv("stack_impi_ver") or "2021.13"
load(pathJoin("stack-intel-oneapi-mpi", stack_impi_ver))

cmake_ver=os.getenv("cmake_ver") or "3.27.9"
load(pathJoin("cmake", cmake_ver))

local ufs_modules = {
{["jasper"] = "2.0.32" },
{["zlib"] = "1.2.13" },
{["libpng"] = "1.6.37" },
{["hdf5"] = "1.14.3" },
{["netcdf-c"] = "4.9.2" },
{["netcdf-fortran"] = "4.6.1" },
{["bacio"] = "2.4.1" },
{["crtm"] = "2.4.0.1"},
{["g2"] = "3.5.1" },
{["g2tmpl"] = "1.13.0" },
{["ip"] = "5.1.0" },
{["w3emc"] = "2.10.0" },
{["nemsio"] = "2.5.4" },
{["sigio"] = "2.3.3" },
{["wrf-io"] = "1.2.0" },
}

for i = 1, #ufs_modules do
for name, default_version in pairs(ufs_modules[i]) do
local env_version_name = string.gsub(name, "-", "_") .. "_ver"
load(pathJoin(name, os.getenv(env_version_name) or default_version))
end
end

setenv("CC", "mpiicx")
setenv("CXX", "mpiicpx")
setenv("FC", "mpiifort")
setenv("I_MPI_CC", "icx")
setenv("I_MPI_CXX", "icpx")
setenv("I_MPI_FC", "ifort")
setenv("I_MPI_F77", "ifort")
setenv("I_MPI_F90", "ifort")

whatis("Description: UFS build environment")
50 changes: 50 additions & 0 deletions modulefiles/ursa_intelllvm.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
help([[
Load environment to build UPP on ursa
]])

prepend_path("MODULEPATH", "/contrib/spack-stack/spack-stack-1.9.1/envs/ue-oneapi-2024.2.1/install/modulefiles/Core")

stack_oneapi_ver=os.getenv("stack_oneapi_ver") or "2024.2.1"
load(pathJoin("stack-oneapi", stack_oneapi_ver))

stack_impi_ver=os.getenv("stack_impi_ver") or "2021.13"
load(pathJoin("stack-intel-oneapi-mpi", stack_impi_ver))

cmake_ver=os.getenv("cmake_ver") or "3.27.9"
load(pathJoin("cmake", cmake_ver))

local ufs_modules = {
{["jasper"] = "2.0.32" },
{["zlib"] = "1.2.13" },
{["libpng"] = "1.6.37" },
{["hdf5"] = "1.14.3" },
{["netcdf-c"] = "4.9.2" },
{["netcdf-fortran"] = "4.6.1" },
{["bacio"] = "2.4.1" },
{["crtm"] = "2.4.0.1"},
{["g2"] = "3.5.1" },
{["g2tmpl"] = "1.13.0" },
{["ip"] = "5.1.0" },
{["w3emc"] = "2.10.0" },
{["nemsio"] = "2.5.4" },
{["sigio"] = "2.3.3" },
{["wrf-io"] = "1.2.0" },
}

for i = 1, #ufs_modules do
for name, default_version in pairs(ufs_modules[i]) do
local env_version_name = string.gsub(name, "-", "_") .. "_ver"
load(pathJoin(name, os.getenv(env_version_name) or default_version))
end
end

setenv("CC", "mpiicx")
setenv("CXX", "mpiicpx")
setenv("FC", "mpiifx")
setenv("I_MPI_CC", "icx")
setenv("I_MPI_CXX", "icpx")
setenv("I_MPI_FC", "ifx")
setenv("I_MPI_F90", "ifx")
setenv("I_MPI_F77", "ifx")

whatis("Description: UPP build environment")
File renamed without changes.
File renamed without changes.
68 changes: 35 additions & 33 deletions tests/compile_upp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,46 @@

set -eu

if [[ $(uname -s) == Darwin ]]; then
readonly MYDIR=$(cd "$(dirname "$(greadlink -f -n "${BASH_SOURCE[0]}" )" )" && pwd -P)
else
readonly MYDIR=$(cd "$(dirname "$(readlink -f -n "${BASH_SOURCE[0]}" )" )" && pwd -P)
fi
PATHTR=${PATHTR:-$( cd ${MYDIR}/.. && pwd )}
source ${PATHTR}/tests/detect_machine.sh

set_defaults() {
delete_exec=YES
upp_name="upp.x"
load_ifi_module=NO
prefix="../install"
ifi_opt=" -DBUILD_WITH_IFI=OFF"
build_ifi_executables_opt=" "
build_ifi_executables=NO
gtg_opt=" -DBUILD_WITH_GTG=OFF"
nemsio_opt=" -DBUILD_WITH_NEMSIO=ON"
wrfio_opt=" -DBUILD_WITH_WRFIO=ON"
more=" "
verbose_opt=""
debug_opt=""
compiler="intel"
}

usage() {
set_defaults # restore defaults so usage is correct
echo
echo "Usage: $0 [options]"
echo
echo " -o exe_name.x Name of built UPP executable in exec. Default: upp.x"
echo " -p installation prefix <prefix> DEFAULT: ../install"
echo " -g build with GTG(users with gtg repos. access only) DEFAULT: OFF"
echo " -o exe_name.x Name of built UPP executable in exec. Default: $upp_name"
echo " -p installation prefix <prefix> DEFAULT: $prefix"
echo " -g build with GTG(users with gtg repos. access only) DEFAULT: ${gtg_opt#*=}"
echo " -i build with libIFI(users with ifi install access only) DEFAULT: OFF"
echo " -I build with libIFI (users with ifi repos. access only) DEFAULT: OFF"
echo " -B build libIFI test programs (only valid with -I) DEFAULT: OFF"
echo " -n build without nemsio DEFAULT: ON"
echo " -w build without WRF-IO DEFAULT: ON"
echo " -n build with nemsio DEFAULT: ${nemsio_opt#*=}"
echo " -w build with WRF-IO DEFAULT: ${wrfio_opt#*=}"
echo " -v build with cmake verbose DEFAULT: OFF"
echo " -c Compiler to use for build DEFAULT: intel"
echo " -c Compiler to use for build DEFAULT: $compiler"
echo " -d Debug mode of CMAKE_BUILD_TYPE DEFAULT: Release"
echo " -a Skip deletion of exec. Add new executables. DEFAULT: OFF"
echo " -Doption=value Passes this option to cmake (can use more than once)"
Expand All @@ -28,20 +54,8 @@ usage() {
exit 1
}

delete_exec=YES
upp_name="upp.x"
load_ifi_module=NO
prefix="../install"
ifi_opt=" -DBUILD_WITH_IFI=OFF"
build_ifi_executables_opt=" "
build_ifi_executables=NO
gtg_opt=" -DBUILD_WITH_GTG=OFF"
nemsio_opt=" -DBUILD_WITH_NEMSIO=ON"
wrfio_opt=" -DBUILD_WITH_WRFIO=ON"
more=" "
compiler="intel"
verbose_opt=""
debug_opt=""
set_defaults

while getopts ":p:gnwc:vhiIdBD:o:a" opt; do
case $opt in
a)
Expand Down Expand Up @@ -100,14 +114,6 @@ fi

cmake_opts=" -DCMAKE_INSTALL_PREFIX=$prefix"${nemsio_opt}${wrfio_opt}${gtg_opt}${ifi_opt}${debug_opt}${build_ifi_executables_opt}${more}

if [[ $(uname -s) == Darwin ]]; then
readonly MYDIR=$(cd "$(dirname "$(greadlink -f -n "${BASH_SOURCE[0]}" )" )" && pwd -P)
else
readonly MYDIR=$(cd "$(dirname "$(readlink -f -n "${BASH_SOURCE[0]}" )" )" && pwd -P)
fi
PATHTR=${PATHTR:-$( cd ${MYDIR}/.. && pwd )}
source ${PATHTR}/tests/detect_machine.sh

#Load required modulefiles
if [[ $MACHINE_ID != "unknown" ]]; then
if [ $MACHINE_ID == "wcoss2" -o $MACHINE_ID == "wcoss2_a" ]; then
Expand All @@ -122,11 +128,7 @@ if [[ $MACHINE_ID != "unknown" ]]; then
module purge
fi
module use $PATHTR/modulefiles
if [[ $compiler == "intel" ]]; then
modulefile=${MACHINE_ID}
else
modulefile=${MACHINE_ID}_${compiler}
fi
modulefile=${MACHINE_ID}_${compiler}
if [ -f "${PATHTR}/modulefiles/${modulefile}" -o -f "${PATHTR}/modulefiles/${modulefile}.lua" ]; then
echo "Building for machine ${MACHINE_ID}, compiler ${compiler}"
else
Expand Down
3 changes: 3 additions & 0 deletions tests/detect_machine.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ case $(hostname -f) in
hfe1[01]) MACHINE_ID=hera ;; ### hera10-11
hecflow01) MACHINE_ID=hera ;; ### heraecflow01

ufe[0-9][0-9]) MACHINE_ID=ursa ;;
uecflow*) MACHINE_ID=ursa ;;

s4-submit.ssec.wisc.edu) MACHINE_ID=s4 ;; ### s4

fe[1-8]) MACHINE_ID=jet ;; ### jet1-8
Expand Down
62 changes: 31 additions & 31 deletions tests/logs/rt.log.HERA
Original file line number Diff line number Diff line change
@@ -1,45 +1,45 @@
===== Start of UPP Regression Testing Log =====
UPP Hash Tested:
4a125c31c60714c7747002e3f1c27976aa678a7d
20fc8813bbb2cd4f45ea61451d849a92ef05ea30

Submodule hashes:
-179cae1dd84401cf25d250bd9102e66560a9d328 sorc/libIFI.fd
-3d35332fe66e3e63a285cc8d96facdf255a33481 sorc/ncep_post.fd/post_gtg.fd

Run directory: /scratch2/NAGAPE/epic/Gillian.Petro/RTs/upp-rts/1208b/ci/rundir/upp-HERA
Run directory: /scratch2/NAGAPE/epic/Gillian.Petro/RTs/upp-rts/1231/ci/rundir/upp-HERA
Baseline directory: /scratch2/NAGAPE/epic/UPP/test_suite

Total runtime: 00h:10m:08s
Test Date: 20250605 17:47:22
Total runtime: 00h:09m:42s
Test Date: 20250610 03:09:53
Summary Results:

06/05 17:40:36Z -fv3gefs test: your new post executable generates bit-identical geaer.t00z.master.grb2f060 as the develop branch
06/05 17:40:36Z -fv3r_ifi_missing test: your new post executable generates bit-identical IFIFIP10.tm00 as the develop branch
06/05 17:40:59Z -fv3hafs test: your new post executable generates bit-identical HURPRS09.tm00 as the develop branch
06/05 17:41:13Z -rap test: your new post executable generates bit-identical WRFPRS.GrbF16 as the develop branch
06/05 17:41:14Z -rap test: your new post executable generates bit-identical WRFNAT.GrbF16 as the develop branch
06/05 17:41:32Z -nmmb test: your new post executable generates bit-identical BGDAWP03.tm00.Grib2 as the develop branch
06/05 17:41:33Z -nmmb test: your new post executable generates bit-identical BGRD3D03.tm00.Grib2 as the develop branch
06/05 17:41:34Z -nmmb test: your new post executable generates bit-identical BGRDSF03.tm00.Grib2 as the develop branch
06/05 17:41:45Z -fv3r test: your new post executable generates bit-identical PRSLEV10.tm00 as the develop branch
06/05 17:41:51Z -fv3r test: your new post executable generates bit-identical NATLEV10.tm00 as the develop branch
06/05 17:42:02Z -3drtma test: your new post executable generates bit-identical NATLEV00.tm00 as the develop branch
06/05 17:42:05Z -3drtma test: your new post executable generates bit-identical PRSLEV00.tm00 as the develop branch
06/05 17:42:40Z -hrrr test: your new post executable generates bit-identical WRFTWO.GrbF04 as the develop branch
06/05 17:42:41Z -hrrr test: your new post executable generates bit-identical WRFPRS.GrbF04 as the develop branch
06/05 17:42:43Z -hrrr test: your new post executable generates bit-identical WRFNAT.GrbF04 as the develop branch
06/05 17:47:04Z -fv3gfs test: your new post executable generates bit-identical gfs.t00z.master.grb2f006 as the develop branch
06/05 17:47:07Z -fv3gfs test: your new post executable generates bit-identical gfs.t00z.sfluxgrbf006.grib2 as the develop branch
06/05 17:47:08Z -fv3gfs test: your new post executable generates bit-identical gfs.t00z.special.grb2f006 as the develop branch
06/05 17:41:44Z -Runtime: nmmb_test 00:01:34 -- baseline 00:02:00
06/05 17:41:44Z -Runtime: fv3gefs_test 00:00:36 -- baseline 00:01:00
06/05 17:41:59Z -Runtime: fv3r_test 00:01:51 -- baseline 00:03:00
06/05 17:41:59Z -Runtime: fv3r_ifi_mis 00:00:36 -- baseline 00:01:00
06/05 17:42:45Z -Runtime: hrrr_test 00:02:43 -- baseline 00:03:00
06/05 17:42:45Z -Runtime: rap_test 00:01:14 -- baseline 00:02:00
06/05 17:42:45Z -Runtime: fv3hafs_test 00:00:59 -- baseline 00:01:00
06/05 17:42:45Z -Runtime: 3drtma_test 00:02:05 -- baseline 00:03:00
06/05 17:47:22Z -Runtime: fv3gfs_test 00:07:08 -- baseline 00:10:00
06/10 03:03:15Z -fv3r_ifi_missing test: your new post executable generates bit-identical IFIFIP10.tm00 as the develop branch
06/10 03:03:17Z -fv3gefs test: your new post executable generates bit-identical geaer.t00z.master.grb2f060 as the develop branch
06/10 03:03:23Z -fv3hafs test: your new post executable generates bit-identical HURPRS09.tm00 as the develop branch
06/10 03:03:56Z -rap test: your new post executable generates bit-identical WRFPRS.GrbF16 as the develop branch
06/10 03:03:57Z -rap test: your new post executable generates bit-identical WRFNAT.GrbF16 as the develop branch
06/10 03:04:15Z -nmmb test: your new post executable generates bit-identical BGDAWP03.tm00.Grib2 as the develop branch
06/10 03:04:17Z -nmmb test: your new post executable generates bit-identical BGRD3D03.tm00.Grib2 as the develop branch
06/10 03:04:17Z -nmmb test: your new post executable generates bit-identical BGRDSF03.tm00.Grib2 as the develop branch
06/10 03:04:25Z -fv3r test: your new post executable generates bit-identical PRSLEV10.tm00 as the develop branch
06/10 03:04:31Z -fv3r test: your new post executable generates bit-identical NATLEV10.tm00 as the develop branch
06/10 03:04:36Z -3drtma test: your new post executable generates bit-identical NATLEV00.tm00 as the develop branch
06/10 03:04:40Z -3drtma test: your new post executable generates bit-identical PRSLEV00.tm00 as the develop branch
06/10 03:05:15Z -hrrr test: your new post executable generates bit-identical WRFTWO.GrbF04 as the develop branch
06/10 03:05:16Z -hrrr test: your new post executable generates bit-identical WRFPRS.GrbF04 as the develop branch
06/10 03:05:18Z -hrrr test: your new post executable generates bit-identical WRFNAT.GrbF04 as the develop branch
06/10 03:09:42Z -fv3gfs test: your new post executable generates bit-identical gfs.t00z.master.grb2f006 as the develop branch
06/10 03:09:45Z -fv3gfs test: your new post executable generates bit-identical gfs.t00z.sfluxgrbf006.grib2 as the develop branch
06/10 03:09:45Z -fv3gfs test: your new post executable generates bit-identical gfs.t00z.special.grb2f006 as the develop branch
06/10 03:04:20Z -Runtime: nmmb_test 00:01:27 -- baseline 00:02:00
06/10 03:04:20Z -Runtime: fv3gefs_test 00:00:29 -- baseline 00:01:00
06/10 03:04:35Z -Runtime: fv3r_test 00:01:43 -- baseline 00:03:00
06/10 03:04:35Z -Runtime: fv3r_ifi_mis 00:00:27 -- baseline 00:01:00
06/10 03:05:21Z -Runtime: hrrr_test 00:02:30 -- baseline 00:03:00
06/10 03:05:21Z -Runtime: rap_test 00:01:09 -- baseline 00:02:00
06/10 03:05:21Z -Runtime: fv3hafs_test 00:00:35 -- baseline 00:01:00
06/10 03:05:21Z -Runtime: 3drtma_test 00:01:52 -- baseline 00:03:00
06/10 03:09:53Z -Runtime: fv3gfs_test 00:06:57 -- baseline 00:10:00
Check tests:
nmmb fv3gefs fv3r fv3r_ifi_missing hrrr rap fv3hafs 3drtma fv3gfs
No changes in test results detected.
Expand Down
62 changes: 31 additions & 31 deletions tests/logs/rt.log.HERCULES
Original file line number Diff line number Diff line change
@@ -1,45 +1,45 @@
===== Start of UPP Regression Testing Log =====
UPP Hash Tested:
4a125c31c60714c7747002e3f1c27976aa678a7d
20fc8813bbb2cd4f45ea61451d849a92ef05ea30

Submodule hashes:
-179cae1dd84401cf25d250bd9102e66560a9d328 sorc/libIFI.fd
-3d35332fe66e3e63a285cc8d96facdf255a33481 sorc/ncep_post.fd/post_gtg.fd

Run directory: /work/noaa/epic/gpetro/hercules/RTs/upp-rts/1208b/ci/rundir/upp-HERCULES
Run directory: /work/noaa/epic/gpetro/hercules/RTs/upp-rts/1231/ci/rundir/upp-HERCULES
Baseline directory: /work/noaa/epic/UPP

Total runtime: 00h:20m:23s
Test Date: 20250605 12:57:40
Total runtime: 00h:11m:06s
Test Date: 20250609 22:11:07
Summary Results:

06/05 17:41:30Z -nmmb test: your new post executable generates bit-identical BGDAWP03.tm00.Grib2 as the develop branch
06/05 17:41:32Z -nmmb test: your new post executable generates bit-identical BGRD3D03.tm00.Grib2 as the develop branch
06/05 17:41:32Z -nmmb test: your new post executable generates bit-identical BGRDSF03.tm00.Grib2 as the develop branch
06/05 17:44:14Z -fv3r test: your new post executable generates bit-identical IFIFIP10.tm00 as the develop branch
06/05 17:44:19Z -fv3gefs test: your new post executable generates bit-identical geaer.t00z.master.grb2f060 as the develop branch
06/05 17:44:52Z -rap test: your new post executable generates bit-identical WRFPRS.GrbF16 as the develop branch
06/05 17:44:53Z -rap test: your new post executable generates bit-identical WRFNAT.GrbF16 as the develop branch
06/05 17:45:43Z -fv3r test: your new post executable generates bit-identical PRSLEV10.tm00 as the develop branch
06/05 17:45:47Z -fv3r test: your new post executable generates bit-identical NATLEV10.tm00 as the develop branch
06/05 17:46:13Z -3drtma test: your new post executable generates bit-identical NATLEV00.tm00 as the develop branch
06/05 17:46:17Z -3drtma test: your new post executable generates bit-identical PRSLEV00.tm00 as the develop branch
06/05 17:48:40Z -hrrr test: your new post executable generates bit-identical WRFTWO.GrbF04 as the develop branch
06/05 17:48:41Z -hrrr test: your new post executable generates bit-identical WRFPRS.GrbF04 as the develop branch
06/05 17:48:44Z -hrrr test: your new post executable generates bit-identical WRFNAT.GrbF04 as the develop branch
06/05 17:53:31Z -fv3gfs test: your new post executable generates bit-identical gfs.t00z.master.grb2f006 as the develop branch
06/05 17:53:32Z -fv3gfs test: your new post executable generates bit-identical gfs.t00z.sfluxgrbf006.grib2 as the develop branch
06/05 17:53:32Z -fv3gfs test: your new post executable generates bit-identical gfs.t00z.special.grb2f006 as the develop branch
06/05 17:57:37Z -fv3hafs test: your new post executable generates bit-identical HURPRS09.tm00 as the develop branch
06/05 17:41:38Z -Runtime: nmmb_test 00:02:09 -- baseline 00:03:00
06/05 17:44:23Z -Runtime: fv3gefs_test 00:00:22 -- baseline 00:01:00
06/05 17:45:53Z -Runtime: fv3r_test 00:01:50 -- baseline 00:03:00
06/05 17:45:53Z -Runtime: fv3r_ifi_mis 00:00:17 -- baseline 00:01:00
06/05 17:48:53Z -Runtime: hrrr_test 00:04:47 -- baseline 00:05:00
06/05 17:48:53Z -Runtime: rap_test 00:00:56 -- baseline 00:02:00
06/05 17:57:39Z -Runtime: fv3hafs_test 00:00:29 -- baseline 00:01:00
06/05 17:57:39Z -Runtime: 3drtma_test 00:02:20 -- baseline 00:03:00
06/05 17:57:39Z -Runtime: fv3gfs_test 00:09:35 -- baseline 00:11:00
06/10 03:02:21Z -fv3r test: your new post executable generates bit-identical IFIFIP10.tm00 as the develop branch
06/10 03:02:24Z -fv3gefs test: your new post executable generates bit-identical geaer.t00z.master.grb2f060 as the develop branch
06/10 03:02:37Z -fv3hafs test: your new post executable generates bit-identical HURPRS09.tm00 as the develop branch
06/10 03:03:02Z -rap test: your new post executable generates bit-identical WRFPRS.GrbF16 as the develop branch
06/10 03:03:03Z -rap test: your new post executable generates bit-identical WRFNAT.GrbF16 as the develop branch
06/10 03:03:50Z -nmmb test: your new post executable generates bit-identical BGDAWP03.tm00.Grib2 as the develop branch
06/10 03:03:50Z -fv3r test: your new post executable generates bit-identical PRSLEV10.tm00 as the develop branch
06/10 03:03:51Z -nmmb test: your new post executable generates bit-identical BGRD3D03.tm00.Grib2 as the develop branch
06/10 03:03:51Z -nmmb test: your new post executable generates bit-identical BGRDSF03.tm00.Grib2 as the develop branch
06/10 03:03:53Z -fv3r test: your new post executable generates bit-identical NATLEV10.tm00 as the develop branch
06/10 03:04:19Z -3drtma test: your new post executable generates bit-identical NATLEV00.tm00 as the develop branch
06/10 03:04:22Z -3drtma test: your new post executable generates bit-identical PRSLEV00.tm00 as the develop branch
06/10 03:06:33Z -hrrr test: your new post executable generates bit-identical WRFTWO.GrbF04 as the develop branch
06/10 03:06:34Z -hrrr test: your new post executable generates bit-identical WRFPRS.GrbF04 as the develop branch
06/10 03:06:36Z -hrrr test: your new post executable generates bit-identical WRFNAT.GrbF04 as the develop branch
06/10 03:11:00Z -fv3gfs test: your new post executable generates bit-identical gfs.t00z.master.grb2f006 as the develop branch
06/10 03:11:02Z -fv3gfs test: your new post executable generates bit-identical gfs.t00z.sfluxgrbf006.grib2 as the develop branch
06/10 03:11:03Z -fv3gfs test: your new post executable generates bit-identical gfs.t00z.special.grb2f006 as the develop branch
06/10 03:03:51Z -Runtime: nmmb_test 00:01:45 -- baseline 00:03:00
06/10 03:03:51Z -Runtime: fv3gefs_test 00:00:17 -- baseline 00:01:00
06/10 03:04:06Z -Runtime: fv3r_test 00:01:46 -- baseline 00:03:00
06/10 03:04:06Z -Runtime: fv3r_ifi_mis 00:00:14 -- baseline 00:01:00
06/10 03:06:36Z -Runtime: hrrr_test 00:04:29 -- baseline 00:05:00
06/10 03:06:36Z -Runtime: rap_test 00:00:56 -- baseline 00:02:00
06/10 03:06:36Z -Runtime: fv3hafs_test 00:00:30 -- baseline 00:01:00
06/10 03:06:36Z -Runtime: 3drtma_test 00:02:15 -- baseline 00:03:00
06/10 03:11:07Z -Runtime: fv3gfs_test 00:08:56 -- baseline 00:11:00
Check tests:
nmmb fv3gefs fv3r fv3r_ifi_missing hrrr rap fv3hafs 3drtma fv3gfs
No changes in test results detected.
Expand Down
Loading