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

1 次查看(过去 30 天)
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 个评论
Matt J
Matt J 2020-12-3
Sergey Demyanov commented:
i, Shadi,
I have the same problem. Have you found the solution?
Sergey.
Matt J
Matt J 2020-12-3
编辑:Matt J 2020-12-3
Same problem for me as well. This is under Matlab R2018a and CUDA Toolkit 9.0 with all patches installed.

请先登录,再进行评论。

回答(2 个)

Eric
Eric 2015-1-30
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"

Sergey Demyanov
Sergey Demyanov 2014-10-1
Hi, Shadi,
I have the same problem. Have you found the solution?
Sergey.

类别

Help CenterFile Exchange 中查找有关 GPU Computing 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by