diskann-quantization 0.55.0

DiskANN3 is a composable library for bringing scalable, accurate and cost-effective vector indexing to multiple databases.
Documentation
1
2
3
4
5
6
7
8
9
10
error[E0502]: cannot borrow `view` as immutable because it is also borrowed as mutable
  --> tests/compile-fail/multi/matmut_rows_mut.rs:15:13
   |
13 |     let iter = view.rows_mut();
   |                ---- mutable borrow occurs here
14 |     // This should fail: we cannot use `view` while the mutable iterator is alive
15 |     let _ = view.num_vectors();
   |             ^^^^ immutable borrow occurs here
16 |     for row in iter {
   |                ---- mutable borrow later used here