-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnumeral_bench_test.go
181 lines (155 loc) · 6.3 KB
/
numeral_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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
package numeral_test
import (
"testing"
"github.com/slysterous/numeral"
)
func benchmarkNumeralIncrement(initialValue string, values []rune, b *testing.B) {
num, err := numeral.NewNumeral(values, initialValue)
if err != nil {
b.Fatal(err)
}
for n := 0; n < b.N; n++ {
_ = num.Increment()
}
}
func benchmarkNumeralDecimal(num numeral.Numeral, b *testing.B) {
for n := 0; n < b.N; n++ {
_ = num.Decimal()
}
}
func benchmarkNumeralAdd(num numeral.Numeral, num2 numeral.Numeral, b *testing.B) {
for n := 0; n < b.N; n++ {
_ = num.Add(num2)
}
}
func benchmarkNumeralSum(num numeral.Numeral, num2 numeral.Numeral, b *testing.B) {
for n := 0; n < b.N; n++ {
_, _ = numeral.Sum(testValues, num, num2)
}
}
func BenchmarkNumeralIncrementDecimalSmall(b *testing.B) {
testValues := []rune{'0', '1', '2', '3', '4', '5', '6', '7', '8', '9'}
initValue := "0"
benchmarkNumeralIncrement(initValue, testValues, b)
}
func BenchmarkNumeralIncrementDecimalLarge(b *testing.B) {
testValues := []rune{'0', '1', '2', '3', '4', '5', '6', '7', '8', '9'}
initValue := "1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111"
benchmarkNumeralIncrement(initValue, testValues, b)
}
func BenchmarkNumeralIncrementBinarySmall(b *testing.B) {
testValues := []rune{'0', '1'}
initValue := "0"
benchmarkNumeralIncrement(initValue, testValues, b)
}
func BenchmarkNumeralIncrementBinaryLarge(b *testing.B) {
testValues := []rune{'0', '1'}
initValue := "1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111"
benchmarkNumeralIncrement(initValue, testValues, b)
}
func BenchmarkNumeralIncrementHexSmall(b *testing.B) {
testValues := []rune{'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'}
initValue := "0"
benchmarkNumeralIncrement(initValue, testValues, b)
}
func BenchmarkNumeralIncrementHexLarge(b *testing.B) {
testValues := []rune{'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'}
initValue := "1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111"
benchmarkNumeralIncrement(initValue, testValues, b)
}
func BenchmarkNumeralDecimalFromHex0(b *testing.B) {
testValues := []rune{'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'}
initValue := "0"
num, _ := numeral.NewNumeral(testValues, initValue)
benchmarkNumeralDecimal(*num, b)
}
func BenchmarkNumeralDecimalFromHexfffff(b *testing.B) {
testValues := []rune{'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'}
initValue := "ffffffffff"
num, _ := numeral.NewNumeral(testValues, initValue)
benchmarkNumeralDecimal(*num, b)
}
func BenchmarkNumeralDecimalFromHexffffffffff(b *testing.B) {
testValues := []rune{'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'}
initValue := "ffffffffff"
num, _ := numeral.NewNumeral(testValues, initValue)
benchmarkNumeralDecimal(*num, b)
}
func BenchmarkNumeralDecimalFromHexffffffffffffffffffff(b *testing.B) {
testValues := []rune{'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'}
initValue := "ffffffffffffffffffff"
num, _ := numeral.NewNumeral(testValues, initValue)
benchmarkNumeralDecimal(*num, b)
}
func BenchmarkNumeralDecimalFromBinary0(b *testing.B) {
testValues := []rune{'0', '1'}
initValue := "0"
num, _ := numeral.NewNumeral(testValues, initValue)
benchmarkNumeralDecimal(*num, b)
}
func BenchmarkNumeralDecimalFromBinary10000(b *testing.B) {
testValues := []rune{'0', '1'}
initValue := "10000"
num, _ := numeral.NewNumeral(testValues, initValue)
benchmarkNumeralDecimal(*num, b)
}
func BenchmarkNumeralDecimalFromBinary1000000000(b *testing.B) {
testValues := []rune{'0', '1'}
initValue := "1000000000"
num, _ := numeral.NewNumeral(testValues, initValue)
benchmarkNumeralDecimal(*num, b)
}
func BenchmarkNumeralDecimalFromBinary1000000000000000000(b *testing.B) {
testValues := []rune{'0', '1'}
initValue := "1000000000000000000"
num, _ := numeral.NewNumeral(testValues, initValue)
benchmarkNumeralDecimal(*num, b)
}
func BenchmarkNumeralAddBinaryOnHex(b *testing.B) {
testValues := []rune{'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'}
testValues2 := []rune{'0', '1'}
initValue := "999"
num, _ := numeral.NewNumeral(testValues, initValue)
num2, _ := numeral.NewFromDecimal(testValues2, 999000)
benchmarkNumeralAdd(*num, *num2, b)
}
func BenchmarkNumeralAddHexOnHex(b *testing.B) {
testValues := []rune{'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'}
testValues2 := []rune{'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'}
initValue := "999"
num, _ := numeral.NewNumeral(testValues, initValue)
num2, _ := numeral.NewFromDecimal(testValues2, 999000)
benchmarkNumeralAdd(*num, *num2, b)
}
func BenchmarkNumeralAddDecOnDec(b *testing.B) {
testValues := []rune{'0', '1', '2', '3', '4', '5', '6', '7', '8', '9'}
testValues2 := []rune{'0', '1', '2', '3', '4', '5', '6', '7', '8', '9'}
initValue := "999"
num, _ := numeral.NewNumeral(testValues, initValue)
num2, _ := numeral.NewFromDecimal(testValues2, 999000)
benchmarkNumeralAdd(*num, *num2, b)
}
func BenchmarkNumeralAddSumBinaryOnHex(b *testing.B) {
testValues := []rune{'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'}
testValues2 := []rune{'0', '1'}
initValue := "999"
num, _ := numeral.NewNumeral(testValues, initValue)
num2, _ := numeral.NewFromDecimal(testValues2, 999000)
benchmarkNumeralSum(*num, *num2, b)
}
func BenchmarkNumeralAddSumHexOnHex(b *testing.B) {
testValues := []rune{'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'}
testValues2 := []rune{'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'}
initValue := "999"
num, _ := numeral.NewNumeral(testValues, initValue)
num2, _ := numeral.NewFromDecimal(testValues2, 999000)
benchmarkNumeralSum(*num, *num2, b)
}
func BenchmarkNumeralAddSumDecOnDec(b *testing.B) {
testValues := []rune{'0', '1', '2', '3', '4', '5', '6', '7', '8', '9'}
testValues2 := []rune{'0', '1', '2', '3', '4', '5', '6', '7', '8', '9'}
initValue := "999"
num, _ := numeral.NewNumeral(testValues, initValue)
num2, _ := numeral.NewFromDecimal(testValues2, 999000)
benchmarkNumeralSum(*num, *num2, b)
}