Skip to content

Commit c94d5a1

Browse files
committed
.
1 parent 4bcab19 commit c94d5a1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/linux_cuda_wheel.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,8 @@ jobs:
8181
run: python -m pip install --upgrade pip
8282
- name: Install PyTorch
8383
run: |
84-
python -m pip install --pre torch --index-url https://download.pytorch.org/whl/nightly/cu${{ matrix.cuda-version }}
84+
cuda_version_without_periods=$(echo ${{ matrix-cuda-version }} | sed 's/\.//g')
85+
python -m pip install --pre torch --index-url https://download.pytorch.org/whl/nightly/cu$cuda_version_without_periods
8586
- name: Install cuda dependencies
8687
run: |
8788
conda install --yes nvidia::libnpp

0 commit comments

Comments
 (0)