Skip to content

Commit e99eb6a

Browse files
committed
install cuda toolkit in ci
1 parent c35add9 commit e99eb6a

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/smoke-test.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,6 @@ jobs:
1414

1515
steps:
1616
- uses: actions/checkout@v4
17-
18-
- name: Install CUDA Toolkit
19-
uses: Jimver/cuda-toolkit@v0.2.18
20-
with:
21-
cuda: '12.4.0'
2217

2318
- name: Install uv
2419
uses: astral-sh/setup-uv@v3
@@ -31,7 +26,13 @@ jobs:
3126
# ls /usr/local | grep cuda
3227

3328
- name: Install package and dependencies
34-
run: uv sync --dev
29+
run: |
30+
uv sync --dev
31+
uv pip install "nvidia-cuda-runtime-cu12==12.4.127" \
32+
"nvidia-cublas-cu12==12.4.5.8" \
33+
"nvidia-cuda-nvrtc-cu12==12.4.127" \
34+
"nvidia-cuda-nvcc-cu12==12.4.131"
35+
python -m pip list | grep nvidia
3536
3637
- name: Clone FACTO source
3738
run: git clone https://github.com/pytorch-labs/FACTO.git

0 commit comments

Comments
 (0)