-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpbench.go
159 lines (131 loc) · 3.08 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
// Package pbench reports percentiles for parallel benchmarks.
package pbench
import (
"fmt"
"reflect"
"runtime"
"sort"
"sync"
"testing"
"time"
"github.com/gavv/monotime"
)
// B wraps a testing.B and adds percentiles.
type B struct {
sync.Mutex
*testing.B
percs []float64
pbs []*PB
subBs map[int]*B
cpus []int
}
// New initializes a B from a wrapped testing.B.
func New(b *testing.B) *B {
return &B{
B: b,
percs: []float64{},
pbs: []*PB{},
subBs: map[int]*B{},
cpus: []int{},
}
}
// 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 {
defer b.report()
return b.B.Run(name, func(tb *testing.B) {
subB, cpus := &B{B: tb, percs: b.percs}, runtime.GOMAXPROCS(-1)
b.subBs[cpus] = subB
b.cpus = append(b.cpus, cpus)
f(subB)
})
}
func (b *B) report() {
b.Lock()
defer b.Unlock()
cpus := b.cpus[1:]
for _, perc := range b.percs {
reported := map[int]struct{}{}
for _, i := range cpus {
if _, ok := reported[i]; !ok {
b.subBs[i].reportSub(b, perc, i)
}
reported[i] = struct{}{}
}
}
}
func (b *B) reportSub(parent *B, perc float64, cpus int) {
var durations durationSlice
for _, pb := range b.pbs {
durations = append(durations, pb.s[:pb.idx]...)
}
sort.Sort(durations)
v := reflect.ValueOf(b.B).Elem()
name := v.FieldByName("name").String()
n := int(v.FieldByName("result").FieldByName("N").Int())
ctx := v.FieldByName("context")
if ctx.IsNil() {
ctx = reflect.ValueOf(parent.B).Elem().FieldByName("context")
}
maxLen := ctx.Elem().FieldByName("maxLen").Int()
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 > 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(durationSlice, 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 durationSlice
tick time.Duration
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 = monotime.Now()
return
}
now := monotime.Now()
pb.s[pb.idx] = now - pb.tick
pb.idx++
pb.tick = now
}
type durationSlice []time.Duration
func (p durationSlice) Len() int { return len(p) }
func (p durationSlice) Less(i, j int) bool { return p[i] < p[j] }
func (p durationSlice) Swap(i, j int) { p[i], p[j] = p[j], p[i] }