<?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: Re:Possible to provide BLAS64 and LAPACK64 shared libraries in MKL? in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Possible-to-provide-BLAS64-and-LAPACK64-shared-libraries-in-MKL/m-p/1226059#M30296</link>
    <description>&lt;P&gt;Oh, it seems someone (khoros?) already opened a request with my topic here.&lt;/P&gt;
&lt;P&gt;Thanks a lot for your advice.&lt;/P&gt;
&lt;P&gt;I'll wait for them to reply.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Aisha&lt;/P&gt;</description>
    <pubDate>Fri, 06 Nov 2020 13:14:27 GMT</pubDate>
    <dc:creator>__aisha_h</dc:creator>
    <dc:date>2020-11-06T13:14:27Z</dc:date>
    <item>
      <title>Possible to provide BLAS64 and LAPACK64 shared libraries in MKL?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Possible-to-provide-BLAS64-and-LAPACK64-shared-libraries-in-MKL/m-p/1225786#M30287</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; I am currently managing the BLAS and LAPACK libraries for Gentoo linux and MKL is an alternative provider for the BLAS and LAPACK libraries.&lt;/P&gt;
&lt;P&gt;Currently the reference version is moving towards providing the BLAS64 and LAPACK64 libraries as well&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/Reference-LAPACK/lapack/pull/462" target="_blank"&gt;https://github.com/Reference-LAPACK/lapack/pull/462&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;This would mean that it will be possible to have BLAS and BLAS64 (and other) libraries present side by side.&lt;/P&gt;
&lt;P&gt;Currently MKL does not provide separate libraries for BLAS64 and LAPACK64, the method relies on definite -DILP64 during compile time.&lt;/P&gt;
&lt;P&gt;I wanted request creation of separate libraries (like the static ones have) which have the 64 bit API instead of defining a compile time variable.&lt;/P&gt;
&lt;P&gt;The simplest solution (according to me, please feel free to provide any alternatives) would be to create a second library: libmkl_rt64.so, which contains the 64bit API of the C/BLAS,LAPACK/E functions.&lt;/P&gt;
&lt;P&gt;This would create a lot less confusion and should also be backwards compatible with all the other libraries.&lt;/P&gt;
&lt;P&gt;Thanks a lot,&lt;/P&gt;
&lt;P&gt;Aisha&lt;/P&gt;</description>
      <pubDate>Thu, 05 Nov 2020 17:01:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Possible-to-provide-BLAS64-and-LAPACK64-shared-libraries-in-MKL/m-p/1225786#M30287</guid>
      <dc:creator>__aisha_h</dc:creator>
      <dc:date>2020-11-05T17:01:44Z</dc:date>
    </item>
    <item>
      <title>Re:Possible to provide BLAS64 and LAPACK64 shared libraries in MKL?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Possible-to-provide-BLAS64-and-LAPACK64-shared-libraries-in-MKL/m-p/1225937#M30291</link>
      <description>&lt;P&gt; &lt;SPAN style="font-family: Arial, sans-serif;"&gt;interesting request, but defining the &lt;/SPAN&gt;-DMKL_ILP64 or I8 compiler&lt;/P&gt;&lt;P&gt;option adds some much more flexibility. Adding the new 64 static/dynamic libs will dramatically increase the mkl’s package size. &lt;/P&gt;&lt;P&gt;Though, You may try to submit the feature request to the official Intel Online Service Center.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 06 Nov 2020 03:34:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Possible-to-provide-BLAS64-and-LAPACK64-shared-libraries-in-MKL/m-p/1225937#M30291</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2020-11-06T03:34:41Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Possible to provide BLAS64 and LAPACK64 shared libraries in MKL?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Possible-to-provide-BLAS64-and-LAPACK64-shared-libraries-in-MKL/m-p/1226033#M30294</link>
      <description>&lt;P&gt;The static 64 bit libraries already exist. The following are already shipped within the library:&lt;/P&gt;
&lt;P&gt;libmkl_blas95_ilp64.a, libmkl_blas95_lp64.a, libmkl_lapack95_ilp64.a, libmkl_lapack95_lp64.a&lt;/P&gt;
&lt;P&gt;So it should be possible to also have the shared one doing the same.&lt;/P&gt;
&lt;P&gt;One of the major reasons for doing this is the BLAS/LAPACK switch mechanism in Debian and Gentoo:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://wiki.debian.org/DebianScience/LinearAlgebraLibraries" target="_blank"&gt;https://wiki.debian.org/DebianScience/LinearAlgebraLibraries&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://wiki.gentoo.org/wiki/Blas-lapack-switch" target="_blank"&gt;https://wiki.gentoo.org/wiki/Blas-lapack-switch&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;It allows packages compiled with the reference BLAS/LAPACK implementation to use Intels MKL at runtime just by switching library links.&lt;/P&gt;
&lt;P&gt;Allowing this mechanism for the 64 bit libraries would be a really nice benefit.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Aisha&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Nov 2020 11:17:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Possible-to-provide-BLAS64-and-LAPACK64-shared-libraries-in-MKL/m-p/1226033#M30294</guid>
      <dc:creator>__aisha_h</dc:creator>
      <dc:date>2020-11-06T11:17:04Z</dc:date>
    </item>
    <item>
      <title>Re:Possible to provide BLAS64 and LAPACK64 shared libraries in MKL?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Possible-to-provide-BLAS64-and-LAPACK64-shared-libraries-in-MKL/m-p/1226048#M30295</link>
      <description>&lt;P&gt;please follow this link &lt;A href="https://supporttickets.intel.com/servicecenter?lang=en-US" target="_blank"&gt;https://supporttickets.intel.com/servicecenter?lang=en-US&lt;/A&gt; &lt;/P&gt;&lt;P&gt;and submit the Feature Request there.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 06 Nov 2020 12:24:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Possible-to-provide-BLAS64-and-LAPACK64-shared-libraries-in-MKL/m-p/1226048#M30295</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2020-11-06T12:24:12Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Possible to provide BLAS64 and LAPACK64 shared libraries in MKL?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Possible-to-provide-BLAS64-and-LAPACK64-shared-libraries-in-MKL/m-p/1226059#M30296</link>
      <description>&lt;P&gt;Oh, it seems someone (khoros?) already opened a request with my topic here.&lt;/P&gt;
&lt;P&gt;Thanks a lot for your advice.&lt;/P&gt;
&lt;P&gt;I'll wait for them to reply.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Aisha&lt;/P&gt;</description>
      <pubDate>Fri, 06 Nov 2020 13:14:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Possible-to-provide-BLAS64-and-LAPACK64-shared-libraries-in-MKL/m-p/1226059#M30296</guid>
      <dc:creator>__aisha_h</dc:creator>
      <dc:date>2020-11-06T13:14:27Z</dc:date>
    </item>
    <item>
      <title>Re:Possible to provide BLAS64 and LAPACK64 shared libraries in MKL?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Possible-to-provide-BLAS64-and-LAPACK64-shared-libraries-in-MKL/m-p/1226077#M30298</link>
      <description>&lt;P&gt;The issue is closing and we will no longer respond to this thread.&amp;nbsp;If you require additional assistance from Intel, please start a new thread.&amp;nbsp;Any further interaction in this thread will be considered community only.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 06 Nov 2020 14:24:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Possible-to-provide-BLAS64-and-LAPACK64-shared-libraries-in-MKL/m-p/1226077#M30298</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2020-11-06T14:24:08Z</dc:date>
    </item>
  </channel>
</rss>

