matrix - using mkl, error while loading shared libraries: libmkl_intel_lp64.so -
i'm new in using mkl libraries. excuse me if seems silly. tried run example in tutorial [here] ifort -mkl dgemm_example.f ,then run executable file. here error:
./a.out: error while loading shared libraries: libmkl_intel_lp64.so: cannot open shared object file: no such file or directory i searched similar problems baffled me more. have idea? dgemm_example.f
you have set ld_library_path environment variable, otherwise shared library not found @ run time.
before running program, type export ld_library_path=/path/to/your/library/directory in (bash) shell in want run code.
if using ubuntu, can set variable automatically using configuration files in /etc/ld.so.conf.d/, see ubuntu help. similar mechanisms available other distributions.
Comments
Post a Comment