Skip to content

Commit e2ca701

Browse files
committed
Pin pytorch/pytorch to release/2.13 in windows validation
The windows smoke test reads the expected cuDNN version from pytorch/pytorch's .ci/pytorch/windows/internal/cuda_install.bat. validate-windows-binaries.yml checked out pytorch/pytorch at main (EXPECTED_CUDNN_VERSION=9.23.1), while the release/2.13 binary ships cuDNN 9.20.0, causing: RuntimeError: cuDNN version mismatch for CUDA 13.0. Loaded: 9.20.0 Expected: 9.23.1 Pin the ref to release/2.13 (which expects 9.20.0). Mirrors the linux/aarch64 fix already in this release branch.
1 parent b10d9b3 commit e2ca701

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/validate-windows-binaries.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
with:
111111
runner: ${{ matrix.package_type == 'libtorch' && 'windows.4xlarge' || matrix.validation_runner }}
112112
repository: "pytorch/pytorch"
113-
ref: main
113+
ref: release/2.13
114114
job-name: ${{ matrix.build_name }}
115115
binary-matrix: ${{ toJSON(matrix) }}
116116
timeout: 60

0 commit comments

Comments
 (0)