-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfastrand_bench_test.go
121 lines (106 loc) · 1.99 KB
/
fastrand_bench_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
package fastrand
import (
"math/rand"
"sync"
"testing"
valyala_fastrand "github.com/valyala/fastrand"
)
func BenchmarkSplitMix64(b *testing.B) {
b.RunParallel(func(pb *testing.PB) {
var r SplitMix64
r.Seed(Seed())
for pb.Next() {
use64(r.Uint64())
}
})
}
func BenchmarkAtomicSplitMix64(b *testing.B) {
var r AtomicSplitMix64
r.Seed(Seed())
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
use64(r.Uint64())
}
})
}
func BenchmarkShardedSplitMix64(b *testing.B) {
r := NewShardedSplitMix64()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
use64(r.Uint64())
}
})
}
func BenchmarkPCG(b *testing.B) {
b.RunParallel(func(pb *testing.PB) {
var r PCG
r.Seed(Seed())
for pb.Next() {
use32(r.Uint32())
}
})
}
func BenchmarkAtomicPCG(b *testing.B) {
var r AtomicPCG
r.Seed(Seed())
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
use32(r.Uint32())
}
})
}
func BenchmarkShardedPCG(b *testing.B) {
r := NewShardedPCG()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
use32(r.Uint32())
}
})
}
func BenchmarkXoshiro256StarStar(b *testing.B) {
b.RunParallel(func(pb *testing.PB) {
r := &Xoshiro256StarStar{}
r.safeSeed()
for pb.Next() {
use64(r.Uint64())
}
})
}
func BenchmarkShardedXoshiro256StarStar(b *testing.B) {
r := NewShardedXoshiro256StarStar()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
use64(r.Uint64())
}
})
}
func BenchmarkMathRand(b *testing.B) {
b.RunParallel(func(pb *testing.PB) {
r := rand.New(rand.NewSource(0))
for pb.Next() {
use64(r.Uint64())
}
})
}
func BenchmarkMathRandMutex(b *testing.B) {
var m sync.Mutex
r := rand.New(rand.NewSource(0))
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
m.Lock()
use64(r.Uint64())
m.Unlock()
}
})
}
func BenchmarkValyalaFastrand(b *testing.B) {
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
use32(valyala_fastrand.Uint32())
}
})
}
//go:noinline
func use32(uint32) {}
//go:noinline
func use64(uint64) {}