]> Cypherpunks.ru repositories - gostls13.git/blob - src/testing/benchmark.go
testing: probe with N=1
[gostls13.git] / src / testing / benchmark.go
1 // Copyright 2009 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 package testing
6
7 import (
8         "flag"
9         "fmt"
10         "os"
11         "runtime"
12         "sync"
13         "sync/atomic"
14         "time"
15 )
16
17 var matchBenchmarks = flag.String("test.bench", "", "regular expression per path component to select benchmarks to run")
18 var benchTime = flag.Duration("test.benchtime", 1*time.Second, "approximate run time for each benchmark")
19 var benchmarkMemory = flag.Bool("test.benchmem", false, "print memory allocations for benchmarks")
20
21 // Global lock to ensure only one benchmark runs at a time.
22 var benchmarkLock sync.Mutex
23
24 // Used for every benchmark for measuring memory.
25 var memStats runtime.MemStats
26
27 // An internal type but exported because it is cross-package; part of the implementation
28 // of the "go test" command.
29 type InternalBenchmark struct {
30         Name string
31         F    func(b *B)
32 }
33
34 // B is a type passed to Benchmark functions to manage benchmark
35 // timing and to specify the number of iterations to run.
36 //
37 // A benchmark ends when its Benchmark function returns or calls any of the methods
38 // FailNow, Fatal, Fatalf, SkipNow, Skip, or Skipf. Those methods must be called
39 // only from the goroutine running the Benchmark function.
40 // The other reporting methods, such as the variations of Log and Error,
41 // may be called simultaneously from multiple goroutines.
42 //
43 // Like in tests, benchmark logs are accumulated during execution
44 // and dumped to standard error when done. Unlike in tests, benchmark logs
45 // are always printed, so as not to hide output whose existence may be
46 // affecting benchmark results.
47 type B struct {
48         common
49         context          *benchContext
50         N                int
51         previousN        int           // number of iterations in the previous run
52         previousDuration time.Duration // total duration of the previous run
53         benchFunc        func(b *B)
54         benchTime        time.Duration
55         bytes            int64
56         missingBytes     bool // one of the subbenchmarks does not have bytes set.
57         timerOn          bool
58         showAllocResult  bool
59         hasSub           bool
60         result           BenchmarkResult
61         parallelism      int // RunParallel creates parallelism*GOMAXPROCS goroutines
62         // The initial states of memStats.Mallocs and memStats.TotalAlloc.
63         startAllocs uint64
64         startBytes  uint64
65         // The net total of this test after being run.
66         netAllocs uint64
67         netBytes  uint64
68 }
69
70 // StartTimer starts timing a test. This function is called automatically
71 // before a benchmark starts, but it can also used to resume timing after
72 // a call to StopTimer.
73 func (b *B) StartTimer() {
74         if !b.timerOn {
75                 runtime.ReadMemStats(&memStats)
76                 b.startAllocs = memStats.Mallocs
77                 b.startBytes = memStats.TotalAlloc
78                 b.start = time.Now()
79                 b.timerOn = true
80         }
81 }
82
83 // StopTimer stops timing a test. This can be used to pause the timer
84 // while performing complex initialization that you don't
85 // want to measure.
86 func (b *B) StopTimer() {
87         if b.timerOn {
88                 b.duration += time.Now().Sub(b.start)
89                 runtime.ReadMemStats(&memStats)
90                 b.netAllocs += memStats.Mallocs - b.startAllocs
91                 b.netBytes += memStats.TotalAlloc - b.startBytes
92                 b.timerOn = false
93         }
94 }
95
96 // ResetTimer zeros the elapsed benchmark time and memory allocation counters.
97 // It does not affect whether the timer is running.
98 func (b *B) ResetTimer() {
99         if b.timerOn {
100                 runtime.ReadMemStats(&memStats)
101                 b.startAllocs = memStats.Mallocs
102                 b.startBytes = memStats.TotalAlloc
103                 b.start = time.Now()
104         }
105         b.duration = 0
106         b.netAllocs = 0
107         b.netBytes = 0
108 }
109
110 // SetBytes records the number of bytes processed in a single operation.
111 // If this is called, the benchmark will report ns/op and MB/s.
112 func (b *B) SetBytes(n int64) { b.bytes = n }
113
114 // ReportAllocs enables malloc statistics for this benchmark.
115 // It is equivalent to setting -test.benchmem, but it only affects the
116 // benchmark function that calls ReportAllocs.
117 func (b *B) ReportAllocs() {
118         b.showAllocResult = true
119 }
120
121 func (b *B) nsPerOp() int64 {
122         if b.N <= 0 {
123                 return 0
124         }
125         return b.duration.Nanoseconds() / int64(b.N)
126 }
127
128 // runN runs a single benchmark for the specified number of iterations.
129 func (b *B) runN(n int) {
130         benchmarkLock.Lock()
131         defer benchmarkLock.Unlock()
132         // Try to get a comparable environment for each run
133         // by clearing garbage from previous runs.
134         runtime.GC()
135         b.N = n
136         b.parallelism = 1
137         b.ResetTimer()
138         b.StartTimer()
139         b.benchFunc(b)
140         b.StopTimer()
141         b.previousN = n
142         b.previousDuration = b.duration
143 }
144
145 func min(x, y int) int {
146         if x > y {
147                 return y
148         }
149         return x
150 }
151
152 func max(x, y int) int {
153         if x < y {
154                 return y
155         }
156         return x
157 }
158
159 // roundDown10 rounds a number down to the nearest power of 10.
160 func roundDown10(n int) int {
161         var tens = 0
162         // tens = floor(log_10(n))
163         for n >= 10 {
164                 n = n / 10
165                 tens++
166         }
167         // result = 10^tens
168         result := 1
169         for i := 0; i < tens; i++ {
170                 result *= 10
171         }
172         return result
173 }
174
175 // roundUp rounds x up to a number of the form [1eX, 2eX, 3eX, 5eX].
176 func roundUp(n int) int {
177         base := roundDown10(n)
178         switch {
179         case n <= base:
180                 return base
181         case n <= (2 * base):
182                 return 2 * base
183         case n <= (3 * base):
184                 return 3 * base
185         case n <= (5 * base):
186                 return 5 * base
187         default:
188                 return 10 * base
189         }
190 }
191
192 // run1 runs the first iteration of benchFunc. It returns whether more
193 // iterations of this benchmarks should be run.
194 func (b *B) run1() bool {
195         if ctx := b.context; ctx != nil {
196                 // Extend maxLen, if needed.
197                 if n := len(b.name) + ctx.extLen + 1; n > ctx.maxLen {
198                         ctx.maxLen = n + 8 // Add additional slack to avoid too many jumps in size.
199                 }
200         }
201         go func() {
202                 // Signal that we're done whether we return normally
203                 // or by FailNow's runtime.Goexit.
204                 defer func() {
205                         b.signal <- true
206                 }()
207
208                 b.runN(1)
209         }()
210         <-b.signal
211         return !b.hasSub
212 }
213
214 // run executes the benchmark in a separate goroutine, including all of its
215 // subbenchmarks. b must not have subbenchmarks.
216 func (b *B) run() BenchmarkResult {
217         if b.context != nil {
218                 // Running go test --test.bench
219                 b.context.processBench(b) // Must call doBench.
220         } else {
221                 // Running func Benchmark.
222                 b.doBench()
223         }
224         return b.result
225 }
226
227 func (b *B) doBench() BenchmarkResult {
228         go b.launch()
229         <-b.signal
230         return b.result
231 }
232
233 // launch launches the benchmark function. It gradually increases the number
234 // of benchmark iterations until the benchmark runs for the requested benchtime.
235 // launch is run by the doBench function as a separate goroutine.
236 // run1 must have been called on b.
237 func (b *B) launch() {
238         // Signal that we're done whether we return normally
239         // or by FailNow's runtime.Goexit.
240         defer func() {
241                 b.signal <- true
242         }()
243
244         // Run the benchmark for at least the specified amount of time.
245         d := b.benchTime
246         for n := 1; !b.failed && b.duration < d && n < 1e9; {
247                 last := n
248                 // Predict required iterations.
249                 if b.nsPerOp() == 0 {
250                         n = 1e9
251                 } else {
252                         n = int(d.Nanoseconds() / b.nsPerOp())
253                 }
254                 // Run more iterations than we think we'll need (1.2x).
255                 // Don't grow too fast in case we had timing errors previously.
256                 // Be sure to run at least one more than last time.
257                 n = max(min(n+n/5, 100*last), last+1)
258                 // Round up to something easy to read.
259                 n = roundUp(n)
260                 b.runN(n)
261         }
262         b.result = BenchmarkResult{b.N, b.duration, b.bytes, b.netAllocs, b.netBytes}
263 }
264
265 // The results of a benchmark run.
266 type BenchmarkResult struct {
267         N         int           // The number of iterations.
268         T         time.Duration // The total time taken.
269         Bytes     int64         // Bytes processed in one iteration.
270         MemAllocs uint64        // The total number of memory allocations.
271         MemBytes  uint64        // The total number of bytes allocated.
272 }
273
274 func (r BenchmarkResult) NsPerOp() int64 {
275         if r.N <= 0 {
276                 return 0
277         }
278         return r.T.Nanoseconds() / int64(r.N)
279 }
280
281 func (r BenchmarkResult) mbPerSec() float64 {
282         if r.Bytes <= 0 || r.T <= 0 || r.N <= 0 {
283                 return 0
284         }
285         return (float64(r.Bytes) * float64(r.N) / 1e6) / r.T.Seconds()
286 }
287
288 func (r BenchmarkResult) AllocsPerOp() int64 {
289         if r.N <= 0 {
290                 return 0
291         }
292         return int64(r.MemAllocs) / int64(r.N)
293 }
294
295 func (r BenchmarkResult) AllocedBytesPerOp() int64 {
296         if r.N <= 0 {
297                 return 0
298         }
299         return int64(r.MemBytes) / int64(r.N)
300 }
301
302 func (r BenchmarkResult) String() string {
303         mbs := r.mbPerSec()
304         mb := ""
305         if mbs != 0 {
306                 mb = fmt.Sprintf("\t%7.2f MB/s", mbs)
307         }
308         nsop := r.NsPerOp()
309         ns := fmt.Sprintf("%10d ns/op", nsop)
310         if r.N > 0 && nsop < 100 {
311                 // The format specifiers here make sure that
312                 // the ones digits line up for all three possible formats.
313                 if nsop < 10 {
314                         ns = fmt.Sprintf("%13.2f ns/op", float64(r.T.Nanoseconds())/float64(r.N))
315                 } else {
316                         ns = fmt.Sprintf("%12.1f ns/op", float64(r.T.Nanoseconds())/float64(r.N))
317                 }
318         }
319         return fmt.Sprintf("%8d\t%s%s", r.N, ns, mb)
320 }
321
322 func (r BenchmarkResult) MemString() string {
323         return fmt.Sprintf("%8d B/op\t%8d allocs/op",
324                 r.AllocedBytesPerOp(), r.AllocsPerOp())
325 }
326
327 // benchmarkName returns full name of benchmark including procs suffix.
328 func benchmarkName(name string, n int) string {
329         if n != 1 {
330                 return fmt.Sprintf("%s-%d", name, n)
331         }
332         return name
333 }
334
335 type benchContext struct {
336         match *matcher
337
338         maxLen int // The largest recorded benchmark name.
339         extLen int // Maximum extension length.
340 }
341
342 // An internal function but exported because it is cross-package; part of the implementation
343 // of the "go test" command.
344 func RunBenchmarks(matchString func(pat, str string) (bool, error), benchmarks []InternalBenchmark) {
345         runBenchmarksInternal(matchString, benchmarks)
346 }
347
348 func runBenchmarksInternal(matchString func(pat, str string) (bool, error), benchmarks []InternalBenchmark) bool {
349         // If no flag was specified, don't run benchmarks.
350         if len(*matchBenchmarks) == 0 {
351                 return true
352         }
353         // Collect matching benchmarks and determine longest name.
354         maxprocs := 1
355         for _, procs := range cpuList {
356                 if procs > maxprocs {
357                         maxprocs = procs
358                 }
359         }
360         ctx := &benchContext{
361                 match:  newMatcher(matchString, *matchBenchmarks, "-test.bench"),
362                 extLen: len(benchmarkName("", maxprocs)),
363         }
364         var bs []InternalBenchmark
365         for _, Benchmark := range benchmarks {
366                 if _, matched := ctx.match.fullName(nil, Benchmark.Name); matched {
367                         bs = append(bs, Benchmark)
368                         benchName := benchmarkName(Benchmark.Name, maxprocs)
369                         if l := len(benchName) + ctx.extLen + 1; l > ctx.maxLen {
370                                 ctx.maxLen = l
371                         }
372                 }
373         }
374         main := &B{
375                 common: common{name: "Main"},
376                 benchFunc: func(b *B) {
377                         for _, Benchmark := range bs {
378                                 b.Run(Benchmark.Name, Benchmark.F)
379                         }
380                 },
381                 benchTime: *benchTime,
382                 context:   ctx,
383         }
384         main.runN(1)
385         return !main.failed
386 }
387
388 // processBench runs bench b for the configured CPU counts and prints the results.
389 func (ctx *benchContext) processBench(b *B) {
390         for i, procs := range cpuList {
391                 runtime.GOMAXPROCS(procs)
392                 benchName := benchmarkName(b.name, procs)
393                 fmt.Printf("%-*s\t", ctx.maxLen, benchName)
394                 // Recompute the running time for all but the first iteration.
395                 if i > 0 {
396                         b = &B{
397                                 common: common{
398                                         signal: make(chan bool),
399                                         name:   benchName,
400                                 },
401                                 benchFunc: b.benchFunc,
402                                 benchTime: b.benchTime,
403                         }
404                         b.run1()
405                 }
406                 r := b.doBench()
407                 if b.failed {
408                         // The output could be very long here, but probably isn't.
409                         // We print it all, regardless, because we don't want to trim the reason
410                         // the benchmark failed.
411                         fmt.Printf("--- FAIL: %s\n%s", benchName, b.output)
412                         continue
413                 }
414                 results := r.String()
415                 if *benchmarkMemory || b.showAllocResult {
416                         results += "\t" + r.MemString()
417                 }
418                 fmt.Println(results)
419                 // Unlike with tests, we ignore the -chatty flag and always print output for
420                 // benchmarks since the output generation time will skew the results.
421                 if len(b.output) > 0 {
422                         b.trimOutput()
423                         fmt.Printf("--- BENCH: %s\n%s", benchName, b.output)
424                 }
425                 if p := runtime.GOMAXPROCS(-1); p != procs {
426                         fmt.Fprintf(os.Stderr, "testing: %s left GOMAXPROCS set to %d\n", benchName, p)
427                 }
428         }
429 }
430
431 // Run benchmarks f as a subbenchmark with the given name. It reports
432 // whether there were any failures.
433 //
434 // A subbenchmark is like any other benchmark. A benchmark that calls Run at
435 // least once will not be measured itself and will be called once with N=1.
436 func (b *B) Run(name string, f func(b *B)) bool {
437         // Since b has subbenchmarks, we will no longer run it as a benchmark itself.
438         // Release the lock and acquire it on exit to ensure locks stay paired.
439         b.hasSub = true
440         benchmarkLock.Unlock()
441         defer benchmarkLock.Lock()
442
443         benchName, ok := b.name, true
444         if b.context != nil {
445                 benchName, ok = b.context.match.fullName(&b.common, name)
446         }
447         if !ok {
448                 return true
449         }
450         sub := &B{
451                 common: common{
452                         signal: make(chan bool),
453                         name:   benchName,
454                         parent: &b.common,
455                         level:  b.level + 1,
456                 },
457                 benchFunc: f,
458                 benchTime: b.benchTime,
459                 context:   b.context,
460         }
461         if sub.run1() {
462                 sub.run()
463         }
464         b.add(sub.result)
465         return !sub.failed
466 }
467
468 // add simulates running benchmarks in sequence in a single iteration. It is
469 // used to give some meaningful results in case func Benchmark is used in
470 // combination with Run.
471 func (b *B) add(other BenchmarkResult) {
472         r := &b.result
473         // The aggregated BenchmarkResults resemble running all subbenchmarks as
474         // in sequence in a single benchmark.
475         r.N = 1
476         r.T += time.Duration(other.NsPerOp())
477         if other.Bytes == 0 {
478                 // Summing Bytes is meaningless in aggregate if not all subbenchmarks
479                 // set it.
480                 b.missingBytes = true
481                 r.Bytes = 0
482         }
483         if !b.missingBytes {
484                 r.Bytes += other.Bytes
485         }
486         r.MemAllocs += uint64(other.AllocsPerOp())
487         r.MemBytes += uint64(other.AllocedBytesPerOp())
488 }
489
490 // trimOutput shortens the output from a benchmark, which can be very long.
491 func (b *B) trimOutput() {
492         // The output is likely to appear multiple times because the benchmark
493         // is run multiple times, but at least it will be seen. This is not a big deal
494         // because benchmarks rarely print, but just in case, we trim it if it's too long.
495         const maxNewlines = 10
496         for nlCount, j := 0, 0; j < len(b.output); j++ {
497                 if b.output[j] == '\n' {
498                         nlCount++
499                         if nlCount >= maxNewlines {
500                                 b.output = append(b.output[:j], "\n\t... [output truncated]\n"...)
501                                 break
502                         }
503                 }
504         }
505 }
506
507 // A PB is used by RunParallel for running parallel benchmarks.
508 type PB struct {
509         globalN *uint64 // shared between all worker goroutines iteration counter
510         grain   uint64  // acquire that many iterations from globalN at once
511         cache   uint64  // local cache of acquired iterations
512         bN      uint64  // total number of iterations to execute (b.N)
513 }
514
515 // Next reports whether there are more iterations to execute.
516 func (pb *PB) Next() bool {
517         if pb.cache == 0 {
518                 n := atomic.AddUint64(pb.globalN, pb.grain)
519                 if n <= pb.bN {
520                         pb.cache = pb.grain
521                 } else if n < pb.bN+pb.grain {
522                         pb.cache = pb.bN + pb.grain - n
523                 } else {
524                         return false
525                 }
526         }
527         pb.cache--
528         return true
529 }
530
531 // RunParallel runs a benchmark in parallel.
532 // It creates multiple goroutines and distributes b.N iterations among them.
533 // The number of goroutines defaults to GOMAXPROCS. To increase parallelism for
534 // non-CPU-bound benchmarks, call SetParallelism before RunParallel.
535 // RunParallel is usually used with the go test -cpu flag.
536 //
537 // The body function will be run in each goroutine. It should set up any
538 // goroutine-local state and then iterate until pb.Next returns false.
539 // It should not use the StartTimer, StopTimer, or ResetTimer functions,
540 // because they have global effect. It should also not call Run.
541 func (b *B) RunParallel(body func(*PB)) {
542         if b.N == 0 {
543                 return // Nothing to do when probing.
544         }
545         // Calculate grain size as number of iterations that take ~100µs.
546         // 100µs is enough to amortize the overhead and provide sufficient
547         // dynamic load balancing.
548         grain := uint64(0)
549         if b.previousN > 0 && b.previousDuration > 0 {
550                 grain = 1e5 * uint64(b.previousN) / uint64(b.previousDuration)
551         }
552         if grain < 1 {
553                 grain = 1
554         }
555         // We expect the inner loop and function call to take at least 10ns,
556         // so do not do more than 100µs/10ns=1e4 iterations.
557         if grain > 1e4 {
558                 grain = 1e4
559         }
560
561         n := uint64(0)
562         numProcs := b.parallelism * runtime.GOMAXPROCS(0)
563         var wg sync.WaitGroup
564         wg.Add(numProcs)
565         for p := 0; p < numProcs; p++ {
566                 go func() {
567                         defer wg.Done()
568                         pb := &PB{
569                                 globalN: &n,
570                                 grain:   grain,
571                                 bN:      uint64(b.N),
572                         }
573                         body(pb)
574                 }()
575         }
576         wg.Wait()
577         if n <= uint64(b.N) && !b.Failed() {
578                 b.Fatal("RunParallel: body exited without pb.Next() == false")
579         }
580 }
581
582 // SetParallelism sets the number of goroutines used by RunParallel to p*GOMAXPROCS.
583 // There is usually no need to call SetParallelism for CPU-bound benchmarks.
584 // If p is less than 1, this call will have no effect.
585 func (b *B) SetParallelism(p int) {
586         if p >= 1 {
587                 b.parallelism = p
588         }
589 }
590
591 // Benchmark benchmarks a single function. Useful for creating
592 // custom benchmarks that do not use the "go test" command.
593 //
594 // If f calls Run, the result will be an estimate of running all its
595 // subbenchmarks that don't call Run in sequence in a single benchmark.
596 func Benchmark(f func(b *B)) BenchmarkResult {
597         b := &B{
598                 common: common{
599                         signal: make(chan bool),
600                 },
601                 benchFunc: f,
602                 benchTime: *benchTime,
603         }
604         return b.run()
605 }