- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Dear all;
I need to use mkl_dfti module. For the following sample code,
program test use MKL_DFTI Complex :: X(32) Real :: Y(34) type(DFTI_DESCRIPTOR), POINTER :: My_Desc1_Handle, My_Desc2_Handle Integer :: Status Status = DftiCreateDescriptor( My_Desc1_Handle, DFTI_SINGLE,& DFTI_COMPLEX, 1, 32 ) Status = DftiCommitDescriptor( My_Desc1_Handle ) Status = DftiComputeForward( My_Desc1_Handle, X ) Status = DftiFreeDescriptor(My_Desc1_Handle) Status = DftiCreateDescriptor(My_Desc2_Handle, DFTI_SINGLE,& DFTI_REAL, 1, 32) Status = DftiCommitDescriptor(My_Desc2_Handle) Status = DftiComputeForward(My_Desc2_Handle, Y) Status = DftiFreeDescriptor(My_Desc2_Handle) end
I am getting following error;
error #7002: Error in opening the compiled module file. Check INCLUDE paths. [MKL_DFTI] use MKL_DFTI ----^
I have checked my environment variables.
echo $MKLROOT /usr/local/intel-2015.2/composer_xe_2015.2.164/mkl echo $CPATH /usr/local/intel-2015.2/composer_xe_2015.2.164/ipp/include:/usr/local/intel-2015.2/composer_xe_2015.2.164/mkl/include: /usr/local/intel-2015.2/composer_xe_2015.2.164/tbb/include:/usr/local/intel-2015.2/composer_xe_2015.2.164/ipp/include: /usr/local/intel-2015.2/composer_xe_2015.2.164/mkl/include:/usr/local/intel-2015.2/composer_xe_2015.2.164/tbb/include: /usr/local/intel-2015.2/composer_xe_2015.2.164/ipp/include:/usr/local/intel-2015.2/composer_xe_2015.2.164/mkl/include: /usr/local/intel-2015.2/composer_xe_2015.2.164/tbb/include:/usr/local/intel-2015.2/composer_xe_2015.2.164/ipp/include: /usr/local/intel-2015.2/composer_xe_2015.2.164/mkl/include:/usr/local/intel-2015.2/composer_xe_2015.2.164/tbb/include echo $LD_LIBRARY_PATH /usr/local/intel-2015.2/composer_xe_2015.2.164/compiler/lib/intel64: /usr/local/intel-2015.2/composer_xe_2015.2.164/mpirt/lib/intel64: /usr/local/intel-2015.2/composer_xe_2015.2.164/ipp/../compiler/lib/intel64: /usr/local/intel-2015.2/composer_xe_2015.2.164/ipp/lib/intel64: /usr/local/intel-2015.2/composer_xe_2015.2.164/ipp/tools/intel64/perfsys: /usr/local/intel-2015.2/composer_xe_2015.2.164/compiler/lib/intel64: /usr/local/intel-2015.2/composer_xe_2015.2.164/mkl/lib/intel64: /usr/local/intel-2015.2/composer_xe_2015.2.164/tbb/lib/intel64/gcc4.1: /usr/local/intel-2015.2/composer_xe_2015.2.164/debugger/ipt/intel64/lib
I used following command to compile: ifort -mkl test.f90
Please help me to figure out the mistake.
Best Regards
Masrul
Link Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Masrul,
Either use the following command line (in that order of source files) for compilation:
ifort -mkl $MKLROOT/include/mkl_dfti.f90 test.f90
or insert the following statement as first line into your test code:
include "mkl_dfti.f90"
Both will create the module files mkl_dfti_type.mod and mkl_dfti.mod in your working directory.
Best regards
Klaus-Dieter
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page