Skip to content

Commit

Permalink
Fix typo in CMake file
Browse files Browse the repository at this point in the history
  • Loading branch information
sbaldu committed Sep 9, 2024
1 parent a69227a commit bfa70f9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,8 @@ if((NOT ${CPU_ONLY}) AND (NOT ${SERIAL_ONLY}))
pybind11_add_module(CLUE_GPU_CUDA SHARED
./CLUEstering/alpaka/BindingModules/binding_gpu_cuda.cc)
# link boost
target_link_libraries(CLUE_Convolutional_Kernels PRIVATE ${Boost_LIBRARIES})
target_include_directories(CLUE_Convolutional_Kernels PRIVATE ${Boost_PATH})
target_link_libraries(CLUE_GPU_CUDA PRIVATE ${Boost_LIBRARIES})
target_include_directories(CLUE_GPU_CUDA PRIVATE ${Boost_PATH})
# set the cuda architectures
set_target_properties(CLUE_GPU_CUDA PROPERTIES CUDA_ARCHITECTURES
"50;60;61;62;70")
Expand Down Expand Up @@ -191,8 +191,8 @@ if((NOT ${CPU_ONLY}) AND (NOT ${SERIAL_ONLY}))
pybind11_add_module(CLUE_GPU_HIP SHARED
./CLUEstering/alpaka/BindingModules/binding_gpu_hip.cc)
# link boost
target_link_libraries(CLUE_Convolutional_Kernels PRIVATE ${Boost_LIBRARIES})
target_include_directories(CLUE_Convolutional_Kernels PRIVATE ${Boost_PATH})
target_link_libraries(CLUE_GPU_HIP PRIVATE ${Boost_LIBRARIES})
target_include_directories(CLUE_GPU_HIP PRIVATE ${Boost_PATH})
# alpaka build flags
target_compile_options(
CLUE_GPU_HIP
Expand Down

0 comments on commit bfa70f9

Please sign in to comment.