<?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: undefined reference to `fftw_create_plan' in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/undefined-reference-to-fftw-create-plan/m-p/1270916#M31121</link>
    <description>&lt;P&gt;&lt;SPAN&gt;Rajesh, t&lt;/SPAN&gt;hank you for you reply.&lt;/P&gt;
&lt;P&gt;The mentioned examples cause the same problem in both MinGW 64 and MSVC 64. I think the problem is in follows:&lt;/P&gt;
&lt;P&gt;In mkl folder there is no one precompiled interfaces (.dll) for fast fourier like fftw2c,... (I mean redist folder)&amp;nbsp; in comparison to parsido ans other packages.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;May be I've missed some libraries when writing LIBS section.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks a lot.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 05 Apr 2021 16:10:22 GMT</pubDate>
    <dc:creator>Alexey1978</dc:creator>
    <dc:date>2021-04-05T16:10:22Z</dc:date>
    <item>
      <title>undefined reference to `fftw_create_plan'</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/undefined-reference-to-fftw-create-plan/m-p/1270379#M31105</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I've read a lot of similar problems, but still cannot resolve it.&lt;/P&gt;
&lt;P&gt;QT 5.15 + MinGW 8.1.0 + Windows 10&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN&gt;fftw_plan&lt;/SPAN&gt; &lt;SPAN&gt;my_plan&lt;/SPAN&gt;;&lt;/PRE&gt;
&lt;PRE&gt;    &lt;SPAN&gt;double&lt;/SPAN&gt; &lt;SPAN&gt;Scale&lt;/SPAN&gt;;&lt;/PRE&gt;
&lt;PRE&gt;    &lt;SPAN&gt;fftw_complex&lt;/SPAN&gt;* &lt;SPAN&gt;x_in&lt;/SPAN&gt;;&lt;/PRE&gt;
&lt;PRE&gt;&lt;SPAN&gt;x_in&lt;/SPAN&gt; = (&lt;SPAN&gt;fftw_complex&lt;/SPAN&gt;*)&lt;SPAN&gt;fftw_malloc&lt;/SPAN&gt;(&lt;SPAN&gt;2&lt;/SPAN&gt;*&lt;SPAN&gt;m_nR&lt;/SPAN&gt;*&lt;SPAN&gt;sizeof&lt;/SPAN&gt;(&lt;SPAN&gt;double&lt;/SPAN&gt;));&lt;/PRE&gt;
&lt;PRE&gt;&lt;SPAN&gt;my_plan&lt;/SPAN&gt; = &lt;SPAN&gt;fftw_create_plan&lt;/SPAN&gt;(&lt;SPAN&gt;m_nR&lt;/SPAN&gt;, &lt;SPAN&gt;FFTW_FORWARD&lt;/SPAN&gt;, &lt;SPAN&gt;FFTW_ESTIMATE&lt;/SPAN&gt; );&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;
&lt;P&gt;In last line I have "undefined reference to `fftw_create_plan'". I think that I cannot create library fft in win 10. There is makefile wich do not work with minGW.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How can I use mkl fft library?&lt;/P&gt;
&lt;P&gt;Libraries&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN&gt;LIBS&lt;/SPAN&gt; += -L'C:/Program Files (x86)/Intel/oneAPI/mkl/2021.1.1/redist/intel64'\&lt;/PRE&gt;
&lt;PRE&gt;-llibimalloc&lt;/PRE&gt;
&lt;PRE&gt;&lt;SPAN&gt;LIBS&lt;/SPAN&gt; += -L'C:\Program Files (x86)\Intel\oneAPI\compiler\2021.1.1\windows\redist\intel64_win\compiler'\&lt;/PRE&gt;
&lt;PRE&gt;-llibiomp5md&lt;/PRE&gt;
&lt;PRE&gt;&lt;SPAN&gt;LIBS&lt;/SPAN&gt; += -L'C:/Program Files (x86)/Intel/oneAPI/mkl/2021.1.1/redist/intel64'\&lt;/PRE&gt;
&lt;PRE&gt;-lmkl_cdft_core_dll -lmkl_intel_ilp64_dll -lmkl_sequential_dll -lmkl_blacs_lp64_dll -lmkl_blacs_ilp64_dll -lm -lstdc++&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks a lot.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Apr 2021 15:07:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/undefined-reference-to-fftw-create-plan/m-p/1270379#M31105</guid>
      <dc:creator>Alexey1978</dc:creator>
      <dc:date>2021-04-02T15:07:55Z</dc:date>
    </item>
    <item>
      <title>Re: undefined reference to `fftw_create_plan'</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/undefined-reference-to-fftw-create-plan/m-p/1270836#M31120</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You may refer to the MKL FFT samples in the path below:&lt;/P&gt;
&lt;P&gt;C:\Program Files (x86)\Intel\oneAPI\mkl\latest\examples and extract examples_core_c.zip.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;After extracting, locate fft2w folder and refer to the makefile provided (For the flags to be included). We tried with the ICL compiler and we were able to compile without any issues.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Rajesh&lt;/P&gt;</description>
      <pubDate>Mon, 05 Apr 2021 14:06:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/undefined-reference-to-fftw-create-plan/m-p/1270836#M31120</guid>
      <dc:creator>MRajesh_intel</dc:creator>
      <dc:date>2021-04-05T14:06:51Z</dc:date>
    </item>
    <item>
      <title>Re: undefined reference to `fftw_create_plan'</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/undefined-reference-to-fftw-create-plan/m-p/1270916#M31121</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Rajesh, t&lt;/SPAN&gt;hank you for you reply.&lt;/P&gt;
