<?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 FFT with one MKL in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/FFT-with-one-MKL/m-p/1264200#M31007</link>
    <description>&lt;P&gt;Dear Colleagues,&lt;/P&gt;
&lt;P&gt;Up to few months I worked with IMSL and use for my 3D Fast Fourier&amp;nbsp; transforms the command line&lt;/P&gt;
&lt;P&gt;CALL c_fast_3dft(A1,A1)&lt;/P&gt;
&lt;P&gt;Now I try to use one MKL and use the following&amp;nbsp; commands:&lt;/P&gt;
&lt;P&gt;INCLUDE 'mkl_dfti.f90'&lt;BR /&gt;USE MKL_DFTI&lt;/P&gt;
&lt;P&gt;DIMMENSION LL(3)&lt;/P&gt;
&lt;P&gt;INTEGER status, LL&lt;/P&gt;
&lt;P&gt;type(DFTI_DESCRIPTOR), POINTER :: My_fft&lt;/P&gt;
&lt;P&gt;status=DftiCreateDescriptor(My_fft, DFTI_SINGLE, DFTI_COMPLEX, 3, LL);&lt;BR /&gt;status=DftiSetValue(My_fft, DFTI_PLACEMENT, DFTI_NOT_INPLACE)&lt;BR /&gt;status=DftiCommitDescriptor(My_fft);&lt;BR /&gt;status=DftiComputeForward(My_fft, A1);&lt;BR /&gt;status=DftiFreeDescriptor(My_fft);&lt;/P&gt;
&lt;P&gt;The compilator gives the following error:&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;error #6284: There is no matching specific function for this generic&amp;nbsp;function.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;I work with Visual studio -19.&lt;/P&gt;
&lt;P&gt;What I must change?&lt;/P&gt;
&lt;P&gt;Lubomir&lt;/P&gt;</description>
    <pubDate>Sun, 14 Mar 2021 21:35:38 GMT</pubDate>
    <dc:creator>lmkovach</dc:creator>
    <dc:date>2021-03-14T21:35:38Z</dc:date>
    <item>
      <title>FFT with one MKL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/FFT-with-one-MKL/m-p/1264200#M31007</link>
      <description>&lt;P&gt;Dear Colleagues,&lt;/P&gt;
&lt;P&gt;Up to few months I worked with IMSL and use for my 3D Fast Fourier&amp;nbsp; transforms the command line&lt;/P&gt;
&lt;P&gt;CALL c_fast_3dft(A1,A1)&lt;/P&gt;
&lt;P&gt;Now I try to use one MKL and use the following&amp;nbsp; commands:&lt;/P&gt;
&lt;P&gt;INCLUDE 'mkl_dfti.f90'&lt;BR /&gt;USE MKL_DFTI&lt;/P&gt;
&lt;P&gt;DIMMENSION LL(3)&lt;/P&gt;
&lt;P&gt;INTEGER status, LL&lt;/P&gt;
&lt;P&gt;type(DFTI_DESCRIPTOR), POINTER :: My_fft&lt;/P&gt;
&lt;P&gt;status=DftiCreateDescriptor(My_fft, DFTI_SINGLE, DFTI_COMPLEX, 3, LL);&lt;BR /&gt;status=DftiSetValue(My_fft, DFTI_PLACEMENT, DFTI_NOT_INPLACE)&lt;BR /&gt;status=DftiCommitDescriptor(My_fft);&lt;BR /&gt;status=DftiComputeForward(My_fft, A1);&lt;BR /&gt;status=DftiFreeDescriptor(My_fft);&lt;/P&gt;
&lt;P&gt;The compilator gives the following error:&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;error #6284: There is no matching specific function for this generic&amp;nbsp;function.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;I work with Visual studio -19.&lt;/P&gt;
&lt;P&gt;What I must change?&lt;/P&gt;
&lt;P&gt;Lubomir&lt;/P&gt;</description>
      <pubDate>Sun, 14 Mar 2021 21:35:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/FFT-with-one-MKL/m-p/1264200#M31007</guid>
      <dc:creator>lmkovach</dc:creator>
      <dc:date>2021-03-14T21:35:38Z</dc:date>
    </item>
    <item>
      <title>Re: FFT with one MKL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/FFT-with-one-MKL/m-p/1264324#M31008</link>
      <description>&lt;P&gt;Please post the actual code, using the syntax highlighter (toolbar, icon &amp;lt;/&amp;gt; ), and report the specific line of code that the compiler flagged as being in error. One or more arguments to the MKL DFT functions has a type that is either wrong or has not been declared -- for example, what is the type of A1?&lt;/P&gt;</description>
      <pubDate>Mon, 15 Mar 2021 07:37:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/FFT-with-one-MKL/m-p/1264324#M31008</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2021-03-15T07:37:39Z</dc:date>
    </item>
    <item>
      <title>Re:FFT with one MKL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/FFT-with-one-MKL/m-p/1264373#M31013</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Could you please attach your minimal error reproducible source code? Also, specify your VS-19 version.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 15 Mar 2021 09:30:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/FFT-with-one-MKL/m-p/1264373#M31013</guid>
      <dc:creator>RahulV_intel</dc:creator>
      <dc:date>2021-03-15T09:30:45Z</dc:date>
    </item>
    <item>
      <title>Re:FFT with one MKL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/FFT-with-one-MKL/m-p/1266449#M31061</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Just a quick reminder to share the reproducer code.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 22 Mar 2021 06:02:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/FFT-with-one-MKL/m-p/1266449#M31061</guid>
      <dc:creator>RahulV_intel</dc:creator>
      <dc:date>2021-03-22T06:02:53Z</dc:date>
    </item>
    <item>
      <title>Re:FFT with one MKL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/FFT-with-one-MKL/m-p/1269557#M31101</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I have not heard back from you, so I will go ahead and close this thread from my end. Intel will no longer monitor this thread. Feel free to&amp;nbsp;post a new query if you require further assistance from Intel.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 31 Mar 2021 09:41:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/FFT-with-one-MKL/m-p/1269557#M31101</guid>
      <dc:creator>RahulV_intel</dc:creator>
      <dc:date>2021-03-31T09:41:20Z</dc:date>
    </item>
  </channel>
</rss>

