"git@developer.sourcefind.cn:OpenDAS/dgl.git" did not exist on "2190c39d674f76c65db9ee8da7b43d3021f19c29"
Unverified Commit 7839bdbe authored by Yi Zhang's avatar Yi Zhang Committed by GitHub
Browse files

add cuda installation log (#4696)



* fix cuda installation failure in packaging

* rm stop windows upgrade

* Update cuda_install.bat
Co-authored-by: default avatarNikita Shulga <nshulga@fb.com>
parent 60e2fdc1
...@@ -190,7 +190,9 @@ if not exist "%SRC_DIR%\temp_build\NvToolsExt.7z" ( ...@@ -190,7 +190,9 @@ if not exist "%SRC_DIR%\temp_build\NvToolsExt.7z" (
echo Installing CUDA toolkit... echo Installing CUDA toolkit...
7z x %CUDA_SETUP_FILE% -o"%SRC_DIR%\temp_build\cuda" 7z x %CUDA_SETUP_FILE% -o"%SRC_DIR%\temp_build\cuda"
pushd "%SRC_DIR%\temp_build\cuda" pushd "%SRC_DIR%\temp_build\cuda"
start /wait setup.exe -s %ARGS% start /wait setup.exe -s %ARGS% -loglevel:6 -log:"%cd%/cuda_install_logs"
echo %errorlevel%
popd popd
echo Installing VS integration... echo Installing VS integration...
...@@ -219,6 +221,10 @@ set "NVTOOLSEXT_PATH=%ProgramFiles%\NVIDIA Corporation\NvToolsExt\bin\x64" ...@@ -219,6 +221,10 @@ set "NVTOOLSEXT_PATH=%ProgramFiles%\NVIDIA Corporation\NvToolsExt\bin\x64"
if not exist "%ProgramFiles%\NVIDIA GPU Computing Toolkit\CUDA\v%CUDA_VERSION_STR%\bin\nvcc.exe" ( if not exist "%ProgramFiles%\NVIDIA GPU Computing Toolkit\CUDA\v%CUDA_VERSION_STR%\bin\nvcc.exe" (
echo CUDA %CUDA_VERSION_STR% installed failed. echo CUDA %CUDA_VERSION_STR% installed failed.
echo --------- RunDll32.exe.log
type "%SRC_DIR%\temp_build\cuda\cuda_install_logs\LOG.RunDll32.exe.log"
echo --------- setup.exe.log -------
type "%SRC_DIR%\temp_build\cuda\cuda_install_logs\LOG.setup.exe.log"
exit /b 1 exit /b 1
) )
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment