<?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:Using MKL 2023.0.0.20221201 with Eigen in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-MKL-2023-0-0-20221201-with-Eigen/m-p/1444226#M34127</link>
    <description>&lt;P&gt;Yes, this is under Linux (Fedora 37 specifically), the only other dependency is Eigen (&lt;A href="https://gitlab.com/libeigen/eigen" target="_blank"&gt;https://gitlab.com/libeigen/eigen&lt;/A&gt;).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think my specific question is: Why can I not use MKL_INTERFACE=lp64 with icpx?&lt;/P&gt;</description>
    <pubDate>Thu, 05 Jan 2023 17:50:14 GMT</pubDate>
    <dc:creator>ChristophJunghans</dc:creator>
    <dc:date>2023-01-05T17:50:14Z</dc:date>
    <item>
      <title>Using MKL 2023.0.0.20221201 with Eigen</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-MKL-2023-0-0-20221201-with-Eigen/m-p/1443573#M34113</link>
      <description>&lt;P&gt;Using Intel's `icpx` with recent MKL and Eigen 3.4.0 leads to a compiler error:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="none"&gt;/opt/intel/oneapi/compiler/latest/linux/bin/icpx -isystem /usr/include/eigen3 -isystem /opt/intel/oneapi/mkl/2023.0.0/include -DMKL_ILP64 -MD -MT CMakeFiles/dummy.dir/main.cpp.o -MF CMakeFiles/dummy.dir/main.cpp.o.d -o CMakeFiles/dummy.dir/main.cpp.o -c /home/votca/mkl_test/main.cpp
In file included from /home/votca/mkl_test/main.cpp:2:
In file included from /usr/include/eigen3/Eigen/Eigen:1:
In file included from /usr/include/eigen3/Eigen/Dense:4:
In file included from /usr/include/eigen3/Eigen/QR:45:
/usr/include/eigen3/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h:85:1: error: cannot initialize a variable of type 'long long *' with an rvalue of type 'Scalar *' (aka 'int *')
EIGEN_LAPACKE_QR_COLPIV(double, double, d, ColMajor, LAPACK_COL_MAJOR)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~&lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;This is with:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN&gt;Operating System: Linux / Fedora 37&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;Architecture : x86_64&lt;/LI&gt;
&lt;LI&gt;Eigen Version : 3.4.0&lt;/LI&gt;
&lt;LI&gt;Compiler Version: Intel(R) oneAPI DPC++/C++ Compiler 2023.0.0 (2023.0.0.20221201)&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;One can reproduce this in the following small example, having "main.cpp" as&lt;/P&gt;
&lt;LI-CODE lang="cpp"&gt;#define EIGEN_USE_MKL_ALL
#include &amp;lt;Eigen/Eigen&amp;gt;

int main() {
return 0;
}&lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;with a "CMakeLists.txt" like:&lt;/P&gt;
&lt;LI-CODE lang="none"&gt;cmake_minimum_required(VERSION 3.14)
project(foo CXX)
find_package(Eigen3)
find_package(MKL)
add_executable(dummy main.cpp)
target_link_libraries(dummy Eigen3::Eigen MKL::MKL)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Steps to reproduce:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;SPAN&gt;`docker run -it ghcr.io/votca/buildenv/fedora:intel`&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;create `CMakeLists.txt` and `main.cpp` from the code above&lt;/LI&gt;
&lt;LI&gt;`CXX=icpx cmake -B builddir &amp;amp;&amp;amp; cmake --build builddir --verbose`&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Instead of the docker container one can also use stock Fedora 37 install `mkl` and `icpx`:&lt;/P&gt;
&lt;LI-CODE lang="none"&gt;printf "[oneAPI]\nname=Intel oneAPI\nbaseurl=https://yum.repos.intel.com/oneapi\nenabled=1\ngpgcheck=1\nrepo_gpgcheck=1\ngpgkey=https://yum.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB" &amp;gt; /etc/yum.repos.d/intel-oneapi.repo
dnf -y update
dnf -y install intel-oneapi-compiler-dpcpp-cpp intel-oneapi-compiler-dpcpp-cpp-and-cpp-classic intel-oneapi-mkl-devel&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-sourcepos="1:1-1:207"&gt;I think the problem is &lt;CODE&gt;-DMKL_ILP64&lt;/CODE&gt; i.e. the &lt;CODE&gt;ILP64&lt;/CODE&gt; interface. Using the &lt;CODE&gt;LP64&lt;/CODE&gt; interface manually works. GCC uses that interface by default, however for &lt;CODE&gt;icpx&lt;/CODE&gt; &lt;CODE&gt;ILP64&lt;/CODE&gt; is the only option that CMake allows.&lt;/P&gt;
&lt;P data-sourcepos="3:1-3:53"&gt;So I think this might be a bug in MKL's CMake config.&lt;/P&gt;
&lt;P data-sourcepos="3:1-3:53"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-sourcepos="3:1-3:53"&gt;Also see:&amp;nbsp;&lt;A href="https://gitlab.com/libeigen/eigen/-/issues/2586" target="_blank"&gt;https://gitlab.com/libeigen/eigen/-/issues/2586&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Jan 2023 18:41:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-MKL-2023-0-0-20221201-with-Eigen/m-p/1443573#M34113</guid>
      <dc:creator>ChristophJunghans</dc:creator>
      <dc:date>2023-01-03T18:41:17Z</dc:date>
    </item>
    <item>
      <title>Re:Using MKL 2023.0.0.20221201 with Eigen</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-MKL-2023-0-0-20221201-with-Eigen/m-p/1444221#M34126</link>
      <description>&lt;P&gt;Hi Christophs,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks for posting on Intel Communities.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Could you please let us know if the below command is run on linux environment with icpx compiler and mkl being setup throw the error mentioned("cannot initialize a variable of type 'long long *'") or do we need to have any other dependencies?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;'CMakeLists.txt` and `main.cpp` from the code mentioned earlier and running the command `CXX=icpx cmake -B builddir &amp;amp;&amp;amp; cmake --build builddir --verbose`&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Shanmukh.SS&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 05 Jan 2023 17:39:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-MKL-2023-0-0-20221201-with-Eigen/m-p/1444221#M34126</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-01-05T17:39:33Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Using MKL 2023.0.0.20221201 with Eigen</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-MKL-2023-0-0-20221201-with-Eigen/m-p/1444226#M34127</link>
      <description>&lt;P&gt;Yes, this is under Linux (Fedora 37 specifically), the only other dependency is Eigen (&lt;A href="https://gitlab.com/libeigen/eigen" target="_blank"&gt;https://gitlab.com/libeigen/eigen&lt;/A&gt;).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think my specific question is: Why can I not use MKL_INTERFACE=lp64 with icpx?&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jan 2023 17:50:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-MKL-2023-0-0-20221201-with-Eigen/m-p/1444226#M34127</guid>
      <dc:creator>ChristophJunghans</dc:creator>
      <dc:date>2023-01-05T17:50:14Z</dc:date>
    </item>
    <item>
      <title>Re:Using MKL 2023.0.0.20221201 with Eigen</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-MKL-2023-0-0-20221201-with-Eigen/m-p/1446092#M34156</link>
      <description>&lt;P&gt;Hi Christoph,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Why can I not use MKL_INTERFACE=lp64 with icpx?&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt; mkl_set_interface_layer API or environment variable MKL_INTERFACE_LAYER can be used to set the interface layer for Intel® oneAPI Math Kernel Library at run time.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Please refer to the below link for more details which contains possible values depending on the system architecture and setting the interface.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.intel.com/content/www/us/en/develop/documentation/onemkl-developer-reference-c/top/support-functions/single-dynamic-library-control/mkl-set-interface-layer.html" target="_blank"&gt;https://www.intel.com/content/www/us/en/develop/documentation/onemkl-developer-reference-c/top/support-functions/single-dynamic-library-control/mkl-set-interface-layer.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;# MKL_INTERFACE (for MKL_ARCH=intel64 only)&lt;/P&gt;&lt;P&gt;# Values:&amp;nbsp;lp64, ilp64&lt;/P&gt;&lt;P&gt;# GNU or INTEL interface will be selected based on Compiler and the default is ilp64&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Shanmukh.SS&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 12 Jan 2023 13:34:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-MKL-2023-0-0-20221201-with-Eigen/m-p/1446092#M34156</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-01-12T13:34:33Z</dc:date>
    </item>
    <item>
      <title>Re: Using MKL 2023.0.0.20221201 with Eigen</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-MKL-2023-0-0-20221201-with-Eigen/m-p/1446124#M34157</link>
      <description>&lt;P&gt;Yeah, I tried that before, but for icpx mkl's CMake config restricts the interface to ilp64, so switching to lp64 is not an option.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To reproduce&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1.) create a CMakeLists.txt:&lt;/P&gt;
&lt;LI-CODE lang="none"&gt;cmake_minimum_required(VERSION 3.14)
project(foo CXX)
find_package(MKL)&lt;/LI-CODE&gt;
&lt;P&gt;2.)&amp;nbsp; run:&lt;/P&gt;
&lt;LI-CODE lang="none"&gt;CXX=icpx cmake -B builddir -DMKL_INTERFACE=lp64&lt;/LI-CODE&gt;
&lt;P&gt;3.) get an error:&lt;/P&gt;
&lt;LI-CODE lang="none"&gt;-- The CXX compiler identification is IntelLLVM 2023.0.0
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /opt/intel/oneapi/compiler/latest/linux/bin/icpx - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- MKL_ARCH: None, set to ` intel64` by default
-- MKL_ROOT /opt/intel/oneapi/mkl/2023.0.0
-- MKL_LINK: None, set to ` dynamic` by default
CMake Error at /usr/local/lib/cmake/mkl-2023.0.0/MKLConfig.cmake:103 (message):
  Invalid MKL_INTERFACE_FULL `intel_lp64`, options are: intel_ilp64
