Files
unshell/examples/protocol_op_decode_call.rs
T

9 lines
259 B
Rust
Raw Normal View History

2026-04-25 12:56:29 -06:00
#[path = "support/protocol_bench_common.rs"]
mod common;
fn main() {
let iterations = common::iterations_from_args(1_000);
2026-04-25 13:04:24 -06:00
let checksum = common::run_decode_call(iterations);
println!("decode_call iterations={iterations} checksum={checksum}");
2026-04-25 12:56:29 -06:00
}