1
0
mirror of https://github.com/minio/minio.git synced 2025-04-15 08:36:11 -04:00

Add 1MB block benchmarks

This commit is contained in:
Harshavardhana 2015-02-28 15:00:24 -08:00
parent acee4d16fd
commit 7feca3f0d1
3 changed files with 15 additions and 3 deletions
pkg/utils/crypto

@ -109,7 +109,7 @@ func TestBlockGeneric(t *testing.T) {
}
var bench = New()
var buf = make([]byte, 8192)
var buf = make([]byte, 1024*1024)
func benchmarkSize(b *testing.B, size int) {
b.SetBytes(int64(size))
@ -132,3 +132,7 @@ func BenchmarkHash1K(b *testing.B) {
func BenchmarkHash8K(b *testing.B) {
benchmarkSize(b, 8192)
}
func BenchmarkHash1M(b *testing.B) {
benchmarkSize(b, 1024*1024)
}

@ -96,7 +96,7 @@ func TestBlockSize(t *testing.T) {
}
var bench = New()
var buf = make([]byte, 8192)
var buf = make([]byte, 1024*1024)
func benchmarkSize(b *testing.B, size int) {
b.SetBytes(int64(size))
@ -119,3 +119,7 @@ func BenchmarkHash1K(b *testing.B) {
func BenchmarkHash8K(b *testing.B) {
benchmarkSize(b, 8192)
}
func BenchmarkHash1M(b *testing.B) {
benchmarkSize(b, 1024*1024)
}

@ -96,7 +96,7 @@ func TestBlockSize(t *testing.T) {
}
var bench = New()
var buf = make([]byte, 8192)
var buf = make([]byte, 1024*1024)
func benchmarkSize(b *testing.B, size int) {
b.SetBytes(int64(size))
@ -119,3 +119,7 @@ func BenchmarkHash1K(b *testing.B) {
func BenchmarkHash8K(b *testing.B) {
benchmarkSize(b, 8192)
}
func BenchmarkHash1M(b *testing.B) {
benchmarkSize(b, 1024*1024)
}