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

Test TeuchosNumerics_LAPACK_test_MPI_1 fails in all 'debug' builds on power8 'ride' #2410

Closed
bartlettroscoe opened this issue Mar 17, 2018 · 45 comments
Labels
ATDM Env Issue Issue with ATDM build or test caused (at least partly) by the env, not a bug in Trilinos ATDM Sev: Nonblocker Problems with Trilinos that should not block ATDM APPs from getting updates client: ATDM Any issue primarily impacting the ATDM project CLOSED_DUE_TO_INACTIVITY Issue or PR has been closed by the GitHub Actions bot due to inactivity. Disabled Tests Issue has been partially addressed by disabling *all* of the failing tests related to the issue MARKED_FOR_CLOSURE Issue or PR is marked for auto-closure by the GitHub Actions bot. PA: Framework Issues that fall under the Trilinos Framework Product Area pkg: Teuchos Issues primarily dealing with the Teuchos Package stage: in review Primary work is completed and now is just waiting for human review and/or test feedback type: bug The primary issue is a bug in Trilinos code or tests

Comments

@bartlettroscoe
Copy link
Member

bartlettroscoe commented Mar 17, 2018

CC: @trilinos/teuchos

Next Action Status:

PR #2447 was merged on 3/23/2018 which disabled the test. PR #4064 which enables the whole test TeuchosNumerics_LAPACK_test_MPI_1 but disables the single unit test for STEQR() merged to 'develop' on 12/18/2018. Next: Watch for test running and passing (minus STEQR() unit test) on 'release-debug' and 'opt' builds on 'white', 'ride', and 'waterman' on 12/19/2018 ...

Description

The test TeuchosNumerics_LAPACK_test_MPI_1 segfaults on the 'debug' builds Trilinos-atdm-white-ride-cuda-debug and Trilinos-atdm-white-ride-gnu-debug-openmp on 'ride' and 'white' but passes in all of the 'opt' builds on these same machines as well as for all of the builds on hansen as shown this morning in:

The failing tests all show segfaults showing the output:

Teuchos in Trilinos 12.13 (Dev)

GESV test ... passed!
LAPY2 test ... passed!
--------------------------------------------------------------------------
mpiexec noticed that process rank 0 with PID 16320 on node white24 exited on signal 11 (Segmentation fault).
--------------------------------------------------------------------------

What is interesting is that this test only failed in all of the Trilinos builds that were done yesterday in the query:

May this be the same error reported in #1208 that we basically gave up on?

Steps to Reproduce

Following the instructions at:

one can reproduce this failing test by enabling the Teuchos package for the builds gnu-debug-openmp or cuda-debug and running the failing test.

Related issues

@bartlettroscoe bartlettroscoe added pkg: Teuchos Issues primarily dealing with the Teuchos Package client: ATDM Any issue primarily impacting the ATDM project labels Mar 17, 2018
@bartlettroscoe
Copy link
Member Author

What is strange about this is that we see only 1 failing Belos test and 2 failing Anasazi tests for the build Trilinos-atdm-white-ride-gnu-debug-openmp shown at:

and only the one Belos test looks to be segfaulting. But with the corresponding build Trilinos-atdm-white-ride-gnu-opt-openmp shown at:

there are 8 failing Belos tests and 50 failing Anasazi tests which a lot of them are segfaults but this this test TeuchosNumerics_LAPACK_test_MPI_1 is not failing in that build.

Again, I suspect this might be related to to #1208 that concluded that this compiler on this system is just broken when it comes to producing mixed-language programs.

@bartlettroscoe bartlettroscoe added type: bug The primary issue is a bug in Trilinos code or tests and removed type: bug The primary issue is a bug in Trilinos code or tests labels Mar 20, 2018
@bartlettroscoe
Copy link
Member Author

Note that this test actually passes in all of the opt builds as well as on white/ride as well as shown at:

So that compiler defect analyzed in #1208 does not seem to be impacting this test when compiler optimizations are turned on.

@bartlettroscoe
Copy link
Member Author

Since this test is passing in all of the other builds, including all of the opt builds for each compiler on each machine, I think disabling this test for these debug builds on white/ride is not a bad thing.

Do any of you @trilinos/teuchos developers have a problem with that?

I will create a PR that disables this test for just the builds where it fails which are:

  • Trilinos-atdm-white-ride-cuda-debug
  • Trilinos-atdm-white-ride-gnu-debug-openmp

I will create a PR for this.

