The series of demos featured in this directory exemplify a broad spectrum of workflows for deploying ML models on edge devices using ExecuTorch. These demos offer practical insights into key processes such as model exporting, quantization, backend delegation, module composition, memory planning, program saving and loading for inference on ExecuTorch runtime.
ExecuTorch's extensive support spans from simple modules like "Add" to comprehensive models like MobileNet V3
, Wav2Letter
, Llama 2
, and more, showcasing its versatility in enabling the deployment of a wide spectrum of models across various edge AI applications.
examples
├── models # Contains a set of popular and representative PyTorch models
├── portable # Contains end-to-end demos for ExecuTorch in portable mode
├── selective_build # Contains demos of selective build for optimizing the binary size of the ExecuTorch runtime
├── sdk # Contains demos of BundledProgram and ETDump
├── demo-apps # Contains demo apps for Android and iOS
├── xnnpack # Contains end-to-end ExecuTorch demos with first-party optimization using XNNPACK
├── apple
| |── coreml # Contains demos of Apple's Core ML backend
| └── mps # Contains end-to-end demos of MPS backend
├── arm # Contains demos of the Arm TOSA and Ethos-U NPU flows
├── qualcomm # Contains demos of Qualcomm QNN backend
├── xtensa # Contains demos of exporting and running a simple model on Xtensa Hifi4 DSP
├── third-party # Third-party libraries required for working on the demos
└── README.md # This file
A user's journey may commence by exploring the demos located in the portable/
directory. Here, you will gain insights into the fundamental end-to-end workflow to generate a binary file from a ML model in portable mode and run it on the ExecuTorch runtime.
To understand how to deploy the ExecuTorch runtime with optimization for binary size, explore the demos available in the selective_build/
directory. These demos are specifically designed to illustrate the Selective Build, offering insights into reducing the binary size while maintaining efficiency.
You will find demos of ExecuTorch SDK in the sdk/
directory. The examples focuses on exporting and executing BundledProgram for ExecuTorch model verification, and ETDump generation.
Explore mobile apps with ExecuTorch models integrated and deployable on Android and iOS in the demo-apps/android/
and demo-apps/apple_ios/
directories, respectively.
The demos in the xnnpack/
directory provide valuable insights into the process of lowering and executing an ExecuTorch model with built-in performance enhancements. These demos specifically showcase the workflow involving XNNPACK backend delegation and quantization.
You will find demos of ExecuTorch Core ML Backend in the apple/coreml/
directory and MPS Backend in the apple/mps/
directory.
The arm/
directory contains scripts to help you run a PyTorch model on a ARM Corstone-300 platform via ExecuTorch.
You will find demos of ExecuTorch QNN Backend in the qualcomm/
directory.
The xtensa/
directory hosts a demo that showcases the process of exporting and executing a model on Xtensa Hifi4 DSP. You can utilize this tutorial to guide you in configuring the demo and running it.
You will find demos of ExecuTorch SDK in the sdk/
directory. The examples focuses on exporting and executing BundledProgram for ExecuTorch model verification and ETDump for collecting profiling and debug data.
Various models and workflows listed in this directory have dependencies on some other packages. You need to follow the setup guide in Setting up ExecuTorch from GitHub to have appropriate packages installed.