<?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: MKL: transitioning from FFT to new DFT functions in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-transitioning-from-FFT-to-new-DFT-functions/m-p/914723#M12463</link>
    <description>&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;Hi,&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;&lt;SPAN&gt;There are rather a few steps tomove to new FFT functions. The most important difference you will see is that while old functions computed FFT immediately, the new functions do FFT in several stages. They keep around a descriptor which holds the FFT problem you compute.&lt;/SPAN&gt;&lt;SPAN&gt; When you deal with the descriptor you will need a few named constants defined in module mkl_dfti, so you'll need the module. &lt;/SPAN&gt;The stages are:&lt;BR /&gt;&lt;BR /&gt;use mkl_dfti&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;&lt;SPAN&gt;status = DftiCreateDescriptor( mydesc,&lt;/SPAN&gt;&lt;SPAN style="FONT-STYLE: italic"&gt; ...problem definition... &lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;if (.not. DftiErrorClass(status, DFTI_NO_ERROR)) call abort('create descriptor failed')&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;status = DftiCommitDescriptor( mydesc )&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;&lt;SPAN&gt;status = DftiComputeForward( mydesc, &lt;/SPAN&gt;&lt;SPAN style="FONT-STYLE: italic"&gt;...reference todata...&lt;/SPAN&gt;&lt;SPAN&gt; )&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;&lt;SPAN&gt;status = DftiComputeForward( mydesc, &lt;/SPAN&gt;&lt;SPAN style="FONT-STYLE: italic"&gt;...reference todata...&lt;/SPAN&gt;&lt;SPAN&gt; )&lt;/SPAN&gt;&lt;/P&gt;&lt;SPAN&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;&lt;SPAN&gt;status = DftiComputeForward( mydesc, &lt;/SPAN&gt;&lt;SPAN style="FONT-STYLE: italic"&gt;...reference todata...&lt;/SPAN&gt;&lt;SPAN&gt; )&lt;/SPAN&gt;&lt;/P&gt;&lt;/SPAN&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;&lt;SPAN&gt;status = DftiComputeBackward( mydesc, &lt;/SPAN&gt;&lt;SPAN style="FONT-STYLE: italic"&gt;...reference todata...&lt;/SPAN&gt;&lt;SPAN&gt; )&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;...&lt;BR /&gt;status = DftiFreeDescriptor( mydesc )&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;You are advised to check status returned by each call of the new functions; it shall be zero on successful completion. Once you've got the decriptor "committed" you may use it to computerespective FFT problem as many times as necessary.&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;"Problem definition" above is done by 4 parameters: (i) working precision, DFTI_SINGLE or DFTI_DOUBLE, (ii) input domain, e.g. DFTI_COMPLEX or DFTI_REAL, (iii) dimensionality of the problem, e.g. 1, and (iv) size of the problem (this should be array in case ofmultidimensional FFT).&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;"Reference to data" above is the name of the array containing the input and receiving the result of FFT because the transform is done in-place by default. You may wish to do FFT out of place, in which case you will need to adjust descriptor and pass two data references to DftiComputeForward.&lt;/P&gt;

&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;The new functions provide much more functionality, such as out-of-place transforms, processing of data with strides, multiple transforms etc. To know how to utilize this functionality you will probably need to read the documentation.&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; mso-outline-level: 1"&gt;&lt;SPAN style="FONT-FAMILY: Verdana"&gt;There are also some examples in MKL installation directory &lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: Tahoma"&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: Verdana"&gt; please look at them to find outconcrete ways of usage.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;With this in mind, here are the steps you may find useful for quick start&lt;/P&gt;
&lt;OL style="MARGIN-TOP: 0in; MARGIN-BOTTOM: 0in; MARGIN-LEFT: 0.5in; DIRECTION: ltr; unicode-bidi: embed"&gt;
&lt;LI style="MARGIN-TOP: 0px; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0px; VERTICAL-ALIGN: middle; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;Add mkl_dfti.f90 file to your project (and ensure it is compiled before the sources that use it)&lt;/LI&gt;
&lt;LI style="MARGIN-TOP: 0px; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0px; VERTICAL-ALIGN: middle; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;Add 'use mkl_dfti' into the functions that will do FFT&lt;/LI&gt;
&lt;LI style="MARGIN-TOP: 0px; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0px; VERTICAL-ALIGN: middle; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;Replace each call to old FFT function with a sort of the sequence shown above.&lt;/LI&gt;&lt;/OL&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;Dima&lt;/P&gt;</description>
    <pubDate>Wed, 01 Aug 2007 02:57:29 GMT</pubDate>
    <dc:creator>Dmitry_B_Intel</dc:creator>
    <dc:date>2007-08-01T02:57:29Z</dc:date>
    <item>
      <title>MKL: transitioning from FFT to new DFT functions</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-transitioning-from-FFT-to-new-DFT-functions/m-p/914722#M12462</link>
      <description>&lt;P&gt;Hello. I have been using MKL7, and am currently evaluating MKL9 version in windows, using microsoft visual studio 5 combined withintel fortran 10. Could someone please list a number of steps to detail the modifications that need to be made to call the new DFT routines?&lt;/P&gt;
