Skip to content

Commit

Permalink
fixed mixed-joins compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
lamarrr committed Feb 12, 2025
1 parent 4a06cf3 commit 389d850
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,11 @@ option(
"Enable remote IO (e.g. AWS S3) support through KvikIO. If disabled, cudf-python will still be able to do remote IO through fsspec."
ON
)
option(CUDF_MIXED_JOINS_ARCH "Architecture to compile mixed-joins code for. If set to `all`, CUDF will be compiled for all supported architectures" "70-virtual")
option(
CUDF_MIXED_JOINS_ARCH
"Architecture to compile mixed-joins code for. If set to `all`, CUDF will be compiled for all supported architectures"
"70-virtual"
)

message(VERBOSE "CUDF: Build with NVTX support: ${USE_NVTX}")
message(VERBOSE "CUDF: Configure CMake to build tests: ${BUILD_TESTS}")
Expand Down Expand Up @@ -984,7 +988,10 @@ add_dependencies(cudf jitify_preprocess_run)

# Specify the target module library dependencies
target_link_libraries(
cudf_mixed_joins PUBLIC rapids_logger::rapids_logger rmm::rmm $<BUILD_LOCAL_INTERFACE:BS::thread_pool>
cudf_mixed_joins
PUBLIC CCCL::CCCL rapids_logger::rapids_logger rmm::rmm $<BUILD_LOCAL_INTERFACE:BS::thread_pool>
PRIVATE $<BUILD_LOCAL_INTERFACE:nvtx3::nvtx3-cpp> cuco::cuco ZLIB::ZLIB nvcomp::nvcomp
kvikio::kvikio $<TARGET_NAME_IF_EXISTS:CUDA::cuFile${_cufile_suffix}> nanoarrow
)

target_link_libraries(
Expand Down

0 comments on commit 389d850

Please sign in to comment.