<?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: Please help on linking intel mkl library with intel compile in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Please-help-on-linking-intel-mkl-library-with-intel-compiler/m-p/894561#M10772</link>
    <description>&lt;P&gt;&lt;FONT face="Verdana" color="#a52a2a" size="2"&gt;as an additional info, b&lt;/FONT&gt;&lt;FONT face="Verdana" color="#a52a2a" size="2"&gt;elow I 've providedthe example how you can link your program with lapack functionality:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Verdana" color="#a52a2a" size="2"&gt;ifort -w test_lapack.f /opt/intel/mkl/10.1.012/lib/32/libmkl_intel.a -Wl,--start-group /opt/intel/mkl/10.1.012/lib/32/libmkl_intel_thread.a /opt/intel/mkl/10.1.012/lib/32/libmkl_core.a -Wl,--end-group -L/opt/intel/mkl/10.1.012/lib/32 -liomp5 -lpthread -o test_lapack.out&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Verdana" color="#a52a2a" size="2"&gt;I hope it helps you.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Verdana" color="#a52a2a" size="2"&gt;Regards,&lt;/FONT&gt;&lt;FONT face="Verdana" color="#a52a2a" size="2"&gt;Gennady&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 03 Sep 2008 08:35:31 GMT</pubDate>
    <dc:creator>Gennady_F_Intel</dc:creator>
    <dc:date>2008-09-03T08:35:31Z</dc:date>
    <item>
      <title>Please help on linking intel mkl library with intel compiler</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Please-help-on-linking-intel-mkl-library-with-intel-compiler/m-p/894559#M10770</link>
      <description>Hi:&lt;BR /&gt;I have just installed intel compiler for linux 10.1.012 with intel math library kernel 10.0.1.014 on Mozilla red hat fedora core. I am just a beginner in linux as well as programming on linux. I want to use GMRES from intel math library to solve a system of linear systems. &lt;BR /&gt;&lt;BR /&gt;I just dont know what is the method in layman's words to link the libraries with the intel compiler. I have read the user guide and stuff on this linking but it is over my head. Do i have to link at the command prompt or i can use 'use' statements in the code itself. &lt;BR /&gt;&lt;BR /&gt;Can somebody give me a simple example on how to link certain libraries with compiler.&lt;BR /&gt;&lt;BR /&gt;I would really appreciate your timely help.&lt;BR /&gt;&lt;BR /&gt;Best Regards&lt;BR /&gt;FB&lt;BR /&gt;</description>
      <pubDate>Fri, 29 Aug 2008 16:08:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Please-help-on-linking-intel-mkl-library-with-intel-compiler/m-p/894559#M10770</guid>
      <dc:creator>fahad_butt</dc:creator>
      <dc:date>2008-08-29T16:08:20Z</dc:date>
    </item>
    <item>
      <title>Re: Please help on linking intel mkl library with intel compile</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Please-help-on-linking-intel-mkl-library-with-intel-compiler/m-p/894560#M10771</link>
      <description>USE statements show the compiler where to get interface blocks so as to perform syntax checking on your library function calls. They are important, but they don't take care of defining libraries for linking.&lt;BR /&gt;I hesitate to give an over-simplified example of linking which may not work for you. Read the instructions, and head their advice to beginners not to mix static and dynamic linking. You need to know whether you are using a 32- or 64-bit compiler.&lt;BR /&gt;</description>
      <pubDate>Fri, 29 Aug 2008 16:35:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Please-help-on-linking-intel-mkl-library-with-intel-compiler/m-p/894560#M10771</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2008-08-29T16:35:26Z</dc:date>
    </item>
    <item>
      <title>Re: Please help on linking intel mkl library with intel compile</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Please-help-on-linking-intel-mkl-library-with-intel-compiler/m-p/894561#M10772</link>
      <description>&lt;P&gt;&lt;FONT face="Verdana" color="#a52a2a" size="2"&gt;as an additional info, b&lt;/FONT&gt;&lt;FONT face="Verdana" color="#a52a2a" size="2"&gt;elow I 've providedthe example how you can link your program with lapack functionality:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Verdana" color="#a52a2a" size="2"&gt;ifort -w test_lapack.f /opt/intel/mkl/10.1.012/lib/32/libmkl_intel.a -Wl,--start-group /opt/intel/mkl/10.1.012/lib/32/libmkl_intel_thread.a /opt/intel/mkl/10.1.012/lib/32/libmkl_core.a -Wl,--end-group -L/opt/intel/mkl/10.1.012/lib/32 -liomp5 -lpthread -o test_lapack.out&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Verdana" color="#a52a2a" size="2"&gt;I hope it helps you.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Verdana" color="#a52a2a" size="2"&gt;Regards,&lt;/FONT&gt;&lt;FONT face="Verdana" color="#a52a2a" size="2"&gt;Gennady&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Sep 2008 08:35:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Please-help-on-linking-intel-mkl-library-with-intel-compiler/m-p/894561#M10772</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2008-09-03T08:35:31Z</dc:date>
    </item>
  </channel>
</rss>

