Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion docs/source/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions docs/source/llm/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/source/using-executorch-building-from-source.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/source/using-executorch-ios.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -238,4 +238,4 @@ If the app successfully run on your device, you should see something like below:
</p>

## Reporting Issues
If you encountered any bugs or issues following this tutorial please file a bug/issue here on Github.
If you encountered any bugs or issues following this tutorial please file a bug/issue here on Github.
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion extension/benchmark/apple/Benchmark/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading