Runtime Error libmkl_p4.so

Runtime Error libmkl_p4.so

Portrait de a.m.teale@dur.ac.uk


Hi,

I have recently compiled a large program with the intel fortran compiler v8. The program links to libraries in the intelmkl package(v6.1). The program seems to compile fine but when I run it I receive an error of the type;

programpath/programbinary: error while loading shared libraries: libmkl_p4.so: cannot open shared object file: No such file or directory

From reading previous postings I suspect that this may be to do with my linux setup and LD_LIBRARY_PATH.However I am very new toLinux and don'treally know how to alter / add tothis. Any help wouldbe greatly appreciated.

Many Thanks
Andy

3 posts / 0 nouveau(x)
Dernière contribution
Reportez-vous à notre Notice d'optimisation pour plus d'informations sur les choix et l'optimisation des performances dans les produits logiciels Intel.
Portrait de cp_jain

Yes, your are right. You need to update (add mkl lib path to) your LD_LIBRARY_PATH env variable as -

export LD_LIBRARY_PATH=/opt/intel/mkl61/lib/32/:$LD_LIBRARY_PATH

MKL lib path could be different in your case.

use ldd "exec_file_name" to varify that this lib is in path now.

HTH,
cp

Portrait de a.m.teale@dur.ac.uk

Many Thanks and a Happy New Year- Now Works.

Connectez-vous pour laisser un commentaire.