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

Add Rust bindings for CAGRA #34

Merged
merged 41 commits into from
Mar 4, 2024
Merged
Changes from 1 commit
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
a4ec121
Rust bindings for cuvs
benfred Feb 6, 2024
cae7cd3
share common workspace metadata
benfred Feb 6, 2024
160b363
support for building cagra index
benfred Feb 7, 2024
4e277e5
working search unittest
benfred Feb 12, 2024
0027115
cudaFree
benfred Feb 12, 2024
e11e4e0
functioning unittest
benfred Feb 13, 2024
15aceda
add cagra example program
benfred Feb 20, 2024
2e4b477
Add resources to to_host/to_device functions
benfred Feb 20, 2024
83e202e
add From trait for converting ndarray to ManagedTensor
benfred Feb 21, 2024
1990d02
basic CI
benfred Feb 21, 2024
5c7aafa
.
benfred Feb 21, 2024
b44b81c
.
benfred Feb 26, 2024
13b1848
.
benfred Feb 26, 2024
bd8c432
.
benfred Feb 26, 2024
d411803
.
benfred Feb 26, 2024
a2e8009
remove export
benfred Feb 26, 2024
b4dc043
.
benfred Feb 26, 2024
af4b0ba
.
benfred Feb 26, 2024
e7a47de
.
benfred Feb 26, 2024
a757060
one more time
benfred Feb 27, 2024
6c54aa4
don't download python artifacts
benfred Feb 27, 2024
79560c3
one more time
benfred Feb 27, 2024
023795d
.
benfred Feb 27, 2024
d3ceacf
add libclang
benfred Feb 27, 2024
a60edc8
add clang
benfred Feb 27, 2024
db00e6f
set LIBCLANG_PATH
benfred Feb 27, 2024
82ccb25
correct libclang_path
benfred Feb 27, 2024
1ffdfd7
check in cuvs_bindings.rs
benfred Feb 27, 2024
c091196
Revert "check in cuvs_bindings.rs"
benfred Feb 28, 2024
0005294
try harder with libclang
benfred Feb 28, 2024
fc413fb
.
benfred Feb 28, 2024
8397651
.
benfred Feb 28, 2024
4c26cd7
:facepalm:
benfred Feb 29, 2024
eddab35
Merge branch 'branch-24.04' into rust_bindings
benfred Feb 29, 2024
0433e07
.
benfred Mar 4, 2024
b3a9624
Merge branch 'branch-24.04' into rust_bindings
benfred Mar 4, 2024
3eec2c3
update to latest 24.04 cagra api
benfred Mar 4, 2024
6cd44b1
Merge branch 'rust_bindings' of https://github.com/benfred/cuvs into …
benfred Mar 4, 2024
2dd4ea0
add example to README
benfred Mar 4, 2024
a781042
.
benfred Mar 4, 2024
e836117
update dependencies.yaml
benfred Mar 4, 2024
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
Prev Previous commit
Next Next commit
correct libclang_path
  • Loading branch information
benfred committed Feb 27, 2024
commit 82ccb2551c86019cab8674e6af7a3b852bea485c
5 changes: 3 additions & 2 deletions ci/build_rust.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@ CPP_CHANNEL=$(rapids-download-conda-from-s3 cpp)
# installing libcuvs/libraft will speed up the rust build substantially
rapids-mamba-retry install \
--channel "${CPP_CHANNEL}" \
libcuvs
libcuvs \
libraft

export LIBCLANG_PATH=/opt/conda/lib
export LIBCLANG_PATH=/opt/conda/envs/rust/lib/

# build and test the rust bindings
cd rust
Expand Down
Loading