You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/learning-paths/mobile-graphics-and-gaming/build-llama3-chat-android-app-using-executorch-and-xnnpack/2-executorch-setup.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,8 +15,8 @@ The best practice is to generate an isolated Python environment in which to inst
15
15
### Option 1: Create a Python virtual environment
16
16
17
17
```bash
18
-
python3.10 -m venv executorch
19
-
source executorch/bin/activate
18
+
python3.10 -m venv executorch-venv
19
+
source executorch-venv/bin/activate
20
20
```
21
21
22
22
The prompt of your terminal has `executorch` as a prefix to indicate the virtual environment is active.
@@ -28,8 +28,8 @@ Install Miniconda on your development machine by following the [Installing conda
28
28
Once `conda` is installed, create the environment:
29
29
30
30
```bash
31
-
conda create -yn executorch python=3.10.0
32
-
conda activate executorch
31
+
conda create -yn executorch-venv python=3.10.0
32
+
conda activate executorch-venv
33
33
```
34
34
35
35
### Clone ExecuTorch and install the required dependencies
@@ -40,7 +40,7 @@ From within the conda environment, run the commands below to download the ExecuT
Copy file name to clipboardExpand all lines: content/learning-paths/mobile-graphics-and-gaming/build-llama3-chat-android-app-using-executorch-and-xnnpack/4-prepare-llama-models.md
Copy file name to clipboardExpand all lines: content/learning-paths/mobile-graphics-and-gaming/build-llama3-chat-android-app-using-executorch-and-xnnpack/5-run-benchmark-on-android.md
Make sure you add -DEXECUTORCH_XNNPACK_ENABLE_KLEIDI=ON option to enable support for KleidiAI kernels in ExecuTorch with XNNPack.
57
+
Starting with Executorch version 0.7 beta, KleidiAI is enabled by default. The -DEXECUTORCH_XNNPACK_ENABLE_KLEIDI=ON option is enabled and adds default support for KleidiAI kernels in ExecuTorch with XNNPack.
0 commit comments