ruvector/crates/rvf/rvf-quant
rUv 161f890ddb fix: apply cargo fmt across workspace and fix CI issues
- 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>
2026-02-21 20:56:38 +00:00
..
src fix: apply cargo fmt across workspace and fix CI issues 2026-02-21 20:56:38 +00:00
Cargo.toml chore: bump rvf-types/rvf-crypto/rvf-runtime to 0.2.0 for new features 2026-02-16 14:04:23 +00:00
README.md feat(rvf): RuVector Format — Universal Cognitive Container SDK (#166) 2026-02-14 13:14:49 -05:00

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) -- enable std support
  • simd -- enable SIMD-accelerated quantization

License

MIT OR Apache-2.0