Prefetch a batch of vector IDs.
(&self, ids: &[u32])
| 426 | |
| 427 | /// Prefetch a batch of vector IDs. |
| 428 | pub fn prefetch_batch(&self, ids: &[u32]) { |
| 429 | for &id in ids { |
| 430 | self.prefetch(id); |
| 431 | } |
| 432 | } |
| 433 | |
| 434 | pub fn dim(&self) -> usize { |
| 435 | self.dim |
no test coverage detected