Skip to content

Commit 11515f8

Browse files
committed
Bump PyTorch pin to 2025-03-25
Found release from https://hud2.pytorch.org/hud/pytorch/pytorch/nightly/0 . ghstack-source-id: 3d5db98 ghstack-comment-id: 2751751034 Pull Request resolved: #9578
1 parent ce74f8e commit 11515f8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.ci/docker/ci_commit_pins/pytorch.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7ae0ce6360b6e4f944906502d20da24c04debee5
1+
59d5cf083b4f860dea76fe8936076177f9367f10

backends/arm/test/models/test_conformer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class TestConformer(unittest.TestCase):
3232
ops_after_partitioner = {
3333
"executorch_exir_dialects_edge__ops_aten_max_default": 1,
3434
"executorch_exir_dialects_edge__ops_aten_where_self": 4,
35-
"torch.ops.aten._assert_scalar.default": 10,
35+
"torch.ops.aten._assert_scalar.default": 7,
3636
"torch.ops.aten._local_scalar_dense.default": 1,
3737
"torch.ops.higher_order.executorch_call_delegate": 4,
3838
}

install_requirements.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def python_is_compatible():
7171
#
7272
# NOTE: If you're changing, make the corresponding change in .ci/docker/ci_commit_pins/pytorch.txt
7373
# by picking the hash from the same date in https://hud.pytorch.org/hud/pytorch/pytorch/nightly/
74-
NIGHTLY_VERSION = "dev20250310"
74+
NIGHTLY_VERSION = "dev20250325"
7575

7676

7777
def install_requirements(use_pytorch_nightly):
@@ -80,7 +80,7 @@ def install_requirements(use_pytorch_nightly):
8080
# Setting use_pytorch_nightly to false to test the pinned PyTorch commit. Note
8181
# that we don't need to set any version number there because they have already
8282
# been installed on CI before this step, so pip won't reinstall them
83-
f"torch==2.7.0.{NIGHTLY_VERSION}" if use_pytorch_nightly else "torch",
83+
f"torch==2.8.0.{NIGHTLY_VERSION}" if use_pytorch_nightly else "torch",
8484
(
8585
f"torchvision==0.22.0.{NIGHTLY_VERSION}"
8686
if use_pytorch_nightly

0 commit comments

Comments
 (0)