Call Stack (most recent call first):
  /usr/local/lib/cmake/mkl-2023.0.0/MKLConfig.cmake:168 (mkl_message)
  /usr/local/lib/cmake/mkl-2023.0.0/MKLConfig.cmake:296 (define_param)
  CMakeLists.txt:3 (find_package)


-- Configuring incomplete, errors occurred!&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jan 2023 16:23:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-MKL-2023-0-0-20221201-with-Eigen/m-p/1446124#M34157</guid>
      <dc:creator>ChristophJunghans</dc:creator>
      <dc:date>2023-01-12T16:23:20Z</dc:date>
    </item>
    <item>
      <title>Re:Using MKL 2023.0.0.20221201 with Eigen</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-MKL-2023-0-0-20221201-with-Eigen/m-p/1448318#M34188</link>
      <description>&lt;P&gt;Hi Christoph,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks for sharing the details. We are working on the same. We will get back to you soon with an update.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Shanmukh.SS&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 19 Jan 2023 15:21:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-MKL-2023-0-0-20221201-with-Eigen/m-p/1448318#M34188</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-01-19T15:21:06Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Using MKL 2023.0.0.20221201 with Eigen</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-MKL-2023-0-0-20221201-with-Eigen/m-p/1448342#M34189</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have "solved" the problem by adding a "${IFACE_TYPE}_lp64" to line 288 of the file "MKLConfig.cmake" (which I found in the "$HOME/lib/cmake" folder for some unknown reason. Original file is in "$MKLROOT/lib/cmake/mkl/"):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;set(MKL_INTERFACE_LIST intel_ilp64 &lt;FONT color="#FF0000"&gt;${IFACE_TYPE}_lp64&lt;/FONT&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kind regards,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Rainer&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jan 2023 16:23:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-MKL-2023-0-0-20221201-with-Eigen/m-p/1448342#M34189</guid>
      <dc:creator>RainerB</dc:creator>
      <dc:date>2023-01-19T16:23:18Z</dc:date>
    </item>
    <item>
      <title>Re: Using MKL 2023.0.0.20221201 with Eigen</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-MKL-2023-0-0-20221201-with-Eigen/m-p/1449536#M34211</link>
      <description>&lt;P&gt;Hi Christoph,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Glad to know that your issue is resolved with your workaround. If you need any additional information, please post a new question as this thread will no longer be monitored by Intel.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Shanmukh.SS&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Feb 2023 05:29:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-MKL-2023-0-0-20221201-with-Eigen/m-p/1449536#M34211</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-02-15T05:29:57Z</dc:date>
    </item>
    <item>
      <title>Re: Using MKL 2023.0.0.20221201 with Eigen</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-MKL-2023-0-0-20221201-with-Eigen/m-p/1449637#M34219</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/170714"&gt;@ShanmukhS_Intel&lt;/a&gt;&amp;nbsp;this is not really fixed unless you include&amp;nbsp;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/273304"&gt;@RainerB&lt;/a&gt;&amp;nbsp;'s patch in the mkl distribution. Could you do that?&lt;/P&gt;</description>
      <pubDate>Tue, 24 Jan 2023 15:46:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-MKL-2023-0-0-20221201-with-Eigen/m-p/1449637#M34219</guid>
      <dc:creator>ChristophJunghans</dc:creator>
      <dc:date>2023-01-24T15:46:51Z</dc:date>
    </item>
    <item>
      <title>Re: Using MKL 2023.0.0.20221201 with Eigen</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-MKL-2023-0-0-20221201-with-Eigen/m-p/1456044#M34275</link>
      <description>&lt;P&gt;Hi Christoph,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your feedback. We have provided your feedback to the relevant team. At this moment there is no visibility when it will be implemented and available for use. Please let me know if we can go ahead and close this case?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Shanmukh.SS&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Feb 2023 10:11:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-MKL-2023-0-0-20221201-with-Eigen/m-p/1456044#M34275</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-02-27T10:11:09Z</dc:date>
    </item>
    <item>
      <title>Re: Using MKL 2023.0.0.20221201 with Eigen</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-MKL-2023-0-0-20221201-with-Eigen/m-p/1491126#M34618</link>
      <description>&lt;P&gt;Doesn't look like this has ever been resolved--still fails for 2023.1.0.&lt;/P&gt;&lt;P&gt;Especially on a system that I not maintain the requires a lot of effort to by-pass this setting when using cmake.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 May 2023 09:21:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-MKL-2023-0-0-20221201-with-Eigen/m-p/1491126#M34618</guid>
      <dc:creator>nwalet</dc:creator>
      <dc:date>2023-05-30T09:21:56Z</dc:date>
    </item>
    <item>
      <title>Re: Using MKL 2023.0.0.20221201 with Eigen</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-MKL-2023-0-0-20221201-with-Eigen/m-p/1492502#M34633</link>
      <description>&lt;P&gt;I think 2023.2.0 was the target.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jun 2023 22:21:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-MKL-2023-0-0-20221201-with-Eigen/m-p/1492502#M34633</guid>
      <dc:creator>ChristophJunghans</dc:creator>
      <dc:date>2023-06-02T22:21:00Z</dc:date>
    </item>
    <item>
      <title>Re: Using MKL 2023.0.0.20221201 with Eigen</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-MKL-2023-0-0-20221201-with-Eigen/m-p/1505285#M34822</link>
      <description>&lt;P&gt;Still not fixed in 2023.2.0!&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jul 2023 02:05:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-MKL-2023-0-0-20221201-with-Eigen/m-p/1505285#M34822</guid>
      <dc:creator>ChristophJunghans</dc:creator>
      <dc:date>2023-07-17T02:05:21Z</dc:date>
    </item>
    <item>
      <title>Re: Using MKL 2023.0.0.20221201 with Eigen</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-MKL-2023-0-0-20221201-with-Eigen/m-p/1505295#M34823</link>
      <description>&lt;P&gt;I was mistaken, for icpx it says:&lt;/P&gt;&lt;P&gt;-- Invalid MKL_DPCPP_INTERFACE_FULL `intel_lp64`, options are: intel_ilp64&lt;/P&gt;&lt;P&gt;But it still seems to work.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jul 2023 02:31:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-MKL-2023-0-0-20221201-with-Eigen/m-p/1505295#M34823</guid>
      <dc:creator>ChristophJunghans</dc:creator>
      <dc:date>2023-07-17T02:31:24Z</dc:date>
    </item>
  </channel>
</rss>

