-
Notifications
You must be signed in to change notification settings - Fork 578
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
Tpetra: compile error in FECrsMatrix unit-test #5174
Comments
@alanw0 Best practice is to surround error messages in triple back quotes, so that GitHub does not reformat the error message incorrectly. This is why I can't see the error message correctly. In particular, the Scalar type doesn't show, because it's in angle brackets, that GitHub tries to treat like an HTML tag. I will show it again below:
The test is trying to build with |
ok thanks Mark. |
@trilinos/tpetra The problem is that the test tries to instantiate the test for
The easy fix is to use |
…s:develop' (c0a5ed6). * trilinos-develop: (27 commits) MueLu: fixing configuration of no_int_no_serial nightly build on trappist, see trilinos#5180 Correct ifdef DEBUG to ifndef NDEBUG Tpetra: Fix trilinos#5174 Xpetra: Nuking debug MueLu: Missed something in relative diagonal support MueLu Maxwell test: Allow using stacked timer MueLu RefMaxwell: Enable reuse MueLu RefMaxwell: Allow passing ML-style parameter lists MueLu RefMaxwell: Set better defaults MueLu: Hook up ML RefMaxwell in MueLu's Maxwell test MiniEM: Add xml files for bdot and exterior meshes Xpetra: TpetraMap Fix Xpetra: ETI TpetraMap minor style change MiniEM: Use Chebyshev and different rebalancing on Cuda Xpetra: ETI TpetraMap - Fix clone() sig in def file panzer: fix type in doxygen Tpetra: testing: fix testing directory Tpetra: testing: fix cmake error Xpetra: Xpetra_TpetraMap ETI Cleanup Tpetra: Testing: fix cmake options ...
…s:develop' (c0a5ed6). * trilinos-develop: (27 commits) MueLu: fixing configuration of no_int_no_serial nightly build on trappist, see trilinos#5180 Correct ifdef DEBUG to ifndef NDEBUG Tpetra: Fix trilinos#5174 Xpetra: Nuking debug MueLu: Missed something in relative diagonal support MueLu Maxwell test: Allow using stacked timer MueLu RefMaxwell: Enable reuse MueLu RefMaxwell: Allow passing ML-style parameter lists MueLu RefMaxwell: Set better defaults MueLu: Hook up ML RefMaxwell in MueLu's Maxwell test MiniEM: Add xml files for bdot and exterior meshes Xpetra: TpetraMap Fix Xpetra: ETI TpetraMap minor style change MiniEM: Use Chebyshev and different rebalancing on Cuda Xpetra: ETI TpetraMap - Fix clone() sig in def file panzer: fix type in doxygen Tpetra: testing: fix testing directory Tpetra: testing: fix cmake error Xpetra: Xpetra_TpetraMap ETI Cleanup Tpetra: Testing: fix cmake options ...
Bug Report
@trilinos/<PackageName>
Description
What went wrong? What should have happened? Do you have an idea what might
fix things? How has this bug affected you? What are you trying to accomplish?
What specifically must we demonstrate to call this work complete?
Steps to Reproduce
/path/Trilinos/packages/tpetra/core/test/FECrsMatrix/FECrsMatrix_UnitTests.cpp:369:3: required from here
/path/Trilinos/packages/tpetra/core/test/FECrsMatrix/FECrsMatrix_UnitTests.cpp:119:71: error: 'eps' is not a member of 'Teuchos::ScalarTraits'
const Mag tol = errorTolSlack * Teuchos::ScalarTraits::eps();
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~
The text was updated successfully, but these errors were encountered: