Skip to content

Commit 78b0867

Browse files
authored
update pytorch pin to 08/21
Differential Revision: D61612446 Pull Request resolved: #4820
1 parent 30a777c commit 78b0867

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
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-
b556d31586845fb1e296a975d2b85d9d325205c9
1+
c42ac54d9e817bf0a0366eb78e6c8beba4d5eff5

.ci/scripts/utils.sh

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,9 @@ retry () {
1919
install_executorch() {
2020
which pip
2121
# Install executorch, this assumes that Executorch is checked out in the
22-
# current directory. The --extra-index-url options tell pip to look on the
23-
# pytorch servers for nightly and pre-release versions of torch packages.
24-
pip install . --no-build-isolation -v \
25-
--extra-index-url https://download.pytorch.org/whl/test/cpu \
26-
--extra-index-url https://download.pytorch.org/whl/nightly/cpu
22+
# current directory.
23+
# TODO(T199538337): clean up install scripts to use install_requirements.sh
24+
./install_requirements.sh --pybind xnnpack
2725
# Just print out the list of packages for debugging
2826
pip list
2927
}

install_requirements.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def python_is_compatible():
8989
# NOTE: If a newly-fetched version of the executorch repo changes the value of
9090
# NIGHTLY_VERSION, you should re-run this script to install the necessary
9191
# package versions.
92-
NIGHTLY_VERSION = "dev20240716"
92+
NIGHTLY_VERSION = "dev20240821"
9393

9494
# The pip repository that hosts nightly torch packages.
9595
TORCH_NIGHTLY_URL = "https://download.pytorch.org/whl/nightly/cpu"

0 commit comments

Comments
 (0)