使用Intel mkl库时,Matlab尝试“mex -o .cpp”无法找到参考

时间:2016-03-17 05:56:48

标签: c++ matlab intel-mkl

当我尝试在matlab中编译cpp代码时

#include "mex.h"
#include "mkl_vml.h"
#include "mkl_cblas.h"
#include "mkl_service.h"
#include <omp.h>
typedef ptrdiff_t intt;

void mexFunction( int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[] )
{
   if( nrhs != 2) mexErrMsgTxt("2 inputs are required.");
   if( nlhs != 1) mexErrMsgTxt("1 output is required.");

   float *X = (float*)mxGetPr(prhs[0]);
   intt dim = mxGetM(prhs[0]), m = mxGetN(prhs[0]);

   float gamma = (float)mxGetScalar(prhs[1]);

   /*- Init -*/
   int mkldy = mkl_get_dynamic();
   mkl_set_dynamic(1);

   // Distance matrix D=-gamma*0.5(x^2+y^2 - xy) //
   float *D = (float*)mxCalloc(m*m,sizeof(float));

   cblas_ssyrk(CblasColMajor,CblasUpper,CblasTrans,m,dim,gamma,X,dim,0.0,D,m);

   float *diagD = (float*)mxCalloc(m, sizeof(float));
   float *ones  = (float*)mxCalloc(m, sizeof(float));
   intt count = 0;
   for(int i = 0; i < m; i++){
       ones[i]  = 1;
       diagD[i] = 0.5*D[count];
       count    += (m+1);
   }
   cblas_ssyr2(CblasColMajor,CblasUpper,m,-1,diagD,1,ones,1,D,m);
   mxFree(diagD);
   mxFree(ones);

   // W = exp(D) //
   mwSize odims[2]  = {m,m};
   plhs[0] = mxCreateNumericArray(2, odims, mxSINGLE_CLASS, mxREAL);
   float *W = (float*)mxGetPr( plhs[0] );
   vsExp(m*m, D, W);
   mxFree(D);

   mkl_set_dynamic(mkldy);
}

我把所有头文件放在同一个文件夹中可以尝试编译代码,它报告错误

Pxx_mex.cpp:(.text+0x7f): undefined reference
to `MKL_Get_Dynamic'

我认为我使用错误的方式使用Intel mkl库,因此存在编译错误。如何解决这个问题?

0 个答案:

没有答案
相关问题