<?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: Bad Results from MKL FFT with large inverse FFT in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Bad-Results-from-MKL-FFT-with-large-inverse-FFT/m-p/882578#M9731</link>
    <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
Hello,&lt;BR /&gt;&lt;BR /&gt;The following information could shed some light on this issue:&lt;BR /&gt;- what is the dimension of the transform?&lt;BR /&gt;- what are the sizes in question?&lt;BR /&gt;- how the descriptors were created and what parameters were modified via DftiSetValue?&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;-Vladimir&lt;BR /&gt;</description>
    <pubDate>Mon, 31 Aug 2009 17:30:42 GMT</pubDate>
    <dc:creator>Vladimir_Petrov__Int</dc:creator>
    <dc:date>2009-08-31T17:30:42Z</dc:date>
    <item>
      <title>Bad Results from MKL FFT with large inverse FFT</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Bad-Results-from-MKL-FFT-with-large-inverse-FFT/m-p/882577#M9730</link>
      <description>Go forward with a power of two MKL FFT single precision real to complex.&lt;BR /&gt;But do a reverse fft with also a power of two but eight times larger in size, but using a separate descriptor.&lt;BR /&gt;Program finishes but results incorrect.&lt;BR /&gt;&lt;BR /&gt;Valgrind gives this:&lt;BR /&gt;&lt;BR /&gt;==27556== Invalid write of size 4&lt;BR /&gt;==27556== at 0x9ED7FBF: ipps_initTabBitRevNorm (in /cm/apps-3.3/intel/mkl/10.0.011/lib/em64t/libmkl_def.so)&lt;BR /&gt;==27556== by 0x9F4BF28: ipps_initTabTwd_Large_32f (in /cm/apps-3.3/intel/mkl/10.0.011/lib/em64t/libmkl_def.so)&lt;BR /&gt;==27556== Address 0x4 is not stack'd, malloc'd or (recently) free'd&lt;BR /&gt;==27556== &lt;BR /&gt;&lt;BR /&gt;How does this table get overwritten?&lt;BR /&gt;</description>
      <pubDate>Mon, 31 Aug 2009 14:42:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Bad-Results-from-MKL-FFT-with-large-inverse-FFT/m-p/882577#M9730</guid>
      <dc:creator>happyIntelCamper</dc:creator>
      <dc:date>2009-08-31T14:42:54Z</dc:date>
    </item>
    <item>
      <title>Re: Bad Results from MKL FFT with large inverse FFT</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Bad-Results-from-MKL-FFT-with-large-inverse-FFT/m-p/882578#M9731</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
Hello,&lt;BR /&gt;&lt;BR /&gt;The following information could shed some light on this issue:&lt;BR /&gt;- what is the dimension of the transform?&lt;BR /&gt;- what are the sizes in question?&lt;BR /&gt;- how the descriptors were created and what parameters were modified via DftiSetValue?&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;-Vladimir&lt;BR /&gt;</description>
      <pubDate>Mon, 31 Aug 2009 17:30:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Bad-Results-from-MKL-FFT-with-large-inverse-FFT/m-p/882578#M9731</guid>
      <dc:creator>Vladimir_Petrov__Int</dc:creator>
      <dc:date>2009-08-31T17:30:42Z</dc:date>
    </item>
    <item>
      <title>Re: Bad Results from MKL FFT with large inverse FFT</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Bad-Results-from-MKL-FFT-with-large-inverse-FFT/m-p/882579#M9732</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/93654"&gt;Vladimir Petrov (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;Hi,&lt;BR /&gt;&lt;BR /&gt; Transform is 1D. Real to complex in place.&lt;BR /&gt;Forward size is 4096, and inverse fft is 16384.&lt;BR /&gt;DFTI forward&lt;BR /&gt;Status = DftiCreateDescriptor(&amp;amp;handle1, DFTI_SINGLE, DFTI_REAL, 1, fftLen1);&lt;BR /&gt;DFTI inverse&lt;BR /&gt;Status = DftiCreateDescriptor(&amp;amp;handle2, DFTI_SINGLE, DFTI_REAL, 1, fftLen2);&lt;BR /&gt;Only set value:&lt;BR /&gt;Status = DftiSetValue(&amp;amp;handle2, DFTI_BACKWARD_SCALE, Scale);&lt;BR /&gt;&lt;BR /&gt;The above problem size fails, but 2048 forward and 4 * 2048 inverse works, as well&lt;BR /&gt;as 8192 forward and 4 * 8192 inverse also works?&lt;BR /&gt;&lt;BR /&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;The following information could shed some light on this issue:&lt;BR /&gt;- what is the dimension of the transform?&lt;BR /&gt;- what are the sizes in question?&lt;BR /&gt;- how the descriptors were created and what parameters were modified via DftiSetValue?&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;-Vladimir&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;</description>
      <pubDate>Mon, 31 Aug 2009 21:39:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Bad-Results-from-MKL-FFT-with-large-inverse-FFT/m-p/882579#M9732</guid>
      <dc:creator>happyIntelCamper</dc:creator>
      <dc:date>2009-08-31T21:39:47Z</dc:date>
    </item>
    <item>
      <title>Re: Bad Results from MKL FFT with large inverse FFT</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Bad-Results-from-MKL-FFT-with-large-inverse-FFT/m-p/882580#M9733</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;BR /&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;It would be nice if you posted a self-contained example that fails as you described. I have not managed to reproduce the problem with the information you have given. &lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Dima&lt;BR /&gt;</description>
      <pubDate>Tue, 01 Sep 2009 07:20:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Bad-Results-from-MKL-FFT-with-large-inverse-FFT/m-p/882580#M9733</guid>
      <dc:creator>Dmitry_B_Intel</dc:creator>
      <dc:date>2009-09-01T07:20:04Z</dc:date>
    </item>
    <item>
      <title>Re: Bad Results from MKL FFT with large inverse FFT</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Bad-Results-from-MKL-FFT-with-large-inverse-FFT/m-p/882581#M9734</link>
      <description>&lt;SPAN style="font-size: small;"&gt;&lt;SPAN style="color: #000080;"&gt;Hi Jim,&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt; &lt;w:WordDocument&gt; &lt;w:View&gt;Normal&lt;/w:View&gt; &lt;w:Zoom&gt;0&lt;/w:Zoom&gt; &lt;w:PunctuationKerning /&gt; &lt;w:ValidateAgainstSchemas /&gt; &lt;w:SaveIfXMLInvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt; &lt;w:IgnoreMixedContent&gt;false&lt;/w:IgnoreMixedContent&gt; &lt;w:AlwaysShowPlaceholderText&gt;false&lt;/w:AlwaysShowPlaceholderText&gt; &lt;w:Compatibility&gt; &lt;w:BreakWrappedTables /&gt; &lt;w:SnapToGridInCell /&gt; &lt;w:WrapTextWithPunct /&gt; &lt;w:UseAsianBreakRules /&gt; &lt;w:DontGrowAutofit /&gt; &lt;/w:Compatibility&gt; &lt;w:BrowserLevel&gt;MicrosoftInternetExplorer4&lt;/w:BrowserLevel&gt; &lt;/w:WordDocument&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt; &lt;w:LatentStyles DefLockedState="false" LatentStyleCount="156"&gt; &lt;/w:LatentStyles&gt; &lt;/xml&gt;&lt;![endif]--&gt; &lt;!--[if gte mso 10]&gt; &lt;mce:style&gt;&lt;!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin:0in; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:"Times New Roman"; 	mso-ansi-language:#0400; 	mso-fareast-language:#0400; 	mso-bidi-language:#0400;} --&gt; &lt;!--[endif]--&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN style="font-size: small;"&gt;&lt;SPAN style="color: #000080;"&gt;&lt;SPAN style="font-family: " ms="" sans="" serif=""&gt;If i am not mistaken, i believe the similar problem was fixed in one of the latest versions. &lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN style="font-size: small;"&gt;&lt;SPAN style="color: #000080;"&gt;&lt;SPAN style="font-family: " ms="" sans="" serif=""&gt;btw - what's your linking line?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN style="color: #000080;"&gt;&lt;SPAN style="font-size: 10pt; font-family: " ms="" sans="" serif=""&gt;&lt;SPAN style="font-size: small;"&gt;&lt;SPAN style="color: #000080;"&gt;--Gennady&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN style="font-size: 10pt; font-family: " ms="" sans="" serif=""&gt; &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;</description>
      <pubDate>Tue, 01 Sep 2009 08:59:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Bad-Results-from-MKL-FFT-with-large-inverse-FFT/m-p/882581#M9734</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2009-09-01T08:59:34Z</dc:date>
    </item>
  </channel>
</rss>

