-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Carsten Griwodz
committed
Jul 26, 2024
1 parent
b3ad67c
commit 10d90b6
Showing
2 changed files
with
14 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
@echo off | ||
echo Downloading CUDA toolkit 9 | ||
appveyor DownloadFile https://developer.nvidia.com/compute/cuda/9.1/Prod/local_installers/cuda_9.1.85_windows -FileName cuda_9.1.85_windows.exe | ||
echo Downloading CUDA toolkit 12 for Windows 11 | ||
appveyor DownloadFile https://developer.download.nvidia.com/compute/cuda/12.0.0/local_installers/cuda_12.0.0_527.41_windows.exe -Filename cuda_12.0.0_windows.exe | ||
dir | ||
echo Installing CUDA toolkit 9 | ||
cuda_9.1.85_windows.exe -s nvcc_9.1 ^ | ||
cublas_9.1 ^ | ||
cublas_dev_9.1 ^ | ||
cudart_9.1 ^ | ||
curand_9.1 ^ | ||
curand_dev_9.1 | ||
echo Installing CUDA toolkit 12 | ||
cuda_12.0.0_windows.exe -s nvcc_12.0 ^ | ||
cublas_12.0 ^ | ||
cublas_dev_12.0 ^ | ||
cudart_12.0 ^ | ||
curand_12.0 ^ | ||
curand_dev_12.0 | ||
|
||
echo CUDA toolkit 9 installed | ||
echo CUDA toolkit 12 installed | ||
|
||
dir "%ProgramFiles%" | ||
|
||
set PATH=%ProgramFiles%\NVIDIA GPU Computing Toolkit\CUDA\v9.1\bin;%ProgramFiles%\NVIDIA GPU Computing Toolkit\CUDA\v9.1\libnvvp;%PATH% | ||
set PATH=%ProgramFiles%\NVIDIA GPU Computing Toolkit\CUDA\v12.0\bin;%ProgramFiles%\NVIDIA GPU Computing Toolkit\CUDA\v12.0\libnvvp;%PATH% | ||
|
||
nvcc -V | ||
nvcc -V |