Skip to content

Commit 52b98ef

Browse files
authored
Use bare nvidia cuda docker image (#363)
1 parent c0130e3 commit 52b98ef

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
name: test-cuda12.6-py${{ matrix.python-version }}-a10g
1717

1818
container:
19-
image: pytorch/almalinux-builder:cuda12.6
19+
image: nvidia/cuda:12.6.3-devel-ubuntu24.04
2020
options: --gpus all
2121

2222
runs-on: linux.g5.4xlarge.nvidia.gpu
@@ -54,17 +54,15 @@ jobs:
5454
restore-keys: |
5555
${{ runner.os }}-deps-
5656
57-
- name: Install CUDA
58-
run: |
59-
conda install nvidia/label/cuda-12.6.3::cuda-toolkit
60-
6157
- name: Install PyTorch
6258
run: |
6359
pip3 install -U --pre torch --index-url https://download.pytorch.org/whl/nightly/cu126
6460
6561
- name: Install Triton
6662
if: steps.cache.outputs.cache-hit != 'true'
6763
run: |
64+
apt-get update
65+
apt-get install -y git
6866
./.github/scripts/install_triton.sh
6967
7068
- name: Install Requirements

0 commit comments

Comments
 (0)