Skip to main content

diskann_disk/build/builder/
mod.rs

1/*
2 * Copyright (c) Microsoft Corporation.
3 * Licensed under the MIT license.
4 */
5
6//! Disk index builders and related functionality.
7pub mod build;
8pub mod core;
9pub mod quantizer;
10
11pub mod inmem_builder;
12pub mod tokio;
13
14#[cfg(test)]
15mod tests;