Compile a GPU MEX-File setup using VS2013 and CUDA 6.5

Error using mex nvcc warning : The 'compute_11', 'compute_12', 'compute_13', 'sm_11', 'sm_12', and 'sm_13' architectures are deprecated, and may be removed in a future release. nvcc fatal : Could not set up the environment for Microsoft Visual Studio using 'C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/bin/amd64/../../../VC/bin/amd64/vcvars64.bat'
I am using matlab2014a with CUDA 6.5 and VS2013
ANY ONE COULD HELP WITH THIS ERROR?

2 Comments

Sergey Demyanov commented:
i, Shadi,
I have the same problem. Have you found the solution?
Sergey.
Same problem for me as well. This is under Matlab R2018a and CUDA Toolkit 9.0 with all patches installed.

Sign in to comment.

Answers (2)

I had the same problem and I was able to fix it. The xml file that is generated has some errors, so you need to fix them manually.
At the very end of the file, at line 135 or so, you should a line like this:
LIBPATH=""$VSROOT\VC\Lib\amd64""
What it should look like is the following:
LIBPATH="$VSROOT\VC\Lib\amd64;"
Finally, I had to manually add the "kernel32.lib" to my path. So I installed the Microsoft Windows SDK, and since I am on Windows 7, I added the path to kerel32.lib to my LIB variable, which looks like this after modification
LIB="$VSROOT\VC\ATLMFC\LIB\amd64;$VSROOT\VC\Lib\amd64;$SDKROOT\Lib\X64;$MATLABROOT\lib\$ARCH;$CUDA_LIB_PATH;C:\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\Lib\x64"
Hi, Shadi,
I have the same problem. Have you found the solution?
Sergey.

Tags

Asked:

on 18 Sep 2014

Edited:

on 3 Dec 2020

Community Treasure Hunt

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

Start Hunting!