VictoriaMetrics/lib/encoding/nearest_delta2_timing_test.go
Aliaksandr Valialkin d5dddb0953 all: use %w instead of %s for wrapping errors in fmt.Errorf
This will simplify examining the returned errors such as httpserver.ErrorWithStatusCode .
See https://blog.golang.org/go1.13-errors for details.
2020-06-30 23:05:11 +03:00

48 lines
1.2 KiB
Go

package encoding
import (
"fmt"
"sync/atomic"
"testing"
)
func BenchmarkMarshalInt64NearestDelta2(b *testing.B) {
for _, precisionBits := range []uint8{4, 64} {
b.Run(fmt.Sprintf("precisionBits_%d", precisionBits), func(b *testing.B) {
benchmarkMarshalInt64NearestDelta2(b, precisionBits)
})
}
}
func benchmarkMarshalInt64NearestDelta2(b *testing.B, precisionBits uint8) {
b.ReportAllocs()
b.SetBytes(int64(len(benchInt64Array)))
b.RunParallel(func(pb *testing.PB) {
var dst []byte
for pb.Next() {
dst, _ = marshalInt64NearestDelta2(dst[:0], benchInt64Array, precisionBits)
atomic.AddUint64(&Sink, uint64(len(dst)))
}
})
}
func BenchmarkUnmarshalInt64NearestDelta2(b *testing.B) {
b.ReportAllocs()
b.SetBytes(int64(len(benchInt64Array)))
b.RunParallel(func(pb *testing.PB) {
var dst []int64
var err error
for pb.Next() {
dst, err = unmarshalInt64NearestDelta2(dst[:0], benchInt64NearestDelta2Data, 0, len(benchInt64Array))
if err != nil {
panic(fmt.Errorf("unexpected error: %w", err))
}
atomic.AddUint64(&Sink, uint64(len(dst)))
}
})
}
var benchInt64NearestDelta2Data = func() []byte {
data, _ := marshalInt64NearestDelta2(nil, benchInt64Array, 4)
return data
}()