-
Notifications
You must be signed in to change notification settings - Fork 0
/
bench_test.go
111 lines (94 loc) · 2.23 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
package radix
import (
"math/rand"
"runtime"
"testing"
)
var workers = runtime.NumCPU()
func treeInsert(b *testing.B, path string, num int) {
db, bytes := loadTestFile(path, 0)
if db == nil {
b.Skipf("Testfile %s not found", path)
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
buildTreeFromDB(db, num, false)
}
b.SetBytes(bytes)
}
func treeSearch(b *testing.B, path string) {
db, _ := loadTestFile(path, 0)
if db == nil {
b.Skipf("Testfile %s not found", path)
}
trie := buildTreeFromDB(db, runtime.NumCPU(), false)
b.ResetTimer()
for n := 0; n < b.N; n++ {
for _, w := range db {
trie.Lookup(w)
}
}
}
func BenchmarkUUIDsTreeInsert(b *testing.B) {
treeInsert(b, "testdata/uuid.txt", 1)
}
func BenchmarkUUIDsTreeSearch(b *testing.B) {
treeSearch(b, "testdata/uuid.txt")
}
func BenchmarkWordsTreeInsert(b *testing.B) {
treeInsert(b, "testdata/words.txt", 1)
}
func BenchmarkWordsTreeSearch(b *testing.B) {
treeSearch(b, "testdata/words.txt")
}
func BenchmarkHSKTreeInsert(b *testing.B) {
treeInsert(b, "testdata/hsk_words.txt", 1)
}
func BenchmarkHSKTreeSearch(b *testing.B) {
treeSearch(b, "testdata/hsk_words.txt")
}
func BenchmarkDOITreeInsert(b *testing.B) {
treeInsert(b, "testdata/DOI-2011.txt", 1)
}
func BenchmarkDOITreeSearch(b *testing.B) {
treeSearch(b, "testdata/DOI-2011.txt")
}
func BenchmarkConcurrentDOITreeInsert(b *testing.B) {
treeInsert(b, "testdata/DOI-2011.txt", workers)
}
func BenchmarkInteger50MSparse(b *testing.B) {
rand.Seed(0)
db := generateRandomIntegers(50000000)
b.ResetTimer()
for n := 0; n < b.N; n++ {
buildTreeFromDB(db, workers, false)
}
b.SetBytes(50000000 * 8)
}
func BenchmarkInteger50MDense(b *testing.B) {
rand.Seed(0)
db := fillIntegers(50000000)
b.ResetTimer()
for n := 0; n < b.N; n++ {
buildTreeFromDB(db, workers, false)
}
b.SetBytes(50000000 * 8)
}
func BenchmarkInteger10MDense(b *testing.B) {
rand.Seed(0)
db := fillIntegers(10000000)
b.ResetTimer()
for n := 0; n < b.N; n++ {
buildTreeFromDB(db, workers, false)
}
b.SetBytes(10000000 * 8)
}
func BenchmarkInteger10MSparse(b *testing.B) {
rand.Seed(0)
db := generateRandomIntegers(10000000)
b.ResetTimer()
for n := 0; n < b.N; n++ {
buildTreeFromDB(db, workers, false)
}
b.SetBytes(10000000 * 8)
}