02/04/2023

A few years ago I did a lot of thinking and writing about floating-point math. It was good fun, and I learned a lot in the process, but sometimes I go a long time without actually using that hard-e…

A few years ago I did a lot of thinking and writing about floating-point math. It was good fun, and I learned a lot in the process, but sometimes I go a long time without actually using that hard-earned knowledge. So, I am always inordinately pleased when I end up working on a bug which requires some of that specialized knowledge. Here then is the second of (at least) three tales of floating-point bugs that I have investigated in Chromium. And this time I actually fixed the bug, both in Chromium, and then in googletest so that future generations will be spared some confusion.
This bug was a flaky test failure that suddenly started happening. We hates flaky test failures. They are particularly perplexing when they start happening in a test which has not changed for years. I got pulled in after a few weeks to investigate. The error messages (with some edits for line length) started something like this:
The difference between expected_microseconds and converted_microseconds is 512, which exceeds 1.0
Well. That sounds bad. This is a googletest error message saying that two floating-point values that were supposed to be within 1.0 of each other were, in fact, separated by 512.
The difference between the floating-point numbers was an immediate clue. It seemed very suspicious that the two numbers were separated by exactly 2^9. Coincidence? Nope. The rest of the message which listed the two values being compared just made me more certain of the underlying cause:
expected_microseconds evaluates to 4.2934311416234112e+18,converted_microseconds evaluates to 4.2934311416234107e+18
If youve done enough time in the IEEE 754 trenches you will immediately recognize what is going on.
If you read last weeks episode then it may feel like déjà vu that the magnitude of the numbers is identical. This is pure coincidence Im just using the numbers I was dealt. This time theyre printed in scientific notation, so that gives some variety. Read the previous episode for more background.
The basic problem is a variation on last weeks problem: floating-point numbers in computers are not the same as the real numbers used by mathematicians. As they get bigger they get less precise, and in the range of the numbers in the test failure all of the double-precision values being dealt with were, necessarily, multiples of 512. A double has 53 bits of precision and these numbers were far bigger than 2^53, so greatly reduced precision was inevitable. And now we can understand the problem.
The test was calculating the same value using two different methods. It was then verifying that the results were close, where close was defined as being within 1.0. The calculation methods produced very similar answers so most of the time the results would round to the same double-precision value. But every now and then the correct answer would be near a cusp, and one calculation would round one way, and one calculation would round the other way.
To be more precise, the numbers that ended up being compared were:

  • 4293431141623410688
  • 4293431141623411200

With the exponents stripped away we can more easily see that they are 512 apart. The two infinitely precise results generated by the test functions were always less than 1.0 apart so when they were values like 42910653.5 and 42910654.3 they would both round to 42910688. The trouble comes when the infinitely precise results are near a value like 4293431141623410944. This value is exactly half way between two doubles. If one function generates 42910943.9 and the other function generates 42910944.1 then these results which are just 0.2 apart get rounded in different directions and end up 512 apart!
This is the nature of a cusp, or a step function. You can have two results which are arbitrarily close but which are on opposite sides of a cusp a point exactly between two doubles and therefore they round in opposite directions. Changing the rounding mode is often suggested, but doesnt help it just moves the cusp.
Its like being born near midnight the tiniest variation can forever change the date (and maybe the year, century, or millennium) recorded for your birth.
My commit message might have been overly dramatic, but it was not wrong. I felt uniquely qualified to handle this situation:
commit 6c2427457b0c5ebaefa5c1a6003117ca8126e7bcAuthor: Bruce DawsonDate: Fri Dec 08 21:58:50 2017
Fix epsilon calculation for large-double comparisons
My whole life has been leading up to this bug fix.
I mean, how often do I get to land a change to Chromium with a commit message that quite reasonably contains links to two (2!) of my blog posts.
The fix in this case was to calculate the difference between adjacent doubles at the magnitude of the calculated values. This was done with the rarely used nextafter function, like this:
epsilon = nextafter(expected, INFINITY)  –  expected;if (epsilon < 1.0)epsilon = 1.0;
The nextafter function finds the next double (towards infinity in this case), and the subtraction (which is exact, how convenient) then finds the difference between doubles at that magnitude. The algorithm being tested could inherently give an error of 1.0 so epsilon had to be at least that large. This epsilon calculation made it trivial to check that the values were either within 1.0 or were adjacent doubles.
I never investigated why the test had suddenly started failing but I suspect that the timer frequency or the timer start point had changed, thus making the numbers bigger.
It bothered me that it required esoteric floating-point knowledge to understand this problem so I wanted to fix googletest. My first attempt went badly.
I initially tried to fix googletest to make EXPECT_NEAR fail whenever a meaninglessly-small epsilon was passed, but apparently a lot of tests within Google and presumably many more outside of Google abuse EXPECT_NEAR on doubles. They pass an epsilon value that is too small to be useful, but the numbers they are comparing are identical so the test passes. I fixed a dozen uses of EXPECT_NEAR without making a dent in the problem and then gave up.
It wasnt until I started writing this blog post (almost three years after the bug!) that I realized how to safely and easily fix googletest. If code is using EXPECT_NEAR with a too-small epsilon value and the test is passing (meaning that the values actually are equal) then its not really a problem. It only becomes a problem when the test fails, so all I needed to do was to look for too-small epsilon values in the failure case and display an informative message then.
I landed that change and now the error message for the 2017 failure looks like this:
The difference between expected_microseconds and converted_microseconds is 512, whereexpected_microseconds evaluates to 4.2934311416234112e+18,converted_microseconds evaluates to 4.2934311416234107e+18.The abs_error parameter 1.0 evaluates to 1 which is smaller than the minimum distance between doubles for numbers of this magnitude which is 512, thus making this EXPECT_NEAR check equivalent to EXPECT_EQUAL. Consider using EXPECT_DOUBLE_EQ instead.
Note that EXPECT_DOUBLE_EQ doesnt actually check for equality it checks that the doubles are equal within four units in the last place (ULPs). See my Comparing Floating Point Numbers post for details on this concept.
My hope is that most software developers will see the new error message and be sent down the correct path, and I think that the googletest fix is ultimately more important than fixing the Chromium test.