-
Notifications
You must be signed in to change notification settings - Fork 8
/
benchmark_test.go
192 lines (160 loc) · 4.35 KB
/
benchmark_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
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
package lock
import (
"math/rand"
"sync"
"testing"
"time"
)
// ================
// Benchmark
// ================
// goos: darwin
// goarch: amd64
// pkg: github.com/viney-shih/go-lock
//
// BenchmarkRWMutexLock-8 42930610 29.0 ns/op 0 B/op 0 allocs/op
// BenchmarkConcurrentRWMutexLock-8 12205321 103 ns/op 0 B/op 0 allocs/op
// BenchmarkConcurrent50RWMutexLock-8 8393517 144 ns/op 0 B/op 0 allocs/op
//
// BenchmarkChanMutexLock-8 21671048 54.7 ns/op 0 B/op 0 allocs/op
// BenchmarkConcurrentChanMutexLock-8 5118392 228 ns/op 0 B/op 0 allocs/op
// BenchmarkChanMutexTryLock-8 21809853 55.1 ns/op 0 B/op 0 allocs/op
// BenchmarkConcurrentChanMutexTryLock-8 429987619 2.98 ns/op 0 B/op 0 allocs/op
//
// BenchmarkCASMutexLock-8 7097668 158 ns/op 96 B/op 1 allocs/op
// BenchmarkConcurrentCASMutexLock-8 1793245 649 ns/op 255 B/op 3 allocs/op
// BenchmarkConcurrent50CASMutexLock-8 1727955 688 ns/op 255 B/op 3 allocs/op
// BenchmarkCASMutexTryLock-8 7509704 156 ns/op 96 B/op 1 allocs/op
// BenchmarkConcurrentCASMutexTryLock-8 11179422 106 ns/op 4 B/op 0 allocs/op
// BenchmarkConcurrent50CASMutexTryLock-8 6191577 183 ns/op 37 B/op 0 allocs/op
func BenchmarkRWMutexLock(b *testing.B) {
rwMut := sync.RWMutex{}
for i := 0; i < b.N; i++ {
rwMut.Lock()
rwMut.Unlock()
}
}
func BenchmarkConcurrentRWMutexLock(b *testing.B) {
rwMut := sync.RWMutex{}
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
rwMut.Lock()
rwMut.Unlock()
}
})
}
func BenchmarkConcurrent50RWMutexLock(b *testing.B) {
rwMut := sync.RWMutex{}
rand.Seed(time.Now().UnixNano())
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
if rand.Intn(100) < 50 {
rwMut.RLock()
rwMut.RUnlock()
continue
}
rwMut.Lock()
rwMut.Unlock()
}
})
}
func BenchmarkChanMutexLock(b *testing.B) {
chanMut := NewChanMutex()
for i := 0; i < b.N; i++ {
chanMut.Lock()
chanMut.Unlock()
}
}
func BenchmarkConcurrentChanMutexLock(b *testing.B) {
chanMut := NewChanMutex()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
chanMut.Lock()
chanMut.Unlock()
}
})
}
func BenchmarkChanMutexTryLock(b *testing.B) {
chanMut := NewChanMutex()
for i := 0; i < b.N; i++ {
if chanMut.TryLock() {
chanMut.Unlock()
}
}
}
func BenchmarkConcurrentChanMutexTryLock(b *testing.B) {
chanMut := NewChanMutex()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
if chanMut.TryLock() {
chanMut.Unlock()
}
}
})
}
func BenchmarkCASMutexLock(b *testing.B) {
casMut := NewCASMutex()
for i := 0; i < b.N; i++ {
casMut.Lock()
casMut.Unlock()
}
}
func BenchmarkConcurrentCASMutexLock(b *testing.B) {
casMut := NewCASMutex()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
casMut.Lock()
casMut.Unlock()
}
})
}
func BenchmarkConcurrent50CASMutexLock(b *testing.B) {
casMut := NewCASMutex()
rand.Seed(time.Now().UnixNano())
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
if rand.Intn(100) < 50 {
casMut.RLock()
casMut.RUnlock()
continue
}
casMut.Lock()
casMut.Unlock()
}
})
}
func BenchmarkCASMutexTryLock(b *testing.B) {
casMut := NewCASMutex()
for i := 0; i < b.N; i++ {
if casMut.TryLock() {
casMut.Unlock()
}
}
}
func BenchmarkConcurrentCASMutexTryLock(b *testing.B) {
casMut := NewCASMutex()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
if casMut.TryLock() {
casMut.Unlock()
}
}
})
}
func BenchmarkConcurrent50CASMutexTryLock(b *testing.B) {
casMut := NewCASMutex()
rand.Seed(time.Now().UnixNano())
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
if rand.Intn(100) < 50 {
if casMut.RTryLock() {
casMut.RUnlock()
}
continue
}
if casMut.TryLock() {
casMut.Unlock()
}
}
})
}