<?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: What is the best way to improve FFT transform performance? in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/What-is-the-best-way-to-improve-FFT-transform-performance/m-p/909270#M11996</link>
    <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;BR /&gt;Hi Zhu,&lt;BR /&gt;&lt;BR /&gt;I'd suggest additioanally to what Dima wrote: use sizes whichconsistof powers of smal radixes: 2,3,5,7,11.&lt;BR /&gt;&lt;BR /&gt;-- Victor</description>
    <pubDate>Tue, 20 Oct 2009 06:44:01 GMT</pubDate>
    <dc:creator>barragan_villanueva_</dc:creator>
    <dc:date>2009-10-20T06:44:01Z</dc:date>
    <item>
      <title>What is the best way to improve FFT transform performance?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/What-is-the-best-way-to-improve-FFT-transform-performance/m-p/909267#M11993</link>
      <description>I am using DftiComputeForward. Sometimes, my matrix size happens to be two prime numbers, such as 761*769, The FFT performance is really bad compared to some smaller matrix size, such as 401*401. It is about 2 -3 times slower.&lt;BR /&gt;&lt;BR /&gt;What is the best way to improve the performance here? I have to maintain the accuracy of the result too.&lt;BR /&gt;&lt;BR /&gt;Thanks.</description>
      <pubDate>Fri, 16 Oct 2009 21:23:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/What-is-the-best-way-to-improve-FFT-transform-performance/m-p/909267#M11993</guid>
      <dc:creator>Zhu_W_Intel</dc:creator>
      <dc:date>2009-10-16T21:23:13Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to improve FFT transform performance?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/What-is-the-best-way-to-improve-FFT-transform-performance/m-p/909268#M11994</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/408277"&gt;Zhu Wang (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;I am using DftiComputeForward. Sometimes, my matrix size happens to be two prime numbers, such as 761*769, The FFT performance is really bad compared to some smaller matrix size, such as 401*401. It is about 2 -3 times slower.&lt;BR /&gt;&lt;BR /&gt;What is the best way to improve the performance here? I have to maintain the accuracy of the result too.&lt;BR /&gt;&lt;BR /&gt;Thanks.&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;Sorry, I should be more clear. I am saying when the matrix size is two prime numbers, such as 701*701, the 2D FFT performance is much worse then non-prime number matrix size, even the matrix size is bigger, such as 715*715.</description>
      <pubDate>Fri, 16 Oct 2009 21:34:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/What-is-the-best-way-to-improve-FFT-transform-performance/m-p/909268#M11994</guid>
      <dc:creator>Zhu_W_Intel</dc:creator>
      <dc:date>2009-10-16T21:34:22Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to improve FFT transform performance?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/What-is-the-best-way-to-improve-FFT-transform-performance/m-p/909269#M11995</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;BR /&gt;Hi Zhu,&lt;BR /&gt;&lt;BR /&gt;FFT is algoritmically based on factorization of the size of the transform. If the size is a composite number, an efficient algorithm is applicable which reduces the original FFT to the FFTs of thesize of the factors. If the original sizeis aprime number,less efficient algoritms are used, in particular the one that computes the FFT via the FFT of at leasttwice larger size which is non-prime. That is why you see the performance on the prime size is worse than that on non-prime. Both types of algorithms do O(n log n) operations, however. So, one way to improve performance of your application isto avoid prime size transforms.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Dima&lt;BR /&gt;</description>
      <pubDate>Mon, 19 Oct 2009 03:09:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/What-is-the-best-way-to-improve-FFT-transform-performance/m-p/909269#M11995</guid>
      <dc:creator>Dmitry_B_Intel</dc:creator>
      <dc:date>2009-10-19T03:09:16Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to improve FFT transform performance?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/What-is-the-best-way-to-improve-FFT-transform-performance/m-p/909270#M11996</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;BR /&gt;Hi Zhu,&lt;BR /&gt;&lt;BR /&gt;I'd suggest additioanally to what Dima wrote: use sizes whichconsistof powers of smal radixes: 2,3,5,7,11.&lt;BR /&gt;&lt;BR /&gt;-- Victor</description>
      <pubDate>Tue, 20 Oct 2009 06:44:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/What-is-the-best-way-to-improve-FFT-transform-performance/m-p/909270#M11996</guid>
      <dc:creator>barragan_villanueva_</dc:creator>
      <dc:date>2009-10-20T06:44:01Z</dc:date>
    </item>
  </channel>
</rss>