&lt;P&gt;The mentioned examples cause the same problem in both MinGW 64 and MSVC 64. I think the problem is in follows:&lt;/P&gt;
&lt;P&gt;In mkl folder there is no one precompiled interfaces (.dll) for fast fourier like fftw2c,... (I mean redist folder)&amp;nbsp; in comparison to parsido ans other packages.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;May be I've missed some libraries when writing LIBS section.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks a lot.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Apr 2021 16:10:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/undefined-reference-to-fftw-create-plan/m-p/1270916#M31121</guid>
      <dc:creator>Alexey1978</dc:creator>
      <dc:date>2021-04-05T16:10:22Z</dc:date>
    </item>
    <item>
      <title>Re: undefined reference to `fftw_create_plan'</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/undefined-reference-to-fftw-create-plan/m-p/1270958#M31122</link>
      <description>&lt;P&gt;So, finally I've solved the problem.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've compiled makefile using nmake with msvs compiler and have generated&amp;nbsp;fftw2xc_double_msvs.lib&amp;nbsp;&lt;/P&gt;
&lt;P&gt;nmake LIB compiler=msvs PRECISION=MKL_DOUBLE&lt;/P&gt;
&lt;P&gt;So, it works only in MSVC, but not in MinGW.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Apr 2021 18:35:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/undefined-reference-to-fftw-create-plan/m-p/1270958#M31122</guid>
      <dc:creator>Alexey1978</dc:creator>
      <dc:date>2021-04-05T18:35:45Z</dc:date>
    </item>
    <item>
      <title>Re:undefined reference to `fftw_create_plan'</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/undefined-reference-to-fftw-create-plan/m-p/1272262#M31170</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Since you have accepted your solution, can we proceed to close this thread?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Please let us know if you face any issues.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rajesh. &lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 09 Apr 2021 06:04:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/undefined-reference-to-fftw-create-plan/m-p/1272262#M31170</guid>
      <dc:creator>MRajesh_intel</dc:creator>
      <dc:date>2021-04-09T06:04:29Z</dc:date>
    </item>
    <item>
      <title>Re: Re:undefined reference to `fftw_create_plan'</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/undefined-reference-to-fftw-create-plan/m-p/1272577#M31178</link>
      <description>&lt;P&gt;Yes, sure.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks a lot.&lt;/P&gt;</description>
      <pubDate>Sat, 10 Apr 2021 18:30:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/undefined-reference-to-fftw-create-plan/m-p/1272577#M31178</guid>
      <dc:creator>Alexey1978</dc:creator>
      <dc:date>2021-04-10T18:30:49Z</dc:date>
    </item>
    <item>
      <title>Re:undefined reference to `fftw_create_plan'</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/undefined-reference-to-fftw-create-plan/m-p/1272840#M31181</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; Thanks for the confirmation!&lt;/P&gt;&lt;P&gt; As this issue has been resolved, we will no longer respond to this thread.&lt;/P&gt;&lt;P&gt; If you require any additional assistance from Intel, please start a new thread.&lt;/P&gt;&lt;P&gt; Any further interaction in this thread will be considered community only.&lt;/P&gt;&lt;P&gt; Have a Good day.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rajesh&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 12 Apr 2021 10:41:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/undefined-reference-to-fftw-create-plan/m-p/1272840#M31181</guid>
      <dc:creator>MRajesh_intel</dc:creator>
      <dc:date>2021-04-12T10:41:29Z</dc:date>
    </item>
  </channel>
</rss>

