<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Link Advisor Problem in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781842#M1546</link>
    <description>If you have the 10.0 compiler (2008?), you may, indeed, have problems getting it to work with the current MKL library. Note that the current version is 12.1, not the 11.0 version that you mentioned.&lt;BR /&gt;&lt;BR /&gt;You have to decide whether to upgrade the compiler, or to download an older version of MKL. Note that the 10.0 version of MKL probably did not come with pre-built Lapack95 and Blas95 libraries, in which case the source codes and a makefile were provided from which you would need to build the libraries yourself.&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Fri, 09 Dec 2011 17:05:27 GMT</pubDate>
    <dc:creator>mecej4</dc:creator>
    <dc:date>2011-12-09T17:05:27Z</dc:date>
    <item>
      <title>Link Advisor Problem</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781827#M1531</link>
      <description>&lt;P&gt;To Whom It May Concern,&lt;BR /&gt;&lt;BR /&gt;I have a problem with the MKL library. I cannot compile my file and it seems that the MKL is not properly linked. I followed the steps to include the additinal dependencies: MKL\\bin and the MKL\\library\\intel64 files but I get the following error message:&lt;/P&gt;&lt;P&gt;Error 1 error LNK2019: unresolved external symbol _DGESV_MKL95 referenced in function _HP_MATRIX tools.obj &lt;/P&gt;&lt;P&gt;Error 2 error LNK2019: unresolved external symbol _DGESV1_MKL95 referenced in function _NEWTON tools.obj &lt;/P&gt;&lt;P&gt;Error 3 error LNK2019: unresolved external symbol _ZGGES_MKL95 referenced in function _SCHUR_SOLVE_OLD tools.obj &lt;/P&gt;&lt;P&gt;Error 4 error LNK2019: unresolved external symbol _ZGESV_MKL95 referenced in function _SCHUR_SOLVE_OLD tools.obj &lt;/P&gt;&lt;P&gt;Error 5 error LNK2019: unresolved external symbol _DGGES_MKL95 referenced in function _SCHUR_SECOND_ORDER_OLD tools.obj &lt;/P&gt;&lt;P&gt;Error 6 error LNK2019: unresolved external symbol _DTGSYL_MKL95 referenced in function _SCHUR_SECOND_ORDER_OLD tools.obj &lt;/P&gt;&lt;P&gt;Error 7 error LNK2019: unresolved external symbol _DGETRF_MKL95 referenced in function _DET tools.obj &lt;/P&gt;&lt;P&gt;Error 8 error LNK2019: unresolved external symbol _DSYEV_MKL95 referenced in function _NEWTON_DFP tools.obj &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I am running the Intel fortran 10.0. with the MKL 10.3. on the 64 bit machine. I used the following linker settings:&lt;BR /&gt;&lt;BR /&gt;mkl_lapack95_ilp64.lib mkl_intel_ilp64_dll.lib mkl_sequential_dll.lib mkl_core_dll.lib&lt;BR /&gt;&lt;BR /&gt;I appreciate any help!!!!!!&lt;BR /&gt;&lt;BR /&gt;Best,&lt;BR /&gt;steingre&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Dec 2011 23:56:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781827#M1531</guid>
      <dc:creator>steingre</dc:creator>
      <dc:date>2011-12-05T23:56:41Z</dc:date>
    </item>
    <item>
      <title>Link Advisor Problem</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781828#M1532</link>
      <description>The name decoration for the missing externals (e.g., _DGETRF_MKL95) suggest that you are trying to link 32-bit objects with 64-bit libraries. The routine name in mkl_lapack95_ilp64.lib, for example, is DGETRF_MKL95.</description>
      <pubDate>Tue, 06 Dec 2011 01:09:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781828#M1532</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2011-12-06T01:09:00Z</dc:date>
    </item>
    <item>
      <title>Link Advisor Problem</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781829#M1533</link>
      <description>Thank you very much for your help.&lt;BR /&gt;&lt;BR /&gt;However, I do not understand what I should correct.&lt;BR /&gt;&lt;BR /&gt;I am runningthe code on a Windows 64 bit machine and I use the following command to access the lapack&lt;BR /&gt;&lt;BR /&gt;&lt;P&gt;use mkl95_lapack, only : GETRF&lt;/P&gt;&lt;P&gt;call GETRF(a, IPIV=ipiv, INFO=info)&lt;BR /&gt;&lt;BR /&gt;I think that this is correct since it works on my 32 bit machine.&lt;BR /&gt;&lt;BR /&gt;You are right in that I have troubles running the code on a 64 bit machine.&lt;BR /&gt;&lt;BR /&gt;Now, you mention that I link 32 objects with a 64 bit library. So how can I change my 32 bit libraries to 64 bit libraries? What do I do wrong?&lt;BR /&gt;&lt;BR /&gt;i tried to put the 32 bit links to access 32 bit librariesbut it won't work.&lt;BR /&gt;&lt;BR /&gt;I appreciate your help!!!&lt;BR /&gt;&lt;BR /&gt;Best,&lt;BR /&gt;steingre&lt;/P&gt;</description>
      <pubDate>Tue, 06 Dec 2011 17:01:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781829#M1533</guid>
      <dc:creator>steingre</dc:creator>
      <dc:date>2011-12-06T17:01:32Z</dc:date>
    </item>
    <item>
      <title>Link Advisor Problem</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781830#M1534</link>
      <description>Since we do not know what/how you compiled and attempted to link, it is difficult to say why the linking failed.&lt;BR /&gt;&lt;BR /&gt;Here is an example that someone posted to this forum some time ago.&lt;BR /&gt;&lt;PRE&gt;[fortran]program invert
