Skip to content

Commit

Permalink
update pytorch pin to 08/21
Browse files Browse the repository at this point in the history
  • Loading branch information
lucylq committed Aug 21, 2024
1 parent d8a00e6 commit a424ceb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .ci/docker/ci_commit_pins/pytorch.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
b556d31586845fb1e296a975d2b85d9d325205c9
c42ac54d9e817bf0a0366eb78e6c8beba4d5eff5
7 changes: 2 additions & 5 deletions .ci/scripts/utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,8 @@ retry () {
install_executorch() {
which pip
# Install executorch, this assumes that Executorch is checked out in the
# current directory. The --extra-index-url options tell pip to look on the
# pytorch servers for nightly and pre-release versions of torch packages.
pip install . --no-build-isolation -v \
--extra-index-url https://download.pytorch.org/whl/test/cpu \
--extra-index-url https://download.pytorch.org/whl/nightly/cpu
# current directory.
./install_requirements.sh --pybind xnnpack
# Just print out the list of packages for debugging
pip list
}
Expand Down
2 changes: 1 addition & 1 deletion install_requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def python_is_compatible():
# NOTE: If a newly-fetched version of the executorch repo changes the value of
# NIGHTLY_VERSION, you should re-run this script to install the necessary
# package versions.
NIGHTLY_VERSION = "dev20240716"
NIGHTLY_VERSION = "dev20240821"

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

0 comments on commit a424ceb

Please sign in to comment.