From: sunnymilk Date: Thu, 12 Sep 2024 19:23:37 +0000 (-0700) Subject: testing: enable better loop time measurement for benchmarking. X-Git-Tag: go1.24rc1~870 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=402dc98759b4708beebcd0729f308bb0c03d3ed6;p=gostls13.git testing: enable better loop time measurement for benchmarking. With b.Loop() in place, the time measurement of loop scaling could be improved to be tighter. By identifying the first call to b.Loop(), we can avoid measuring the expensive ramp-up time by reset the timer tightly before the loop starts. The remaining loop scaling logic of b.N style loop is largely reused. For #61515. Change-Id: Ia7b8f0a8838f57c00ac6c5ef779d86f8d713c9b6 Reviewed-on: https://go-review.googlesource.com/c/go/+/612835 Reviewed-by: Cherry Mui Reviewed-by: Junyang Shao LUCI-TryBot-Result: Go LUCI --- diff --git a/src/testing/benchmark.go b/src/testing/benchmark.go index 0271308346..2c7083db02 100644 --- a/src/testing/benchmark.go +++ b/src/testing/benchmark.go @@ -114,6 +114,7 @@ type B struct { // Extra metrics collected by ReportMetric. extra map[string]float64 // Remaining iterations of Loop() to be executed in benchFunc. + // See issue #61515. loopN int } @@ -358,6 +359,11 @@ func (b *B) ReportMetric(n float64, unit string) { // After the benchmark finishes, b.N will contain the total number of calls to op, so the benchmark // may use b.N to compute other average metrics. func (b *B) Loop() bool { + if b.loopN == b.N { + // If it's the first call to b.Loop() in the benchmark function. + // Allows more precise measurement of benchmark loop cost counts. + b.ResetTimer() + } b.loopN-- return b.loopN >= 0 }