]> Cypherpunks.ru repositories - gostls13.git/blob - src/testing/benchmark.go
Merge remote-tracking branch 'origin/dev.ssa' into merge
[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         if b.failed {
212                 fmt.Fprintf(b.w, "--- FAIL: %s\n%s", b.name, b.output)
213                 return false
214         }
215         // Only print the output if we know we are not going to proceed.
216         // Otherwise it is printed in processBench.
217         if b.hasSub || b.finished {
218                 tag := "BENCH"
219                 if b.skipped {
220                         tag = "SKIP"
221                 }
222                 if b.chatty && (len(b.output) > 0 || b.finished) {
223                         b.trimOutput()
224                         fmt.Fprintf(b.w, "--- %s: %s\n%s", tag, b.name, b.output)
225                 }
226                 return false
227         }
228         return true
229 }
230
231 // run executes the benchmark in a separate goroutine, including all of its
232 // subbenchmarks. b must not have subbenchmarks.
233 func (b *B) run() BenchmarkResult {
234         if b.context != nil {
235                 // Running go test --test.bench
236                 b.context.processBench(b) // Must call doBench.
237         } else {
238                 // Running func Benchmark.
239                 b.doBench()
240         }
241         return b.result
242 }
243
244 func (b *B) doBench() BenchmarkResult {
245         go b.launch()
246         <-b.signal
247         return b.result
248 }
249
250 // launch launches the benchmark function. It gradually increases the number
251 // of benchmark iterations until the benchmark runs for the requested benchtime.
252 // launch is run by the doBench function as a separate goroutine.
253 // run1 must have been called on b.
254 func (b *B) launch() {
255         // Signal that we're done whether we return normally
256         // or by FailNow's runtime.Goexit.
257         defer func() {
258                 b.signal <- true
259         }()
260
261         // Run the benchmark for at least the specified amount of time.
262         d := b.benchTime
263         for n := 1; !b.failed && b.duration < d && n < 1e9; {
264                 last := n
265                 // Predict required iterations.
266                 n = int(d.Nanoseconds())
267                 if nsop := b.nsPerOp(); nsop != 0 {
268                         n /= int(nsop)
269                 }
270                 // Run more iterations than we think we'll need (1.2x).
271                 // Don't grow too fast in case we had timing errors previously.
272                 // Be sure to run at least one more than last time.
273                 n = max(min(n+n/5, 100*last), last+1)
274                 // Round up to something easy to read.
275                 n = roundUp(n)
276                 b.runN(n)
277         }
278         b.result = BenchmarkResult{b.N, b.duration, b.bytes, b.netAllocs, b.netBytes}
279 }
280
281 // The results of a benchmark run.
282 type BenchmarkResult struct {
283         N         int           // The number of iterations.
284         T         time.Duration // The total time taken.
285         Bytes     int64         // Bytes processed in one iteration.
286         MemAllocs uint64        // The total number of memory allocations.
287         MemBytes  uint64        // The total number of bytes allocated.
288 }
289
290 func (r BenchmarkResult) NsPerOp() int64 {
291         if r.N <= 0 {
292                 return 0
293         }
294         return r.T.Nanoseconds() / int64(r.N)
295 }
296
297 func (r BenchmarkResult) mbPerSec() float64 {
298         if r.Bytes <= 0 || r.T <= 0 || r.N <= 0 {
299                 return 0
300         }
301         return (float64(r.Bytes) * float64(r.N) / 1e6) / r.T.Seconds()
302 }
303
304 func (r BenchmarkResult) AllocsPerOp() int64 {
305         if r.N <= 0 {
306                 return 0
307         }
308         return int64(r.MemAllocs) / int64(r.N)
309 }
310
311 func (r BenchmarkResult) AllocedBytesPerOp() int64 {
312         if r.N <= 0 {
313                 return 0
314         }
315         return int64(r.MemBytes) / int64(r.N)
316 }
317
318 func (r BenchmarkResult) String() string {
319         mbs := r.mbPerSec()
320         mb := ""
321         if mbs != 0 {
322                 mb = fmt.Sprintf("\t%7.2f MB/s", mbs)
323         }
324         nsop := r.NsPerOp()
325         ns := fmt.Sprintf("%10d ns/op", nsop)
326         if r.N > 0 && nsop < 100 {
327                 // The format specifiers here make sure that
328                 // the ones digits line up for all three possible formats.
329                 if nsop < 10 {
330                         ns = fmt.Sprintf("%13.2f ns/op", float64(r.T.Nanoseconds())/float64(r.N))
331                 } else {
332                         ns = fmt.Sprintf("%12.1f ns/op", float64(r.T.Nanoseconds())/float64(r.N))
333                 }
334         }
335         return fmt.Sprintf("%8d\t%s%s", r.N, ns, mb)
336 }
337
338 func (r BenchmarkResult) MemString() string {
339         return fmt.Sprintf("%8d B/op\t%8d allocs/op",
340                 r.AllocedBytesPerOp(), r.AllocsPerOp())
341 }
342
343 // benchmarkName returns full name of benchmark including procs suffix.
344 func benchmarkName(name string, n int) string {
345         if n != 1 {
346                 return fmt.Sprintf("%s-%d", name, n)
347         }
348         return name
349 }
350
351 type benchContext struct {
352         match *matcher
353
354         maxLen int // The largest recorded benchmark name.
355         extLen int // Maximum extension length.
356 }
357
358 // An internal function but exported because it is cross-package; part of the implementation
359 // of the "go test" command.
360 func RunBenchmarks(matchString func(pat, str string) (bool, error), benchmarks []InternalBenchmark) {
361         runBenchmarksInternal(matchString, benchmarks)
362 }
363
364 func runBenchmarksInternal(matchString func(pat, str string) (bool, error), benchmarks []InternalBenchmark) bool {
365         // If no flag was specified, don't run benchmarks.
366         if len(*matchBenchmarks) == 0 {
367                 return true
368         }
369         // Collect matching benchmarks and determine longest name.
370         maxprocs := 1
371         for _, procs := range cpuList {
372                 if procs > maxprocs {
373                         maxprocs = procs
374                 }
375         }
376         ctx := &benchContext{
377                 match:  newMatcher(matchString, *matchBenchmarks, "-test.bench"),
378                 extLen: len(benchmarkName("", maxprocs)),
379         }
380         var bs []InternalBenchmark
381         for _, Benchmark := range benchmarks {
382                 if _, matched := ctx.match.fullName(nil, Benchmark.Name); matched {
383                         bs = append(bs, Benchmark)
384                         benchName := benchmarkName(Benchmark.Name, maxprocs)
385                         if l := len(benchName) + ctx.extLen + 1; l > ctx.maxLen {
386                                 ctx.maxLen = l
387                         }
388                 }
389         }
390         main := &B{
391                 common: common{
392                         name:   "Main",
393                         w:      os.Stdout,
394                         chatty: *chatty,
395                 },
396                 benchFunc: func(b *B) {
397                         for _, Benchmark := range bs {
398                                 b.Run(Benchmark.Name, Benchmark.F)
399                         }
400                 },
401                 benchTime: *benchTime,
402                 context:   ctx,
403         }
404         main.runN(1)
405         return !main.failed
406 }
407
408 // processBench runs bench b for the configured CPU counts and prints the results.
409 func (ctx *benchContext) processBench(b *B) {
410         for i, procs := range cpuList {
411                 runtime.GOMAXPROCS(procs)
412                 benchName := benchmarkName(b.name, procs)
413                 fmt.Fprintf(b.w, "%-*s\t", ctx.maxLen, benchName)
414                 // Recompute the running time for all but the first iteration.
415                 if i > 0 {
416                         b = &B{
417                                 common: common{
418                                         signal: make(chan bool),
419                                         name:   b.name,
420                                         w:      b.w,
421                                         chatty: b.chatty,
422                                 },
423                                 benchFunc: b.benchFunc,
424                                 benchTime: b.benchTime,
425                         }
426                         b.run1()
427                 }
428                 r := b.doBench()
429                 if b.failed {
430                         // The output could be very long here, but probably isn't.
431                         // We print it all, regardless, because we don't want to trim the reason
432                         // the benchmark failed.
433                         fmt.Fprintf(b.w, "--- FAIL: %s\n%s", benchName, b.output)
434                         continue
435                 }
436                 results := r.String()
437                 if *benchmarkMemory || b.showAllocResult {
438                         results += "\t" + r.MemString()
439                 }
440                 fmt.Fprintln(b.w, results)
441                 // Unlike with tests, we ignore the -chatty flag and always print output for
442                 // benchmarks since the output generation time will skew the results.
443                 if len(b.output) > 0 {
444                         b.trimOutput()
445                         fmt.Fprintf(b.w, "--- BENCH: %s\n%s", benchName, b.output)
446                 }
447                 if p := runtime.GOMAXPROCS(-1); p != procs {
448                         fmt.Fprintf(os.Stderr, "testing: %s left GOMAXPROCS set to %d\n", benchName, p)
449                 }
450         }
451 }
452
453 // Run benchmarks f as a subbenchmark with the given name. It reports
454 // whether there were any failures.
455 //
456 // A subbenchmark is like any other benchmark. A benchmark that calls Run at
457 // least once will not be measured itself and will be called once with N=1.
458 func (b *B) Run(name string, f func(b *B)) bool {
459         // Since b has subbenchmarks, we will no longer run it as a benchmark itself.
460         // Release the lock and acquire it on exit to ensure locks stay paired.
461         b.hasSub = true
462         benchmarkLock.Unlock()
463         defer benchmarkLock.Lock()
464
465         benchName, ok := b.name, true
466         if b.context != nil {
467                 benchName, ok = b.context.match.fullName(&b.common, name)
468         }
469         if !ok {
470                 return true
471         }
472         sub := &B{
473                 common: common{
474                         signal: make(chan bool),
475                         name:   benchName,
476                         parent: &b.common,
477                         level:  b.level + 1,
478                         w:      b.w,
479                         chatty: b.chatty,
480                 },
481                 benchFunc: f,
482                 benchTime: b.benchTime,
483                 context:   b.context,
484         }
485         if sub.run1() {
486                 sub.run()
487         }
488         b.add(sub.result)
489         return !sub.failed
490 }
491
492 // add simulates running benchmarks in sequence in a single iteration. It is
493 // used to give some meaningful results in case func Benchmark is used in
494 // combination with Run.
495 func (b *B) add(other BenchmarkResult) {
496         r := &b.result
497         // The aggregated BenchmarkResults resemble running all subbenchmarks as
498         // in sequence in a single benchmark.
499         r.N = 1
500         r.T += time.Duration(other.NsPerOp())
501         if other.Bytes == 0 {
502                 // Summing Bytes is meaningless in aggregate if not all subbenchmarks
503                 // set it.
504                 b.missingBytes = true
505                 r.Bytes = 0
506         }
507         if !b.missingBytes {
508                 r.Bytes += other.Bytes
509         }
510         r.MemAllocs += uint64(other.AllocsPerOp())
511         r.MemBytes += uint64(other.AllocedBytesPerOp())
512 }
513
514 // trimOutput shortens the output from a benchmark, which can be very long.
515 func (b *B) trimOutput() {
516         // The output is likely to appear multiple times because the benchmark
517         // is run multiple times, but at least it will be seen. This is not a big deal
518         // because benchmarks rarely print, but just in case, we trim it if it's too long.
519         const maxNewlines = 10
520         for nlCount, j := 0, 0; j < len(b.output); j++ {
521                 if b.output[j] == '\n' {
522                         nlCount++
523                         if nlCount >= maxNewlines {
524                                 b.output = append(b.output[:j], "\n\t... [output truncated]\n"...)
525                                 break
526                         }
527                 }
528         }
529 }
530
531 // A PB is used by RunParallel for running parallel benchmarks.
532 type PB struct {
533         globalN *uint64 // shared between all worker goroutines iteration counter
534         grain   uint64  // acquire that many iterations from globalN at once
535         cache   uint64  // local cache of acquired iterations
536         bN      uint64  // total number of iterations to execute (b.N)
537 }
538
539 // Next reports whether there are more iterations to execute.
540 func (pb *PB) Next() bool {
541         if pb.cache == 0 {
542                 n := atomic.AddUint64(pb.globalN, pb.grain)
543                 if n <= pb.bN {
544                         pb.cache = pb.grain
545                 } else if n < pb.bN+pb.grain {
546                         pb.cache = pb.bN + pb.grain - n
547                 } else {
548                         return false
549                 }
550         }
551         pb.cache--
552         return true
553 }
554
555 // RunParallel runs a benchmark in parallel.
556 // It creates multiple goroutines and distributes b.N iterations among them.
557 // The number of goroutines defaults to GOMAXPROCS. To increase parallelism for
558 // non-CPU-bound benchmarks, call SetParallelism before RunParallel.
559 // RunParallel is usually used with the go test -cpu flag.
560 //
561 // The body function will be run in each goroutine. It should set up any
562 // goroutine-local state and then iterate until pb.Next returns false.
563 // It should not use the StartTimer, StopTimer, or ResetTimer functions,
564 // because they have global effect. It should also not call Run.
565 func (b *B) RunParallel(body func(*PB)) {
566         if b.N == 0 {
567                 return // Nothing to do when probing.
568         }
569         // Calculate grain size as number of iterations that take ~100µs.
570         // 100µs is enough to amortize the overhead and provide sufficient
571         // dynamic load balancing.
572         grain := uint64(0)
573         if b.previousN > 0 && b.previousDuration > 0 {
574                 grain = 1e5 * uint64(b.previousN) / uint64(b.previousDuration)
575         }
576         if grain < 1 {
577                 grain = 1
578         }
579         // We expect the inner loop and function call to take at least 10ns,
580         // so do not do more than 100µs/10ns=1e4 iterations.
581         if grain > 1e4 {
582                 grain = 1e4
583         }
584
585         n := uint64(0)
586         numProcs := b.parallelism * runtime.GOMAXPROCS(0)
587         var wg sync.WaitGroup
588         wg.Add(numProcs)
589         for p := 0; p < numProcs; p++ {
590                 go func() {
591                         defer wg.Done()
592                         pb := &PB{
593                                 globalN: &n,
594                                 grain:   grain,
595                                 bN:      uint64(b.N),
596                         }
597                         body(pb)
598                 }()
599         }
600         wg.Wait()
601         if n <= uint64(b.N) && !b.Failed() {
602                 b.Fatal("RunParallel: body exited without pb.Next() == false")
603         }
604 }
605
606 // SetParallelism sets the number of goroutines used by RunParallel to p*GOMAXPROCS.
607 // There is usually no need to call SetParallelism for CPU-bound benchmarks.
608 // If p is less than 1, this call will have no effect.
609 func (b *B) SetParallelism(p int) {
610         if p >= 1 {
611                 b.parallelism = p
612         }
613 }
614
615 // Benchmark benchmarks a single function. Useful for creating
616 // custom benchmarks that do not use the "go test" command.
617 //
618 // If f calls Run, the result will be an estimate of running all its
619 // subbenchmarks that don't call Run in sequence in a single benchmark.
620 func Benchmark(f func(b *B)) BenchmarkResult {
621         b := &B{
622                 common: common{
623                         signal: make(chan bool),
624                         w:      discard{},
625                 },
626                 benchFunc: f,
627                 benchTime: *benchTime,
628         }
629         if !b.run1() {
630                 return BenchmarkResult{}
631         }
632         return b.run()
633 }
634
635 type discard struct{}
636
637 func (discard) Write(b []byte) (n int, err error) { return len(b), nil }