forked from minio/simdjson-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparse_number_test.go
159 lines (136 loc) · 3.72 KB
/
parse_number_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
/*
* MinIO Cloud Storage, (C) 2020 MinIO, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package simdjson
import (
"fmt"
"math"
"math/rand"
"strconv"
"sync"
"testing"
"time"
)
func closeEnough(d1, d2 float64) (ce bool) {
return math.Abs((d1-d2)/(0.5*(d1+d2))) < 1e-20
}
func closeEnoughLessPrecision(d1, d2 float64) (ce bool) {
return math.Abs((d1-d2)/(0.5*(d1+d2))) < 1e-15
}
// The following benchmarking code is borrowed from Golang (https://golang.org/src/strconv/atoi_test.go)
func BenchmarkParseIntGolang(b *testing.B) {
b.Run("Pos", func(b *testing.B) {
benchmarkParseIntGolang(b, 1)
})
b.Run("Neg", func(b *testing.B) {
benchmarkParseIntGolang(b, -1)
})
}
type benchCase struct {
name string
num int64
}
func benchmarkParseIntGolang(b *testing.B, neg int) {
cases := []benchCase{
{"63bit", 1<<63 - 1},
}
for _, cs := range cases {
b.Run(cs.name, func(b *testing.B) {
s := fmt.Sprintf("%d", cs.num*int64(neg))
for i := 0; i < b.N; i++ {
out, _ := strconv.ParseInt(s, 10, 64)
BenchSink += int(out)
}
})
}
}
func BenchmarkAtoiGolang(b *testing.B) {
b.Run("Pos", func(b *testing.B) {
benchmarkAtoiGolang(b, 1)
})
b.Run("Neg", func(b *testing.B) {
benchmarkAtoiGolang(b, -1)
})
}
func benchmarkAtoiGolang(b *testing.B, neg int) {
cases := []benchCase{}
if strconv.IntSize == 64 {
cases = append(cases, []benchCase{
{"63bit", 1<<63 - 1},
}...)
}
for _, cs := range cases {
b.Run(cs.name, func(b *testing.B) {
s := fmt.Sprintf("%d", cs.num*int64(neg))
for i := 0; i < b.N; i++ {
out, _ := strconv.Atoi(s)
BenchSink += out
}
})
}
}
var BenchSink int // make sure compiler cannot optimize away benchmarks
// The following benchmarking code is borrowed from Golang (https://golang.org/src/strconv/atof_test.go)
type atofSimpleTest struct {
x float64
s string
}
var (
atofOnce sync.Once
benchmarksRandomBits [1024]string
benchmarksRandomNormal [1024]string
benchmarksRandomBitsSimd [1024]string
benchmarksRandomNormalSimd [1024]string
)
func initAtof() {
atofOnce.Do(initAtofOnce)
}
func initAtofOnce() {
// Generate random inputs for tests and benchmarks
rand.Seed(time.Now().UnixNano())
for i := range benchmarksRandomBits {
bits := uint64(rand.Uint32())<<32 | uint64(rand.Uint32())
x := math.Float64frombits(bits)
benchmarksRandomBits[i] = strconv.FormatFloat(x, 'g', -1, 64)
benchmarksRandomBitsSimd[i] = benchmarksRandomBits[i] + ":"
}
for i := range benchmarksRandomNormal {
x := rand.NormFloat64()
benchmarksRandomNormal[i] = strconv.FormatFloat(x, 'g', -1, 64)
benchmarksRandomNormalSimd[i] = benchmarksRandomNormal[i] + ":"
}
}
func BenchmarkParseAtof64FloatExpGolang(b *testing.B) {
for i := 0; i < b.N; i++ {
strconv.ParseFloat("-5.09e75", 64)
}
}
func BenchmarkParseAtof64BigGolang(b *testing.B) {
for i := 0; i < b.N; i++ {
strconv.ParseFloat("123456789123456789123456789", 64)
}
}
func BenchmarkParseAtof64RandomBitsGolang(b *testing.B) {
initAtof()
for i := 0; i < b.N; i++ {
strconv.ParseFloat(benchmarksRandomBits[i%1024], 64)
}
}
func BenchmarkParseAtof64RandomFloatsGolang(b *testing.B) {
initAtof()
for i := 0; i < b.N; i++ {
strconv.ParseFloat(benchmarksRandomNormal[i%1024], 64)
}
}