<?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 Problems with FFTW in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problems-with-FFTW/m-p/774513#M900</link>
    <description>&lt;B&gt;I just realized that the multidimensional r2r transforms are not supported in MKL, according to the reference guide. Sorry for the inconvenience.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/B&gt; Carlos&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;I have compiled the code shown below, but it keeps crashing when the plan is executed. It compiles and runs in Linux with the Intel compilers, but I am trying to run it in Windows. I have the Intel compilers installed, and created the FFTW library that is included in the MKL package. I tried using both 32-bit and 64-bit versions, but none of them worked. When I compile it using Visual Studio 2008, I link the following libraries:&lt;BR /&gt;&lt;BR /&gt;32-bit version: mkl_core.lib fftw3xf_intel.lib mkl_intel_c.lib mkl_intel_thread.lib libiomp5md.lib, contained in the directory C:\\Program Files\\Intel\\MKL\\10.2.1.019\\ia32\\lib&lt;BR /&gt;&lt;BR /&gt;64-bit version: mkl_core.lib mkl_intel_thread.lib fftw3xf_intel.lib mkl_cdft_core.lib libiomp5md.lib mkl_intel_lp64.lib, contained in the directory C:\\Program Files\\Intel\\MKL\\10.2.1.019\\em64t\\lib&lt;BR /&gt;&lt;BR /&gt;Can you please let me know what the problem could be?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt; Carlos&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;implicit double precision (a-h,o-z)&lt;BR /&gt; implicit integer (i-n)&lt;BR /&gt; &lt;BR /&gt; include "fftw3.f"&lt;BR /&gt; &lt;BR /&gt; integer*8 pcos2f, pcos2b&lt;BR /&gt;&lt;BR /&gt; real*8 yy2(4, 4), yy3(4, 4)&lt;BR /&gt;&lt;BR /&gt; n1 = 4&lt;BR /&gt; n2 = 4&lt;BR /&gt; &lt;BR /&gt; call dfftw_plan_r2r_2d(pcos2f, n1, n2, yy2, yy3, &amp;amp;&lt;BR /&gt; FFTW_REDFT01, FFTW_REDFT01, FFTW_ESTIMATE)&lt;BR /&gt;&lt;BR /&gt;! call dfftw_plan_r2r_2d(pcos2b, n1, n2, yy3, yy2, &amp;amp;&lt;BR /&gt;! FFTW_REDFT10, FFTW_REDFT10, FFTW_ESTIMATE)&lt;BR /&gt;&lt;BR /&gt; call random_number(yy2)&lt;BR /&gt; &lt;BR /&gt; write(*,*) yy2&lt;BR /&gt;&lt;BR /&gt; call dfftw_execute(pcos2f)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; write(*,*) yy3&lt;BR /&gt;&lt;BR /&gt; stop&lt;BR /&gt; end&lt;BR /&gt;</description>
    <pubDate>Fri, 23 Jul 2010 08:01:40 GMT</pubDate>
    <dc:creator>anupoti</dc:creator>
    <dc:date>2010-07-23T08:01:40Z</dc:date>
    <item>
      <title>Problems with FFTW</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problems-with-FFTW/m-p/774513#M900</link>
      <description>&lt;B&gt;I just realized that the multidimensional r2r transforms are not supported in MKL, according to the reference guide. Sorry for the inconvenience.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/B&gt; Carlos&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;I have compiled the code shown below, but it keeps crashing when the plan is executed. It compiles and runs in Linux with the Intel compilers, but I am trying to run it in Windows. I have the Intel compilers installed, and created the FFTW library that is included in the MKL package. I tried using both 32-bit and 64-bit versions, but none of them worked. When I compile it using Visual Studio 2008, I link the following libraries:&lt;BR /&gt;&lt;BR /&gt;32-bit version: mkl_core.lib fftw3xf_intel.lib mkl_intel_c.lib mkl_intel_thread.lib libiomp5md.lib, contained in the directory C:\\Program Files\\Intel\\MKL\\10.2.1.019\\ia32\\lib&lt;BR /&gt;&lt;BR /&gt;64-bit version: mkl_core.lib mkl_intel_thread.lib fftw3xf_intel.lib mkl_cdft_core.lib libiomp5md.lib mkl_intel_lp64.lib, contained in the directory C:\\Program Files\\Intel\\MKL\\10.2.1.019\\em64t\\lib&lt;BR /&gt;&lt;BR /&gt;Can you please let me know what the problem could be?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt; Carlos&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;implicit double precision (a-h,o-z)&lt;BR /&gt; implicit integer (i-n)&lt;BR /&gt; &lt;BR /&gt; include "fftw3.f"&lt;BR /&gt; &lt;BR /&gt; integer*8 pcos2f, pcos2b&lt;BR /&gt;&lt;BR /&gt; real*8 yy2(4, 4), yy3(4, 4)&lt;BR /&gt;&lt;BR /&gt; n1 = 4&lt;BR /&gt; n2 = 4&lt;BR /&gt; &lt;BR /&gt; call dfftw_plan_r2r_2d(pcos2f, n1, n2, yy2, yy3, &amp;amp;&lt;BR /&gt; FFTW_REDFT01, FFTW_REDFT01, FFTW_ESTIMATE)&lt;BR /&gt;&lt;BR /&gt;! call dfftw_plan_r2r_2d(pcos2b, n1, n2, yy3, yy2, &amp;amp;&lt;BR /&gt;! FFTW_REDFT10, FFTW_REDFT10, FFTW_ESTIMATE)&lt;BR /&gt;&lt;BR /&gt; call random_number(yy2)&lt;BR /&gt; &lt;BR /&gt; write(*,*) yy2&lt;BR /&gt;&lt;BR /&gt; call dfftw_execute(pcos2f)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; write(*,*) yy3&lt;BR /&gt;&lt;BR /&gt; stop&lt;BR /&gt; end&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Jul 2010 08:01:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problems-with-FFTW/m-p/774513#M900</guid>
      <dc:creator>anupoti</dc:creator>
      <dc:date>2010-07-23T08:01:40Z</dc:date>
    </item>
    <item>
      <title>Problems with FFTW</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problems-with-FFTW/m-p/774514#M901</link>
      <description>&lt;P&gt;I'm moving this to the MKL forum, so you can get support from theIntel Software Development Products Team.&lt;/P&gt;&lt;P&gt;==&lt;BR /&gt;Aubrey W.&lt;BR /&gt;Intel Software Network Support&lt;/P&gt;</description>
      <pubDate>Tue, 10 Aug 2010 19:51:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problems-with-FFTW/m-p/774514#M901</guid>
      <dc:creator>Aubrey_W_</dc:creator>
      <dc:date>2010-08-10T19:51:32Z</dc:date>
    </item>
  </channel>
</rss>

