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

IVF-PQ tutorial notebook #1544

Merged
merged 26 commits into from
Jul 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
c4cea44
IVF-PQ: an intro tutorial notebook
achirkin May 22, 2023
29b88b0
Add refinement section
achirkin May 22, 2023
5c28c04
Add n_probes benchmarks
achirkin May 22, 2023
f35a6a6
search params tweaking continued
achirkin May 23, 2023
15f6e7a
fix codespell
achirkin May 23, 2023
b356894
Small text updates
achirkin May 23, 2023
a61a764
Merge branch 'branch-23.08' into fea-ivf-pq-notebook
achirkin May 30, 2023
3b949ed
Merge branch 'branch-23.08' into fea-ivf-pq-notebook
cjnolet Jun 6, 2023
5f7f2ba
Merge branch 'branch-23.08' into fea-ivf-pq-notebook
achirkin Jul 7, 2023
4c028a4
Merge branch 'branch-23.08' into fea-ivf-pq-notebook
achirkin Jul 19, 2023
c312ff6
Updated the search params section and added indexing params section (…
achirkin Jul 19, 2023
8b9ae8b
Merge branch 'branch-23.08' into fea-ivf-pq-notebook
achirkin Jul 19, 2023
17c71eb
Merge branch 'branch-23.08' into fea-ivf-pq-notebook
achirkin Jul 20, 2023
f16cf44
Added PQ section and other minor corrections
achirkin Jul 20, 2023
ebd4635
Merge branch 'branch-23.08' into fea-ivf-pq-notebook
achirkin Jul 24, 2023
922a162
Update notebooks/tutorial_ivf_pq.ipynb
achirkin Jul 24, 2023
9fffbf3
Merge branch 'branch-23.08' into fea-ivf-pq-notebook
achirkin Jul 25, 2023
307263c
Address review comments
achirkin Jul 25, 2023
688c963
Merge branch 'branch-23.08' into fea-ivf-pq-notebook
achirkin Jul 26, 2023
da179fe
Merge branch 'branch-23.08' into fea-ivf-pq-notebook
achirkin Jul 27, 2023
f9773c1
Run the notebook in production env
achirkin Jul 27, 2023
95fa780
Merge branch 'branch-23.08' into fea-ivf-pq-notebook
achirkin Jul 27, 2023
6d943a3
Merge branch 'branch-23.08' into fea-ivf-pq-notebook
achirkin Jul 28, 2023
6a91f44
Address a few more review comments
achirkin Jul 28, 2023
b3a2501
Merge branch 'branch-23.08' into fea-ivf-pq-notebook
achirkin Jul 30, 2023
b22a476
Merge branch 'branch-23.08' into fea-ivf-pq-notebook
achirkin Jul 31, 2023
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
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ While not exhaustive, the following general categories help summarize the accele
| **Tools & Utilities** | common utilities for developing CUDA applications, multi-node multi-gpu infrastructure |


RAFT is a C++ header-only template library with an optional shared library that
1) can speed up compile times for common template types, and
RAFT is a C++ header-only template library with an optional shared library that
1) can speed up compile times for common template types, and
2) provides host-accessible "runtime" APIs, which don't require a CUDA compiler to use

In addition being a C++ library, RAFT also provides 2 Python libraries:
Expand Down Expand Up @@ -291,6 +291,7 @@ The folder structure mirrors other RAPIDS repos, with the following folders:
- `template`: A skeleton template containing the bare-bones file structure and cmake configuration for writing applications with RAFT.
- `test`: Googletests source code
- `docs`: Source code and scripts for building library documentation (Uses breath, doxygen, & pydocs)
- `notebooks`: IPython notebooks with usage examples and tutorials
- `python`: Source code for Python libraries.
- `pylibraft`: Python build and source code for pylibraft library
- `raft-dask`: Python build and source code for raft-dask library
Expand Down
Loading