mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-10 18:25:17 +00:00
33 lines
695 B
Go
33 lines
695 B
Go
// Copyright 2020 The LevelDB-Go and Pebble Authors. All rights reserved. Use
|
|
// of this source code is governed by a BSD-style license that can be found in
|
|
// the LICENSE file.
|
|
|
|
package rawalloc
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
var sizes = []int{16, 100, 1024, 1024 * 10, 1024 * 100, 1024 * 1024}
|
|
|
|
func BenchmarkRawalloc(b *testing.B) {
|
|
for _, size := range sizes {
|
|
b.Run(fmt.Sprintf("rawalloc-%d", size), func(b *testing.B) {
|
|
for i := 0; i < b.N; i++ {
|
|
_ = New(size, size)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func BenchmarkMake(b *testing.B) {
|
|
for _, size := range sizes {
|
|
b.Run(fmt.Sprintf("make-%d", size), func(b *testing.B) {
|
|
for i := 0; i < b.N; i++ {
|
|
_ = make([]byte, size)
|
|
}
|
|
})
|
|
}
|
|
}
|