<?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:mkl.h no such file or directory in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-h-no-such-file-or-directory/m-p/1577397#M35886</link>
    <description>&lt;P&gt;Thanks for the update.&lt;/P&gt;&lt;BR /&gt;</description>
    <pubDate>Mon, 04 Mar 2024 02:17:13 GMT</pubDate>
    <dc:creator>Mahan</dc:creator>
    <dc:date>2024-03-04T02:17:13Z</dc:date>
    <item>
      <title>mkl.h no such file or directory</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-h-no-such-file-or-directory/m-p/1574922#M35867</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;I'm interested in compiling some code to be compatible with intel MKL.&amp;nbsp;&lt;BR /&gt;The code I'm compiling is Trilinos.&lt;BR /&gt;&lt;BR /&gt;I've set my variables with vars.sh&lt;/P&gt;&lt;P&gt;I'm using cmake with the following options related to the MKL tool.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;-DPardiso_MKL_LIBRARY_DIRS="/opt/intel/oneapi/mkl/2024.0/lib" \&lt;BR /&gt;-DTPL_ENABLE_MKL=ON \&lt;BR /&gt;-DTPL_MKL_LIBRARIES="-qmkl=parallel;-static-intel" \&lt;BR /&gt;-DTPL_MKL_INCLUDE_DIRS="$MKLROOT/include" \&lt;BR /&gt;-DTPL_ENABLE_PARDISO_MKL=ON \&lt;BR /&gt;-DTPL_PARDISO_MKL_LIBRARIES="-qmkl=parallel;-static-intel" \&lt;BR /&gt;-DTPL_PARDISO_MKL_INCLUDE_DIRS="$MKLROOT/include" \&lt;BR /&gt;-DAmesos_ENABLE_PARDISO_MKL=ON \&lt;BR /&gt;-DTPL_BLAS_LIBRARIES="-qmkl=parallel;-static-intel" \&lt;BR /&gt;-DTPL_BLAS_INCLUDE_DIRS="$MKLROOT/include" \&lt;BR /&gt;-DTPL_LAPACK_LIBRARIES="-qmkl=parallel;-static-intel" \&lt;BR /&gt;-DTPL_LAPACK_INCLUDE_DIRS="$MKLROOT/include" \&lt;BR /&gt;-m64 -Wl,--start-group ${MKLROOT}/lib/intel64/libmkl_intel_ilp64.a ${MKLROOT}/lib/intel64/libmkl_intel_thread.a ${MKLROOT}/lib/intel64/libmkl_core.a ${MKLROOT}/lib/intel64/libmkl_blacs_openmpi_ilp64.a -Wl,--end-group -liomp5 -lpthread -lm -ldl \&lt;BR /&gt;&lt;BR /&gt;The last line is generated from the&amp;nbsp;&lt;SPAN&gt;Intel® oneAPI Math Kernel Library (oneMKL) Link Line Advisor v6.23 .&lt;BR /&gt;&lt;BR /&gt;When I try to make the program I get this error in one of the .cpp files.&amp;nbsp;&lt;BR /&gt;fatal error: mkl.h: No such file or directory&lt;BR /&gt;# include &amp;lt;mkl.h&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Any help would be greatly appreciated.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Eddy&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Feb 2024 19:37:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-h-no-such-file-or-directory/m-p/1574922#M35867</guid>
      <dc:creator>eddywu</dc:creator>
      <dc:date>2024-02-23T19:37:34Z</dc:date>
    </item>
    <item>
      <title>Re:mkl.h no such file or directory</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-h-no-such-file-or-directory/m-p/1576852#M35884</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Could you please try once with oneAPI setvarsh.sh instead of the varsh.sh just to make sure all the necessary dependencies are in the path.&lt;/LI&gt;&lt;LI&gt;Also, could you please also set the following compiler option:&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;           &amp;nbsp;-DMKL_ILP64&amp;nbsp;-I"${MKLROOT}/include"&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 01 Mar 2024 03:29:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-h-no-such-file-or-directory/m-p/1576852#M35884</guid>
      <dc:creator>Mahan</dc:creator>
      <dc:date>2024-03-01T03:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: mkl.h no such file or directory</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-h-no-such-file-or-directory/m-p/1577069#M35885</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;Thanks for getting back to me. I figured out the issue. My program required some library files, which were not downloaded. I needed to do&amp;nbsp;&lt;BR /&gt;yum &lt;SPAN class=""&gt;install&lt;/SPAN&gt; -y intel-oneapi-mkl-devel&lt;/P&gt;&lt;P&gt;Afterwards, I no longer ran into this issue.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Mar 2024 17:11:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-h-no-such-file-or-directory/m-p/1577069#M35885</guid>
      <dc:creator>eddywu</dc:creator>
      <dc:date>2024-03-01T17:11:32Z</dc:date>
    </item>
    <item>
      <title>Re:mkl.h no such file or directory</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-h-no-such-file-or-directory/m-p/1577397#M35886</link>
      <description>&lt;P&gt;Thanks for the update.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 04 Mar 2024 02:17:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-h-no-such-file-or-directory/m-p/1577397#M35886</guid>
      <dc:creator>Mahan</dc:creator>
      <dc:date>2024-03-04T02:17:13Z</dc:date>
    </item>
  </channel>
</rss>

