mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 11:32:09 +00:00
58 lines
1.2 KiB
Go
58 lines
1.2 KiB
Go
|
package mputil_test
|
||
|
|
||
|
import (
|
||
|
"crypto/rand"
|
||
|
"crypto/sha256"
|
||
|
"sync"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/prysmaticlabs/prysm/shared/mputil"
|
||
|
)
|
||
|
|
||
|
var input [][]byte
|
||
|
|
||
|
const (
|
||
|
benchmarkElements = 65536
|
||
|
benchmarkElementSize = 32
|
||
|
benchmarkHashRuns = 128
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
input = make([][]byte, benchmarkElements)
|
||
|
for i := 0; i < benchmarkElements; i++ {
|
||
|
input[i] = make([]byte, benchmarkElementSize)
|
||
|
rand.Read(input[i])
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// hash repeatedly hashes the data passed to it
|
||
|
func hash(input [][]byte) [][]byte {
|
||
|
output := make([][]byte, len(input))
|
||
|
for i := range input {
|
||
|
copy(output, input)
|
||
|
for j := 0; j < benchmarkHashRuns; j++ {
|
||
|
hash := sha256.Sum256(output[i])
|
||
|
output[i] = hash[:]
|
||
|
}
|
||
|
}
|
||
|
return output
|
||
|
}
|
||
|
|
||
|
func BenchmarkHash(b *testing.B) {
|
||
|
for i := 0; i < b.N; i++ {
|
||
|
hash(input)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func BenchmarkHashMP(b *testing.B) {
|
||
|
output := make([][]byte, len(input))
|
||
|
for i := 0; i < b.N; i++ {
|
||
|
workerResults, _ := mputil.Scatter(len(input), func(offset int, entries int, _ *sync.RWMutex) (interface{}, error) {
|
||
|
return hash(input[offset : offset+entries]), nil
|
||
|
})
|
||
|
for _, result := range workerResults {
|
||
|
copy(output[result.Offset:], result.Extent.([][]byte))
|
||
|
}
|
||
|
}
|
||
|
}
|