-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbenchmark_test.go
120 lines (110 loc) · 1.87 KB
/
benchmark_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
package stream
import (
"github.com/chinalhr/go-stream/types"
"math/rand"
"sort"
"testing"
"time"
)
func BenchmarkTestStream_Parallel_CPU(b *testing.B) {
benchmarkInput := sequenceSlice(10)
randCount := 50000
tests := []struct {
name string
worker int
}{
{
name: "non worker",
worker: 0,
},
{
name: "two worker",
worker: 2,
},
{
name: "four worker",
worker: 4,
},
{
name: "eight worker",
worker: 8,
},
{
name: "sixteen worker",
worker: 16,
},
}
for _, test := range tests {
b.Run(test.name, func(b *testing.B) {
for n := 0; n < b.N; n++ {
OfSlice(benchmarkInput).
Parallel(test.worker).
Map(func(e types.T) (r types.R) {
slice := randSlice(randCount)
return slice
}).
ForEach(func(e types.T) {
sort.Ints(e.([]int))
})
}
})
}
}
func BenchmarkTestStream_Parallel_IO(b *testing.B) {
benchmarkInput := sequenceSlice(20)
mockIOWaitingTime := time.Millisecond * 500
tests := []struct {
name string
worker int
}{
{
name: "non worker",
worker: 0,
},
{
name: "two worker",
worker: 2,
},
{
name: "four worker",
worker: 4,
},
{
name: "eight worker",
worker: 8,
},
{
name: "sixteen worker",
worker: 16,
},
}
for _, test := range tests {
b.Run(test.name, func(b *testing.B) {
for n := 0; n < b.N; n++ {
OfSlice(benchmarkInput).
Parallel(test.worker).
Map(func(e types.T) (r types.R) {
time.Sleep(mockIOWaitingTime)
return e
}).
ForEach(func(e types.T) {
})
}
})
}
}
func randSlice(count int) []int {
r := rand.New(rand.NewSource(time.Now().Unix()))
s := make([]int, count)
for i := 0; i < count; i++ {
s[i] = r.Intn(count)
}
return s
}
func sequenceSlice(count int) []int {
s := make([]int, count)
for i := 0; i < count; i++ {
s[i] = i
}
return s
}