-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Conversation
Decimal
implementations of ulp
, nextUp
, nextDown
Decimal
implementations of ulp
, nextUp
, nextDown
Decimal
implementations of ulp
, nextUp
, nextDown
Decimal.ulp
, nextUp
, nextDown
1f25ee6
to
b25e610
Compare
@swift-ci test Linux |
b25e610
to
955b50d
Compare
@swift-ci test Linux |
@swift-ci test macOS |
955b50d
to
e8c418c
Compare
@swift-ci test |
There was a problem hiding this 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.
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 |
@swift-ci test |
Thanks :) It’s not quite done, and I’ll keep plugging away at it. |
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 { |
There was a problem hiding this comment.
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).
@swift-ci test |
@spevans This should be ready now. |
@phausler Would you mind putting a checkmark here if it looks right? |
There was a problem hiding this 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.
@phausler By syncing you mean the overlay? It’s still being built from the overlay files in this repo, yes? |
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 |
This PR is a follow-up to #3014, addressing the first issue outlined there and correspondingly addressing SR-14384 regarding
nextDown
andnextUp
. Namely: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 ofDecimal
values, with the consequence that the "unit in the last place" of1
is allegedly1
.nextUp
is documented to give "the least representable value that is greater than this decimal," but(1 as Decimal).nextUp
is allegedly2
. (Similarly fornextDown
.)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 bothnextUp
andnextDown
to rely onulp
[for most values]. Both the overlay and the swift-corelibs implementations are changed, and appropriate tests are added.