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

Commit 8921649

Browse files
authored
Adding MPS Support for LLama3.2 11B Multimodal; Bump torchtune 9.28.24 (#1230)
1 parent ba4169d commit 8921649

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

install/install_requirements.sh

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@ PYTORCH_NIGHTLY_VERSION=dev20240901
5252
# Nightly version for torchvision
5353
VISION_NIGHTLY_VERSION=dev20240901
5454

55+
# Nightly version for torchtune
56+
TUNE_NIGHTLY_VERSION=dev20240928
57+
5558
# Uninstall triton, as nightly will depend on pytorch-triton, which is one and the same
5659
(
5760
set -x
@@ -72,6 +75,7 @@ fi
7275
REQUIREMENTS_TO_INSTALL=(
7376
torch=="2.5.0.${PYTORCH_NIGHTLY_VERSION}"
7477
torchvision=="0.20.0.${VISION_NIGHTLY_VERSION}"
78+
torchtune=="0.3.0.${TUNE_NIGHTLY_VERSION}"
7579
)
7680

7781
# Install the requirements. --extra-index-url tells pip to look for package
@@ -87,12 +91,6 @@ REQUIREMENTS_TO_INSTALL=(
8791
$PIP_EXECUTABLE install torchao=="0.5.0"
8892
)
8993

90-
# Rely on the latest tochtune for flamingo support
91-
(
92-
set -x
93-
$PIP_EXECUTABLE install -I git+https://github.com/pytorch/torchtune.git@d002d45e3ec700fa770d9dcc61b02c59e2507bf6
94-
)
95-
9694
if [[ -x "$(command -v nvidia-smi)" ]]; then
9795
(
9896
set -x

0 commit comments

Comments
 (0)