Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,17 +74,16 @@ jobs:
- os: windows-2025
arch: x86_64
cuda_version:
["11.8.0", "12.0.1", "12.1.1", "12.2.2", "12.3.2", "12.4.1", "12.5.1", "12.6.3", "12.8.1", "12.9.1", "13.0.1"]
["11.8.0", "12.0.1", "12.1.1", "12.2.2", "12.3.2", "12.4.1", "12.5.1", "12.6.3", "12.8.1", "12.9.1", "13.0.2"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
# Windows: We install Cuda on the agent (slow)
- uses: N-Storm/cuda-toolkit@d68ba29a800229200a2c3f572f9e816d7f67cdb4 # v0.2.24m
- uses: Jimver/cuda-toolkit@6008063726ffe3309d1b22e413d9e88fed91a2f2 # v0.2.29
if: startsWith(matrix.os, 'windows')
id: cuda-toolkit
with:
# Temporary: Use CUDA 13.0.0 for Windows until 13.0.1 is supported with this action.
cuda: ${{ matrix.cuda_version == '13.0.1' && '13.0.0' || matrix.cuda_version }}
cuda: ${{ matrix.cuda_version }}
method: "network"
# The "crt" "nvvm" and "nvptxcompiler" components are added for CUDA 13.
sub-packages: ${{ format('["nvcc"{0},"cudart","cusparse","cublas","thrust","cublas_dev","cusparse_dev"]', startsWith(matrix.cuda_version, '13.') && ',"crt","nvvm","nvptxcompiler"' || '') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs:
# Windows + CUDA: Install CUDA Toolkit
- name: Install CUDA Toolkit
if: inputs.backend == 'cuda' && inputs.platform == 'windows'
uses: Jimver/cuda-toolkit@c35baa1a18fd1fc9dcf47c5bd839bf30559c0bc3 # v0.2.24
uses: Jimver/cuda-toolkit@6008063726ffe3309d1b22e413d9e88fed91a2f2 # v0.2.29
with:
cuda: ${{ inputs.cuda_version }}
method: "network"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
# Linux x64 cross-product
platform: [linux-x64]
gpu_type: [T4, L40S]
cuda_version: ["11.8.0", "12.6.3", "12.8.1", "13.0.1"]
cuda_version: ["11.8.0", "12.6.3", "12.8.1", "13.0.2"]

include:
# Map CUDA version to torch version and PyPI index
Expand All @@ -70,7 +70,7 @@ jobs:
- cuda_version: "12.8.1"
torch_version: "2.8.0"
pypi_index: "https://download.pytorch.org/whl/cu128"
- cuda_version: "13.0.1"
- cuda_version: "13.0.2"
torch_version: "2.9.1"
pypi_index: "https://download.pytorch.org/whl/cu130"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
matrix:
platform: [linux-x64]
gpu_type: [T4, L40S]
cuda_version: ["11.8.0", "12.8.1", "13.0.1"]
cuda_version: ["11.8.0", "12.8.1", "13.0.2"]

include:
# Map CUDA version to torch version and PyPI index
Expand All @@ -75,7 +75,7 @@ jobs:
- cuda_version: "12.8.1"
torch_version: "2.8.0"
pypi_index: "https://download.pytorch.org/whl/cu128"
- cuda_version: "13.0.1"
- cuda_version: "13.0.2"
torch_version: "2.9.1"
pypi_index: "https://download.pytorch.org/whl/cu130"

Expand Down
Loading