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

Fixes to SEACAS-Snapshot-01-2025 #13782

Merged

Conversation

gsjaardema
Copy link
Contributor

@trilinos/seacas

Motivation

Related Issues

Stakeholder Feedback

Testing

@gsjaardema gsjaardema added pkg: seacas AT: RETEST Causes the PR autotester to run a new round of PR tests on the next iteration AT: AUTOMERGE Causes the PR autotester to automatically merge the PR branch once approvals are completed PA: Data Services Issues that fall under the Trilinos Data Services Product Area client: Albany Issue impacting the Albany project client: Nalu labels Feb 4, 2025
@gsjaardema gsjaardema self-assigned this Feb 4, 2025
@gsjaardema gsjaardema requested a review from a team as a code owner February 4, 2025 19:57
@gsjaardema
Copy link
Contributor Author

This is the portion of the patch / PR that is causing @spdomin problem:

         Ioss::SerializeIO serializeIO_(this);
-        m_timestepCount = ex_inquire_int(get_file_pointer(), EX_INQ_TIME);
-      }
-	// Need to sync timestep count across ranks if parallel...
-	if (isParallel) {
-	  auto min_timestep_count = util().global_minmax(m_timestepCount, Ioss::ParallelUtils::DO_MIN);
-	  if (min_timestep_count == 0) {
-	    auto max_timestep_count = util().global_minmax(m_timestepCount, Ioss::ParallelUtils::DO_MAX);
-	    if (max_timestep_count != 0) {
-	      if (myProcessor == 0) {
-		// NOTE: Don't want to warn on all processors if the
-		// timestep count is zero on some, but not all ranks.
-		fmt::print(Ioss::WarnOut(),
-			   "At least one database has no timesteps.  No times will be read on ANY"
-			   " database for consistency.\n");
-	      }
-	    }
-	  }
-	  m_timestepCount = min_timestep_count;
-	}
-	
-        if (m_timestepCount <= 0) {
-          return;
+        timestepCount       = ex_inquire_int(get_file_pointer(), EX_INQ_TIME);
+        int exTimestepCount = timestepCount;
+        // Need to sync timestep count across ranks if parallel...
+        if (isParallel) {
+          auto min_timestep_count =
+              util().global_minmax(timestepCount, Ioss::ParallelUtils::DO_MIN);
+          if (min_timestep_count == 0) {
+            auto max_timestep_count =
+                util().global_minmax(timestepCount, Ioss::ParallelUtils::DO_MAX);
+            if (max_timestep_count != 0) {
+              if (myProcessor == 0) {
+                // NOTE: Don't want to warn on all processors if the
+                // timestep count is zero on some, but not all ranks.
+                fmt::print(Ioss::WarnOut(),
+                           "At least one database has no timesteps.  No times will be read on ANY"
+                           " database for consistency.\n");
+              }
+            }
+          }
+          timestepCount = min_timestep_count;
+        }
+
+        if (timestepCount <= 0) {
+          return tsteps;

In the pre-patched code, the serialize_io is terminated right after calling the timestep count inquiry; in the new code, we stay in the serialize_io block and then do the mpi calls which does not work.

Should have a fix soon.

@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pre-Test Inspection' - Auto Inspected - Inspection is Not Necessary for this Pull Request.

@gsjaardema gsjaardema force-pushed the SEACAS-Snapshot-fix1 branch from b848a63 to 1632040 Compare February 4, 2025 20:31
@trilinos-autotester
Copy link
Contributor

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: PR_gcc-openmpi-openmp

  • Build Num: 1077
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel8_sems-gnu-8.5.0-openmpi-4.1.6-openmp_release-debug_static_no-kokkos-arch_no-asan_no-complex_no-fpic_mpi_no-pt_no-rdc_no-uvm_deprecated-on_no-package-enables
PR_LABELS pkg: seacas;AT: RETEST;AT: AUTOMERGE;PA: Data Services;client: Albany;client: Nalu
PULLREQUESTNUM 13782
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL rhel8
TRILINOS_SOURCE_REPO https://github.com/gsjaardema/Trilinos
TRILINOS_SOURCE_SHA acc3b1c
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA f251642

Build Information

Test Name: PR_gcc

  • Build Num: 1127
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
BLOCKING_BUILD false
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel8_sems-gnu-8.5.0-serial_release-debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_no-mpi_no-pt_no-rdc_no-uvm_deprecated-on_no-package-enables
PR_LABELS pkg: seacas;AT: RETEST;AT: AUTOMERGE;PA: Data Services;client: Albany;client: Nalu
PULLREQUESTNUM 13782
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL rhel8
TRILINOS_SOURCE_REPO https://github.com/gsjaardema/Trilinos
TRILINOS_SOURCE_SHA acc3b1c
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA f251642

Build Information

Test Name: PR_gcc-openmpi_debug

  • Build Num: 1128
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel8_sems-gnu-8.5.0-openmpi-4.1.6-serial_debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_mpi_no-pt_no-rdc_no-uvm_deprecated-on_no-package-enables
PR_LABELS pkg: seacas;AT: RETEST;AT: AUTOMERGE;PA: Data Services;client: Albany;client: Nalu
PULLREQUESTNUM 13782
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL rhel8
TRILINOS_SOURCE_REPO https://github.com/gsjaardema/Trilinos
TRILINOS_SOURCE_SHA acc3b1c
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA f251642

Build Information

Test Name: PR_clang

  • Build Num: 1126
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel8_sems-clang-11.0.1-openmpi-4.0.5-serial_release-debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_mpi_no-pt_no-rdc_no-uvm_deprecated-on_no-package-enables
PR_LABELS pkg: seacas;AT: RETEST;AT: AUTOMERGE;PA: Data Services;client: Albany;client: Nalu
PULLREQUESTNUM 13782
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL rhel8
TRILINOS_SOURCE_REPO https://github.com/gsjaardema/Trilinos
TRILINOS_SOURCE_SHA acc3b1c
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA f251642

Build Information

Test Name: PR_cuda

  • Build Num: 1125
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel8_sems-cuda-11.4.2-gnu-10.1.0-openmpi-4.1.6_release_static_Volta70_no-asan_complex_no-fpic_mpi_pt_no-rdc_no-uvm_deprecated-on_no-package-enables
PR_LABELS pkg: seacas;AT: RETEST;AT: AUTOMERGE;PA: Data Services;client: Albany;client: Nalu
PULLREQUESTNUM 13782
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL rhel8-gpu
TRILINOS_SOURCE_REPO https://github.com/gsjaardema/Trilinos
TRILINOS_SOURCE_SHA acc3b1c
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA f251642

Build Information

Test Name: PR_intel

  • Build Num: 1046
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel8_sems-intel-2021.3-sems-openmpi-4.1.6_release-debug_shared_no-kokkos-arch_no-asan_no-complex_fpic_mpi_no-pt_no-rdc_no-uvm_deprecated-on_no-package-enables
PR_LABELS pkg: seacas;AT: RETEST;AT: AUTOMERGE;PA: Data Services;client: Albany;client: Nalu
PULLREQUESTNUM 13782
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL rhel8
TRILINOS_SOURCE_REPO https://github.com/gsjaardema/Trilinos
TRILINOS_SOURCE_SHA acc3b1c
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA f251642

Build Information

Test Name: PR_cuda-uvm

  • Build Num: 1125
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel8_sems-cuda-11.4.2-gnu-10.1.0-openmpi-4.1.6_release_static_Volta70_no-asan_complex_no-fpic_mpi_pt_no-rdc_uvm_deprecated-on_no-package-enables
PR_LABELS pkg: seacas;AT: RETEST;AT: AUTOMERGE;PA: Data Services;client: Albany;client: Nalu
PULLREQUESTNUM 13782
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL rhel8
TRILINOS_SOURCE_REPO https://github.com/gsjaardema/Trilinos
TRILINOS_SOURCE_SHA acc3b1c
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA f251642

Using Repos:

Repo: TRILINOS (gsjaardema/Trilinos)
  • Branch: SEACAS-Snapshot-fix1
  • SHA: acc3b1c
  • Mode: TEST_REPO

Pull Request Author: gsjaardema

@gsjaardema
Copy link
Contributor Author

gsjaardema commented Feb 4, 2025

@spdomin Last commit (1632040) should fix #13773

@trilinos-autotester
Copy link
Contributor

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

Note: Testing will normally be attempted again in approx. 2 Hrs 30 Mins. 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: PR_gcc-openmpi-openmp

  • Build Num: 1077
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel8_sems-gnu-8.5.0-openmpi-4.1.6-openmp_release-debug_static_no-kokkos-arch_no-asan_no-complex_no-fpic_mpi_no-pt_no-rdc_no-uvm_deprecated-on_no-package-enables
PR_LABELS pkg: seacas;AT: RETEST;AT: AUTOMERGE;PA: Data Services;client: Albany;client: Nalu
PULLREQUESTNUM 13782
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL rhel8
TRILINOS_SOURCE_REPO https://github.com/gsjaardema/Trilinos
TRILINOS_SOURCE_SHA acc3b1c
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA f251642

Build Information

Test Name: PR_gcc

  • Build Num: 1127
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
BLOCKING_BUILD false
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel8_sems-gnu-8.5.0-serial_release-debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_no-mpi_no-pt_no-rdc_no-uvm_deprecated-on_no-package-enables
PR_LABELS pkg: seacas;AT: RETEST;AT: AUTOMERGE;PA: Data Services;client: Albany;client: Nalu
PULLREQUESTNUM 13782
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL rhel8
TRILINOS_SOURCE_REPO https://github.com/gsjaardema/Trilinos
TRILINOS_SOURCE_SHA acc3b1c
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA f251642

Build Information

Test Name: PR_gcc-openmpi_debug

  • Build Num: 1128
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel8_sems-gnu-8.5.0-openmpi-4.1.6-serial_debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_mpi_no-pt_no-rdc_no-uvm_deprecated-on_no-package-enables
PR_LABELS pkg: seacas;AT: RETEST;AT: AUTOMERGE;PA: Data Services;client: Albany;client: Nalu
PULLREQUESTNUM 13782
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL rhel8
TRILINOS_SOURCE_REPO https://github.com/gsjaardema/Trilinos
TRILINOS_SOURCE_SHA acc3b1c
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA f251642

Build Information

Test Name: PR_clang

  • Build Num: 1126
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel8_sems-clang-11.0.1-openmpi-4.0.5-serial_release-debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_mpi_no-pt_no-rdc_no-uvm_deprecated-on_no-package-enables
PR_LABELS pkg: seacas;AT: RETEST;AT: AUTOMERGE;PA: Data Services;client: Albany;client: Nalu
PULLREQUESTNUM 13782
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL rhel8
TRILINOS_SOURCE_REPO https://github.com/gsjaardema/Trilinos
TRILINOS_SOURCE_SHA acc3b1c
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA f251642

Build Information

Test Name: PR_cuda

  • Build Num: 1125
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel8_sems-cuda-11.4.2-gnu-10.1.0-openmpi-4.1.6_release_static_Volta70_no-asan_complex_no-fpic_mpi_pt_no-rdc_no-uvm_deprecated-on_no-package-enables
PR_LABELS pkg: seacas;AT: RETEST;AT: AUTOMERGE;PA: Data Services;client: Albany;client: Nalu
PULLREQUESTNUM 13782
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL rhel8-gpu
TRILINOS_SOURCE_REPO https://github.com/gsjaardema/Trilinos
TRILINOS_SOURCE_SHA acc3b1c
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA f251642

Build Information

Test Name: PR_intel

  • Build Num: 1046
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel8_sems-intel-2021.3-sems-openmpi-4.1.6_release-debug_shared_no-kokkos-arch_no-asan_no-complex_fpic_mpi_no-pt_no-rdc_no-uvm_deprecated-on_no-package-enables
PR_LABELS pkg: seacas;AT: RETEST;AT: AUTOMERGE;PA: Data Services;client: Albany;client: Nalu
PULLREQUESTNUM 13782
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL rhel8
TRILINOS_SOURCE_REPO https://github.com/gsjaardema/Trilinos
TRILINOS_SOURCE_SHA acc3b1c
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA f251642

Build Information

Test Name: PR_cuda-uvm

  • Build Num: 1125
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel8_sems-cuda-11.4.2-gnu-10.1.0-openmpi-4.1.6_release_static_Volta70_no-asan_complex_no-fpic_mpi_pt_no-rdc_uvm_deprecated-on_no-package-enables
PR_LABELS pkg: seacas;AT: RETEST;AT: AUTOMERGE;PA: Data Services;client: Albany;client: Nalu
PULLREQUESTNUM 13782
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL rhel8
TRILINOS_SOURCE_REPO https://github.com/gsjaardema/Trilinos
TRILINOS_SOURCE_SHA acc3b1c
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA f251642


CDash Test Results for PR# 13782.


Wiki: How to Reproduce PR Testing Builds and Errors.

@trilinos-autotester trilinos-autotester removed the AT: RETEST Causes the PR autotester to run a new round of PR tests on the next iteration label Feb 4, 2025
@trilinos-autotester
Copy link
Contributor

Status Flag 'Pre-Test Inspection' - Auto Inspected - Inspection is Not Necessary for this Pull Request.

@trilinos-autotester
Copy link
Contributor

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: PR_gcc-openmpi-openmp

  • Build Num: 1078
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel8_sems-gnu-8.5.0-openmpi-4.1.6-openmp_release-debug_static_no-kokkos-arch_no-asan_no-complex_no-fpic_mpi_no-pt_no-rdc_no-uvm_deprecated-on_no-package-enables
PR_LABELS pkg: seacas;AT: AUTOMERGE;PA: Data Services;client: Albany;client: Nalu
PULLREQUESTNUM 13782
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL rhel8
TRILINOS_SOURCE_REPO https://github.com/gsjaardema/Trilinos
TRILINOS_SOURCE_SHA 1632040
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 4d727d3

Build Information

Test Name: PR_gcc

  • Build Num: 1128
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
BLOCKING_BUILD false
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel8_sems-gnu-8.5.0-serial_release-debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_no-mpi_no-pt_no-rdc_no-uvm_deprecated-on_no-package-enables
PR_LABELS pkg: seacas;AT: AUTOMERGE;PA: Data Services;client: Albany;client: Nalu
PULLREQUESTNUM 13782
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL rhel8
TRILINOS_SOURCE_REPO https://github.com/gsjaardema/Trilinos
TRILINOS_SOURCE_SHA 1632040
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 4d727d3

Build Information

Test Name: PR_gcc-openmpi_debug

  • Build Num: 1129
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel8_sems-gnu-8.5.0-openmpi-4.1.6-serial_debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_mpi_no-pt_no-rdc_no-uvm_deprecated-on_no-package-enables
PR_LABELS pkg: seacas;AT: AUTOMERGE;PA: Data Services;client: Albany;client: Nalu
PULLREQUESTNUM 13782
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL rhel8
TRILINOS_SOURCE_REPO https://github.com/gsjaardema/Trilinos
TRILINOS_SOURCE_SHA 1632040
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 4d727d3

Build Information

Test Name: PR_clang

  • Build Num: 1127
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel8_sems-clang-11.0.1-openmpi-4.0.5-serial_release-debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_mpi_no-pt_no-rdc_no-uvm_deprecated-on_no-package-enables
PR_LABELS pkg: seacas;AT: AUTOMERGE;PA: Data Services;client: Albany;client: Nalu
PULLREQUESTNUM 13782
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL rhel8
TRILINOS_SOURCE_REPO https://github.com/gsjaardema/Trilinos
TRILINOS_SOURCE_SHA 1632040
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 4d727d3

Build Information

Test Name: PR_cuda

  • Build Num: 1126
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel8_sems-cuda-11.4.2-gnu-10.1.0-openmpi-4.1.6_release_static_Volta70_no-asan_complex_no-fpic_mpi_pt_no-rdc_no-uvm_deprecated-on_no-package-enables
PR_LABELS pkg: seacas;AT: AUTOMERGE;PA: Data Services;client: Albany;client: Nalu
PULLREQUESTNUM 13782
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL rhel8-gpu
TRILINOS_SOURCE_REPO https://github.com/gsjaardema/Trilinos
TRILINOS_SOURCE_SHA 1632040
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 4d727d3

Build Information

Test Name: PR_intel

  • Build Num: 1047
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel8_sems-intel-2021.3-sems-openmpi-4.1.6_release-debug_shared_no-kokkos-arch_no-asan_no-complex_fpic_mpi_no-pt_no-rdc_no-uvm_deprecated-on_no-package-enables
PR_LABELS pkg: seacas;AT: AUTOMERGE;PA: Data Services;client: Albany;client: Nalu
PULLREQUESTNUM 13782
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL rhel8
TRILINOS_SOURCE_REPO https://github.com/gsjaardema/Trilinos
TRILINOS_SOURCE_SHA 1632040
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 4d727d3

Build Information

Test Name: PR_cuda-uvm

  • Build Num: 1126
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel8_sems-cuda-11.4.2-gnu-10.1.0-openmpi-4.1.6_release_static_Volta70_no-asan_complex_no-fpic_mpi_pt_no-rdc_uvm_deprecated-on_no-package-enables
PR_LABELS pkg: seacas;AT: AUTOMERGE;PA: Data Services;client: Albany;client: Nalu
PULLREQUESTNUM 13782
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL rhel8
TRILINOS_SOURCE_REPO https://github.com/gsjaardema/Trilinos
TRILINOS_SOURCE_SHA 1632040
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 4d727d3

Using Repos:

Repo: TRILINOS (gsjaardema/Trilinos)
  • Branch: SEACAS-Snapshot-fix1
  • SHA: 1632040
  • Mode: TEST_REPO

Pull Request Author: gsjaardema

@trilinos-autotester
Copy link
Contributor

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

Pull Request Auto Testing has PASSED (click to expand)

Build Information

Test Name: PR_gcc-openmpi-openmp

  • Build Num: 1078
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel8_sems-gnu-8.5.0-openmpi-4.1.6-openmp_release-debug_static_no-kokkos-arch_no-asan_no-complex_no-fpic_mpi_no-pt_no-rdc_no-uvm_deprecated-on_no-package-enables
PR_LABELS pkg: seacas;AT: AUTOMERGE;PA: Data Services;client: Albany;client: Nalu
PULLREQUESTNUM 13782
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL rhel8
TRILINOS_SOURCE_REPO https://github.com/gsjaardema/Trilinos
TRILINOS_SOURCE_SHA 1632040
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 4d727d3

Build Information

Test Name: PR_gcc

  • Build Num: 1128
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
BLOCKING_BUILD false
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel8_sems-gnu-8.5.0-serial_release-debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_no-mpi_no-pt_no-rdc_no-uvm_deprecated-on_no-package-enables
PR_LABELS pkg: seacas;AT: AUTOMERGE;PA: Data Services;client: Albany;client: Nalu
PULLREQUESTNUM 13782
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL rhel8
TRILINOS_SOURCE_REPO https://github.com/gsjaardema/Trilinos
TRILINOS_SOURCE_SHA 1632040
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 4d727d3

Build Information

Test Name: PR_gcc-openmpi_debug

  • Build Num: 1129
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel8_sems-gnu-8.5.0-openmpi-4.1.6-serial_debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_mpi_no-pt_no-rdc_no-uvm_deprecated-on_no-package-enables
PR_LABELS pkg: seacas;AT: AUTOMERGE;PA: Data Services;client: Albany;client: Nalu
PULLREQUESTNUM 13782
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL rhel8
TRILINOS_SOURCE_REPO https://github.com/gsjaardema/Trilinos
TRILINOS_SOURCE_SHA 1632040
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 4d727d3

Build Information

Test Name: PR_clang

  • Build Num: 1127
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel8_sems-clang-11.0.1-openmpi-4.0.5-serial_release-debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_mpi_no-pt_no-rdc_no-uvm_deprecated-on_no-package-enables
PR_LABELS pkg: seacas;AT: AUTOMERGE;PA: Data Services;client: Albany;client: Nalu
PULLREQUESTNUM 13782
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL rhel8
TRILINOS_SOURCE_REPO https://github.com/gsjaardema/Trilinos
TRILINOS_SOURCE_SHA 1632040
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 4d727d3

Build Information

Test Name: PR_cuda

  • Build Num: 1126
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel8_sems-cuda-11.4.2-gnu-10.1.0-openmpi-4.1.6_release_static_Volta70_no-asan_complex_no-fpic_mpi_pt_no-rdc_no-uvm_deprecated-on_no-package-enables
PR_LABELS pkg: seacas;AT: AUTOMERGE;PA: Data Services;client: Albany;client: Nalu
PULLREQUESTNUM 13782
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL rhel8-gpu
TRILINOS_SOURCE_REPO https://github.com/gsjaardema/Trilinos
TRILINOS_SOURCE_SHA 1632040
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 4d727d3

Build Information

Test Name: PR_intel

  • Build Num: 1047
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel8_sems-intel-2021.3-sems-openmpi-4.1.6_release-debug_shared_no-kokkos-arch_no-asan_no-complex_fpic_mpi_no-pt_no-rdc_no-uvm_deprecated-on_no-package-enables
PR_LABELS pkg: seacas;AT: AUTOMERGE;PA: Data Services;client: Albany;client: Nalu
PULLREQUESTNUM 13782
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL rhel8
TRILINOS_SOURCE_REPO https://github.com/gsjaardema/Trilinos
TRILINOS_SOURCE_SHA 1632040
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 4d727d3

Build Information

Test Name: PR_cuda-uvm

  • Build Num: 1126
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel8_sems-cuda-11.4.2-gnu-10.1.0-openmpi-4.1.6_release_static_Volta70_no-asan_complex_no-fpic_mpi_pt_no-rdc_uvm_deprecated-on_no-package-enables
PR_LABELS pkg: seacas;AT: AUTOMERGE;PA: Data Services;client: Albany;client: Nalu
PULLREQUESTNUM 13782
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL rhel8
TRILINOS_SOURCE_REPO https://github.com/gsjaardema/Trilinos
TRILINOS_SOURCE_SHA 1632040
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 4d727d3


CDash Test Results for PR# 13782.

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pre-Merge Inspection' - - This Pull Request Requires Inspection... The code must be inspected by a member of the Team before Testing/Merging
NO REVIEWS HAVE BEEN PERFORMED ON THIS PULL REQUEST!

@trilinos-autotester
Copy link
Contributor

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

Copy link
Contributor

@ikalash ikalash left a comment

Choose a reason for hiding this comment

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

I just verified that my build issue is resolved. Thanks for fixing it so quickly!

@gsjaardema
Copy link
Contributor Author

@ikalash @alanw0 @tokusanya If one of you have a chance, could you look at this PR and do a quick review. Thanks.

@spdomin I think this fixes your issue also

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pre-Merge Inspection' - SUCCESS: The last commit to this Pull Request has been INSPECTED AND APPROVED by [ ikalash ]!

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - Pull Request will be Automerged

@trilinos-autotester trilinos-autotester merged commit d1b229a into trilinos:develop Feb 5, 2025
17 checks passed
@trilinos-autotester
Copy link
Contributor

Merge on Pull Request# 13782: IS A SUCCESS - Pull Request successfully merged

@trilinos-autotester trilinos-autotester removed the AT: AUTOMERGE Causes the PR autotester to automatically merge the PR branch once approvals are completed label Feb 5, 2025
@gsjaardema gsjaardema deleted the SEACAS-Snapshot-fix1 branch February 5, 2025 00:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
client: Albany Issue impacting the Albany project client: Nalu PA: Data Services Issues that fall under the Trilinos Data Services Product Area pkg: seacas
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants