mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
49 lines
1.2 KiB
Go
49 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: %s", err))
|
||
|
}
|
||
|
atomic.AddUint64(&Sink, uint64(len(dst)))
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
|
||
|
var benchInt64NearestDelta2Data = func() []byte {
|
||
|
data, _ := marshalInt64NearestDelta2(nil, benchInt64Array, 4)
|
||
|
return data
|
||
|
}()
|