Skip to content

Commit 06704f9

Browse files
authored
Change v100 runners to a100 (#266)
cuTensor 2.3 was just released (which is an indirect dependency of ours), and while it adds support for new hardware (good), it also deprecates some old hardware (like V100's). This PR updates our CI.
1 parent 47f3cd2 commit 06704f9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/all_libs_release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
matrix:
2525
runner: [
2626
{ arch: arm64, gpu: a100 },
27-
{ arch: amd64, gpu: v100 },
27+
{ arch: amd64, gpu: a100 },
2828
]
2929
runs-on: linux-${{ matrix.runner.arch }}-gpu-${{ matrix.runner.gpu }}-latest-1
3030
container:

.github/workflows/build_wheels.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ jobs:
240240
matrix:
241241
runner: [
242242
{ arch: arm64, gpu: a100 },
243-
{ arch: amd64, gpu: v100 },
243+
{ arch: amd64, gpu: a100 },
244244
]
245245
python: ['3.10', '3.11', '3.12', '3.13']
246246

0 commit comments

Comments
 (0)