Skip to content

bpo-39288: Add math.nextafter(x, y) #17937

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 12, 2020
Merged

bpo-39288: Add math.nextafter(x, y) #17937

merged 1 commit into from
Jan 12, 2020

Conversation

vstinner
Copy link
Member

@vstinner vstinner commented Jan 10, 2020

Return the next floating-point value after x towards y.

https://bugs.python.org/issue39288

@vstinner
Copy link
Member Author

I'm not sure about the unit tests: not sure if they are portable on any IEEE 754 implementation, and if the test would work on non-IEEE 754 implementation. Maybe the test should be decorated ith @requires_IEEE_754?

@mdickinson
Copy link
Member

Maybe the test should be decorated ith @requires_IEEE_754?

Yes, I think so. There's nothing to guarantee that the existing test would work on a non IEEE 754 system, should Python ever encounter one.

Please could we also have tests covering all the various corner cases: signed zeros, infinities, nans, subnormals, etc.? There's a lot that can go wrong, and I don't think it's safe to trust that the platform's libm does the right thing. (We've tried that before.)

@@ -2033,6 +2033,12 @@ def testComb(self):
self.assertIs(type(comb(IntSubclass(5), IntSubclass(k))), int)
self.assertIs(type(comb(MyIndexable(5), MyIndexable(k))), int)

def test_nextafter(self):
self.assertEqual(math.nextafter(9223372036854775807.0, 0.0),
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would be clearer to use a value that's exactly representable here: 9223372036854775808.0 rather than 9223372036854775807.0. Otherwise there are two effects going on: first, the literal is being rounded to a different value, and then that value is having nextafter applied to it.

@mdickinson
Copy link
Member

Oh, and once we have more comprehensive tests, it might be worth trying out the new "test on the buildbots" functionality with this PR, to ferret out any platforms that have dodgy implementations of nextafter.

@vstinner
Copy link
Member Author

Please could we also have tests covering all the various corner cases: signed zeros, infinities, nans, subnormals, etc.?

I added more tests. Which tests do you want to signed zeros? The sign doesn't seem to matter:

>>> math.nextafter(0.0, 1.0)
5e-324
>>> math.nextafter(-0.0, 1.0)
5e-324
>>> math.nextafter(-0.0, -1.0)
-5e-324
>>> math.nextafter(+0.0, -1.0)
-5e-324

For subnormals, I wrote the following tests, is it what you expect?

        # around 0.0
        self.assertEqual(math.nextafter(0.0, INF),
                         sys.float_info.min * sys.float_info.epsilon)
        self.assertEqual(math.nextafter(0.0, -INF),
                         (-sys.float_info.min) * sys.float_info.epsilon)

There's a lot that can go wrong, and I don't think it's safe to trust that the platform's libm does the right thing. (We've tried that before.)

Do you that if nextafter() behaves differently on a platform, Python should patch the function?

@vstinner vstinner added the 🔨 test-with-buildbots Test PR w/ buildbots; report in status section label Jan 11, 2020
@bedevere-bot
Copy link

🤖 New build scheduled with the buildbot fleet by @vstinner for commit c12293b0d5bcef86db12b5075bc3500b17ff11be 🤖

If you want to schedule another build, you need to add the ":hammer: test-with-buildbots" label again.

@bedevere-bot bedevere-bot removed the 🔨 test-with-buildbots Test PR w/ buildbots; report in status section label Jan 11, 2020
@vstinner
Copy link
Member Author

Oh, and once we have more comprehensive tests, it might be worth trying out the new "test on the buildbots" functionality with this PR, to ferret out any platforms that have dodgy implementations of nextafter.

Let me try this new toy :-)

math.nextafter

x: float
y: float
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh. I didn't notice, that's a C float, whereas I mean a "Python float". In fact, I should use "double" here.

I will fix it once the buildbot tests will complete.

@vstinner
Copy link
Member Author

I don't understand this result, but nextafter() gives me the expected result, whereas 1.0-epsilon gives me a surprising smaller value.

>>> math.nextafter(1.0, 2.0) == 1.0 + sys.float_info.epsilon
True
>>> math.nextafter(1.0, 0.0) == 1.0 - sys.float_info.epsilon
False
>>> math.nextafter(1.0, 0.0), 1.0 - sys.float_info.epsilon
(0.9999999999999999, 0.9999999999999998)
>>> math.nextafter(1.0, 0.0).hex(), (1.0 - sys.float_info.epsilon).hex()
('0x1.fffffffffffffp-1', '0x1.ffffffffffffep-1')

@vstinner
Copy link
Member Author

Good: the test passed on all buildbots!

buildbot/PPC64 Fedora PR failed on test_distutils, but it's unrelated to this PR:

@vstinner
Copy link
Member Author

I fixed the implementation to use C double rather than C float, rebased my PR and squashed commits.

@mdickinson: Would you mind to review the PR again?

@vstinner
Copy link
Member Author

I'm not sure about "If x equals to y, return y": an implementation might return x. But I wrote an unit test to ensure that y is returned: the test using signed zeros.

@mdickinson
Copy link
Member

whereas 1.0-epsilon gives me a surprising smaller value.

Makes sense: assuming IEEE 754, the next Python float down from 1.0 is 1.0 - 0.5*epsilon, so 1.0 - epsilon is two floats away from 1.0.

Copy link
Member

@mdickinson mdickinson left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM; one documentation nitpick.

There's a suggestion on the issue to make the second argument optional. I'd suggest merging this PR as-is, and doing that in a separate PR if we decide that's the way we want to go.


Return the next floating-point value after *x* towards *y*.

If *x* equals to *y*, return *y*.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggest "is equal to" in place of "equals to"; it reads a bit better.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done. You may suggest this change to the Linux manual page of nextafter() as well where I stole this sentence :-)

Return the next floating-point value after x towards y.
@mdickinson
Copy link
Member

Do you that if nextafter() behaves differently on a platform, Python should patch the function?

My hope is that all platforms we care about follow the specification, but I'd at least like to know about it if there are platforms that don't.

If it does turn out that some platforms deviate from the specification, we can make an informed decision about how to deal with them. But let's save that for when it happens.

@vstinner
Copy link
Member Author

PR rebased to fix a conflict in Doc/whatsnew/3.9.rst and commits squashed.

Once regular CI tests will pass, I will give a second try to buildbots since I added many tests since the previous run.

@vstinner
Copy link
Member Author

@mdickinson: "If it does turn out that some platforms deviate from the specification, we can make an informed decision about how to deal with them. But let's save that for when it happens."

Sure, I totally agree. I added tons of unit tests, so different behaviors will be easily catched.

@mdickinson
Copy link
Member

I added tons of unit tests, so different behaviors will be easily catched.

Yep, the tests look very good. :-)

@vstinner vstinner merged commit 100fafc into python:master Jan 12, 2020
@vstinner vstinner deleted the nextafter branch January 12, 2020 01:15
@vstinner
Copy link
Member Author

Thanks for the review @mdickinson and for helping to write unit tests.

@python python deleted a comment from bedevere-bot Jan 12, 2020
shihai1991 pushed a commit to shihai1991/cpython that referenced this pull request Jan 31, 2020
Return the next floating-point value after x towards y.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants