mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-27 05:38:55 +00:00
00dacbd00d
* Remove custom block body root and block root methods * Add nil checks and fix tests * Fmt * Typo
31 lines
765 B
Go
31 lines
765 B
Go
package stateutil_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/shared/hashutil"
|
|
"github.com/prysmaticlabs/prysm/shared/htrutils"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/require"
|
|
)
|
|
|
|
func BenchmarkMerkleize_Buffered(b *testing.B) {
|
|
roots := make([][32]byte, 8192)
|
|
for i := 0; i < 8192; i++ {
|
|
roots[0] = [32]byte{byte(i)}
|
|
}
|
|
|
|
newMerkleize := func(chunks [][32]byte, count uint64, limit uint64) ([32]byte, error) {
|
|
leafIndexer := func(i uint64) []byte {
|
|
return chunks[i][:]
|
|
}
|
|
return htrutils.Merkleize(htrutils.NewHasherFunc(hashutil.CustomSHA256Hasher()), count, limit, leafIndexer), nil
|
|
}
|
|
|
|
b.ResetTimer()
|
|
b.ReportAllocs()
|
|
for i := 0; i < b.N; i++ {
|
|
_, err := newMerkleize(roots, 8192, 8192)
|
|
require.NoError(b, err)
|
|
}
|
|
}
|