File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# How to release
22
33* Make sure you're on main and synced to HEAD
4- * Ensure the project builds and tests run (sanity check only, obviously)
4+ * Ensure the project builds and tests run
55 * ` parallel -j0 exec ::: test/*_test ` can help ensure everything at least
66 passes
77* Prepare release notes
Original file line number Diff line number Diff line change @@ -244,7 +244,7 @@ IterationCount BenchmarkRunner::PredictNumItersNeeded(
244244 const IterationCount max_next_iters = static_cast <IterationCount>(
245245 std::lround (std::max (multiplier * static_cast <double >(i.iters ),
246246 static_cast <double >(i.iters ) + 1.0 )));
247- // But we do have *some* sanity limits though..
247+ // But we do have *some* limits though..
248248 const IterationCount next_iters = std::min (max_next_iters, kMaxIterations );
249249
250250 BM_VLOG (3 ) << " Next iters: " << next_iters << " , " << multiplier << " \n " ;
@@ -261,7 +261,7 @@ bool BenchmarkRunner::ShouldReportIterationResults(
261261 i.seconds >= min_time || // The elapsed time is large enough.
262262 // CPU time is specified but the elapsed real time greatly exceeds
263263 // the minimum time.
264- // Note that user provided timers are except from this sanity check .
264+ // Note that user provided timers are except from this test .
265265 ((i.results .real_time_used >= 5 * min_time) && !b.use_manual_time ());
266266}
267267
You can’t perform that action at this time.
0 commit comments