diskann-providers 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.
 */

// This file is @generated by prost-build.
#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)]
pub struct Version {
    /// The major version number.
    #[prost(uint32, tag = "1")]
    pub major: u32,
    /// The minor version number.
    #[prost(uint32, tag = "2")]
    pub minor: u32,
    /// The patch version number.
    #[prost(uint32, tag = "3")]
    pub patch: u32,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ScalarQuantizer {
    /// The version of the layout for scalar quantizer.
    #[prost(message, optional, tag = "1")]
    pub version: ::core::option::Option<Version>,
    /// The `scale` parameter of the scalar quantizer.
    #[prost(float, tag = "2")]
    pub scale: f32,
    /// The `shift` vector parameter of the scalar quantizer.
    #[prost(float, repeated, tag = "3")]
    pub shift: ::prost::alloc::vec::Vec<f32>,
    /// The `mean_norm` parameter of the scalar quantizer.
    #[prost(float, optional, tag = "4")]
    pub mean_norm: ::core::option::Option<f32>,
    /// The name of the file containing the compressed data.
    #[prost(string, tag = "5")]
    pub compressed_data_file_name: ::prost::alloc::string::String,
}