Skip to content
Snippets Groups Projects
Commit 8ae0104d authored by calrama's avatar calrama
Browse files

windows1809: Update cuda patch release

Network installer of previous release doesn't work correctly anymore
parent 9ebc9090
No related branches found
No related tags found
No related merge requests found
FROM git.imp.fu-berlin.de:5000/bioroboticslab/robofish/docker:base-windows1809 FROM git.imp.fu-berlin.de:5000/bioroboticslab/robofish/docker:base-windows1809
RUN [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \ RUN [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
(New-Object Net.WebClient).DownloadFile('https://developer.nvidia.com/compute/cuda/10.1/Prod/network_installers/cuda_10.1.105_win10_network.exe', 'C:/cuda_10.1.105_win10_network.exe'); \ (New-Object Net.WebClient).DownloadFile('https://developer.download.nvidia.com/compute/cuda/10.1/Prod/network_installers/cuda_10.1.243_win10_network.exe', 'C:/cuda_10.1.243_win10_network.exe'); \
(New-Object Net.WebClient).DownloadFile('https://developer.download.nvidia.com/compute/redist/cudnn/v7.5.0/cudnn-10.1-windows10-x64-v7.5.0.56.zip', 'C:/cudnn-10.1-windows10-x64-v7.5.0.56.zip'); \ (New-Object Net.WebClient).DownloadFile('https://developer.download.nvidia.com/compute/redist/cudnn/v7.6.1/cudnn-10.1-windows10-x64-v7.6.1.34.zip', 'C:/cudnn-10.1-windows10-x64-v7.6.1.34.zip'); \
Start-Process C:/cuda_10.1.105_win10_network.exe -NoNewWindow -Wait -ArgumentList '-s nvcc_10.1 cublas_10.1 cublas_dev_10.1 cudart_10.1 cufft_10.1 cufft_dev_10.1 curand_10.1 curand_dev_10.1 cusolver_10.1 cusolver_dev_10.1 cusparse_10.1 cusparse_dev_10.1 npp_10.1 npp_dev_10.1 nvrtc_10.1 nvrtc_dev_10.1 nvml_dev_10.1'; \ Start-Process C:/cuda_10.1.243_win10_network.exe -NoNewWindow -Wait -ArgumentList '-s nvcc_10.1 cublas_10.1 cublas_dev_10.1 cudart_10.1 cufft_10.1 cufft_dev_10.1 curand_10.1 curand_dev_10.1 cusolver_10.1 cusolver_dev_10.1 cusparse_10.1 cusparse_dev_10.1 npp_10.1 npp_dev_10.1 nvrtc_10.1 nvrtc_dev_10.1 nvml_dev_10.1'; \
Remove-Item -Force C:/cuda_10.1.105_win10_network.exe; \ Remove-Item -Force C:/cuda_10.1.243_win10_network.exe; \
7z x C:/cudnn-10.1-windows10-x64-v7.5.0.56.zip; \ 7z x C:/cudnn-10.1-windows10-x64-v7.6.1.34.zip; \
Copy-Item -Force -Recurse "./cuda/*" "$([Environment]::GetEnvironmentVariable('CUDA_PATH', [EnvironmentVariableTarget]::Machine))"; \ Copy-Item -Force -Recurse "./cuda/*" "$([Environment]::GetEnvironmentVariable('CUDA_PATH', [EnvironmentVariableTarget]::Machine))"; \
Remove-Item -Force -Recurse "./cuda"; \ Remove-Item -Force -Recurse "./cuda"; \
Remove-Item -Force C:/cudnn-10.1-windows10-x64-v7.5.0.56.zip Remove-Item -Force C:/cudnn-10.1-windows10-x64-v7.6.1.34.zip
COPY opengl32.dll C:/Windows/System32/opengl32.dll COPY opengl32.dll C:/Windows/System32/opengl32.dll
COPY glu32.dll C:/Windows/System32/glu32.dll COPY glu32.dll C:/Windows/System32/glu32.dll
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment