forked from cespare/percpu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
counter_test.go
118 lines (107 loc) · 2 KB
/
counter_test.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
package percpu
import (
"fmt"
"strings"
"sync"
"sync/atomic"
"testing"
)
func TestCounter(t *testing.T) {
c := NewCounter()
var wg sync.WaitGroup
const n = 100
for i := 0; i < n; i++ {
wg.Add(1)
go func() {
defer wg.Done()
for i := 0; i < n; i++ {
c.Add(1)
}
}()
}
wg.Wait()
got := c.Load()
if want := int64(n * n); got != want {
t.Fatalf("got total %d; want %d", got, want)
}
}
func TestCounterReset(t *testing.T) {
c := NewCounter()
var wg sync.WaitGroup
const n = 100
var resetSum int64
for i := 0; i < n; i++ {
wg.Add(1)
go func() {
defer wg.Done()
for i := 0; i < n; i++ {
c.Add(1)
if i%20 == 0 {
atomic.AddInt64(&resetSum, c.Reset())
}
}
}()
}
wg.Wait()
resetSum += c.Reset()
if n := c.Load(); n != 0 {
t.Fatalf("after Reset, Load was %d", n)
}
if want := int64(n * n); resetSum != want {
t.Fatalf("got total Resets=%d; want %d", resetSum, want)
}
}
// Measure overhead without contention.
func BenchmarkCounterNonParallel(b *testing.B) {
c := NewCounter()
for i := 0; i < b.N; i++ {
c.Add(1)
}
}
type mutexCounter struct {
mu sync.Mutex
n int64
}
func (c *mutexCounter) Add(n int64) {
c.mu.Lock()
c.n += n
c.mu.Unlock()
}
func (c *mutexCounter) Load() int64 {
c.mu.Lock()
defer c.mu.Unlock()
return c.n
}
type atomicCounter struct {
n int64
}
func (c *atomicCounter) Add(n int64) {
atomic.AddInt64(&c.n, n)
}
func (c *atomicCounter) Load() int64 {
return atomic.LoadInt64(&c.n)
}
func BenchmarkCounterParallel(b *testing.B) {
type counter interface {
Add(int64)
Load() int64
}
for _, newFunc := range []func() counter{
func() counter { return new(mutexCounter) },
func() counter { return new(atomicCounter) },
func() counter { return NewCounter() },
} {
name := fmt.Sprintf("%T", newFunc())
if i := strings.LastIndex(name, "."); i >= 0 {
name = name[i+1:]
}
b.Run(name, func(b *testing.B) {
c := newFunc()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
c.Add(1)
}
})
})
}
}