From a783093124f9a42aacd1882ef05e563c07160e44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Magiera?= Date: Sun, 16 Jun 2019 17:25:13 +0200 Subject: [PATCH] Set correct B.N on BenchmarkMs1e0m6 --- basic_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basic_test.go b/basic_test.go index 7a95c12..5562540 100644 --- a/basic_test.go +++ b/basic_test.go @@ -272,7 +272,7 @@ func BenchmarkMs1e2m4(b *testing.B) { } func BenchmarkMs1e0m6(b *testing.B) { - b.N = 1000000 + b.N = 10000000 b.ReportAllocs() testMany(b, 10, 1, 1000000) }