| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| Expand Up | @@ -2691,12 +2691,12 @@ def test_fma_infinities(self): | |
| self.assertEqual(math.fma(-b, -math.inf, c), math.inf) | ||
| self.assertEqual(math.fma(-b, math.inf, c), -math.inf) | ||
|
|
||
| # gh-73468: On WASI and FreeBSD, libc fma() doesn't implement IEE 754-2008 | ||
| # gh-73468: On some platforms, libc fma() doesn't implement IEE 754-2008 | ||
| # properly: it doesn't use the right sign when the result is zero. | ||
| @unittest.skipIf(support.is_wasi, | ||
| "WASI fma() doesn't implement IEE 754-2008 properly") | ||
| @unittest.skipIf(sys.platform.startswith('freebsd'), | ||
| "FreeBSD fma() doesn't implement IEE 754-2008 properly") | ||
| @unittest.skipIf( | ||
| sys.platform.startswith(("freebsd", "wasi")) | ||
| or (sys.platform == "android" and platform.machine() == "x86_64"), | ||
| f"this platform doesn't implement IEE 754-2008 properly") | ||
| def test_fma_zero_result(self): | ||
|
Comment thread
Comment on lines
+2696
to
2700
Copy link
Copy Markdown
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low QualitySee discussion at #116667 (comment).
Sorry, something went wrong.
erlend-aasland reacted with thumbs up emoji
All reactions
|
||
| nonnegative_finites = [0.0, 1e-300, 2.3, 1e300] | ||
|
|
||
| Expand Down | ||
| Back | FazBrowse Home | New Git URL |
Uh oh!
There was an error while loading. Please reload this page.