-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathbenchmark_test.go
87 lines (72 loc) · 2.1 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
package eigenpodproofs_test
import (
"testing"
"github.com/Layr-Labs/eigenpod-proofs-generation/beacon"
"github.com/attestantio/go-eth2-client/spec"
"github.com/attestantio/go-eth2-client/spec/phase0"
"github.com/stretchr/testify/assert"
)
func BenchmarkComputeBeaconStateRoot(b *testing.B) {
computed, err := epp.ComputeBeaconStateRoot(beaconState)
if err != nil {
b.Fatal(err)
}
var cached phase0.Root
for i := 0; i < b.N; i++ {
cached, err = epp.ComputeBeaconStateRoot(beaconState)
if err != nil {
b.Fatal(err)
}
}
assert.Equal(b, computed, cached)
}
func BenchmarkComputeBeaconStateTopLevelRoots(b *testing.B) {
computed, err := epp.ComputeBeaconStateTopLevelRoots(beaconState)
if err != nil {
b.Fatal(err)
}
var cached *beacon.VersionedBeaconStateTopLevelRoots
for i := 0; i < b.N; i++ {
cached, err = epp.ComputeBeaconStateTopLevelRoots(beaconState)
if err != nil {
b.Fatal(err)
}
}
assert.Equal(b, computed, cached)
}
func BenchmarkComputeValidatorTree(b *testing.B) {
// If beacon state is not Deneb, then skip this test
if beaconState.Version != spec.DataVersionDeneb {
b.Skip("skipping test for non-Deneb beacon state")
}
computed, err := epp.ComputeValidatorTree(beaconState.Deneb.Slot, beaconState.Deneb.Validators)
if err != nil {
b.Fatal(err)
}
var cached [][]phase0.Root
for i := 0; i < b.N; i++ {
cached, err = epp.ComputeValidatorTree(beaconState.Deneb.Slot, beaconState.Deneb.Validators)
if err != nil {
b.Fatal(err)
}
}
assert.Equal(b, computed, cached)
}
func BenchmarkComputeValidatorBalancesTree(b *testing.B) {
// If beacon state is not Deneb, then skip this test
if beaconState.Version != spec.DataVersionDeneb {
b.Skip("skipping test for non-Deneb beacon state")
}
computed, err := epp.ComputeValidatorBalancesTree(beaconState.Deneb.Slot, beaconState.Deneb.Balances)
if err != nil {
b.Fatal(err)
}
var cached [][]phase0.Root
for i := 0; i < b.N; i++ {
cached, err = epp.ComputeValidatorBalancesTree(beaconState.Deneb.Slot, beaconState.Deneb.Balances)
if err != nil {
b.Fatal(err)
}
}
assert.Equal(b, computed, cached)
}