Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating ExecuTorch getting started page. #1935

Open
wants to merge 12 commits into
base: site
Choose a base branch
from
30 changes: 24 additions & 6 deletions _get_started/mobile.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: get_started
title: ExecuTorch
title: PyTorch for Edge
permalink: /get-started/executorch/
background-class: get-started-background
body-class: get-started
Expand All @@ -10,11 +10,29 @@ published: true

## Get Started with PyTorch ExecuTorch

<p>
<a href="https://pytorch.org/executorch/stable/index.html" class="btn btn-lg with-right-arrow">
ExecuTorch Documentation
</a>
</p>
PyTorch’s edge specific library is [ExecuTorch](https://github.com/pytorch/executorch/) and is designed to be lightweight, very performant even on devices with constrained hardware such as mobile phones, embedded systems and microcontrollers.

ExecuTorch relies heavily on PyTorch core technologies such as [torch.compile](https://pytorch.org/docs/stable/torch.compiler.html) and [torch.export](https://pytorch.org/docs/stable/export.html), and should be very familiar to anyone who has used PyTorch in the past.

### Getting Started
You can get started by following the [general getting started guide](https://pytorch.org/executorch/stable/getting-started.html#) or jump to the specific steps for your target device.

* [Using ExecuTorch on Android](https://pytorch.org/executorch/stable/using-executorch-android.html)
* [Using ExecuTorch on iOS](https://pytorch.org/executorch/stable/using-executorch-ios.html)
* [Using ExecuTorch with C++](https://pytorch.org/executorch/stable/using-executorch-cpp.html)

### Hardware Acceleration
ExecuTorch provides out of the box hardware acceleration for a growing number of chip manufacturers. See the following resources to learn more about how to leverage them:

* [Backend Overview](https://pytorch.org/executorch/stable/backends-overview.html)
* [XNNPACK](https://pytorch.org/executorch/stable/backends-xnnpack.html)
* [Core ML](https://pytorch.org/executorch/stable/backends-coreml.html)
* [MPS](https://pytorch.org/executorch/stable/backends-mps.html)
* [Vulkan](https://pytorch.org/executorch/stable/backends-vulkan.html)
* [ARM Ethos-U](https://pytorch.org/executorch/stable/backends-arm-ethos-u.html)
* [Qualcomm AI Engine](https://pytorch.org/executorch/stable/backends-qualcomm.html)
* [MediaTek](https://pytorch.org/executorch/stable/backends-mediatek.html)
* [Cadence Xtensa](https://pytorch.org/executorch/stable/backends-cadence.html)


<script page-id="mobile" src="{{ site.baseurl }}/assets/menu-tab-selection.js"></script>
Expand Down