<?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>Thema "mkl_dfti.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-dfti-h-No-such-file-or-directory/m-p/929388#M13619</link>
    <description>&lt;P&gt;I installed ipp library successfully setting its environment paths as described in the manual and finally ran a program with:&lt;/P&gt;
&lt;P&gt;# gcc -o main main.c -I /opt/intel/ipp/include -L /opt/intel/ipp/lib/ia32 -lippi -lipps -lippcore -lpthread -lm&lt;/P&gt;
&lt;P&gt;Ok. Now I installed MKL and described in the manual. It only mentioned to run the install.sh, I did that and it is installed inside /opt/intel&lt;/P&gt;
&lt;P&gt;When I run a program including mkl_dfti.h header file however, I get the following error:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;# g++ -o main FFT_64f.cpp -I /opt/intel/ipp/include -L /opt/intel/ipp/lib/ia32 -lippi -lipps -lippcore -lpthread -lm&lt;BR /&gt;In file included from FFT_64f.cpp:2:0:&lt;BR /&gt;FFT_64f.h:4:22: fatal error: mkl_dfti.h: No such file or directory&lt;BR /&gt;compilation terminated.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;How can I link with MKL to run the program?&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 15 Sep 2013 12:08:07 GMT</pubDate>
    <dc:creator>Saman_T_</dc:creator>
    <dc:date>2013-09-15T12:08:07Z</dc:date>
    <item>
      <title>mkl_dfti.h: No such file or directory</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-dfti-h-No-such-file-or-directory/m-p/929388#M13619</link>
      <description>&lt;P&gt;I installed ipp library successfully setting its environment paths as described in the manual and finally ran a program with:&lt;/P&gt;
&lt;P&gt;# gcc -o main main.c -I /opt/intel/ipp/include -L /opt/intel/ipp/lib/ia32 -lippi -lipps -lippcore -lpthread -lm&lt;/P&gt;
&lt;P&gt;Ok. Now I installed MKL and described in the manual. It only mentioned to run the install.sh, I did that and it is installed inside /opt/intel&lt;/P&gt;
&lt;P&gt;When I run a program including mkl_dfti.h header file however, I get the following error:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;# g++ -o main FFT_64f.cpp -I /opt/intel/ipp/include -L /opt/intel/ipp/lib/ia32 -lippi -lipps -lippcore -lpthread -lm&lt;BR /&gt;In file included from FFT_64f.cpp:2:0:&lt;BR /&gt;FFT_64f.h:4:22: fatal error: mkl_dfti.h: No such file or directory&lt;BR /&gt;compilation terminated.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;How can I link with MKL to run the program?&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 15 Sep 2013 12:08:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-dfti-h-No-such-file-or-directory/m-p/929388#M13619</guid>
      <dc:creator>Saman_T_</dc:creator>
      <dc:date>2013-09-15T12:08:07Z</dc:date>
    </item>
    <item>
      <title>Just as you used the options</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-dfti-h-No-such-file-or-directory/m-p/929389#M13620</link>
      <description>&lt;P&gt;Just as you used the options [bash]-I /opt/intel/ipp/include -lipp[/bash] to use IPP, you need options similar to[bash]-I /opt/intel/mkl/include -lmkl_rt[/bash]. Since MKL has more combinations of 4-byte and 8-byte integer libraries, you may need to consult the MKL Link Line Advisor.to find the options that match your needs.&lt;/P&gt;</description>
      <pubDate>Sun, 15 Sep 2013 15:35:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-dfti-h-No-such-file-or-directory/m-p/929389#M13620</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2013-09-15T15:35:57Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-dfti-h-No-such-file-or-directory/m-p/929390#M13621</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;You needs to add the include path, library path, and MKL libraries into the command line.&amp;nbsp; For example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; g++ -o main -I /opt/intel/mkl/include&amp;nbsp; FFT_64f.cpp -L /opt/intel/composer_xe_2013.5.192/mkl/lib/ia32&amp;nbsp; -lmkl_rt&lt;/P&gt;
&lt;P&gt;Thanks,&lt;BR /&gt;Chao&lt;/P&gt;</description>
      <pubDate>Mon, 16 Sep 2013 03:32:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-dfti-h-No-such-file-or-directory/m-p/929390#M13621</guid>
      <dc:creator>Chao_Y_Intel</dc:creator>
      <dc:date>2013-09-16T03:32:30Z</dc:date>
    </item>
  </channel>
</rss>

