mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
f99e2bd7c9
* new branch off master * bloomfilter + benchmarks done * cfilter benchmarks * comments added * goimports and gofmt added * linter issues * bazel run //:gazelle -- fix * workspace definitions fixed * fixed tree_test.go * Update workspace * final commit * gazelle * updated workspace * workspace * reverted workspace changes * workspace newline * applied git checkout origin/master WORKSPACE
46 lines
812 B
Go
46 lines
812 B
Go
package cache
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
var indices300k = createIndices(300000)
|
|
var epoch = uint64(1)
|
|
|
|
func createIndices(count int) *ActiveIndicesByEpoch {
|
|
indices := make([]uint64, 0, count)
|
|
for i := 0; i < count; i++ {
|
|
indices = append(indices, uint64(i))
|
|
}
|
|
return &ActiveIndicesByEpoch{
|
|
Epoch: epoch,
|
|
ActiveIndices: indices,
|
|
}
|
|
}
|
|
|
|
func BenchmarkCachingAddRetrieve(b *testing.B) {
|
|
|
|
c := NewActiveIndicesCache()
|
|
|
|
b.Run("ADD300K", func(b *testing.B) {
|
|
b.N = 10
|
|
b.ResetTimer()
|
|
for i := 0; i < b.N; i++ {
|
|
if err := c.AddActiveIndicesList(indices300k); err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
}
|
|
})
|
|
|
|
b.Run("RETR300K", func(b *testing.B) {
|
|
b.N = 10
|
|
b.ResetTimer()
|
|
for i := 0; i < b.N; i++ {
|
|
if _, err := c.ActiveIndicesInEpoch(epoch); err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
}
|
|
})
|
|
|
|
}
|