From 669de85a8d72e6a75aa6ddfb50f3966b94af38ad Mon Sep 17 00:00:00 2001 From: Siddartha Pothapragada Date: Wed, 2 Jul 2025 17:06:51 -0700 Subject: [PATCH] [Release 0.7] Update all docs to reflect the new branch 'release/0.7' --- docs/README.md | 2 +- docs/source/getting-started.md | 2 +- docs/source/llm/getting-started.md | 4 ++-- docs/source/using-executorch-building-from-source.md | 2 +- docs/source/using-executorch-ios.md | 2 +- .../android/LlamaDemo/docs/delegates/mediatek_README.md | 2 +- .../android/LlamaDemo/docs/delegates/qualcomm_README.md | 4 ++-- .../android/LlamaDemo/docs/delegates/xnnpack_README.md | 2 +- .../demo-apps/apple_ios/LLaMA/docs/delegates/mps_README.md | 2 +- .../apple_ios/LLaMA/docs/delegates/xnnpack_README.md | 2 +- extension/benchmark/apple/Benchmark/README.md | 2 +- 11 files changed, 13 insertions(+), 13 deletions(-) diff --git a/docs/README.md b/docs/README.md index e30decb9362..eed16df1b8d 100644 --- a/docs/README.md +++ b/docs/README.md @@ -40,7 +40,7 @@ To build the documentation locally: 1. Clone the ExecuTorch repo to your machine. ```bash - git clone -b viable/strict https://github.com/pytorch/executorch.git && cd executorch + git clone -b release/0.7 https://github.com/pytorch/executorch.git && cd executorch ``` 1. If you don't have it already, start either a Python virtual envitonment: diff --git a/docs/source/getting-started.md b/docs/source/getting-started.md index be15e7d6ea2..ce9283dfa2b 100644 --- a/docs/source/getting-started.md +++ b/docs/source/getting-started.md @@ -168,7 +168,7 @@ ExecuTorch provides C++ APIs, which can be used to target embedded or mobile dev CMake is the preferred build system for the ExecuTorch C++ runtime. To use with CMake, clone the ExecuTorch repository as a subdirectory of your project, and use CMake's `add_subdirectory("executorch")` to include the dependency. The `executorch` target, as well as kernel and backend targets will be made available to link against. The runtime can also be built standalone to support diverse toolchains. See [Using ExecuTorch with C++](using-executorch-cpp.md) for a detailed description of build integration, targets, and cross compilation. ``` -git clone -b viable/strict https://github.com/pytorch/executorch.git +git clone -b release/0.7 https://github.com/pytorch/executorch.git ``` ```python # CMakeLists.txt diff --git a/docs/source/llm/getting-started.md b/docs/source/llm/getting-started.md index 7d54f4d2dde..a1872000da7 100644 --- a/docs/source/llm/getting-started.md +++ b/docs/source/llm/getting-started.md @@ -45,7 +45,7 @@ cd et-nanogpt # Clone the ExecuTorch repository. mkdir third-party -git clone -b viable/strict https://github.com/pytorch/executorch.git third-party/executorch && cd third-party/executorch +git clone -b release/0.7 https://github.com/pytorch/executorch.git third-party/executorch && cd third-party/executorch # Create either a Python virtual environment: python3 -m venv .venv && source .venv/bin/activate && pip install --upgrade pip @@ -79,7 +79,7 @@ pyenv virtualenv 3.10 executorch pyenv activate executorch # Clone the ExecuTorch repository. -git clone -b viable/strict https://github.com/pytorch/executorch.git third-party/executorch && cd third-party/executorch +git clone -b release/0.7 https://github.com/pytorch/executorch.git third-party/executorch && cd third-party/executorch # Install requirements. PYTHON_EXECUTABLE=python ./install_executorch.sh diff --git a/docs/source/using-executorch-building-from-source.md b/docs/source/using-executorch-building-from-source.md index a5518818263..c72e2702d98 100644 --- a/docs/source/using-executorch-building-from-source.md +++ b/docs/source/using-executorch-building-from-source.md @@ -42,7 +42,7 @@ portability details. ```bash # Clone the ExecuTorch repo from GitHub - git clone -b viable/strict https://github.com/pytorch/executorch.git && cd executorch + git clone -b release/0.7 https://github.com/pytorch/executorch.git && cd executorch ``` ### Create a Virtual Environment diff --git a/docs/source/using-executorch-ios.md b/docs/source/using-executorch-ios.md index e3668a29e33..7f977786703 100644 --- a/docs/source/using-executorch-ios.md +++ b/docs/source/using-executorch-ios.md @@ -96,7 +96,7 @@ xcode-select --install 2. Clone ExecuTorch: ```bash -git clone -b viable/strict https://github.com/pytorch/executorch.git --depth 1 --recurse-submodules --shallow-submodules && cd executorch +git clone -b release/0.7 https://github.com/pytorch/executorch.git --depth 1 --recurse-submodules --shallow-submodules && cd executorch ``` 3. Set up [Python](https://www.python.org/downloads/macos/) 3.10+ and activate a virtual environment: diff --git a/examples/demo-apps/android/LlamaDemo/docs/delegates/mediatek_README.md b/examples/demo-apps/android/LlamaDemo/docs/delegates/mediatek_README.md index 2ad87df0653..4b696cde398 100644 --- a/examples/demo-apps/android/LlamaDemo/docs/delegates/mediatek_README.md +++ b/examples/demo-apps/android/LlamaDemo/docs/delegates/mediatek_README.md @@ -24,7 +24,7 @@ In this section, we will need to set up the ExecuTorch repo first with Conda env Checkout ExecuTorch repo and sync submodules ``` -git clone -b viable/strict https://github.com/pytorch/executorch.git && cd executorch +git clone -b release/0.7 https://github.com/pytorch/executorch.git && cd executorch ``` Create either a Python virtual environment: diff --git a/examples/demo-apps/android/LlamaDemo/docs/delegates/qualcomm_README.md b/examples/demo-apps/android/LlamaDemo/docs/delegates/qualcomm_README.md index 360e92a5f30..51f04f6f8ce 100644 --- a/examples/demo-apps/android/LlamaDemo/docs/delegates/qualcomm_README.md +++ b/examples/demo-apps/android/LlamaDemo/docs/delegates/qualcomm_README.md @@ -22,7 +22,7 @@ In this section, we will need to set up the ExecuTorch repo first with Conda env Checkout ExecuTorch repo and sync submodules ``` -git clone -b viable/strict https://github.com/pytorch/executorch.git && cd executorch +git clone -b release/0.7 https://github.com/pytorch/executorch.git && cd executorch ``` Create either a Python virtual environment: @@ -238,4 +238,4 @@ If the app successfully run on your device, you should see something like below:

## Reporting Issues -If you encountered any bugs or issues following this tutorial please file a bug/issue here on Github. \ No newline at end of file +If you encountered any bugs or issues following this tutorial please file a bug/issue here on Github. diff --git a/examples/demo-apps/android/LlamaDemo/docs/delegates/xnnpack_README.md b/examples/demo-apps/android/LlamaDemo/docs/delegates/xnnpack_README.md index 3ec0cd5cf49..a9bbc0a9a55 100644 --- a/examples/demo-apps/android/LlamaDemo/docs/delegates/xnnpack_README.md +++ b/examples/demo-apps/android/LlamaDemo/docs/delegates/xnnpack_README.md @@ -24,7 +24,7 @@ In this section, we will need to set up the ExecuTorch repo first with Conda env Checkout ExecuTorch repo and sync submodules ``` -git clone -b viable/strict https://github.com/pytorch/executorch.git && cd executorch +git clone -b release/0.7 https://github.com/pytorch/executorch.git && cd executorch ``` Create either a Python virtual environment: diff --git a/examples/demo-apps/apple_ios/LLaMA/docs/delegates/mps_README.md b/examples/demo-apps/apple_ios/LLaMA/docs/delegates/mps_README.md index d6bccc0ef47..e5cfb59c62b 100644 --- a/examples/demo-apps/apple_ios/LLaMA/docs/delegates/mps_README.md +++ b/examples/demo-apps/apple_ios/LLaMA/docs/delegates/mps_README.md @@ -17,7 +17,7 @@ In this section, we will need to set up the ExecuTorch repo first with Conda env Checkout ExecuTorch repo and sync submodules ``` -git clone -b viable/strict https://github.com/pytorch/executorch.git && cd executorch +git clone -b release/0.7 https://github.com/pytorch/executorch.git && cd executorch ``` Create either a Python virtual environment: diff --git a/examples/demo-apps/apple_ios/LLaMA/docs/delegates/xnnpack_README.md b/examples/demo-apps/apple_ios/LLaMA/docs/delegates/xnnpack_README.md index de5b3b9ab27..6ad21c48a52 100644 --- a/examples/demo-apps/apple_ios/LLaMA/docs/delegates/xnnpack_README.md +++ b/examples/demo-apps/apple_ios/LLaMA/docs/delegates/xnnpack_README.md @@ -16,7 +16,7 @@ In this section, we will need to set up the ExecuTorch repo first with Conda env Checkout ExecuTorch repo and sync submodules ``` -git clone -b viable/strict https://github.com/pytorch/executorch.git && cd executorch +git clone -b release/0.7 https://github.com/pytorch/executorch.git && cd executorch ``` Create either a Python virtual environment: diff --git a/extension/benchmark/apple/Benchmark/README.md b/extension/benchmark/apple/Benchmark/README.md index 25e78a39462..e9850376863 100644 --- a/extension/benchmark/apple/Benchmark/README.md +++ b/extension/benchmark/apple/Benchmark/README.md @@ -24,7 +24,7 @@ It provides a flexible framework for dynamically generating and running performa To get started, clone the ExecuTorch repository and cd into the source code directory: ```bash -git clone -b viable/strict https://github.com/pytorch/executorch.git --depth 1 --recurse-submodules --shallow-submodules && cd executorch +git clone -b release/0.7 https://github.com/pytorch/executorch.git --depth 1 --recurse-submodules --shallow-submodules && cd executorch ``` This command performs a shallow clone to speed up the process.