What's Changed
- fix parametrized benchmarks by @FObersteiner in https://github.com/hendriknielaender/zBench/pull/133
API Change: Benchmark run Function Signature
The run function signature for benchmark implementations has changed to use pointer receivers instead of value receivers.
Before:
pub fn run(self: MyBenchmark, _: std.mem.Allocator) void {
// ...
}...