Creating mex files from CUDA code

2019-07-19 17:06发布

I have Windows XP 64 bit, MATLAB R2012a( R2010a is also available here, but not installed), VS 2010 (VS 2008/VS 2012 is also available, but not installed) and CUDA 5.0 installed..

Is it possible to compile CUDA codes with these in MATLAB to create a mex file? Can anyone help with the necessary steps or any thing further need to be installed??

Thanks in advance

标签: matlab cuda mex
3条回答
Ridiculous、
2楼-- · 2019-07-19 17:17

I noticed that in Matlab2015b, you can compile .cu file like below:

mexcuda XXX.cu

which I've been using for a while, and it's much easier! Hope this could help you, though it might not help a lot since you are not using 2015b.

查看更多
劫难
3楼-- · 2019-07-19 17:28

I would suggest using the procedure in Compiling CUDA mex files with Visual Studio:

Configuration: Matlab 2010a, Visual Studio 2010, Intel 64bit machine.

  1. File → New Project

  2. Choose MFC DLL as well as the Name of the project and the Location
    Choose OK

  3. Choose Next

  4. Choose Finish (do not change any selection)

  5. Solution Explorer → Right click on the project's name → Build Customizations → CUDA 5.0 → OK

  6. Project → Add New Item; Choose C++ File (.cpp); Choose a Name for the file

  7. Add the line #include "stdafx.h"; of course, include "mex.h" and <cuda.h>, <cuda_runtime.h> etc. as appropriate

  8. Write your code containing the mexFunction under the above include lines; this .cpp file should contain only CPU-side code, namely, the mex function and other C++ functions. Note that the mex function as well as the C++ functions should not contain kernel function invocations (no <<< >>> syntax permitted); kernel invocations should be contained in "wrapper functions" declared in this .cpp file as extern "C" and then defined in a .cu file (see next point)

  9. Project → Add New Item; Choose C++ File (.cpp); Choose a Name for the file, but use the .cu extension; this .cu file should contain the needed global as well as device functions

  10. Add the following lines to the .def file

LIBRARY "TestMex" EXPORTS mexFunction

Replace TestMex with the name of your .cpp file

  1. Project → Properties → Configuration Properties → C/C++ &rarr General → Additional Include Directories → Add C:\Program Files\MATLAB\R2010a\extern\include

  2. Project → Properties → Configuration Properties → Linker &rarr General → OutPut File → $(OutDir)$(ProjectName).mexw64

  3. Project → Properties → Configuration Properties → Linker &rarr Input → Additional Dependencies → C:\Program Files\MATLAB\R2010a\extern\lib\win64\microsoft\libmex.lib; C:\Program Files\MATLAB\R2010a\extern\lib\win64\microsoft\libmx.lib

  4. Project → Properties → Configuration Properties → CUDA C/C++ &rarr Device → Choose your compute capability

  5. Project → Properties → Configuration Properties → Configuration Manager → Active Solution Platform → New → x64 → Copy Settings From Win32

  6. Project → Properties → Configuration Properties → Linker &rarr Input → Additional Dependencies → Add cudart.lib

  7. The directory containing the compiled mex library is ..\x64\Debug

You can find a worked out example in the attached Visual Studio 2010 project.

The procedure has been tested for CUDA 5.0, Visual Studio 2010 and Matlab 2010a/2012b, but perhaps it could be of interest also to people using other versions of the above products.

查看更多
乱世女痞
4楼-- · 2019-07-19 17:40

Using MATLAB 2013

If you can upgrade to 2013 read on, otherwise go to the bottom of the page for some suggestions for 2012 version. Even if you are not planning to upgrade, still read the first section, it might give you some clues.

I have always had issues using MATLAB 2012 to compile MEX functions. Upgrading to 2013 made it very easy for me to compile CUDA MEX files without worrying about invoking NVCC inside MATLAB with all the crazy flags.

All you would need is to copy the mexopts.bat file from your MATLAB installation:

matlabroot\toolbox\distcomp\gpu\extern\src\mex\win64\mexopts.bat2 (where matlabroot is the MATLAB installation folder, something like:C:\Program Files\MATLAB\Matlab2013a.)

to your project folder containing the .cu file with mex entry point function. In addition, you would need to add two CUDA libraries: cuda.lib and cudart.lib to the same folder from the CUDA installation folder. I have included these two libs in my project, they should also be available somewhere in your CUDA Toolkit installation folder.

Then you would go to MATLAB and run mex -setup to select a compiler. Since you have Visual Studio 2010 installed you should see it in the list. Just follow the instructions on the screen and select your compiler -- more details. If you don't see the compiler or things go wrong, you can try installing the Windows SDK. Also look at this post about compilers and the version of Visual Studio.

If you want to see your MEX compiles checkout my project. Download the content and put them in a folder somewhere in your computer and open up MATLAB. Then go to that directory and in MATLAB confirm that you are indeed in that directory by using pwd in the command window; it will tell you if you are in that directory, but make sure that the folder and the subfolders are added to the file path (right click on the folder in MATLAB and select add path > folder and subfolders)

Then, run mex f.cu. This will compile the CUDA MEX file and puts the library in the same folder, and you can call f as a function in MATLAB and MATLAB won't care where it came from. To See if it actually works, you can make a gpuArray and call the f function on it. Like this:

input = gpuArray.ones(100,100); % makes an array of ones (100x100) on the gpu.
y = f(input) % will perform the operation defined in f.cu

You would get something like this:

enter image description here

Suggestions for compiling MEX files in MATLAB 2012:

I have never had success compiling MEX files on MATLAB 2012, 64bit Windows, even with Visual Studio 2010 Professional. But to start, you can look at this doc page for MEX files and CUDA. Also look at this page for some general information about compiling MEX files in MATLAB, it might give you some ideas of the things involved. Once you went through these pages, look at NVCC compiler and how to invoke it properly in MATLAB. I has always been difficult to get it right for me and I never had success. But don't get discouraged. The key is to see if you can compile basic C or C++ files using a compiler in MATLAB. And once that is successful, move onto compiling CUDA. If nothing works, check this post out about compiling directly in Visual Studio. Good luck !

References:

2: http://www.mathworks.com/help/distcomp/create-and-run-mex-files-containing-cuda-code.html

查看更多
登录 后发表回答