From f3b96b5f005a21a4f84e9bd3ed636e1ec679dd3c Mon Sep 17 00:00:00 2001 From: Guang Yang Date: Thu, 10 Aug 2023 13:52:28 -0700 Subject: [PATCH] Update torch version and torchvision version Summary: Fixes for torchvision vit and emformer rnnt were merged yesterday and are included in the `dev20230810` nightly build. We should update for dependency to the `dev20230810` build instead. Reviewed By: JacobSzwejbka, Gasoonjia Differential Revision: D48236984 fbshipit-source-id: 57a26c981e4f2596dc28b9e98ad3251db8836ca9 --- .ci/docker/ci_commit_pins/pytorch.txt | 2 +- docs/website/docs/tutorials/00_setting_up_executorch.md | 2 +- examples/install_requirements.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.ci/docker/ci_commit_pins/pytorch.txt b/.ci/docker/ci_commit_pins/pytorch.txt index 9c6f6835249..9bb36c59907 100644 --- a/.ci/docker/ci_commit_pins/pytorch.txt +++ b/.ci/docker/ci_commit_pins/pytorch.txt @@ -1 +1 @@ -2.1.0.dev20230809 +2.1.0.dev20230810 diff --git a/docs/website/docs/tutorials/00_setting_up_executorch.md b/docs/website/docs/tutorials/00_setting_up_executorch.md index e543567beaf..93a1adf03bb 100644 --- a/docs/website/docs/tutorials/00_setting_up_executorch.md +++ b/docs/website/docs/tutorials/00_setting_up_executorch.md @@ -24,7 +24,7 @@ Setting up PyTorch # Install the nightly builds # Note: if you are behind a firewall an appropriate proxy server must be setup # for all subsequent steps. -TORCH_VERSION=2.1.0.dev20230809 +TORCH_VERSION=2.1.0.dev20230810 pip install --force-reinstall --pre torch=="${TORCH_VERSION}" -i https://download.pytorch.org/whl/nightly/cpu ``` diff --git a/examples/install_requirements.sh b/examples/install_requirements.sh index 21bc99289b6..d51ae7a3755 100755 --- a/examples/install_requirements.sh +++ b/examples/install_requirements.sh @@ -16,5 +16,5 @@ # `TORCH_VISION_VERSION` value in this document will be the correct version for the # corresponsing version of the repo. -TORCH_VISION_VERSION=0.16.0.dev20230809 +TORCH_VISION_VERSION=0.16.0.dev20230810 pip install --force-reinstall --pre torchvision=="${TORCH_VISION_VERSION}" -i https://download.pytorch.org/whl/nightly/cpu