Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support different I/O types for history and restart output #2754

Conversation

jayeshkrishna
Copy link
Contributor

@jayeshkrishna jayeshkrishna commented Mar 13, 2024

Adding support for using different I/O types (pnetcdf, adios, netcdf) for history and restart output.

The I/O type for restart output is picked up from CIME for E3SM runs, while the I/O type for the history output is controlled via a new YAML key "iotype" in the output YAML configuration file.

This PR also updates SCORPIO to 1.6.2 and CIME to cime6.0.226

if int(0 if is_mpich_gpu_enabled is None else is_mpich_gpu_enabled) == 1:
logger.info("Resetting support for GPU in MPICH/MPI library (since its not used by the tool)")
os.environ['MPICH_GPU_SUPPORT_ENABLED'] = str(0);

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A CIME config change.
This change is not in E3SM master yet, but we will be adding this change there soon


<environment_variables compiler="crayclang-scream" mpilib="mpich">
<env name="ADIOS2_ROOT">$SHELL{if [ -z "$ADIOS2_ROOT" ]; then echo /lustre/orion/cli115/world-shared/frontier/3rdparty/adios2/2.9.1/cray-mpich-8.1.26/crayclang-scream-14.0.0; else echo "$ADIOS2_ROOT"; fi}</env>
</environment_variables>
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A CIME config change
This change also needs to be ported to E3SM master too

<job name="case.st_archive">
<template>template.st_archive</template>
<!-- If DOUT_S is true and case.run (or case.test) exits successfully then run st_archive-->
<dependency>(case.run and case.post_run_io) or case.test</dependency>
<!--dependency>(case.run and case.post_run_io) or case.test</dependency-->
<dependency>case.run or case.test</dependency>
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A CIME config change
This is a SCREAM repo only change for now. This change disables the ADIOS to NetCDF conversion job from running after the E3SM job completes.

We will need to add a way to disable it via XML changes in E3SM.

bartgol
bartgol previously approved these changes Mar 13, 2024
Copy link
Contributor

@bartgol bartgol left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks great! I have a couple of comments, but nothing too important.

@@ -350,7 +350,13 @@ void AtmosphereInput::finalize()
/* ---------------------------------------------------------- */
void AtmosphereInput::init_scorpio_structures()
{
scorpio::register_file(m_filename,scorpio::Read);
int iotype = scorpio::str2iotype("default");
if(m_params.isParameter("iotype")){
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If you want, you can be more concise:

Suggested change
if(m_params.isParameter("iotype")){
auto iotype_str = m_params.get<std::string>("iotype","default");
int iotype = scorpio::str2iotype(iotype_str);

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, your suggestion looks better/concise. I will make that change.

@@ -2,6 +2,7 @@
#define SCREAM_SCORPIO_INPUT_HPP

#include "share/io/scream_scorpio_interface.hpp"
#include "share/io/scream_io_utils.hpp"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this include is really needed. If it's needed in the cpp, you can just include it in the cpp.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ok, will remove it (I think it must have been added while I was modifying the code)

@@ -94,8 +94,8 @@ void eam_pio_finalize() {
eam_pio_finalize_c2f();
}
/* ----------------------------------------------------------------- */
void register_file(const std::string& filename, const FileMode mode) {
register_file_c2f(filename.c_str(),mode);
void register_file(const std::string& filename, const FileMode mode, const int iotype) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Up to you, but since you often call this with iotype=IoType::DefaultIoType, you could consider adding the default value in the fcn signature, so that you don't need to add , scorpio::IOType::DefaultIOType to all register_file calls..

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think its a good idea to add the default value here (On the other hand forcing users to specify the args can prevent copy-paste errors :) ). I will make that change

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, it's not an obvious choice. As I said, up to you. If you think in the vast majority of cases the "default" value is fine, then adding defaults to the signature makes sense. But if the cost of using default when you shouldn't is very high, then we can just force users to always pass it.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I will modify the code to use default args since there are many instances where the default io type is used (including tests etc)

@bartgol bartgol added enhancement New feature or request BFB Bit for bit I/O labels Mar 13, 2024
@jayeshkrishna jayeshkrishna force-pushed the jayeshkrishna/diff_iotypes_for_hist_rest branch from 460545c to 40fb1d6 Compare March 14, 2024 13:51
@jayeshkrishna jayeshkrishna marked this pull request as ready for review March 14, 2024 13:53
@E3SM-Autotester
Copy link
Collaborator

Status Flag 'Pull Request AutoTester' - GitHub reports Mergeable status = False

@jayeshkrishna jayeshkrishna force-pushed the jayeshkrishna/diff_iotypes_for_hist_rest branch from 40fb1d6 to f720ff5 Compare March 14, 2024 14:14
@jayeshkrishna
Copy link
Contributor Author

I have incorporated all changes suggested by @bartgol and rebased the branch with the latest master (to fix a merge conflict).

@E3SM-Autotester
Copy link
Collaborator

Status Flag 'Pull Request AutoTester' - Testing Jenkins Projects:

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: SCREAM_PullRequest_Autotester_Mappy

  • Build Num: 5041
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA f720ff5
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA a5e6f59
TEST_REPO_ALIAS SCREAM

Build Information

Test Name: SCREAM_PullRequest_Autotester_Weaver

  • Build Num: 5416
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA f720ff5
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA a5e6f59
TEST_REPO_ALIAS SCREAM

Using Repos:

Repo: SCREAM (jayeshkrishna/scream)
  • Branch: jayeshkrishna/diff_iotypes_for_hist_rest
  • SHA: f720ff5
  • Mode: TEST_REPO

Pull Request Author: jayeshkrishna

@E3SM-Autotester
Copy link
Collaborator

Status Flag 'Pull Request AutoTester' - Jenkins Testing: 1 or more Jobs FAILED

Note: Testing will normally be attempted again in approx. 2 Hrs. If a change to the PR source branch occurs, the testing will be attempted again on next available autotester run.

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: SCREAM_PullRequest_Autotester_Mappy

  • Build Num: 5041
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA f720ff5
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA a5e6f59
TEST_REPO_ALIAS SCREAM

Build Information

Test Name: SCREAM_PullRequest_Autotester_Weaver

  • Build Num: 5416
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA f720ff5
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA a5e6f59
TEST_REPO_ALIAS SCREAM
SCREAM_PullRequest_Autotester_Mappy # 5041 FAILED (click to see last 100 lines of console output)

/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5041/scream/components/eam/src/physics/cosp2/local/cosp.F90:1236:10:

1236 | cospOUT%cloudsat_pia(ij:ik) => out1D_2
| 1
Warning: Pointer at (1) in pointer assignment might outlive the pointer target [-Wtarget-lifetime]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5041/scream/components/eam/src/physics/cosp2/local/cosp.F90:1240:10:

1240 | cospOUT%cloudsat_precip_cover(ij:ik,1:nCloudsatPrecipClass) => out1D_3
| 1
Warning: Pointer at (1) in pointer assignment might outlive the pointer target [-Wtarget-lifetime]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5041/scream/components/eam/src/physics/cosp2/local/cosp.F90:1731:81:

1731 | Latlid_column, LgrLidar532_subcolumn, LgrLidar532_column, Lrttov_subcolumn, &
| 1
Warning: Unused dummy argument lrttov_subcolumn at (1) [-Wunused-dummy-argument]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5041/scream/components/eam/src/physics/cosp2/local/cosp.F90:1771:45:

1771 | character(len=100) :: parasolErrorMessage
| 1
Warning: Unused variable parasolerrormessage declared at (1) [-Wunused-variable]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5041/scream/components/eam/src/physics/cosp2/local/cosp.F90:297:76:

297 | function COSP_SIMULATOR(cospIN,cospgridIN,cospOUT,start_idx,stop_idx,debug)
| 1
Warning: Unused dummy argument debug at (1) [-Wunused-dummy-argument]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5041/scream/components/eam/src/physics/cosp2/local/cosp.F90:374:49:

374 | betamol_in,betamoli,pnormi,ze_toti,ze_noni
| 1
Warning: Unused variable ze_noni declared at (1) [-Wunused-variable]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5041/scream/components/eamxx/../../share/util/shr_assert_mod.F90.in:85:0:

85 | full_msg = 'ERROR'
|
Warning: .full_msg may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5041/scream/components/eamxx/../../share/util/shr_assert_mod.F90.in:87:0:

87 | full_msg = full_msg // ' in ' // trim(file)
|
Warning: .__var_1_realloc_string may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5041/scream/components/eamxx/../../share/util/shr_assert_mod.F90.in:89:0:

89 | full_msg = full_msg // ' at line ' // toString(line)
|
Warning: .__var_2_realloc_string may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5041/scream/components/eamxx/../../share/util/shr_assert_mod.F90.in:93:0:

93 | full_msg = full_msg // ': ' // msg
|
Warning: .__var_3_realloc_string may be used uninitialized in this function [-Wmaybe-uninitialized]
[ 13%] Linking CXX static library libyaml-cppd.a
[ 13%] Built target yaml-cpp
[ 13%] Linking Fortran static library libcosp.a
[ 13%] Built target cosp
[ 13%] Linking Fortran static library libcsm_share.a
[ 13%] Built target csm_share
[ 13%] Linking CXX static library libkokkoscore.a
[ 13%] Built target kokkoscore
[ 13%] Linking CXX static library libspdlogd.a
[ 13%] Built target spdlog
gmake: *** [all] Error 2
SCREAM V1 TESTING FAILED!
Waiting for tests to finish
PASS ERP_D_Lh4.ne4_ne4.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1 RUN
Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERP_D_Lh4.ne4_ne4.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1.C.20240314_084515_qwo9y0
FAIL ERP_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-4 (phase RUN)
Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERP_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-4.C.20240314_084515_qwo9y0
PASS ERS_D_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-rad_frequency_2--scream-output-preset-5 RUN
Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERS_D_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-rad_frequency_2--scream-output-preset-5.C.20240314_084515_qwo9y0
FAIL ERS_Ln9.ne4_ne4.F2000-SCREAMv1-AQP1.mappy_gnu9.scream-output-preset-2 (phase RUN)
Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERS_Ln9.ne4_ne4.F2000-SCREAMv1-AQP1.mappy_gnu9.scream-output-preset-2.C.20240314_084515_qwo9y0
DIFF PET_Ln9_P32x2.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1 (phase BASELINE)
Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/PET_Ln9_P32x2.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1.C.20240314_084515_qwo9y0
PASS SMS_D_Ln9.ne4_ne4.F2010-SCREAMv1-noAero.mappy_gnu9.scream-output-preset-3 RUN
Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/SMS_D_Ln9.ne4_ne4.F2010-SCREAMv1-noAero.mappy_gnu9.scream-output-preset-3.C.20240314_084515_qwo9y0
test-scheduler took 665.1917805671692 seconds
######################################################
Build step 'Execute shell' marked build as failure
$ ssh-agent -k
unset SSH_AUTH_SOCK;
unset SSH_AGENT_PID;
echo Agent pid 67084 killed;
[ssh-agent] Stopped.
Performing Post build task...
Match found for : : True
Logical operation result is TRUE
Running script : #!/bin/bash -le

cd $WORKSPACE/${BUILD_ID}/

./scream/components/eamxx/scripts/jenkins/jenkins_cleanup.sh

We're having issues with some test-launcher job hanging forever. So let's make sure we clean all penting test-launcher jobs

squeue -o"%.7i %u %40j" | grep e3sm-jenkins | grep test-launcher | awk '{ print $1 }' | xargs -r scancel

[SCREAM_PullRequest_Autotester_Mappy] $ /bin/bash -le /tmp/jenkins8519935349671055050.sh
POST BUILD TASK : SUCCESS
END OF POST BUILD TASK : 0
Sending e-mails to: [email protected]
Finished: FAILURE

SCREAM_PullRequest_Autotester_Weaver # 5416 FAILED (click to see last 100 lines of console output)

+++ PYTHON_ROOT=/projects/ppc64le-pwr9-rhel8/utilities/python/3.10.8/gcc/8.3.1/base/qmix2fe
+++ export PYTHON_ROOT
+++ PYTHON_VERSION=3.10.8
+++ export PYTHON_VERSION
+++ _LMFILES_=/projects/ppc64le-pwr9-rhel8/modulefiles/lmod/utilities/linux-rhel8-ppc64le/Core/python/3.10.8.lua
+++ export _LMFILES_
+++ _ModuleTable001_=X01vZHVsZVRhYmxlXyA9IHsKTVR2ZXJzaW9uID0gMywKY19yZWJ1aWxkVGltZSA9IGZhbHNlLApjX3Nob3J0VGltZSA9IGZhbHNlLApkZXB0aFQgPSB7fSwKZmFtaWx5ID0ge30sCm1UID0gewpweXRob24gPSB7CmZuID0gIi9wcm9qZWN0cy9wcGM2NGxlLXB3cjktcmhlbDgvbW9kdWxlZmlsZXMvbG1vZC91dGlsaXRpZXMvbGludXgtcmhlbDgtcHBjNjRsZS9Db3JlL3B5dGhvbi8zLjEwLjgubHVhIiwKZnVsbE5hbWUgPSAicHl0aG9uLzMuMTAuOCIsCmxvYWRPcmRlciA9IDEsCnByb3BUID0ge30sCnN0YWNrRGVwdGggPSAwLApzdGF0dXMgPSAiYWN0aXZlIiwKdXNlck5hbWUgPSAicHl0aG9uLzMuMTAuOCIsCndWID0gIjAwMDAwMDAwMy4wMDAwMDAwMTAuMDAwMDAwMDA4Lip6
+++ export _ModuleTable001_
+++ _ModuleTable002_=ZmluYWwiLAp9LAp9LAptcGF0aEEgPSB7CiIvcHJvamVjdHMvcHBjNjRsZS1wd3I5LXJoZWw4L21vZHVsZWZpbGVzL2xtb2QvY29tcGlsZXJzIiwgIi9wcm9qZWN0cy9wcGM2NGxlLXB3cjktcmhlbDgvbW9kdWxlZmlsZXMvbG1vZC91dGlsaXRpZXMvbGludXgtcmhlbDgtcHBjNjRsZS9Db3JlIiwKfSwKc3lzdGVtQmFzZU1QQVRIID0gIi9wcm9qZWN0cy9wcGM2NGxlLXB3cjktcmhlbDgvbW9kdWxlZmlsZXMvbG1vZC9jb21waWxlcnM6L3Byb2plY3RzL3BwYzY0bGUtcHdyOS1yaGVsOC9tb2R1bGVmaWxlcy9sbW9kL3V0aWxpdGllcy9saW51eC1yaGVsOC1wcGM2NGxlL0NvcmUiLAp9Cg==
+++ export _ModuleTable002_
+++ _ModuleTable_Sz_=2
+++ export _ModuleTable_Sz_
++ SCREAM_MACHINE=weaver
+ [[ 0 == 1 ]]
+ [[ 0 == 1 ]]
+ [[ 0 == 1 ]]
++ whoami
+ [[ e3sm-jenkins == \e\3\s\m\-\j\e\n\k\i\n\s ]]
+ git config --local user.email [email protected]
+ git config --local user.name 'Jenkins Jenkins'
+ declare -i fails=0
+ BASELINES_DIR=AUTO
+ TAS_ARGS='--baseline-dir AUTO $compiler -p -c EKAT_DISABLE_TPL_WARNINGS=ON -i -m $machine'
+ [[ weaver == \p\m\-\g\p\u ]]
+ set +e
+ '[' -n 2754 ']'
+ is_at_run=1
+ SA_FAILURES_DETAILS=
+ '[' 1 -eq 1 ']'
++ ./scripts/gather-all-data './scripts/test-all-scream --baseline-dir AUTO $compiler -p -c EKAT_DISABLE_TPL_WARNINGS=ON -i -m $machine' -l -m weaver
***Forced exclusive execution
<>
<>
+ this_output='Job <70573> is submitted to queue .
Last commit on ref '\''f720ff5090d569fdb4a0b11e3f4e6150255cb126'\'': f720ff5090 Disable BP to NetCDF conversion
Note: no value passed for --make-parallel-level. Using the default for this machine: 160
Note: no value passed for --ctest-parallel-level. Using the default for this machine: 4
Test full_debug can use 52 jobs to compile, and 1 jobs for test
Test full_sp_debug can use 52 jobs to compile, and 1 jobs for test
Test release can use 52 jobs to compile, and 1 jobs for test
RUN: { source /etc/profile.d/modules.sh && module purge && module load cmake/3.25.1 git/2.39.1 python/3.10.8 py-netcdf4/1.5.8 gcc/11.3.0 cuda/11.8.0 openmpi netcdf-c netcdf-fortran parallel-netcdf netlib-lapack && export CTEST_PARALLEL_LEVEL=4;  } > /dev/null && env | sort
FROM: /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5416/scream/components/eamxx
Merge of '\''origin/master'\'' not necessary. Current HEAD is already ahead.
Checking baselines directory: /home/projects/e3sm/scream/pr-autotester/master-baselines/weaver
 -> Test full_debug appears to have baselines
 -> Test full_sp_debug appears to have baselines
 -> Test release appears to have baselines
ERROR: Command: '\''git rev-list --left-right --count 2b151e7c14feda1bbc5e4dcb561bb826d48b84fe...a5e6f59de7693a39ff5d44b37c83ec712bece878'\'' failed with error '\''fatal: Invalid symmetric difference expression 2b151e7c14feda1bbc5e4dcb561bb826d48b84fe...a5e6f59de7693a39ff5d44b37c83ec712bece878'\'' from dir '\''/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5416/scream/components/eamxx'\''
Starting analysis on weaver with cmd: cd /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5416/scream/components/eamxx && source /etc/profile.d/modules.sh && module purge && module load cmake/3.25.1 git/2.39.1 python/3.10.8 py-netcdf4/1.5.8 gcc/11.3.0 cuda/11.8.0 openmpi netcdf-c netcdf-fortran parallel-netcdf netlib-lapack && true && bsub -I -q rhel8 -n 4 -gpu num=4 ./scripts/test-all-scream --baseline-dir AUTO $compiler -p -c EKAT_DISABLE_TPL_WARNINGS=ON -i -m weaver
RUN: cd /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5416/scream/components/eamxx && source /etc/profile.d/modules.sh && module purge && module load cmake/3.25.1 git/2.39.1 python/3.10.8 py-netcdf4/1.5.8 gcc/11.3.0 cuda/11.8.0 openmpi netcdf-c netcdf-fortran parallel-netcdf netlib-lapack && true && bsub -I -q rhel8 -n 4 -gpu num=4 ./scripts/test-all-scream --baseline-dir AUTO $compiler -p -c EKAT_DISABLE_TPL_WARNINGS=ON -i -m weaver
FROM: /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5416/scream/components/eamxx
weaver failed'
+ [[ 1 != 0 ]]
+ fails=0+1
+ sa_fail=1
+ [[ 1 == 1 ]]
++ echo 'Job <70573> is submitted to queue .
Last commit on ref '\''f720ff5090d569fdb4a0b11e3f4e6150255cb126'\'': f720ff5090 Disable BP to NetCDF conversion
Note: no value passed for --make-parallel-level. Using the default for this machine: 160
Note: no value passed for --ctest-parallel-level. Using the default for this machine: 4
Test full_debug can use 52 jobs to compile, and 1 jobs for test
Test full_sp_debug can use 52 jobs to compile, and 1 jobs for test
Test release can use 52 jobs to compile, and 1 jobs for test
RUN: { source /etc/profile.d/modules.sh && module purge && module load cmake/3.25.1 git/2.39.1 python/3.10.8 py-netcdf4/1.5.8 gcc/11.3.0 cuda/11.8.0 openmpi netcdf-c netcdf-fortran parallel-netcdf netlib-lapack && export CTEST_PARALLEL_LEVEL=4;  } > /dev/null && env | sort
FROM: /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5416/scream/components/eamxx
Merge of '\''origin/master'\'' not necessary. Current HEAD is already ahead.
Checking baselines directory: /home/projects/e3sm/scream/pr-autotester/master-baselines/weaver
 -> Test full_debug appears to have baselines
 -> Test full_sp_debug appears to have baselines
 -> Test release appears to have baselines
ERROR: Command: '\''git rev-list --left-right --count 2b151e7c14feda1bbc5e4dcb561bb826d48b84fe...a5e6f59de7693a39ff5d44b37c83ec712bece878'\'' failed with error '\''fatal: Invalid symmetric difference expression 2b151e7c14feda1bbc5e4dcb561bb826d48b84fe...a5e6f59de7693a39ff5d44b37c83ec712bece878'\'' from dir '\''/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5416/scream/components/eamxx'\''
Starting analysis on weaver with cmd: cd /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5416/scream/components/eamxx && source /etc/profile.d/modules.sh && module purge && module load cmake/3.25.1 git/2.39.1 python/3.10.8 py-netcdf4/1.5.8 gcc/11.3.0 cuda/11.8.0 openmpi netcdf-c netcdf-fortran parallel-netcdf netlib-lapack && true && bsub -I -q rhel8 -n 4 -gpu num=4 ./scripts/test-all-scream --baseline-dir AUTO $compiler -p -c EKAT_DISABLE_TPL_WARNINGS=ON -i -m weaver
RUN: cd /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5416/scream/components/eamxx && source /etc/profile.d/modules.sh && module purge && module load cmake/3.25.1 git/2.39.1 python/3.10.8 py-netcdf4/1.5.8 gcc/11.3.0 cuda/11.8.0 openmpi netcdf-c netcdf-fortran parallel-netcdf netlib-lapack && true && bsub -I -q rhel8 -n 4 -gpu num=4 ./scripts/test-all-scream --baseline-dir AUTO $compiler -p -c EKAT_DISABLE_TPL_WARNINGS=ON -i -m weaver
FROM: /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5416/scream/components/eamxx
weaver failed'
++ grep -m1 -A 100000 'Build type '
+ errors=
+ SA_FAILURES_DETAILS+=
+ [[ 1 == 0 ]]
+ [[ weaver == \m\a\p\p\y ]]
+ set +x
######################################################
FAILS DETECTED:
  SCREAM STANDALONE TESTING FAILED!

######################################################
Build step 'Execute shell' marked build as failure
Performing Post build task...
Match found for : : True
Logical operation result is TRUE
Running script : #!/bin/bash -le

cd $WORKSPACE/${BUILD_ID}/

./scream/components/eamxx/scripts/jenkins/jenkins_cleanup.sh
[SCREAM_PullRequest_Autotester_Weaver] $ /bin/bash -le /tmp/jenkins14482948035861017281.sh
POST BUILD TASK : SUCCESS
END OF POST BUILD TASK : 0
Sending e-mails to: [email protected]
Finished: FAILURE

@E3SM-Autotester
Copy link
Collaborator

Status Flag 'Pull Request AutoTester' - Testing Jenkins Projects:

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: SCREAM_PullRequest_Autotester_Mappy

  • Build Num: 5043
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA f720ff5
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA a5e6f59
TEST_REPO_ALIAS SCREAM

Build Information

Test Name: SCREAM_PullRequest_Autotester_Weaver

  • Build Num: 5418
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA f720ff5
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA a5e6f59
TEST_REPO_ALIAS SCREAM

Using Repos:

Repo: SCREAM (jayeshkrishna/scream)
  • Branch: jayeshkrishna/diff_iotypes_for_hist_rest
  • SHA: f720ff5
  • Mode: TEST_REPO

Pull Request Author: jayeshkrishna

@E3SM-Autotester
Copy link
Collaborator

Status Flag 'Pull Request AutoTester' - Jenkins Testing: 1 or more Jobs FAILED

Note: Testing will normally be attempted again in approx. 2 Hrs. If a change to the PR source branch occurs, the testing will be attempted again on next available autotester run.

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: SCREAM_PullRequest_Autotester_Mappy

  • Build Num: 5043
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA f720ff5
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA a5e6f59
TEST_REPO_ALIAS SCREAM

Build Information

Test Name: SCREAM_PullRequest_Autotester_Weaver

  • Build Num: 5418
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA f720ff5
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA a5e6f59
TEST_REPO_ALIAS SCREAM
SCREAM_PullRequest_Autotester_Mappy # 5043 FAILED (click to see last 100 lines of console output)

Finished RUN for test ERS_Ln9.ne4_ne4.F2000-SCREAMv1-AQP1.mappy_gnu9.scream-output-preset-2 in 5.419523 seconds (PEND). [COMPLETED 3 of 6]
Finished MODEL_BUILD for test PET_Ln9_P32x2.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1 in 245.413959 seconds (PASS)
Starting RUN for test PET_Ln9_P32x2.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1 with 1 proc on interactive node and 64 procs on compute nodes
Finished RUN for test PET_Ln9_P32x2.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1 in 8.185789 seconds (PEND). [COMPLETED 4 of 6]
Finished MODEL_BUILD for test ERP_D_Lh4.ne4_ne4.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1 in 386.010759 seconds (PASS)
Starting RUN for test ERP_D_Lh4.ne4_ne4.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1 with 1 proc on interactive node and 64 procs on compute nodes
Finished RUN for test ERP_D_Lh4.ne4_ne4.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1 in 1.097420 seconds (PEND). [COMPLETED 5 of 6]
Finished MODEL_BUILD for test ERP_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-4 in 430.060983 seconds (PASS)
Starting RUN for test ERP_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-4 with 1 proc on interactive node and 64 procs on compute nodes
Finished RUN for test ERP_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-4 in 0.849769 seconds (PEND). [COMPLETED 6 of 6]
Waiting for tests to finish
PASS ERP_D_Lh4.ne4_ne4.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1 RUN
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERP_D_Lh4.ne4_ne4.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1.C.20240314_111501_ovjiuk
FAIL ERP_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-4 (phase RUN)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERP_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-4.C.20240314_111501_ovjiuk
PASS ERS_D_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-rad_frequency_2--scream-output-preset-5 RUN
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERS_D_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-rad_frequency_2--scream-output-preset-5.C.20240314_111501_ovjiuk
FAIL ERS_Ln9.ne4_ne4.F2000-SCREAMv1-AQP1.mappy_gnu9.scream-output-preset-2 (phase RUN)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERS_Ln9.ne4_ne4.F2000-SCREAMv1-AQP1.mappy_gnu9.scream-output-preset-2.C.20240314_111501_ovjiuk
DIFF PET_Ln9_P32x2.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1 (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/PET_Ln9_P32x2.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1.C.20240314_111501_ovjiuk
PASS SMS_D_Ln9.ne4_ne4.F2010-SCREAMv1-noAero.mappy_gnu9.scream-output-preset-3 RUN
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/SMS_D_Ln9.ne4_ne4.F2010-SCREAMv1-noAero.mappy_gnu9.scream-output-preset-3.C.20240314_111501_ovjiuk
test-scheduler took 665.9197895526886 seconds'
+ errors='Waiting for tests to finish
PASS ERP_D_Lh4.ne4_ne4.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1 RUN
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERP_D_Lh4.ne4_ne4.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1.C.20240314_111501_ovjiuk
FAIL ERP_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-4 (phase RUN)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERP_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-4.C.20240314_111501_ovjiuk
PASS ERS_D_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-rad_frequency_2--scream-output-preset-5 RUN
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERS_D_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-rad_frequency_2--scream-output-preset-5.C.20240314_111501_ovjiuk
FAIL ERS_Ln9.ne4_ne4.F2000-SCREAMv1-AQP1.mappy_gnu9.scream-output-preset-2 (phase RUN)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERS_Ln9.ne4_ne4.F2000-SCREAMv1-AQP1.mappy_gnu9.scream-output-preset-2.C.20240314_111501_ovjiuk
DIFF PET_Ln9_P32x2.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1 (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/PET_Ln9_P32x2.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1.C.20240314_111501_ovjiuk
PASS SMS_D_Ln9.ne4_ne4.F2010-SCREAMv1-noAero.mappy_gnu9.scream-output-preset-3 RUN
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/SMS_D_Ln9.ne4_ne4.F2010-SCREAMv1-noAero.mappy_gnu9.scream-output-preset-3.C.20240314_111501_ovjiuk
test-scheduler took 665.9197895526886 seconds'
+ V1_FAILURES_DETAILS+='Waiting for tests to finish
PASS ERP_D_Lh4.ne4_ne4.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1 RUN
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERP_D_Lh4.ne4_ne4.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1.C.20240314_111501_ovjiuk
FAIL ERP_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-4 (phase RUN)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERP_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-4.C.20240314_111501_ovjiuk
PASS ERS_D_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-rad_frequency_2--scream-output-preset-5 RUN
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERS_D_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-rad_frequency_2--scream-output-preset-5.C.20240314_111501_ovjiuk
FAIL ERS_Ln9.ne4_ne4.F2000-SCREAMv1-AQP1.mappy_gnu9.scream-output-preset-2 (phase RUN)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERS_Ln9.ne4_ne4.F2000-SCREAMv1-AQP1.mappy_gnu9.scream-output-preset-2.C.20240314_111501_ovjiuk
DIFF PET_Ln9_P32x2.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1 (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/PET_Ln9_P32x2.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1.C.20240314_111501_ovjiuk
PASS SMS_D_Ln9.ne4_ne4.F2010-SCREAMv1-noAero.mappy_gnu9.scream-output-preset-3 RUN
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/SMS_D_Ln9.ne4_ne4.F2010-SCREAMv1-noAero.mappy_gnu9.scream-output-preset-3.C.20240314_111501_ovjiuk
test-scheduler took 665.9197895526886 seconds'
+ set +x
######################################################
FAILS DETECTED:
  SCREAM STANDALONE TESTING FAILED!
Build type full_debug failed at build time. Here's the build log:
Starting analysis on mappy with cmd: cd /home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5043/scream/components/eamxx && module purge && module load sems-archive-env acme-env acme-cmake/3.26.3 sems-archive-gcc/9.2.0 sems-archive-git/2.10.1 acme-openmpi/4.0.7 acme-netcdf/4.7.4/acme && export OMP_PROC_BIND=spread && true &&  ./scripts/test-all-scream --baseline-dir AUTO $compiler -p -c EKAT_DISABLE_TPL_WARNINGS=ON -i -m mappy
RUN: cd /home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5043/scream/components/eamxx && module purge && module load sems-archive-env acme-env acme-cmake/3.26.3 sems-archive-gcc/9.2.0 sems-archive-git/2.10.1 acme-openmpi/4.0.7 acme-netcdf/4.7.4/acme && export OMP_PROC_BIND=spread && true &&  ./scripts/test-all-scream --baseline-dir AUTO $compiler -p -c EKAT_DISABLE_TPL_WARNINGS=ON -i -m mappy
FROM: /home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5043/scream/components/eamxx
mappy failed
  SCREAM V1 TESTING FAILED!
Waiting for tests to finish
PASS ERP_D_Lh4.ne4_ne4.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1 RUN
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERP_D_Lh4.ne4_ne4.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1.C.20240314_111501_ovjiuk
FAIL ERP_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-4 (phase RUN)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERP_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-4.C.20240314_111501_ovjiuk
PASS ERS_D_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-rad_frequency_2--scream-output-preset-5 RUN
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERS_D_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-rad_frequency_2--scream-output-preset-5.C.20240314_111501_ovjiuk
FAIL ERS_Ln9.ne4_ne4.F2000-SCREAMv1-AQP1.mappy_gnu9.scream-output-preset-2 (phase RUN)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERS_Ln9.ne4_ne4.F2000-SCREAMv1-AQP1.mappy_gnu9.scream-output-preset-2.C.20240314_111501_ovjiuk
DIFF PET_Ln9_P32x2.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1 (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/PET_Ln9_P32x2.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1.C.20240314_111501_ovjiuk
PASS SMS_D_Ln9.ne4_ne4.F2010-SCREAMv1-noAero.mappy_gnu9.scream-output-preset-3 RUN
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/SMS_D_Ln9.ne4_ne4.F2010-SCREAMv1-noAero.mappy_gnu9.scream-output-preset-3.C.20240314_111501_ovjiuk
test-scheduler took 665.9197895526886 seconds
######################################################
Build step 'Execute shell' marked build as failure
$ ssh-agent -k
unset SSH_AUTH_SOCK;
unset SSH_AGENT_PID;
echo Agent pid 13086 killed;
[ssh-agent] Stopped.
Performing Post build task...
Match found for : : True
Logical operation result is TRUE
Running script  : #!/bin/bash -le

cd $WORKSPACE/${BUILD_ID}/

./scream/components/eamxx/scripts/jenkins/jenkins_cleanup.sh

We're having issues with some test-launcher job hanging forever. So let's make sure we clean all penting test-launcher jobs

squeue -o"%.7i %u %40j" | grep e3sm-jenkins | grep test-launcher | awk '{ print $1 }' | xargs -r scancel

[SCREAM_PullRequest_Autotester_Mappy] $ /bin/bash -le /tmp/jenkins7185476337332861432.sh
POST BUILD TASK : SUCCESS
END OF POST BUILD TASK : 0
Sending e-mails to: [email protected]
Finished: FAILURE

SCREAM_PullRequest_Autotester_Weaver # 5418 FAILED (click to see last 100 lines of console output)

+++ PYTHON_ROOT=/projects/ppc64le-pwr9-rhel8/utilities/python/3.10.8/gcc/8.3.1/base/qmix2fe
+++ export PYTHON_ROOT
+++ PYTHON_VERSION=3.10.8
+++ export PYTHON_VERSION
+++ _LMFILES_=/projects/ppc64le-pwr9-rhel8/modulefiles/lmod/utilities/linux-rhel8-ppc64le/Core/python/3.10.8.lua
+++ export _LMFILES_
+++ _ModuleTable001_=X01vZHVsZVRhYmxlXyA9IHsKTVR2ZXJzaW9uID0gMywKY19yZWJ1aWxkVGltZSA9IGZhbHNlLApjX3Nob3J0VGltZSA9IGZhbHNlLApkZXB0aFQgPSB7fSwKZmFtaWx5ID0ge30sCm1UID0gewpweXRob24gPSB7CmZuID0gIi9wcm9qZWN0cy9wcGM2NGxlLXB3cjktcmhlbDgvbW9kdWxlZmlsZXMvbG1vZC91dGlsaXRpZXMvbGludXgtcmhlbDgtcHBjNjRsZS9Db3JlL3B5dGhvbi8zLjEwLjgubHVhIiwKZnVsbE5hbWUgPSAicHl0aG9uLzMuMTAuOCIsCmxvYWRPcmRlciA9IDEsCnByb3BUID0ge30sCnN0YWNrRGVwdGggPSAwLApzdGF0dXMgPSAiYWN0aXZlIiwKdXNlck5hbWUgPSAicHl0aG9uLzMuMTAuOCIsCndWID0gIjAwMDAwMDAwMy4wMDAwMDAwMTAuMDAwMDAwMDA4Lip6
+++ export _ModuleTable001_
+++ _ModuleTable002_=ZmluYWwiLAp9LAp9LAptcGF0aEEgPSB7CiIvcHJvamVjdHMvcHBjNjRsZS1wd3I5LXJoZWw4L21vZHVsZWZpbGVzL2xtb2QvY29tcGlsZXJzIiwgIi9wcm9qZWN0cy9wcGM2NGxlLXB3cjktcmhlbDgvbW9kdWxlZmlsZXMvbG1vZC91dGlsaXRpZXMvbGludXgtcmhlbDgtcHBjNjRsZS9Db3JlIiwKfSwKc3lzdGVtQmFzZU1QQVRIID0gIi9wcm9qZWN0cy9wcGM2NGxlLXB3cjktcmhlbDgvbW9kdWxlZmlsZXMvbG1vZC9jb21waWxlcnM6L3Byb2plY3RzL3BwYzY0bGUtcHdyOS1yaGVsOC9tb2R1bGVmaWxlcy9sbW9kL3V0aWxpdGllcy9saW51eC1yaGVsOC1wcGM2NGxlL0NvcmUiLAp9Cg==
+++ export _ModuleTable002_
+++ _ModuleTable_Sz_=2
+++ export _ModuleTable_Sz_
++ SCREAM_MACHINE=weaver
+ [[ 0 == 1 ]]
+ [[ 0 == 1 ]]
+ [[ 0 == 1 ]]
++ whoami
+ [[ e3sm-jenkins == \e\3\s\m\-\j\e\n\k\i\n\s ]]
+ git config --local user.email [email protected]
+ git config --local user.name 'Jenkins Jenkins'
+ declare -i fails=0
+ BASELINES_DIR=AUTO
+ TAS_ARGS='--baseline-dir AUTO $compiler -p -c EKAT_DISABLE_TPL_WARNINGS=ON -i -m $machine'
+ [[ weaver == \p\m\-\g\p\u ]]
+ set +e
+ '[' -n 2754 ']'
+ is_at_run=1
+ SA_FAILURES_DETAILS=
+ '[' 1 -eq 1 ']'
++ ./scripts/gather-all-data './scripts/test-all-scream --baseline-dir AUTO $compiler -p -c EKAT_DISABLE_TPL_WARNINGS=ON -i -m $machine' -l -m weaver
***Forced exclusive execution
<>
<>
+ this_output='Job <70581> is submitted to queue .
Last commit on ref '\''f720ff5090d569fdb4a0b11e3f4e6150255cb126'\'': f720ff5090 Disable BP to NetCDF conversion
Note: no value passed for --make-parallel-level. Using the default for this machine: 160
Note: no value passed for --ctest-parallel-level. Using the default for this machine: 4
Test full_debug can use 52 jobs to compile, and 1 jobs for test
Test full_sp_debug can use 52 jobs to compile, and 1 jobs for test
Test release can use 52 jobs to compile, and 1 jobs for test
RUN: { source /etc/profile.d/modules.sh && module purge && module load cmake/3.25.1 git/2.39.1 python/3.10.8 py-netcdf4/1.5.8 gcc/11.3.0 cuda/11.8.0 openmpi netcdf-c netcdf-fortran parallel-netcdf netlib-lapack && export CTEST_PARALLEL_LEVEL=4;  } > /dev/null && env | sort
FROM: /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5418/scream/components/eamxx
Merge of '\''origin/master'\'' not necessary. Current HEAD is already ahead.
Checking baselines directory: /home/projects/e3sm/scream/pr-autotester/master-baselines/weaver
 -> Test full_debug appears to have baselines
 -> Test full_sp_debug appears to have baselines
 -> Test release appears to have baselines
ERROR: Command: '\''git rev-list --left-right --count 2b151e7c14feda1bbc5e4dcb561bb826d48b84fe...a5e6f59de7693a39ff5d44b37c83ec712bece878'\'' failed with error '\''fatal: Invalid symmetric difference expression 2b151e7c14feda1bbc5e4dcb561bb826d48b84fe...a5e6f59de7693a39ff5d44b37c83ec712bece878'\'' from dir '\''/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5418/scream/components/eamxx'\''
Starting analysis on weaver with cmd: cd /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5418/scream/components/eamxx && source /etc/profile.d/modules.sh && module purge && module load cmake/3.25.1 git/2.39.1 python/3.10.8 py-netcdf4/1.5.8 gcc/11.3.0 cuda/11.8.0 openmpi netcdf-c netcdf-fortran parallel-netcdf netlib-lapack && true && bsub -I -q rhel8 -n 4 -gpu num=4 ./scripts/test-all-scream --baseline-dir AUTO $compiler -p -c EKAT_DISABLE_TPL_WARNINGS=ON -i -m weaver
RUN: cd /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5418/scream/components/eamxx && source /etc/profile.d/modules.sh && module purge && module load cmake/3.25.1 git/2.39.1 python/3.10.8 py-netcdf4/1.5.8 gcc/11.3.0 cuda/11.8.0 openmpi netcdf-c netcdf-fortran parallel-netcdf netlib-lapack && true && bsub -I -q rhel8 -n 4 -gpu num=4 ./scripts/test-all-scream --baseline-dir AUTO $compiler -p -c EKAT_DISABLE_TPL_WARNINGS=ON -i -m weaver
FROM: /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5418/scream/components/eamxx
weaver failed'
+ [[ 1 != 0 ]]
+ fails=0+1
+ sa_fail=1
+ [[ 1 == 1 ]]
++ echo 'Job <70581> is submitted to queue .
Last commit on ref '\''f720ff5090d569fdb4a0b11e3f4e6150255cb126'\'': f720ff5090 Disable BP to NetCDF conversion
Note: no value passed for --make-parallel-level. Using the default for this machine: 160
Note: no value passed for --ctest-parallel-level. Using the default for this machine: 4
Test full_debug can use 52 jobs to compile, and 1 jobs for test
Test full_sp_debug can use 52 jobs to compile, and 1 jobs for test
Test release can use 52 jobs to compile, and 1 jobs for test
RUN: { source /etc/profile.d/modules.sh && module purge && module load cmake/3.25.1 git/2.39.1 python/3.10.8 py-netcdf4/1.5.8 gcc/11.3.0 cuda/11.8.0 openmpi netcdf-c netcdf-fortran parallel-netcdf netlib-lapack && export CTEST_PARALLEL_LEVEL=4;  } > /dev/null && env | sort
FROM: /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5418/scream/components/eamxx
Merge of '\''origin/master'\'' not necessary. Current HEAD is already ahead.
Checking baselines directory: /home/projects/e3sm/scream/pr-autotester/master-baselines/weaver
 -> Test full_debug appears to have baselines
 -> Test full_sp_debug appears to have baselines
 -> Test release appears to have baselines
ERROR: Command: '\''git rev-list --left-right --count 2b151e7c14feda1bbc5e4dcb561bb826d48b84fe...a5e6f59de7693a39ff5d44b37c83ec712bece878'\'' failed with error '\''fatal: Invalid symmetric difference expression 2b151e7c14feda1bbc5e4dcb561bb826d48b84fe...a5e6f59de7693a39ff5d44b37c83ec712bece878'\'' from dir '\''/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5418/scream/components/eamxx'\''
Starting analysis on weaver with cmd: cd /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5418/scream/components/eamxx && source /etc/profile.d/modules.sh && module purge && module load cmake/3.25.1 git/2.39.1 python/3.10.8 py-netcdf4/1.5.8 gcc/11.3.0 cuda/11.8.0 openmpi netcdf-c netcdf-fortran parallel-netcdf netlib-lapack && true && bsub -I -q rhel8 -n 4 -gpu num=4 ./scripts/test-all-scream --baseline-dir AUTO $compiler -p -c EKAT_DISABLE_TPL_WARNINGS=ON -i -m weaver
RUN: cd /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5418/scream/components/eamxx && source /etc/profile.d/modules.sh && module purge && module load cmake/3.25.1 git/2.39.1 python/3.10.8 py-netcdf4/1.5.8 gcc/11.3.0 cuda/11.8.0 openmpi netcdf-c netcdf-fortran parallel-netcdf netlib-lapack && true && bsub -I -q rhel8 -n 4 -gpu num=4 ./scripts/test-all-scream --baseline-dir AUTO $compiler -p -c EKAT_DISABLE_TPL_WARNINGS=ON -i -m weaver
FROM: /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5418/scream/components/eamxx
weaver failed'
++ grep -m1 -A 100000 'Build type '
+ errors=
+ SA_FAILURES_DETAILS+=
+ [[ 1 == 0 ]]
+ [[ weaver == \m\a\p\p\y ]]
+ set +x
######################################################
FAILS DETECTED:
  SCREAM STANDALONE TESTING FAILED!

######################################################
Build step 'Execute shell' marked build as failure
Performing Post build task...
Match found for : : True
Logical operation result is TRUE
Running script : #!/bin/bash -le

cd $WORKSPACE/${BUILD_ID}/

./scream/components/eamxx/scripts/jenkins/jenkins_cleanup.sh
[SCREAM_PullRequest_Autotester_Weaver] $ /bin/bash -le /tmp/jenkins14875997187507389330.sh
POST BUILD TASK : SUCCESS
END OF POST BUILD TASK : 0
Sending e-mails to: [email protected]
Finished: FAILURE

@E3SM-Autotester
Copy link
Collaborator

Status Flag 'Pull Request AutoTester' - Testing Jenkins Projects:

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: SCREAM_PullRequest_Autotester_Mappy

  • Build Num: 5045
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA f720ff5
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA a5e6f59
TEST_REPO_ALIAS SCREAM

Build Information

Test Name: SCREAM_PullRequest_Autotester_Weaver

  • Build Num: 5420
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA f720ff5
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA a5e6f59
TEST_REPO_ALIAS SCREAM

Using Repos:

Repo: SCREAM (jayeshkrishna/scream)
  • Branch: jayeshkrishna/diff_iotypes_for_hist_rest
  • SHA: f720ff5
  • Mode: TEST_REPO

Pull Request Author: jayeshkrishna

@E3SM-Autotester
Copy link
Collaborator

Status Flag 'Pull Request AutoTester' - Jenkins Testing: 1 or more Jobs FAILED

Note: Testing will normally be attempted again in approx. 2 Hrs. If a change to the PR source branch occurs, the testing will be attempted again on next available autotester run.

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: SCREAM_PullRequest_Autotester_Mappy

  • Build Num: 5045
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA f720ff5
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA a5e6f59
TEST_REPO_ALIAS SCREAM

Build Information

Test Name: SCREAM_PullRequest_Autotester_Weaver

  • Build Num: 5420
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA f720ff5
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA a5e6f59
TEST_REPO_ALIAS SCREAM
SCREAM_PullRequest_Autotester_Mappy # 5045 FAILED (click to see last 100 lines of console output)

 1180 |           cospOUT%atlid_cfad_sr(ij:ik,1:SR_BINS,1:Nlvgrid) => out1D_1
      |          1
Warning: Pointer at (1) in pointer assignment might outlive the pointer target [-Wtarget-lifetime]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5045/scream/components/eam/src/physics/cosp2/local/cosp.F90:1184:10:

1184 | cospOUT%atlid_lidarcld(ij:ik,1:Nlvgrid) => out1D_2
| 1
Warning: Pointer at (1) in pointer assignment might outlive the pointer target [-Wtarget-lifetime]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5045/scream/components/eam/src/physics/cosp2/local/cosp.F90:1188:10:

1188 | cospOUT%atlid_cldlayer(ij:ik,1:LIDAR_NCAT) => out1D_3
| 1
Warning: Pointer at (1) in pointer assignment might outlive the pointer target [-Wtarget-lifetime]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5045/scream/components/eam/src/physics/cosp2/local/cosp.F90:1231:10:

1231 | cospOUT%cloudsat_cfad_ze(ij:ik,1:cloudsat_DBZE_BINS,1:Nlvgrid) => out1D_1
| 1
Warning: Pointer at (1) in pointer assignment might outlive the pointer target [-Wtarget-lifetime]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5045/scream/components/eam/src/physics/cosp2/local/cosp.F90:1236:10:

1236 | cospOUT%cloudsat_pia(ij:ik) => out1D_2
| 1
Warning: Pointer at (1) in pointer assignment might outlive the pointer target [-Wtarget-lifetime]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5045/scream/components/eam/src/physics/cosp2/local/cosp.F90:1240:10:

1240 | cospOUT%cloudsat_precip_cover(ij:ik,1:nCloudsatPrecipClass) => out1D_3
| 1
Warning: Pointer at (1) in pointer assignment might outlive the pointer target [-Wtarget-lifetime]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5045/scream/components/eam/src/physics/cosp2/local/cosp.F90:1731:81:

1731 | Latlid_column, LgrLidar532_subcolumn, LgrLidar532_column, Lrttov_subcolumn, &
| 1
Warning: Unused dummy argument lrttov_subcolumn at (1) [-Wunused-dummy-argument]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5045/scream/components/eam/src/physics/cosp2/local/cosp.F90:1771:45:

1771 | character(len=100) :: parasolErrorMessage
| 1
Warning: Unused variable parasolerrormessage declared at (1) [-Wunused-variable]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5045/scream/components/eam/src/physics/cosp2/local/cosp.F90:297:76:

297 | function COSP_SIMULATOR(cospIN,cospgridIN,cospOUT,start_idx,stop_idx,debug)
| 1
Warning: Unused dummy argument debug at (1) [-Wunused-dummy-argument]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5045/scream/components/eam/src/physics/cosp2/local/cosp.F90:374:49:

374 | betamol_in,betamoli,pnormi,ze_toti,ze_noni
| 1
Warning: Unused variable ze_noni declared at (1) [-Wunused-variable]
[ 12%] Linking CXX static library librrtmgp.a
[ 12%] Built target rrtmgp
[ 12%] Linking Fortran static library libcsm_share.a
[ 12%] Built target csm_share
[ 13%] Linking CXX static library libyaml-cppd.a
[ 13%] Built target yaml-cpp
[ 13%] Linking Fortran static library libcosp.a
[ 13%] Built target cosp
[ 13%] Linking CXX static library libkokkoscore.a
[ 13%] Built target kokkoscore
[ 13%] Linking CXX static library libspdlogd.a
[ 13%] Built target spdlog
gmake: *** [all] Error 2
SCREAM V1 TESTING FAILED!
Waiting for tests to finish
PASS ERP_D_Lh4.ne4_ne4.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1 RUN
Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERP_D_Lh4.ne4_ne4.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1.C.20240314_151028_rwcl78
FAIL ERP_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-4 (phase RUN)
Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERP_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-4.C.20240314_151028_rwcl78
PASS ERS_D_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-rad_frequency_2--scream-output-preset-5 RUN
Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERS_D_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-rad_frequency_2--scream-output-preset-5.C.20240314_151028_rwcl78
FAIL ERS_Ln9.ne4_ne4.F2000-SCREAMv1-AQP1.mappy_gnu9.scream-output-preset-2 (phase RUN)
Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERS_Ln9.ne4_ne4.F2000-SCREAMv1-AQP1.mappy_gnu9.scream-output-preset-2.C.20240314_151028_rwcl78
DIFF PET_Ln9_P32x2.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1 (phase BASELINE)
Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/PET_Ln9_P32x2.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1.C.20240314_151028_rwcl78
PASS SMS_D_Ln9.ne4_ne4.F2010-SCREAMv1-noAero.mappy_gnu9.scream-output-preset-3 RUN
Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/SMS_D_Ln9.ne4_ne4.F2010-SCREAMv1-noAero.mappy_gnu9.scream-output-preset-3.C.20240314_151028_rwcl78
test-scheduler took 671.1214566230774 seconds
######################################################
Build step 'Execute shell' marked build as failure
$ ssh-agent -k
unset SSH_AUTH_SOCK;
unset SSH_AGENT_PID;
echo Agent pid 125879 killed;
[ssh-agent] Stopped.
Performing Post build task...
Match found for : : True
Logical operation result is TRUE
Running script : #!/bin/bash -le

cd $WORKSPACE/${BUILD_ID}/

./scream/components/eamxx/scripts/jenkins/jenkins_cleanup.sh

We're having issues with some test-launcher job hanging forever. So let's make sure we clean all penting test-launcher jobs

squeue -o"%.7i %u %40j" | grep e3sm-jenkins | grep test-launcher | awk '{ print $1 }' | xargs -r scancel

[SCREAM_PullRequest_Autotester_Mappy] $ /bin/bash -le /tmp/jenkins415227756319935728.sh
POST BUILD TASK : SUCCESS
END OF POST BUILD TASK : 0
Sending e-mails to: [email protected]
Finished: FAILURE

SCREAM_PullRequest_Autotester_Weaver # 5420 FAILED (click to see last 100 lines of console output)

      |                                                                  ^
Warning: 'misrin.nlevels' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5420/scream/components/eam/src/physics/cosp2/local/cosp.F90:303:31:

303 | type(misr_IN) :: misrIN ! Input to the LIDAR simulator
| ^
note: 'misrin.nlevels' was declared here
/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5420/scream/components/eam/src/physics/cosp2/local/cosp.F90:775:66:

775 | misr_dist_model_layertops,misr_boxztop)
| ^
Warning: 'misrin.ncolumns' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5420/scream/components/eam/src/physics/cosp2/local/cosp.F90:303:31:

303 | type(misr_IN) :: misrIN ! Input to the LIDAR simulator
| ^
note: 'misrin.ncolumns' was declared here
/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5420/scream/components/eam/src/physics/cosp2/local/cosp.F90:753:67:

753 | isccp_boxttop(:,:),isccp_meantbclr(:))
| ^
Warning: 'isccpin.emsfc_lw' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5420/scream/components/eam/src/physics/cosp2/local/cosp.F90:302:32:

302 | type(isccp_IN) :: isccpIN ! Input to the ISCCP simulator
| ^
note: 'isccpin.emsfc_lw' was declared here
/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5420/scream/components/eam/src/physics/cosp2/local/cosp.F90:753:67:

753 | isccp_boxttop(:,:),isccp_meantbclr(:))
| ^
Warning: 'isccpin.nlevels' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5420/scream/components/eam/src/physics/cosp2/local/cosp.F90:302:32:

302 | type(isccp_IN) :: isccpIN ! Input to the ISCCP simulator
| ^
note: 'isccpin.nlevels' was declared here
/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5420/scream/components/eam/src/physics/cosp2/local/cosp.F90:753:67:

753 | isccp_boxttop(:,:),isccp_meantbclr(:))
| ^
Warning: 'isccpin.ncolumns' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5420/scream/components/eam/src/physics/cosp2/local/cosp.F90:302:32:

302 | type(isccp_IN) :: isccpIN ! Input to the ISCCP simulator
| ^
note: 'isccpin.ncolumns' was declared here
[ 15%] Linking Fortran static library libcsm_share.a
[ 15%] Built target csm_share
[ 15%] Linking Fortran static library libcosp.a
[ 15%] Built target cosp
[ 15%] Linking CXX static library libkokkoscore.a
[ 15%] Built target kokkoscore
/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5420/scream/externals/YAKL/src/YAKL_Gator.h: In member function 'void yakl::Gator::init(std::function<void*(long unsigned int)>, std::function<void(void*)>, std::function<void(void*, long unsigned int)>, size_t, size_t, size_t, std::string, std::string, std::string)':
/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5420/scream/externals/YAKL/src/YAKL_Gator.h:111:6: note: the layout of aggregates containing vectors with 8-byte alignment has changed in GCC 5
111 | void init(std::function<void ( size_t )> mymalloc = [] (size_t bytes) -> void * { return ::malloc(bytes); },
| ^~~~
nvcc_internal_extended_lambda_implementation: In static member function 'static void
__nv_hdl_wrapper_t<false, false, Tag, OpFuncR(OpFuncArgs ...), F1, F2, F3, F4, F5>::manager::do_copy(void*) [with Lambda = reorder_123x321_kernel(int, int, int, const real3d&, const real3d&)::<lambda(int, int, int, int, int)>; Tag = __nv_dl_tag<void ()(int, int, int, const yakl::Array<double, 3, 1, 2>&, const yakl::Array<double, 3, 1, 2>&), reorder_123x321_kernel, 1>; OpFuncR = void; OpFuncArgs = {int, int, int, int, int}; F1 = const int; F2 = int; F3 = int; F4 = const yakl::Array<double, 3, 1, 2>; F5 = const yakl::Array<double, 3, 1, 2>]':
nvcc_internal_extended_lambda_implementation:703:19: note: the layout of aggregates containing vectors with 8-byte alignment has changed in GCC 5
nvcc_internal_extended_lambda_implementation: In static member function 'static void
__nv_hdl_wrapper_t<false, false, Tag, OpFuncR(OpFuncArgs ...), F1, F2, F3>::manager::do_copy(void*) [with Lambda = sum_broadband(int, int, int, const real3d&, const real2d&)::<lambda(int, int)>; Tag = __nv_dl_tag<void ()(int, int, int, const yakl::Array<double, 3, 1, 2>&, const yakl::Array<double, 2, 1, 2>&), sum_broadband, 1>; OpFuncR = void; OpFuncArgs = {int, int}; F1 = int; F2 = const yakl::Array<double, 3, 1, 2>; F3 = const yakl::Array<double, 2, 1, 2>]':
nvcc_internal_extended_lambda_implementation:449:19: note: the layout of aggregates containing vectors with 8-byte alignment has changed in GCC 5
nvcc_internal_extended_lambda_implementation: In static member function 'static void
__nv_hdl_wrapper_t<false, false, Tag, OpFuncR(OpFuncArgs ...), F1, F2, F3>::manager::do_copy(void*) [with Lambda = sum_byband(int, int, int, int, const int2d&, const real3d&, real3d&)::<lambda(int, int, int)>; Tag = __nv_dl_tag<void ()(int, int, int, int, const yakl::Array<int, 2, 1, 2>&, const yakl::Array<double, 3, 1, 2>&, yakl::Array<double, 3, 1, 2>&), sum_byband, 1>; OpFuncR = void; OpFuncArgs = {int, int, int}; F1 = const yakl::Array<int, 2, 1, 2>; F2 = const yakl::Array<double, 3, 1, 2>; F3 = yakl::Array<double, 3, 1, 2>]':
nvcc_internal_extended_lambda_implementation:449:19: note: the layout of aggregates containing vectors with 8-byte alignment has changed in GCC 5
[ 16%] Linking CUDA device code CMakeFiles/yakl_fortran_interface.dir/cmake_device_link.o
[ 16%] Linking CXX static library libyakl_fortran_interface.a
nvcc_internal_extended_lambda_implementation: In static member function 'static void
__nv_hdl_wrapper_t<false, false, Tag, OpFuncR(OpFuncArgs ...), F1, F2, F3>::manager::do_copy(void*) [with Lambda = expand_and_transpose(const OpticalProps&, const real2d&, const real2d&)::<lambda(int, int)>; Tag = __nv_dl_tag<void ()(const OpticalProps&, const yakl::Array<double, 2, 1, 2>&, const yakl::Array<double, 2, 1, 2>&), expand_and_transpose, 1>; OpFuncR = void; OpFuncArgs = {int, int}; F1 = yakl::Array<int, 2, 1, 2>; F2 = const yakl::Array<double, 2, 1, 2>; F3 = const yakl::Array<double, 2, 1, 2>]':
nvcc_internal_extended_lambda_implementation:565:19: note: the layout of aggregates containing vectors with 8-byte alignment has changed in GCC 5
nvcc_internal_extended_lambda_implementation: In static member function 'static void
__nv_hdl_wrapper_t<false, false, Tag, OpFuncR(OpFuncArgs ...), F1, F2, F3, F4, F5, F6, F7>::manager::do_copy(void*) [with Lambda = compute_Planck_source(int, int, int, int, int, int, int, int, int, const real2d&, const real2d&, const real1d&, int, const real6d&, const int4d&, const bool2d&, const int2d&, const int2d&, const int1d&, const int2d&, const real4d&, real, real, const real2d&, const int2d&, const real2d&, const real3d&, const real3d&, const real3d&)::<lambda(int, int)>; Tag = __nv_dl_tag<void ()(int, int, int, int, int, int, int, int, int, const yakl::Array<double, 2, 1, 2>&, const yakl::Array<double, 2, 1, 2>&, const yakl::Array<double, 1, 1, 2>&, int, const yakl::Array<double, 6, 1, 2>&, const yakl::Array<int, 4, 1, 2>&, const yakl::Array<bool, 2, 1, 2>&, const yakl::Array<int, 2, 1, 2>&, const yakl::Array<int, 2, 1, 2>&, const yakl::Array<int, 1, 1, 2>&, const yakl::Array<int, 2, 1, 2>&, const yakl::Array<double, 4, 1, 2>&, double, double, const yakl::Array<double, 2, 1, 2>&, const yakl::Array<int, 2, 1, 2>&, const yakl::Array<double, 2, 1, 2>&, const yakl::Array<double, 3, 1, 2>&, const yakl::Array<double, 3, 1, 2>&, const yakl::Array<double, 3, 1, 2>&), compute_Planck_source, 4>; OpFuncR = void; OpFuncArgs = {int, int}; F1 = const yakl::Array<double, 2, 1, 2>; F2 = double; F3 = double; F4 = const yakl::Array<double, 2, 1, 2>; F5 = yakl::Array<double, 3, 1, 2>; F6 = int; F7 = int]':
nvcc_internal_extended_lambda_implementation:973:19: note: the layout of aggregates containing vectors with 8-byte alignment has changed in GCC 5
[ 16%] Built target yakl_fortran_interface
nvcc_internal_extended_lambda_implementation: In static member function 'static void
__nv_hdl_wrapper_t<false, false, Tag, OpFuncR(OpFuncArgs ...), F1, F2, F3, F4>::manager::do_copy(void*) [with Lambda = inc_1scalar_by_1scalar_bybnd(int, int, int, const real3d&, const real3d&, int, const int2d&)::<lambda(int, int, int)>; Tag = __nv_dl_tag<void ()(int, int, int, const yakl::Array<double, 3, 1, 2>&, const yakl::Array<double, 3, 1, 2>&, int, const yakl::Array<int, 2, 1, 2>&), inc_1scalar_by_1scalar_bybnd, 1>; OpFuncR = void; OpFuncArgs = {int, int, int}; F1 = int; F2 = const yakl::Array<int, 2, 1, 2>; F3 = const yakl::Array<double, 3, 1, 2>; F4 = const yakl::Array<double, 3, 1, 2>]':
nvcc_internal_extended_lambda_implementation:574:19: note: the layout of aggregates containing vectors with 8-byte alignment has changed in GCC 5
nvcc_internal_extended_lambda_implementation: In static member function 'static void
__nv_hdl_wrapper_t<false, false, Tag, OpFuncR(OpFuncArgs ...), F1, F2>::manager::do_copy(void*) [with Lambda = apply_BC(int, int, int, bool, const real2d&, const real3d&)::<lambda(int, int)>; Tag = __nv_dl_tag<void (*)(int, int, int, bool, const yakl::Array<double, 2, 1, 2>&, const yakl::Array<double, 3, 1, 2>&), apply_BC, 1>; OpFuncR = void; OpFuncArgs = {int, int}; F1 = const yakl::Array<double, 3, 1, 2>; F2 = const yakl::Array<double, 2, 1, 2>]':
nvcc_internal_extended_lambda_implementation:444:19: note: the layout of aggregates containing vectors with 8-byte alignment has changed in GCC 5
[ 16%] Linking CUDA device code CMakeFiles/rrtmgp.dir/cmake_device_link.o
[ 16%] Linking CXX static library librrtmgp.a
[ 16%] Built target rrtmgp
gmake: *** [Makefile:166: all] Error 2

Error(s) occurred during test phase
OVERALL STATUS: FAIL
Starting analysis on weaver with cmd: cd /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5420/scream/components/eamxx && source /etc/profile.d/modules.sh && module purge && module load cmake/3.25.1 git/2.39.1 python/3.10.8 py-netcdf4/1.5.8 gcc/11.3.0 cuda/11.8.0 openmpi netcdf-c netcdf-fortran parallel-netcdf netlib-lapack && true && bsub -I -q rhel8 -n 4 -gpu num=4 ./scripts/test-all-scream --baseline-dir AUTO $compiler -p -c EKAT_DISABLE_TPL_WARNINGS=ON -i -m weaver
RUN: cd /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5420/scream/components/eamxx && source /etc/profile.d/modules.sh && module purge && module load cmake/3.25.1 git/2.39.1 python/3.10.8 py-netcdf4/1.5.8 gcc/11.3.0 cuda/11.8.0 openmpi netcdf-c netcdf-fortran parallel-netcdf netlib-lapack && true && bsub -I -q rhel8 -n 4 -gpu num=4 ./scripts/test-all-scream --baseline-dir AUTO $compiler -p -c EKAT_DISABLE_TPL_WARNINGS=ON -i -m weaver
FROM: /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5420/scream/components/eamxx
weaver failed
######################################################
Build step 'Execute shell' marked build as failure
Performing Post build task...
Match found for : : True
Logical operation result is TRUE
Running script : #!/bin/bash -le

cd $WORKSPACE/${BUILD_ID}/

./scream/components/eamxx/scripts/jenkins/jenkins_cleanup.sh
[SCREAM_PullRequest_Autotester_Weaver] $ /bin/bash -le /tmp/jenkins9829435191853055261.sh
POST BUILD TASK : SUCCESS
END OF POST BUILD TASK : 0
Sending e-mails to: [email protected]
Finished: FAILURE

@E3SM-Autotester
Copy link
Collaborator

Status Flag 'Pull Request AutoTester' - Testing Jenkins Projects:

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: SCREAM_PullRequest_Autotester_Mappy

  • Build Num: 5075
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA 8089645
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA a5e6f59
TEST_REPO_ALIAS SCREAM

Build Information

Test Name: SCREAM_PullRequest_Autotester_Weaver

  • Build Num: 5444
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA 8089645
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA a5e6f59
TEST_REPO_ALIAS SCREAM

Using Repos:

Repo: SCREAM (jayeshkrishna/scream)
  • Branch: jayeshkrishna/diff_iotypes_for_hist_rest
  • SHA: 8089645
  • Mode: TEST_REPO

Pull Request Author: jayeshkrishna

@E3SM-Autotester
Copy link
Collaborator

Status Flag 'Pull Request AutoTester' - Jenkins Testing: 1 or more Jobs FAILED

Note: Testing will normally be attempted again in approx. 2 Hrs. If a change to the PR source branch occurs, the testing will be attempted again on next available autotester run.

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: SCREAM_PullRequest_Autotester_Mappy

  • Build Num: 5075
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA 8089645
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA a5e6f59
TEST_REPO_ALIAS SCREAM

Build Information

Test Name: SCREAM_PullRequest_Autotester_Weaver

  • Build Num: 5444
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA 8089645
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA a5e6f59
TEST_REPO_ALIAS SCREAM
SCREAM_PullRequest_Autotester_Mappy # 5075 FAILED (click to see last 100 lines of console output)

/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5075/scream/components/eam/src/physics/cosp2/local/cosp.F90:1180:10:

1180 | cospOUT%atlid_cfad_sr(ij:ik,1:SR_BINS,1:Nlvgrid) => out1D_1
| 1
Warning: Pointer at (1) in pointer assignment might outlive the pointer target [-Wtarget-lifetime]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5075/scream/components/eam/src/physics/cosp2/local/cosp.F90:1184:10:

1184 | cospOUT%atlid_lidarcld(ij:ik,1:Nlvgrid) => out1D_2
| 1
Warning: Pointer at (1) in pointer assignment might outlive the pointer target [-Wtarget-lifetime]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5075/scream/components/eam/src/physics/cosp2/local/cosp.F90:1188:10:

1188 | cospOUT%atlid_cldlayer(ij:ik,1:LIDAR_NCAT) => out1D_3
| 1
Warning: Pointer at (1) in pointer assignment might outlive the pointer target [-Wtarget-lifetime]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5075/scream/components/eam/src/physics/cosp2/local/cosp.F90:1231:10:

1231 | cospOUT%cloudsat_cfad_ze(ij:ik,1:cloudsat_DBZE_BINS,1:Nlvgrid) => out1D_1
| 1
Warning: Pointer at (1) in pointer assignment might outlive the pointer target [-Wtarget-lifetime]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5075/scream/components/eam/src/physics/cosp2/local/cosp.F90:1236:10:

1236 | cospOUT%cloudsat_pia(ij:ik) => out1D_2
| 1
Warning: Pointer at (1) in pointer assignment might outlive the pointer target [-Wtarget-lifetime]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5075/scream/components/eam/src/physics/cosp2/local/cosp.F90:1240:10:

1240 | cospOUT%cloudsat_precip_cover(ij:ik,1:nCloudsatPrecipClass) => out1D_3
| 1
Warning: Pointer at (1) in pointer assignment might outlive the pointer target [-Wtarget-lifetime]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5075/scream/components/eam/src/physics/cosp2/local/cosp.F90:1731:81:

1731 | Latlid_column, LgrLidar532_subcolumn, LgrLidar532_column, Lrttov_subcolumn, &
| 1
Warning: Unused dummy argument lrttov_subcolumn at (1) [-Wunused-dummy-argument]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5075/scream/components/eam/src/physics/cosp2/local/cosp.F90:1771:45:

1771 | character(len=100) :: parasolErrorMessage
| 1
Warning: Unused variable parasolerrormessage declared at (1) [-Wunused-variable]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5075/scream/components/eam/src/physics/cosp2/local/cosp.F90:297:76:

297 | function COSP_SIMULATOR(cospIN,cospgridIN,cospOUT,start_idx,stop_idx,debug)
| 1
Warning: Unused dummy argument debug at (1) [-Wunused-dummy-argument]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5075/scream/components/eam/src/physics/cosp2/local/cosp.F90:374:49:

374 | betamol_in,betamoli,pnormi,ze_toti,ze_noni
| 1
Warning: Unused variable ze_noni declared at (1) [-Wunused-variable]
[ 11%] Linking Fortran static library libcsm_share.a
[ 11%] Built target csm_share
[ 12%] Linking CXX static library libyaml-cppd.a
[ 12%] Built target yaml-cpp
[ 12%] Linking Fortran static library libcosp.a
[ 12%] Built target cosp
[ 12%] Linking CXX static library libkokkoscore.a
[ 12%] Built target kokkoscore
[ 12%] Linking CXX static library libspdlogd.a
[ 12%] Built target spdlog
gmake: *** [all] Error 2
SCREAM V1 TESTING FAILED!
Waiting for tests to finish
PASS ERP_D_Lh4.ne4_ne4.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1 RUN
Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERP_D_Lh4.ne4_ne4.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1.C.20240320_122953_uw1hyb
FAIL ERP_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-4 (phase RUN)
Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERP_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-4.C.20240320_122953_uw1hyb
PASS ERS_D_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-rad_frequency_2--scream-output-preset-5 RUN
Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERS_D_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-rad_frequency_2--scream-output-preset-5.C.20240320_122953_uw1hyb
FAIL ERS_Ln9.ne4_ne4.F2000-SCREAMv1-AQP1.mappy_gnu9.scream-output-preset-2 (phase RUN)
Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERS_Ln9.ne4_ne4.F2000-SCREAMv1-AQP1.mappy_gnu9.scream-output-preset-2.C.20240320_122953_uw1hyb
DIFF PET_Ln9_P32x2.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1 (phase BASELINE)
Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/PET_Ln9_P32x2.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1.C.20240320_122953_uw1hyb
PASS SMS_D_Ln9.ne4_ne4.F2010-SCREAMv1-noAero.mappy_gnu9.scream-output-preset-3 RUN
Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/SMS_D_Ln9.ne4_ne4.F2010-SCREAMv1-noAero.mappy_gnu9.scream-output-preset-3.C.20240320_122953_uw1hyb
test-scheduler took 679.3314616680145 seconds
######################################################
Build step 'Execute shell' marked build as failure
$ ssh-agent -k
unset SSH_AUTH_SOCK;
unset SSH_AGENT_PID;
echo Agent pid 57706 killed;
[ssh-agent] Stopped.
Performing Post build task...
Match found for : : True
Logical operation result is TRUE
Running script : #!/bin/bash -le

cd $WORKSPACE/${BUILD_ID}/

./scream/components/eamxx/scripts/jenkins/jenkins_cleanup.sh

We're having issues with some test-launcher job hanging forever. So let's make sure we clean all penting test-launcher jobs

squeue -o"%.7i %u %40j" | grep e3sm-jenkins | grep test-launcher | awk '{ print $1 }' | xargs -r scancel

[SCREAM_PullRequest_Autotester_Mappy] $ /bin/bash -le /tmp/jenkins11321332341867312707.sh
POST BUILD TASK : SUCCESS
END OF POST BUILD TASK : 0
Sending e-mails to: [email protected]
Finished: FAILURE

SCREAM_PullRequest_Autotester_Weaver # 5444 FAILED (click to see last 100 lines of console output)

      |                                                                  ^
Warning: 'misrin.nlevels' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5444/scream/components/eam/src/physics/cosp2/local/cosp.F90:303:31:

303 | type(misr_IN) :: misrIN ! Input to the LIDAR simulator
| ^
note: 'misrin.nlevels' was declared here
/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5444/scream/components/eam/src/physics/cosp2/local/cosp.F90:775:66:

775 | misr_dist_model_layertops,misr_boxztop)
| ^
Warning: 'misrin.ncolumns' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5444/scream/components/eam/src/physics/cosp2/local/cosp.F90:303:31:

303 | type(misr_IN) :: misrIN ! Input to the LIDAR simulator
| ^
note: 'misrin.ncolumns' was declared here
/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5444/scream/components/eam/src/physics/cosp2/local/cosp.F90:753:67:

753 | isccp_boxttop(:,:),isccp_meantbclr(:))
| ^
Warning: 'isccpin.emsfc_lw' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5444/scream/components/eam/src/physics/cosp2/local/cosp.F90:302:32:

302 | type(isccp_IN) :: isccpIN ! Input to the ISCCP simulator
| ^
note: 'isccpin.emsfc_lw' was declared here
/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5444/scream/components/eam/src/physics/cosp2/local/cosp.F90:753:67:

753 | isccp_boxttop(:,:),isccp_meantbclr(:))
| ^
Warning: 'isccpin.nlevels' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5444/scream/components/eam/src/physics/cosp2/local/cosp.F90:302:32:

302 | type(isccp_IN) :: isccpIN ! Input to the ISCCP simulator
| ^
note: 'isccpin.nlevels' was declared here
/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5444/scream/components/eam/src/physics/cosp2/local/cosp.F90:753:67:

753 | isccp_boxttop(:,:),isccp_meantbclr(:))
| ^
Warning: 'isccpin.ncolumns' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5444/scream/components/eam/src/physics/cosp2/local/cosp.F90:302:32:

302 | type(isccp_IN) :: isccpIN ! Input to the ISCCP simulator
| ^
note: 'isccpin.ncolumns' was declared here
[ 16%] Linking CXX static library libkokkoscore.a
[ 16%] Built target kokkoscore
[ 16%] Linking Fortran static library libcosp.a
[ 16%] Built target cosp
/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5444/scream/externals/YAKL/src/YAKL_Gator.h: In member function 'void yakl::Gator::init(std::function<void*(long unsigned int)>, std::function<void(void*)>, std::function<void(void*, long unsigned int)>, size_t, size_t, size_t, std::string, std::string, std::string)':
/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5444/scream/externals/YAKL/src/YAKL_Gator.h:111:6: note: the layout of aggregates containing vectors with 8-byte alignment has changed in GCC 5
111 | void init(std::function<void ( size_t )> mymalloc = [] (size_t bytes) -> void * { return ::malloc(bytes); },
| ^~~~
nvcc_internal_extended_lambda_implementation: In static member function 'static void
__nv_hdl_wrapper_t<false, false, Tag, OpFuncR(OpFuncArgs ...), F1, F2, F3, F4, F5>::manager::do_copy(void*) [with Lambda = reorder_123x321_kernel(int, int, int, const real3d&, const real3d&)::<lambda(int, int, int, int, int)>; Tag = __nv_dl_tag<void ()(int, int, int, const yakl::Array<double, 3, 1, 2>&, const yakl::Array<double, 3, 1, 2>&), reorder_123x321_kernel, 1>; OpFuncR = void; OpFuncArgs = {int, int, int, int, int}; F1 = const int; F2 = int; F3 = int; F4 = const yakl::Array<double, 3, 1, 2>; F5 = const yakl::Array<double, 3, 1, 2>]':
nvcc_internal_extended_lambda_implementation:703:19: note: the layout of aggregates containing vectors with 8-byte alignment has changed in GCC 5
nvcc_internal_extended_lambda_implementation: In static member function 'static void
__nv_hdl_wrapper_t<false, false, Tag, OpFuncR(OpFuncArgs ...), F1, F2, F3>::manager::do_copy(void*) [with Lambda = sum_byband(int, int, int, int, const int2d&, const real3d&, real3d&)::<lambda(int, int, int)>; Tag = __nv_dl_tag<void ()(int, int, int, int, const yakl::Array<int, 2, 1, 2>&, const yakl::Array<double, 3, 1, 2>&, yakl::Array<double, 3, 1, 2>&), sum_byband, 1>; OpFuncR = void; OpFuncArgs = {int, int, int}; F1 = const yakl::Array<int, 2, 1, 2>; F2 = const yakl::Array<double, 3, 1, 2>; F3 = yakl::Array<double, 3, 1, 2>]':
nvcc_internal_extended_lambda_implementation:449:19: note: the layout of aggregates containing vectors with 8-byte alignment has changed in GCC 5
nvcc_internal_extended_lambda_implementation: In static member function 'static void
__nv_hdl_wrapper_t<false, false, Tag, OpFuncR(OpFuncArgs ...), F1, F2, F3>::manager::do_copy(void*) [with Lambda = sum_broadband(int, int, int, const real3d&, const real2d&)::<lambda(int, int)>; Tag = __nv_dl_tag<void ()(int, int, int, const yakl::Array<double, 3, 1, 2>&, const yakl::Array<double, 2, 1, 2>&), sum_broadband, 1>; OpFuncR = void; OpFuncArgs = {int, int}; F1 = int; F2 = const yakl::Array<double, 3, 1, 2>; F3 = const yakl::Array<double, 2, 1, 2>]':
nvcc_internal_extended_lambda_implementation:449:19: note: the layout of aggregates containing vectors with 8-byte alignment has changed in GCC 5
[ 17%] Linking CUDA device code CMakeFiles/yakl_fortran_interface.dir/cmake_device_link.o
[ 17%] Linking CXX static library libyakl_fortran_interface.a
[ 17%] Built target yakl_fortran_interface
nvcc_internal_extended_lambda_implementation: In static member function 'static void
__nv_hdl_wrapper_t<false, false, Tag, OpFuncR(OpFuncArgs ...), F1, F2, F3>::manager::do_copy(void*) [with Lambda = expand_and_transpose(const OpticalProps&, const real2d&, const real2d&)::<lambda(int, int)>; Tag = __nv_dl_tag<void ()(const OpticalProps&, const yakl::Array<double, 2, 1, 2>&, const yakl::Array<double, 2, 1, 2>&), expand_and_transpose, 1>; OpFuncR = void; OpFuncArgs = {int, int}; F1 = yakl::Array<int, 2, 1, 2>; F2 = const yakl::Array<double, 2, 1, 2>; F3 = const yakl::Array<double, 2, 1, 2>]':
nvcc_internal_extended_lambda_implementation:565:19: note: the layout of aggregates containing vectors with 8-byte alignment has changed in GCC 5
[ 17%] Linking Fortran static library libcsm_share.a
[ 17%] Built target csm_share
nvcc_internal_extended_lambda_implementation: In static member function 'static void
__nv_hdl_wrapper_t<false, false, Tag, OpFuncR(OpFuncArgs ...), F1, F2, F3, F4, F5, F6, F7>::manager::do_copy(void*) [with Lambda = compute_Planck_source(int, int, int, int, int, int, int, int, int, const real2d&, const real2d&, const real1d&, int, const real6d&, const int4d&, const bool2d&, const int2d&, const int2d&, const int1d&, const int2d&, const real4d&, real, real, const real2d&, const int2d&, const real2d&, const real3d&, const real3d&, const real3d&)::<lambda(int, int)>; Tag = __nv_dl_tag<void ()(int, int, int, int, int, int, int, int, int, const yakl::Array<double, 2, 1, 2>&, const yakl::Array<double, 2, 1, 2>&, const yakl::Array<double, 1, 1, 2>&, int, const yakl::Array<double, 6, 1, 2>&, const yakl::Array<int, 4, 1, 2>&, const yakl::Array<bool, 2, 1, 2>&, const yakl::Array<int, 2, 1, 2>&, const yakl::Array<int, 2, 1, 2>&, const yakl::Array<int, 1, 1, 2>&, const yakl::Array<int, 2, 1, 2>&, const yakl::Array<double, 4, 1, 2>&, double, double, const yakl::Array<double, 2, 1, 2>&, const yakl::Array<int, 2, 1, 2>&, const yakl::Array<double, 2, 1, 2>&, const yakl::Array<double, 3, 1, 2>&, const yakl::Array<double, 3, 1, 2>&, const yakl::Array<double, 3, 1, 2>&), compute_Planck_source, 4>; OpFuncR = void; OpFuncArgs = {int, int}; F1 = const yakl::Array<double, 2, 1, 2>; F2 = double; F3 = double; F4 = const yakl::Array<double, 2, 1, 2>; F5 = yakl::Array<double, 3, 1, 2>; F6 = int; F7 = int]':
nvcc_internal_extended_lambda_implementation:973:19: note: the layout of aggregates containing vectors with 8-byte alignment has changed in GCC 5
nvcc_internal_extended_lambda_implementation: In static member function 'static void
__nv_hdl_wrapper_t<false, false, Tag, OpFuncR(OpFuncArgs ...), F1, F2, F3, F4>::manager::do_copy(void*) [with Lambda = inc_1scalar_by_1scalar_bybnd(int, int, int, const real3d&, const real3d&, int, const int2d&)::<lambda(int, int, int)>; Tag = __nv_dl_tag<void ()(int, int, int, const yakl::Array<double, 3, 1, 2>&, const yakl::Array<double, 3, 1, 2>&, int, const yakl::Array<int, 2, 1, 2>&), inc_1scalar_by_1scalar_bybnd, 1>; OpFuncR = void; OpFuncArgs = {int, int, int}; F1 = int; F2 = const yakl::Array<int, 2, 1, 2>; F3 = const yakl::Array<double, 3, 1, 2>; F4 = const yakl::Array<double, 3, 1, 2>]':
nvcc_internal_extended_lambda_implementation:574:19: note: the layout of aggregates containing vectors with 8-byte alignment has changed in GCC 5
nvcc_internal_extended_lambda_implementation: In static member function 'static void
__nv_hdl_wrapper_t<false, false, Tag, OpFuncR(OpFuncArgs ...), F1, F2>::manager::do_copy(void*) [with Lambda = apply_BC(int, int, int, bool, const real2d&, const real3d&)::<lambda(int, int)>; Tag = __nv_dl_tag<void (*)(int, int, int, bool, const yakl::Array<double, 2, 1, 2>&, const yakl::Array<double, 3, 1, 2>&), apply_BC, 1>; OpFuncR = void; OpFuncArgs = {int, int}; F1 = const yakl::Array<double, 3, 1, 2>; F2 = const yakl::Array<double, 2, 1, 2>]':
nvcc_internal_extended_lambda_implementation:444:19: note: the layout of aggregates containing vectors with 8-byte alignment has changed in GCC 5
[ 17%] Linking CUDA device code CMakeFiles/rrtmgp.dir/cmake_device_link.o
[ 17%] Linking CXX static library librrtmgp.a
[ 17%] Built target rrtmgp
gmake: *** [Makefile:166: all] Error 2

Error(s) occurred during test phase
OVERALL STATUS: FAIL
Starting analysis on weaver with cmd: cd /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5444/scream/components/eamxx && source /etc/profile.d/modules.sh && module purge && module load cmake/3.25.1 git/2.39.1 python/3.10.8 py-netcdf4/1.5.8 gcc/11.3.0 cuda/11.8.0 openmpi netcdf-c netcdf-fortran parallel-netcdf netlib-lapack && true && bsub -I -q rhel8 -n 4 -gpu num=4 ./scripts/test-all-scream --baseline-dir AUTO $compiler -p -c EKAT_DISABLE_TPL_WARNINGS=ON -i -m weaver
RUN: cd /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5444/scream/components/eamxx && source /etc/profile.d/modules.sh && module purge && module load cmake/3.25.1 git/2.39.1 python/3.10.8 py-netcdf4/1.5.8 gcc/11.3.0 cuda/11.8.0 openmpi netcdf-c netcdf-fortran parallel-netcdf netlib-lapack && true && bsub -I -q rhel8 -n 4 -gpu num=4 ./scripts/test-all-scream --baseline-dir AUTO $compiler -p -c EKAT_DISABLE_TPL_WARNINGS=ON -i -m weaver
FROM: /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5444/scream/components/eamxx
weaver failed
######################################################
Build step 'Execute shell' marked build as failure
Performing Post build task...
Match found for : : True
Logical operation result is TRUE
Running script : #!/bin/bash -le

cd $WORKSPACE/${BUILD_ID}/

./scream/components/eamxx/scripts/jenkins/jenkins_cleanup.sh
[SCREAM_PullRequest_Autotester_Weaver] $ /bin/bash -le /tmp/jenkins13747464301087469361.sh
POST BUILD TASK : SUCCESS
END OF POST BUILD TASK : 0
Sending e-mails to: [email protected]
Finished: FAILURE

@E3SM-Autotester
Copy link
Collaborator

Status Flag 'Pull Request AutoTester' - Testing Jenkins Projects:

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: SCREAM_PullRequest_Autotester_Mappy

  • Build Num: 5077
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA 8089645
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA a5e6f59
TEST_REPO_ALIAS SCREAM

Build Information

Test Name: SCREAM_PullRequest_Autotester_Weaver

  • Build Num: 5446
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA 8089645
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA a5e6f59
TEST_REPO_ALIAS SCREAM

Using Repos:

Repo: SCREAM (jayeshkrishna/scream)
  • Branch: jayeshkrishna/diff_iotypes_for_hist_rest
  • SHA: 8089645
  • Mode: TEST_REPO

Pull Request Author: jayeshkrishna

@E3SM-Autotester
Copy link
Collaborator

Status Flag 'Pull Request AutoTester' - Jenkins Testing: 1 or more Jobs FAILED

Note: Testing will normally be attempted again in approx. 2 Hrs. If a change to the PR source branch occurs, the testing will be attempted again on next available autotester run.

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: SCREAM_PullRequest_Autotester_Mappy

  • Build Num: 5077
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA 8089645
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA a5e6f59
TEST_REPO_ALIAS SCREAM

Build Information

Test Name: SCREAM_PullRequest_Autotester_Weaver

  • Build Num: 5446
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA 8089645
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA a5e6f59
TEST_REPO_ALIAS SCREAM
SCREAM_PullRequest_Autotester_Mappy # 5077 FAILED (click to see last 100 lines of console output)

1145 | cospOUT%grLidar532_cldlayer(ij:ik,1:LIDAR_NCAT) => out1D_3
| 1
Warning: Pointer at (1) in pointer assignment might outlive the pointer target [-Wtarget-lifetime]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5077/scream/components/eam/src/physics/cosp2/local/cosp.F90:1180:10:

1180 | cospOUT%atlid_cfad_sr(ij:ik,1:SR_BINS,1:Nlvgrid) => out1D_1
| 1
Warning: Pointer at (1) in pointer assignment might outlive the pointer target [-Wtarget-lifetime]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5077/scream/components/eam/src/physics/cosp2/local/cosp.F90:1184:10:

1184 | cospOUT%atlid_lidarcld(ij:ik,1:Nlvgrid) => out1D_2
| 1
Warning: Pointer at (1) in pointer assignment might outlive the pointer target [-Wtarget-lifetime]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5077/scream/components/eam/src/physics/cosp2/local/cosp.F90:1188:10:

1188 | cospOUT%atlid_cldlayer(ij:ik,1:LIDAR_NCAT) => out1D_3
| 1
Warning: Pointer at (1) in pointer assignment might outlive the pointer target [-Wtarget-lifetime]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5077/scream/components/eam/src/physics/cosp2/local/cosp.F90:1231:10:

1231 | cospOUT%cloudsat_cfad_ze(ij:ik,1:cloudsat_DBZE_BINS,1:Nlvgrid) => out1D_1
| 1
Warning: Pointer at (1) in pointer assignment might outlive the pointer target [-Wtarget-lifetime]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5077/scream/components/eam/src/physics/cosp2/local/cosp.F90:1236:10:

1236 | cospOUT%cloudsat_pia(ij:ik) => out1D_2
| 1
Warning: Pointer at (1) in pointer assignment might outlive the pointer target [-Wtarget-lifetime]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5077/scream/components/eam/src/physics/cosp2/local/cosp.F90:1240:10:

1240 | cospOUT%cloudsat_precip_cover(ij:ik,1:nCloudsatPrecipClass) => out1D_3
| 1
Warning: Pointer at (1) in pointer assignment might outlive the pointer target [-Wtarget-lifetime]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5077/scream/components/eam/src/physics/cosp2/local/cosp.F90:1731:81:

1731 | Latlid_column, LgrLidar532_subcolumn, LgrLidar532_column, Lrttov_subcolumn, &
| 1
Warning: Unused dummy argument lrttov_subcolumn at (1) [-Wunused-dummy-argument]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5077/scream/components/eam/src/physics/cosp2/local/cosp.F90:1771:45:

1771 | character(len=100) :: parasolErrorMessage
| 1
Warning: Unused variable parasolerrormessage declared at (1) [-Wunused-variable]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5077/scream/components/eam/src/physics/cosp2/local/cosp.F90:297:76:

297 | function COSP_SIMULATOR(cospIN,cospgridIN,cospOUT,start_idx,stop_idx,debug)
| 1
Warning: Unused dummy argument debug at (1) [-Wunused-dummy-argument]
/home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5077/scream/components/eam/src/physics/cosp2/local/cosp.F90:374:49:

374 | betamol_in,betamoli,pnormi,ze_toti,ze_noni
| 1
Warning: Unused variable ze_noni declared at (1) [-Wunused-variable]
[ 11%] Built target csm_share
[ 11%] Built target kokkoscore
[ 11%] Linking Fortran static library libcosp.a
[ 11%] Built target cosp
[ 11%] Linking CXX static library libspdlogd.a
[ 11%] Built target spdlog
gmake: *** [all] Error 2
SCREAM V1 TESTING FAILED!
Waiting for tests to finish
PASS ERP_D_Lh4.ne4_ne4.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1 RUN
Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERP_D_Lh4.ne4_ne4.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1.C.20240320_150040_64ew9w
FAIL ERP_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-4 (phase RUN)
Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERP_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-4.C.20240320_150040_64ew9w
PASS ERS_D_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-rad_frequency_2--scream-output-preset-5 RUN
Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERS_D_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-rad_frequency_2--scream-output-preset-5.C.20240320_150040_64ew9w
FAIL ERS_Ln9.ne4_ne4.F2000-SCREAMv1-AQP1.mappy_gnu9.scream-output-preset-2 (phase RUN)
Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERS_Ln9.ne4_ne4.F2000-SCREAMv1-AQP1.mappy_gnu9.scream-output-preset-2.C.20240320_150040_64ew9w
DIFF PET_Ln9_P32x2.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1 (phase BASELINE)
Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/PET_Ln9_P32x2.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu9.scream-output-preset-1.C.20240320_150040_64ew9w
PASS SMS_D_Ln9.ne4_ne4.F2010-SCREAMv1-noAero.mappy_gnu9.scream-output-preset-3 RUN
Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/SMS_D_Ln9.ne4_ne4.F2010-SCREAMv1-noAero.mappy_gnu9.scream-output-preset-3.C.20240320_150040_64ew9w
test-scheduler took 6175.812826156616 seconds
######################################################
Build step 'Execute shell' marked build as failure
$ ssh-agent -k
unset SSH_AUTH_SOCK;
unset SSH_AGENT_PID;
echo Agent pid 1033 killed;
[ssh-agent] Stopped.
Performing Post build task...
Match found for : : True
Logical operation result is TRUE
Running script : #!/bin/bash -le

cd $WORKSPACE/${BUILD_ID}/

./scream/components/eamxx/scripts/jenkins/jenkins_cleanup.sh

We're having issues with some test-launcher job hanging forever. So let's make sure we clean all penting test-launcher jobs

squeue -o"%.7i %u %40j" | grep e3sm-jenkins | grep test-launcher | awk '{ print $1 }' | xargs -r scancel

[SCREAM_PullRequest_Autotester_Mappy] $ /bin/bash -le /tmp/jenkins350720140863957645.sh
POST BUILD TASK : SUCCESS
END OF POST BUILD TASK : 0
Sending e-mails to: [email protected]
Finished: FAILURE

SCREAM_PullRequest_Autotester_Weaver # 5446 FAILED (click to see last 100 lines of console output)

      |                                                                  ^
Warning: 'misrin.nlevels' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5446/scream/components/eam/src/physics/cosp2/local/cosp.F90:303:31:

303 | type(misr_IN) :: misrIN ! Input to the LIDAR simulator
| ^
note: 'misrin.nlevels' was declared here
/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5446/scream/components/eam/src/physics/cosp2/local/cosp.F90:775:66:

775 | misr_dist_model_layertops,misr_boxztop)
| ^
Warning: 'misrin.ncolumns' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5446/scream/components/eam/src/physics/cosp2/local/cosp.F90:303:31:

303 | type(misr_IN) :: misrIN ! Input to the LIDAR simulator
| ^
note: 'misrin.ncolumns' was declared here
/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5446/scream/components/eam/src/physics/cosp2/local/cosp.F90:753:67:

753 | isccp_boxttop(:,:),isccp_meantbclr(:))
| ^
Warning: 'isccpin.emsfc_lw' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5446/scream/components/eam/src/physics/cosp2/local/cosp.F90:302:32:

302 | type(isccp_IN) :: isccpIN ! Input to the ISCCP simulator
| ^
note: 'isccpin.emsfc_lw' was declared here
/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5446/scream/components/eam/src/physics/cosp2/local/cosp.F90:753:67:

753 | isccp_boxttop(:,:),isccp_meantbclr(:))
| ^
Warning: 'isccpin.nlevels' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5446/scream/components/eam/src/physics/cosp2/local/cosp.F90:302:32:

302 | type(isccp_IN) :: isccpIN ! Input to the ISCCP simulator
| ^
note: 'isccpin.nlevels' was declared here
/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5446/scream/components/eam/src/physics/cosp2/local/cosp.F90:753:67:

753 | isccp_boxttop(:,:),isccp_meantbclr(:))
| ^
Warning: 'isccpin.ncolumns' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5446/scream/components/eam/src/physics/cosp2/local/cosp.F90:302:32:

