- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Dear all,
in an open source, i found the linking with MKL version 10 as follow:
LIBS= -L/opt/intel/mkl/10.0.011/lib/32 -lmkl_lapack -lmkl -lguide -lthread
I could not find the equivalent of these library in version 11.1 of intel compiler suite.
Please tell me where can i find such libraries.
Nay Lin
Nanyang Tech. University
Singapore
in an open source, i found the linking with MKL version 10 as follow:
LIBS= -L/opt/intel/mkl/10.0.011/lib/32 -lmkl_lapack -lmkl -lguide -lthread
I could not find the equivalent of these library in version 11.1 of intel compiler suite.
Please tell me where can i find such libraries.
Nay Lin
Nanyang Tech. University
Singapore
1 Solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
From what you've listed, it's likely the following would work:
-L$(MKLROOT)/lib/32 -lmkl_intel -lmkl_intel_thread -lmkl_core -openmp -lpthread
I just used the link Gennady provided to produce it, but if you're not familiar with Intel MKL you may not know the choices to make. Your link line suggests dynamic link of 32-bit threaded libs for Linux. If you're using the 11.1 compiler, the libraries above are probably the right choice.
Todd
-L$(MKLROOT)/lib/32 -lmkl_intel -lmkl_intel_thread -lmkl_core -openmp -lpthread
I just used the link Gennady provided to produce it, but if you're not familiar with Intel MKL you may not know the choices to make. Your link line suggests dynamic link of 32-bit threaded libs for Linux. If you're using the 11.1 compiler, the libraries above are probably the right choice.
Todd
Link Copied
3 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
From what you've listed, it's likely the following would work:
-L$(MKLROOT)/lib/32 -lmkl_intel -lmkl_intel_thread -lmkl_core -openmp -lpthread
I just used the link Gennady provided to produce it, but if you're not familiar with Intel MKL you may not know the choices to make. Your link line suggests dynamic link of 32-bit threaded libs for Linux. If you're using the 11.1 compiler, the libraries above are probably the right choice.
Todd
-L$(MKLROOT)/lib/32 -lmkl_intel -lmkl_intel_thread -lmkl_core -openmp -lpthread
I just used the link Gennady provided to produce it, but if you're not familiar with Intel MKL you may not know the choices to make. Your link line suggests dynamic link of 32-bit threaded libs for Linux. If you're using the 11.1 compiler, the libraries above are probably the right choice.
Todd
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Todd,
Thanks for your help!
I managed to compile the code with suggestion from u.
Lin
Thanks for your help!
I managed to compile the code with suggestion from u.
Lin

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page