-
Notifications
You must be signed in to change notification settings - Fork 5
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
lapack/netlib: require Gonum v0.13 and add missing methods #92
Conversation
|
Ok, I'll bump the Go version too. About I'll check |
The failure of |
After running |
I've run |
Yeah, I think so. |
83952be
to
a8fd935
Compare
I missed there's one more failure in Drotmg:
|
The root cause is again the difference between using and not using FMA. The detection of the FMA instruction in the CI pipeline gives different results from running locally. It'd be nice to know how to get the same (or at least in terms of FMA) build in both environments. Anyway, I'll see if I can either improve the test or relax the tolerance. |
Codecov ReportPatch coverage:
❗ Your organization is not using the GitHub App Integration. As a result you may experience degraded service beginning May 15th. Please install the Github App Integration for your organization. Read more. Additional details and impacted files@@ Coverage Diff @@
## master #92 +/- ##
==========================================
- Coverage 30.46% 29.12% -1.34%
==========================================
Files 3 3
Lines 6513 6321 -192
==========================================
- Hits 1984 1841 -143
+ Misses 4096 4046 -50
- Partials 433 434 +1
☔ View full report in Codecov by Sentry. |
"All checks have passed" 🎉 |
Let's give some TLC to the netlib packages. Let's start by requiring Gonum v0.13 and adding missing methods which are
Dlapmr
andDpstrf
. The editor reformatted comments on save and I also removed two unreachable returns that somehow sneaked in in the past.Unfortunately, there are two failing tests: one in BLAS
Drotg
(new one) and one in LAPACKDlarfb
. I should probably identify the root cause before merging this.Fixes #91
Please take a look.