- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
I have to modify one Makefile according to my OS environment.
"LAPACK = -L/usr/site/intelmkl-9.0.018/lib/32 -lmkl_lapack -lmkl -lguide -lpthread"
I have installed the free Intel Fortran Composer XE 2011 for Linux . It is said that the MKL library is included.
My install directionary is /opt/intel/composer_xe_2011_sp1, I found the /opt/intel/composer_xe_2011_sp1/mkl/lib/intel64 directory and only found libmkl_lapack95_ilp64.a and libmkl_lapack95_lp64.a, is one of the two the mkl_lapack library and where are the three other libraries?
"LAPACK = -L/usr/site/intelmkl-9.0.018/lib/32 -lmkl_lapack -lmkl -lguide -lpthread"
I have installed the free Intel Fortran Composer XE 2011 for Linux . It is said that the MKL library is included.
My install directionary is /opt/intel/composer_xe_2011_sp1, I found the /opt/intel/composer_xe_2011_sp1/mkl/lib/intel64 directory and only found libmkl_lapack95_ilp64.a and libmkl_lapack95_lp64.a, is one of the two the mkl_lapack library and where are the three other libraries?
コピーされたリンク
5 返答(返信)
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Since MKL 10.3 a new directory hierarchy has being established. Please see this KB article here about that here A new directory hierarchy in Intel MKL package
Also, please see the MKL Linker Adviser to select all mkls libraries required for linking mkl.
--Gennady
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
The lapack95 libraries contain the lapack95 wrappers. Basic f77 lapack is included along with blas in the minimum group of libraries. -lguide hasn't been supported for several years, as it was replaced by -liomp5.
If you don't want to deal at first with the link advisor, -mkl option may be sufficient to get started with the most common situations.
If you don't want to deal at first with the link advisor, -mkl option may be sufficient to get started with the most common situations.
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
> If you don't want to deal at first with the link advisor, -lmkl -mkl option
may be sufficient to get started with the most common situations.
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Have you ever solved this problem? I meet the same problem when i intall a software, the makefile include libs -lmkl_lapack -lmkl -lguide -lpthread.
If this libs replaced by others libs?
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Use the MKL link line advisor at https://software.intel.com/en-us/articles/intel-mkl-link-line-advisor to find out what -l options to use for your version of compiler+MKL, and modify the makefile to suit.
