-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbench_test.go
160 lines (136 loc) · 2.69 KB
/
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
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
package random_test
import "testing"
func Benchmark_Go_Seed(b *testing.B) {
for n := b.N; n > 0; n-- {
rng.Seed(seed)
}
}
func Benchmark_Go_Int63(b *testing.B) {
rng.Seed(seed)
for n := b.N; n > 0; n-- {
rng.Int63()
}
}
func Benchmark_Go_Uint64(b *testing.B) {
rng.Seed(seed)
for n := b.N; n > 0; n-- {
rng.Uint64()
}
}
func Benchmark_Go_Float64(b *testing.B) {
rng.Seed(seed)
for n := b.N; n > 0; n-- {
rng.Float64()
}
}
func Benchmark_Go_Safe_Seed(b *testing.B) {
for n := b.N; n > 0; n-- {
rng_safe.Seed(seed)
}
}
func Benchmark_Go_Safe_Int63(b *testing.B) {
rng_safe.Seed(seed)
for n := b.N; n > 0; n-- {
rng_safe.Int63()
}
}
func Benchmark_Go_Safe_Uint64(b *testing.B) {
rng_safe.Seed(seed)
for n := b.N; n > 0; n-- {
rng_safe.Uint64()
}
}
func Benchmark_Go_Safe_Float64(b *testing.B) {
rng_safe.Seed(seed)
for n := b.N; n > 0; n-- {
rng_safe.Float64()
}
}
func Benchmark_MT19937_Seed(b *testing.B) {
for n := b.N; n > 0; n-- {
rng_mt19937.Seed(seed)
}
}
func Benchmark_MT19937_Int63(b *testing.B) {
rng_mt19937.Seed(seed)
for n := b.N; n > 0; n-- {
rng_mt19937.Int63()
}
}
func Benchmark_MT19937_Uint64(b *testing.B) {
rng_mt19937.Seed(seed)
for n := b.N; n > 0; n-- {
rng_mt19937.Uint64()
}
}
func Benchmark_MT19937_Float64(b *testing.B) {
rng_mt19937.Seed(seed)
for n := b.N; n > 0; n-- {
rng_mt19937.Float64()
}
}
func Benchmark_MT19937_Safe_Seed(b *testing.B) {
for n := b.N; n > 0; n-- {
rng_safe_mt19937.Seed(seed)
}
}
func Benchmark_MT19937_Safe_Int63(b *testing.B) {
rng_safe_mt19937.Seed(seed)
for n := b.N; n > 0; n-- {
rng_safe_mt19937.Int63()
}
}
func Benchmark_MT19937_Safe_Uint64(b *testing.B) {
rng_safe_mt19937.Seed(seed)
for n := b.N; n > 0; n-- {
rng_safe_mt19937.Uint64()
}
}
func Benchmark_MT19937_Safe_Float64(b *testing.B) {
rng_safe_mt19937.Seed(seed)
for n := b.N; n > 0; n-- {
rng_safe_mt19937.Float64()
}
}
func Benchmark_Float64w(b *testing.B) {
ws := []float64{2, 2, 4, 2}
for n := b.N; n > 0; n-- {
rng.Float64w(ws)
}
}
func Benchmark_Float32w(b *testing.B) {
ws := []float32{2, 2, 4, 2}
for n := b.N; n > 0; n-- {
rng.Float32w(ws)
}
}
func Benchmark_Uint64w(b *testing.B) {
ws := []uint64{2, 2, 4, 2}
for n := b.N; n > 0; n-- {
rng.Uint64w(ws)
}
}
func Benchmark_Uint32w(b *testing.B) {
ws := []uint32{2, 2, 4, 2}
for n := b.N; n > 0; n-- {
rng.Uint32w(ws)
}
}
func Benchmark_Int64w(b *testing.B) {
ws := []int64{2, 2, 4, 2}
for n := b.N; n > 0; n-- {
rng.Int64w(ws)
}
}
func Benchmark_Int32w(b *testing.B) {
ws := []int32{2, 2, 4, 2}
for n := b.N; n > 0; n-- {
rng.Int32w(ws)
}
}
func Benchmark_Intw(b *testing.B) {
ws := []int{2, 2, 4, 2}
for n := b.N; n > 0; n-- {
rng.Intw(ws)
}
}