Skip to content

Commit ee5e23d

Browse files
committed
move toplevel comment
1 parent 97e768d commit ee5e23d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

internal/cmd/perfcomp/main.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
// not use this file except in compliance with the License. You may obtain
55
// a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
66

7+
// This module cannot be included in the workspace since it requires a version of Gonum that is not compatible with the Go Driver.
8+
// Must use GOWORK=off to run this test.
9+
710
package main
811

912
import (
@@ -21,9 +24,6 @@ import (
2124
"gonum.org/v1/gonum/mat"
2225
)
2326

24-
// This module cannot be included in the workspace since it requires a version of Gonum that is not compatible with the Go Driver.
25-
// Must use GOWORK=off to run this test.
26-
2727
type OverrideInfo struct {
2828
OverrideMainline bool `bson:"override_mainline"`
2929
BaseOrder interface{} `bson:"base_order"`
@@ -278,7 +278,7 @@ func generatePRComment(energyStats []*EnergyStats, version string) string {
278278
for _, es := range energyStats {
279279
if math.Abs(es.ZScore) > 1.96 {
280280
testCount += 1
281-
fmt.Fprintf(&comment, "| %s | %s | %.4f | %.4f | %.4f | Avg: %.4f, Stdev: %.4f | %.4f |\n", es.Benchmark, es.Measurement, es.HScore, es.ZScore, es.PercentChange, es.StableRegion.Mean, es.StableRegion.Std, es.PatchValues[0])
281+
fmt.Fprintf(&comment, "| %s | %s | %.4f | %.4f | %.4f | Avg: %.4f, Med: %.4f, Stdev: %.4f | %.4f |\n", es.Benchmark, es.Measurement, es.HScore, es.ZScore, es.PercentChange, es.StableRegion.Mean, es.StableRegion.Median, es.StableRegion.Std, es.PatchValues[0])
282282
}
283283
}
284284

0 commit comments

Comments
 (0)