Problem using Intel MKL with MEX

조회 수: 3 (최근 30일)
AP
AP 2013년 2월 18일
Dear All,
Is it possible to use Intel MKL 10.3 in MEX? I am having problem in using MKL 10.3 along with MEX. I have no problem in compiling and linking the source code. But MATLAB crashes with no helpful message when I run the executable. The same code works perfectly in Visual Studio C++. Is there any conflict for using MKL in MALTAB?
Thanks
  댓글 수: 3
AP
AP 2013년 2월 18일
편집: AP 2013년 2월 18일
Thanks @James. I am using MATLAB Version: 8.0.0.783 (R2012b) in Windows 7 64bit. This code works perfectly in Microsoft Visual C++ 2008 as a standalone code. Crash happens at the end of the code, where I am cleaning up to prevent memory leak. The following is the part of the code, that causes the crash:
if (stat!=0) goto FAILURE;
MKL_FreeBuffers();
free( dpar );
free( f );
FAILURE: printf("\nFAILED to compute ");
MKL_FreeBuffers();
free( dpar );
free( f );
For some reasons, FAILURE runs when the code is successful. I chekced the value of 'stat' and it is always zero which means successful. Why free() should be called twice to cause the crash? When I comment out functions:
free( dpar );
free( f );
right before the label FAILURE, MATLAB does not crash. May I have your thoughts on this?
IntelMKL
IntelMKL 2013년 2월 19일
Afala, In your snippet it seems like the free() calls would naturally be called twice since stat==0 as you say. So it seems you should expect what you get. Besides this, it seems that MKL is not the problem since the problem goes away when you comment the free() calls (and presumeably not the MKL_Free_Buffers() calls).
If you still think this is a problem with using Intel MKL, another option is to post this question (a larger test case would also be helpful) on the Intel MKL user's forum: http://software.intel.com/en-us/forums/intel-math-kernel-library
I don't recall any known problems with useing MKL 10.3 with this version of Matlab.

댓글을 달려면 로그인하십시오.

채택된 답변

James Tursa
James Tursa 2013년 2월 19일
Your posted code looks erroneous because in the success case it will naturally drop through the FAILURE label and do the free stuff again. Maybe you want something like this instead:
if (stat!=0) {
printf("\nFAILED to compute \n");
}
MKL_FreeBuffers();
free( dpar );
free( f );
  댓글 수: 1
AP
AP 2013년 2월 19일
편집: AP 2013년 2월 19일
Thanks @James and @IntelMKL. I put a return before FAILURE and it worked perfectly. Very good catch.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by