<?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 I have checked how your test in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/FFT-not-working-for-N-2048/m-p/977901#M17199</link>
    <description>&lt;P&gt;I have checked how your test works on my side. intel64 bit. staic linking.&amp;nbsp;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;I have sligthly changed the example to set the mkl_version () and some error status verification.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;See the output below.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Major version: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 11&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Minor version: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Update version: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2&lt;/P&gt;

&lt;P&gt;Product Status: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Product&lt;/P&gt;

&lt;P&gt;Major version: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 11&lt;/P&gt;

&lt;P&gt;Major version: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 11&lt;/P&gt;

&lt;P&gt;Build: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;&amp;lt; Version.Build &amp;lt;&amp;lt;&lt;/P&gt;

&lt;P&gt;Processor optimization: &amp;nbsp;Intel(R) Advanced Vector Extensions (Intel(R) AVX) enabled processors&lt;/P&gt;

&lt;P&gt;================================================================&lt;/P&gt;

&lt;P&gt;Init&lt;BR /&gt;
	FFT 1024&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 0 nChannels == 1024&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 1 nChannels == 1024&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 2 nChannels == 1024&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 3 nChannels == 1024&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 4 nChannels == 1024&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 5 nChannels == 1024&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 6 nChannels == 1024&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 7 nChannels == 1024&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 8 nChannels == 1024&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 9 nChannels == 1024&lt;BR /&gt;
	FFT 2048&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 0 nChannels == 2048&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 1 nChannels == 2048&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 2 nChannels == 2048&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 3 nChannels == 2048&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 4 nChannels == 2048&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 5 nChannels == 2048&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 6 nChannels == 2048&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 7 nChannels == 2048&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 8 nChannels == 2048&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 9 nChannels == 2048&lt;BR /&gt;
	Finished!&lt;BR /&gt;
	Press any key to continue . . .&lt;/P&gt;</description>
    <pubDate>Fri, 11 Apr 2014 07:31:25 GMT</pubDate>
    <dc:creator>Gennady_F_Intel</dc:creator>
    <dc:date>2014-04-11T07:31:25Z</dc:date>
    <item>
      <title>FFT not working for N=2048</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/FFT-not-working-for-N-2048/m-p/977899#M17197</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;

&lt;P&gt;I have a problem with mkl FFT. It stops working without a hint for N=2048.&lt;/P&gt;

&lt;P&gt;Here is my implementation:&lt;/P&gt;

&lt;PRE class="brush:cpp;"&gt;	MKL_LONG status;
	int nThreads = omp_get_num_threads();
	int th=0;

	DFTI_DESCRIPTOR_HANDLE handle = 0;
	status=DftiCreateDescriptor(&amp;amp;handle, DFTI_SINGLE, DFTI_COMPLEX,1,(MKL_LONG) nChannels);
	status=DftiSetValue(handle, DFTI_PLACEMENT, DFTI_INPLACE);
	status=DftiSetValue (handle, DFTI_NUMBER_OF_USER_THREADS, nThreads);
	status=DftiCommitDescriptor(handle);	
	#pragma omp parallel for shared(nChannels,nThreads, input) private(th)
	for (th = 0; th &amp;lt; nSpectra; th++) {
		DftiComputeForward(handle, &amp;amp;input[th*nChannels]);
	}
	DftiFreeDescriptor(&amp;amp;handle);&lt;/PRE&gt;

&lt;P&gt;where N=nChannels. It works fine for N=1024 as well as for N=1536. All statuses are zero until&amp;nbsp; DftiComputeForward which stops and will not end.&lt;/P&gt;

&lt;P&gt;Thanks.&lt;BR /&gt;
	&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Apr 2014 22:10:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/FFT-not-working-for-N-2048/m-p/977899#M17197</guid>
      <dc:creator>Ignac_A_</dc:creator>
      <dc:date>2014-04-10T22:10:43Z</dc:date>
    </item>
    <item>
      <title>I should probably produce</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/FFT-not-working-for-N-2048/m-p/977900#M17198</link>
      <description>&lt;P&gt;I should probably produce some small code which does this so here it is:&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Apr 2014 22:29:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/FFT-not-working-for-N-2048/m-p/977900#M17198</guid>
      <dc:creator>Ignac_A_</dc:creator>
      <dc:date>2014-04-10T22:29:47Z</dc:date>
    </item>
    <item>
      <title>I have checked how your test</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/FFT-not-working-for-N-2048/m-p/977901#M17199</link>
      <description>&lt;P&gt;I have checked how your test works on my side. intel64 bit. staic linking.&amp;nbsp;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;I have sligthly changed the example to set the mkl_version () and some error status verification.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;See the output below.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Major version: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 11&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Minor version: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Update version: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2&lt;/P&gt;

&lt;P&gt;Product Status: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Product&lt;/P&gt;

&lt;P&gt;Major version: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 11&lt;/P&gt;

&lt;P&gt;Major version: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 11&lt;/P&gt;

&lt;P&gt;Build: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;&amp;lt; Version.Build &amp;lt;&amp;lt;&lt;/P&gt;

&lt;P&gt;Processor optimization: &amp;nbsp;Intel(R) Advanced Vector Extensions (Intel(R) AVX) enabled processors&lt;/P&gt;

&lt;P&gt;================================================================&lt;/P&gt;

&lt;P&gt;Init&lt;BR /&gt;
	FFT 1024&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 0 nChannels == 1024&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 1 nChannels == 1024&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 2 nChannels == 1024&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 3 nChannels == 1024&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 4 nChannels == 1024&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 5 nChannels == 1024&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 6 nChannels == 1024&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 7 nChannels == 1024&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 8 nChannels == 1024&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 9 nChannels == 1024&lt;BR /&gt;
	FFT 2048&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 0 nChannels == 2048&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 1 nChannels == 2048&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 2 nChannels == 2048&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 3 nChannels == 2048&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 4 nChannels == 2048&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 5 nChannels == 2048&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 6 nChannels == 2048&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 7 nChannels == 2048&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 8 nChannels == 2048&lt;BR /&gt;
	status DftiComputeForward == 0 #Spectra == 9 nChannels == 2048&lt;BR /&gt;
	Finished!&lt;BR /&gt;
	Press any key to continue . . .&lt;/P&gt;</description>
      <pubDate>Fri, 11 Apr 2014 07:31:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/FFT-not-working-for-N-2048/m-p/977901#M17199</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2014-04-11T07:31:25Z</dc:date>
    </item>
  </channel>
</rss>

