mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-26 07:44:05 +00:00
- Run cargo fmt --all to fix formatting in 362 files across the entire workspace - Add PGDG repository for PostgreSQL 17 in CI test-all-features and benchmark jobs - Add missing rvf dependency crates to standalone Dockerfile for domain-expansion - Add sona-learning and domain-expansion features to standalone Dockerfile build - Create npu.rs stub for ruvector-sparse-inference (fixes rustfmt resolution error) Co-Authored-By: claude-flow <ruv@ruv.net> |
||
|---|---|---|
| .. | ||
| src | ||
| Cargo.toml | ||
| README.md | ||
rvf-quant
Temperature-tiered vector quantization for RuVector Format.
Overview
rvf-quant provides quantization codecs that reduce vector storage size based on access temperature:
- f32 -- full precision for hot vectors
- f16 -- half precision for warm vectors
- u8 -- scalar quantization for cool vectors
- binary -- 1-bit quantization for cold/archive vectors
- Automatic tiering -- promote/demote vectors based on access patterns
Usage
[dependencies]
rvf-quant = "0.1"
Features
std(default) -- enablestdsupportsimd-- enable SIMD-accelerated quantization
License
MIT OR Apache-2.0