Intel® oneAPI Math Kernel Library
Ask questions and share information with other developers who use Intel® Math Kernel Library.

MKL 7.0 beta pardiso (sparse solver)

igino-pitacco
Beginner
680 Views
There is a lot of work to do with pardiso!
1) The documentation is very poor. I tried to compile with icl 8.0 the only example in C language reported in the mkl manual and first of all, i got the message : cannot find extern symbol _pardiso@...., even if i linked the program with the mkl_solver.lib. A dumpbin of the mkl_solver.lib reminded me that fortran names are in capital chars, so i changed the name in the C program.
Now the linker prompts the message : cannot find "libIEPCF90MT.lib"

I searched that library in both the ifort and icl lib directories and also in the mkl 7.0 lib without results.

Could anyone help me?

Igino Pitacco

ip@rationaldesign.it

0 Kudos
5 Replies
Intel_C_Intel
Employee
680 Views
This is a Fortran runtime library. The Intel compiler library directory must either be on your library path or the library must be explicitly linked in.
Bruce
0 Kudos
Intel_C_Intel
Employee
680 Views
Some more points about Pardiso and the interface to it. Starting with the 7.0 release of MKL you will not need to link in mkl_solver.lib, but rather, just link in mkl_c.lib or mkl_s.lib, depending on the compiler and function interfaces you are using. This will not change the need for compiler libraries, of course, but it will make linking easier and more consistent.
Bruce
0 Kudos
sandeep_01
Beginner
680 Views

I am using FORTRAN Intel compiler for Windows 10.1. and i do not find anywhere the librarylibIEPCF90MT.lib

I am also gettng same linking error as mentioned in this thread.

Please suggest where I can find this lib? or am I msissing something..

thank you,

sandeep

0 Kudos
Alexander_K_Intel2
680 Views
Hi,
Please use this linker adwiser to compile and link your project (http://software.intel.com/en-us/articles/intel-mkl-link-line-advisor/)
With best regards,
Alexander Kalinkin
0 Kudos
Gennady_F_Intel
Moderator
680 Views
sandeep, it's not clear which MKL version are you still using? in the case of versions 10.* , the recommendation provided by Alexander will help you.
0 Kudos
Reply