| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
Co-Authored-By: Mark Dickinson <mdickinson@enthought.com>
|
This PR is a copy the following https://hg.python.org/cpython/rev/b33012ef1417 written by Mark Dickinson. This change has been reverted, see: https://bugs.python.org/issue29282#msg285956 I created this PR to reconsider math.fma() and to use this PR as a starting point to fix the implementation. I'm now waiting the CIs to see how things are going on. If tests continue to fail on some platforms, I plan to manually handle NaN and INF in the C code, before calling libc fma(). |
Sorry, something went wrong.
|
I would prefer to get the same behavior for fma(x, y, z) than (x * y) + z if possible. Here I don't understand why math.fma(math.inf, 0, 0) doesn't return nan. Is it a requirement of IEEE 754, or a Python deliberate choice? >>> math.fma(math.inf, 0, math.nan) nan >>> math.fma(math.inf, 0, 0) ValueError: invalid operation in fma >>> (math.inf * 0) + math.nan nan >>> (math.inf * 0) + 0 nan cc @mdickinson |
Sorry, something went wrong.
|
Strange. Tests passed on Linux and Windows pre-commit CIs. Let me try on stable buildbots. |
Sorry, something went wrong.
fma is a standard IEEE 754 function, so yes, the behaviour in corner cases is fully specified by IEEE 754, and we should expect to follow that behaviour. |
Sorry, something went wrong.
This is the usual rule about propagating NaNs, together with Python's rules for wrapping existing functions (as articulated at the top of mathmodule.c). In situations where IEEE 754 signals a floating-point exception, Python should be raising. But if any of the three arguments to fma is a NaN, then a NaN is silently propagated, and no floating-point exception is signaled. Think of fma as a 3-argument operation, not as exactly equivalent to a*b + c. |
Sorry, something went wrong.
You can also look at Decimal's implementation, which should also be following IEEE 754 rules (but with the added complication of having to handle signalling NaNs correctly). |
Sorry, something went wrong.
|
test_fma_zero_result() fails on FreeBSD:
FAIL: test_fma_zero_result (test.test_math.FMATests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/home/buildbot/python/pull_request.koobs-freebsd-9e36.nondebug/build/Lib/test/test_math.py", line 2213, in test_fma_zero_result
self.assertIsNegativeZero(math.fma(x-y, x+y, -z))
File "/usr/home/buildbot/python/pull_request.koobs-freebsd-9e36.nondebug/build/Lib/test/test_math.py", line 2316, in assertIsNegativeZero
self.assertTrue(
AssertionError: False is not true : Expected a negative zero, got 0.0
Shared pythoninfo: CC.version: FreeBSD clang version 9.0.1 (git@github.com:llvm/llvm-project.git c1a0a213378a458fbea1a5c77b315c7dce08fd05) (based on LLVM 9.0.1) ... platform.libc_ver: libc 7 platform.platform: FreeBSD-13.0-CURRENT-amd64-64bit-ELF Non-debug pythoninfo: CC.version: FreeBSD clang version 8.0.1 (tags/RELEASE_801/final 366581) (based on LLVM 8.0.1) ... platform.libc_ver: libc 7 platform.platform: FreeBSD-12.1-RELEASE-p1-amd64-64bit-ELF Note: PPC64 Fedora PR failure is unrelated (test_distutils: https://bugs.python.org/issue39248). |
Sorry, something went wrong.
|
Failures on x86 Windows7 PR (32-bit): ======================================================================
ERROR: test_fma_overflow (test.test_math.FMATests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "D:\cygwin\home\db3l\buildarea\pull_request.bolen-windows7\build\lib\test\test_math.py", line 2241, in test_fma_overflow
self.assertEqual(math.fma(a, b, -c),
OverflowError: overflow in fma
======================================================================
FAIL: test_random (test.test_math.FMATests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "D:\cygwin\home\db3l\buildarea\pull_request.bolen-windows7\build\lib\test\test_math.py", line 2299, in test_random
self.assertEqual(math.fma(a, b, c), expected)
AssertionError: 0.5506672157701096 != 0.5506672157701097
pythoninfo: sys.version: 3.9.0a2+ (heads/refs/pull/17937/merge:e4f904e, Jan 13 2020, 10:46:12) [MSC v.1913 32 bit (Intel)] sys.version_info: sys.version_info(major=3, minor=9, micro=0, releaselevel='alpha', serial=2) sys.windowsversion: sys.getwindowsversion(major=6, minor=1, build=7601, platform=2, service_pack='Service Pack 1') sys.winver: 3.9-32 "MSC v.1913" is Visual Studio 2017 Update 6. |
Sorry, something went wrong.
Sorry, I'm wrong: "fully" is incorrect. There's one case where both IEEE 754 and C99 refuse to specify the behaviour, namely fma(±0, ±inf, nan) and fma(±inf, ±0, nan). IEEE 754 says for these cases (see section 7.2(c) of IEEE 754-2019) that:
while C99 says in Annex F, 9.10.1:
(the emphasis above is mine). So for us, fma(0, inf, nan) could either raise ValueError or return a NaN. I don't know whether we should make a choice for Python in this case, or leave this system-defined. My inclination would be to specify this in Python, and have Python return a NaN in this case, and not raise. @tim-one thoughts? |
Sorry, something went wrong.
Okay, so we still have the same issue as last time I tried this. :-( I'm really not comfortable with knowingly delivering a substandard fma on a mainstream platform. |
Sorry, something went wrong.
Yes, just return a NaN. anything + NaN is going to return a NaN, so complaining about what happens during the computation of anything is pointless. About the failure of single-rounding on Windows. it's surprising, and a few minutes on Google only found complaints about this in the BPO issue report. I wonder whether we're using (or failing to use) some goofy Windows-specific compiler (linker?) flag(s), but can't make time now to thrash with that. |
Sorry, something went wrong.
Is that the only Windows build with a failure? Windows 7 end-of-life is tomorrow (14 Jan 2020), and nobody cares about 32-bit boxes anymore anyway 😉. |
Sorry, something went wrong.
|
I checked out this branch and tried it on my own Windows box (Win 10 Pro, Visual Studo 2017). test_math passed under all 4 combinations of {Release, Debug} x {64-bit, 32-bit}. Here's a sample ID line:
So the Win32 buildbot failure may be spurious. No idea why. Ancient OS? cygwin mucking with something? Slightly earlier build of Visual Studio? The buildbot is actually running on a 32-bit box? ... |
Sorry, something went wrong.
|
Ah! I see now that the other Windows buildbots passed (as did my own Windows box), including an AMD64 Windows 7 SP1 bot. So there's "something wrong" with the sole Windows oddball that failed. But I don't know how to pursue that. |
Sorry, something went wrong.
I wish that were true, but interactions with customers say otherwise. :-( OTOH, none of those customers are going to be using Python 3.9 any time soon (one of them "upgraded" last year from Python 2 to Python 3.4). |
Sorry, something went wrong.
My suspicion is that use of the x87 FPU plays some role in this. |
Sorry, something went wrong.
|
I'm sorry but I give up on this PR. I created it to check if the CI pass on all platforms and the result is that: no, it doesn't. There are still multiple platform specific issues. I don't know how to fix these issues and I don't really need this function, so I'm not motivated to fix issues, sorry. If anyone wants to work on this, just copy/clone my PR ;-) |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Co-Authored-By: Mark Dickinson mdickinson@enthought.com
https://bugs.python.org/issue29282