Skip to content

Commit a8332a5

Browse files
authored
Use latest PyTorch wheel for Windows (#3581)
Previously we used a pinned version of PyTorch. Looks like the issue mentioned in #3177 (comment) is now fixed, we can enable using the latest wheel.
1 parent 847d9fc commit a8332a5

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/pip-test-windows.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,7 @@ jobs:
7575
- name: Install PyTorch (wheels)
7676
run: |
7777
.venv\Scripts\activate.ps1
78-
# The latest wheel does not work, see https://github.com/intel/intel-xpu-backend-for-triton/issues/3177#issuecomment-2599817729
79-
# Use the latest good one
80-
pip install torch==2.7.0.dev20250110+xpu --index-url https://download.pytorch.org/whl/nightly/xpu
78+
pip install torch --index-url https://download.pytorch.org/whl/nightly/xpu
8179
8280
- name: PyTorch version
8381
run: |

0 commit comments

Comments
 (0)