diskann-benchmark-runner 0.50.1

DiskANN is a fast approximate nearest neighbor search library for high dimensional data
Documentation
/*
 * Copyright (c) Microsoft Corporation.
 * Licensed under the MIT license.
 */

//! A moderately functional utility for making simple benchmarking CLI applications.

pub mod benchmark;
mod checker;
mod internal;
mod jobs;
mod result;

pub mod any;
pub mod app;
pub mod dispatcher;
pub mod files;
pub mod input;
pub mod output;
pub mod registry;
pub mod utils;

pub use any::Any;
pub use app::App;
pub use benchmark::Benchmark;
pub use checker::{CheckDeserialization, Checker};
pub use input::Input;
pub use output::Output;
pub use result::Checkpoint;

#[cfg(any(test, feature = "test-app"))]
pub mod test;

#[cfg(any(test, feature = "ux-tools"))]
#[doc(hidden)]
pub mod ux;