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

Panzer q2 mesh support #11364

Merged
merged 32 commits into from
Aug 14, 2023
Merged

Conversation

reuterb
Copy link
Contributor

@reuterb reuterb commented Dec 8, 2022

@trilinos/panzer

Motivation

Panzer is looking to support higher order meshes for various customers.
As a first step, we are looking to get a lot of the machinery in place to do so, as well as ensure second order mesh support.

Stakeholder Feedback

Testing

@reuterb reuterb added pkg: Panzer AT: WIP Causes the PR autotester to not test the PR. (Remove to allow testing to occur.) PA: Discretizations Issues that fall under the Trilinos Discretizations Product Area labels Dec 8, 2022
@reuterb reuterb requested a review from rppawlo December 8, 2022 17:31
@reuterb reuterb self-assigned this Dec 8, 2022
@reuterb
Copy link
Contributor Author

reuterb commented Dec 8, 2022

@rppawlo Putting this up as a WIP so we can look more closely at some of the changes I'm proposing. Leaving in a lot of incremental commits for now until we are sure we didn't break anything and decide the changes are reasonable.

As an FYI, I was able to get the mesh topology to the intrepid bases (one of my big concerns from the other day) fairly easily.

// For backwards compatability, allow the FE basis to supply the mesh cell topology (via the FEM base cell topo)
// If provided, use the mesh topology directly
if (meshCellTopology==Teuchos::null) {
cellTools.mapToPhysicalFrame(coords,localCoords,cellNodes,intrepidBasis_->getBaseCellTopology());
Copy link
Contributor

Choose a reason for hiding this comment

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

Why don't you pass directly the (HGRAD) basis to the mapToPhysicalFrame function?
https://github.com/trilinos/Trilinos/blob/master/packages/intrepid2/src/Cell/Intrepid2_CellTools.hpp#L1021-L1024

In fact, when you pass the topology, intrepid2 has to build the corresponding HGRAD basis.

Copy link
Contributor Author

@reuterb reuterb Jan 27, 2023

Choose a reason for hiding this comment

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

Good question. That particular bit was there from before my time, but we should examine. Would you get different behavior passing in a higher Intrepid basis for any reason? I thought so, which is why I made the change if a meshCellTopology is provided.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Anyway, my thought process was ::

  1. If the user has a first-order mesh, then cellNodes will just be cellVertices and to be compatible with computing the map, you'd want a first-order basis in that calculation.
  2. If the user has a higher-order mesh, the cellNodes is larger and corresponds with the order of the mesh.

Essentially, in either case, we are using a basis which corresponds to the mesh order to create this map.
If no mesh topology is supplied, we are using the intrepidbasis to determine the mesh topology (which will be the lowest-order topology).

Copy link
Contributor

Choose a reason for hiding this comment

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

I see your reasoning. What is the intrepidBasis? Is it the basis used for mapping between the ref element and the physical element (e.g., for affine meshes it would be HGRAD_C1, for quadratic meshes it would be HGRAD_C2)? If so, it's better to directly pass the basis, which will also work for higher order (>2) meshes.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

In this case, intrepidBasis_ is the FE basis, which at least theoretically could be any order and, generally, does not match the mesh order. As this snippet indicates, we are not explicitly constructing or carrying around an additional intrepid basis specifically for the mapping -- but rather constructing it within mapToPhysicalFrame.

If you see this as problematic, I can look into constructing a basis upstream specifically for this purpose.
I guess it may depend on if this function is called many time and a temporary basis keeps getting made over and over.
There may also be some utility to eliminating this if statement and always explicitly requiring the mesh topology (or a "mesh-order" intrepid basis, like you point out).

@reuterb reuterb force-pushed the panzer-q2-mesh-support branch from cf75055 to e009d98 Compare February 7, 2023 19:02
@reuterb reuterb removed the AT: WIP Causes the PR autotester to not test the PR. (Remove to allow testing to occur.) label Feb 7, 2023
@reuterb reuterb changed the title WIP: Panzer q2 mesh support Panzer q2 mesh support Feb 7, 2023
@reuterb reuterb marked this pull request as ready for review February 7, 2023 21:21
@reuterb
Copy link
Contributor Author

reuterb commented Feb 7, 2023

@rppawlo Ready for review, thanks.

@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: Trilinos_PR_gcc-8.3.0

  • Build Num: 1750
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-gnu-8.3.0-openmpi-1.10.7-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: Panzer;PA: Discretizations
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA e009d98
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8001753

Build Information

Test Name: Trilinos_PR_gcc-8.3.0-serial

  • Build Num: 281
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-v2-gnu-8.3.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: Panzer;PA: Discretizations
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA e009d98
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8001753

Build Information

Test Name: Trilinos_PR_gcc-8.3.0-debug

  • Build Num: 276
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-gnu-8.3.0-openmpi-1.10.7-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: Panzer;PA: Discretizations
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA e009d98
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8001753

Build Information

Test Name: Trilinos_PR_clang-11.0.1

  • Build Num: 276
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-clang-11.0.1-openmpi-1.10.7-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: Panzer;PA: Discretizations
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA e009d98
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8001753

Build Information

Test Name: Trilinos_PR_python3

  • Build Num: 1531
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-gnu-7.2.0-anaconda3-serial_debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_no-mpi_no-pt_no-rdc_no-uvm_deprecated-on_pr-framework
PR_LABELS pkg: Panzer;PA: Discretizations
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL ascic
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA e009d98
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8001753

Build Information

Test Name: Trilinos_PR_cuda-11.4.2-uvm-off

  • Build Num: 1277
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-cuda-11.4.2-sems-gnu-10.1.0-sems-openmpi-4.0.5_release_static_Volta70_no-asan_complex_no-fpic_mpi_pt_no-rdc_no-uvm_deprecated-on_no-package-enables
PR_LABELS pkg: Panzer;PA: Discretizations
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL GPU
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA e009d98
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8001753

Using Repos:

Repo: TRILINOS (reuterb/Trilinos)
  • Branch: panzer-q2-mesh-support
  • SHA: e009d98
  • Mode: TEST_REPO

Pull Request Author: reuterb

@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: Trilinos_PR_gcc-8.3.0

  • Build Num: 1750
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-gnu-8.3.0-openmpi-1.10.7-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: Panzer;PA: Discretizations
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA e009d98
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8001753

Build Information

Test Name: Trilinos_PR_gcc-8.3.0-serial

  • Build Num: 281
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-v2-gnu-8.3.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: Panzer;PA: Discretizations
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA e009d98
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8001753

Build Information

Test Name: Trilinos_PR_gcc-8.3.0-debug

  • Build Num: 276
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-gnu-8.3.0-openmpi-1.10.7-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: Panzer;PA: Discretizations
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA e009d98
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8001753

Build Information

Test Name: Trilinos_PR_clang-11.0.1

  • Build Num: 276
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-clang-11.0.1-openmpi-1.10.7-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: Panzer;PA: Discretizations
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA e009d98
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8001753

Build Information

Test Name: Trilinos_PR_python3

  • Build Num: 1531
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-gnu-7.2.0-anaconda3-serial_debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_no-mpi_no-pt_no-rdc_no-uvm_deprecated-on_pr-framework
PR_LABELS pkg: Panzer;PA: Discretizations
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL ascic
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA e009d98
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8001753

Build Information

Test Name: Trilinos_PR_cuda-11.4.2-uvm-off

  • Build Num: 1277
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-cuda-11.4.2-sems-gnu-10.1.0-sems-openmpi-4.0.5_release_static_Volta70_no-asan_complex_no-fpic_mpi_pt_no-rdc_no-uvm_deprecated-on_no-package-enables
PR_LABELS pkg: Panzer;PA: Discretizations
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL GPU
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA e009d98
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8001753


CDash Test Results for PR# 11364.


Wiki: How to Reproduce PR Testing Builds and Errors.

@reuterb reuterb added the AT: RETEST Causes the PR autotester to run a new round of PR tests on the next iteration label Feb 8, 2023
@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.

@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: Trilinos_PR_gcc-8.3.0

  • Build Num: 1753
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-gnu-8.3.0-openmpi-1.10.7-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: Panzer;AT: RETEST;PA: Discretizations
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 26231e8
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8001753

Build Information

Test Name: Trilinos_PR_gcc-8.3.0-serial

  • Build Num: 284
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-v2-gnu-8.3.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: Panzer;AT: RETEST;PA: Discretizations
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 26231e8
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8001753

Build Information

Test Name: Trilinos_PR_gcc-8.3.0-debug

  • Build Num: 279
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-gnu-8.3.0-openmpi-1.10.7-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: Panzer;AT: RETEST;PA: Discretizations
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 26231e8
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8001753

Build Information

Test Name: Trilinos_PR_clang-11.0.1

  • Build Num: 279
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-clang-11.0.1-openmpi-1.10.7-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: Panzer;AT: RETEST;PA: Discretizations
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 26231e8
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8001753

Build Information

Test Name: Trilinos_PR_python3

  • Build Num: 1534
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-gnu-7.2.0-anaconda3-serial_debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_no-mpi_no-pt_no-rdc_no-uvm_deprecated-on_pr-framework
PR_LABELS pkg: Panzer;AT: RETEST;PA: Discretizations
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL ascic
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 26231e8
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8001753

Build Information

Test Name: Trilinos_PR_cuda-11.4.2-uvm-off

  • Build Num: 1280
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-cuda-11.4.2-sems-gnu-10.1.0-sems-openmpi-4.0.5_release_static_Volta70_no-asan_complex_no-fpic_mpi_pt_no-rdc_no-uvm_deprecated-on_no-package-enables
PR_LABELS pkg: Panzer;AT: RETEST;PA: Discretizations
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL GPU
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 26231e8
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8001753

Using Repos:

Repo: TRILINOS (reuterb/Trilinos)
  • Branch: panzer-q2-mesh-support
  • SHA: 26231e8
  • Mode: TEST_REPO

Pull Request Author: reuterb

@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: Trilinos_PR_gcc-8.3.0

  • Build Num: 1753
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-gnu-8.3.0-openmpi-1.10.7-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: Panzer;AT: RETEST;PA: Discretizations
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 26231e8
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8001753

Build Information

Test Name: Trilinos_PR_gcc-8.3.0-serial

  • Build Num: 284
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-v2-gnu-8.3.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: Panzer;AT: RETEST;PA: Discretizations
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 26231e8
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8001753

Build Information

Test Name: Trilinos_PR_gcc-8.3.0-debug

  • Build Num: 279
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-gnu-8.3.0-openmpi-1.10.7-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: Panzer;AT: RETEST;PA: Discretizations
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 26231e8
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8001753

Build Information

Test Name: Trilinos_PR_clang-11.0.1

  • Build Num: 279
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-clang-11.0.1-openmpi-1.10.7-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: Panzer;AT: RETEST;PA: Discretizations
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 26231e8
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8001753

Build Information

Test Name: Trilinos_PR_python3

  • Build Num: 1534
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-gnu-7.2.0-anaconda3-serial_debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_no-mpi_no-pt_no-rdc_no-uvm_deprecated-on_pr-framework
PR_LABELS pkg: Panzer;AT: RETEST;PA: Discretizations
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL ascic
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 26231e8
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8001753

Build Information

Test Name: Trilinos_PR_cuda-11.4.2-uvm-off

  • Build Num: 1280
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-cuda-11.4.2-sems-gnu-10.1.0-sems-openmpi-4.0.5_release_static_Volta70_no-asan_complex_no-fpic_mpi_pt_no-rdc_no-uvm_deprecated-on_no-package-enables
PR_LABELS pkg: Panzer;AT: RETEST;PA: Discretizations
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL GPU
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 26231e8
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8001753


CDash Test Results for PR# 11364.

@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 8, 2023
@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
THE LAST COMMIT TO THIS PULL REQUEST HAS NOT BEEN REVIEWED YET!

@trilinos-autotester
Copy link
Contributor

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

4 similar comments
@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester trilinos-autotester added the AT: STALE Added by the PR autotester if too much time has elapsed since the last successful PR test iteration label Feb 15, 2023
@trilinos-autotester
Copy link
Contributor

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@reuterb reuterb removed the AT: STALE Added by the PR autotester if too much time has elapsed since the last successful PR test iteration label Feb 15, 2023
@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: Trilinos_PR_gcc-8.3.0

  • Build Num: 2631
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-gnu-8.3.0-openmpi-1.10.1-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: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 4f740a5
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 09c09f9

Build Information

Test Name: Trilinos_PR_gcc-8.3.0-serial

  • Build Num: 1159
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-v2-gnu-8.3.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: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 4f740a5
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 09c09f9

Build Information

Test Name: Trilinos_PR_gcc-8.3.0-debug

  • Build Num: 1151
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-gnu-8.3.0-openmpi-1.10.1-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: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 4f740a5
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 09c09f9

Build Information

Test Name: Trilinos_PR_clang-11.0.1

  • Build Num: 1150
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-clang-11.0.1-openmpi-1.10.1-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: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 4f740a5
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 09c09f9

Build Information

Test Name: Trilinos_PR_python3

  • Build Num: 2368
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-gnu-7.2.0-anaconda3-serial_debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_no-mpi_no-pt_no-rdc_no-uvm_deprecated-on_pr-framework
PR_LABELS pkg: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL ascic
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 4f740a5
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 09c09f9

Build Information

Test Name: Trilinos_PR_cuda-11.4.2-uvm-off

  • Build Num: 2153
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-cuda-11.4.2-sems-gnu-10.1.0-sems-openmpi-4.0.5_release_static_Volta70_no-asan_complex_no-fpic_mpi_pt_no-rdc_no-uvm_deprecated-on_no-package-enables
PR_LABELS pkg: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL GPU
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 4f740a5
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 09c09f9

Build Information

Test Name: Trilinos_PR_intel-2021.3

  • Build Num: 792
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-intel-2021.3-sems-openmpi-4.0.5_release-debug_shared_no-kokkos-arch_no-asan_no-complex_fpic_mpi_no-pt_no-rdc_no-uvm_deprecated-off_no-package-enables
PR_LABELS pkg: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 4f740a5
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 09c09f9

Using Repos:

Repo: TRILINOS (reuterb/Trilinos)
  • Branch: panzer-q2-mesh-support
  • SHA: 4f740a5
  • Mode: TEST_REPO

Pull Request Author: reuterb

rppawlo
rppawlo previously approved these changes Aug 11, 2023
@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: Trilinos_PR_gcc-8.3.0

  • Build Num: 2631
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-gnu-8.3.0-openmpi-1.10.1-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: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 4f740a5
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 09c09f9

Build Information

Test Name: Trilinos_PR_gcc-8.3.0-serial

  • Build Num: 1159
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-v2-gnu-8.3.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: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 4f740a5
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 09c09f9

Build Information

Test Name: Trilinos_PR_gcc-8.3.0-debug

  • Build Num: 1151
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-gnu-8.3.0-openmpi-1.10.1-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: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 4f740a5
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 09c09f9

Build Information

Test Name: Trilinos_PR_clang-11.0.1

  • Build Num: 1150
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-clang-11.0.1-openmpi-1.10.1-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: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 4f740a5
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 09c09f9

Build Information

Test Name: Trilinos_PR_python3

  • Build Num: 2368
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-gnu-7.2.0-anaconda3-serial_debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_no-mpi_no-pt_no-rdc_no-uvm_deprecated-on_pr-framework
PR_LABELS pkg: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL ascic
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 4f740a5
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 09c09f9

Build Information

Test Name: Trilinos_PR_cuda-11.4.2-uvm-off

  • Build Num: 2153
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-cuda-11.4.2-sems-gnu-10.1.0-sems-openmpi-4.0.5_release_static_Volta70_no-asan_complex_no-fpic_mpi_pt_no-rdc_no-uvm_deprecated-on_no-package-enables
PR_LABELS pkg: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL GPU
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 4f740a5
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 09c09f9

Build Information

Test Name: Trilinos_PR_intel-2021.3

  • Build Num: 792
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-intel-2021.3-sems-openmpi-4.0.5_release-debug_shared_no-kokkos-arch_no-asan_no-complex_fpic_mpi_no-pt_no-rdc_no-uvm_deprecated-off_no-package-enables
PR_LABELS pkg: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 4f740a5
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 09c09f9


CDash Test Results for PR# 11364.


Wiki: How to Reproduce PR Testing Builds and Errors.

@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: Trilinos_PR_gcc-8.3.0

  • Build Num: 2632
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-gnu-8.3.0-openmpi-1.10.1-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: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 22be6dc
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 81cd5c6

Build Information

Test Name: Trilinos_PR_gcc-8.3.0-serial

  • Build Num: 1160
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-v2-gnu-8.3.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: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 22be6dc
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 81cd5c6

Build Information

Test Name: Trilinos_PR_gcc-8.3.0-debug

  • Build Num: 1152
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-gnu-8.3.0-openmpi-1.10.1-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: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 22be6dc
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 81cd5c6

Build Information

Test Name: Trilinos_PR_clang-11.0.1

  • Build Num: 1151
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-clang-11.0.1-openmpi-1.10.1-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: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 22be6dc
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 81cd5c6

Build Information

Test Name: Trilinos_PR_python3

  • Build Num: 2369
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-gnu-7.2.0-anaconda3-serial_debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_no-mpi_no-pt_no-rdc_no-uvm_deprecated-on_pr-framework
PR_LABELS pkg: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL ascic
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 22be6dc
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 81cd5c6

Build Information

Test Name: Trilinos_PR_cuda-11.4.2-uvm-off

  • Build Num: 2154
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-cuda-11.4.2-sems-gnu-10.1.0-sems-openmpi-4.0.5_release_static_Volta70_no-asan_complex_no-fpic_mpi_pt_no-rdc_no-uvm_deprecated-on_no-package-enables
PR_LABELS pkg: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL GPU
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 22be6dc
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 81cd5c6

Build Information

Test Name: Trilinos_PR_intel-2021.3

  • Build Num: 793
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-intel-2021.3-sems-openmpi-4.0.5_release-debug_shared_no-kokkos-arch_no-asan_no-complex_fpic_mpi_no-pt_no-rdc_no-uvm_deprecated-off_no-package-enables
PR_LABELS pkg: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 22be6dc
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 81cd5c6

Using Repos:

Repo: TRILINOS (reuterb/Trilinos)
  • Branch: panzer-q2-mesh-support
  • SHA: 22be6dc
  • Mode: TEST_REPO

Pull Request Author: reuterb

@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: Trilinos_PR_gcc-8.3.0

  • Build Num: 2632
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-gnu-8.3.0-openmpi-1.10.1-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: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 22be6dc
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 81cd5c6

Build Information

Test Name: Trilinos_PR_gcc-8.3.0-serial

  • Build Num: 1160
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-v2-gnu-8.3.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: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 22be6dc
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 81cd5c6

Build Information

Test Name: Trilinos_PR_gcc-8.3.0-debug

  • Build Num: 1152
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-gnu-8.3.0-openmpi-1.10.1-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: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 22be6dc
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 81cd5c6

Build Information

Test Name: Trilinos_PR_clang-11.0.1

  • Build Num: 1151
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-clang-11.0.1-openmpi-1.10.1-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: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 22be6dc
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 81cd5c6

Build Information

Test Name: Trilinos_PR_python3

  • Build Num: 2369
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-gnu-7.2.0-anaconda3-serial_debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_no-mpi_no-pt_no-rdc_no-uvm_deprecated-on_pr-framework
PR_LABELS pkg: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL ascic
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 22be6dc
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 81cd5c6

Build Information

Test Name: Trilinos_PR_cuda-11.4.2-uvm-off

  • Build Num: 2154
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-cuda-11.4.2-sems-gnu-10.1.0-sems-openmpi-4.0.5_release_static_Volta70_no-asan_complex_no-fpic_mpi_pt_no-rdc_no-uvm_deprecated-on_no-package-enables
PR_LABELS pkg: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL GPU
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 22be6dc
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 81cd5c6

Build Information

Test Name: Trilinos_PR_intel-2021.3

  • Build Num: 793
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-intel-2021.3-sems-openmpi-4.0.5_release-debug_shared_no-kokkos-arch_no-asan_no-complex_fpic_mpi_no-pt_no-rdc_no-uvm_deprecated-off_no-package-enables
PR_LABELS pkg: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA 22be6dc
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 81cd5c6


CDash Test Results for PR# 11364.


Wiki: How to Reproduce PR Testing Builds and Errors.

@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: Trilinos_PR_gcc-8.3.0

  • Build Num: 2633
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-gnu-8.3.0-openmpi-1.10.1-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: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA ba0bc43
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 81cd5c6

Build Information

Test Name: Trilinos_PR_gcc-8.3.0-serial

  • Build Num: 1161
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-v2-gnu-8.3.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: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA ba0bc43
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 81cd5c6

Build Information

Test Name: Trilinos_PR_gcc-8.3.0-debug

  • Build Num: 1153
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-gnu-8.3.0-openmpi-1.10.1-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: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA ba0bc43
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 81cd5c6

Build Information

Test Name: Trilinos_PR_clang-11.0.1

  • Build Num: 1152
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-clang-11.0.1-openmpi-1.10.1-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: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA ba0bc43
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 81cd5c6

Build Information

Test Name: Trilinos_PR_python3

  • Build Num: 2370
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-gnu-7.2.0-anaconda3-serial_debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_no-mpi_no-pt_no-rdc_no-uvm_deprecated-on_pr-framework
PR_LABELS pkg: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL ascic
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA ba0bc43
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 81cd5c6

Build Information

Test Name: Trilinos_PR_cuda-11.4.2-uvm-off

  • Build Num: 2155
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-cuda-11.4.2-sems-gnu-10.1.0-sems-openmpi-4.0.5_release_static_Volta70_no-asan_complex_no-fpic_mpi_pt_no-rdc_no-uvm_deprecated-on_no-package-enables
PR_LABELS pkg: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL GPU
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA ba0bc43
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 81cd5c6

Build Information

Test Name: Trilinos_PR_intel-2021.3

  • Build Num: 794
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-intel-2021.3-sems-openmpi-4.0.5_release-debug_shared_no-kokkos-arch_no-asan_no-complex_fpic_mpi_no-pt_no-rdc_no-uvm_deprecated-off_no-package-enables
PR_LABELS pkg: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA ba0bc43
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 81cd5c6

Using Repos:

Repo: TRILINOS (reuterb/Trilinos)
  • Branch: panzer-q2-mesh-support
  • SHA: ba0bc43
  • Mode: TEST_REPO

Pull Request Author: reuterb

@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: Trilinos_PR_gcc-8.3.0

  • Build Num: 2633
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-gnu-8.3.0-openmpi-1.10.1-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: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA ba0bc43
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 81cd5c6

Build Information

Test Name: Trilinos_PR_gcc-8.3.0-serial

  • Build Num: 1161
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-v2-gnu-8.3.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: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA ba0bc43
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 81cd5c6

Build Information

Test Name: Trilinos_PR_gcc-8.3.0-debug

  • Build Num: 1153
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-gnu-8.3.0-openmpi-1.10.1-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: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA ba0bc43
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 81cd5c6

Build Information

Test Name: Trilinos_PR_clang-11.0.1

  • Build Num: 1152
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-clang-11.0.1-openmpi-1.10.1-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: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA ba0bc43
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 81cd5c6

Build Information

Test Name: Trilinos_PR_python3

  • Build Num: 2370
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-gnu-7.2.0-anaconda3-serial_debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_no-mpi_no-pt_no-rdc_no-uvm_deprecated-on_pr-framework
PR_LABELS pkg: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL ascic
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA ba0bc43
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 81cd5c6

Build Information

Test Name: Trilinos_PR_cuda-11.4.2-uvm-off

  • Build Num: 2155
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-cuda-11.4.2-sems-gnu-10.1.0-sems-openmpi-4.0.5_release_static_Volta70_no-asan_complex_no-fpic_mpi_pt_no-rdc_no-uvm_deprecated-on_no-package-enables
PR_LABELS pkg: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL GPU
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA ba0bc43
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 81cd5c6

Build Information

Test Name: Trilinos_PR_intel-2021.3

  • Build Num: 794
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
GENCONFIG_BUILD_NAME rhel7_sems-intel-2021.3-sems-openmpi-4.0.5_release-debug_shared_no-kokkos-arch_no-asan_no-complex_fpic_mpi_no-pt_no-rdc_no-uvm_deprecated-off_no-package-enables
PR_LABELS pkg: Panzer;PA: Discretizations;AT: PRE-TEST INSPECTED
PULLREQUESTNUM 11364
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_NODE_LABEL trilinos-any
TRILINOS_SOURCE_BRANCH panzer-q2-mesh-support
TRILINOS_SOURCE_REPO https://github.com/reuterb/Trilinos
TRILINOS_SOURCE_SHA ba0bc43
TRILINOS_SRN_CONFIG true
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 81cd5c6


CDash Test Results for PR# 11364.

@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
THE LAST COMMIT TO THIS PULL REQUEST HAS NOT BEEN REVIEWED YET!

@trilinos-autotester
Copy link
Contributor

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

@reuterb
Copy link
Contributor Author

reuterb commented Aug 11, 2023

@rppawlo Please re-approve when you have a chance. I needed to merge the develop branch in and correct one thing in the test since the L2 projection stuff won the race.

@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester
Copy link
Contributor

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

@reuterb reuterb merged commit c93a317 into trilinos:develop Aug 14, 2023
jmgate pushed a commit to tcad-charon/Trilinos that referenced this pull request Aug 15, 2023
…s:develop' (1dd3da3).

* trilinos-develop:
  Panzer q2 mesh support (trilinos#11364)
  Update GDSW_Proxy_def.hpp
  Tpetra: Oops
  Tpetra: Adding docs
  Tpetra: Adding unit labels
  Tpetra: Adding GDSW memory diagnostic XML support
  Tpetra: Adding GDSWStyle perf tests
  Tpetra: GDSW Fixes
  Tpetra: GDSW test mods
  Tpetra: Modifying test
  Tpetra: Modifying test
  Tpetra: More mods to the test
  Tpetra: Initial commit for GDSW Proxy
jmgate pushed a commit to tcad-charon/Trilinos that referenced this pull request Aug 16, 2023
…s:develop' (1dd3da3).

* trilinos-develop:
  Fix logic error when parsing --kokkos-develop flag
  Correct spec inheritance for CXX20 build
  Panzer q2 mesh support (trilinos#11364)
  Skip PR merge when using --kokkos-develop flag.
  Add flag to set Kokkos and KokkosKernels to develop
  Tpetra_Kokkos_Compat_KokkosSYCLWrapperNode->Tpetra_KokkosCompat_KokkosSYCLWrapperNode typo
  Cherry-pick kokkos/kokkos-kernels#1914
  Update GDSW_Proxy_def.hpp
  Tpetra: Oops
  Tpetra: Adding docs
  Tpetra: Adding unit labels
  Tpetra: Adding GDSW memory diagnostic XML support
  Kokkos: Disable default oneDPL support
  Tpetra: Adding GDSWStyle perf tests
  Tpetra: GDSW Fixes
  Tpetra: GDSW test mods
  Tpetra: Modifying test
  Tpetra: Modifying test
  Tpetra: More mods to the test
  Tpetra: Initial commit for GDSW Proxy
jmgate pushed a commit to tcad-charon/Trilinos that referenced this pull request Aug 16, 2023
…s:develop' (1dd3da3).

* trilinos-develop: (22 commits)
  Fix logic error when parsing --kokkos-develop flag
  Correct spec inheritance for CXX20 build
  Tpetra: Use Kokkos::Experimental::SYCLDeviceUSMSpace for KokkosSYCLWrapperNode
  Panzer q2 mesh support (trilinos#11364)
  Skip PR merge when using --kokkos-develop flag.
  Add flag to set Kokkos and KokkosKernels to develop
  Tpetra_Kokkos_Compat_KokkosSYCLWrapperNode->Tpetra_KokkosCompat_KokkosSYCLWrapperNode typo
  Cherry-pick kokkos/kokkos-kernels#1914
  Update GDSW_Proxy_def.hpp
  Tpetra: Oops
  Tpetra: Adding docs
  Tpetra: Adding unit labels
  Tpetra: Adding GDSW memory diagnostic XML support
  Kokkos: Disable default oneDPL support
  Tpetra: Adding GDSWStyle perf tests
  Tpetra: GDSW Fixes
  Tpetra: GDSW test mods
  Tpetra: Modifying test
  Tpetra: Modifying test
  Tpetra: More mods to the test
  ...
jmgate pushed a commit to tcad-charon/Trilinos that referenced this pull request Aug 16, 2023
…s:develop' (1dd3da3).

* trilinos-develop: (22 commits)
  Fix logic error when parsing --kokkos-develop flag
  Correct spec inheritance for CXX20 build
  Tpetra: Use Kokkos::Experimental::SYCLDeviceUSMSpace for KokkosSYCLWrapperNode
  Panzer q2 mesh support (trilinos#11364)
  Skip PR merge when using --kokkos-develop flag.
  Add flag to set Kokkos and KokkosKernels to develop
  Tpetra_Kokkos_Compat_KokkosSYCLWrapperNode->Tpetra_KokkosCompat_KokkosSYCLWrapperNode typo
  Cherry-pick kokkos/kokkos-kernels#1914
  Update GDSW_Proxy_def.hpp
  Tpetra: Oops
  Tpetra: Adding docs
  Tpetra: Adding unit labels
  Tpetra: Adding GDSW memory diagnostic XML support
  Kokkos: Disable default oneDPL support
  Tpetra: Adding GDSWStyle perf tests
  Tpetra: GDSW Fixes
  Tpetra: GDSW test mods
  Tpetra: Modifying test
  Tpetra: Modifying test
  Tpetra: More mods to the test
  ...
jmgate pushed a commit to tcad-charon/Trilinos that referenced this pull request Aug 16, 2023
…s:develop' (1dd3da3).

* trilinos-develop: (22 commits)
  Fix logic error when parsing --kokkos-develop flag
  Correct spec inheritance for CXX20 build
  Tpetra: Use Kokkos::Experimental::SYCLDeviceUSMSpace for KokkosSYCLWrapperNode
  Panzer q2 mesh support (trilinos#11364)
  Skip PR merge when using --kokkos-develop flag.
  Add flag to set Kokkos and KokkosKernels to develop
  Tpetra_Kokkos_Compat_KokkosSYCLWrapperNode->Tpetra_KokkosCompat_KokkosSYCLWrapperNode typo
  Cherry-pick kokkos/kokkos-kernels#1914
  Update GDSW_Proxy_def.hpp
  Tpetra: Oops
  Tpetra: Adding docs
  Tpetra: Adding unit labels
  Tpetra: Adding GDSW memory diagnostic XML support
  Kokkos: Disable default oneDPL support
  Tpetra: Adding GDSWStyle perf tests
  Tpetra: GDSW Fixes
  Tpetra: GDSW test mods
  Tpetra: Modifying test
  Tpetra: Modifying test
  Tpetra: More mods to the test
  ...
jmgate pushed a commit to tcad-charon/Trilinos that referenced this pull request Aug 16, 2023
…s:develop' (1dd3da3).

* trilinos-develop: (22 commits)
  Fix logic error when parsing --kokkos-develop flag
  Correct spec inheritance for CXX20 build
  Tpetra: Use Kokkos::Experimental::SYCLDeviceUSMSpace for KokkosSYCLWrapperNode
  Panzer q2 mesh support (trilinos#11364)
  Skip PR merge when using --kokkos-develop flag.
  Add flag to set Kokkos and KokkosKernels to develop
  Tpetra_Kokkos_Compat_KokkosSYCLWrapperNode->Tpetra_KokkosCompat_KokkosSYCLWrapperNode typo
  Cherry-pick kokkos/kokkos-kernels#1914
  Update GDSW_Proxy_def.hpp
  Tpetra: Oops
  Tpetra: Adding docs
  Tpetra: Adding unit labels
  Tpetra: Adding GDSW memory diagnostic XML support
  Kokkos: Disable default oneDPL support
  Tpetra: Adding GDSWStyle perf tests
  Tpetra: GDSW Fixes
  Tpetra: GDSW test mods
  Tpetra: Modifying test
  Tpetra: Modifying test
  Tpetra: More mods to the test
  ...
cwpearson pushed a commit to cwpearson/Trilinos that referenced this pull request Sep 19, 2023
Panzer :: Some steps to enable Q2 mesh support. Can read in a Q2 mesh and run w/ second order nodal elements.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
AT: PRE-TEST INSPECTED Required to test outside contributions. This label alone will not allow a PR to merge. PA: Discretizations Issues that fall under the Trilinos Discretizations Product Area pkg: Panzer
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants