<?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 Re: IA-32 vs Intel(R)64 Applications in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/IA-32-vs-Intel-R-64-Applications/m-p/900300#M11182</link>
    <description>&lt;DIV style="margin:0px;"&gt;How are you linking your application?&lt;BR /&gt;What MKL version are you using?&lt;/DIV&gt;
--GIF&lt;BR /&gt;</description>
    <pubDate>Thu, 19 Feb 2009 03:43:05 GMT</pubDate>
    <dc:creator>Gennady_F_Intel</dc:creator>
    <dc:date>2009-02-19T03:43:05Z</dc:date>
    <item>
      <title>IA-32 vs Intel(R)64 Applications</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/IA-32-vs-Intel-R-64-Applications/m-p/900299#M11181</link>
      <description>If I install the MKL using nmake plat=win32 lib and build an application for IA-32 architecture everything works fine.&lt;BR /&gt;If I install the MKL using nmake plat=win32e lib and build for the Intel 64 architecture I get the following linker errors:&lt;BR /&gt;&lt;BR /&gt;error LNK2019: unresolved external symbol DGESVD referenced in function DGESVD_MKL95&lt;BR /&gt;etc&lt;BR /&gt;&lt;BR /&gt;Has anyone had any experience with this process or this form of error message?&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;George&lt;BR /&gt;</description>
      <pubDate>Wed, 18 Feb 2009 23:58:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/IA-32-vs-Intel-R-64-Applications/m-p/900299#M11181</guid>
      <dc:creator>George_P_</dc:creator>
      <dc:date>2009-02-18T23:58:52Z</dc:date>
    </item>
    <item>
      <title>Re: IA-32 vs Intel(R)64 Applications</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/IA-32-vs-Intel-R-64-Applications/m-p/900300#M11182</link>
      <description>&lt;DIV style="margin:0px;"&gt;How are you linking your application?&lt;BR /&gt;What MKL version are you using?&lt;/DIV&gt;
--GIF&lt;BR /&gt;</description>
      <pubDate>Thu, 19 Feb 2009 03:43:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/IA-32-vs-Intel-R-64-Applications/m-p/900300#M11182</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2009-02-19T03:43:05Z</dc:date>
    </item>
    <item>
      <title>Re: IA-32 vs Intel(R)64 Applications</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/IA-32-vs-Intel-R-64-Applications/m-p/900301#M11183</link>
      <description>&lt;P&gt;It's really linking problem.&lt;BR /&gt;According to the MKL 10.1User Guide, Linking Applications / Linking Examples&lt;/P&gt;
&lt;P&gt;For IA32 architecture:&lt;BR /&gt;Static linking of user's code myprog.f, Fortran 95 LAPACK interface, and parallel Intel MKL supporting cdecl interface:&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;ifort myprog.f mkl_lapack95.lib mkl_intel_c.lib mkl_intel_thread.lib mkl_core.lib libiomp5md.lib&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;For Intel 64 architecture:&lt;BR /&gt;Static linking of user's code myprog.f, Fortran 95 LAPACK interface, and parallel Intel MKL supporting LP64 interface:&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;ifort myprog.f mkl_lapack95.lib mkl_intel_lp64.lib mkl_intel_thread.lib mkl_core.lib libiomp5md.lib&lt;/P&gt;
&lt;P&gt;Thanks,&lt;BR /&gt;Vladimir&lt;/P&gt;</description>
      <pubDate>Thu, 19 Feb 2009 04:07:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/IA-32-vs-Intel-R-64-Applications/m-p/900301#M11183</guid>
      <dc:creator>Vladimir_Koldakov__I</dc:creator>
      <dc:date>2009-02-19T04:07:37Z</dc:date>
    </item>
    <item>
      <title>Re: IA-32 vs Intel(R)64 Applications</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/IA-32-vs-Intel-R-64-Applications/m-p/900302#M11184</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/93629"&gt;Vladimir Koldakov (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;P&gt;It's really linking problem.&lt;BR /&gt;According to the MKL 10.1User Guide, Linking Applications / Linking Examples&lt;/P&gt;
&lt;P&gt;For IA32 architecture:&lt;BR /&gt;Static linking of user's code myprog.f, Fortran 95 LAPACK interface, and parallel Intel MKL supporting cdecl interface:&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;ifort myprog.f mkl_lapack95.lib mkl_intel_c.lib mkl_intel_thread.lib mkl_core.lib libiomp5md.lib&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;For Intel 64 architecture:&lt;BR /&gt;Static linking of user's code myprog.f, Fortran 95 LAPACK interface, and parallel Intel MKL supporting LP64 interface:&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;ifort myprog.f mkl_lapack95.lib mkl_intel_lp64.lib mkl_intel_thread.lib mkl_core.lib libiomp5md.lib&lt;/P&gt;
&lt;P&gt;Thanks,&lt;BR /&gt; Vladimir&lt;/P&gt;
&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;Vladimir&lt;BR /&gt;&lt;BR /&gt;Thanks for that - the libiomp5md.lib file and a couple of other files were not required for linking for IA-32 and I missed that&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 19 Feb 2009 05:34:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/IA-32-vs-Intel-R-64-Applications/m-p/900302#M11184</guid>
      <dc:creator>George_P_</dc:creator>
      <dc:date>2009-02-19T05:34:24Z</dc:date>
    </item>
  </channel>
</rss>

