-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpbench.go
134 lines (110 loc) · 2.46 KB
/
pbench.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
// Package pbench reports percentiles for parallel benchmarks.
package pbench
import (
"fmt"
"reflect"
"runtime"
"sort"
"sync"
"testing"
"time"
"github.com/aristanetworks/goarista/atime"
)
// B wraps a testing.B and adds percentiles.
type B struct {
sync.Mutex
*testing.B
percs []float64
pbs []*PB
}
// New initializes a B from a wrapped testing.B.
func New(b *testing.B) *B {
return &B{
B: b,
percs: []float64{},
pbs: []*PB{},
}
}
// ReportPercentile records and reports a percentile in sub-benchmark results.
func (b *B) ReportPercentile(perc float64) {
b.percs = append(b.percs, perc)
}
// Run benchmarks f as a subbenchmark with the given name.
func (b *B) Run(name string, f func(b *B)) bool {
innerB := &B{percs: b.percs}
defer innerB.report()
return b.B.Run(name, func(tb *testing.B) {
innerB.B = tb
f(innerB)
})
}
func (b *B) report() {
b.Lock()
defer b.Unlock()
durations := []float64{}
for _, pb := range b.pbs {
for _, d := range pb.s[:pb.idx] {
durations = append(durations, float64(d))
}
}
sort.Float64s(durations)
v := reflect.ValueOf(b.B).Elem()
name := v.FieldByName("name").String()
maxLen := v.FieldByName("context").Elem().FieldByName("maxLen").Int()
n := int(v.FieldByName("result").FieldByName("N").Int())
for _, perc := range b.percs {
idx := int(float64(len(durations)) * perc)
pvalue := time.Duration(durations[idx])
result := &testing.BenchmarkResult{
N: n,
T: pvalue * time.Duration(n),
}
var cpuList string
if cpus := runtime.GOMAXPROCS(-1); cpus > 1 {
cpuList = fmt.Sprintf("-%d", cpus)
}
benchName := fmt.Sprintf("%s/P%02.5g%s", name, perc*100, cpuList)
fmt.Printf("%-*s\t%s\n", maxLen, benchName, result)
}
}
// RunParallel runs a benchmark in parallel.
func (b *B) RunParallel(body func(*PB)) {
b.B.RunParallel(func(pb *testing.PB) {
body(b.pb(pb))
})
}
func (b *B) pb(inner *testing.PB) *PB {
pb := &PB{
PB: inner,
s: make([]uint64, b.N),
}
b.Lock()
defer b.Unlock()
b.pbs = append(b.pbs, pb)
return pb
}
// A PB is used by RunParallel for running parallel benchmarks.
type PB struct {
*testing.PB
s []uint64
tick uint64
idx int
}
// Next reports whether there are more iterations to execute.
func (pb *PB) Next() bool {
if pb.PB.Next() {
pb.record()
return true
}
return false
}
func (pb *PB) record() {
if pb.tick == 0 {
pb.tick = atime.NanoTime()
return
}
now := atime.NanoTime()
pb.s[pb.idx] = now - pb.tick
pb.idx++
pb.tick = now
}