-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
Expose Math.MaxNumber and Math.MinNumber functions that don't propagate NaN #29279
Comments
cc. @jkotas, @danmosemsft. Thoughts? |
Reverting I do not think that the IEEE compliance for these operations is important, especially given that the IEEE is changing their opinion about them as well. |
It's not that they are changing their opinion as the original functionality for |
I do not think we should be adding new APIs in 3.0. Just revert the Math.Max/Min for 3.0, and leave the rest for future. |
That would mean we are no longer implementing all IEEE 754:2008 required general operations for 3.0. I think the best scenario is to:
This ensures we remain IEEE 754:2008 compliant, ensures that we are not breaking WPF for a scenario they are already depending on, keeps the functionality deterministic (regardless of the ordering of the inputs), and moves us to be inline with IEEE 754:2019. |
I do not see a problem with it. This is corner case functionality that it fine to mention in the fine print. We need to get into the shipping mindset for 3.0. Work through the bugs and stop faulting in more nice-to-haves. |
Being able to say that we are IEEE compliant for required operations is something that can be quite important for various numerics libraries, for porting code from native, and for determinism across platforms.
I agree, but if we can fix a "bug" by moving the new functionality to a neighboring function and the code has already been in/tested for many months now; then I think that is better than pulling it out completely. Especially when it allows us to tick a compliance checkbox that has been unchecked for years and include that as part of the 3.0 milestones we reached. The alternative is that this is pulled out in 3.0; and then reviewed/approved and checked back in for vNext (likely 3.1) which seems to be a worse option considering how trivial the code is. |
I'll move this to |
I am happy with pushing out this new API and documenting the omission. Thank you @tannergooding |
Reverting the behavior of Math.Max/Min should stay in 3.0. |
I'll open a separate issue to track reverting the behavior to propagate the NaN. |
Feedback: Should we have a wider discussion about putting future APIs on the primitive types ( If we decide that putting these APIs on the primitive types isn't worthwhile then the proposal as stated here seems viable. There was some discussion on whether we should keep the |
Closing in favor of #20137 |
Rationale
dotnet/coreclr#20912 updated the existing
Math.Min
/Math.Max
functions to be both IEEE 754:2008 compliant and to be inline with the C/C++ language standard (Annex F - IEC 60559 floating-point arithmetic
). This also brought it inline with MSVC, GCC, and Clang for their implementations under 'precise' floating-point mode.However, it looks like the draft for IEEE 754:2019 (a summary can be found here http://754r.ucbtest.org/background/, but I also have the latest draft locally) is changing things up a bit. Namely, they are removing
minNum
/maxNum
from the list of "required" operations and replacing them with newminimum
/maximum
andminimumNumber
/maximumNumber
operations which are recommended by not required and which more clearly specify various behaviors.minimumNumber
/maximumNumber
are largely compatible with the existingminNum
/maxNum
functions. But also clarifies that+0
is greater than-0
for the purpose of this function and clarifies the behavior of signalling NaN.minimum
/maximum
are new and would propagate theNaN
as expected here. They likewise clarify that+0
is greater than-0
for the purpose of this function.Proposal
Given this change of behavior in the new spec, it might be desirable to revert
Math.Min
/Math.Max
to continue propagating theNaN
result. We could then expose new functions which do not propagate theNaN
instead.This would be, overall, a more compatible change and would still allow us to be IEEE compliant.
Such new APIs would be:
Notes
WPF hit a bug due to the change in behavior: dotnet/wpf#521
We have detected a perf regression due to the new behavior being more complex: https://github.com/dotnet/coreclr/issues/22951. We still need to keep the change that
+0
is greater than-0
, but it will lessen the regression overall and make a fix easier to attain.IEEE 754:2008 refer to these as
minNum
,maxNum
,minNumMag
, andmaxNumMag
. However, IEEE 754:2019 (draft) refers to them asminimumNumber
,maximumNumber
,minimumMagnitudeNumber
, andmaxmimumMagnitudeNumber
. I opted with the latter postfix (MagnitudeNumber
, rather thanNumberMagnitude
), as I believe it is more readable.The text was updated successfully, but these errors were encountered: