Files
unshell/examples/protocol_op_decode_call.rs
T
Michael Mikovsky de194ac319 Harden strace benchmark binaries
Make the standalone protocol operation examples return and print concrete checksums derived from protocol state so the traced work cannot be optimized away as dead computation.
2026-04-25 13:04:24 -06:00

9 lines
259 B
Rust

#[path = "support/protocol_bench_common.rs"]
mod common;
fn main() {
let iterations = common::iterations_from_args(1_000);
let checksum = common::run_decode_call(iterations);
println!("decode_call iterations={iterations} checksum={checksum}");
}