mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
d5ec248691
* Rename getter functions * Rename new * Radek's feedback Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
19 lines
313 B
Go
19 lines
313 B
Go
package peers
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/go-bitfield"
|
|
)
|
|
|
|
func Benchmark_retrieveIndicesFromBitfield(b *testing.B) {
|
|
bv := bitfield.NewBitvector64()
|
|
for i := uint64(0); i < bv.Len(); i++ {
|
|
bv.SetBitAt(i, true)
|
|
}
|
|
b.ResetTimer()
|
|
for i := 0; i < b.N; i++ {
|
|
indicesFromBitfield(bv)
|
|
}
|
|
}
|