Displaying 1 result from an estimated 1 matches for "lmkl_gf_ilp64".
2011 Nov 03
4
How to used MKL (not revolution-mkl) with Debian packages
...r,
the following tricks may works for without some known side-effects (likes
openmp breaking issues), you may try to build your own libblas.so.3gf.0
with following command:
$ gfortran -L/opt/intel/lib/intel64 -liomp5 -L/opt/intel/mkl/lib/intel64
-lmkl_rt -lmkl_core -lmkl_gf_lp64 -lmkl_gnu_thread -lmkl_gf_ilp64 -lgomp
-lpthread -shared -Wl,-soname,libblas.so.3gf -o libblas.so.3gf.
$ sudo mkdir /usr/local/lib/MKL
$ sudo cp libblas.so.3gf.0 /usr/local/lib/MKL/.
$ cd /usr/local/lib/MKL
$ sudo ln -s libblas.so.3gf.0 libblas.so.3gf
$ sudo -s
$ echo "/usr/local/lib/MKL" > /etc/ld.so.conf.d/MKL.con...