You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 13, 2024. It is now read-only.
PATH variable of cuda bat files not correctly stated, leading to errors when it hits parantheses
set PATH=%CUDA_PATH_V9_1%\bin;%PATH%
should be
set "PATH=%CUDA_PATH_V9_1%\bin;%PATH%"
setup.bat needs to declare the proper version of VC to compile with.
call "%VS15VCVARSALL%" x86_amd64
becomes
call "%VS15VCVARSALL%" x86_amd64 -vcvars_ver=14.11.25503
The proper components must be installed within the Individual Components tab of Visual Studio Installer (except for the VC2015 one)
A CUDA file must then be modified because it has a check that breaks everything because the _MSC_VER variable does not get correctly passed to it.
#if _MSC_VER < 1600 || _MSC_VER > 1911
becomes
#if _MSC_VER < 1600
After all that, it'll compile.
The text was updated successfully, but these errors were encountered: