<?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: how to use mkl in linux? in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/how-to-use-mkl-in-linux/m-p/883740#M9856</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/417685"&gt;beblo33yahoo.com&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;I installed the mkl linux version package but now I want to know how can I use the libraries from the makefile in fortran?&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
Hi,&lt;BR /&gt;&lt;BR /&gt;what (exactly) do you mean? Linking your application with MKL using makefile on Linux? The following commands are needed to link and include (linker can find the libraries)&lt;BR /&gt;&lt;BR /&gt; -L&lt;MKL path=""&gt; -I&lt;MKL include=""&gt;&lt;BR /&gt;&lt;BR /&gt;MKL path usually something like /opt/intel/mkl/10.0.xxx/lib/&lt;BR /&gt;&lt;BR /&gt;then you list required libraries, say,&lt;BR /&gt;&lt;BR /&gt; -lmkl_solver_lp64, .....&lt;BR /&gt;&lt;BR /&gt;I believe a clear explanation you'll find in user's guide (chapter 5 - Linking Your Application with Intel Math Kernel Library)&lt;BR /&gt;&lt;BR /&gt;an example from there:&lt;BR /&gt;&lt;BR /&gt;static linking of user code myprog.f, parallel version of sparse solver, and parallel Intel MKL supporting LP64 interface.&lt;BR /&gt;&lt;BR /&gt;ifort myprog.f -L$MKLPATH -I$MKLINCLUDE -lmkl_solver_lp64_sequential.a&lt;BR /&gt;-Wl,--start-group $MKLPATH/libmkl_intel_lp64.a $MKLPATH/libmkl_sequential.a&lt;BR /&gt;$MKLPATH/libmkl_core.a -Wl,--end-group -lpthread&lt;BR /&gt;&lt;BR /&gt;A.&lt;BR /&gt;&lt;/MKL&gt;&lt;/MKL&gt;</description>
    <pubDate>Tue, 10 Mar 2009 10:32:13 GMT</pubDate>
    <dc:creator>ArturGuzik</dc:creator>
    <dc:date>2009-03-10T10:32:13Z</dc:date>
    <item>
      <title>how to use mkl in linux?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/how-to-use-mkl-in-linux/m-p/883739#M9855</link>
      <description>I installed the mkl linux version package but now I want to know how can I use the libraries from the makefile in fortran?</description>
      <pubDate>Tue, 10 Mar 2009 07:44:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/how-to-use-mkl-in-linux/m-p/883739#M9855</guid>
      <dc:creator>beblo33yahoo_com</dc:creator>
      <dc:date>2009-03-10T07:44:18Z</dc:date>
    </item>
    <item>
      <title>Re: how to use mkl in linux?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/how-to-use-mkl-in-linux/m-p/883740#M9856</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/417685"&gt;beblo33yahoo.com&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;I installed the mkl linux version package but now I want to know how can I use the libraries from the makefile in fortran?&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
Hi,&lt;BR /&gt;&lt;BR /&gt;what (exactly) do you mean? Linking your application with MKL using makefile on Linux? The following commands are needed to link and include (linker can find the libraries)&lt;BR /&gt;&lt;BR /&gt; -L&lt;MKL path=""&gt; -I&lt;MKL include=""&gt;&lt;BR /&gt;&lt;BR /&gt;MKL path usually something like /opt/intel/mkl/10.0.xxx/lib/&lt;BR /&gt;&lt;BR /&gt;then you list required libraries, say,&lt;BR /&gt;&lt;BR /&gt; -lmkl_solver_lp64, .....&lt;BR /&gt;&lt;BR /&gt;I believe a clear explanation you'll find in user's guide (chapter 5 - Linking Your Application with Intel Math Kernel Library)&lt;BR /&gt;&lt;BR /&gt;an example from there:&lt;BR /&gt;&lt;BR /&gt;static linking of user code myprog.f, parallel version of sparse solver, and parallel Intel MKL supporting LP64 interface.&lt;BR /&gt;&lt;BR /&gt;ifort myprog.f -L$MKLPATH -I$MKLINCLUDE -lmkl_solver_lp64_sequential.a&lt;BR /&gt;-Wl,--start-group $MKLPATH/libmkl_intel_lp64.a $MKLPATH/libmkl_sequential.a&lt;BR /&gt;$MKLPATH/libmkl_core.a -Wl,--end-group -lpthread&lt;BR /&gt;&lt;BR /&gt;A.&lt;BR /&gt;&lt;/MKL&gt;&lt;/MKL&gt;</description>
      <pubDate>Tue, 10 Mar 2009 10:32:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/how-to-use-mkl-in-linux/m-p/883740#M9856</guid>
      <dc:creator>ArturGuzik</dc:creator>
      <dc:date>2009-03-10T10:32:13Z</dc:date>
    </item>
    <item>
      <title>Re: how to use mkl in linux?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/how-to-use-mkl-in-linux/m-p/883741#M9857</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/417685"&gt;beblo33yahoo.com&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;I installed the mkl linux version package but now I want to know how can I use the libraries from the makefile in fortran?&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
As there is a forum dedicated to MKL, and this forum is dedicated to Windows, this is not the place to get advice. You must first consult the MKL notes in the docs folder, particularly if you have no idea which details you must specify when asking a question. You do need to let us know whether you are making a 32- or 64-bit build, and your intentions about 32- or 64-bit integer and floating point data types.&lt;BR /&gt;</description>
      <pubDate>Tue, 10 Mar 2009 13:08:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/how-to-use-mkl-in-linux/m-p/883741#M9857</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2009-03-10T13:08:42Z</dc:date>
    </item>
  </channel>
</rss>

