File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 5151 shell : pwsh
5252 run : .\Scripts\setup-cuda.ps1
5353 env :
54- INPUT_CUDA_VERSION : 12.5.1
54+ # if you want to change the cuda version, go to Scripts/setup-cuda-ps1 and add a download link for the new version there.
55+ INPUT_CUDA_VERSION : 12.9.1
5556
5657 - name : Configure CMake
5758 run : cmake -B ${{github.workspace}}/build -DRAYX_WERROR=ON -DRAYX_REQUIRE_CUDA=ON -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
Original file line number Diff line number Diff line change @@ -17,7 +17,9 @@ $src = "cuda"
1717$dst = " C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v$ ( $CUDA_MAJOR ) .$ ( $CUDA_MINOR ) "
1818$installer = " cuda.exe"
1919
20- if ($CUDA_VERSION_FULL -eq " 12.5.1" ) {
20+ if ($CUDA_VERSION_FULL -eq " 12.9.1" ) {
21+ $downloadUrl = " https://developer.download.nvidia.com/compute/cuda/12.9.1/local_installers/cuda_12.9.1_576.57_windows.exe"
22+ } elseif ($CUDA_VERSION_FULL -eq " 12.5.1" ) {
2123 $downloadUrl = " https://developer.download.nvidia.com/compute/cuda/12.5.1/local_installers/cuda_12.5.1_555.85_windows.exe"
2224} elseif ($CUDA_VERSION_FULL -eq " 12.5.0" ) {
2325 $downloadUrl = " https://developer.download.nvidia.com/compute/cuda/12.5.0/local_installers/cuda_12.5.0_555.85_windows.exe"
You can’t perform that action at this time.
0 commit comments