qdrant-edge 0.7.0

A lightweight, in-process vector search engine designed for embedded devices, autonomous systems, and mobile agents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod simple_cosine;
pub mod simple_dot;
pub mod simple_euclid;
pub mod simple_manhattan;

#[cfg(target_arch = "x86_64")]
pub mod avx;

#[cfg(all(target_arch = "aarch64", not(windows)))]
pub mod neon;

#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
pub mod sse;