pub const BENCH_GAS: u64 = _; // 9_223_372_036_854_775_807u64Expand description
Gas ceiling for a benchmark run. i64::MAX, not u64::MAX: the
JIT’s gas counter is an i64 and it detects exhaustion by sign, so
a u64::MAX budget would present as already-negative.