pub(crate) const DEFAULT_ITERATIONS: u32 = 5;Expand description
How many times each benchmark runs when --iterations is not given.
This claimed the whole harness finishes in well under a second, and it was not true of any run anyone made: CI asked for three iterations of an unoptimized build and spent 82% of its pipeline waiting. No count fixes that, because the benchmarks are sized for an optimized build and three iterations of one without optimization take minutes. So CI builds the harness optimized and asks for one, and this default is what a local reader gets who wants a first look rather than a measurement. ADR 0012 says why no number here is gated.