-
Notifications
You must be signed in to change notification settings - Fork 5
/
bench_test.go
53 lines (49 loc) · 1.28 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
package block_stm
import (
"context"
"strconv"
"testing"
storetypes "cosmossdk.io/store/types"
"github.com/test-go/testify/require"
)
func BenchmarkBlockSTM(b *testing.B) {
stores := map[storetypes.StoreKey]int{StoreKeyAuth: 0, StoreKeyBank: 1}
for i := 0; i < 26; i++ {
key := storetypes.NewKVStoreKey(strconv.FormatInt(int64(i), 10))
stores[key] = i + 2
}
storage := NewMultiMemDB(stores)
testCases := []struct {
name string
block *MockBlock
}{
{"random-10000/100", testBlock(10000, 100)},
{"no-conflict-10000", noConflictBlock(10000)},
{"worst-case-10000", worstCaseBlock(10000)},
{"iterate-10000/100", iterateBlock(10000, 100)},
}
for _, tc := range testCases {
b.Run(tc.name+"-sequential", func(b *testing.B) {
b.ResetTimer()
for i := 0; i < b.N; i++ {
runSequential(storage, tc.block)
}
})
for _, worker := range []int{1, 5, 10, 15, 20} {
b.Run(tc.name+"-worker-"+strconv.Itoa(worker), func(b *testing.B) {
b.ResetTimer()
for i := 0; i < b.N; i++ {
require.NoError(
b,
ExecuteBlock(context.Background(), tc.block.Size(), stores, storage, worker, tc.block.ExecuteTx),
)
}
})
}
}
}
func runSequential(storage MultiStore, block *MockBlock) {
for i, tx := range block.Txs {
block.Results[i] = tx(storage)
}
}