26
26
# Ubuntu 20.04 CUDA
27
27
28
28
# Python 3.10
29
- - { artname: 'wheel', os: ubuntu-22.04, pyver: '3.10', cuda: '12.8.1', rocm: '', torch: '2.7.0', cudaarch: '8.0 8.6 8.9 9.0 10.0 12.0+PTX' }
29
+ # - { artname: 'wheel', os: ubuntu-22.04, pyver: '3.10', cuda: '12.8.1', rocm: '', torch: '2.7.0', cudaarch: '8.0 8.6 8.9 9.0 10.0 12.0+PTX' }
30
30
31
31
# Python 3.11
32
32
- { artname: 'wheel', os: ubuntu-22.04, pyver: '3.11', cuda: '12.8.1', rocm: '', torch: '2.7.0', cudaarch: '8.0 8.6 8.9 9.0 10.0 12.0+PTX' }
@@ -35,24 +35,24 @@ jobs:
35
35
- { artname: 'wheel', os: ubuntu-22.04, pyver: '3.12', cuda: '12.8.1', rocm: '', torch: '2.7.0', cudaarch: '8.0 8.6 8.9 9.0 10.0 12.0+PTX' }
36
36
37
37
# Python 3.13
38
- - { artname: 'wheel', os: ubuntu-22.04, pyver: '3.13', cuda: '12.8.1', rocm: '', torch: '2.7.0', cudaarch: '8.0 8.6 8.9 9.0 10.0 12.0+PTX' }
38
+ - { artname: 'wheel', os: ubuntu-22.04, pyver: '3.13.3 ', cuda: '12.8.1', rocm: '', torch: '2.7.0', cudaarch: '8.0 8.6 8.9 9.0 10.0 12.0+PTX' }
39
39
40
40
# Windows 2022 CUDA
41
41
42
42
# Python 3.10
43
- - { artname: 'wheel', os: windows-2022, pyver: '3.10', cuda: '12.8.1', rocm: '', torch: '2.7.0', cudaarch: '8.0 8.6 8.9 9.0 10.0 12.0+PTX' }
43
+ # - { artname: 'wheel', os: windows-2022, pyver: '3.10', cuda: '12.8.1', rocm: '', torch: '2.7.0', cudaarch: '8.0 8.6 8.9 9.0 10.0 12.0+PTX' }
44
44
45
45
# Python 3.11
46
- - { artname: 'wheel', os: windows-2022, pyver: '3.11', cuda: '12.8.1', rocm: '', torch: '2.7.0', cudaarch: '8.0 8.6 8.9 9.0 10.0 12.0+PTX' }
46
+ # - { artname: 'wheel', os: windows-2022, pyver: '3.11', cuda: '12.8.1', rocm: '', torch: '2.7.0', cudaarch: '8.0 8.6 8.9 9.0 10.0 12.0+PTX' }
47
47
48
48
# Python 3.12
49
- - { artname: 'wheel', os: windows-2022, pyver: '3.12', cuda: '12.8.1', rocm: '', torch: '2.7.0', cudaarch: '8.0 8.6 8.9 9.0 10.0 12.0+PTX' }
49
+ # - { artname: 'wheel', os: windows-2022, pyver: '3.12', cuda: '12.8.1', rocm: '', torch: '2.7.0', cudaarch: '8.0 8.6 8.9 9.0 10.0 12.0+PTX' }
50
50
51
51
# Python 3.13
52
- - { artname: 'wheel', os: windows-2022, pyver: '3.13', cuda: '12.8.1', rocm: '', torch: '2.7.0', cudaarch: '8.0 8.6 8.9 9.0 10.0 12.0+PTX' }
52
+ - { artname: 'wheel', os: windows-2022, pyver: '3.13.3 ', cuda: '12.8.1', rocm: '', torch: '2.7.0', cudaarch: '8.0 8.6 8.9 9.0 10.0 12.0+PTX' }
53
53
54
54
# sdist
55
- - { artname: 'sdist', os: ubuntu-22.04, pyver: '3.11', cuda: '', rocm: '', torch: '2.7.0', cudaarch: '' }
55
+ # - { artname: 'sdist', os: ubuntu-22.04, pyver: '3.11', cuda: '', rocm: '', torch: '2.7.0', cudaarch: '' }
56
56
57
57
fail-fast : false
58
58
@@ -140,32 +140,6 @@ jobs:
140
140
echo "CUDA_PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.8" | Out-File -FilePath $env:GITHUB_ENV -Append -Encoding utf8
141
141
echo "CUDA_PATH_V12_8=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.8" | Out-File -FilePath $env:GITHUB_ENV -Append -Encoding utf8
142
142
143
- # Attempt to pin nvidia-persistenced to exactly 575.57.08-0ubuntu1 until dependency issue is fixed in CUDA
144
- # https://forums.developer.nvidia.com/t/nvidia-driver-570-installation-is-broken-again/335219
145
- # - name: Enable NVIDIA CUDA APT repo
146
- # if: runner.os == 'Linux'
147
- # shell: bash
148
- # run: |
149
- # set -euo pipefail
150
- # UBUNTU=$(lsb_release -rs | tr -d '.')
151
- # DIST="ubuntu${UBUNTU}"
152
- # ARCH="x86_64"
153
- # sudo mkdir -p /usr/share/keyrings
154
- # curl -fsSL \
155
- # https://developer.download.nvidia.com/compute/cuda/repos/${DIST}/${ARCH}/cuda-archive-keyring.gpg |
156
- # sudo tee /usr/share/keyrings/cuda-archive-keyring.gpg >/dev/null
157
- # echo "deb [signed-by=/usr/share/keyrings/cuda-archive-keyring.gpg] \
158
- # https://developer.download.nvidia.com/compute/cuda/repos/${DIST}/${ARCH}/ /" |
159
- # sudo tee /etc/apt/sources.list.d/cuda.list
160
- # sudo apt-get update -y
161
- #
162
- # - name: Pin nvidia-persistenced 575.57.08-0ubuntu1
163
- # if: runner.os != 'Windows' && matrix.cuda != ''
164
- # run: |
165
- # sudo apt-get update
166
- # sudo apt-get install -y --allow-downgrades nvidia-persistenced=575.57.08-0ubuntu1 libnvidia-cfg1=575.57.08-0ubuntu1
167
- # sudo apt-mark hold nvidia-persistenced libnvidia-cfg1
168
-
169
143
# TODO: Find specific sub-packages
170
144
- name : Install Linux CUDA ${{ matrix.cuda }}
171
145
0 commit comments