We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bcab19 commit c94d5a1Copy full SHA for c94d5a1
.github/workflows/linux_cuda_wheel.yaml
@@ -81,7 +81,8 @@ jobs:
81
run: python -m pip install --upgrade pip
82
- name: Install PyTorch
83
run: |
84
- python -m pip install --pre torch --index-url https://download.pytorch.org/whl/nightly/cu${{ matrix.cuda-version }}
+ 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
86
- name: Install cuda dependencies
87
88
conda install --yes nvidia::libnpp
0 commit comments