DiskANN

Struct DiskANN 

Source
pub struct DiskANN<D>
where D: Distance<f32> + Send + Sync + Copy + Clone + 'static,
{ pub dim: usize, pub num_vectors: usize, pub max_degree: usize, pub distance_name: String, /* private fields */ }
Expand description

Main struct representing a DiskANN index (generic over distance)

Fields§

§dim: usize

Dimensionality of vectors in the index

§num_vectors: usize

Number of vectors in the index

§max_degree: usize

Maximum number of edges per node

§distance_name: String

Informational: type name of the distance (from metadata)

Implementations§

Source§

impl<D> DiskANN<D>
where D: Distance<f32> + Send + Sync + Copy + Clone + 'static,

Source

pub fn build_index_default( vectors: &[Vec<f32>], dist: D, file_path: &str, ) -> Result<Self, DiskAnnError>

Build with default parameters: (M=32, L=256, alpha=1.2).

Source

pub fn build_index_with_params( vectors: &[Vec<f32>], dist: D, file_path: &str, p: DiskAnnParams, ) -> Result<Self, DiskAnnError>

Build with a DiskAnnParams bundle.

Source§

impl<D> DiskANN<D>
where D: Distance<f32> + Default + Send + Sync + Copy + Clone + 'static,

Extra sugar when your distance type implements Default (most unit-struct metrics do).

Source

pub fn build_index_default_metric( vectors: &[Vec<f32>], file_path: &str, ) -> Result<Self, DiskAnnError>

Build with default params and D::default() metric.

Source

pub fn open_index_default_metric(path: &str) -> Result<Self, DiskAnnError>

Open an index using D::default() as the distance (matches what you built with).

Source§

impl<D> DiskANN<D>
where D: Distance<f32> + Send + Sync + Copy + Clone + 'static,

Source

pub fn build_index( vectors: &[Vec<f32>], max_degree: usize, build_beam_width: usize, alpha: f32, dist: D, file_path: &str, ) -> Result<Self, DiskAnnError>

Builds a new index from provided vectors

§Arguments
  • vectors - The vectors to index (slice of Vec)
  • max_degree - Maximum edges per node (M ~ 24-64)
  • build_beam_width - Construction L (e.g., 128-400)
  • alpha - Pruning parameter (1.2–2.0)
  • dist - Any anndists::Distance<f32> (e.g., DistL2)
  • file_path - Path of index file
Source

pub fn open_index_with(path: &str, dist: D) -> Result<Self, DiskAnnError>

Opens an existing index file, supplying the distance strategy explicitly.

Source

pub fn search_with_dists( &self, query: &[f32], k: usize, beam_width: usize, ) -> Vec<(u32, f32)>

Searches the index for nearest neighbors using a best-first beam search. Termination rule: continue while the best frontier can still improve the worst in working set. Like search but also returns the distance for each neighbor. Distances are exactly the ones computed during the beam search.

Source

pub fn search(&self, query: &[f32], k: usize, beam_width: usize) -> Vec<u32>

search but only return neighbor ids

Source

pub fn get_vector(&self, idx: usize) -> Vec<f32>

Gets a vector from the index (useful for tests)

Auto Trait Implementations§

§

impl<D> Freeze for DiskANN<D>
where D: Freeze,

§

impl<D> RefUnwindSafe for DiskANN<D>
where D: RefUnwindSafe,

§

impl<D> Send for DiskANN<D>

§

impl<D> Sync for DiskANN<D>

§

impl<D> Unpin for DiskANN<D>
where D: Unpin,

§

impl<D> UnwindSafe for DiskANN<D>
where D: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V