Files
unshell/examples/protocol_op_encode_call.rs
T
Michael Mikovsky 4f0042411d Add straceable protocol operation binaries
Factor the benchmark scenarios into standalone example binaries that can be traced directly without cargo run, and simplify the hot call and hook lookup paths using the benchmark output as guidance.
2026-04-25 12:56:29 -06:00

9 lines
224 B
Rust

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