tinyquant-core 0.0.0

CPU-only vector quantization codec — core types, codec, corpus, and backend trait (no_std).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Search-backend trait and associated types.
//!
//! This module defines the uniform interface that every backend
//! implementation must satisfy.  Concrete implementations live in
//! `tinyquant-bruteforce` (Phase 19) and `tinyquant-pgvector` (Phase 19).
//!
//! # Quick start
//!
//! ```ignore
//! use tinyquant_core::backend::{SearchBackend, SearchResult};
//! ```

mod protocol;

pub use protocol::{SearchBackend, SearchResult};