receipt-bench 0.1.0

Replayable benchmark substrate for semantic search, compression, and memory operations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! receipt-bench: Replayable benchmark substrate.
//!
//! Captures structured receipts timestamped and keyed to commit hash + machine fingerprint,
//! enabling reproducible diffs between benchmark runs.

mod error;
mod fingerprint;
mod receipt;
mod suite;

#[cfg(feature = "sm-adapter")]
pub mod sm_adapter;

pub use error::BenchError;
pub use fingerprint::MachineFingerprint;
pub use receipt::{BenchmarkReceipt, BenchmarkResult, ReceiptDiff};
pub use suite::BenchmarkSuite;