From 1d905e0b1cbbeb37378c0380b58a6f5194fc401a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Sun, 12 Jun 2022 22:56:04 +0100 Subject: [PATCH] gtr: Improve accuracy of benchmark duration calculation The NsPerOp was previously casted to a time.Duration (int64) before multiplying it with the number of iterations. This has been fixed by doing the casting after the multiplication. The resulting duration should be a bit more accurate. --- gtr/gtr.go | 2 +- testdata/022-report.xml | 4 ++-- testdata/024-report.xml | 4 ++-- testdata/025-report.xml | 4 ++-- testdata/027-report.xml | 6 +++--- testdata/028-report.xml | 2 +- testdata/109-report.xml | 4 ++-- 7 files changed, 13 insertions(+), 13 deletions(-) diff --git a/gtr/gtr.go b/gtr/gtr.go index 5fb23fa..f8f3009 100644 --- a/gtr/gtr.go +++ b/gtr/gtr.go @@ -106,7 +106,7 @@ type Benchmark struct { // ApproximateDuration returns the duration calculated by multiplying the // iterations and average time per iteration (NsPerOp). func (b Benchmark) ApproximateDuration() time.Duration { - return time.Duration(b.NsPerOp) * time.Duration(b.Iterations) + return time.Duration(float64(b.Iterations)*b.NsPerOp) * time.Nanosecond } // Error contains details of a build or runtime error. diff --git a/testdata/022-report.xml b/testdata/022-report.xml index d5d3699..bf3282a 100644 --- a/testdata/022-report.xml +++ b/testdata/022-report.xml @@ -7,7 +7,7 @@ - + - + diff --git a/testdata/024-report.xml b/testdata/024-report.xml index 636391e..922edd0 100644 --- a/testdata/024-report.xml +++ b/testdata/024-report.xml @@ -4,8 +4,8 @@ - - + + - - + + diff --git a/testdata/027-report.xml b/testdata/027-report.xml index 7a535bc..da9d39c 100644 --- a/testdata/027-report.xml +++ b/testdata/027-report.xml @@ -4,9 +4,9 @@ - - - + + + diff --git a/testdata/028-report.xml b/testdata/028-report.xml index da67e7f..afb4dd9 100644 --- a/testdata/028-report.xml +++ b/testdata/028-report.xml @@ -4,7 +4,7 @@ - + diff --git a/testdata/109-report.xml b/testdata/109-report.xml index 378bd54..2fb4728 100644 --- a/testdata/109-report.xml +++ b/testdata/109-report.xml @@ -10,7 +10,7 @@ - + - +