-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
Use gfortran interface of MKL. #5363
Conversation
I have been able to link all the libraries against MKL's gfortran interface, but can't get the system image to build:
|
@vtjnash Could this be due to the new fast startup stuff, where it may be unable to find the MKL libraries? |
Cc: @andreasnoackjensen |
I get the same error. The weird thing is that if I choose another .so, e.g. mkl_core.so, then julia can find the file. I have also tried to copy the the relevant library files to /julia/usr/lib and that works. |
A little bit off topic. Is it possible to set up a travis session to test Julia + MKL (with a proper license of course)? |
It sounds like the dynamic linker is unable to find some dependency of |
Maybe we just copy the files when using mkl? |
All dependencies of @lindahua We can certainly install MKL on a travis box. Perhaps best to have a separate issue for that. |
I'm not sure what rules linux uses for looking up dependencies of dependencies, however, setting LD_LIBRARY_PATH at runtime should have been enough. |
If you're running on OSX,
|
Attempting to implement the discussion in #5303