use mkl95_lapack,only : getrf,getri
implicit none
integer, parameter :: N = 7
integer :: i,j
real, dimension(N,N) :: A = &amp;amp;
  (/ 1.0658,   -0.6313, 0.0000, 0.0000, 0.0000, 0.0000, 0.0000, &amp;amp;
   -0.6313, 4.2632,  -1.8940, 0.0000, 0.0000, 0.0000, 0.0000, &amp;amp;
  0.0000,  -1.8940, 8.5265,  -3.1567, 0.0000, 0.0000, 0.0000, &amp;amp;
  0.0000, 0.0000,  -3.1567,  23.2603,  -3.6892, 0.0000, 0.0000, &amp;amp;
  0.0000, 0.0000, 0.0000,  -3.6892,  37.5680 , -4.8192, 0.0000, &amp;amp;
  0.0000, 0.0000, 0.0000, 0.0000,  -4.8192,  47.5467,  -5.9492, &amp;amp;
  0.0000, 0.0000, 0.0000, 0.0000, 0.0000,  -5.9492,  57.5255 /)
integer, dimension(N) :: piv
integer :: info

call getrf( a, piv, info )
call getri( a, piv, info )
write(*,10)((a(i,j),j=1,N),i=1,N)
stop

10 format(1x,7F12.6)
end program invert
[/fortran]&lt;/PRE&gt; Compiling:&lt;BR /&gt;&lt;BR /&gt;&lt;PRE&gt;[bash]s:lang&amp;gt; ifort /Qmkl getrf.f90 mkl_lapack95_lp64.lib
[/bash]&lt;/PRE&gt; &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 06 Dec 2011 18:25:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781830#M1534</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2011-12-06T18:25:08Z</dc:date>
    </item>
    <item>
      <title>Link Advisor Problem</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781831#M1535</link>
      <description>&lt;DIV&gt;I proceeded the following way:&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;First, I set the environment variables:&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;!--StartFragment--&gt;&lt;SPAN style="white-space: pre;"&gt;	&lt;/SPAN&gt;intel64\mklvars_intel64.bat&lt;!--EndFragment--&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Then, I set up MS Visual Studio.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;I include the following files in the solution explorer:&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="white-space: pre;"&gt;	&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="white-space: pre;"&gt;	&lt;/SPAN&gt;the lapack.f90 file from the folder: "C:\Program Files\Intel\Composer XE 2011 SP1\mkl\include" &lt;SPAN style="white-space: pre;"&gt;	&lt;/SPAN&gt;together with my own Fortran Files.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;TABLE class="hor-minimalist-b-tab"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD colspan="2" width="100%" class="post_content"&gt;&lt;P&gt;Then, I did the following:&lt;/P&gt;&lt;P&gt;Select
