-
Notifications
You must be signed in to change notification settings - Fork 10
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
Intel MKL FATAL ERROR: Cannot load libmkl_avx512.so or libmkl_def.so #2
Comments
I'm running into this error as well. I followed all of the instructions in the Math Kernel Library Install and subsequent trefide build and install, but this error seems to persist. Based on my copy-paste error googling, it seems as if this is a problem with other programs as well that use MKL. I tried most of the solutions people have proposed, but still get library linking errors. @RenieWell perhaps you can try explicitly loading the libraries like below. It seemed to work for some people.
|
I had the same issue. With preloading of libmkl_core.so and libmkl_sequential.so it worked and I can run the demo notebooks. I found this solution here.
|
Thanks jtoloe! |
the following combination of packages (got from
following installs everything required: conda install mkl_fft -y ☕ ✌️ |
I follow your advice and create virtual envirment by
conda create -n trefide python=3.6
and I have installed with
pip
successfully.However when I ran the code in demo file
Demo PMD Compression & Denoising.ipynb
in the line
the iPython crashed down and restarted. The error in console is
I follow the advice in
https://stackoverflow.com/questions/36659453/intel-mkl-fatal-error-cannot-load-libmkl-avx2-so-or-libmkl-def-so
by entering the commondconda install nomkl numpy scipy scikit-learn numexpr conda remove mkl mkl-service
, but it didn't work.As I have install the MTK, I tried to locate the
libmkl_avx512.so
, which is under the path/opt/intel/compilers_and_libraries_2019.1.144/linux/mkl/lib/intel64_lin
So, I modified the
makefile
asIt can be installed without error, but still crashed when run the demo.
I have tried everything, could you please help me out?
The text was updated successfully, but these errors were encountered: