<?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 MKL FFT and FFTW in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-FFT-and-FFTW/m-p/1040734#M20698</link>
    <description>&lt;P&gt;Does the MKL Library use FFTW internally?&lt;/P&gt;

&lt;P&gt;If there are other facilities as well, are there anmy limitations in the radixes?&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 16 Jun 2014 09:56:36 GMT</pubDate>
    <dc:creator>Stefano_S_</dc:creator>
    <dc:date>2014-06-16T09:56:36Z</dc:date>
    <item>
      <title>MKL FFT and FFTW</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-FFT-and-FFTW/m-p/1040734#M20698</link>
      <description>&lt;P&gt;Does the MKL Library use FFTW internally?&lt;/P&gt;

&lt;P&gt;If there are other facilities as well, are there anmy limitations in the radixes?&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Jun 2014 09:56:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-FFT-and-FFTW/m-p/1040734#M20698</guid>
      <dc:creator>Stefano_S_</dc:creator>
      <dc:date>2014-06-16T09:56:36Z</dc:date>
    </item>
    <item>
      <title>Dear Stefano,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-FFT-and-FFTW/m-p/1040735#M20699</link>
      <description>&lt;P&gt;Dear Stefano,&lt;/P&gt;

&lt;P&gt;MKL only provides "thin" wrappers implementing some part of FFTW2 and FFTW3&amp;nbsp;API.&lt;/P&gt;

&lt;P&gt;MKL does FFT of any lengths.&lt;/P&gt;

&lt;P&gt;MKL is optimized for sizes that are products of 2, 3, 5, 7, 11, 13.&lt;/P&gt;

&lt;P&gt;MKL achieves best performance for sizes 2^n.&lt;/P&gt;

&lt;P&gt;Thank you.&lt;/P&gt;

&lt;P&gt;Evgueni.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Jun 2014 10:05:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-FFT-and-FFTW/m-p/1040735#M20699</guid>
      <dc:creator>Evgueni_P_Intel</dc:creator>
      <dc:date>2014-06-16T10:05:23Z</dc:date>
    </item>
    <item>
      <title>Thanks Evgueni.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-FFT-and-FFTW/m-p/1040736#M20700</link>
      <description>&lt;P&gt;Thanks Evgueni.&lt;/P&gt;

&lt;P&gt;That answers completely my question.&lt;/P&gt;

&lt;P&gt;All the best&lt;/P&gt;</description>
      <pubDate>Mon, 16 Jun 2014 11:27:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-FFT-and-FFTW/m-p/1040736#M20700</guid>
      <dc:creator>Stefano_S_</dc:creator>
      <dc:date>2014-06-16T11:27:36Z</dc:date>
    </item>
    <item>
      <title>Hello  Stefano S，</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-FFT-and-FFTW/m-p/1040737#M20701</link>
      <description>&lt;P&gt;Hello&amp;nbsp; Stefano S，&lt;/P&gt;&lt;P&gt;I use vs2013+ivf2013 to&amp;nbsp; program my fortran code, The FFTW2 wrappers to Intel MKL provide the following subroutines for calling from Fortran:&lt;BR /&gt;call fftw_f77_create_plan(plan, n, dir, flags)&lt;BR /&gt;call fftw_f77(plan, howmany, in, istride, idist, out, ostride, odist)&lt;BR /&gt;call fftw_f77_one(plan, in, out)&lt;BR /&gt;call fftw_f77_threads(nthreads, plan, howmany, in, istride, idist, out, ostride, odist)&lt;BR /&gt;call fftw_f77_threads_one(nthreads, plan, in, out)&lt;BR /&gt;call fftw_f77_destroy_plan(plan)&lt;BR /&gt;call fftwnd_f77_create_plan(plan, rank, n, dir, flags)&lt;BR /&gt;call fftw2d_f77_create_plan(plan, nx, ny, dir, flags)&lt;BR /&gt;call fftw3d_f77_create_plan(plan, nx, ny, nz, dir, flags)&lt;BR /&gt;call fftwnd_f77(plan, howmany, in, istride, idist, out, ostride, odist)&lt;BR /&gt;call fftwnd_f77_one(plan, in, out)&lt;BR /&gt;call fftwnd_f77_threads(nthreads, plan, howmany, in, istride, idist, out, ostride,odist)&lt;BR /&gt;call fftwnd_f77_threads_one(nthreads, plan, in, out)&lt;/P&gt;&lt;P&gt;According to the 'FFTW Interface to Intel® Math Kernel Library', just provide the method in Linux like this:make libintel64,,,Do you know how to do in windows?&amp;nbsp; Could you tell me the details of using the above subrotines?&lt;/P&gt;&lt;P&gt;Think you very much!&lt;/P&gt;</description>
      <pubDate>Mon, 18 Mar 2019 09:19:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-FFT-and-FFTW/m-p/1040737#M20701</guid>
      <dc:creator>YUZHONG__HUI</dc:creator>
      <dc:date>2019-03-18T09:19:05Z</dc:date>
    </item>
  </channel>
</rss>

