- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Dear Colleagues,
Up to few months I worked with IMSL and use for my 3D Fast Fourier transforms the command line
CALL c_fast_3dft(A1,A1)
Now I try to use one MKL and use the following commands:
INCLUDE 'mkl_dfti.f90'
USE MKL_DFTI
DIMMENSION LL(3)
INTEGER status, LL
type(DFTI_DESCRIPTOR), POINTER :: My_fft
status=DftiCreateDescriptor(My_fft, DFTI_SINGLE, DFTI_COMPLEX, 3, LL);
status=DftiSetValue(My_fft, DFTI_PLACEMENT, DFTI_NOT_INPLACE)
status=DftiCommitDescriptor(My_fft);
status=DftiComputeForward(My_fft, A1);
status=DftiFreeDescriptor(My_fft);
The compilator gives the following error:
error #6284: There is no matching specific function for this generic function.
I work with Visual studio -19.
What I must change?
Lubomir
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Please post the actual code, using the syntax highlighter (toolbar, icon </> ), 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?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
Could you please attach your minimal error reproducible source code? Also, specify your VS-19 version.
Thanks,
Rahul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
Just a quick reminder to share the reproducer code.
Thanks,
Rahul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
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 post a new query if you require further assistance from Intel.
Thanks,
Rahul

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page