Configuration Properties &amp;gt; Fortran &amp;gt; General. In the right-hand part of
the window, select Additional Include Directories &amp;gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-weight: bold; white-space: pre;"&gt;		&lt;/SPAN&gt;C:\Program Files\Intel\Composer XE
2011 SP1\mkl include&lt;/P&gt;&lt;P&gt;Select Configuration Properties &amp;gt; Fortran &amp;gt;
Preprocessor. In the right-hand part of the window, select Preprocess Source
File &amp;gt; Yes (default is No).&lt;/P&gt;&lt;P&gt;Select Configuration Properties &amp;gt; Linker &amp;gt;
General. In the right-hand part of the window, select Additional Library
Directories &amp;gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="white-space: pre;"&gt;		&lt;/SPAN&gt;C:\Program Files\Intel\Composer XE
2011 SP1\mkl\lib\intel64&lt;/P&gt;&lt;P&gt;Select Configuration Properties &amp;gt; Linker &amp;gt;
Input. In the right-hand part of the window, select Additional Dependencies and
type the libraries required.I put the following link:&lt;SPAN style="font-family: Verdana, Arial, Helvetica, sans-serif; line-height: normal;"&gt;&lt;SPAN style="white-space: pre;"&gt;	&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;TABLE class="hor-minimalist-b-tab"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD colspan="2" width="100%" class="post_content"&gt;&lt;P&gt;mkl_lapack95_ilp64.lib mkl_intel_ilp64_dll.lib mkl_sequential_dll.lib mkl_core_dll.lib&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;DIV&gt;That's the way I compiled it.&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;I guess the command would be:&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;ifort lapack.f90 myfiles.f90 plus the links&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 06 Dec 2011 19:23:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781831#M1535</guid>
      <dc:creator>steingre</dc:creator>
      <dc:date>2011-12-06T19:23:18Z</dc:date>
    </item>
    <item>
      <title>Link Advisor Problem</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781832#M1536</link>
      <description>Did you select the target as x64 (instead of win32)?&lt;BR /&gt;&lt;BR /&gt;If you use libraries named *ilp*.lib, you need to compile your sources with INTEGER*8 or with the -i8 option.&lt;BR /&gt;</description>
      <pubDate>Wed, 07 Dec 2011 03:17:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781832#M1536</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2011-12-07T03:17:10Z</dc:date>
    </item>
    <item>
      <title>Link Advisor Problem</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781833#M1537</link>
      <description>Thank you very much for your suggestion. I indeed forgot to set x64 as target. However, I have new error messages that I do not understand. I still compile with the same options. Here are the messages:&lt;BR /&gt;&lt;BR /&gt;Error1 error LNK2019: unresolved external symbol for_array_copy_in referenced in function ZGGES_F95mkl_lapack95_ilp64.lib&lt;BR /&gt;Error2 error LNK2001: unresolved external symbol for_array_copy_inmkl_lapack95_ilp64.lib&lt;BR /&gt;Error3 error LNK2001: unresolved external symbol for_array_copy_inmkl_lapack95_ilp64.lib&lt;BR /&gt;Error4 error LNK2019: unresolved external symbol for_array_copy_out referenced in function ZGGES_F95mkl_lapack95_ilp64.lib&lt;BR /&gt;Error5 error LNK2001: unresolved external symbol for_array_copy_outmkl_lapack95_ilp64.lib&lt;BR /&gt;Error6 error LNK2001: unresolved external symbol for_array_copy_outmkl_lapack95_ilp64.lib&lt;BR /&gt;Error7 fatal error LNK1120: 2 unresolved externalsx64\Debug\steingre.exe&lt;BR /&gt;&lt;BR /&gt;Do you have any idea what I am doing wrong now?&lt;BR /&gt;&lt;BR /&gt;I also will try the sample you gave me and see what I get. Let you know soon!&lt;BR /&gt;&lt;BR /&gt;Best,&lt;BR /&gt;steingre&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 07 Dec 2011 21:21:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781833#M1537</guid>
      <dc:creator>steingre</dc:creator>
      <dc:date>2011-12-07T21:21:27Z</dc:date>
    </item>
    <item>
      <title>Link Advisor Problem</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781834#M1538</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I ran the sample you gave me and it works!&lt;BR /&gt;&lt;BR /&gt;But I do not know why this one works and the other not????&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Best,&lt;BR /&gt;steingre</description>
      <pubDate>Wed, 07 Dec 2011 21:31:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781834#M1538</guid>
      <dc:creator>steingre</dc:creator>
      <dc:date>2011-12-07T21:31:40Z</dc:date>
    </item>
    <item>
      <title>Link Advisor Problem</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781835#M1539</link>
      <description>The undefined externals are in the standard Fortran runtime, e.g., libifcoremd.lib. Check your build log to see why this library was not searched after the MKL libraries were scanned.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 08 Dec 2011 02:43:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781835#M1539</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2011-12-08T02:43:15Z</dc:date>
    </item>
    <item>
      <title>Link Advisor Problem</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781836#M1540</link>
      <description>This is the output of the log buildfile:&lt;BR /&gt;&lt;BR /&gt;&lt;P&gt;------ Build started: Project: CG2, Configuration: Debug|x64 ------&lt;/P&gt;&lt;P&gt;Linking...&lt;/P&gt;&lt;P&gt;Link /OUT:"x64\Debug\CG2.exe" /INCREMENTAL:NO /NOLOGO /LIBPATH:"C:\Program Files (x86)\Intel\Composer XE 2011 SP1\mkl\lib\intel64" /MANIFEST /MANIFESTFILE:"C:\Fortran\CG\CG2\CG2\x64\debug\cg2.exe.intermediate.manifest" /DEBUG /PDB:"C:\Fortran\CaG\CG2\CG2\x64\debug\cg2.pdb" /SUBSYSTEM:CONSOLE mkl_lapack95_lp64.lib mkl_intel_lp64_dll.lib mkl_sequential_dll.lib mkl_core_dll.lib "x64\Debug\nlpqlp.obj" "x64\Debug\ql.obj" "x64\Debug\nlpqly.obj" "x64\Debug\numerical_recipes.obj" "x64\Debug\lapack.obj" "x64\Debug\tools.obj" "x64\Debug\model3.obj"&lt;/P&gt;&lt;P&gt;Link: executing 'link'&lt;/P&gt;&lt;P&gt;mkl_lapack95_lp64.lib(zgges.obj) : error LNK2019: unresolved external symbol for_array_copy_in referenced in function ZGGES_F95&lt;/P&gt;&lt;P&gt;mkl_lapack95_lp64.lib(dgges.obj) : error LNK2001: unresolved external symbol for_array_copy_in&lt;/P&gt;&lt;P&gt;mkl_lapack95_lp64.lib(dtgsyl.obj) : error LNK2001: unresolved external symbol for_array_copy_in&lt;/P&gt;&lt;P&gt;mkl_lapack95_lp64.lib(zgges.obj) : error LNK2019: unresolved external symbol for_array_copy_out referenced in function ZGGES_F95&lt;/P&gt;&lt;P&gt;mkl_lapack95_lp64.lib(dgges.obj) : error LNK2001: unresolved external symbol for_array_copy_out&lt;/P&gt;&lt;P&gt;mkl_lapack95_lp64.lib(dtgsyl.obj) : error LNK2001: unresolved external symbol for_array_copy_out&lt;/P&gt;&lt;P&gt;x64\Debug\CG2.exe : fatal error LNK1120: 2 unresolved externals&lt;/P&gt;&lt;P&gt;CG2 - 7 error(s), 0 warning(s)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Can you tell me what should I correct? What do I miss here?&lt;BR /&gt;&lt;BR /&gt;It is bizarre that the example you sent works and my code not...&lt;BR /&gt;&lt;BR /&gt;Again, I appreciate really your help! &lt;BR /&gt;&lt;BR /&gt;Best,&lt;BR /&gt;Steingre&lt;/P&gt;</description>
      <pubDate>Thu, 08 Dec 2011 22:58:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781836#M1540</guid>
      <dc:creator>steingre</dc:creator>
      <dc:date>2011-12-08T22:58:18Z</dc:date>
    </item>
    <item>
      <title>Link Advisor Problem</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781837#M1541</link>
      <description>I do not know what the problem may be but, based on one of the earlier posts in this thread, if you do not mind, please try this: CLEAN the project and then REBUILD. &lt;BR /&gt;&lt;BR /&gt;If that does not work, please add the &lt;I&gt;/verbose&lt;/I&gt; option to the linker command line, REBUILD, and report the linker output as you did above.&lt;BR /&gt;</description>
      <pubDate>Fri, 09 Dec 2011 11:39:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781837#M1541</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2011-12-09T11:39:28Z</dc:date>
    </item>
    <item>
      <title>Link Advisor Problem</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781838#M1542</link>
      <description>&lt;DIV&gt;Instead of cleaning the project, I made a new project and it does not work either.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;I'll try the verbose option&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;By the way, it is not a problem that I am using INTEL FORTRAN compiler 10.0. and MKL 10.3.? Are they compatible? I could not find information on compatibility...&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Best,&lt;/DIV&gt;&lt;DIV&gt;steingre&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 09 Dec 2011 14:00:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781838#M1542</guid>
      <dc:creator>steingre</dc:creator>
      <dc:date>2011-12-09T14:00:31Z</dc:date>
    </item>
    <item>
      <title>Link Advisor Problem</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781839#M1543</link>
      <description>It appears that your newer MKL libraries are calling run-time functions which may not be present in the library installation of the older ifort.&lt;BR /&gt;To my knowledge, the only information given on this subject is that the run-time libraries are tested for compatibility with the previous major compiler release. That would imply that the latest MKL would work with the 11.0 compiler, if you updated the libraries to those supplied with the 12.0 compiler. The 12.0 libraries would not have been tested with the 10.0 compiler, but it is possible they may work.</description>
      <pubDate>Fri, 09 Dec 2011 14:16:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781839#M1543</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2011-12-09T14:16:57Z</dc:date>
    </item>
    <item>
      <title>Link Advisor Problem</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781840#M1544</link>
      <description>Thank you for your advice.&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;I have a subscription with intel for the 10.0. compiler. Do you mean that I would need to buy the 11.0. version?&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;In fact, I have only a trial version of the MKL 10.3. in order to test a program. Do you know which previous version of the MKL is compatible with the Intel Fortran Compiler 10.0. version?&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;I appreciate your help!&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Best,&lt;/DIV&gt;&lt;DIV&gt;steingre&lt;/DIV&gt;</description>
      <pubDate>Fri, 09 Dec 2011 14:40:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781840#M1544</guid>
      <dc:creator>steingre</dc:creator>
      <dc:date>2011-12-09T14:40:50Z</dc:date>
    </item>
    <item>
      <title>Link Advisor Problem</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781841#M1545</link>
      <description>The oldest MKL visible to me for download is 10.0, which I think was issued with ifort 10.1, so ought to work with ifort 10.0.</description>
      <pubDate>Fri, 09 Dec 2011 15:27:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781841#M1545</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2011-12-09T15:27:56Z</dc:date>
    </item>
    <item>
      <title>Link Advisor Problem</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781842#M1546</link>
      <description>If you have the 10.0 compiler (2008?), you may, indeed, have problems getting it to work with the current MKL library. Note that the current version is 12.1, not the 11.0 version that you mentioned.&lt;BR /&gt;&lt;BR /&gt;You have to decide whether to upgrade the compiler, or to download an older version of MKL. Note that the 10.0 version of MKL probably did not come with pre-built Lapack95 and Blas95 libraries, in which case the source codes and a makefile were provided from which you would need to build the libraries yourself.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 09 Dec 2011 17:05:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781842#M1546</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2011-12-09T17:05:27Z</dc:date>
    </item>
    <item>
      <title>Link Advisor Problem</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781843#M1547</link>
      <description>Thank you for your reply. I know that the 11.0. version is running with MKL 10.3. Of course, if I have to upgrade then I can upgrade straight to the newsest version...&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;I'lll try the 10.0. version and see whether it works or not! However, thank you very much for all the help!&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Best,&lt;/DIV&gt;&lt;DIV&gt;steingre&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 09 Dec 2011 17:59:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781843#M1547</guid>
      <dc:creator>steingre</dc:creator>
      <dc:date>2011-12-09T17:59:58Z</dc:date>
    </item>
    <item>
      <title>Link Advisor Problem</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781844#M1548</link>
      <description>Steingre,&lt;DIV&gt;one note:&lt;DIV&gt;Compiler version 11.0 bundled with MKL 10.1.*&lt;/DIV&gt;&lt;DIV&gt;                11.1 ......................... 10.2.*&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="white-space: pre;"&gt;			&lt;/SPAN&gt;    12.1 ......................... 10.3.*&lt;/DIV&gt;&lt;DIV&gt;please check the latest versions as Tim and mecej4 have already recommended.&lt;/DIV&gt;&lt;DIV&gt;--Gennady&lt;/DIV&gt;&lt;DIV&gt;&lt;B&gt;&lt;BR /&gt;&lt;/B&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 09 Dec 2011 19:52:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Link-Advisor-Problem/m-p/781844#M1548</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2011-12-09T19:52:19Z</dc:date>
    </item>
  </channel>
</rss>

