diff --git a/Makefile b/Makefile index b4c71dffda..d9ced760fa 100644 --- a/Makefile +++ b/Makefile @@ -54,7 +54,7 @@ REGEX_STRING?='' REGEX_PATTERN?='' # tfhe-cuda-backend -TFHECUDA_SRC="backends/tfhe-cuda-backend/implementation" +TFHECUDA_SRC="backends/tfhe-cuda-backend/cuda" TFHECUDA_BUILD=$(TFHECUDA_SRC)/build # Exclude these files from coverage reports diff --git a/backends/tfhe-cuda-backend/cuda/src/CMakeLists.txt b/backends/tfhe-cuda-backend/cuda/src/CMakeLists.txt index e6f81e07ee..abea606edc 100644 --- a/backends/tfhe-cuda-backend/cuda/src/CMakeLists.txt +++ b/backends/tfhe-cuda-backend/cuda/src/CMakeLists.txt @@ -13,9 +13,6 @@ set(SOURCES ${CMAKE_SOURCE_DIR}/${INCLUDE_DIR}/vertical_packing.h) file(GLOB_RECURSE SOURCES "*.cu") add_library(tfhe_cuda_backend STATIC ${SOURCES}) -set_target_properties( - tfhe_cuda_backend - PROPERTIES CUDA_SEPARABLE_COMPILATION ON - CUDA_RESOLVE_DEVICE_SYMBOLS ON) +set_target_properties(tfhe_cuda_backend PROPERTIES CUDA_SEPARABLE_COMPILATION ON CUDA_RESOLVE_DEVICE_SYMBOLS ON) target_link_libraries(tfhe_cuda_backend PUBLIC cudart OpenMP::OpenMP_CXX) target_include_directories(tfhe_cuda_backend PRIVATE .)