Skip to main content

quant_eval/
lib.rs

1//! quant-eval: Compression and semantic search evaluation benchmark suite.
2
3mod benchmarks;
4mod error;
5mod fingerprint;
6mod receipt;
7
8pub use benchmarks::{
9    AdmissibilityTest, CodecProfile, CompressionBenchmark, CompressionBenchmarkConfig,
10    SemanticMemoryBenchmark, SemanticMemoryConfig,
11};
12pub use error::QuantEvalError;
13pub use fingerprint::MachineFingerprint;
14pub use receipt::{BenchmarkReceipt, BenchmarkResult, ReceiptDiff};