Skip to content
This repository was archived by the owner on Sep 10, 2025. It is now read-only.

Commit e4079f0

Browse files
authored
Update install_requirements.sh
1 parent c03eb63 commit e4079f0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

install/install_requirements.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,13 @@ echo "Using pip executable: $PIP_EXECUTABLE"
6262
# NOTE: If a newly-fetched version of the executorch repo changes the value of
6363
# PYTORCH_NIGHTLY_VERSION, you should re-run this script to install the necessary
6464
# package versions.
65-
PYTORCH_NIGHTLY_VERSION=dev20241030
65+
PYTORCH_NIGHTLY_VERSION=dev20241113
6666

6767
# Nightly version for torchvision
68-
VISION_NIGHTLY_VERSION=dev20241030
68+
VISION_NIGHTLY_VERSION=dev20241113
6969

7070
# Nightly version for torchtune
71-
TUNE_NIGHTLY_VERSION=dev20241010
71+
TUNE_NIGHTLY_VERSION=dev20241126
7272

7373
# Uninstall triton, as nightly will depend on pytorch-triton, which is one and the same
7474
(
@@ -81,7 +81,7 @@ TUNE_NIGHTLY_VERSION=dev20241010
8181
# with cuda for faster execution on cuda GPUs.
8282
if [[ -x "$(command -v nvidia-smi)" ]];
8383
then
84-
TORCH_NIGHTLY_URL="https://download.pytorch.org/whl/nightly/cu121"
84+
TORCH_NIGHTLY_URL="https://download.pytorch.org/whl/nightly/cu124"
8585
elif [[ -x "$(command -v rocminfo)" ]];
8686
then
8787
TORCH_NIGHTLY_URL="https://download.pytorch.org/whl/nightly/rocm6.2"
@@ -93,7 +93,7 @@ fi
9393
REQUIREMENTS_TO_INSTALL=(
9494
torch=="2.6.0.${PYTORCH_NIGHTLY_VERSION}"
9595
torchvision=="0.20.0.${VISION_NIGHTLY_VERSION}"
96-
torchtune=="0.4.0.${TUNE_NIGHTLY_VERSION}"
96+
torchtune=="0.5.0.${TUNE_NIGHTLY_VERSION}"
9797
)
9898

9999
# Install the requirements. --extra-index-url tells pip to look for package
@@ -106,7 +106,7 @@ REQUIREMENTS_TO_INSTALL=(
106106

107107
(
108108
set -x
109-
$PIP_EXECUTABLE install torchao=="0.5.0"
109+
$PIP_EXECUTABLE install git+https://github.com/pytorch/ao.git@2f97b0955953fa1a46594a27f0df2bc48d93e79d
110110
)
111111

112112
if [[ -x "$(command -v nvidia-smi)" ]]; then

0 commit comments

Comments
 (0)