Skip to content

Commit a917649

Browse files
committed
fix
1 parent a906f12 commit a917649

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/validate-repackaged-binary-sizes.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,19 @@ jobs:
2323
fail-fast: false
2424
matrix:
2525
whl:
26-
- url: https://download.pytorch.org/whl/test/cu121/torch-2.2.0-cu121-cp312-cp312-linux_x86_64.whl
26+
- url: https://download.pytorch.org/whl/test/cu121/torch-2.2.0+cu121-cp312-cp312-linux_x86_64.whl
2727
python: "3.12"
2828
artifact: false
29-
- url: https://download.pytorch.org/whl/test/cu121/torch-2.2.0-cu121-cp311-cp311-linux_x86_64.whl
29+
- url: https://download.pytorch.org/whl/test/cu121/torch-2.2.0+cu121-cp311-cp311-linux_x86_64.whl
3030
python: "3.11" # python version to use for smoke tests
3131
upload_artifact: false # upload the repackaged binary as an artifact
32-
- url: https://download.pytorch.org/whl/test/cu121/torch-2.2.0-cu121-cp310-cp310-linux_x86_64.whl
32+
- url: https://download.pytorch.org/whl/test/cu121/torch-2.2.0+cu121-cp310-cp310-linux_x86_64.whl
3333
python: "3.10"
3434
artifact: false
35-
- url: https://download.pytorch.org/whl/test/cu121/torch-2.2.0-cu121-cp319-cp319-linux_x86_64.whl
35+
- url: https://download.pytorch.org/whl/test/cu121/torch-2.2.0+cu121-cp319-cp319-linux_x86_64.whl
3636
python: "3.9"
3737
artifact: false
38-
- url: https://download.pytorch.org/whl/test/cu121/torch-2.2.0-cu121-cp318-cp318-linux_x86_64.whl
38+
- url: https://download.pytorch.org/whl/test/cu121/torch-2.2.0+cu121-cp318-cp318-linux_x86_64.whl
3939
python: "3.8"
4040
artifact: false
4141

@@ -47,11 +47,11 @@ jobs:
4747
script: |
4848
set -ex
4949
export ENV_NAME="conda-env-${{ github.run_id }}"
50-
export GPU_ARCH_VER="11.7"
50+
export GPU_ARCH_VER="12.1"
5151
export GPU_ARCH_TYPE="cuda"
52-
export CUDA_VER="11.7"
52+
export CUDA_VER="12.1"
5353
export DESIRED_PYTHON="${{ matrix.whl.python }}"
54-
export DESIRED_CUDA="cu117"
54+
export DESIRED_CUDA="cu121"
5555
export PACKAGE_TYPE="wheel"
5656
export TARGET_OS="linux"
5757
export INSTALLATION=""

0 commit comments

Comments
 (0)