Skip to content
Snippets Groups Projects
Commit 4cf40e8b authored by Stéphane Del Pino's avatar Stéphane Del Pino
Browse files

Sets KOKKOS_ENABLE_EXPLICIT_INSTANTIATION=OFF by default

Explicit type instantiation for fill/copy will have to be evaluated. Deactivated
by now since it is heavy compilation time consuming in a small project as pastis ATM
parent f04cf8d3
No related branches found
No related tags found
No related merge requests found
...@@ -82,6 +82,9 @@ if(${OPENMP_FOUND}) ...@@ -82,6 +82,9 @@ if(${OPENMP_FOUND})
set(KOKKOS_ENABLE_OPENMP ON CACHE BOOL "") set(KOKKOS_ENABLE_OPENMP ON CACHE BOOL "")
endif() endif()
# do not build ETI by default
set(KOKKOS_ENABLE_EXPLICIT_INSTANTIATION OFF CACHE BOOL "")
# Kokkso compiler flags # Kokkso compiler flags
add_subdirectory(${PASTIS_SOURCE_DIR}/packages/kokkos) add_subdirectory(${PASTIS_SOURCE_DIR}/packages/kokkos)
include_directories(${Kokkos_INCLUDE_DIRS_RET}) include_directories(${Kokkos_INCLUDE_DIRS_RET})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment