-
Notifications
You must be signed in to change notification settings - Fork 101
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
Add erfinv
and erfcinv
for Float16
and generalize logerfc
and logerfcx
#372
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #372 +/- ##
==========================================
- Coverage 94.95% 94.10% -0.85%
==========================================
Files 14 14
Lines 2914 2935 +21
==========================================
- Hits 2767 2762 -5
- Misses 147 173 +26
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
@devmotion Is this good to merge? |
From my side yes but someone has to review it. |
Perhaps @oscardssmith ? |
Followup to #372. This manages to remove a one of the branches by pushing the domain split further, and makes `erfcinv` use the better version I found for erfinv in the original PR.
As the title says 🙂
I was a bit unsure if computations in
erfinv
anderfcinv
should be performed withFloat32
orFloat16
since the coefficients in Blair's paper are not representable withFloat16
.