Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions install_dev.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,21 @@

def install_torch_nightly_deps():
"""Install torch related dependencies from pinned nightly"""
EXECUTORCH_NIGHTLY_VERSION = "dev20250625"
TORCHAO_NIGHTLY_VERSION = "dev20250620"
EXECUTORCH_NIGHTLY_VERSION = "dev20250801"
TORCHAO_NIGHTLY_VERSION = "dev20250801"
# Torch nightly is aligned with pinned nightly in https://github.com/pytorch/executorch/blob/main/install_requirements.py#L74
TORCH_NIGHTLY_VERSION = "dev20250601"
TORCH_NIGHTLY_VERSION = "dev20250801"
subprocess.check_call(
[
sys.executable,
"-m",
"pip",
"install",
f"executorch==0.7.0.{EXECUTORCH_NIGHTLY_VERSION}",
f"torch==2.8.0.{TORCH_NIGHTLY_VERSION}",
f"torchvision==0.23.0.{TORCH_NIGHTLY_VERSION}",
f"executorch==0.8.0.{EXECUTORCH_NIGHTLY_VERSION}",
f"torch==2.9.0.{TORCH_NIGHTLY_VERSION}",
f"torchvision==0.24.0.{TORCH_NIGHTLY_VERSION}",
f"torchaudio==2.8.0.{TORCH_NIGHTLY_VERSION}",
f"torchao==0.12.0.{TORCHAO_NIGHTLY_VERSION}",
f"torchao==0.13.0.{TORCHAO_NIGHTLY_VERSION}",
"--extra-index-url",
"https://download.pytorch.org/whl/nightly/cpu",
]
Expand Down
Loading