diskann-quantization 0.51.0

DiskANN is a fast approximate nearest neighbor search library for high dimensional data
Documentation
1
2
3
4
5
6
7
8
9
10
error[E0502]: cannot borrow `mat` as mutable because it is also borrowed as immutable
  --> tests/compile-fail/multi/matref_get_row.rs:16:13
   |
12 |     let view: MatRef<'_, Standard<f32>> = mat.as_view();
   |                                           --- immutable borrow occurs here
...
16 |     let _ = mat.as_view_mut();
   |             ^^^^^^^^^^^^^^^^^ mutable borrow occurs here
17 |     assert_eq!(row[0], 0.0);
   |                ------ immutable borrow later used here