mirror of
https://github.com/logos-blockchain/logos-execution-zone.git
synced 2026-05-26 18:09:33 +00:00
24 lines
689 B
Rust
24 lines
689 B
Rust
|
|
//! `cycle_bench` library: per-program executor/prover cycle measurement helpers
|
||
|
|
//! shared between the `cycle_bench` binary and the `verify` criterion bench.
|
||
|
|
|
||
|
|
#![expect(
|
||
|
|
clippy::arithmetic_side_effects,
|
||
|
|
clippy::as_conversions,
|
||
|
|
clippy::cast_precision_loss,
|
||
|
|
clippy::float_arithmetic,
|
||
|
|
clippy::print_literal,
|
||
|
|
clippy::print_stdout,
|
||
|
|
reason = "Bench library: stats arithmetic and table printing are bench-style"
|
||
|
|
)]
|
||
|
|
#![cfg_attr(
|
||
|
|
feature = "ppe",
|
||
|
|
expect(
|
||
|
|
clippy::arbitrary_source_item_ordering,
|
||
|
|
clippy::print_stderr,
|
||
|
|
reason = "PPE module: re-export ordering and eprintln progress trip strict lints"
|
||
|
|
)
|
||
|
|
)]
|
||
|
|
|
||
|
|
pub mod ppe;
|
||
|
|
pub mod stats;
|