Skip to content

Commit 4d54769

Browse files
sbuncedswarbrick
andauthored
Fix float64 comparison test failure on archs using FMA (#1133)
* Fix float64 comparison test failure on archs using FMA Architectures using FMA optimization yield slightly different results so we cannot assume floating point values will be precisely the same across different architectures. The solution in this change is to check "abs(a-b) < tolerance" instead of comparing the exact values. This will give us confidence that the histogram buckets are near identical. Signed-off-by: Seth Bunce <[email protected]> * Apply suggestions from code review Co-authored-by: Daniel Swarbrick <[email protected]> Signed-off-by: Seth Bunce <[email protected]> * copy float compare dependency Per discussion in the pull request, we'd like to avoid having an extra dependency on a float comparison package. Instead, we copy the float compare functions from the float comparison package. The float comparison package we're choosing is this. The author of this package has commented in the pull request and it looks like we have consensus that this is the best option. github.com/beorn7/floats Signed-off-by: Seth Bunce <[email protected]> * remove float32 variant, relocate into separate file This change removes the float32 variant of the AlmostEqual funcs, that we will likely never use. This change also relocates the function into a separate file to avoid modifying a file that's a fork of another vendored package. Signed-off-by: Seth Bunce <[email protected]> Signed-off-by: Seth Bunce <[email protected]> Signed-off-by: Seth Bunce <[email protected]> Co-authored-by: Daniel Swarbrick <[email protected]>
1 parent 5f202ee commit 4d54769

File tree

2 files changed

+67
-6
lines changed

2 files changed

+67
-6
lines changed

prometheus/histogram_test.go

+7-6
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ import (
2929
"github.com/golang/protobuf/proto"
3030
"google.golang.org/protobuf/types/known/timestamppb"
3131

32+
"github.com/prometheus/client_golang/prometheus/internal"
33+
3234
dto "github.com/prometheus/client_model/go"
3335
)
3436

@@ -356,13 +358,12 @@ func TestBuckets(t *testing.T) {
356358

357359
got = ExponentialBucketsRange(1, 100, 10)
358360
want = []float64{
359-
1.0, 1.6681005372000588, 2.782559402207125,
360-
4.641588833612779, 7.742636826811273, 12.915496650148842,
361-
21.544346900318846, 35.93813663804629, 59.94842503189414,
362-
100.00000000000007,
361+
1.0, 1.6681, 2.7825, 4.6415, 7.7426, 12.9154, 21.5443,
362+
35.9381, 59.9484, 100.0000,
363363
}
364-
if !reflect.DeepEqual(got, want) {
365-
t.Errorf("exponential buckets range: got %v, want %v", got, want)
364+
const epsilon = 0.0001
365+
if !internal.AlmostEqualFloat64s(got, want, epsilon) {
366+
t.Errorf("exponential buckets range: got %v, want %v (epsilon %f)", got, want, epsilon)
366367
}
367368
}
368369

prometheus/internal/almost_equal.go

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
// Copyright (c) 2015 Björn Rabenstein
2+
//
3+
// Permission is hereby granted, free of charge, to any person obtaining a copy
4+
// of this software and associated documentation files (the "Software"), to deal
5+
// in the Software without restriction, including without limitation the rights
6+
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
// copies of the Software, and to permit persons to whom the Software is
8+
// furnished to do so, subject to the following conditions:
9+
//
10+
// The above copyright notice and this permission notice shall be included in all
11+
// copies or substantial portions of the Software.
12+
//
13+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19+
// SOFTWARE.
20+
//
21+
// The code in this package is copy/paste to avoid a dependency. Hence this file
22+
// carries the copyright of the original repo.
23+
// https://github.com/beorn7/floats
24+
package internal
25+
26+
import (
27+
"math"
28+
)
29+
30+
// minNormalFloat64 is the smallest positive normal value of type float64.
31+
var minNormalFloat64 = math.Float64frombits(0x0010000000000000)
32+
33+
// AlmostEqualFloat64 returns true if a and b are equal within a relative error
34+
// of epsilon. See http://floating-point-gui.de/errors/comparison/ for the
35+
// details of the applied method.
36+
func AlmostEqualFloat64(a, b, epsilon float64) bool {
37+
if a == b {
38+
return true
39+
}
40+
absA := math.Abs(a)
41+
absB := math.Abs(b)
42+
diff := math.Abs(a - b)
43+
if a == 0 || b == 0 || absA+absB < minNormalFloat64 {
44+
return diff < epsilon*minNormalFloat64
45+
}
46+
return diff/math.Min(absA+absB, math.MaxFloat64) < epsilon
47+
}
48+
49+
// AlmostEqualFloat64s is the slice form of AlmostEqualFloat64.
50+
func AlmostEqualFloat64s(a, b []float64, epsilon float64) bool {
51+
if len(a) != len(b) {
52+
return false
53+
}
54+
for i := range a {
55+
if !AlmostEqualFloat64(a[i], b[i], epsilon) {
56+
return false
57+
}
58+
}
59+
return true
60+
}

0 commit comments

Comments
 (0)