Files
unshell/examples/protocol/bench/op_decode_call.rs
T
2026-04-26 11:25:46 -06:00

11 lines
302 B
Rust

//! Standalone benchmark binary for `decode_call`.
#[path = "support/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}");
}