&lt;P&gt;I need the sort of details a 4-year old might find useful. Thanks in advance.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Jul 2007 21:23:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-transitioning-from-FFT-to-new-DFT-functions/m-p/914722#M12462</guid>
      <dc:creator>gemma11</dc:creator>
      <dc:date>2007-07-31T21:23:36Z</dc:date>
    </item>
    <item>
      <title>Re: MKL: transitioning from FFT to new DFT functions</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-transitioning-from-FFT-to-new-DFT-functions/m-p/914723#M12463</link>
      <description>&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;Hi,&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;&lt;SPAN&gt;There are rather a few steps tomove to new FFT functions. The most important difference you will see is that while old functions computed FFT immediately, the new functions do FFT in several stages. They keep around a descriptor which holds the FFT problem you compute.&lt;/SPAN&gt;&lt;SPAN&gt; When you deal with the descriptor you will need a few named constants defined in module mkl_dfti, so you'll need the module. &lt;/SPAN&gt;The stages are:&lt;BR /&gt;&lt;BR /&gt;use mkl_dfti&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;&lt;SPAN&gt;status = DftiCreateDescriptor( mydesc,&lt;/SPAN&gt;&lt;SPAN style="FONT-STYLE: italic"&gt; ...problem definition... &lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;if (.not. DftiErrorClass(status, DFTI_NO_ERROR)) call abort('create descriptor failed')&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;status = DftiCommitDescriptor( mydesc )&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;&lt;SPAN&gt;status = DftiComputeForward( mydesc, &lt;/SPAN&gt;&lt;SPAN style="FONT-STYLE: italic"&gt;...reference todata...&lt;/SPAN&gt;&lt;SPAN&gt; )&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;&lt;SPAN&gt;status = DftiComputeForward( mydesc, &lt;/SPAN&gt;&lt;SPAN style="FONT-STYLE: italic"&gt;...reference todata...&lt;/SPAN&gt;&lt;SPAN&gt; )&lt;/SPAN&gt;&lt;/P&gt;&lt;SPAN&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;&lt;SPAN&gt;status = DftiComputeForward( mydesc, &lt;/SPAN&gt;&lt;SPAN style="FONT-STYLE: italic"&gt;...reference todata...&lt;/SPAN&gt;&lt;SPAN&gt; )&lt;/SPAN&gt;&lt;/P&gt;&lt;/SPAN&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;&lt;SPAN&gt;status = DftiComputeBackward( mydesc, &lt;/SPAN&gt;&lt;SPAN style="FONT-STYLE: italic"&gt;...reference todata...&lt;/SPAN&gt;&lt;SPAN&gt; )&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;...&lt;BR /&gt;status = DftiFreeDescriptor( mydesc )&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;You are advised to check status returned by each call of the new functions; it shall be zero on successful completion. Once you've got the decriptor "committed" you may use it to computerespective FFT problem as many times as necessary.&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;"Problem definition" above is done by 4 parameters: (i) working precision, DFTI_SINGLE or DFTI_DOUBLE, (ii) input domain, e.g. DFTI_COMPLEX or DFTI_REAL, (iii) dimensionality of the problem, e.g. 1, and (iv) size of the problem (this should be array in case ofmultidimensional FFT).&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;"Reference to data" above is the name of the array containing the input and receiving the result of FFT because the transform is done in-place by default. You may wish to do FFT out of place, in which case you will need to adjust descriptor and pass two data references to DftiComputeForward.&lt;/P&gt;

&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;The new functions provide much more functionality, such as out-of-place transforms, processing of data with strides, multiple transforms etc. To know how to utilize this functionality you will probably need to read the documentation.&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; mso-outline-level: 1"&gt;&lt;SPAN style="FONT-FAMILY: Verdana"&gt;There are also some examples in MKL installation directory &lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: Tahoma"&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: Verdana"&gt; please look at them to find outconcrete ways of usage.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;With this in mind, here are the steps you may find useful for quick start&lt;/P&gt;
&lt;OL style="MARGIN-TOP: 0in; MARGIN-BOTTOM: 0in; MARGIN-LEFT: 0.5in; DIRECTION: ltr; unicode-bidi: embed"&gt;
&lt;LI style="MARGIN-TOP: 0px; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0px; VERTICAL-ALIGN: middle; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;Add mkl_dfti.f90 file to your project (and ensure it is compiled before the sources that use it)&lt;/LI&gt;
&lt;LI style="MARGIN-TOP: 0px; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0px; VERTICAL-ALIGN: middle; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;Add 'use mkl_dfti' into the functions that will do FFT&lt;/LI&gt;
&lt;LI style="MARGIN-TOP: 0px; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0px; VERTICAL-ALIGN: middle; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;Replace each call to old FFT function with a sort of the sequence shown above.&lt;/LI&gt;&lt;/OL&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Verdana; mso-outline-level: 1"&gt;Dima&lt;/P&gt;</description>
      <pubDate>Wed, 01 Aug 2007 02:57:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-transitioning-from-FFT-to-new-DFT-functions/m-p/914723#M12463</guid>
      <dc:creator>Dmitry_B_Intel</dc:creator>
      <dc:date>2007-08-01T02:57:29Z</dc:date>
    </item>
    <item>
      <title>Re: MKL: transitioning from FFT to new DFT functions</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-transitioning-from-FFT-to-new-DFT-functions/m-p/914724#M12464</link>
      <description>&lt;P&gt;Thanks. I have tried but I need more help. I did not exhagerate about needing the same directions as a 4-year old. Proof of this is that I am still using the basic structure ofcodes written almost 20 years ago, with fortran 66 and fortran 77 semantics. So I am an aging fortran user pretty much set in my ways, almost hopeless.&lt;/P&gt;
