Skip to content
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

[SR-14384][SR-14974] Fix Decimal.ulp, nextUp, nextDown #3070

Merged
merged 4 commits into from
Sep 8, 2021

Conversation

xwu
Copy link
Contributor

@xwu xwu commented Aug 29, 2021

This PR is a follow-up to #3014, addressing the first issue outlined there and correspondingly addressing SR-14384 regarding nextDown and nextUp. Namely:

  • The implementation of ulp does not currently actually return the "unit in the last place" as an IEEE floating-point type would, which should reflect the spacing between two consecutive representable numbers. Instead, the result currently reflects the idiosyncratic internal representation of Decimal values, with the consequence that the "unit in the last place" of 1 is allegedly 1.
  • Relatedly, nextUp is documented to give "the least representable value that is greater than this decimal," but (1 as Decimal).nextUp is allegedly 2. (Similarly for nextDown.)

This behavior is discordant with that of binary floating-point types as well as the documentation. This PR addresses both of these issues by returning the true spacing between two consecutive representable numbers as the ulp [for most values], and adjusting the implementations of both nextUp and nextDown to rely on ulp [for most values]. Both the overlay and the swift-corelibs implementations are changed, and appropriate tests are added.

@xwu xwu changed the title Fix Decimal implementations of ulp, nextUp, nextDown [SR-14384][SR-14974] Fix Decimal implementations of ulp, nextUp, nextDown Aug 29, 2021
@xwu xwu changed the title [SR-14384][SR-14974] Fix Decimal implementations of ulp, nextUp, nextDown [SR-14384][SR-14974] Fix Decimal.ulp, nextUp, nextDown Aug 29, 2021
@xwu xwu marked this pull request as ready for review August 29, 2021 21:40
@xwu xwu requested a review from spevans August 29, 2021 21:40
@xwu xwu force-pushed the decimal-ulp-nextup-nextdown branch from 1f25ee6 to b25e610 Compare August 29, 2021 22:35
@xwu
Copy link
Contributor Author

xwu commented Aug 29, 2021

@swift-ci test Linux

@xwu xwu force-pushed the decimal-ulp-nextup-nextdown branch from b25e610 to 955b50d Compare August 30, 2021 01:22
@xwu
Copy link
Contributor Author

xwu commented Aug 30, 2021

@swift-ci test Linux

@xwu
Copy link
Contributor Author

xwu commented Aug 30, 2021

@swift-ci test macOS

@xwu xwu force-pushed the decimal-ulp-nextup-nextdown branch from 955b50d to e8c418c Compare August 30, 2021 14:22
@xwu
Copy link
Contributor Author

xwu commented Aug 30, 2021

@swift-ci test

@xwu xwu requested a review from stephentyrone August 30, 2021 23:39
Copy link
Contributor

@spevans spevans left a comment

Choose a reason for hiding this comment

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

All ok, just requires some changes in the tests.

@xwu
Copy link
Contributor Author

xwu commented Sep 1, 2021

Will revise later this week or over the weekend. There’s a subtle bug owing to the fact that the max supported significand of this type is not 10 ** 38 - 1 but rather 2 ** 128 - 1.

@spevans
Copy link
Contributor

spevans commented Sep 5, 2021

@swift-ci test

@xwu
Copy link
Contributor Author

xwu commented Sep 5, 2021

Thanks :) It’s not quite done, and I’ll keep plugging away at it.

@xwu xwu marked this pull request as draft September 5, 2021 22:10
@xwu xwu marked this pull request as ready for review September 7, 2021 22:10
return self + Decimal(
_exponent: _exponent, _length: 1, _isNegative: 0, _isCompact: 1,
_reserved: 0, _mantissa: (0x0001, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000))
if _isNegative == 1 {
Copy link
Contributor Author

@xwu xwu Sep 7, 2021

Choose a reason for hiding this comment

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

This logic is the Decimal counterpart to https://github.com/apple/swift/blob/4c923d6dda6453d3af635f0ac1d64935a21673bb/stdlib/public/core/FloatingPointTypes.swift.gyb#L946 (without the parts dealing with negative zero and infinity).

@xwu
Copy link
Contributor Author

xwu commented Sep 7, 2021

@swift-ci test

@xwu xwu requested a review from spevans September 7, 2021 22:11
@xwu
Copy link
Contributor Author

xwu commented Sep 7, 2021

@spevans This should be ready now.

@millenomi
Copy link
Contributor

@phausler Would you mind putting a checkmark here if it looks right?

Copy link
Contributor

@phausler phausler left a comment

Choose a reason for hiding this comment

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

There is a question of syncing this but overall the changes look accurate. ulp and such were never fully defined so this seems plausible to bring em in line w/ the expectations.

@xwu xwu merged commit b3b87b6 into swiftlang:main Sep 8, 2021
@xwu xwu deleted the decimal-ulp-nextup-nextdown branch September 8, 2021 22:49
@xwu
Copy link
Contributor Author

xwu commented Sep 8, 2021

@phausler By syncing you mean the overlay? It’s still being built from the overlay files in this repo, yes?

@phausler
Copy link
Contributor

phausler commented Sep 8, 2021

I am talking about the actual overlay in the system, this is only the open source version of it; the commentary was more of a point of book-keeping for the Foundation team

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