-
Notifications
You must be signed in to change notification settings - Fork 99
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
Add missing $ to KOKKOS_HAS_TRILINOS in sparse_sptrsv_superlu check #1160
Conversation
I had a syntax error with the changes in #1150, this change fixes it. I'll cherry-pick over to release-candidate-3.5.0 |
Cherry-picked to release-candidate-3.5.0, release-3.5.0 reset and resnapshot to the Trilinos PR |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, @ndellingwood !
@@ -73,7 +73,7 @@ KOKKOSKERNELS_ADD_EXECUTABLE( | |||
SOURCES KokkosSparse_sptrsv_cholmod.cpp | |||
) | |||
|
|||
IF(NOT KOKKOS_HAS_TRILINOS) | |||
IF(NOT ${KOKKOS_HAS_TRILINOS}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is KOKKOS_HAS_TRILINOS
an environment variable or a cmake variable?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CMake variable, set here in Kokkos: https://github.com/kokkos/kokkos/blob/78f0bd57b5a8c297a6294204c70ca3826f043c4f/CMakeLists.txt#L36-L41
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you.
@e10harvey I had to update the branch for merge and looks like it dismissed your previous review, could you re-approve? |
Fix for PR #1150