Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

exposing faiss::faiss #582

Merged
merged 2 commits into from
Mar 22, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ if(RAFT_COMPILE_LIBRARIES OR RAFT_COMPILE_NN_LIBRARY)
)
set_target_properties(raft_nn_lib PROPERTIES OUTPUT_NAME raft_nn)

target_link_libraries(raft_nn_lib PRIVATE raft::raft faiss::faiss)
target_link_libraries(raft_nn_lib PUBLIC faiss::faiss PRIVATE raft::raft)
target_compile_options(raft_nn_lib
PRIVATE "$<$<COMPILE_LANGUAGE:CXX>:${RAFT_CXX_FLAGS}>"
"$<$<COMPILE_LANGUAGE:CUDA>:${RAFT_CUDA_FLAGS}>"
Expand Down Expand Up @@ -320,10 +320,10 @@ install(FILES include/raft.hpp
# - install export -----------------------------------------------------------
set(doc_string
[=[
Provide targets for the RAFT: RAPIDS Analytics Framework Toolkit.
Provide targets for the RAFT: Reusable Accelerated Functions and Tools

RAFT (Reusable Analytics Functions and other Tools) contains fundamental
widely-used algorithms and primitives for data science, graph, and ml.
RAFT contains fundamental widely-used algorithms and primitives
for data science, graph, and ml.

Optional Components:
- nn
Expand Down