mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-05 09:14:28 +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>
28 lines
689 B
Go
28 lines
689 B
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 BenchmarkParticipationBits(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.AppendCurrentParticipationBits(byte(1)))
|
|
}
|
|
|
|
ref := st.Copy()
|
|
b.ResetTimer()
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
require.NoError(b, ref.AppendCurrentParticipationBits(byte(2)))
|
|
ref = st.Copy()
|
|
}
|
|
}
|