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

11 lines
323 B
Rust

//! Standalone benchmark binary for `local_call_receive`.
#[path = "support/bench_common.rs"]
mod common;
fn main() {
let iterations = common::iterations_from_args(1_000);
let checksum = common::run_local_call_receive(iterations);
println!("local_call_receive iterations={iterations} checksum={checksum}");
}