-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathatomic_bench_test.go
More file actions
299 lines (258 loc) · 5.73 KB
/
Copy pathatomic_bench_test.go
File metadata and controls
299 lines (258 loc) · 5.73 KB
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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
// SPDX-License-Identifier: EUPL-1.2
// Benchmarks for the atomic primitives in atomic.go.
// Per AX-11 — atomic ops sit on every counter, every ready-flag,
// every shared registry slot. Wrappers add no measurable overhead
// in normal use (compiler inlines through to the stdlib atomic.*
// intrinsic) but a regression here would cascade across every
// concurrent path in the ecosystem, so each one gets a perf gate.
//
// Each typed wrapper (AtomicBool / Int32 / Int64 / Uint32 / Uint64 /
// Pointer[T]) is covered for Load / Store / Add / Swap / CAS.
// Parallel variants on the int64 counter expose the contention floor.
//
// Run: go test -bench='BenchmarkAtomic' -benchmem -run='^$' .
package core_test
import (
"testing"
. "dappco.re/go"
)
// Sinks prevent compiler dead-code elimination on the read paths.
var (
atomicSinkBool bool
atomicSinkInt32 int32
atomicSinkInt64 int64
atomicSinkUint32 uint32
atomicSinkUint64 uint64
atomicSinkPointer *atomicBenchPayload
)
type atomicBenchPayload struct {
value int64
}
// --- AtomicBool ---
func BenchmarkAtomicBool_Load(b *B) {
var a AtomicBool
a.Store(true)
b.ReportAllocs()
for i := 0; i < b.N; i++ {
atomicSinkBool = a.Load()
}
}
func BenchmarkAtomicBool_Store(b *B) {
var a AtomicBool
b.ReportAllocs()
for i := 0; i < b.N; i++ {
a.Store(i&1 == 0)
}
}
func BenchmarkAtomicBool_Swap(b *B) {
var a AtomicBool
b.ReportAllocs()
for i := 0; i < b.N; i++ {
atomicSinkBool = a.Swap(i&1 == 0)
}
}
func BenchmarkAtomicBool_CompareAndSwap(b *B) {
var a AtomicBool
b.ReportAllocs()
for i := 0; i < b.N; i++ {
a.CompareAndSwap(false, true)
a.Store(false)
}
}
// --- AtomicInt32 ---
func BenchmarkAtomicInt32_Load(b *B) {
var a AtomicInt32
a.Store(42)
b.ReportAllocs()
for i := 0; i < b.N; i++ {
atomicSinkInt32 = a.Load()
}
}
func BenchmarkAtomicInt32_Store(b *B) {
var a AtomicInt32
b.ReportAllocs()
for i := 0; i < b.N; i++ {
a.Store(int32(i))
}
}
func BenchmarkAtomicInt32_Add(b *B) {
var a AtomicInt32
b.ReportAllocs()
for i := 0; i < b.N; i++ {
atomicSinkInt32 = a.Add(1)
}
}
func BenchmarkAtomicInt32_Swap(b *B) {
var a AtomicInt32
b.ReportAllocs()
for i := 0; i < b.N; i++ {
atomicSinkInt32 = a.Swap(int32(i))
}
}
func BenchmarkAtomicInt32_CompareAndSwap(b *B) {
var a AtomicInt32
b.ReportAllocs()
for i := 0; i < b.N; i++ {
a.CompareAndSwap(0, 1)
a.Store(0)
}
}
// --- AtomicInt64 ---
func BenchmarkAtomicInt64_Load(b *B) {
var a AtomicInt64
a.Store(42)
b.ReportAllocs()
for i := 0; i < b.N; i++ {
atomicSinkInt64 = a.Load()
}
}
func BenchmarkAtomicInt64_Store(b *B) {
var a AtomicInt64
b.ReportAllocs()
for i := 0; i < b.N; i++ {
a.Store(int64(i))
}
}
func BenchmarkAtomicInt64_Add(b *B) {
var a AtomicInt64
b.ReportAllocs()
for i := 0; i < b.N; i++ {
atomicSinkInt64 = a.Add(1)
}
}
func BenchmarkAtomicInt64_Swap(b *B) {
var a AtomicInt64
b.ReportAllocs()
for i := 0; i < b.N; i++ {
atomicSinkInt64 = a.Swap(int64(i))
}
}
func BenchmarkAtomicInt64_CompareAndSwap(b *B) {
var a AtomicInt64
b.ReportAllocs()
for i := 0; i < b.N; i++ {
a.CompareAndSwap(0, 1)
a.Store(0)
}
}
// --- AtomicUint32 ---
func BenchmarkAtomicUint32_Load(b *B) {
var a AtomicUint32
a.Store(42)
b.ReportAllocs()
for i := 0; i < b.N; i++ {
atomicSinkUint32 = a.Load()
}
}
func BenchmarkAtomicUint32_Add(b *B) {
var a AtomicUint32
b.ReportAllocs()
for i := 0; i < b.N; i++ {
atomicSinkUint32 = a.Add(1)
}
}
func BenchmarkAtomicUint32_Swap(b *B) {
var a AtomicUint32
b.ReportAllocs()
for i := 0; i < b.N; i++ {
atomicSinkUint32 = a.Swap(uint32(i))
}
}
func BenchmarkAtomicUint32_CompareAndSwap(b *B) {
var a AtomicUint32
b.ReportAllocs()
for i := 0; i < b.N; i++ {
a.CompareAndSwap(0, 1)
a.Store(0)
}
}
// --- AtomicUint64 ---
func BenchmarkAtomicUint64_Load(b *B) {
var a AtomicUint64
a.Store(42)
b.ReportAllocs()
for i := 0; i < b.N; i++ {
atomicSinkUint64 = a.Load()
}
}
func BenchmarkAtomicUint64_Add(b *B) {
var a AtomicUint64
b.ReportAllocs()
for i := 0; i < b.N; i++ {
atomicSinkUint64 = a.Add(1)
}
}
func BenchmarkAtomicUint64_Swap(b *B) {
var a AtomicUint64
b.ReportAllocs()
for i := 0; i < b.N; i++ {
atomicSinkUint64 = a.Swap(uint64(i))
}
}
func BenchmarkAtomicUint64_CompareAndSwap(b *B) {
var a AtomicUint64
b.ReportAllocs()
for i := 0; i < b.N; i++ {
a.CompareAndSwap(0, 1)
a.Store(0)
}
}
// --- AtomicPointer[T] ---
func BenchmarkAtomicPointer_Load(b *B) {
var a AtomicPointer[atomicBenchPayload]
a.Store(&atomicBenchPayload{value: 42})
b.ReportAllocs()
for i := 0; i < b.N; i++ {
atomicSinkPointer = a.Load()
}
}
func BenchmarkAtomicPointer_Store(b *B) {
var a AtomicPointer[atomicBenchPayload]
p := &atomicBenchPayload{value: 42}
b.ReportAllocs()
for i := 0; i < b.N; i++ {
a.Store(p)
}
}
func BenchmarkAtomicPointer_Swap(b *B) {
var a AtomicPointer[atomicBenchPayload]
p := &atomicBenchPayload{value: 42}
b.ReportAllocs()
for i := 0; i < b.N; i++ {
atomicSinkPointer = a.Swap(p)
}
}
func BenchmarkAtomicPointer_CompareAndSwap(b *B) {
var a AtomicPointer[atomicBenchPayload]
old := &atomicBenchPayload{value: 1}
next := &atomicBenchPayload{value: 2}
a.Store(old)
b.ReportAllocs()
for i := 0; i < b.N; i++ {
a.CompareAndSwap(old, next)
a.Store(old)
}
}
// --- Parallel contention floor ---
//
// AtomicInt64.Add under -cpu=32 contention shows the cache-line bounce
// cost — the realistic floor for any "shared counter" pattern.
func BenchmarkAtomicInt64_Add_Parallel(b *B) {
var a AtomicInt64
b.ReportAllocs()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
a.Add(1)
}
})
}
func BenchmarkAtomicInt64_Load_Parallel(b *B) {
var a AtomicInt64
a.Store(42)
b.ReportAllocs()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
atomicSinkInt64 = a.Load()
}
})
}