-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathemu_test.go
298 lines (254 loc) · 8.21 KB
/
emu_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
package birdland
import (
"math/rand"
"testing"
)
type EmuInitCase struct {
Name string
ItemWeights []float64
UsersToWeightedItems []map[int]float64
Draws int
Depth int
Valid bool
}
var emuInitTable = []EmuInitCase{
{
Name: "Zero Depth",
ItemWeights: []float64{1, 1},
UsersToWeightedItems: []map[int]float64{{0: 1.}, {1: 1.}},
Depth: 0,
Draws: 1,
Valid: false,
},
{
Name: "Negative Depth",
ItemWeights: []float64{1, 1},
UsersToWeightedItems: []map[int]float64{{0: 1.}, {1: 1.}},
Depth: -1,
Draws: 1,
Valid: false,
},
{
Name: "Zero Draws",
ItemWeights: []float64{1, 1},
UsersToWeightedItems: []map[int]float64{{0: 1.}, {1: 1.}},
Depth: 1,
Draws: 0,
Valid: false,
},
{
Name: "Negative Draws",
ItemWeights: []float64{1, 1},
UsersToWeightedItems: []map[int]float64{{0: 1.}, {1: 1.}},
Depth: 1,
Draws: -1,
Valid: false,
},
{
Name: "Empty ItemWeights",
ItemWeights: []float64{},
UsersToWeightedItems: []map[int]float64{{0: 1.}, {1: 1.}},
Depth: 1,
Draws: 1,
Valid: false,
},
{
Name: "Empty UsersToWeightedItems",
ItemWeights: []float64{1, 1},
UsersToWeightedItems: []map[int]float64{},
Depth: 1,
Draws: 1,
Valid: false,
},
{
Name: "Negative weight in UsersToWeightedItems",
ItemWeights: []float64{1, 1},
UsersToWeightedItems: []map[int]float64{{0: 1.}, {1: -1.}},
Depth: 1,
Draws: 1,
Valid: false,
},
{
Name: "More items in adjacency tables that weight list",
ItemWeights: []float64{0.1, 0.2, 0.4},
UsersToWeightedItems: []map[int]float64{{0: 1., 1: 1.}, {2: 1., 3: 1.}},
Depth: 1,
Draws: 1,
Valid: false,
},
{
Name: "Perfectly valid input",
ItemWeights: []float64{1, 1},
UsersToWeightedItems: []map[int]float64{{0: 1.}, {1: 1.}},
Depth: 1,
Draws: 1,
Valid: true,
},
}
func TestEmuInitialization(t *testing.T) {
for _, ex := range emuInitTable {
cfg := NewBirdCfg()
cfg.Depth = ex.Depth
cfg.Draws = ex.Draws
_, err := NewEmu(cfg, ex.ItemWeights, ex.UsersToWeightedItems)
if err != nil && ex.Valid {
t.Errorf("EmuInitialization: %s: Bird initialization should not have raised "+
"an error but did: %v", ex.Name, err)
}
if err == nil && !ex.Valid {
t.Errorf("EmuInitialization: %s: Bird initialization should have raised "+
"an error but did not", ex.Name)
}
}
}
func benchmarkEmuStep(querySize, numUsers, numItems int, b *testing.B) {
usersToWeightedItems := make([]map[int]float64, numUsers)
for i := 0; i < numUsers; i++ {
num := 1 + rand.Intn(100) // +1 so that num != 0
weightedItems := make(map[int]float64, num)
for j := 0; j < num; j++ {
it := rand.Intn(numItems)
weightedItems[it] = 10 * rand.Float64()
}
usersToWeightedItems[i] = weightedItems
}
itemWeights := make([]float64, numItems)
for i := 0; i < numItems; i++ {
itemWeights[i] = 10 * rand.Float64()
}
bird, err := NewEmu(NewBirdCfg(), itemWeights, usersToWeightedItems)
if err != nil {
panic("BenchmarkEmuStep: Bird initialization raised an error " +
"but shouldn't have. Check your test case")
}
query := make([]int, querySize)
for i := 0; i < querySize; i++ {
query[i] = rand.Intn(numItems)
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
_, _, _ = bird.step(query)
}
}
func BenchmarkEmuStep2000000Items1000Users100Query(b *testing.B) {
benchmarkEmuStep(100, 1000, 2000000, b)
}
func BenchmarkEmuStep2000000Items100000Users100Query(b *testing.B) {
benchmarkEmuStep(100, 100000, 2000000, b)
}
func BenchmarkEmuStep2000000Items1000000Users100Query(b *testing.B) {
benchmarkEmuStep(100, 1000000, 2000000, b)
}
func BenchmarkEmuStep2000000Items1000000Users1000Query(b *testing.B) {
benchmarkEmuStep(1000, 1000000, 2000000, b)
}
func BenchmarkEmuStep2000000Items1000000Users10000Query(b *testing.B) {
benchmarkEmuStep(10000, 1000000, 2000000, b)
}
func BenchmarkEmuStep2000000Items1000000Users100000Query(b *testing.B) {
benchmarkEmuStep(100000, 1000000, 2000000, b)
}
func BenchmarkEmuStep2000000Items1000000Users200000Query(b *testing.B) {
benchmarkEmuStep(200000, 1000000, 2000000, b)
}
func BenchmarkEmuStep2000000Items1000000Users300000Query(b *testing.B) {
benchmarkEmuStep(300000, 1000000, 2000000, b)
}
func BenchmarkEmuStep2000000Items1000000Users400000Query(b *testing.B) {
benchmarkEmuStep(400000, 1000000, 2000000, b)
}
func BenchmarkEmuStep2000000Items1000000Users600000Query(b *testing.B) {
benchmarkEmuStep(600000, 1000000, 2000000, b)
}
func BenchmarkEmuStep2000000Items1000000Users700000Query(b *testing.B) {
benchmarkEmuStep(700000, 1000000, 2000000, b)
}
func BenchmarkEmuStep2000000Items1000000Users800000Query(b *testing.B) {
benchmarkEmuStep(800000, 1000000, 2000000, b)
}
func BenchmarkEmuStep2000000Items1000000Users900000Query(b *testing.B) {
benchmarkEmuStep(900000, 1000000, 2000000, b)
}
func BenchmarkEmuStep2000000Items1000000Users1000000Query(b *testing.B) {
benchmarkEmuStep(1000000, 1000000, 2000000, b)
}
func benchmarkEmuProcess(numItems, numUsers, querySize, draws, depth int, b *testing.B) {
itemsToUsers := make([][]int, numItems)
for i := 0; i < numItems; i++ {
itemsToUsers[i] = []int{1}
}
usersToWeightedItems := make([]map[int]float64, numUsers)
for i := 0; i < numUsers; i++ {
num := 1 + rand.Intn(100) // +1 so that num != 0
weightedItems := make(map[int]float64, num)
for j := 0; j < num; j++ {
it := rand.Intn(numItems)
weightedItems[it] = 10 * rand.Float64()
itemsToUsers[it] = append(itemsToUsers[it], i)
}
usersToWeightedItems[i] = weightedItems
}
itemWeights := make([]float64, numItems)
for i := 0; i < numItems; i++ {
itemWeights[i] = 10 * rand.Float64()
}
cfg := NewBirdCfg()
cfg.Depth = depth
cfg.Draws = draws
bird, err := NewEmu(cfg, itemWeights, usersToWeightedItems)
if err != nil {
panic("BenchmarkEmuStep: Bird initialization raised an error " +
"but shouldn't have. Check your test case")
}
query := make([]QueryItem, querySize)
for i := 0; i < querySize; i++ {
queryItem := QueryItem{Item: rand.Intn(numItems), Weight: rand.Float64()}
query[i] = queryItem
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
_, _, _ = bird.Process(query)
}
}
// Increase the numbers of users to 10M
func BenchmarkEmuProcess10KUsers(b *testing.B) {
benchmarkEmuProcess(2000000, 10000, 100, 100, 1, b)
}
func BenchmarkEmuProcess100KUsers(b *testing.B) {
benchmarkEmuProcess(2000000, 100000, 100, 100, 1, b)
}
func BenchmarkEmuProcess1MUsers(b *testing.B) {
benchmarkEmuProcess(2000000, 1000000, 100, 100, 1, b)
}
// Increase the numbers of draws to 100k with 1M users
func BenchmarkEmuProcess100Draws(b *testing.B) {
benchmarkEmuProcess(2000000, 1000000, 100, 100, 1, b)
}
func BenchmarkEmuProcess1KDraws(b *testing.B) {
benchmarkEmuProcess(2000000, 1000000, 100, 1000, 1, b)
}
func BenchmarkEmuProcess10KDraws(b *testing.B) {
benchmarkEmuProcess(2000000, 1000000, 100, 10000, 1, b)
}
func BenchmarkEmuProcess100KDraws(b *testing.B) {
benchmarkEmuProcess(2000000, 1000000, 100, 100000, 1, b)
}
// Increase the depth up to 10 with 1M users and 10K draws
func BenchmarkEmuProcess1Depth(b *testing.B) {
benchmarkEmuProcess(2000000, 1000000, 100, 10000, 1, b)
}
func BenchmarkEmuProcess2Depth(b *testing.B) {
benchmarkEmuProcess(2000000, 1000000, 100, 10000, 2, b)
}
func BenchmarkEmuProcess3Depth(b *testing.B) {
benchmarkEmuProcess(2000000, 1000000, 100, 10000, 3, b)
}
func BenchmarkEmuProcess4Depth(b *testing.B) {
benchmarkEmuProcess(2000000, 1000000, 100, 10000, 4, b)
}
func BenchmarkEmuProcess5Depth(b *testing.B) {
benchmarkEmuProcess(2000000, 1000000, 100, 10000, 5, b)
}
func BenchmarkEmuProcess10Depth(b *testing.B) {
benchmarkEmuProcess(2000000, 1000000, 100, 10000, 10, b)
}