302 | type(isccp_IN) :: isccpIN ! Input to the ISCCP simulator
| ^
note: 'isccpin.ncolumns' was declared here
[ 16%] Linking CXX static library libkokkoscore.a
[ 16%] Built target kokkoscore
[ 16%] Linking Fortran static library libcsm_share.a
[ 16%] Linking Fortran static library libcosp.a
[ 16%] Built target csm_share
[ 16%] Built target cosp
/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5446/scream/externals/YAKL/src/YAKL_Gator.h: In member function 'void yakl::Gator::init(std::function<void*(long unsigned int)>, std::function<void(void*)>, std::function<void(void*, long unsigned int)>, size_t, size_t, size_t, std::string, std::string, std::string)':
/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5446/scream/externals/YAKL/src/YAKL_Gator.h:111:6: note: the layout of aggregates containing vectors with 8-byte alignment has changed in GCC 5
111 | void init(std::function<void ( size_t )> mymalloc = [] (size_t bytes) -> void * { return ::malloc(bytes); },
| ^~~~
nvcc_internal_extended_lambda_implementation: In static member function 'static void
__nv_hdl_wrapper_t<false, false, Tag, OpFuncR(OpFuncArgs ...), F1, F2, F3>::manager::do_copy(void*) [with Lambda = sum_broadband(int, int, int, const real3d&, const real2d&)::<lambda(int, int)>; Tag = __nv_dl_tag<void ()(int, int, int, const yakl::Array<double, 3, 1, 2>&, const yakl::Array<double, 2, 1, 2>&), sum_broadband, 1>; OpFuncR = void; OpFuncArgs = {int, int}; F1 = int; F2 = const yakl::Array<double, 3, 1, 2>; F3 = const yakl::Array<double, 2, 1, 2>]':
nvcc_internal_extended_lambda_implementation:449:19: note: the layout of aggregates containing vectors with 8-byte alignment has changed in GCC 5
nvcc_internal_extended_lambda_implementation: In static member function 'static void
__nv_hdl_wrapper_t<false, false, Tag, OpFuncR(OpFuncArgs ...), F1, F2, F3>::manager::do_copy(void*) [with Lambda = sum_byband(int, int, int, int, const int2d&, const real3d&, real3d&)::<lambda(int, int, int)>; Tag = __nv_dl_tag<void ()(int, int, int, int, const yakl::Array<int, 2, 1, 2>&, const yakl::Array<double, 3, 1, 2>&, yakl::Array<double, 3, 1, 2>&), sum_byband, 1>; OpFuncR = void; OpFuncArgs = {int, int, int}; F1 = const yakl::Array<int, 2, 1, 2>; F2 = const yakl::Array<double, 3, 1, 2>; F3 = yakl::Array<double, 3, 1, 2>]':
nvcc_internal_extended_lambda_implementation:449:19: note: the layout of aggregates containing vectors with 8-byte alignment has changed in GCC 5
nvcc_internal_extended_lambda_implementation: In static member function 'static void
__nv_hdl_wrapper_t<false, false, Tag, OpFuncR(OpFuncArgs ...), F1, F2, F3, F4, F5>::manager::do_copy(void*) [with Lambda = reorder_123x321_kernel(int, int, int, const real3d&, const real3d&)::<lambda(int, int, int, int, int)>; Tag = __nv_dl_tag<void ()(int, int, int, const yakl::Array<double, 3, 1, 2>&, const yakl::Array<double, 3, 1, 2>&), reorder_123x321_kernel, 1>; OpFuncR = void; OpFuncArgs = {int, int, int, int, int}; F1 = const int; F2 = int; F3 = int; F4 = const yakl::Array<double, 3, 1, 2>; F5 = const yakl::Array<double, 3, 1, 2>]':
nvcc_internal_extended_lambda_implementation:703:19: note: the layout of aggregates containing vectors with 8-byte alignment has changed in GCC 5
nvcc_internal_extended_lambda_implementation: In static member function 'static void
__nv_hdl_wrapper_t<false, false, Tag, OpFuncR(OpFuncArgs ...), F1, F2, F3>::manager::do_copy(void*) [with Lambda = expand_and_transpose(const OpticalProps&, const real2d&, const real2d&)::<lambda(int, int)>; Tag = __nv_dl_tag<void ()(const OpticalProps&, const yakl::Array<double, 2, 1, 2>&, const yakl::Array<double, 2, 1, 2>&), expand_and_transpose, 1>; OpFuncR = void; OpFuncArgs = {int, int}; F1 = yakl::Array<int, 2, 1, 2>; F2 = const yakl::Array<double, 2, 1, 2>; F3 = const yakl::Array<double, 2, 1, 2>]':
nvcc_internal_extended_lambda_implementation:565:19: note: the layout of aggregates containing vectors with 8-byte alignment has changed in GCC 5
[ 17%] Linking CUDA device code CMakeFiles/yakl_fortran_interface.dir/cmake_device_link.o
[ 17%] Linking CXX static library libyakl_fortran_interface.a
[ 17%] Built target yakl_fortran_interface
nvcc_internal_extended_lambda_implementation: In static member function 'static void
__nv_hdl_wrapper_t<false, false, Tag, OpFuncR(OpFuncArgs ...), F1, F2>::manager::do_copy(void*) [with Lambda = apply_BC(int, int, int, bool, const real2d&, const real3d&)::<lambda(int, int)>; Tag = __nv_dl_tag<void ()(int, int, int, bool, const yakl::Array<double, 2, 1, 2>&, const yakl::Array<double, 3, 1, 2>&), apply_BC, 1>; OpFuncR = void; OpFuncArgs = {int, int}; F1 = const yakl::Array<double, 3, 1, 2>; F2 = const yakl::Array<double, 2, 1, 2>]':
nvcc_internal_extended_lambda_implementation:444:19: note: the layout of aggregates containing vectors with 8-byte alignment has changed in GCC 5
nvcc_internal_extended_lambda_implementation: In static member function 'static void
__nv_hdl_wrapper_t<false, false, Tag, OpFuncR(OpFuncArgs ...), F1, F2, F3, F4>::manager::do_copy(void*) [with Lambda = inc_1scalar_by_1scalar_bybnd(int, int, int, const real3d&, const real3d&, int, const int2d&)::<lambda(int, int, int)>; Tag = __nv_dl_tag<void ()(int, int, int, const yakl::Array<double, 3, 1, 2>&, const yakl::Array<double, 3, 1, 2>&, int, const yakl::Array<int, 2, 1, 2>&), inc_1scalar_by_1scalar_bybnd, 1>; OpFuncR = void; OpFuncArgs = {int, int, int}; F1 = int; F2 = const yakl::Array<int, 2, 1, 2>; F3 = const yakl::Array<double, 3, 1, 2>; F4 = const yakl::Array<double, 3, 1, 2>]':
nvcc_internal_extended_lambda_implementation:574:19: note: the layout of aggregates containing vectors with 8-byte alignment has changed in GCC 5
nvcc_internal_extended_lambda_implementation: In static member function 'static void
__nv_hdl_wrapper_t<false, false, Tag, OpFuncR(OpFuncArgs ...), F1, F2, F3, F4, F5, F6, F7>::manager::do_copy(void*) [with Lambda = compute_Planck_source(int, int, int, int, int, int, int, int, int, const real2d&, const real2d&, const real1d&, int, const real6d&, const int4d&, const bool2d&, const int2d&, const int2d&, const int1d&, const int2d&, const real4d&, real, real, const real2d&, const int2d&, const real2d&, const real3d&, const real3d&, const real3d&)::<lambda(int, int)>; Tag = __nv_dl_tag<void (*)(int, int, int, int, int, int, int, int, int, const yakl::Array<double, 2, 1, 2>&, const yakl::Array<double, 2, 1, 2>&, const yakl::Array<double, 1, 1, 2>&, int, const yakl::Array<double, 6, 1, 2>&, const yakl::Array<int, 4, 1, 2>&, const yakl::Array<bool, 2, 1, 2>&, const yakl::Array<int, 2, 1, 2>&, const yakl::Array<int, 2, 1, 2>&, const yakl::Array<int, 1, 1, 2>&, const yakl::Array<int, 2, 1, 2>&, const yakl::Array<double, 4, 1, 2>&, double, double, const yakl::Array<double, 2, 1, 2>&, const yakl::Array<int, 2, 1, 2>&, const yakl::Array<double, 2, 1, 2>&, const yakl::Array<double, 3, 1, 2>&, const yakl::Array<double, 3, 1, 2>&, const yakl::Array<double, 3, 1, 2>&), compute_Planck_source, 4>; OpFuncR = void; OpFuncArgs = {int, int}; F1 = const yakl::Array<double, 2, 1, 2>; F2 = double; F3 = double; F4 = const yakl::Array<double, 2, 1, 2>; F5 = yakl::Array<double, 3, 1, 2>; F6 = int; F7 = int]':
nvcc_internal_extended_lambda_implementation:973:19: note: the layout of aggregates containing vectors with 8-byte alignment has changed in GCC 5
[ 17%] Linking CUDA device code CMakeFiles/rrtmgp.dir/cmake_device_link.o
[ 17%] Linking CXX static library librrtmgp.a
[ 17%] Built target rrtmgp
gmake: *** [Makefile:166: all] Error 2

Error(s) occurred during test phase
OVERALL STATUS: FAIL
Starting analysis on weaver with cmd: cd /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5446/scream/components/eamxx && source /etc/profile.d/modules.sh && module purge && module load cmake/3.25.1 git/2.39.1 python/3.10.8 py-netcdf4/1.5.8 gcc/11.3.0 cuda/11.8.0 openmpi netcdf-c netcdf-fortran parallel-netcdf netlib-lapack && true && bsub -I -q rhel8 -n 4 -gpu num=4 ./scripts/test-all-scream --baseline-dir AUTO $compiler -p -c EKAT_DISABLE_TPL_WARNINGS=ON -i -m weaver
RUN: cd /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5446/scream/components/eamxx && source /etc/profile.d/modules.sh && module purge && module load cmake/3.25.1 git/2.39.1 python/3.10.8 py-netcdf4/1.5.8 gcc/11.3.0 cuda/11.8.0 openmpi netcdf-c netcdf-fortran parallel-netcdf netlib-lapack && true && bsub -I -q rhel8 -n 4 -gpu num=4 ./scripts/test-all-scream --baseline-dir AUTO $compiler -p -c EKAT_DISABLE_TPL_WARNINGS=ON -i -m weaver
FROM: /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5446/scream/components/eamxx
weaver failed
######################################################
Build step 'Execute shell' marked build as failure
Performing Post build task...
Match found for : : True
Logical operation result is TRUE
Running script : #!/bin/bash -le

cd $WORKSPACE/${BUILD_ID}/

./scream/components/eamxx/scripts/jenkins/jenkins_cleanup.sh
[SCREAM_PullRequest_Autotester_Weaver] $ /bin/bash -le /tmp/jenkins1756948949065713172.sh
POST BUILD TASK : SUCCESS
END OF POST BUILD TASK : 0
Sending e-mails to: [email protected]
Finished: FAILURE

@E3SM-Autotester
Copy link
Collaborator

Status Flag 'Pull Request AutoTester' - GitHub reports Mergeable status = False

@jayeshkrishna jayeshkrishna force-pushed the jayeshkrishna/diff_iotypes_for_hist_rest branch from 603fc9e to 7c6106e Compare March 21, 2024 15:21
@E3SM-Autotester
Copy link
Collaborator

Status Flag 'Pull Request AutoTester' - Jenkins Testing: 1 or more Jobs FAILED

Note: Testing will normally be attempted again in approx. 2 Hrs. If a change to the PR source branch occurs, the testing will be attempted again on next available autotester run.

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: SCREAM_PullRequest_Autotester_Mappy

  • Build Num: 5199
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA 6b407d0
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA d60caf6
TEST_REPO_ALIAS SCREAM

Build Information

Test Name: SCREAM_PullRequest_Autotester_Weaver

  • Build Num: 5538
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA 6b407d0
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA d60caf6
TEST_REPO_ALIAS SCREAM
SCREAM_PullRequest_Autotester_Mappy # 5199 FAILED (click to see last 100 lines of console output)

 > git submodule update --init --recursive components/elm/src/external_models/mpp # timeout=10
using GIT_SSH to set credentials jgfouca github key
Verifying host key using manually-configured host key entries
 > git submodule update --init --recursive components/elm/src/external_models/sbetr # timeout=10
using GIT_SSH to set credentials jgfouca github key
Verifying host key using manually-configured host key entries
 > git submodule update --init --recursive components/eam/src/physics/rrtmgp/external # timeout=10
hudson.plugins.git.GitException: Command "git submodule update --init --recursive components/eam/src/physics/rrtmgp/external" returned status code 1:
stdout: Cloning into 'components/eam/src/physics/rrtmgp/external'...

stderr: Warning: Permanently added the ECDSA host key for IP address '140.82.114.4' to the list of known hosts.
Connection to github.com closed by remote host.
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
Clone of '[email protected]:E3SM-Project/rte-rrtmgp.git' into submodule path 'components/eam/src/physics/rrtmgp/external' failed

at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2846)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2185)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$7.lambda$execute$0(CliGitAPIImpl.java:1573)
at com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:131)
at com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:76)
at com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:82)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at com.google.common.util.concurrent.MoreExecutors$DirectExecutorService.execute(MoreExecutors.java:327)
at java.base/java.util.concurrent.ExecutorCompletionService.submit(ExecutorCompletionService.java:184)
at org.jenkinsci.plugins.gitclient.cgit.GitCommandsExecutor.submitRemainingCommand(GitCommandsExecutor.java:77)
at org.jenkinsci.plugins.gitclient.cgit.GitCommandsExecutor.invokeAll(GitCommandsExecutor.java:70)

Also: hudson.remoting.Channel$CallSiteStackTrace: Remote call to mappy
at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1787)
at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:356)
at hudson.remoting.Channel.call(Channel.java:1003)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:153)
at jdk.internal.reflect.GeneratedMethodAccessor153.invoke(Unknown Source)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:138)
at jdk.proxy29/jdk.proxy29.$Proxy158.execute(Unknown Source)
at hudson.plugins.git.extensions.impl.SubmoduleOption.onCheckoutCompleted(SubmoduleOption.java:196)
at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1390)
at hudson.scm.SCM.checkout(SCM.java:540)
at hudson.model.AbstractProject.checkout(AbstractProject.java:1248)
at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:649)
at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:85)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:521)
at hudson.model.Run.execute(Run.java:1895)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:44)
at hudson.model.ResourceController.execute(ResourceController.java:101)
at hudson.model.Executor.run(Executor.java:442)
Caused: hudson.plugins.git.GitException
at org.jenkinsci.plugins.gitclient.cgit.GitCommandsExecutor.checkResult(GitCommandsExecutor.java:89)
at org.jenkinsci.plugins.gitclient.cgit.GitCommandsExecutor.invokeAll(GitCommandsExecutor.java:69)
at org.jenkinsci.plugins.gitclient.cgit.GitCommandsExecutor.invokeAll(GitCommandsExecutor.java:47)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$7.execute(CliGitAPIImpl.java:1576)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:170)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:377)
at hudson.remoting.InterceptingExecutorService.lambda$wrap$0(InterceptingExecutorService.java:78)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
at java.base/java.lang.Thread.run(Thread.java:829)
Caused: java.io.IOException: Could not perform submodule update
at hudson.plugins.git.extensions.impl.SubmoduleOption.onCheckoutCompleted(SubmoduleOption.java:201)
at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1390)
at hudson.scm.SCM.checkout(SCM.java:540)
at hudson.model.AbstractProject.checkout(AbstractProject.java:1248)
at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:649)
at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:85)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:521)
at hudson.model.Run.execute(Run.java:1895)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:44)
at hudson.model.ResourceController.execute(ResourceController.java:101)
at hudson.model.Executor.run(Executor.java:442)
$ ssh-agent -k
unset SSH_AUTH_SOCK;
unset SSH_AGENT_PID;
echo Agent pid 51318 killed;
[ssh-agent] Stopped.
Performing Post build task...
Match found for : : True
Logical operation result is TRUE
Running script : #!/bin/bash -le

cd $WORKSPACE/${BUILD_ID}/

./scream/components/eamxx/scripts/jenkins/jenkins_cleanup.sh

We're having issues with some test-launcher job hanging forever. So let's make sure we clean all penting test-launcher jobs

squeue -o"%.7i %u %40j" | grep e3sm-jenkins | grep test-launcher | awk '{ print $1 }' | xargs -r scancel

[SCREAM_PullRequest_Autotester_Mappy] $ /bin/bash -le /tmp/jenkins10983331064886094711.sh
POST BUILD TASK : SUCCESS
END OF POST BUILD TASK : 0
Sending e-mails to: [email protected]
Finished: FAILURE

SCREAM_PullRequest_Autotester_Weaver # 5538 PASSED (click to see last 100 lines of console output)

        Start 111: shoc_p3_nudging_glob_novert
111/128 Test #111: shoc_p3_nudging_glob_novert .............................   Passed    1.90 sec
        Start 112: homme_shoc_cld_p3_rrtmgp_np1
112/128 Test #112: homme_shoc_cld_p3_rrtmgp_np1 ............................   Passed    4.22 sec
        Start 113: homme_shoc_cld_p3_rrtmgp_baseline_cmp
113/128 Test #113: homme_shoc_cld_p3_rrtmgp_baseline_cmp ...................   Passed    0.12 sec
        Start 114: homme_shoc_cld_p3_rrtmgp_pg2_np1
114/128 Test #114: homme_shoc_cld_p3_rrtmgp_pg2_np1 ........................   Passed    4.08 sec
        Start 115: homme_shoc_cld_p3_rrtmgp_pg2_baseline_cmp
115/128 Test #115: homme_shoc_cld_p3_rrtmgp_pg2_baseline_cmp ...............   Passed    0.12 sec
        Start 116: model_baseline
116/128 Test #116: model_baseline ..........................................   Passed    5.26 sec
        Start 117: model_initial
117/128 Test #117: model_initial ...........................................   Passed    4.20 sec
        Start 118: model_restart
118/128 Test #118: model_restart ...........................................   Passed    4.86 sec
        Start 119: restarted_vs_monolithic_check_np1
119/128 Test #119: restarted_vs_monolithic_check_np1 .......................   Passed    0.08 sec
        Start 120: homme_shoc_cld_spa_p3_rrtmgp_np1
120/128 Test #120: homme_shoc_cld_spa_p3_rrtmgp_np1 ........................   Passed    4.68 sec
        Start 121: homme_shoc_cld_spa_p3_rrtmgp_baseline_cmp
121/128 Test #121: homme_shoc_cld_spa_p3_rrtmgp_baseline_cmp ...............   Passed    0.17 sec
        Start 122: homme_shoc_cld_spa_p3_rrtmgp_128levels_np1
122/128 Test #122: homme_shoc_cld_spa_p3_rrtmgp_128levels_np1 ..............   Passed    5.69 sec
        Start 123: homme_shoc_cld_spa_p3_rrtmgp_128levels_tend_check_np1
123/128 Test #123: homme_shoc_cld_spa_p3_rrtmgp_128levels_tend_check_np1 ...   Passed    1.17 sec
        Start 124: homme_shoc_cld_spa_p3_rrtmgp_128levels_baseline_cmp
124/128 Test #124: homme_shoc_cld_spa_p3_rrtmgp_128levels_baseline_cmp .....   Passed    0.86 sec
        Start 125: homme_shoc_cld_spa_p3_rrtmgp_dp_np1
125/128 Test #125: homme_shoc_cld_spa_p3_rrtmgp_dp_np1 .....................   Passed   17.86 sec
        Start 126: homme_shoc_cld_spa_p3_rrtmgp_dp_baseline_cmp
126/128 Test #126: homme_shoc_cld_spa_p3_rrtmgp_dp_baseline_cmp ............   Passed    0.21 sec
        Start 127: homme_shoc_cld_p3_mam_optics_rrtmgp_np1
127/128 Test #127: homme_shoc_cld_p3_mam_optics_rrtmgp_np1 .................   Passed    7.33 sec
        Start 128: homme_shoc_cld_p3_mam_optics_rrtmgp_baseline_cmp
