Skip to content

Commit 3da54ae

Browse files
mergennachindbort
authored andcommitted
Tutorial title consistency (#926)
Summary: Pull Request resolved: #926 On the left hand side, the tutorial titles are not consistent with tutorial cards. I like dbort change D50302244. Let's just make sure the titles are also consistent across the board. Both on left hand nav as well as the actual pages. Reviewed By: dbort Differential Revision: D50302650 fbshipit-source-id: a0bd94d717150041f63e1fdc639763ae874fc96b
1 parent fcc0dd9 commit 3da54ae

File tree

10 files changed

+10
-11
lines changed

10 files changed

+10
-11
lines changed

backends/apple/mps/setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
<!---- DO NOT MODIFY Progress Bar End--->
2727

28-
# Building and Running ExecuTorch on MPS Backend
28+
# Building and Running ExecuTorch with MPS Backend
2929

3030
In this tutorial we will walk you through the process of getting setup to build the MPS backend for ExecuTorch and running a simple model on it.
3131

docs/source/build-run-coreml.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
<!---- DO NOT MODIFY Progress Bar End--->
2626

27-
# Building and Running ExecuTorch on CoreML Backend
27+
# Building and Running ExecuTorch with CoreML Backend
2828

2929
CoreML delegate uses CoreML apis to enable running neural networks via Apple's hardware acceleration. For more about coreml you can read [here](https://developer.apple.com/documentation/coreml). In this tutorial we will walk through steps of lowering a PyTorch model to CoreML delegate
3030

docs/source/build-run-qualcomm-ai-engine-direct-backend.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
<!---- DO NOT MODIFY Progress Bar End--->
2727

28-
# Building and Running ExecuTorch on Qualcomm AI Engine Direct
28+
# Building and Running ExecuTorch with Qualcomm AI Engine Direct Backend
2929

3030
In this tutorial we will walk you through the process of getting setup to
3131
build ExecuTorch for Qualcomm AI Engine Direct and running a model on it.
@@ -261,4 +261,3 @@ An Android demo-app using Qualcomm AI Engine Direct Backend can be found in
261261

262262
If you encounter any issues while reproducing the tutorial, please file a github
263263
issue on ExecuTorch repo and tag use `#qcom_aisw` tag
264-

docs/source/examples-end-to-end-to-lower-model-to-delegate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# An end-to-end example to lower a model as a delegate
1+
# Lowering a Model as a Delegate
22

33
Audience: ML Engineers, who are interested in applying delegates to accelerate their program in runtime
44

docs/source/executorch-arm-delegate-tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!---- Name is a WIP - this reflects better what it can do today ----->
2-
# ExecuTorch Arm Ethos-U Delegate
2+
# Building and Running ExecuTorch with ARM Ethos-U Backend
33

44
<!----This will show a grid card on the page----->
55
::::{grid} 2

docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ ExecuTorch tutorials.
269269
:tags: Export,Backend,Delegation,CoreML
270270

271271
.. customcarditem::
272-
:header: Building and Running ExecuTorch with MPSGraph Backend
272+
:header: Building and Running ExecuTorch with MPS Backend
273273
:card_description: A tutorial that walks you through the process of building ExecuTorch with MPSGraph Backend
274274
:image: _static/img/generic-pytorch-logo.png
275275
:link: build-run-mps.html

docs/source/tutorial-xnnpack-delegate-lowering.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# XNNPACK Backend Delegate Lowering Tutorial
1+
# Building and Running ExecuTorch with XNNPACK Backend
22

33
The following tutorial will familiarize you with leveraging the ExecuTorch XNNPACK Delegate for accelerating your ML Models using CPU hardware. It will go over exporting and serializing a model to a binary file, targeting the XNNPACK Delegate Backend and running the model on a supported target platform. To get started quickly, use the script in the ExecuTorch repository with instructions on exporting and generating a binary file for a few sample models demonstrating the flow.
44

docs/source/tutorials_source/sdk-integration-tutorial.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# LICENSE file in the root directory of this source tree.
77

88
"""
9-
SDK Integration Tutorial
9+
Using the ExecuTorch SDK to Profile a Model
1010
========================
1111
1212
**Author:** `Jack Khuu <https://github.com/Jack-Khuu>`__

examples/demo-apps/android/ExecuTorchDemo/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This guide explains how to setup ExecuTorch for Android using a demo app. The ap
1717
* Refer to [Setting up ExecuTorch](getting-started-setup.md) to set up the repo and dev environment.
1818
* Download and install [Android Studio and SDK](https://developer.android.com/studio).
1919
* Supported Host OS: CentOS, macOS Ventura (M1/x86_64). See below for Qualcomm HTP specific requirements.
20-
* *Qualcomm HTP Only[^1]:* To build and run on Qualcomm's AI Engine Direct, please follow [Building and Running ExecuTorch on Qualcomm AI Engine Direct](build-run-qualcomm-ai-engine-direct-backend.md) for hardware and software pre-requisites.
20+
* *Qualcomm HTP Only[^1]:* To build and run on Qualcomm's AI Engine Direct, please follow [Building and Running ExecuTorch with Qualcomm AI Engine Direct Backend](build-run-qualcomm-ai-engine-direct-backend.md) for hardware and software pre-requisites.
2121
:::
2222
::::
2323

examples/demo-apps/apple_ios/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ExecuTorch iOS Demo App Tutorial
1+
# Building an ExecuTorch iOS Demo App
22

33
Welcome to the tutorial on setting up the ExecuTorch iOS Demo App!
44

0 commit comments

Comments
 (0)