Skip to content

Latest commit

 

History

History
 
 

examples

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Examples

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.

Directory structure

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

Using the examples

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.

Demo of Selective Build

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.

Demo of ExecuTorch SDK

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.

Demo Apps

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.

Demo of XNNPACK delegation

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.

Demo of ExecuTorch Apple Backend

You will find demos of ExecuTorch Core ML Backend in the apple/coreml/ directory and MPS Backend in the apple/mps/ directory.

Demo of ExecuTorch on ARM Cortex-M55 + Ethos-U55

The arm/ directory contains scripts to help you run a PyTorch model on a ARM Corstone-300 platform via ExecuTorch.

Demo of ExecuTorch QNN Backend

You will find demos of ExecuTorch QNN Backend in the qualcomm/ directory.

Demo of ExecuTorch on Xtensa HiFi4 DSP

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.

Demo of ExecuTorch SDK

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.

Dependencies

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.