Skip to main content

diskann_benchmark_core/build/graph/
mod.rs

1/*
2 * Copyright (c) Microsoft Corporation.
3 * Licensed under the MIT license.
4 */
5
6//! Built-in [`crate::build::Build`] implementations for the [`diskann::graph::DiskANNIndex`].
7
8mod multi;
9mod single;
10
11pub use multi::MultiInsert;
12pub use single::SingleInsert;