Benchy

Benchy is a Rust crate for benchmarking long-running tasks. Unlike other benchmarking libraries such as Criterion, which are optimized for high-frequency, nanosecond-level performance, Benchy is designed for tasks that take a significant amount of time to execute. It provides a flexible and customizable environment, allowing you to set custom iteration counts and even measure memory usage metrics.

Features

Installation

sh cargo add benchy

Quick Start

benches/bench.rs:

```rust use benchy::{benchmark, BenchmarkRun};

[benchmark]

fn fibonaccisingle(b: &mut BenchmarkRun) { let mut x = 0; let mut y = 1; b.run(|| { for _ in 0..1000_000 { let temp = x; x = y; y = temp + y; } }); }

[benchmark("Fibonacci", [

("1 million iterations", 1_000_000),
("2 million iterations", 2_000_000),

])] fn fibonacci_parametrized(b: &mut BenchmarkRun, iterations: usize) { let mut x = 0; let mut y = 1; b.run(|| { for _ in 0..iterations { let temp = x; x = y; y = temp + y; } }); }

benchy::main!(fibonaccisingle, fibonacciparametrized); ```

Cargo.toml:

toml [[bench]] name = "bench" harness = false

For more advanced usage, check the zk-bench repository that utilizes this crate, or refer to the documentation.

Environment variables