-
Notifications
You must be signed in to change notification settings - Fork 338
/
observable_operator_bench_test.go
130 lines (121 loc) · 3.33 KB
/
observable_operator_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
package rxgo
import (
"context"
"testing"
"time"
)
const (
benchChannelCap = 1000
benchNumberOfElementsSmall = 1000
ioPool = 32
)
func Benchmark_Range_Sequential(b *testing.B) {
for i := 0; i < b.N; i++ {
b.StopTimer()
obs := Range(0, benchNumberOfElementsSmall, WithBufferedChannel(benchChannelCap)).
Map(func(_ context.Context, i interface{}) (interface{}, error) {
// Simulate a blocking IO call
time.Sleep(5 * time.Millisecond)
return i, nil
})
b.StartTimer()
<-obs.Run()
}
}
func Benchmark_Range_Serialize(b *testing.B) {
for i := 0; i < b.N; i++ {
b.StopTimer()
obs := Range(0, benchNumberOfElementsSmall, WithBufferedChannel(benchChannelCap)).
Map(func(_ context.Context, i interface{}) (interface{}, error) {
// Simulate a blocking IO call
time.Sleep(5 * time.Millisecond)
return i, nil
}, WithCPUPool(), WithBufferedChannel(benchChannelCap)).
Serialize(0, func(i interface{}) int {
return i.(int)
})
b.StartTimer()
<-obs.Run()
}
}
func Benchmark_Range_OptionSerialize(b *testing.B) {
for i := 0; i < b.N; i++ {
b.StopTimer()
obs := Range(0, benchNumberOfElementsSmall, WithBufferedChannel(benchChannelCap)).
Map(func(_ context.Context, i interface{}) (interface{}, error) {
// Simulate a blocking IO call
time.Sleep(5 * time.Millisecond)
return i, nil
}, WithCPUPool(), WithBufferedChannel(benchChannelCap), Serialize(func(i interface{}) int {
return i.(int)
}))
b.StartTimer()
<-obs.Run()
}
}
func Benchmark_Reduce_Sequential(b *testing.B) {
for i := 0; i < b.N; i++ {
b.StopTimer()
obs := Range(0, benchNumberOfElementsSmall, WithBufferedChannel(benchChannelCap)).
Reduce(func(_ context.Context, acc, elem interface{}) (interface{}, error) {
// Simulate a blocking IO call
time.Sleep(5 * time.Millisecond)
if a, ok := acc.(int); ok {
if b, ok := elem.(int); ok {
return a + b, nil
}
} else {
return elem.(int), nil
}
return 0, errFoo
})
b.StartTimer()
<-obs.Run()
}
}
func Benchmark_Reduce_Parallel(b *testing.B) {
for i := 0; i < b.N; i++ {
b.StopTimer()
obs := Range(0, benchNumberOfElementsSmall, WithBufferedChannel(benchChannelCap)).
Reduce(func(_ context.Context, acc, elem interface{}) (interface{}, error) {
// Simulate a blocking IO call
time.Sleep(5 * time.Millisecond)
if a, ok := acc.(int); ok {
if b, ok := elem.(int); ok {
return a + b, nil
}
} else {
return elem.(int), nil
}
return 0, errFoo
}, WithPool(ioPool))
b.StartTimer()
<-obs.Run()
}
}
func Benchmark_Map_Sequential(b *testing.B) {
for i := 0; i < b.N; i++ {
b.StopTimer()
obs := Range(0, benchNumberOfElementsSmall, WithBufferedChannel(benchChannelCap)).
Map(func(_ context.Context, i interface{}) (interface{}, error) {
// Simulate a blocking IO call
time.Sleep(5 * time.Millisecond)
return i, nil
})
b.StartTimer()
<-obs.Run()
}
}
func Benchmark_Map_Parallel(b *testing.B) {
for i := 0; i < b.N; i++ {
b.StopTimer()
obs := Range(0, benchNumberOfElementsSmall, WithBufferedChannel(benchChannelCap)).
Map(func(_ context.Context, i interface{}) (interface{}, error) {
// Simulate a blocking IO call
time.Sleep(5 * time.Millisecond)
return i, nil
}, WithCPUPool())
b.StartTimer()
<-obs.Run()
}
}