<?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 fftw from MKL in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-fftw-from-MKL/m-p/1312958#M32013</link>
    <description>&lt;P&gt;Philippe,&lt;/P&gt;
&lt;P&gt;You may also try to submit this Feature Request to the Intel Online Service Center against the MKL FFT team. They collect such FR for future consideration.&lt;/P&gt;</description>
    <pubDate>Wed, 08 Sep 2021 09:14:24 GMT</pubDate>
    <dc:creator>Gennady_F_Intel</dc:creator>
    <dc:date>2021-09-08T09:14:24Z</dc:date>
    <item>
      <title>Using fftw from MKL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-fftw-from-MKL/m-p/1311437#M31966</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have trouble with the fftw implemented in MKL. I have written a small code (attached)... Using gnu libfftw3 gives the right answer (mainly the output array is zero but for one coefficient).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However when linking with mkl, I do get a different (and probably false) result where all the array is filled.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any hint would be welcomed.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Sep 2021 13:10:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-fftw-from-MKL/m-p/1311437#M31966</guid>
      <dc:creator>PhilippeG</dc:creator>
      <dc:date>2021-09-01T13:10:47Z</dc:date>
    </item>
    <item>
      <title>Re:Using fftw from MKL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-fftw-from-MKL/m-p/1311672#M31967</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks for reaching out to us.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;&lt;I&gt;&amp;gt;I have trouble with the fftw implemented in MKL.when linking with mkl, I do get a different (and probably false) result where all the array is filled&lt;/I&gt;.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;From the code which you have attached we observed that the kind value is FFTW_R2HC.&amp;nbsp;&lt;/P&gt;&lt;P&gt;As per the documentation, there are some known limitations of FFTW3 wrappers and their usage in Intel oneAPI MKL. The only supported r2r kind values are even/odd DFTs (sine/cosine transforms).&lt;/P&gt;&lt;P&gt;Please refer the following link for details regarding usage of fft wrappers&lt;/P&gt;&lt;P&gt;&lt;A href="https://software.intel.com/content/www/us/en/develop/documentation/onemkl-developer-reference-c/top/appendix-c-fftw-interface-to-intel-math-kernel-library/fftw3-interface-to-intel-oneapi-math-kernel-library/using-fftw3-wrappers.html" target="_blank"&gt;https://software.intel.com/content/www/us/en/develop/documentation/onemkl-developer-reference-c/top/appendix-c-fftw-interface-to-intel-math-kernel-library/fftw3-interface-to-intel-oneapi-math-kernel-library/using-fftw3-wrappers.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;So we suggest you to try with the supported kind value while implementing with mkl and see if it works.&lt;/P&gt;&lt;P&gt;You can also refer fftw examples which are installed in oneAPI directory under mkl folder.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vidya.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 02 Sep 2021 07:57:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-fftw-from-MKL/m-p/1311672#M31967</guid>
      <dc:creator>VidyalathaB_Intel</dc:creator>
      <dc:date>2021-09-02T07:57:03Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Using fftw from MKL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-fftw-from-MKL/m-p/1312957#M32012</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks for the answer. It seems that, indeed, the problem lies with the use of FFTW_R2HC. However that is really the kind of transform I need, so I guess I have to use the gnu fftw version and not MKL.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Philippe&lt;/P&gt;</description>
      <pubDate>Wed, 08 Sep 2021 09:09:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-fftw-from-MKL/m-p/1312957#M32012</guid>
      <dc:creator>PhilippeG</dc:creator>
      <dc:date>2021-09-08T09:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Using fftw from MKL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-fftw-from-MKL/m-p/1312958#M32013</link>
      <description>&lt;P&gt;Philippe,&lt;/P&gt;
&lt;P&gt;You may also try to submit this Feature Request to the Intel Online Service Center against the MKL FFT team. They collect such FR for future consideration.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Sep 2021 09:14:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-fftw-from-MKL/m-p/1312958#M32013</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2021-09-08T09:14:24Z</dc:date>
    </item>
    <item>
      <title>Re:Using fftw from MKL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-fftw-from-MKL/m-p/1314386#M32046</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Glad to know that your issue is resolved.&lt;/P&gt;&lt;P&gt;As the issue is resolved we will no longer monitor this thread. Please post a new question if you need any additional assistance from intel.&lt;/P&gt;&lt;P&gt;Have a good day!&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vidya.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 14 Sep 2021 09:07:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-fftw-from-MKL/m-p/1314386#M32046</guid>
      <dc:creator>VidyalathaB_Intel</dc:creator>
      <dc:date>2021-09-14T09:07:44Z</dc:date>
    </item>
  </channel>
</rss>

