<?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:Problem with mkl FFTW in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-with-mkl-FFTW/m-p/1531111#M35259</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Many thanks for your reply. We would like to request you to use the latest version of MKL, in case you run into any other issues please feel free to create a new thread.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jilani&lt;/P&gt;&lt;BR /&gt;</description>
    <pubDate>Fri, 06 Oct 2023 11:18:04 GMT</pubDate>
    <dc:creator>IntelSupport</dc:creator>
    <dc:date>2023-10-06T11:18:04Z</dc:date>
    <item>
      <title>Problem with mkl FFTW</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-with-mkl-FFTW/m-p/1528819#M35208</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have this code to test my implementation of dft_r2c_1d. It runs perfectly fine if fft_length = 2**13, but it crashes with an Access violation in dfftw_execute_dft_r2c. I hve no idea why it orks with a length of ^2**13 but not with 2**14 and higher exponents.&lt;/P&gt;&lt;P&gt;some insight is greatly appreciated. Many thanks in advance for your help,&lt;/P&gt;&lt;P&gt;Matthias&lt;/P&gt;&lt;P&gt;************* code *****************&lt;/P&gt;&lt;P&gt;program test_fftw&lt;BR /&gt;&lt;BR /&gt;!use IFPORT&lt;BR /&gt;!use iso_fortran_env&lt;BR /&gt;&lt;BR /&gt;implicit none&lt;BR /&gt;&lt;BR /&gt;Include 'C:\Program Files (x86)\IntelSWTools\compilers_and_libraries_2020.2.254\windows\mkl\include\fftw\fftw3.f'&lt;/P&gt;&lt;P&gt;real*4 :: pi_r4, pi_inc&lt;BR /&gt;integer*4 :: fft_length&lt;BR /&gt;&lt;BR /&gt;integer*4 :: i, j&lt;BR /&gt;integer*8 :: my_plan&lt;/P&gt;&lt;P&gt;double complex, allocatable :: fftw1d( : ) ! help array for 1D FFT for phase calculation&lt;BR /&gt;real*8, allocatable :: input( : ) ! help array for 1D FFT for phase calculation&lt;BR /&gt;&lt;BR /&gt;Parameter( fft_length = 2**13, pi_r4 = 3.141592653589793238462643383279502884)&lt;BR /&gt;&lt;BR /&gt;allocate( fftw1d( fft_length/2+1 ) )&lt;BR /&gt;allocate( input( fft_length ) )&lt;/P&gt;&lt;P&gt;pi_inc = pi_r4/(fft_length-1)*100.&lt;BR /&gt;do i =1,fft_length&lt;BR /&gt;input( i ) = sin(float(i-1)*pi_inc)&lt;BR /&gt;end do&lt;BR /&gt;&lt;BR /&gt;! do FFT&lt;BR /&gt;fftw1d = ( 0.d00, 0.d00 )&lt;BR /&gt;&lt;BR /&gt;call dfftw_plan_dft_r2c_1d( my_plan,fft_length,input,fftw1d,FFTW_ESTIMATE )&lt;BR /&gt;write(*,*) fftw_estimate&lt;BR /&gt;call dfftw_execute_dft_r2c( my_plan,input,fftw1d )&lt;BR /&gt;&lt;BR /&gt;call dfftw_destroy_plan( my_plan )&lt;BR /&gt;&lt;BR /&gt;stop&lt;BR /&gt;&lt;BR /&gt;end program test_fftw&lt;/P&gt;</description>
      <pubDate>Fri, 29 Sep 2023 13:16:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-with-mkl-FFTW/m-p/1528819#M35208</guid>
      <dc:creator>mhort</dc:creator>
      <dc:date>2023-09-29T13:16:23Z</dc:date>
    </item>
    <item>
      <title>Re:Problem with mkl FFTW</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-with-mkl-FFTW/m-p/1530134#M35237</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks for sharing your requirement details. We are looking into your issue internally. We will get back to you soon with an update.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jilani&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 04 Oct 2023 03:33:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-with-mkl-FFTW/m-p/1530134#M35237</guid>
      <dc:creator>IntelSupport</dc:creator>
      <dc:date>2023-10-04T03:33:36Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with mkl FFTW</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-with-mkl-FFTW/m-p/1530283#M35242</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for posting in Intel Communities.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We tried to reproduce the issue, but it appears to be working fine on our side.&lt;/P&gt;
&lt;P&gt;When we use the following fft_lengths, the outcomes are as follows.&lt;/P&gt;
&lt;P&gt;fft_length = 2**13, result is 64.&lt;/P&gt;
&lt;P&gt;fft_length = 2**14, result is 64.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We would like to request you to use the latest version of MKL. And please let us know if the issue still persists.&lt;/P&gt;
&lt;P&gt;Please find the attached screenshots for&amp;nbsp;the fft_length results for 2**13 and 2**14.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Jilani&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Oct 2023 14:41:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-with-mkl-FFTW/m-p/1530283#M35242</guid>
      <dc:creator>IntelSupport</dc:creator>
      <dc:date>2023-10-04T14:41:08Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with mkl FFTW</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-with-mkl-FFTW/m-p/1530455#M35246</link>
      <description>&lt;P&gt;Dear Jilani,&lt;/P&gt;&lt;P&gt;great many thanks for testing it. I am using an older Version of the fortran compiler (19.1.2.254) with the attached math Kernel Library. I am developing code in visual studio.&lt;/P&gt;&lt;P&gt;As far as I can see you tested 2 compiler versions, both newer than mine. So maybe its a problem with the compiler and the mkl Version in my installation. Maybe I have overlooked one switch in visual studio..&lt;/P&gt;&lt;P&gt;Many thanks for your help,&lt;/P&gt;&lt;P&gt;Matthias&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Oct 2023 21:49:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-with-mkl-FFTW/m-p/1530455#M35246</guid>
      <dc:creator>mhort</dc:creator>
      <dc:date>2023-10-04T21:49:23Z</dc:date>
    </item>
    <item>
      <title>Re:Problem with mkl FFTW</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-with-mkl-FFTW/m-p/1531111#M35259</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Many thanks for your reply. We would like to request you to use the latest version of MKL, in case you run into any other issues please feel free to create a new thread.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jilani&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 06 Oct 2023 11:18:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-with-mkl-FFTW/m-p/1531111#M35259</guid>
      <dc:creator>IntelSupport</dc:creator>
      <dc:date>2023-10-06T11:18:04Z</dc:date>
    </item>
  </channel>
</rss>

