Skip to content

Commit 8deae88

Browse files
authored
[RELEASE ONLY] Update QNN wheel build job torch pin to 2.9.0 release (#15664)
### Summary QNN wheel build test jobs are failing on CI due to the pinned torch nightly build going out of retention. I believe there were some pinning changes + centralization on main that haven't all been merged into release (conflicts on the picks?). To ensure that release/1.0 CI stays healthy long-term, I'm just updating the pin in the script to point to release torch 2.9.0. ### Test Plan test-qnn-wheel-packages-linux jobs are passing in CI on this PR.
1 parent bf73bc5 commit 8deae88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.ci/scripts/test_wheel_package_qnn.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ run_core_tests () {
139139
echo "=== [$LABEL] Installing wheel & deps ==="
140140
"$PIPBIN" install --upgrade pip
141141
"$PIPBIN" install "$WHEEL_FILE"
142-
"$PIPBIN" install torch=="2.9.0.dev20250906" --index-url "https://download.pytorch.org/whl/nightly/cpu"
142+
"$PIPBIN" install torch=="2.9.0"
143143
"$PIPBIN" install --pre torchao --index-url "https://download.pytorch.org/whl/nightly/cpu"
144144

145145
echo "=== [$LABEL] Import smoke tests ==="

0 commit comments

Comments
 (0)