128/128 Test #128: homme_shoc_cld_p3_mam_optics_rrtmgp_baseline_cmp ........   Passed    0.19 sec

100% tests passed, 0 tests failed out of 128

Label Time Summary:
baseline_cmp = 76.39 secproc (16 tests)
baseline_gen = 138.54 sec
proc (18 tests)
bfbhash = 0.69 secproc (1 test)
check = 0.71 sec
proc (1 test)
cld = 7.76 secproc (3 tests)
cld_fraction = 1.36 sec
proc (1 test)
cxx baseline_cmp = 5.56 secproc (2 tests)
diagnostics = 24.61 sec
proc (19 tests)
driver = 18.96 secproc (8 tests)
dynamics = 5.33 sec
proc (3 tests)
fail = 37.87 secproc (4 tests)
io = 36.79 sec
proc (12 tests)
mam4_optics = 3.74 secproc (1 test)
nudging = 5.40 sec
proc (2 tests)
p3 = 128.45 secproc (7 tests)
p3_sk = 76.41 sec
proc (2 tests)
physics = 221.93 secproc (19 tests)
remap = 2.92 sec
proc (1 test)
rrtmgp = 19.25 secproc (9 tests)
shoc = 11.32 sec
proc (7 tests)
spa = 6.46 secproc (4 tests)
surface_coupling = 1.52 sec
proc (1 test)

Total Test time (real) = 536.54 sec

Testing '''6b407d0cb6cada94d2a004adbf21ce5a3baeaa97''' for test '''release'''

RUN: taskset -c 104-155 sh -c '''SCREAM_BUILD_PARALLEL_LEVEL=52 CTEST_PARALLEL_LEVEL=1 ctest -V --output-on-failure --resource-spec-file /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5538/scream/components/eamxx/ctest-build/release/ctest_resource_file.json -DNO_SUBMIT=True -DBUILD_WORK_DIR=/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5538/scream/components/eamxx/ctest-build/release -DBUILD_NAME_MOD=release -S /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5538/scream/components/eamxx/cmake/ctest_script.cmake -DCTEST_SITE=weaver -DCMAKE_COMMAND="-C /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5538/scream/components/eamxx/cmake/machine-files/weaver.cmake -DNetCDF_Fortran_PATH=/projects/ppc64le-pwr9-rhel8/tpls/netcdf-fortran/4.6.0/gcc/11.3.0/openmpi/4.1.4/5ka6asw -DNetCDF_C_PATH=/projects/ppc64le-pwr9-rhel8/tpls/netcdf-c/4.9.0/gcc/11.3.0/openmpi/4.1.4/mdd6fth -DPnetCDF_C_PATH=/projects/ppc64le-pwr9-rhel8/tpls/parallel-netcdf/1.12.3/gcc/11.3.0/openmpi/4.1.4/52dibdr -DCMAKE_BUILD_TYPE=Release -DEKAT_DISABLE_TPL_WARNINGS='''''''''ON''''''''' -DCMAKE_CXX_COMPILER=mpicxx -DCMAKE_C_COMPILER=mpicc -DCMAKE_Fortran_COMPILER=mpifort -DSCREAM_DYNAMICS_DYCORE=HOMME -DSCREAM_TEST_MAX_TOTAL_THREADS=1 -DSCREAM_BASELINES_DIR=/home/projects/e3sm/scream/pr-autotester/master-baselines/weaver/release" '''
FROM: /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5538/scream/components/eamxx/ctest-build/release

Testing '''6b407d0cb6cada94d2a004adbf21ce5a3baeaa97''' for test '''full_sp_debug'''

RUN: taskset -c 52-103 sh -c '''SCREAM_BUILD_PARALLEL_LEVEL=52 CTEST_PARALLEL_LEVEL=1 ctest -V --output-on-failure --resource-spec-file /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5538/scream/components/eamxx/ctest-build/full_sp_debug/ctest_resource_file.json -DNO_SUBMIT=True -DBUILD_WORK_DIR=/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5538/scream/components/eamxx/ctest-build/full_sp_debug -DBUILD_NAME_MOD=full_sp_debug -S /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5538/scream/components/eamxx/cmake/ctest_script.cmake -DCTEST_SITE=weaver -DCMAKE_COMMAND="-C /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5538/scream/components/eamxx/cmake/machine-files/weaver.cmake -DNetCDF_Fortran_PATH=/projects/ppc64le-pwr9-rhel8/tpls/netcdf-fortran/4.6.0/gcc/11.3.0/openmpi/4.1.4/5ka6asw -DNetCDF_C_PATH=/projects/ppc64le-pwr9-rhel8/tpls/netcdf-c/4.9.0/gcc/11.3.0/openmpi/4.1.4/mdd6fth -DPnetCDF_C_PATH=/projects/ppc64le-pwr9-rhel8/tpls/parallel-netcdf/1.12.3/gcc/11.3.0/openmpi/4.1.4/52dibdr -DCMAKE_BUILD_TYPE=Debug -DEKAT_DEFAULT_BFB=True -DSCREAM_DOUBLE_PRECISION=False -DEKAT_DISABLE_TPL_WARNINGS='''''''''ON''''''''' -DCMAKE_CXX_COMPILER=mpicxx -DCMAKE_C_COMPILER=mpicc -DCMAKE_Fortran_COMPILER=mpifort -DSCREAM_DYNAMICS_DYCORE=HOMME -DSCREAM_TEST_MAX_TOTAL_THREADS=1 -DSCREAM_BASELINES_DIR=/home/projects/e3sm/scream/pr-autotester/master-baselines/weaver/full_sp_debug" '''
FROM: /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5538/scream/components/eamxx/ctest-build/full_sp_debug

Testing '''6b407d0cb6cada94d2a004adbf21ce5a3baeaa97''' for test '''full_debug'''

RUN: taskset -c 0-51 sh -c '''SCREAM_BUILD_PARALLEL_LEVEL=52 CTEST_PARALLEL_LEVEL=1 ctest -V --output-on-failure --resource-spec-file /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5538/scream/components/eamxx/ctest-build/full_debug/ctest_resource_file.json -DNO_SUBMIT=True -DBUILD_WORK_DIR=/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5538/scream/components/eamxx/ctest-build/full_debug -DBUILD_NAME_MOD=full_debug -S /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5538/scream/components/eamxx/cmake/ctest_script.cmake -DCTEST_SITE=weaver -DCMAKE_COMMAND="-C /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5538/scream/components/eamxx/cmake/machine-files/weaver.cmake -DNetCDF_Fortran_PATH=/projects/ppc64le-pwr9-rhel8/tpls/netcdf-fortran/4.6.0/gcc/11.3.0/openmpi/4.1.4/5ka6asw -DNetCDF_C_PATH=/projects/ppc64le-pwr9-rhel8/tpls/netcdf-c/4.9.0/gcc/11.3.0/openmpi/4.1.4/mdd6fth -DPnetCDF_C_PATH=/projects/ppc64le-pwr9-rhel8/tpls/parallel-netcdf/1.12.3/gcc/11.3.0/openmpi/4.1.4/52dibdr -DCMAKE_BUILD_TYPE=Debug -DEKAT_DEFAULT_BFB=True -DEKAT_DISABLE_TPL_WARNINGS='''''''''ON''''''''' -DCMAKE_CXX_COMPILER=mpicxx -DCMAKE_C_COMPILER=mpicc -DCMAKE_Fortran_COMPILER=mpifort -DSCREAM_DYNAMICS_DYCORE=HOMME -DSCREAM_TEST_MAX_TOTAL_THREADS=1 -DSCREAM_BASELINES_DIR=/home/projects/e3sm/scream/pr-autotester/master-baselines/weaver/full_debug" '''
FROM: /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5538/scream/components/eamxx/ctest-build/full_debug
OVERALL STATUS: PASS
Starting analysis on weaver with cmd: cd /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5538/scream/components/eamxx && source /etc/profile.d/modules.sh && module purge && module load cmake/3.25.1 git/2.39.1 python/3.10.8 py-netcdf4/1.5.8 gcc/11.3.0 cuda/11.8.0 openmpi netcdf-c netcdf-fortran parallel-netcdf netlib-lapack && true && bsub -I -q rhel8 -n 4 -gpu num=4 ./scripts/test-all-scream --baseline-dir AUTO $compiler -p -c EKAT_DISABLE_TPL_WARNINGS=ON -i -m weaver
RUN: cd /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5538/scream/components/eamxx && source /etc/profile.d/modules.sh && module purge && module load cmake/3.25.1 git/2.39.1 python/3.10.8 py-netcdf4/1.5.8 gcc/11.3.0 cuda/11.8.0 openmpi netcdf-c netcdf-fortran parallel-netcdf netlib-lapack && true && bsub -I -q rhel8 -n 4 -gpu num=4 ./scripts/test-all-scream --baseline-dir AUTO $compiler -p -c EKAT_DISABLE_TPL_WARNINGS=ON -i -m weaver
FROM: /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5538/scream/components/eamxx
Completed analysis on weaver'

  • [[ 0 != 0 ]]
  • [[ 1 == 0 ]]
  • [[ weaver == \m\a\p\p\y ]]
  • set +x
    Performing Post build task...
    Match found for : : True
    Logical operation result is TRUE
    Running script : #!/bin/bash -le

cd $WORKSPACE/${BUILD_ID}/

./scream/components/eamxx/scripts/jenkins/jenkins_cleanup.sh
[SCREAM_PullRequest_Autotester_Weaver] $ /bin/bash -le /tmp/jenkins3674256446092599285.sh
POST BUILD TASK : SUCCESS
END OF POST BUILD TASK : 0
Finished: SUCCESS

@E3SM-Autotester
Copy link
Collaborator

Status Flag 'Pull Request AutoTester' - Testing Jenkins Projects:

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: SCREAM_PullRequest_Autotester_Mappy

  • Build Num: 5202
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA 6b407d0
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA d60caf6
TEST_REPO_ALIAS SCREAM

Build Information

Test Name: SCREAM_PullRequest_Autotester_Weaver

  • Build Num: 5541
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA 6b407d0
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA d60caf6
TEST_REPO_ALIAS SCREAM

Using Repos:

Repo: SCREAM (jayeshkrishna/scream)
  • Branch: jayeshkrishna/diff_iotypes_for_hist_rest
  • SHA: 6b407d0
  • Mode: TEST_REPO

Pull Request Author: jayeshkrishna

@E3SM-Autotester
Copy link
Collaborator

Status Flag 'Pull Request AutoTester' - Jenkins Testing: 1 or more Jobs FAILED

Note: Testing will normally be attempted again in approx. 2 Hrs. If a change to the PR source branch occurs, the testing will be attempted again on next available autotester run.

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: SCREAM_PullRequest_Autotester_Mappy

  • Build Num: 5202
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA 6b407d0
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA d60caf6
TEST_REPO_ALIAS SCREAM

Build Information

Test Name: SCREAM_PullRequest_Autotester_Weaver

  • Build Num: 5541
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA 6b407d0
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA d60caf6
TEST_REPO_ALIAS SCREAM
SCREAM_PullRequest_Autotester_Mappy # 5202 FAILED (click to see last 100 lines of console output)

