Hi experts
I am trying compile Bonmin (An mathematical programming software) using icc, icpc and mkl from Intel System Studio 2016 (on Opensuse Linux 13.1). Bonmin requires lapack and blas functions. So, I am compiling Bonmin using:
-L/opt/intel/lib/intel64/ -L/opt/intel/compilers_and_libraries/linux/mkl/lib/intel64/ -lmkl_intel_lp64 -lmkl_sequential -lmkl_core -liomp5 -lpthread -lm
The compilation seems work fine. I got an executable called Bonmin. However, when I try run Bonmin, I get the following error message:
Intel MKL FATAL ERROR: Error on loading function mkl_blas_avx_xdcopy
Directories /opt/intel/lib/intel64/ and /opt/intel/compilers_and_libraries/linux/mkl/lib/intel64/ are already in my LD_LIBRARY_PATH. I checked file libmkl_avx is /opt/intel/compilers_and_libraries/linux/mkl/lib/intel64/ , so I do not have any idea about what is wrong.
If I compile Bonmin using
-lmkl_avx -lmkl_intel_lp64 -lmkl_sequential -lmkl_core -liomp5 -lpthread -lm
I get the same error...
Does anyone have some idea or tip to help me?
Thanks in Advanced