Skip to content

Commit

Permalink
Merge Pull Request #7205 from vbrunini/Trilinos/shylu_rdc_cmake_capit…
Browse files Browse the repository at this point in the history
…alization

Automatically Merged using Trilinos Pull Request AutoTester
PR Title: Fix capitalization of Kokkos_ENABLE_CUDA_RELOCATABLE_DEVICE_CODE in ShyLU dependencies.
PR Author: vbrunini
  • Loading branch information
trilinos-autotester authored Apr 20, 2020
2 parents 5aba725 + 17c7023 commit 6b6d88c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmake/RepositoryDependenciesSetup.cmake
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
if (TPL_ENABLE_CUDA AND NOT Kokkos_ENABLE_Cuda_Relocatable_Device_Code)
if (TPL_ENABLE_CUDA AND NOT Kokkos_ENABLE_CUDA_RELOCATABLE_DEVICE_CODE)
if ("${${PROJECT_NAME}_ENABLE_ShyLU_NodeTacho}" STREQUAL "")
message(
"-- " "NOTE: Setting ${PROJECT_NAME}_ENABLE_ShyLU_NodeTacho=OFF by default since TPL_ENABLE_CUDA='${TPL_ENABLE_CUDA}' AND Kokkos_ENABLE_Cuda_Relocatable_Device_Code='${Kokkos_ENABLE_Cuda_Relocatable_Device_Code}'!\n"
"-- NOTE: To allow the enable of ShyLU_NodeTacho, please set Kokkos_ENABLE_Cuda_Relocatable_Device_Code=ON.")
"-- " "NOTE: Setting ${PROJECT_NAME}_ENABLE_ShyLU_NodeTacho=OFF by default since TPL_ENABLE_CUDA='${TPL_ENABLE_CUDA}' AND Kokkos_ENABLE_CUDA_RELOCATABLE_DEVICE_CODE='${Kokkos_ENABLE_CUDA_RELOCATABLE_DEVICE_CODE}'!\n"
"-- NOTE: To allow the enable of ShyLU_NodeTacho, please set Kokkos_ENABLE_CUDA_RELOCATABLE_DEVICE_CODE=ON.")
set(${PROJECT_NAME}_ENABLE_ShyLU_NodeTacho OFF)
# NOTE: Above we set the non-cache var
# ${PROJECT_NAME}_ENABLE_ShyLU_NodeTacho so that each reconfigure will
Expand Down

0 comments on commit 6b6d88c

Please sign in to comment.