<?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 MKL usually lives up to its in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/advice-needed-to-port-to-MKL/m-p/921190#M12989</link>
    <description>MKL usually lives up to its claim of performance at least equal to other libraries, including use of lower level optimizations where there is sufficient demand.  There is a list of which functions are planned for parallelization.  
IMSL uses MKL in some cases, when you would expect it to perform nearly as well as MKL.  In other cases, you might expect IMSL to give you just the performance produced by the Fortran compiler, probably not parallelized.  I don't think IMSL will give you detailed information on this.
If you were to perform detailed performance testing of your application and could show that MKL didn't give the best achievable performance, if you were willing to post the entire reproducer in an issue on your premier.intel.com, there's a fair chance of getting expert attention to the question.
Evidently, the advantage MKL can give by parallelization inside its functions depends on the characteristics of your application and hardware platform, and whether you apply parallelism outside the MKL or IMSL calls.</description>
    <pubDate>Wed, 10 Oct 2012 18:13:36 GMT</pubDate>
    <dc:creator>TimP</dc:creator>
    <dc:date>2012-10-10T18:13:36Z</dc:date>
    <item>
      <title>advice needed to port to MKL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/advice-needed-to-port-to-MKL/m-p/921187#M12986</link>
      <description>&lt;P&gt;We want to port a former project that was written in Fortran and using imsl_dll.dll into C++, and are thinking about using the Math Kernel Library. &lt;BR /&gt; &lt;BR /&gt; Is the Math Kernel Library correct for us? Are there any particular aspects to which we should pay special attention? (functionality coverage, performance...) We used in the old project mostly fft functions on 2D and 3D matrices (c_fast_dft and z_fast_dft), dcmplx / cmplx, plus linear least square problem function.&amp;nbsp; What are the equivalent functions in the MKL?&lt;BR /&gt; In addition we will need in the new project spline functions. &lt;BR /&gt; &lt;BR /&gt; We are not sure which version of the imsl was used in the old project, we only possess the source code of the project, and no fortran compiler, only the run-time imsl_dll.dll, which unfortunately does not contain version information. But the dependency libraries are as follows (for Windows x64): &lt;BR /&gt; imsl_dll.dll 26,8 MB &lt;BR /&gt; libifcoremd.dll v. 10.0.101.101 &lt;BR /&gt; libmmd.dll v. 10.0.10.2 &lt;BR /&gt; libifportmd.dll v. 10.0.101.101 &lt;BR /&gt; libguide40.dll v. 4.0.2007.313&lt;I&gt; &lt;BR /&gt; &lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&lt;I&gt;&lt;BR /&gt; &lt;/I&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Wed, 10 Oct 2012 11:38:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/advice-needed-to-port-to-MKL/m-p/921187#M12986</guid>
      <dc:creator>RayWare_R_</dc:creator>
      <dc:date>2012-10-10T11:38:36Z</dc:date>
    </item>
    <item>
      <title>You'd need to look up the</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/advice-needed-to-port-to-MKL/m-p/921188#M12987</link>
      <description>You'd need to look up the functionality of the IMSL functions (there appear to be versions of the manual on line) and compare with the MKL documentation to judge the feasibility of conversion.
My own suggestion would be to make the change using ifort before committing to the C++ conversion, and then to make the changes incrementally.  It looks feasible; the MKL functions may be called according to C header files as well as in accordance with Fortran USE declarations.
The specific libraries you mention were last used in Intel 10.0 compilers, but current compilers include upward compatible ones.</description>
      <pubDate>Wed, 10 Oct 2012 12:20:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/advice-needed-to-port-to-MKL/m-p/921188#M12987</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2012-10-10T12:20:27Z</dc:date>
    </item>
    <item>
      <title>Yes a step by step change is</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/advice-needed-to-port-to-MKL/m-p/921189#M12988</link>
      <description>Yes a step by step change is probably the best way to investigate. As far as I can see from the docs the functionality that we use is supported by both the imsl and the Math Kernel Library. But we are unsure about the performance, and if anyone has some experience in this area we would appreciate any info.</description>
      <pubDate>Wed, 10 Oct 2012 14:22:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/advice-needed-to-port-to-MKL/m-p/921189#M12988</guid>
      <dc:creator>RayWare_R_</dc:creator>
      <dc:date>2012-10-10T14:22:17Z</dc:date>
    </item>
    <item>
      <title>MKL usually lives up to its</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/advice-needed-to-port-to-MKL/m-p/921190#M12989</link>
      <description>MKL usually lives up to its claim of performance at least equal to other libraries, including use of lower level optimizations where there is sufficient demand.  There is a list of which functions are planned for parallelization.  
IMSL uses MKL in some cases, when you would expect it to perform nearly as well as MKL.  In other cases, you might expect IMSL to give you just the performance produced by the Fortran compiler, probably not parallelized.  I don't think IMSL will give you detailed information on this.
If you were to perform detailed performance testing of your application and could show that MKL didn't give the best achievable performance, if you were willing to post the entire reproducer in an issue on your premier.intel.com, there's a fair chance of getting expert attention to the question.
Evidently, the advantage MKL can give by parallelization inside its functions depends on the characteristics of your application and hardware platform, and whether you apply parallelism outside the MKL or IMSL calls.</description>
      <pubDate>Wed, 10 Oct 2012 18:13:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/advice-needed-to-port-to-MKL/m-p/921190#M12989</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2012-10-10T18:13:36Z</dc:date>
    </item>
    <item>
      <title>OK thanks for the info.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/advice-needed-to-port-to-MKL/m-p/921191#M12990</link>
      <description>OK thanks for the info.</description>
      <pubDate>Thu, 11 Oct 2012 09:48:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/advice-needed-to-port-to-MKL/m-p/921191#M12990</guid>
      <dc:creator>RayWare_R_</dc:creator>
      <dc:date>2012-10-11T09:48:29Z</dc:date>
    </item>
  </channel>
</rss>

