<?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 actually dsecnd() is wrapper in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/computation-time-for-1024-pt-complex-FFT-using-MKL-FFT/m-p/960118#M15836</link>
    <description>actually dsecnd() is wrapper for __rdtsc, therefore customer can use this timing routine even for this short intervals too.</description>
    <pubDate>Sat, 01 Dec 2012 02:31:49 GMT</pubDate>
    <dc:creator>Gennady_F_Intel</dc:creator>
    <dc:date>2012-12-01T02:31:49Z</dc:date>
    <item>
      <title>computation time for 1024 pt complex FFT using MKL_FFT</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/computation-time-for-1024-pt-complex-FFT-using-MKL-FFT/m-p/960115#M15833</link>
      <description>&lt;P&gt;HI,&lt;/P&gt;
&lt;P&gt;i have been evaluating FFT of MKL.while computing , FFT takes approx. 1 milisecond which is too high.&lt;/P&gt;
&lt;P&gt;i'm using following part of code to measure time of fft computation.&lt;/P&gt;
&lt;P&gt;s_initial=dsecnd();&lt;/P&gt;
&lt;P&gt;fft computation;&lt;/P&gt;
&lt;P&gt;s_elapsed=dsecnd()-s_initial;&lt;/P&gt;
&lt;P&gt;printf("time in milisec=%f",s_elapsed*1000);&lt;/P&gt;
&lt;P&gt;can any one tell me how to reduce time compuation time gurther.&lt;/P&gt;
&lt;P&gt;i'm using intel processor.&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Thu, 29 Nov 2012 04:30:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/computation-time-for-1024-pt-complex-FFT-using-MKL-FFT/m-p/960115#M15833</guid>
      <dc:creator>rakesh</dc:creator>
      <dc:date>2012-11-29T04:30:58Z</dc:date>
    </item>
    <item>
      <title>This size FFT *computation*</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/computation-time-for-1024-pt-complex-FFT-using-MKL-FFT/m-p/960116#M15834</link>
      <description>This size FFT *computation* should take on the order of 10 microseconds.
If timing includes the planning/commit time, then it will take longer, of course.
Yet, 1 millisecond is very large. 

Dima</description>
      <pubDate>Fri, 30 Nov 2012 12:48:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/computation-time-for-1024-pt-complex-FFT-using-MKL-FFT/m-p/960116#M15834</guid>
      <dc:creator>Dmitry_B_Intel</dc:creator>
      <dc:date>2012-11-30T12:48:30Z</dc:date>
    </item>
    <item>
      <title>Timing such short intervals</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/computation-time-for-1024-pt-complex-FFT-using-MKL-FFT/m-p/960117#M15835</link>
      <description>Timing such short intervals is impractical in Fortran on Windows.  It's possible but ugly to interface with QueryPerformanceCounter (less ugly, call a C function invoking __rdtsc()).
Under linux, I would suggest system_clock with integer(8) arguments.</description>
      <pubDate>Fri, 30 Nov 2012 14:32:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/computation-time-for-1024-pt-complex-FFT-using-MKL-FFT/m-p/960117#M15835</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2012-11-30T14:32:59Z</dc:date>
    </item>
    <item>
      <title>actually dsecnd() is wrapper</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/computation-time-for-1024-pt-complex-FFT-using-MKL-FFT/m-p/960118#M15836</link>
      <description>actually dsecnd() is wrapper for __rdtsc, therefore customer can use this timing routine even for this short intervals too.</description>
      <pubDate>Sat, 01 Dec 2012 02:31:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/computation-time-for-1024-pt-complex-FFT-using-MKL-FFT/m-p/960118#M15836</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2012-12-01T02:31:49Z</dc:date>
    </item>
    <item>
      <title>Thanks a lot .</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/computation-time-for-1024-pt-complex-FFT-using-MKL-FFT/m-p/960119#M15837</link>
      <description>Thanks a lot .</description>
      <pubDate>Sat, 01 Dec 2012 05:55:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/computation-time-for-1024-pt-complex-FFT-using-MKL-FFT/m-p/960119#M15837</guid>
      <dc:creator>rakesh</dc:creator>
      <dc:date>2012-12-01T05:55:27Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/computation-time-for-1024-pt-complex-FFT-using-MKL-FFT/m-p/960120#M15838</link>
      <description>Hi,
earlier i was calculating for only one iteration once i increased the no of iteration from one to 100 the calculation time reduced in the order of microsecond. now i get computation time around 0.02 ms(approx) for 1024 pt complex FFT.</description>
      <pubDate>Mon, 03 Dec 2012 12:42:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/computation-time-for-1024-pt-complex-FFT-using-MKL-FFT/m-p/960120#M15838</guid>
      <dc:creator>rakesh</dc:creator>
      <dc:date>2012-12-03T12:42:52Z</dc:date>
    </item>
    <item>
      <title>Quote:rakesh wrote:</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/computation-time-for-1024-pt-complex-FFT-using-MKL-FFT/m-p/960121#M15839</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;rakesh wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Hi,&lt;BR /&gt; earlier i was calculating for only one iteration once i increased the no of iteration from one to 100 the calculation time reduced in the order of microsecond. now i get computation time around 0.02 ms(approx) for 1024 pt complex FFT.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;
&lt;P&gt;While measuring time needed to complete 4096 sine values FFT routine I got ~121245 nanoseconds i.e 121 microseconds.Compiler intrinsic __rdtsc() was used and averaged.I hope that time interval needed to complete the FFT calculation was not influenced by the rdtsc latency which is thousand times slower. &lt;/P&gt;</description>
      <pubDate>Sat, 12 Jan 2013 18:41:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/computation-time-for-1024-pt-complex-FFT-using-MKL-FFT/m-p/960121#M15839</guid>
      <dc:creator>Bernard</dc:creator>
      <dc:date>2013-01-12T18:41:09Z</dc:date>
    </item>
  </channel>
</rss>

