Skip to content

Commit 8ce9ce9

Browse files
authored
[Release 0.7] Update all docs to reflect the new branch 'release/0.7' (#12187)
### Summary [PLEASE REMOVE] See [CONTRIBUTING.md's Pull Requests](https://github.com/pytorch/executorch/blob/main/CONTRIBUTING.md#pull-requests) for ExecuTorch PR guidelines. [PLEASE REMOVE] If this PR closes an issue, please add a `Fixes #<issue-id>` line. [PLEASE REMOVE] If this PR introduces a fix or feature that should be the upcoming release notes, please add a "Release notes: <area>" label. For a list of available release notes labels, check out [CONTRIBUTING.md's Pull Requests](https://github.com/pytorch/executorch/blob/main/CONTRIBUTING.md#pull-requests). ### Test plan [PLEASE REMOVE] How did you test this PR? Please write down any manual commands you used and note down tests that you have written if applicable.
1 parent 82a5bec commit 8ce9ce9

File tree

11 files changed

+13
-13
lines changed

11 files changed

+13
-13
lines changed

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ To build the documentation locally:
4040
1. Clone the ExecuTorch repo to your machine.
4141

4242
```bash
43-
git clone -b viable/strict https://github.com/pytorch/executorch.git && cd executorch
43+
git clone -b release/0.7 https://github.com/pytorch/executorch.git && cd executorch
4444
```
4545

4646
1. If you don't have it already, start either a Python virtual envitonment:

docs/source/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ ExecuTorch provides C++ APIs, which can be used to target embedded or mobile dev
168168
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.
169169

170170
```
171-
git clone -b viable/strict https://github.com/pytorch/executorch.git
171+
git clone -b release/0.7 https://github.com/pytorch/executorch.git
172172
```
173173
```python
174174
# CMakeLists.txt

docs/source/llm/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ cd et-nanogpt
4545
4646
# Clone the ExecuTorch repository.
4747
mkdir third-party
48-
git clone -b viable/strict https://github.com/pytorch/executorch.git third-party/executorch && cd third-party/executorch
48+
git clone -b release/0.7 https://github.com/pytorch/executorch.git third-party/executorch && cd third-party/executorch
4949
5050
# Create either a Python virtual environment:
5151
python3 -m venv .venv && source .venv/bin/activate && pip install --upgrade pip
@@ -79,7 +79,7 @@ pyenv virtualenv 3.10 executorch
7979
pyenv activate executorch
8080
8181
# Clone the ExecuTorch repository.
82-
git clone -b viable/strict https://github.com/pytorch/executorch.git third-party/executorch && cd third-party/executorch
82+
git clone -b release/0.7 https://github.com/pytorch/executorch.git third-party/executorch && cd third-party/executorch
8383
8484
# Install requirements.
8585
PYTHON_EXECUTABLE=python ./install_executorch.sh

docs/source/using-executorch-building-from-source.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ portability details.
4242

4343
```bash
4444
# Clone the ExecuTorch repo from GitHub
45-
git clone -b viable/strict https://github.com/pytorch/executorch.git && cd executorch
45+
git clone -b release/0.7 https://github.com/pytorch/executorch.git && cd executorch
4646
```
4747

4848
### Create a Virtual Environment

docs/source/using-executorch-ios.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ xcode-select --install
9696
2. Clone ExecuTorch:
9797

9898
```bash
99-
git clone -b viable/strict https://github.com/pytorch/executorch.git --depth 1 --recurse-submodules --shallow-submodules && cd executorch
99+
git clone -b release/0.7 https://github.com/pytorch/executorch.git --depth 1 --recurse-submodules --shallow-submodules && cd executorch
100100
```
101101

102102
3. Set up [Python](https://www.python.org/downloads/macos/) 3.10+ and activate a virtual environment:

examples/demo-apps/android/LlamaDemo/docs/delegates/mediatek_README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ In this section, we will need to set up the ExecuTorch repo first with Conda env
2424
Checkout ExecuTorch repo and sync submodules
2525

2626
```
27-
git clone -b viable/strict https://github.com/pytorch/executorch.git && cd executorch
27+
git clone -b release/0.7 https://github.com/pytorch/executorch.git && cd executorch
2828
```
2929

3030
Create either a Python virtual environment:

examples/demo-apps/android/LlamaDemo/docs/delegates/qualcomm_README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ In this section, we will need to set up the ExecuTorch repo first with Conda env
2222
Checkout ExecuTorch repo and sync submodules
2323

2424
```
25-
git clone -b viable/strict https://github.com/pytorch/executorch.git && cd executorch
25+
git clone -b release/0.7 https://github.com/pytorch/executorch.git && cd executorch
2626
```
2727

2828
Create either a Python virtual environment:
@@ -238,4 +238,4 @@ If the app successfully run on your device, you should see something like below:
238238
</p>
239239

240240
## Reporting Issues
241-
If you encountered any bugs or issues following this tutorial please file a bug/issue here on Github.
241+
If you encountered any bugs or issues following this tutorial please file a bug/issue here on Github.

examples/demo-apps/android/LlamaDemo/docs/delegates/xnnpack_README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ In this section, we will need to set up the ExecuTorch repo first with Conda env
2424
Checkout ExecuTorch repo and sync submodules
2525

2626
```
27-
git clone -b viable/strict https://github.com/pytorch/executorch.git && cd executorch
27+
git clone -b release/0.7 https://github.com/pytorch/executorch.git && cd executorch
2828
```
2929

3030
Create either a Python virtual environment:

examples/demo-apps/apple_ios/LLaMA/docs/delegates/mps_README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ In this section, we will need to set up the ExecuTorch repo first with Conda env
1717
Checkout ExecuTorch repo and sync submodules
1818

1919
```
20-
git clone -b viable/strict https://github.com/pytorch/executorch.git && cd executorch
20+
git clone -b release/0.7 https://github.com/pytorch/executorch.git && cd executorch
2121
```
2222

2323
Create either a Python virtual environment:

examples/demo-apps/apple_ios/LLaMA/docs/delegates/xnnpack_README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ In this section, we will need to set up the ExecuTorch repo first with Conda env
1616
Checkout ExecuTorch repo and sync submodules
1717

1818
```
19-
git clone -b viable/strict https://github.com/pytorch/executorch.git && cd executorch
19+
git clone -b release/0.7 https://github.com/pytorch/executorch.git && cd executorch
2020
```
2121

2222
Create either a Python virtual environment:

0 commit comments

Comments
 (0)