Filter löschen
Filter löschen

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

1 Ansicht (letzte 30 Tage)
Shadi
Shadi am 18 Sep. 2014
Bearbeitet: Matt J am 3 Dez. 2020
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 Kommentare
Matt J
Matt J am 3 Dez. 2020
Sergey Demyanov commented:
i, Shadi,
I have the same problem. Have you found the solution?
Sergey.
Matt J
Matt J am 3 Dez. 2020
Bearbeitet: Matt J am 3 Dez. 2020
Same problem for me as well. This is under Matlab R2018a and CUDA Toolkit 9.0 with all patches installed.

Melden Sie sich an, um zu kommentieren.

Antworten (2)

Eric
Eric am 30 Jan. 2015
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 am 1 Okt. 2014
Hi, Shadi,
I have the same problem. Have you found the solution?
Sergey.

Kategorien

Mehr zu GPU Computing finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by