-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Provides LAPACK.stein!() and hooks in SymTridiagonal #2678
Conversation
Provides eigvecs() methods to return just the eigenvectors in lapack.jl: Changed LapackException to LAPACKException Changed LapackDimMisMatch to DimensionMismatch in tridiag.jl: new eigvec method() to return just eigenvectors optionally takes eigenvalues to return corresponding eigenvectors
Thanks. Do we know why this is failing? Is it the |
Summary to date: the test fails because |
If this is one of those travis-only errors, we may need to comment out the tests - or else every single build will fail. I will take a look too. |
It seems that |
I don't think so. In lapack.jl:1427 |
@ViralBShah It is related to 32 bit LAPACK. I have just tried this branch on julia.mit.edu with USE_LIB64 = 0 and there I get the error. |
@andreasnoackjensen how did you get a 32-bit compile on julia.mit.edu? I tried this with I am beginning to wonder if the problem might be |
In all the BLAS and LAPACK wrappers, you should always use |
@jiahao You'll need to delete the dynlibs in deps/openblas* for |
We have finally trapped the hideous beast which has been so hard to capture these past few days. |
@ViralBShah the error was in assuming that concatenation would return an array of the correct |
Provides LAPACK.stein!() and hooks in SymTridiagonal
Thanks for persisting through with this one. |
Squashes and cleans up commits from #2654 to date.