-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
range_test.go
347 lines (297 loc) · 7.86 KB
/
range_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
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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
package bitmap
import (
"testing"
"github.com/kelindar/simd"
"github.com/stretchr/testify/assert"
)
/*
cpu: Intel(R) Core(TM) i7-9700K CPU @ 3.60GHz
BenchmarkRange/range-8 1891 674656 ns/op 0 B/op 0 allocs/op
BenchmarkRange/filter-8 2222 535359 ns/op 0 B/op 0 allocs/op
*/
func BenchmarkRange(b *testing.B) {
var i uint32
run(b, "range", func(index Bitmap) {
index.Range(func(x uint32) {
i = x
return
})
})
run(b, "filter", func(index Bitmap) {
index.Filter(func(x uint32) bool {
return x%2 == 0
})
})
_ = i
}
/*
cpu: Intel(R) Core(TM) i7-9700K CPU @ 3.60GHz
BenchmarkAggregate/sum-8 1849 627004 ns/op 0 B/op 0 allocs/op
BenchmarkAggregate/sum-full-8 16939 68971 ns/op 0 B/op 0 allocs/op
BenchmarkAggregate/min-8 1474 868868 ns/op 0 B/op 0 allocs/op
BenchmarkAggregate/min-full-8 17082 68719 ns/op 0 B/op 0 allocs/op
BenchmarkAggregate/max-8 1322 864578 ns/op 0 B/op 0 allocs/op
BenchmarkAggregate/max-full-8 17354 69015 ns/op 0 B/op 0 allocs/op
*/
func BenchmarkAggregate(b *testing.B) {
target := make([]float32, 1000000)
run(b, "sum", func(index Bitmap) {
Sum(target, index)
})
runFull(b, "sum-full", func(index Bitmap) {
Sum(target, index)
})
run(b, "min", func(index Bitmap) {
Min(target, index)
})
runFull(b, "min-full", func(index Bitmap) {
Min(target, index)
})
run(b, "max", func(index Bitmap) {
Max(target, index)
})
runFull(b, "max-full", func(index Bitmap) {
Max(target, index)
})
}
func TestFilter(t *testing.T) {
a := make(Bitmap, 4)
a.Ones()
assert.Equal(t, 256, a.Count())
// Filter out odd
a.Filter(func(x uint32) bool {
return x%2 == 0
})
assert.Equal(t, 128, a.Count())
// Filter out even
a.Filter(func(x uint32) bool {
assert.Equal(t, 0, int(x%2)) // Must be odd
return x%2 == 1
})
assert.Equal(t, 0, a.Count())
// Filter cases
for i := 0; i < 512; i++ {
b := Bitmap{uint64(i)}
c1 := b.Count()
c2 := 0
b.Filter(func(x uint32) bool {
c2++
return true
})
// We must have the minimum number of function calls
assert.Equal(t, c1, c2)
assert.Equal(t, uint64(i), b[0])
}
}
func TestRangeCases(t *testing.T) {
for i := 0; i < 512; i++ {
b := Bitmap{uint64(i)}
c1 := b.Count()
c2 := 0
b.Range(func(x uint32) {
c2++
return
})
// We must have the minimum number of function calls
assert.Equal(t, c1, c2)
assert.Equal(t, uint64(i), b[0])
}
}
func TestRangeIndex(t *testing.T) {
a := make(Bitmap, 2)
a.Ones()
triangular := 0
a.Range(func(x uint32) {
triangular += int(x)
return
})
assert.Equal(t, 8128, triangular)
}
// ----------------------------- Aggregation -----------------------------
func TestAggSum(t *testing.T) {
{ // Empty Bitmap
arr, index := makeAggregateInput(0x0, 0x0)
assert.Equal(t, sumNaive(arr, index), Sum(arr, index))
}
{ // Partial Bitmap
arr, index := makeAggregateInput(0xffffffffffffffff, 0x0123456789abcdef)
assert.Equal(t, sumNaive(arr, index), Sum(arr, index))
}
{ // Full Bitmap
arr, index := makeAggregateInput(0xffffffffffffffff, 0xffffffffffffffff)
assert.Equal(t, sumNaive(arr, index), Sum(arr, index))
}
{ // Nil Bitmap
arr, _ := makeAggregateInput(0x0, 0x0)
assert.Equal(t, sumNaive(arr, nil), Sum(arr, nil))
}
{ // Nil Array
_, index := makeAggregateInput(0x0, 0x0)
assert.Equal(t, sumNaive([]int{}, index), Sum([]int{}, index))
}
}
func TestAggMin(t *testing.T) {
{ // Empty Bitmap
arr, index := makeAggregateInput(0x0, 0x0)
expect, ok1 := minNaive(arr, index)
result, ok2 := Min(arr, index)
assert.Equal(t, expect, result)
assert.Equal(t, ok1, ok2)
}
{ // Partial Bitmap
arr, index := makeAggregateInput(0xffffffffffffffff, 0x0123456789abcdef)
expect, ok1 := minNaive(arr, index)
result, ok2 := Min(arr, index)
assert.Equal(t, expect, result)
assert.Equal(t, ok1, ok2)
}
{ // Full Bitmap
arr, index := makeAggregateInput(0xffffffffffffffff, 0xffffffffffffffff)
expect, ok1 := minNaive(arr, index)
result, ok2 := Min(arr, index)
assert.Equal(t, expect, result)
assert.Equal(t, ok1, ok2)
}
{ // Nil Bitmap
arr, _ := makeAggregateInput(0x0, 0x0)
expect, ok1 := minNaive(arr, nil)
result, ok2 := Min(arr, nil)
assert.Equal(t, expect, result)
assert.Equal(t, ok1, ok2)
}
{ // Nil Array
_, index := makeAggregateInput(0x0, 0x0)
expect, ok1 := minNaive([]int{}, index)
result, ok2 := Min([]int{}, index)
assert.Equal(t, expect, result)
assert.Equal(t, ok1, ok2)
}
}
func TestAggMax(t *testing.T) {
{ // Empty Bitmap
arr, index := makeAggregateInput(0x0, 0x0)
expect, ok1 := maxNaive(arr, index)
result, ok2 := Max(arr, index)
assert.Equal(t, expect, result)
assert.Equal(t, ok1, ok2)
}
{ // Partial Bitmap
arr, index := makeAggregateInput(0xffffffffffffffff, 0x0123456789abcdef)
expect, ok1 := maxNaive(arr, index)
result, ok2 := Max(arr, index)
assert.Equal(t, expect, result)
assert.Equal(t, ok1, ok2)
}
{ // Full Bitmap
arr, index := makeAggregateInput(0xffffffffffffffff, 0xffffffffffffffff)
expect, ok1 := maxNaive(arr, index)
result, ok2 := Max(arr, index)
assert.Equal(t, expect, result)
assert.Equal(t, ok1, ok2)
}
{ // Nil Bitmap
arr, _ := makeAggregateInput(0x0, 0x0)
expect, ok1 := maxNaive(arr, nil)
result, ok2 := Max(arr, nil)
assert.Equal(t, expect, result)
assert.Equal(t, ok1, ok2)
}
{ // Nil Array
_, index := makeAggregateInput(0x0, 0x0)
expect, ok1 := maxNaive([]int{}, index)
result, ok2 := Max([]int{}, index)
assert.Equal(t, expect, result)
assert.Equal(t, ok1, ok2)
}
}
func TestLeftPack(t *testing.T) {
src, index := makeAggregateInput(0x0123456789abcdef, 0x0123456789abcdef)
dst := leftPack(&[64]int{}, src, index[0])
assert.Equal(t, 32, len(dst))
}
// ----------------------------- Naive Aggregation Funcs -----------------------------
func sumNaive[T simd.Number](src []T, index Bitmap) (out T) {
size := minint(len(src), len(index)*64)
for i := 0; i < size; i++ {
if index.Contains(uint32(i)) {
out += src[i]
}
}
return
}
func minNaive[T simd.Number](src []T, index Bitmap) (T, bool) {
if len(src) == 0 || index.Count() == 0 {
return 0, false
}
size := minint(len(src), len(index)*64)
out := src[0]
for i := 0; i < size; i++ {
if index.Contains(uint32(i)) && src[i] < out {
out = src[i]
}
}
return out, true
}
func maxNaive[T simd.Number](src []T, index Bitmap) (T, bool) {
if len(src) == 0 || index.Count() == 0 {
return 0, false
}
size := minint(len(src), len(index)*64)
out := src[0]
for i := 0; i < size; i++ {
if index.Contains(uint32(i)) && src[i] > out {
out = src[i]
}
}
return out, true
}
func makeAggregateInput(filter1, filter2 uint64) ([]int, Bitmap) {
index := make(Bitmap, 0, 80)
for i := 0; i < 80; i += 2 {
index = append(index, filter1, filter2)
}
var arr []int
for i := 0; i < 5000; i++ {
arr = append(arr, 100+i)
}
arr[102] = 50
arr[101] = 5000
arr[152] = 40
arr[151] = 6000
arr[4999] = 30
arr[4998] = 20000
return arr, index
}
// ----------------------------- Benchmark -----------------------------
// run runs a benchmark
func run(b *testing.B, name string, f func(index Bitmap)) {
count := 1000064
b.Run(name, func(b *testing.B) {
index := make(Bitmap, count/64)
index.Grow(uint32(count))
for i := 0; i < len(index); i++ {
index[i] = 0xf0f0f0f0f0f0f0f0
}
b.ReportAllocs()
b.ResetTimer()
for n := 0; n < b.N; n++ {
f(index)
}
})
}
// run runs a benchmark on a full bitmap
func runFull(b *testing.B, name string, f func(index Bitmap)) {
count := 1000000
b.Run(name, func(b *testing.B) {
index := make(Bitmap, count/64)
index.Grow(uint32(count - 1))
for i := 0; i < len(index); i++ {
index[i] = 0xffffffffffffffff
}
b.ReportAllocs()
b.ResetTimer()
for n := 0; n < b.N; n++ {
f(index)
}
})
}