mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-31 15:31:20 +00:00
5a66807989
* First take at updating everything to v5 * Patch gRPC gateway to use prysm v5 Fix patch * Update go ssz --------- Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com>
46 lines
1.0 KiB
Go
46 lines
1.0 KiB
Go
package state_native_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
state_native "github.com/prysmaticlabs/prysm/v5/beacon-chain/state/state-native"
|
|
ethpb "github.com/prysmaticlabs/prysm/v5/proto/prysm/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/v5/testing/require"
|
|
)
|
|
|
|
func BenchmarkAppendBalance(b *testing.B) {
|
|
st, err := state_native.InitializeFromProtoPhase0(ðpb.BeaconState{})
|
|
require.NoError(b, err)
|
|
|
|
max := uint64(16777216)
|
|
for i := uint64(0); i < max-2; i++ {
|
|
require.NoError(b, st.AppendBalance(i))
|
|
}
|
|
|
|
ref := st.Copy()
|
|
b.ResetTimer()
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
require.NoError(b, ref.AppendBalance(uint64(i)))
|
|
ref = st.Copy()
|
|
}
|
|
}
|
|
|
|
func BenchmarkAppendInactivityScore(b *testing.B) {
|
|
st, err := state_native.InitializeFromProtoCapella(ðpb.BeaconStateCapella{})
|
|
require.NoError(b, err)
|
|
|
|
max := uint64(16777216)
|
|
for i := uint64(0); i < max-2; i++ {
|
|
require.NoError(b, st.AppendInactivityScore(i))
|
|
}
|
|
|
|
ref := st.Copy()
|
|
b.ResetTimer()
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
require.NoError(b, ref.AppendInactivityScore(uint64(i)))
|
|
ref = st.Copy()
|
|
}
|
|
}
|