Skip to content

Commit 4fad5c2

Browse files
committed
.
1 parent b4f5262 commit 4fad5c2

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/linux_cuda_wheel.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,9 @@ jobs:
7575
echo cuda_version_without_periods=${cuda_version_without_periods} >> $GITHUB_ENV
7676
- uses: actions/download-artifact@v3
7777
with:
78-
name: pytorch_torchcodec__${{ matrix.python-version }}_cu${{ env.cuda_version_without_periods }}_x86_64
78+
# This was originally:
79+
# name: pytorch_torchcodec__${{ matrix.python-version }}_cu${{ env.cuda_version_without_periods }}_x86_64
80+
name: pytorch_torchcodec__3.9_cu${{ env.cuda_version_without_periods }}_x86_64
7981
path: pytorch/torchcodec/dist/
8082
- name: Setup miniconda using test-infra
8183
uses: ahmadsharif1/test-infra/.github/actions/setup-miniconda@14bc3c29f88d13b0237ab4ddf00aa409e45ade40
@@ -90,8 +92,8 @@ jobs:
9092
run: ${CONDA_RUN} python -m pip install --upgrade pip
9193
- name: Install PyTorch
9294
run: |
93-
# ${CONDA_RUN} python -m pip install --pre torch --index-url https://download.pytorch.org/whl/nightly/cu${{ env.cuda_version_without_periods }}
94-
${CONDA_RUN} python -m pip install torch torchvision torchaudio
95+
${CONDA_RUN} python -m pip install --pre torch --index-url https://download.pytorch.org/whl/nightly/cu${{ env.cuda_version_without_periods }}
96+
# ${CONDA_RUN} python -m pip install torch torchvision torchaudio
9597
${CONDA_RUN} python -c 'import torch; print(f"{torch.__version__}"); print(f"{torch.__file__}"); print(f"{torch.cuda.is_available()=}")'
9698
- name: Install torchcodec from the wheel
9799
run: |

0 commit comments

Comments
 (0)