bartlettroscoe added a commit to bartlettroscoe/Trilinos that referenced this issue Mar 23, 2018
…debug builds (trilinos#2410)

This passes in the corresponding RELEASE builds so it is okay to disable this
test in these DEBUG builds as we are not really loosing any real testing.  And
note that almost all of the Belos and Anasazi and other tests that use this
LAPACK interface pass in these DEBUG builds so disabling this one test is not
too serious.  But if someone wants to try to debug it and then turn it back
on, more power to them.

Note that this is likey related to the mix-lanauage compiler defect reported
in trilinos#1208.  That seems to be a strange compiler defect.
bartlettroscoe added a commit to bartlettroscoe/Trilinos that referenced this issue Mar 23, 2018
So we can see what tests are added or not and why.  This was useful for
checking on disabling some tests for trilinos#2410.
@bartlettroscoe
Copy link
Member Author

I created PR #2447 that disables this test for just these builds.

Can some @trilinos/teuchos developer please approve this PR? Otherwise, since this is not really changing Trilinos at all (just the ATDM Trilinos test drivers), it can't possibly break Trilinos so I will merge in a few hours. I just want to see what the auto PR tester does for a PR like this. I suspect that because it touches a *.cmake file that will result in all of Trilinos getting tested (which actually will not be testing anything because that PR does not impact any of the auto PR builds, at least not yet).

bartlettroscoe added a commit that referenced this issue Mar 23, 2018
…debug builds (#2410)

This passes in the corresponding RELEASE builds so it is okay to disable this
test in these DEBUG builds as we are not really loosing any real testing.  And
note that almost all of the Belos and Anasazi and other tests that use this
LAPACK interface pass in these DEBUG builds so disabling this one test is not
too serious.  But if someone wants to try to debug it and then turn it back
on, more power to them.

Note that this is likey related to the mix-lanauage compiler defect reported
in #1208.  That seems to be a strange compiler defect.
bartlettroscoe added a commit that referenced this issue Mar 23, 2018
So we can see what tests are added or not and why.  This was useful for
checking on disabling some tests for #2410.
@bartlettroscoe
Copy link
Member Author

The PR #2447 has been merged. These failures should go away tomorrow. Putting in review.

@bartlettroscoe bartlettroscoe added the stage: in review Primary work is completed and now is just waiting for human review and/or test feedback label Mar 23, 2018
@bartlettroscoe
Copy link
Member Author

@bartlettroscoe
Copy link
Member Author

Closing as complete for real (I seems to always forget to click that "Close and comment" button).

@bartlettroscoe bartlettroscoe removed the stage: in review Primary work is completed and now is just waiting for human review and/or test feedback label Mar 26, 2018
@bartlettroscoe bartlettroscoe added Disabled Tests Issue has been partially addressed by disabling *all* of the failing tests related to the issue Stalled Issue may have been worked some but is not completed and/or is otherwise stalled for some reason labels Apr 3, 2018
@bartlettroscoe
Copy link
Member Author

As part the updated process listed at:

I assigned the labels "Disabled Tests" and "Stalled" so I am reopening this issue. That way, people can be reminded that this is still a problem (we just avoided it by disabling tests for the ATDM builds).

@bartlettroscoe bartlettroscoe reopened this Apr 3, 2018
bartlettroscoe added a commit to bartlettroscoe/Trilinos that referenced this issue May 7, 2018
…g' builds on 'white'/'ride' (trilinos#2410)

Trying to run again with updated NetLIB BLAS and LAPACK (see trilinos#2454).
@bartlettroscoe
Copy link
Member Author

Given the updated NetLIB BLAS and LAPACK being used on 'white' and 'ride' (see #2454) I tried re-enabling the test TeuchosNumerics_LAPACK_test_MPI_1 for the 'debug' builds on 'white' and 'ride'. I tried this with the commit 7958ac7 I made locally and on 'white' I ran:

$ bsub -x -I -q rhel7F -n 16 \
   ./checkin-test-atdm.sh cuda-debug gnu-debug-openmp \
   --enable-packages=Teuchos --local-do-all

that returned:

FAILED (NOT READY TO PUSH): Trilinos: white22

Sat May  5 17:14:03 MDT 2018

Enabled Packages: Teuchos

Build test results:
-------------------
0) MPI_RELEASE_DEBUG_SHARED_PT => Test case MPI_RELEASE_DEBUG_SHARED_PT was not run! => Does not affect push readiness! (-1.00 min)
1) cuda-debug => FAILED: passed=130,notpassed=1 => Not ready to push! (1.49 min)
2) gnu-debug-openmp => FAILED: passed=130,notpassed=1 => Not ready to push! (0.97 min)

The failing tests were:

$ find . -maxdepth 2 -name ctest.out -exec grep -H "[(]Failed[)]" {} \;
./gnu-debug-openmp/ctest.out:   119 - TeuchosNumerics_LAPACK_test_MPI_1 (Failed)
./cuda-debug/ctest.out: 119 - TeuchosNumerics_LAPACK_test_MPI_1 (Failed)

The failing test output for the build gnu-debug-openmp/ showed:

Teuchos in Trilinos 12.13 (Dev)

GESV test ... passed!
LAPY2 test ... passed!
--------------------------------------------------------------------------
mpiexec noticed that process rank 0 with PID 44747 on node white22 exited on signal 11 (Segmentation fault).
--------------------------------------------------------------------------

That is identical to the failure output reported above when this Issue was first created.

Also, I verified in the configure output that the new NetLIB BLAS and LAPACK installs are indeed being used as it showed:

Processing enabled TPL: BLAS (enabled explicitly, disable with -DTPL_ENABLE_BLAS=OFF)
-- BLAS_LIBRARY_NAMES='blas blas_win32'
-- TPL_BLAS_LIBRARIES='-L/home/projects/pwr8-rhel73-lsf/netlib/3.8.0/gcc/5.4.0/lib;-lblas;-lgfortran;-lgomp;-lm'
Processing enabled TPL: LAPACK (enabled explicitly, disable with -DTPL_ENABLE_LAPACK=OFF)
-- LAPACK_LIBRARY_NAMES='lapack lapack_win32'
-- TPL_LAPACK_LIBRARIES='-L/home/projects/pwr8-rhel73-lsf/netlib/3.8.0/gcc/5.4.0/lib;-llapack;-lgfortran;-lgomp'

So whatever is causing this test to fail did not get fixed by updating BLAS and LAPACK.

Perhaps there is a real defect in the Teuchos LAPACK wrappers and/or the test code for this test?

@nmhamster
Copy link
Contributor

@bartlettroscoe - to re-comment as well, the OpenBLAS tests for the packages we install (fairly limited number) do also all pass and do have C to FORTRAN calling included. That’s what makes me wonder if this might be a deeper issue too.

@fryeguy52
Copy link
Contributor

This test is also failing on both debug builds on waterman, shown here those builds are:

  • Trilinos-atdm-waterman-gnu-debug-openmp
  • Trilinos-atdm-waterman-cuda-9.2-debug

They fail with similar output:

Teuchos in Trilinos 12.13 (Dev)

GESV test ... passed!
LAPY2 test ... passed!
-------------------------------------------------------
Primary job  terminated normally, but 1 process returned
a non-zero exit code. Per user-direction, the job has been aborted.
-------------------------------------------------------
--------------------------------------------------------------------------
mpiexec noticed that process rank 0 with PID 0 on node waterman1 exited on signal 11 (Segmentation fault).
--------------------------------------------------------------------------

Should we disable TeuchosNumerics_LAPACK_test_MPI_1 for these builds as well?

@hkthorn
Copy link
Contributor

hkthorn commented Aug 28, 2018

@fryeguy52 @bartlettroscoe Please let me know if the LAPACK test is still failing after the OpenMPI version is changed for the ATDM waterman testing.

@bartlettroscoe bartlettroscoe added PA: Framework Issues that fall under the Trilinos Framework Product Area ATDM Sev: Nonblocker Problems with Trilinos that should not block ATDM APPs from getting updates labels Nov 29, 2018
tjfulle pushed a commit to tjfulle/Trilinos that referenced this issue Dec 6, 2018
Replace working tridiagonal eigensolver with the one that causes the
seg fault on ride/white/waterman.
bartlettroscoe added a commit to bartlettroscoe/Trilinos that referenced this issue Dec 17, 2018
This is the only function that continues to segfault on Power8 and Power9
builds using NETLIB LAPACK in debug builds.  All of the Trilinos code
downstream has removed a dependence on this LAPACK function. This will allow
the rest of the LAPACK tests to be run in Power8 and Power9 'debug' builds.
bartlettroscoe added a commit to bartlettroscoe/Trilinos that referenced this issue Dec 17, 2018
…EQR() test (trilinos#2410)

At least this way we are running the Teuchos LAPACK tests for the LAPACK
functions being used downstream in Trilinos.
@bartlettroscoe
Copy link
Member Author

PR #4064 which enables the whole test TeuchosNumerics_LAPACK_test_MPI_1 but disables the single unit test for STEQR() merged to 'develop' on 12/18/2018. Next: Watch for test running and passing (minus STEQR() unit test) on 'release-debug' and 'opt' builds on 'white', 'ride', and 'waterman' on 12/19/2018 ...

Putting 'in review' awaiting results on CDash ...

@bartlettroscoe bartlettroscoe added stage: in review Primary work is completed and now is just waiting for human review and/or test feedback Disabled Tests Issue has been partially addressed by disabling *all* of the failing tests related to the issue labels Dec 18, 2018
@bartlettroscoe
Copy link
Member Author

The test TeuchosNumerics_LAPACK_test_MPI_1 is now running and passing in all of the the 'debug' builds on 'white', 'ride', and 'waterman' as shown today in this query (note the usage of the experimental OR-block filter). For example, we can see this test newly passing in the build Trilinos-atdm-white-ride-cuda-9.2-debug with test results showing:

GESV test ... passed!
LAPY2 test ... passed!
LAMCH test ... [ Double-precision eps = 1.11022e-16, single-precision eps = 5.96046e-08 ] passed!
POTRF test ... passed!
POCON test ... passed!
POTRI test ... passed!
TRTRI test ... passed!
ILAENV test ... passed!
STEQR test ... SKIPPED!
End Result: TEST PASSED

Note STEQR test ... SKIPPED! in the output.

As of right now, all of the 'debug' builds (but not the 'release-debug' builds) on 'white', 'ride', and 'waterman' have already posted to CDash and we can see this test running and passing in 32 of the ATM Trilinos builds in this query.

And there are no more disables for this test in any of the ATDM Trilinos builds as shown on 'develop' just now by the commands:

$ git log-short --name-status -1
b0fd3c1 "Merge Pull Request #4083 from mhoemmen/Trilinos/Fix-4080"
Author: trilinos-autotester <[email protected]>
Date:   Wed Dec 19 06:39:32 2018 -0700 (47 minutes ago)

$ find cmake/std/atdm/ -name "*.cmake" -exec grep -nH TeuchosNumerics_LAPACK_test_MPI_1 {} \;
[empty]

Therefore, I think this is sufficient evidence that this test is running and passing in every ATM Trilinos build, including all of the 'debug' builds on 'white', 'ride', and 'waterman'. The only thing that is not running is the STEQR() unit test and that unit test is only disabled on the IBM Power8 'white/ride'and Power9 'waterman' machines.

I have added the "Disabled Tests" label but I actually think now that we have got Trilinos to stop using this LAPACK STEQR() function that we should actually close this issue. Agree?

bartlettroscoe added a commit that referenced this issue Oct 25, 2019
This got removed by accident as part of an ealier refactoring to a single
Tweaks.cmake file.  This should allow this test to pass now (without this
single unit test).
trilinos-autotester added a commit that referenced this issue Oct 25, 2019
…steqr-test-disable

Automatically Merged using Trilinos Pull Request AutoTester
PR Title: Add back TeuchosNumerics_DISABLE_STEQR_TEST=ON (#2410, #6166)
PR Author: bartlettroscoe
jmgate pushed a commit to tcad-charon/Trilinos that referenced this issue Oct 26, 2019
…s:develop' (19158f2).

* trilinos-develop:
  Add back TeuchosNumerics_DISABLE_STEQR_TEST=ON (trilinos#2410, trilinos#6166)
  MueLu: fixed build error
  kokkos-kernels: update gcc check for c++14 workaround macro
  Ifpack2 ScaledDampedResidual: Cache vectors
  Tpetra/MueLu: switched performance tests to StackedTimer
jmgate pushed a commit to tcad-charon/Trilinos that referenced this issue Oct 27, 2019
…s:develop' (19158f2).

* trilinos-develop:
  Add back TeuchosNumerics_DISABLE_STEQR_TEST=ON (trilinos#2410, trilinos#6166)
  MueLu: fixed build error
  kokkos-kernels: update gcc check for c++14 workaround macro
  Ifpack2 ScaledDampedResidual: Cache vectors
  Tpetra/MueLu: switched performance tests to StackedTimer
jmgate pushed a commit to tcad-charon/Trilinos that referenced this issue Oct 27, 2019
…s:develop' (19158f2).

* trilinos-develop:
  Add back TeuchosNumerics_DISABLE_STEQR_TEST=ON (trilinos#2410, trilinos#6166)
  MueLu: fixed build error
  kokkos-kernels: update gcc check for c++14 workaround macro
  Ifpack2 ScaledDampedResidual: Cache vectors
  Tpetra/MueLu: switched performance tests to StackedTimer
bartlettroscoe added a commit to bartlettroscoe/Trilinos that referenced this issue Feb 3, 2020
jmgate pushed a commit to tcad-charon/Trilinos that referenced this issue Feb 4, 2020
…s:develop' (2bfd2c7).

* trilinos-develop: (177 commits)
  Add a fix for a stk cmake file
  Promote atdm ats2 gnu+dbg and cuda+gnu+dbg to 'Specialized' (CDOFA-72)
  Intrepid2: remove unnecessary finalize calls in unit tests
  Disable STEQR() LAPACK test on ats2 deug builds (trilinos#2410, trilinos#6166)
  Disable some timing out ROL tests (trilinos#6124)
  Disable timing out Tempus tests on ats2 (trilinos#6009)
  fixed some broken teuchos unit tests and removed missed deprecated methods
  Promoting ats2+gnu+opt build which is 100% clean (CDOFA-27)
  removed deprecated overload of << in SerialDenseMatrix, SerialBandDenseMatrix, SerialSymDenseMatrix, and SerialDenseVector
  removed deprecated Teuchos::Comm helpers reduceAll and scan that take pointers to return arguments
  removed deprecated MPITraits class
  removed deprecated ArrayArg class
  removed deprecated LAPACK::GEBAL method that takes ilo and ihi by value
  removed deprecated LAPACK::POSVX and LAPACK::GESVX methods that take EQUED by value
  removed deprecated LAPACK::TREXC method that takes ifst and ilst by value
  removed deprecated count method in ArrayRCP, RCP, and RCPNode
  removed deprecated PerformanceMonitorBase::clearTimer methods
  Intrepid2: Temporarily disabling tests failing on some machines (Issue trilinos#6246)
  Remove misspelled RTop_HIDE_DEPRECATED_CODE (trilinos#6217)
  Disable/hide deprecated code (trilinos#6217)
  ...
jmgate pushed a commit to tcad-charon/Trilinos that referenced this issue Feb 5, 2020
…s:develop' (2bfd2c7).

* trilinos-develop: (186 commits)
  zoltan2:  upgrading testing for issues fixed in trilinos#6375
  tpetra: disable kokkos warnings in initialize tests
  Tacho - disable matrix market reader/writer test to improve PR test stability.
  kokkos: cmake fixes for clang +/- cuda
  kokkos/cmake/kokkos_arch.cmake: Fix for clang + NO cuda
  Fix some scopes in nlnml_nonlinearlevel.cpp
  Zoltan2: fix reversal of Cuthill McKee ordering
  Add a fix for a stk cmake file
  Promote atdm ats2 gnu+dbg and cuda+gnu+dbg to 'Specialized' (CDOFA-72)
  Intrepid2: remove unnecessary finalize calls in unit tests
  Disable STEQR() LAPACK test on ats2 deug builds (trilinos#2410, trilinos#6166)
  Disable some timing out ROL tests (trilinos#6124)
  Disable timing out Tempus tests on ats2 (trilinos#6009)
  Intrepid2: reenabling JacobiLegendrePolynomial_Tests and Hierarchical_Basis_Tests.
  fixed some broken teuchos unit tests and removed missed deprecated methods
  Promoting ats2+gnu+opt build which is 100% clean (CDOFA-27)
  removed deprecated overload of << in SerialDenseMatrix, SerialBandDenseMatrix, SerialSymDenseMatrix, and SerialDenseVector
  removed deprecated Teuchos::Comm helpers reduceAll and scan that take pointers to return arguments
  removed deprecated MPITraits class
  removed deprecated ArrayArg class
  ...
jmgate pushed a commit to tcad-charon/Trilinos that referenced this issue Feb 5, 2020
…s:develop' (2bfd2c7).

* trilinos-develop: (186 commits)
  zoltan2:  upgrading testing for issues fixed in trilinos#6375
  tpetra: disable kokkos warnings in initialize tests
  Tacho - disable matrix market reader/writer test to improve PR test stability.
  kokkos: cmake fixes for clang +/- cuda
  kokkos/cmake/kokkos_arch.cmake: Fix for clang + NO cuda
  Fix some scopes in nlnml_nonlinearlevel.cpp
  Zoltan2: fix reversal of Cuthill McKee ordering
  Add a fix for a stk cmake file
  Promote atdm ats2 gnu+dbg and cuda+gnu+dbg to 'Specialized' (CDOFA-72)
  Intrepid2: remove unnecessary finalize calls in unit tests
  Disable STEQR() LAPACK test on ats2 deug builds (trilinos#2410, trilinos#6166)
  Disable some timing out ROL tests (trilinos#6124)
  Disable timing out Tempus tests on ats2 (trilinos#6009)
  Intrepid2: reenabling JacobiLegendrePolynomial_Tests and Hierarchical_Basis_Tests.
  fixed some broken teuchos unit tests and removed missed deprecated methods
  Promoting ats2+gnu+opt build which is 100% clean (CDOFA-27)
  removed deprecated overload of << in SerialDenseMatrix, SerialBandDenseMatrix, SerialSymDenseMatrix, and SerialDenseVector
  removed deprecated Teuchos::Comm helpers reduceAll and scan that take pointers to return arguments
  removed deprecated MPITraits class
  removed deprecated ArrayArg class
  ...
jmgate pushed a commit to tcad-charon/Trilinos that referenced this issue Feb 5, 2020
…s:develop' (2bfd2c7).

* trilinos-develop: (186 commits)
  zoltan2:  upgrading testing for issues fixed in trilinos#6375
  tpetra: disable kokkos warnings in initialize tests
  Tacho - disable matrix market reader/writer test to improve PR test stability.
  kokkos: cmake fixes for clang +/- cuda
  kokkos/cmake/kokkos_arch.cmake: Fix for clang + NO cuda
  Fix some scopes in nlnml_nonlinearlevel.cpp
  Zoltan2: fix reversal of Cuthill McKee ordering
  Add a fix for a stk cmake file
  Promote atdm ats2 gnu+dbg and cuda+gnu+dbg to 'Specialized' (CDOFA-72)
  Intrepid2: remove unnecessary finalize calls in unit tests
  Disable STEQR() LAPACK test on ats2 deug builds (trilinos#2410, trilinos#6166)
  Disable some timing out ROL tests (trilinos#6124)
  Disable timing out Tempus tests on ats2 (trilinos#6009)
  Intrepid2: reenabling JacobiLegendrePolynomial_Tests and Hierarchical_Basis_Tests.
  fixed some broken teuchos unit tests and removed missed deprecated methods
  Promoting ats2+gnu+opt build which is 100% clean (CDOFA-27)
  removed deprecated overload of << in SerialDenseMatrix, SerialBandDenseMatrix, SerialSymDenseMatrix, and SerialDenseVector
  removed deprecated Teuchos::Comm helpers reduceAll and scan that take pointers to return arguments
  removed deprecated MPITraits class
  removed deprecated ArrayArg class
  ...
@github-actions
Copy link

github-actions bot commented Jun 5, 2021

This issue has had no activity for 365 days and is marked for closure. It will be closed after an additional 30 days of inactivity.
If you would like to keep this issue open please add a comment and/or remove the MARKED_FOR_CLOSURE label.
If this issue should be kept open even with no activity beyond the time limits you can add the label DO_NOT_AUTOCLOSE.
If it is ok for this issue to be closed, feel free to go ahead and close it. Please do not add any comments or change any labels or otherwise touch this issue unless your intention is to reset the inactivity counter for an additional year.

@github-actions github-actions bot added the MARKED_FOR_CLOSURE Issue or PR is marked for auto-closure by the GitHub Actions bot. label Jun 5, 2021
@github-actions
Copy link

github-actions bot commented Jul 7, 2021

This issue was closed due to inactivity for 395 days.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ATDM Env Issue Issue with ATDM build or test caused (at least partly) by the env, not a bug in Trilinos ATDM Sev: Nonblocker Problems with Trilinos that should not block ATDM APPs from getting updates client: ATDM Any issue primarily impacting the ATDM project CLOSED_DUE_TO_INACTIVITY Issue or PR has been closed by the GitHub Actions bot due to inactivity. Disabled Tests Issue has been partially addressed by disabling *all* of the failing tests related to the issue MARKED_FOR_CLOSURE Issue or PR is marked for auto-closure by the GitHub Actions bot. PA: Framework Issues that fall under the Trilinos Framework Product Area pkg: Teuchos Issues primarily dealing with the Teuchos Package stage: in review Primary work is completed and now is just waiting for human review and/or test feedback type: bug The primary issue is a bug in Trilinos code or tests
Projects
None yet
Development

No branches or pull requests

7 participants