We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d74cf7c commit b370325Copy full SHA for b370325
internal/speed/speed_test.go
@@ -40,7 +40,7 @@ func BenchmarkGoGCM(b *testing.B) {
40
}
41
42
func BenchmarkGoGCMBlockSize(b *testing.B) {
43
- for blockSize := 1024; blockSize <= 1024*1024; blockSize *= 2 {
+ for blockSize := 16; blockSize <= 1024*1024; blockSize *= 2 {
44
name := fmt.Sprintf("%d", blockSize)
45
b.Run(name, func(b *testing.B) { bGoGCMBlockSize(b, blockSize) })
46
0 commit comments