&lt;P&gt;There may added functionalities, but nothing beats simplicity. This new construction is, in my view,a significant step backwards, at least for people like me who simply wish tocalculate FFTs of complex data. Before I give the specifics of what I am trying to accomplish, does anyone know if it is worth the trouble? That is, what kind of performance improvements can one expect from the new routines, for 1- and 2-d complex FFTs?Typical 1-d arrays are easily 65536 long, while 2-d arrays can be as large as (1024, 32768). Anyway, hereare the specifics.I am transformingdata in the form of a complex 1-d vectorZof length Nas follows:&lt;/P&gt;
&lt;P&gt;CALL ZFFT1D ( Z, N, 1, V)&lt;/P&gt;
&lt;P&gt;V isthe workspace vector. I have added the mkl_dfti.f90 program to the project, and compiled it. It gives no compilation errors. What should be the result of this operation?&lt;/P&gt;
&lt;P&gt;Then, inside the subroutine that made the call,I have added"USE MKL_DFTI" statement, and added the following lines:&lt;/P&gt;&lt;FONT size="2"&gt;
&lt;P&gt;&lt;FONT color="#0000ff"&gt;Status = DftiCreateDescriptor ( mydesc, DFTI_DOUBLE, &lt;/FONT&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;&lt;FONT color="#0000ff"&gt;DFTI_COMPLEX, 1, N )&lt;/FONT&gt;&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff"&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;
&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT size="2"&gt;&lt;FONT color="#0000ff"&gt;if&lt;/FONT&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT color="#0000ff"&gt;&lt;FONT size="2"&gt;(.not.DftiErrorClass(status, DFTI_NO_ERROR)) &lt;/FONT&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT size="2"&gt;call&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#0000ff" size="2"&gt; abort('create descriptor failed')&lt;/FONT&gt;&lt;P&gt;&lt;/P&gt;&lt;FONT size="2"&gt;&lt;FONT size="2"&gt;
&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;&lt;FONT color="#0000ff"&gt;status = DftiCommitDescriptor( mydesc )&lt;/FONT&gt;&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;
&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;FONT color="#0000ff" size="2"&gt;status = DftiComputeForward( mydesc, Z )&lt;/FONT&gt;&lt;P&gt;&lt;/P&gt;&lt;FONT size="2"&gt;&lt;FONT size="2"&gt;
&lt;P&gt;&lt;FONT color="#0000ff"&gt;status = DftiComputeBackward( mydesc, Z)&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;FONT color="#0000ff" size="2"&gt;Status = DftiFreeDescriptor(mydesc)&lt;/FONT&gt;&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;There are 5 error messages, one for each new line, as follows:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;&lt;FONT color="#0000ff"&gt;Error2 Error: There is no matching specific function for this generic function reference. [DFTICREATEDESCRIPTOR]&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;/FONT&gt;It appearsthat the compilation of the mkl-dfti program may not be producing the desired effects.Thanks in advance.&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Aug 2007 15:27:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-transitioning-from-FFT-to-new-DFT-functions/m-p/914724#M12464</guid>
      <dc:creator>gemma11</dc:creator>
      <dc:date>2007-08-01T15:27:22Z</dc:date>
    </item>
    <item>
      <title>Re: MKL: transitioning from FFT to new DFT functions</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-transitioning-from-FFT-to-new-DFT-functions/m-p/914725#M12465</link>
      <description>&lt;P&gt;Oh, you must have forgotten to insert declaration:&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New"&gt;type( dfti_descriptor ), pointer :: mydesc&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Dima&lt;/P&gt;</description>
      <pubDate>Thu, 02 Aug 2007 13:42:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-transitioning-from-FFT-to-new-DFT-functions/m-p/914725#M12465</guid>
      <dc:creator>Dmitry_B_Intel</dc:creator>
      <dc:date>2007-08-02T13:42:35Z</dc:date>
    </item>
  </channel>
</rss>