Waiting for tests to finish
DIFF ERP_D_Lh4.ne4_ne4.F2010-SCREAMv1.mappy_gnu.scream-output-preset-1 (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERP_D_Lh4.ne4_ne4.F2010-SCREAMv1.mappy_gnu.scream-output-preset-1.C.20240412_105610_ysmzny
DIFF ERP_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-output-preset-4 (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERP_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-output-preset-4.C.20240412_105610_ysmzny
DIFF ERS_D_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-rad_frequency_2--scream-output-preset-5 (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERS_D_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-rad_frequency_2--scream-output-preset-5.C.20240412_105610_ysmzny
DIFF ERS_Ln9.ne4_ne4.F2000-SCREAMv1-AQP1.mappy_gnu.scream-output-preset-2 (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERS_Ln9.ne4_ne4.F2000-SCREAMv1-AQP1.mappy_gnu.scream-output-preset-2.C.20240412_105610_ysmzny
DIFF ERS_P16_Ln22.ne30_ne30.F2010-SCREAMv1-DP-DYCOMSrf01.mappy_gnu (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERS_P16_Ln22.ne30_ne30.F2010-SCREAMv1-DP-DYCOMSrf01.mappy_gnu.C.20240412_105610_ysmzny
DIFF PET_Ln9_P32x2.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-output-preset-1 (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/PET_Ln9_P32x2.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-output-preset-1.C.20240412_105610_ysmzny
DIFF SMS_D_Ln5.ne4pg2_oQU480.F2010-SCREAMv1-MPASSI.mappy_gnu.scream-mam4xx-optics (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/SMS_D_Ln5.ne4pg2_oQU480.F2010-SCREAMv1-MPASSI.mappy_gnu.scream-mam4xx-optics.C.20240412_105610_ysmzny
DIFF SMS_D_Ln9.ne4_ne4.F2010-SCREAMv1-noAero.mappy_gnu.scream-output-preset-3 (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/SMS_D_Ln9.ne4_ne4.F2010-SCREAMv1-noAero.mappy_gnu.scream-output-preset-3.C.20240412_105610_ysmzny
test-scheduler took 812.8914740085602 seconds'
+ errors='Waiting for tests to finish
DIFF ERP_D_Lh4.ne4_ne4.F2010-SCREAMv1.mappy_gnu.scream-output-preset-1 (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERP_D_Lh4.ne4_ne4.F2010-SCREAMv1.mappy_gnu.scream-output-preset-1.C.20240412_105610_ysmzny
DIFF ERP_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-output-preset-4 (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERP_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-output-preset-4.C.20240412_105610_ysmzny
DIFF ERS_D_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-rad_frequency_2--scream-output-preset-5 (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERS_D_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-rad_frequency_2--scream-output-preset-5.C.20240412_105610_ysmzny
DIFF ERS_Ln9.ne4_ne4.F2000-SCREAMv1-AQP1.mappy_gnu.scream-output-preset-2 (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERS_Ln9.ne4_ne4.F2000-SCREAMv1-AQP1.mappy_gnu.scream-output-preset-2.C.20240412_105610_ysmzny
DIFF ERS_P16_Ln22.ne30_ne30.F2010-SCREAMv1-DP-DYCOMSrf01.mappy_gnu (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERS_P16_Ln22.ne30_ne30.F2010-SCREAMv1-DP-DYCOMSrf01.mappy_gnu.C.20240412_105610_ysmzny
DIFF PET_Ln9_P32x2.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-output-preset-1 (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/PET_Ln9_P32x2.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-output-preset-1.C.20240412_105610_ysmzny
DIFF SMS_D_Ln5.ne4pg2_oQU480.F2010-SCREAMv1-MPASSI.mappy_gnu.scream-mam4xx-optics (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/SMS_D_Ln5.ne4pg2_oQU480.F2010-SCREAMv1-MPASSI.mappy_gnu.scream-mam4xx-optics.C.20240412_105610_ysmzny
DIFF SMS_D_Ln9.ne4_ne4.F2010-SCREAMv1-noAero.mappy_gnu.scream-output-preset-3 (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/SMS_D_Ln9.ne4_ne4.F2010-SCREAMv1-noAero.mappy_gnu.scream-output-preset-3.C.20240412_105610_ysmzny
test-scheduler took 812.8914740085602 seconds'
+ V1_FAILURES_DETAILS+='Waiting for tests to finish
DIFF ERP_D_Lh4.ne4_ne4.F2010-SCREAMv1.mappy_gnu.scream-output-preset-1 (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERP_D_Lh4.ne4_ne4.F2010-SCREAMv1.mappy_gnu.scream-output-preset-1.C.20240412_105610_ysmzny
DIFF ERP_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-output-preset-4 (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERP_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-output-preset-4.C.20240412_105610_ysmzny
DIFF ERS_D_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-rad_frequency_2--scream-output-preset-5 (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERS_D_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-rad_frequency_2--scream-output-preset-5.C.20240412_105610_ysmzny
DIFF ERS_Ln9.ne4_ne4.F2000-SCREAMv1-AQP1.mappy_gnu.scream-output-preset-2 (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERS_Ln9.ne4_ne4.F2000-SCREAMv1-AQP1.mappy_gnu.scream-output-preset-2.C.20240412_105610_ysmzny
DIFF ERS_P16_Ln22.ne30_ne30.F2010-SCREAMv1-DP-DYCOMSrf01.mappy_gnu (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERS_P16_Ln22.ne30_ne30.F2010-SCREAMv1-DP-DYCOMSrf01.mappy_gnu.C.20240412_105610_ysmzny
DIFF PET_Ln9_P32x2.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-output-preset-1 (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/PET_Ln9_P32x2.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-output-preset-1.C.20240412_105610_ysmzny
DIFF SMS_D_Ln5.ne4pg2_oQU480.F2010-SCREAMv1-MPASSI.mappy_gnu.scream-mam4xx-optics (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/SMS_D_Ln5.ne4pg2_oQU480.F2010-SCREAMv1-MPASSI.mappy_gnu.scream-mam4xx-optics.C.20240412_105610_ysmzny
DIFF SMS_D_Ln9.ne4_ne4.F2010-SCREAMv1-noAero.mappy_gnu.scream-output-preset-3 (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/SMS_D_Ln9.ne4_ne4.F2010-SCREAMv1-noAero.mappy_gnu.scream-output-preset-3.C.20240412_105610_ysmzny
test-scheduler took 812.8914740085602 seconds'
+ set +x
######################################################
FAILS DETECTED:
  SCREAM V1 TESTING FAILED!
Waiting for tests to finish
DIFF ERP_D_Lh4.ne4_ne4.F2010-SCREAMv1.mappy_gnu.scream-output-preset-1 (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERP_D_Lh4.ne4_ne4.F2010-SCREAMv1.mappy_gnu.scream-output-preset-1.C.20240412_105610_ysmzny
DIFF ERP_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-output-preset-4 (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERP_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-output-preset-4.C.20240412_105610_ysmzny
DIFF ERS_D_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-rad_frequency_2--scream-output-preset-5 (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERS_D_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-rad_frequency_2--scream-output-preset-5.C.20240412_105610_ysmzny
DIFF ERS_Ln9.ne4_ne4.F2000-SCREAMv1-AQP1.mappy_gnu.scream-output-preset-2 (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERS_Ln9.ne4_ne4.F2000-SCREAMv1-AQP1.mappy_gnu.scream-output-preset-2.C.20240412_105610_ysmzny
DIFF ERS_P16_Ln22.ne30_ne30.F2010-SCREAMv1-DP-DYCOMSrf01.mappy_gnu (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERS_P16_Ln22.ne30_ne30.F2010-SCREAMv1-DP-DYCOMSrf01.mappy_gnu.C.20240412_105610_ysmzny
DIFF PET_Ln9_P32x2.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-output-preset-1 (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/PET_Ln9_P32x2.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-output-preset-1.C.20240412_105610_ysmzny
DIFF SMS_D_Ln5.ne4pg2_oQU480.F2010-SCREAMv1-MPASSI.mappy_gnu.scream-mam4xx-optics (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/SMS_D_Ln5.ne4pg2_oQU480.F2010-SCREAMv1-MPASSI.mappy_gnu.scream-mam4xx-optics.C.20240412_105610_ysmzny
DIFF SMS_D_Ln9.ne4_ne4.F2010-SCREAMv1-noAero.mappy_gnu.scream-output-preset-3 (phase BASELINE)
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/SMS_D_Ln9.ne4_ne4.F2010-SCREAMv1-noAero.mappy_gnu.scream-output-preset-3.C.20240412_105610_ysmzny
test-scheduler took 812.8914740085602 seconds
######################################################
Build step 'Execute shell' marked build as failure
$ ssh-agent -k
unset SSH_AUTH_SOCK;
unset SSH_AGENT_PID;
echo Agent pid 85197 killed;
[ssh-agent] Stopped.
Performing Post build task...
Match found for : : True
Logical operation result is TRUE
Running script  : #!/bin/bash -le

cd $WORKSPACE/${BUILD_ID}/

./scream/components/eamxx/scripts/jenkins/jenkins_cleanup.sh

We're having issues with some test-launcher job hanging forever. So let's make sure we clean all penting test-launcher jobs

squeue -o"%.7i %u %40j" | grep e3sm-jenkins | grep test-launcher | awk '{ print $1 }' | xargs -r scancel

[SCREAM_PullRequest_Autotester_Mappy] $ /bin/bash -le /tmp/jenkins17088484064418674864.sh
POST BUILD TASK : SUCCESS
END OF POST BUILD TASK : 0
Sending e-mails to: [email protected]
Finished: FAILURE

SCREAM_PullRequest_Autotester_Weaver # 5541 PASSED (click to see last 100 lines of console output)

        Start 111: shoc_p3_nudging_glob_novert
111/128 Test #111: shoc_p3_nudging_glob_novert .............................   Passed    1.88 sec
        Start 112: homme_shoc_cld_p3_rrtmgp_np1
112/128 Test #112: homme_shoc_cld_p3_rrtmgp_np1 ............................   Passed    4.21 sec
        Start 113: homme_shoc_cld_p3_rrtmgp_baseline_cmp
113/128 Test #113: homme_shoc_cld_p3_rrtmgp_baseline_cmp ...................   Passed    0.18 sec
        Start 114: homme_shoc_cld_p3_rrtmgp_pg2_np1
114/128 Test #114: homme_shoc_cld_p3_rrtmgp_pg2_np1 ........................   Passed    4.58 sec
        Start 115: homme_shoc_cld_p3_rrtmgp_pg2_baseline_cmp
115/128 Test #115: homme_shoc_cld_p3_rrtmgp_pg2_baseline_cmp ...............   Passed    0.15 sec
        Start 116: model_baseline
116/128 Test #116: model_baseline ..........................................   Passed    5.24 sec
        Start 117: model_initial
117/128 Test #117: model_initial ...........................................   Passed    4.18 sec
        Start 118: model_restart
118/128 Test #118: model_restart ...........................................   Passed    4.81 sec
        Start 119: restarted_vs_monolithic_check_np1
119/128 Test #119: restarted_vs_monolithic_check_np1 .......................   Passed    0.10 sec
        Start 120: homme_shoc_cld_spa_p3_rrtmgp_np1
120/128 Test #120: homme_shoc_cld_spa_p3_rrtmgp_np1 ........................   Passed    5.28 sec
        Start 121: homme_shoc_cld_spa_p3_rrtmgp_baseline_cmp
121/128 Test #121: homme_shoc_cld_spa_p3_rrtmgp_baseline_cmp ...............   Passed    0.22 sec
        Start 122: homme_shoc_cld_spa_p3_rrtmgp_128levels_np1
122/128 Test #122: homme_shoc_cld_spa_p3_rrtmgp_128levels_np1 ..............   Passed    5.91 sec
        Start 123: homme_shoc_cld_spa_p3_rrtmgp_128levels_tend_check_np1
123/128 Test #123: homme_shoc_cld_spa_p3_rrtmgp_128levels_tend_check_np1 ...   Passed    1.23 sec
        Start 124: homme_shoc_cld_spa_p3_rrtmgp_128levels_baseline_cmp
124/128 Test #124: homme_shoc_cld_spa_p3_rrtmgp_128levels_baseline_cmp .....   Passed    0.94 sec
        Start 125: homme_shoc_cld_spa_p3_rrtmgp_dp_np1
125/128 Test #125: homme_shoc_cld_spa_p3_rrtmgp_dp_np1 .....................   Passed   17.47 sec
        Start 126: homme_shoc_cld_spa_p3_rrtmgp_dp_baseline_cmp
126/128 Test #126: homme_shoc_cld_spa_p3_rrtmgp_dp_baseline_cmp ............   Passed    0.23 sec
        Start 127: homme_shoc_cld_p3_mam_optics_rrtmgp_np1
127/128 Test #127: homme_shoc_cld_p3_mam_optics_rrtmgp_np1 .................   Passed    7.53 sec
        Start 128: homme_shoc_cld_p3_mam_optics_rrtmgp_baseline_cmp
128/128 Test #128: homme_shoc_cld_p3_mam_optics_rrtmgp_baseline_cmp ........   Passed    0.18 sec

100% tests passed, 0 tests failed out of 128

Label Time Summary:
baseline_cmp = 65.41 secproc (16 tests)
baseline_gen = 128.26 sec
proc (18 tests)
bfbhash = 0.69 secproc (1 test)
check = 0.71 sec
proc (1 test)
cld = 7.93 secproc (3 tests)
cld_fraction = 1.34 sec
proc (1 test)
cxx baseline_cmp = 5.84 secproc (2 tests)
diagnostics = 24.55 sec
proc (19 tests)
driver = 17.88 secproc (8 tests)
dynamics = 5.34 sec
proc (3 tests)
fail = 49.78 secproc (4 tests)
io = 31.35 sec
proc (12 tests)
mam4_optics = 3.74 secproc (1 test)
nudging = 5.70 sec
proc (2 tests)
p3 = 120.03 secproc (7 tests)
p3_sk = 141.54 sec
proc (2 tests)
physics = 276.63 secproc (19 tests)
remap = 2.47 sec
proc (1 test)
rrtmgp = 17.31 secproc (9 tests)
shoc = 11.40 sec
proc (7 tests)
spa = 6.97 secproc (4 tests)
surface_coupling = 1.53 sec
proc (1 test)

Total Test time (real) = 572.78 sec

Testing '''6b407d0cb6cada94d2a004adbf21ce5a3baeaa97''' for test '''release'''

RUN: taskset -c 104-155 sh -c '''SCREAM_BUILD_PARALLEL_LEVEL=52 CTEST_PARALLEL_LEVEL=1 ctest -V --output-on-failure --resource-spec-file /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5541/scream/components/eamxx/ctest-build/release/ctest_resource_file.json -DNO_SUBMIT=True -DBUILD_WORK_DIR=/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5541/scream/components/eamxx/ctest-build/release -DBUILD_NAME_MOD=release -S /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5541/scream/components/eamxx/cmake/ctest_script.cmake -DCTEST_SITE=weaver -DCMAKE_COMMAND="-C /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5541/scream/components/eamxx/cmake/machine-files/weaver.cmake -DNetCDF_Fortran_PATH=/projects/ppc64le-pwr9-rhel8/tpls/netcdf-fortran/4.6.0/gcc/11.3.0/openmpi/4.1.4/5ka6asw -DNetCDF_C_PATH=/projects/ppc64le-pwr9-rhel8/tpls/netcdf-c/4.9.0/gcc/11.3.0/openmpi/4.1.4/mdd6fth -DPnetCDF_C_PATH=/projects/ppc64le-pwr9-rhel8/tpls/parallel-netcdf/1.12.3/gcc/11.3.0/openmpi/4.1.4/52dibdr -DCMAKE_BUILD_TYPE=Release -DEKAT_DISABLE_TPL_WARNINGS='''''''''ON''''''''' -DCMAKE_CXX_COMPILER=mpicxx -DCMAKE_C_COMPILER=mpicc -DCMAKE_Fortran_COMPILER=mpifort -DSCREAM_DYNAMICS_DYCORE=HOMME -DSCREAM_TEST_MAX_TOTAL_THREADS=1 -DSCREAM_BASELINES_DIR=/home/projects/e3sm/scream/pr-autotester/master-baselines/weaver/release" '''
FROM: /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5541/scream/components/eamxx/ctest-build/release

Testing '''6b407d0cb6cada94d2a004adbf21ce5a3baeaa97''' for test '''full_debug'''

RUN: taskset -c 0-51 sh -c '''SCREAM_BUILD_PARALLEL_LEVEL=52 CTEST_PARALLEL_LEVEL=1 ctest -V --output-on-failure --resource-spec-file /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5541/scream/components/eamxx/ctest-build/full_debug/ctest_resource_file.json -DNO_SUBMIT=True -DBUILD_WORK_DIR=/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5541/scream/components/eamxx/ctest-build/full_debug -DBUILD_NAME_MOD=full_debug -S /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5541/scream/components/eamxx/cmake/ctest_script.cmake -DCTEST_SITE=weaver -DCMAKE_COMMAND="-C /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5541/scream/components/eamxx/cmake/machine-files/weaver.cmake -DNetCDF_Fortran_PATH=/projects/ppc64le-pwr9-rhel8/tpls/netcdf-fortran/4.6.0/gcc/11.3.0/openmpi/4.1.4/5ka6asw -DNetCDF_C_PATH=/projects/ppc64le-pwr9-rhel8/tpls/netcdf-c/4.9.0/gcc/11.3.0/openmpi/4.1.4/mdd6fth -DPnetCDF_C_PATH=/projects/ppc64le-pwr9-rhel8/tpls/parallel-netcdf/1.12.3/gcc/11.3.0/openmpi/4.1.4/52dibdr -DCMAKE_BUILD_TYPE=Debug -DEKAT_DEFAULT_BFB=True -DEKAT_DISABLE_TPL_WARNINGS='''''''''ON''''''''' -DCMAKE_CXX_COMPILER=mpicxx -DCMAKE_C_COMPILER=mpicc -DCMAKE_Fortran_COMPILER=mpifort -DSCREAM_DYNAMICS_DYCORE=HOMME -DSCREAM_TEST_MAX_TOTAL_THREADS=1 -DSCREAM_BASELINES_DIR=/home/projects/e3sm/scream/pr-autotester/master-baselines/weaver/full_debug" '''
FROM: /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5541/scream/components/eamxx/ctest-build/full_debug

Testing '''6b407d0cb6cada94d2a004adbf21ce5a3baeaa97''' for test '''full_sp_debug'''

RUN: taskset -c 52-103 sh -c '''SCREAM_BUILD_PARALLEL_LEVEL=52 CTEST_PARALLEL_LEVEL=1 ctest -V --output-on-failure --resource-spec-file /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5541/scream/components/eamxx/ctest-build/full_sp_debug/ctest_resource_file.json -DNO_SUBMIT=True -DBUILD_WORK_DIR=/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5541/scream/components/eamxx/ctest-build/full_sp_debug -DBUILD_NAME_MOD=full_sp_debug -S /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5541/scream/components/eamxx/cmake/ctest_script.cmake -DCTEST_SITE=weaver -DCMAKE_COMMAND="-C /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5541/scream/components/eamxx/cmake/machine-files/weaver.cmake -DNetCDF_Fortran_PATH=/projects/ppc64le-pwr9-rhel8/tpls/netcdf-fortran/4.6.0/gcc/11.3.0/openmpi/4.1.4/5ka6asw -DNetCDF_C_PATH=/projects/ppc64le-pwr9-rhel8/tpls/netcdf-c/4.9.0/gcc/11.3.0/openmpi/4.1.4/mdd6fth -DPnetCDF_C_PATH=/projects/ppc64le-pwr9-rhel8/tpls/parallel-netcdf/1.12.3/gcc/11.3.0/openmpi/4.1.4/52dibdr -DCMAKE_BUILD_TYPE=Debug -DEKAT_DEFAULT_BFB=True -DSCREAM_DOUBLE_PRECISION=False -DEKAT_DISABLE_TPL_WARNINGS='''''''''ON''''''''' -DCMAKE_CXX_COMPILER=mpicxx -DCMAKE_C_COMPILER=mpicc -DCMAKE_Fortran_COMPILER=mpifort -DSCREAM_DYNAMICS_DYCORE=HOMME -DSCREAM_TEST_MAX_TOTAL_THREADS=1 -DSCREAM_BASELINES_DIR=/home/projects/e3sm/scream/pr-autotester/master-baselines/weaver/full_sp_debug" '''
FROM: /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5541/scream/components/eamxx/ctest-build/full_sp_debug
OVERALL STATUS: PASS
Starting analysis on weaver with cmd: cd /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5541/scream/components/eamxx && source /etc/profile.d/modules.sh && module purge && module load cmake/3.25.1 git/2.39.1 python/3.10.8 py-netcdf4/1.5.8 gcc/11.3.0 cuda/11.8.0 openmpi netcdf-c netcdf-fortran parallel-netcdf netlib-lapack && true && bsub -I -q rhel8 -n 4 -gpu num=4 ./scripts/test-all-scream --baseline-dir AUTO $compiler -p -c EKAT_DISABLE_TPL_WARNINGS=ON -i -m weaver
RUN: cd /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5541/scream/components/eamxx && source /etc/profile.d/modules.sh && module purge && module load cmake/3.25.1 git/2.39.1 python/3.10.8 py-netcdf4/1.5.8 gcc/11.3.0 cuda/11.8.0 openmpi netcdf-c netcdf-fortran parallel-netcdf netlib-lapack && true && bsub -I -q rhel8 -n 4 -gpu num=4 ./scripts/test-all-scream --baseline-dir AUTO $compiler -p -c EKAT_DISABLE_TPL_WARNINGS=ON -i -m weaver
FROM: /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5541/scream/components/eamxx
Completed analysis on weaver'

  • [[ 0 != 0 ]]
  • [[ 1 == 0 ]]
  • [[ weaver == \m\a\p\p\y ]]
  • set +x
    Performing Post build task...
    Match found for : : True
    Logical operation result is TRUE
    Running script : #!/bin/bash -le

cd $WORKSPACE/${BUILD_ID}/

./scream/components/eamxx/scripts/jenkins/jenkins_cleanup.sh
[SCREAM_PullRequest_Autotester_Weaver] $ /bin/bash -le /tmp/jenkins10726422400296114673.sh
POST BUILD TASK : SUCCESS
END OF POST BUILD TASK : 0
Finished: SUCCESS

@jayeshkrishna
Copy link
Contributor Author

@bartgol / @jgfouca : Are the diffs on mappy ok (I am assuming the DIFFs in the latest round of tests were due to the upstream merge - PR 2784)? How can I restart the tests on this PR?

@bartgol bartgol added the AT: RETEST Force the autotester (AT) to retest the PR label Apr 15, 2024
@bartgol
Copy link
Contributor

bartgol commented Apr 15, 2024

@jayeshkrishna there was a problem with the jenkins job that blessed the AT baselines (it still used gnu9 as compiler), so it didn't bless the baselines. I fixed it and I'm re-running it. I also added the RETEST label so that the testing will be triggered again.

@E3SM-Autotester
Copy link
Collaborator

Status Flag 'Pull Request AutoTester' - User Requested Retest - Label AT: RETEST will be reset after testing.

@E3SM-Autotester
Copy link
Collaborator

Status Flag 'Pull Request AutoTester' - Testing Jenkins Projects:

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: SCREAM_PullRequest_Autotester_Mappy

  • Build Num: 5210
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O;AT: RETEST
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA 6b407d0
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA d60caf6
TEST_REPO_ALIAS SCREAM

Build Information

Test Name: SCREAM_PullRequest_Autotester_Weaver

  • Build Num: 5549
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O;AT: RETEST
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA 6b407d0
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA d60caf6
TEST_REPO_ALIAS SCREAM

Using Repos:

Repo: SCREAM (jayeshkrishna/scream)
  • Branch: jayeshkrishna/diff_iotypes_for_hist_rest
  • SHA: 6b407d0
  • Mode: TEST_REPO

Pull Request Author: jayeshkrishna

@E3SM-Autotester
Copy link
Collaborator

Status Flag 'Pull Request AutoTester' - Jenkins Testing: 1 or more Jobs FAILED

Note: Testing will normally be attempted again in approx. 2 Hrs. If a change to the PR source branch occurs, the testing will be attempted again on next available autotester run.

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: SCREAM_PullRequest_Autotester_Mappy

  • Build Num: 5210
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O;AT: RETEST
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA 6b407d0
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA d60caf6
TEST_REPO_ALIAS SCREAM

Build Information

Test Name: SCREAM_PullRequest_Autotester_Weaver

  • Build Num: 5549
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O;AT: RETEST
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA 6b407d0
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA d60caf6
TEST_REPO_ALIAS SCREAM
SCREAM_PullRequest_Autotester_Mappy # 5210 FAILED (click to see last 100 lines of console output)

Starting SHAREDLIB_BUILD for test ERP_D_Lh4.ne4_ne4.F2010-SCREAMv1.mappy_gnu.scream-output-preset-1 with 1 procs
Starting SHAREDLIB_BUILD for test PET_Ln9_P32x2.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-output-preset-1 with 1 procs
Finished SETUP for test ERS_D_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-rad_frequency_2--scream-output-preset-5 in 2.548096 seconds (PASS)
Starting SHAREDLIB_BUILD for test ERS_D_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-rad_frequency_2--scream-output-preset-5 with 1 procs
Finished SHAREDLIB_BUILD for test SMS_D_Ln5.ne4pg2_oQU480.F2010-SCREAMv1-MPASSI.mappy_gnu.scream-mam4xx-optics in 55.760871 seconds (PASS)
Starting MODEL_BUILD for test SMS_D_Ln5.ne4pg2_oQU480.F2010-SCREAMv1-MPASSI.mappy_gnu.scream-mam4xx-optics with 16 procs
Finished SHAREDLIB_BUILD for test SMS_D_Ln9.ne4_ne4.F2010-SCREAMv1-noAero.mappy_gnu.scream-output-preset-3 in 54.864275 seconds (PASS)
Starting MODEL_BUILD for test SMS_D_Ln9.ne4_ne4.F2010-SCREAMv1-noAero.mappy_gnu.scream-output-preset-3 with 16 procs
Finished SHAREDLIB_BUILD for test ERS_D_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-rad_frequency_2--scream-output-preset-5 in 54.985062 seconds (PASS)
Starting MODEL_BUILD for test ERS_D_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-rad_frequency_2--scream-output-preset-5 with 16 procs
Finished SHAREDLIB_BUILD for test ERS_P16_Ln22.ne30_ne30.F2010-SCREAMv1-DP-DYCOMSrf01.mappy_gnu in 71.300762 seconds (PASS)
Starting MODEL_BUILD for test ERS_P16_Ln22.ne30_ne30.F2010-SCREAMv1-DP-DYCOMSrf01.mappy_gnu with 16 procs
Finished SHAREDLIB_BUILD for test ERS_Ln9.ne4_ne4.F2000-SCREAMv1-AQP1.mappy_gnu.scream-output-preset-2 in 69.824387 seconds (PASS)
Finished SHAREDLIB_BUILD for test PET_Ln9_P32x2.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-output-preset-1 in 81.700035 seconds (PASS)
Finished SHAREDLIB_BUILD for test ERP_D_Lh4.ne4_ne4.F2010-SCREAMv1.mappy_gnu.scream-output-preset-1 in 168.285887 seconds (PASS)
Finished SHAREDLIB_BUILD for test ERP_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-output-preset-4 in 194.755793 seconds (PASS)
Starting MODEL_BUILD for test ERS_Ln9.ne4_ne4.F2000-SCREAMv1-AQP1.mappy_gnu.scream-output-preset-2 with 16 procs
Finished MODEL_BUILD for test SMS_D_Ln5.ne4pg2_oQU480.F2010-SCREAMv1-MPASSI.mappy_gnu.scream-mam4xx-optics in 172.367843 seconds (PASS)
Starting RUN for test SMS_D_Ln5.ne4pg2_oQU480.F2010-SCREAMv1-MPASSI.mappy_gnu.scream-mam4xx-optics with 1 proc on interactive node and 64 procs on compute nodes
Finished RUN for test SMS_D_Ln5.ne4pg2_oQU480.F2010-SCREAMv1-MPASSI.mappy_gnu.scream-mam4xx-optics in 0.997873 seconds (PEND). [COMPLETED 1 of 8]
Starting MODEL_BUILD for test ERP_D_Lh4.ne4_ne4.F2010-SCREAMv1.mappy_gnu.scream-output-preset-1 with 16 procs
Finished MODEL_BUILD for test SMS_D_Ln9.ne4_ne4.F2010-SCREAMv1-noAero.mappy_gnu.scream-output-preset-3 in 175.226826 seconds (PASS)
Starting RUN for test SMS_D_Ln9.ne4_ne4.F2010-SCREAMv1-noAero.mappy_gnu.scream-output-preset-3 with 1 proc on interactive node and 64 procs on compute nodes
Finished RUN for test SMS_D_Ln9.ne4_ne4.F2010-SCREAMv1-noAero.mappy_gnu.scream-output-preset-3 in 0.954770 seconds (PEND). [COMPLETED 2 of 8]
Starting MODEL_BUILD for test ERP_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-output-preset-4 with 16 procs
Finished MODEL_BUILD for test ERS_D_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-rad_frequency_2--scream-output-preset-5 in 176.890720 seconds (PASS)
Starting RUN for test ERS_D_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-rad_frequency_2--scream-output-preset-5 with 1 proc on interactive node and 64 procs on compute nodes
Finished RUN for test ERS_D_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-rad_frequency_2--scream-output-preset-5 in 1.018984 seconds (PEND). [COMPLETED 3 of 8]
Starting MODEL_BUILD for test PET_Ln9_P32x2.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-output-preset-1 with 16 procs
Finished MODEL_BUILD for test ERS_P16_Ln22.ne30_ne30.F2010-SCREAMv1-DP-DYCOMSrf01.mappy_gnu in 325.355836 seconds (PASS)
Starting RUN for test ERS_P16_Ln22.ne30_ne30.F2010-SCREAMv1-DP-DYCOMSrf01.mappy_gnu with 1 proc on interactive node and 16 procs on compute nodes
Finished RUN for test ERS_P16_Ln22.ne30_ne30.F2010-SCREAMv1-DP-DYCOMSrf01.mappy_gnu in 4.634540 seconds (PEND). [COMPLETED 4 of 8]
Finished MODEL_BUILD for test ERS_Ln9.ne4_ne4.F2000-SCREAMv1-AQP1.mappy_gnu.scream-output-preset-2 in 299.288888 seconds (PASS)
Starting RUN for test ERS_Ln9.ne4_ne4.F2000-SCREAMv1-AQP1.mappy_gnu.scream-output-preset-2 with 1 proc on interactive node and 64 procs on compute nodes
Finished RUN for test ERS_Ln9.ne4_ne4.F2000-SCREAMv1-AQP1.mappy_gnu.scream-output-preset-2 in 0.962502 seconds (PEND). [COMPLETED 5 of 8]
Finished MODEL_BUILD for test PET_Ln9_P32x2.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-output-preset-1 in 361.782929 seconds (PASS)
Starting RUN for test PET_Ln9_P32x2.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-output-preset-1 with 1 proc on interactive node and 64 procs on compute nodes
Finished RUN for test PET_Ln9_P32x2.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-output-preset-1 in 1.028739 seconds (PEND). [COMPLETED 6 of 8]
Finished MODEL_BUILD for test ERP_D_Lh4.ne4_ne4.F2010-SCREAMv1.mappy_gnu.scream-output-preset-1 in 450.146459 seconds (PASS)
Starting RUN for test ERP_D_Lh4.ne4_ne4.F2010-SCREAMv1.mappy_gnu.scream-output-preset-1 with 1 proc on interactive node and 64 procs on compute nodes
Finished RUN for test ERP_D_Lh4.ne4_ne4.F2010-SCREAMv1.mappy_gnu.scream-output-preset-1 in 1.086716 seconds (PEND). [COMPLETED 7 of 8]
Finished MODEL_BUILD for test ERP_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-output-preset-4 in 525.933150 seconds (PASS)
Starting RUN for test ERP_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-output-preset-4 with 1 proc on interactive node and 64 procs on compute nodes
Finished RUN for test ERP_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-output-preset-4 in 0.934563 seconds (PEND). [COMPLETED 8 of 8]
Waiting for tests to finish
PASS ERP_D_Lh4.ne4_ne4.F2010-SCREAMv1.mappy_gnu.scream-output-preset-1 RUN
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERP_D_Lh4.ne4_ne4.F2010-SCREAMv1.mappy_gnu.scream-output-preset-1.C.20240415_133344_he0bs8
PASS ERP_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-output-preset-4 RUN
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERP_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-output-preset-4.C.20240415_133344_he0bs8
PASS ERS_D_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-rad_frequency_2--scream-output-preset-5 RUN
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERS_D_Ln22.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-rad_frequency_2--scream-output-preset-5.C.20240415_133344_he0bs8
PASS ERS_Ln9.ne4_ne4.F2000-SCREAMv1-AQP1.mappy_gnu.scream-output-preset-2 RUN
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERS_Ln9.ne4_ne4.F2000-SCREAMv1-AQP1.mappy_gnu.scream-output-preset-2.C.20240415_133344_he0bs8
PASS ERS_P16_Ln22.ne30_ne30.F2010-SCREAMv1-DP-DYCOMSrf01.mappy_gnu RUN
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/ERS_P16_Ln22.ne30_ne30.F2010-SCREAMv1-DP-DYCOMSrf01.mappy_gnu.C.20240415_133344_he0bs8
PASS PET_Ln9_P32x2.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-output-preset-1 RUN
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/PET_Ln9_P32x2.ne4pg2_ne4pg2.F2010-SCREAMv1.mappy_gnu.scream-output-preset-1.C.20240415_133344_he0bs8
PASS SMS_D_Ln5.ne4pg2_oQU480.F2010-SCREAMv1-MPASSI.mappy_gnu.scream-mam4xx-optics RUN
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/SMS_D_Ln5.ne4pg2_oQU480.F2010-SCREAMv1-MPASSI.mappy_gnu.scream-mam4xx-optics.C.20240415_133344_he0bs8
PASS SMS_D_Ln9.ne4_ne4.F2010-SCREAMv1-noAero.mappy_gnu.scream-output-preset-3 RUN
    Case dir: /ascldap/users/e3sm-jenkins/acme/scratch/SMS_D_Ln9.ne4_ne4.F2010-SCREAMv1-noAero.mappy_gnu.scream-output-preset-3.C.20240415_133344_he0bs8
test-scheduler took 798.2238898277283 seconds'
+ [[ 0 != 0 ]]
+ set +x
######################################################
FAILS DETECTED:
  SCREAM STANDALONE TESTING FAILED!
Build type full_sp_debug failed at testing time. Here's a list of failed tests:
176:shoc_tests_omp16

Error(s) occurred during test phase
OVERALL STATUS: FAIL
Starting analysis on mappy with cmd: cd /home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5210/scream/components/eamxx && module purge && module load sems-archive-env acme-env acme-cmake/3.26.3 acme-gcc/11.2.0 sems-archive-git/2.10.1 acme-openmpi/4.1.4 acme-netcdf/4.7.4/acme && export GATOR_INITIAL_MB=4000MB && export OMP_PROC_BIND=spread && true && ./scripts/test-all-scream --baseline-dir AUTO $compiler -p -c EKAT_DISABLE_TPL_WARNINGS=ON -i -m mappy
RUN: cd /home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5210/scream/components/eamxx && module purge && module load sems-archive-env acme-env acme-cmake/3.26.3 acme-gcc/11.2.0 sems-archive-git/2.10.1 acme-openmpi/4.1.4 acme-netcdf/4.7.4/acme && export GATOR_INITIAL_MB=4000MB && export OMP_PROC_BIND=spread && true && ./scripts/test-all-scream --baseline-dir AUTO $compiler -p -c EKAT_DISABLE_TPL_WARNINGS=ON -i -m mappy
FROM: /home/e3sm-jenkins/jenkins-ws/workspace/SCREAM_PullRequest_Autotester_Mappy/5210/scream/components/eamxx
mappy failed
######################################################
Build step 'Execute shell' marked build as failure
$ ssh-agent -k
unset SSH_AUTH_SOCK;
unset SSH_AGENT_PID;
echo Agent pid 130666 killed;
[ssh-agent] Stopped.
Performing Post build task...
Match found for : : True
Logical operation result is TRUE
Running script : #!/bin/bash -le

cd $WORKSPACE/${BUILD_ID}/

./scream/components/eamxx/scripts/jenkins/jenkins_cleanup.sh

We're having issues with some test-launcher job hanging forever. So let's make sure we clean all penting test-launcher jobs

squeue -o"%.7i %u %40j" | grep e3sm-jenkins | grep test-launcher | awk '{ print $1 }' | xargs -r scancel

[SCREAM_PullRequest_Autotester_Mappy] $ /bin/bash -le /tmp/jenkins7290744322937457774.sh
POST BUILD TASK : SUCCESS
END OF POST BUILD TASK : 0
Sending e-mails to: [email protected]
Finished: FAILURE

SCREAM_PullRequest_Autotester_Weaver # 5549 PASSED (click to see last 100 lines of console output)

        Start 111: shoc_p3_nudging_glob_novert
111/128 Test #111: shoc_p3_nudging_glob_novert .............................   Passed    1.89 sec
        Start 112: homme_shoc_cld_p3_rrtmgp_np1
112/128 Test #112: homme_shoc_cld_p3_rrtmgp_np1 ............................   Passed    4.42 sec
        Start 113: homme_shoc_cld_p3_rrtmgp_baseline_cmp
113/128 Test #113: homme_shoc_cld_p3_rrtmgp_baseline_cmp ...................   Passed    0.50 sec
        Start 114: homme_shoc_cld_p3_rrtmgp_pg2_np1
114/128 Test #114: homme_shoc_cld_p3_rrtmgp_pg2_np1 ........................   Passed    4.17 sec
        Start 115: homme_shoc_cld_p3_rrtmgp_pg2_baseline_cmp
115/128 Test #115: homme_shoc_cld_p3_rrtmgp_pg2_baseline_cmp ...............   Passed    0.17 sec
        Start 116: model_baseline
116/128 Test #116: model_baseline ..........................................   Passed    5.51 sec
        Start 117: model_initial
117/128 Test #117: model_initial ...........................................   Passed    4.31 sec
        Start 118: model_restart
118/128 Test #118: model_restart ...........................................   Passed    5.79 sec
        Start 119: restarted_vs_monolithic_check_np1
119/128 Test #119: restarted_vs_monolithic_check_np1 .......................   Passed    0.38 sec
        Start 120: homme_shoc_cld_spa_p3_rrtmgp_np1
120/128 Test #120: homme_shoc_cld_spa_p3_rrtmgp_np1 ........................   Passed    4.76 sec
        Start 121: homme_shoc_cld_spa_p3_rrtmgp_baseline_cmp
121/128 Test #121: homme_shoc_cld_spa_p3_rrtmgp_baseline_cmp ...............   Passed    0.33 sec
        Start 122: homme_shoc_cld_spa_p3_rrtmgp_128levels_np1
122/128 Test #122: homme_shoc_cld_spa_p3_rrtmgp_128levels_np1 ..............   Passed    5.94 sec
        Start 123: homme_shoc_cld_spa_p3_rrtmgp_128levels_tend_check_np1
123/128 Test #123: homme_shoc_cld_spa_p3_rrtmgp_128levels_tend_check_np1 ...   Passed    1.85 sec
        Start 124: homme_shoc_cld_spa_p3_rrtmgp_128levels_baseline_cmp
124/128 Test #124: homme_shoc_cld_spa_p3_rrtmgp_128levels_baseline_cmp .....   Passed    1.09 sec
        Start 125: homme_shoc_cld_spa_p3_rrtmgp_dp_np1
125/128 Test #125: homme_shoc_cld_spa_p3_rrtmgp_dp_np1 .....................   Passed   17.50 sec
        Start 126: homme_shoc_cld_spa_p3_rrtmgp_dp_baseline_cmp
126/128 Test #126: homme_shoc_cld_spa_p3_rrtmgp_dp_baseline_cmp ............   Passed    0.29 sec
        Start 127: homme_shoc_cld_p3_mam_optics_rrtmgp_np1
127/128 Test #127: homme_shoc_cld_p3_mam_optics_rrtmgp_np1 .................   Passed    7.43 sec
        Start 128: homme_shoc_cld_p3_mam_optics_rrtmgp_baseline_cmp
128/128 Test #128: homme_shoc_cld_p3_mam_optics_rrtmgp_baseline_cmp ........   Passed    0.28 sec

100% tests passed, 0 tests failed out of 128

Label Time Summary:
baseline_cmp = 91.40 secproc (16 tests)
baseline_gen = 158.39 sec
proc (18 tests)
bfbhash = 0.72 secproc (1 test)
check = 0.77 sec
proc (1 test)
cld = 8.40 secproc (3 tests)
cld_fraction = 1.47 sec
proc (1 test)
cxx baseline_cmp = 11.75 secproc (2 tests)
diagnostics = 26.19 sec
proc (19 tests)
driver = 19.04 secproc (8 tests)
dynamics = 5.37 sec
proc (3 tests)
fail = 53.53 secproc (4 tests)
io = 33.17 sec
proc (12 tests)
mam4_optics = 3.71 secproc (1 test)
nudging = 6.91 sec
proc (2 tests)
p3 = 116.81 secproc (7 tests)
p3_sk = 122.92 sec
proc (2 tests)
physics = 258.01 secproc (19 tests)
remap = 4.39 sec
proc (1 test)
rrtmgp = 19.43 secproc (9 tests)
shoc = 12.02 sec
proc (7 tests)
spa = 9.48 secproc (4 tests)
surface_coupling = 1.59 sec
proc (1 test)

Total Test time (real) = 645.85 sec

Testing '''6b407d0cb6cada94d2a004adbf21ce5a3baeaa97''' for test '''release'''

RUN: taskset -c 104-155 sh -c '''SCREAM_BUILD_PARALLEL_LEVEL=52 CTEST_PARALLEL_LEVEL=1 ctest -V --output-on-failure --resource-spec-file /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5549/scream/components/eamxx/ctest-build/release/ctest_resource_file.json -DNO_SUBMIT=True -DBUILD_WORK_DIR=/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5549/scream/components/eamxx/ctest-build/release -DBUILD_NAME_MOD=release -S /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5549/scream/components/eamxx/cmake/ctest_script.cmake -DCTEST_SITE=weaver -DCMAKE_COMMAND="-C /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5549/scream/components/eamxx/cmake/machine-files/weaver.cmake -DNetCDF_Fortran_PATH=/projects/ppc64le-pwr9-rhel8/tpls/netcdf-fortran/4.6.0/gcc/11.3.0/openmpi/4.1.4/5ka6asw -DNetCDF_C_PATH=/projects/ppc64le-pwr9-rhel8/tpls/netcdf-c/4.9.0/gcc/11.3.0/openmpi/4.1.4/mdd6fth -DPnetCDF_C_PATH=/projects/ppc64le-pwr9-rhel8/tpls/parallel-netcdf/1.12.3/gcc/11.3.0/openmpi/4.1.4/52dibdr -DCMAKE_BUILD_TYPE=Release -DEKAT_DISABLE_TPL_WARNINGS='''''''''ON''''''''' -DCMAKE_CXX_COMPILER=mpicxx -DCMAKE_C_COMPILER=mpicc -DCMAKE_Fortran_COMPILER=mpifort -DSCREAM_DYNAMICS_DYCORE=HOMME -DSCREAM_TEST_MAX_TOTAL_THREADS=1 -DSCREAM_BASELINES_DIR=/home/projects/e3sm/scream/pr-autotester/master-baselines/weaver/release" '''
FROM: /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5549/scream/components/eamxx/ctest-build/release

Testing '''6b407d0cb6cada94d2a004adbf21ce5a3baeaa97''' for test '''full_sp_debug'''

RUN: taskset -c 52-103 sh -c '''SCREAM_BUILD_PARALLEL_LEVEL=52 CTEST_PARALLEL_LEVEL=1 ctest -V --output-on-failure --resource-spec-file /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5549/scream/components/eamxx/ctest-build/full_sp_debug/ctest_resource_file.json -DNO_SUBMIT=True -DBUILD_WORK_DIR=/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5549/scream/components/eamxx/ctest-build/full_sp_debug -DBUILD_NAME_MOD=full_sp_debug -S /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5549/scream/components/eamxx/cmake/ctest_script.cmake -DCTEST_SITE=weaver -DCMAKE_COMMAND="-C /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5549/scream/components/eamxx/cmake/machine-files/weaver.cmake -DNetCDF_Fortran_PATH=/projects/ppc64le-pwr9-rhel8/tpls/netcdf-fortran/4.6.0/gcc/11.3.0/openmpi/4.1.4/5ka6asw -DNetCDF_C_PATH=/projects/ppc64le-pwr9-rhel8/tpls/netcdf-c/4.9.0/gcc/11.3.0/openmpi/4.1.4/mdd6fth -DPnetCDF_C_PATH=/projects/ppc64le-pwr9-rhel8/tpls/parallel-netcdf/1.12.3/gcc/11.3.0/openmpi/4.1.4/52dibdr -DCMAKE_BUILD_TYPE=Debug -DEKAT_DEFAULT_BFB=True -DSCREAM_DOUBLE_PRECISION=False -DEKAT_DISABLE_TPL_WARNINGS='''''''''ON''''''''' -DCMAKE_CXX_COMPILER=mpicxx -DCMAKE_C_COMPILER=mpicc -DCMAKE_Fortran_COMPILER=mpifort -DSCREAM_DYNAMICS_DYCORE=HOMME -DSCREAM_TEST_MAX_TOTAL_THREADS=1 -DSCREAM_BASELINES_DIR=/home/projects/e3sm/scream/pr-autotester/master-baselines/weaver/full_sp_debug" '''
FROM: /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5549/scream/components/eamxx/ctest-build/full_sp_debug

Testing '''6b407d0cb6cada94d2a004adbf21ce5a3baeaa97''' for test '''full_debug'''

RUN: taskset -c 0-51 sh -c '''SCREAM_BUILD_PARALLEL_LEVEL=52 CTEST_PARALLEL_LEVEL=1 ctest -V --output-on-failure --resource-spec-file /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5549/scream/components/eamxx/ctest-build/full_debug/ctest_resource_file.json -DNO_SUBMIT=True -DBUILD_WORK_DIR=/home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5549/scream/components/eamxx/ctest-build/full_debug -DBUILD_NAME_MOD=full_debug -S /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5549/scream/components/eamxx/cmake/ctest_script.cmake -DCTEST_SITE=weaver -DCMAKE_COMMAND="-C /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5549/scream/components/eamxx/cmake/machine-files/weaver.cmake -DNetCDF_Fortran_PATH=/projects/ppc64le-pwr9-rhel8/tpls/netcdf-fortran/4.6.0/gcc/11.3.0/openmpi/4.1.4/5ka6asw -DNetCDF_C_PATH=/projects/ppc64le-pwr9-rhel8/tpls/netcdf-c/4.9.0/gcc/11.3.0/openmpi/4.1.4/mdd6fth -DPnetCDF_C_PATH=/projects/ppc64le-pwr9-rhel8/tpls/parallel-netcdf/1.12.3/gcc/11.3.0/openmpi/4.1.4/52dibdr -DCMAKE_BUILD_TYPE=Debug -DEKAT_DEFAULT_BFB=True -DEKAT_DISABLE_TPL_WARNINGS='''''''''ON''''''''' -DCMAKE_CXX_COMPILER=mpicxx -DCMAKE_C_COMPILER=mpicc -DCMAKE_Fortran_COMPILER=mpifort -DSCREAM_DYNAMICS_DYCORE=HOMME -DSCREAM_TEST_MAX_TOTAL_THREADS=1 -DSCREAM_BASELINES_DIR=/home/projects/e3sm/scream/pr-autotester/master-baselines/weaver/full_debug" '''
FROM: /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5549/scream/components/eamxx/ctest-build/full_debug
OVERALL STATUS: PASS
Starting analysis on weaver with cmd: cd /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5549/scream/components/eamxx && source /etc/profile.d/modules.sh && module purge && module load cmake/3.25.1 git/2.39.1 python/3.10.8 py-netcdf4/1.5.8 gcc/11.3.0 cuda/11.8.0 openmpi netcdf-c netcdf-fortran parallel-netcdf netlib-lapack && true && bsub -I -q rhel8 -n 4 -gpu num=4 ./scripts/test-all-scream --baseline-dir AUTO $compiler -p -c EKAT_DISABLE_TPL_WARNINGS=ON -i -m weaver
RUN: cd /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5549/scream/components/eamxx && source /etc/profile.d/modules.sh && module purge && module load cmake/3.25.1 git/2.39.1 python/3.10.8 py-netcdf4/1.5.8 gcc/11.3.0 cuda/11.8.0 openmpi netcdf-c netcdf-fortran parallel-netcdf netlib-lapack && true && bsub -I -q rhel8 -n 4 -gpu num=4 ./scripts/test-all-scream --baseline-dir AUTO $compiler -p -c EKAT_DISABLE_TPL_WARNINGS=ON -i -m weaver
FROM: /home/e3sm-jenkins/weaver/workspace/SCREAM_PullRequest_Autotester_Weaver/5549/scream/components/eamxx
Completed analysis on weaver'

  • [[ 0 != 0 ]]
  • [[ 1 == 0 ]]
  • [[ weaver == \m\a\p\p\y ]]
  • set +x
    Performing Post build task...
    Match found for : : True
    Logical operation result is TRUE
    Running script : #!/bin/bash -le

cd $WORKSPACE/${BUILD_ID}/

./scream/components/eamxx/scripts/jenkins/jenkins_cleanup.sh
[SCREAM_PullRequest_Autotester_Weaver] $ /bin/bash -le /tmp/jenkins369975339321592334.sh
POST BUILD TASK : SUCCESS
END OF POST BUILD TASK : 0
Finished: SUCCESS

@E3SM-Autotester E3SM-Autotester removed the AT: RETEST Force the autotester (AT) to retest the PR label Apr 15, 2024
@E3SM-Autotester
Copy link
Collaborator

Status Flag 'Pull Request AutoTester' - Testing Jenkins Projects:

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: SCREAM_PullRequest_Autotester_Mappy

  • Build Num: 5211
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA 6b407d0
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA d60caf6
TEST_REPO_ALIAS SCREAM

Build Information

Test Name: SCREAM_PullRequest_Autotester_Weaver

  • Build Num: 5550
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA 6b407d0
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA d60caf6
TEST_REPO_ALIAS SCREAM

Using Repos:

Repo: SCREAM (jayeshkrishna/scream)
  • Branch: jayeshkrishna/diff_iotypes_for_hist_rest
  • SHA: 6b407d0
  • Mode: TEST_REPO

Pull Request Author: jayeshkrishna

@E3SM-Autotester
Copy link
Collaborator

Status Flag 'Pull Request AutoTester' - Jenkins Testing: all Jobs PASSED

Pull Request Auto Testing has PASSED (click to expand)

Build Information

Test Name: SCREAM_PullRequest_Autotester_Mappy

  • Build Num: 5211
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA 6b407d0
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA d60caf6
TEST_REPO_ALIAS SCREAM

Build Information

Test Name: SCREAM_PullRequest_Autotester_Weaver

  • Build Num: 5550
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA 6b407d0
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA d60caf6
TEST_REPO_ALIAS SCREAM

@E3SM-Autotester
Copy link
Collaborator

Status Flag 'Pre-Merge Inspection' - - This Pull Request Requires Inspection... The code must be inspected by a member of the Team before Testing/Merging
THE LAST COMMIT TO THIS PULL REQUEST HAS BEEN REVIEWED, BUT NOT ACCEPTED OR REQUIRES CHANGES!

@E3SM-Autotester
Copy link
Collaborator

All Jobs Finished; status = PASSED, target_sha=d60caf628c909505442693c42f0a291bbbd17c81, However Inspection must be performed before merge can occur...

@E3SM-Autotester
Copy link
Collaborator

Status Flag 'Pull Request AutoTester' - AutoMerge IS ENABLED, but the Label AT: AUTOMERGE is not set. Either set Label AT: AUTOMERGE or manually merge the PR...

@AaronDonahue
Copy link
Contributor

@jayeshkrishna , with the upstream merge in place and this PR passing the AT and approved is it safe to say this is ready to go in?

@jayeshkrishna
Copy link
Contributor Author

Yes, this PR should be ready to merge.

@E3SM-Autotester
Copy link
Collaborator

The base branch has been updated since the last successful testing.

  • last PASS base branch sha: d60caf6
  • current base branch sha : 17db7f0
    The AutoTester will discard the last PASS, and re-test the PR from scratch

@E3SM-Autotester
Copy link
Collaborator

Status Flag 'Pull Request AutoTester' - Testing Jenkins Projects:

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: SCREAM_PullRequest_Autotester_Mappy

  • Build Num: 5214
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA 6b407d0
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA d60caf6
TEST_REPO_ALIAS SCREAM

Build Information

Test Name: SCREAM_PullRequest_Autotester_Weaver

  • Build Num: 5553
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA 6b407d0
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA d60caf6
TEST_REPO_ALIAS SCREAM

Using Repos:

Repo: SCREAM (jayeshkrishna/scream)
  • Branch: jayeshkrishna/diff_iotypes_for_hist_rest
  • SHA: 6b407d0
  • Mode: TEST_REPO

Pull Request Author: jayeshkrishna

@E3SM-Autotester
Copy link
Collaborator

Status Flag 'Pull Request AutoTester' - Jenkins Testing: all Jobs PASSED

Pull Request Auto Testing has PASSED (click to expand)

Build Information

Test Name: SCREAM_PullRequest_Autotester_Mappy

  • Build Num: 5214
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA 6b407d0
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA d60caf6
TEST_REPO_ALIAS SCREAM

Build Information

Test Name: SCREAM_PullRequest_Autotester_Weaver

  • Build Num: 5553
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA 6b407d0
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA d60caf6
TEST_REPO_ALIAS SCREAM

@E3SM-Autotester
Copy link
Collaborator

Status Flag 'Pull Request AutoTester' - AutoMerge IS ENABLED, but the Label AT: AUTOMERGE is not set. Either set Label AT: AUTOMERGE or manually merge the PR...

@E3SM-Autotester
Copy link
Collaborator

The base branch has been updated since the last successful testing.

  • last PASS base branch sha: 17db7f0
  • current base branch sha : 6137460
    The AutoTester will discard the last PASS, and re-test the PR from scratch

@bartgol bartgol added the AT: AUTOMERGE Inform the autotester (AT) that it can merge this PR if reviewers approved, and tests pass label Apr 17, 2024
@bartgol
Copy link
Contributor

bartgol commented Apr 17, 2024

I added automerge, since I believe there was no reason to hold off the merge. The AT will test once more (since master has changed since last PASS), then will merge.

@E3SM-Autotester
Copy link
Collaborator

Status Flag 'Pull Request AutoTester' - Testing Jenkins Projects:

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: SCREAM_PullRequest_Autotester_Mappy

  • Build Num: 5225
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O;AT: AUTOMERGE
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA 6b407d0
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA d60caf6
TEST_REPO_ALIAS SCREAM

Build Information

Test Name: SCREAM_PullRequest_Autotester_Weaver

  • Build Num: 5560
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O;AT: AUTOMERGE
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA 6b407d0
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA d60caf6
TEST_REPO_ALIAS SCREAM

Using Repos:

Repo: SCREAM (jayeshkrishna/scream)
  • Branch: jayeshkrishna/diff_iotypes_for_hist_rest
  • SHA: 6b407d0
  • Mode: TEST_REPO

Pull Request Author: jayeshkrishna

@E3SM-Autotester
Copy link
Collaborator

Status Flag 'Pull Request AutoTester' - Jenkins Testing: all Jobs PASSED

Pull Request Auto Testing has PASSED (click to expand)

Build Information

Test Name: SCREAM_PullRequest_Autotester_Mappy

  • Build Num: 5225
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O;AT: AUTOMERGE
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA 6b407d0
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA d60caf6
TEST_REPO_ALIAS SCREAM

Build Information

Test Name: SCREAM_PullRequest_Autotester_Weaver

  • Build Num: 5560
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS enhancement;BFB;I/O;AT: AUTOMERGE
PULLREQUESTNUM 2754
SCREAM_SOURCE_REPO https://github.com/jayeshkrishna/scream
SCREAM_SOURCE_SHA 6b407d0
SCREAM_TARGET_BRANCH master
SCREAM_TARGET_REPO https://github.com/E3SM-Project/scream
SCREAM_TARGET_SHA d60caf6
TEST_REPO_ALIAS SCREAM

@E3SM-Autotester E3SM-Autotester merged commit 982d8d1 into E3SM-Project:master Apr 17, 2024
9 checks passed
@E3SM-Autotester E3SM-Autotester removed the AT: AUTOMERGE Inform the autotester (AT) that it can merge this PR if reviewers approved, and tests pass label Apr 17, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
BFB Bit for bit enhancement New feature or request I/O
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants