Skip to content

Commit e07d43b

Browse files
tstatlersvekars
andauthored
Added warnings to select Pytorch mobile tutorials directing users to ExecuTorch (#3016)
* Added warnings to select ExecuTorch tutorials/recipes/prototypes * Added warnings to select ExecuTorch tutorials/recipes/prototypes * Added redirect for renamed prototype * Update deeplabv3_on_android.rst Fixed misplaced info tag. * Apply suggestions from code review --------- Co-authored-by: Svetlana Karslioglu <[email protected]>
1 parent b3c49a3 commit e07d43b

File tree

5 files changed

+23
-1
lines changed

5 files changed

+23
-1
lines changed

beginner_source/deeplabv3_on_android.rst

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ Image Segmentation DeepLabV3 on Android
55

66
**Reviewed by**: `Jeremiah Chung <https://github.com/jeremiahschung>`_
77

8+
.. warning::
9+
PyTorch Mobile is no longer actively supported. Please check out `ExecuTorch <https://pytorch.org/executorch-overview>`_, PyTorch’s all-new on-device inference library. You can also review our `end-to-end workflows <https://github.com/pytorch/executorch/tree/main/examples/portable#readme>`_ and review the `source code for DeepLabV3 <https://github.com/pytorch/executorch/tree/main/examples/models/deeplab_v3>`_.
10+
11+
812
Introduction
913
------------
1014

prototype_source/lite_interpreter.rst

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
(Prototype) Introduce lite interpreter workflow in Android and iOS
2+
=======================
3+
4+
This tutorial has been moved to https://pytorch.org/tutorials/recipes/mobile_interpreter.html
5+
6+
7+
.. raw:: html
8+
9+
<meta http-equiv="Refresh" content="0; url='https://pytorch.org/tutorials/recipes/mobile_interpreter.html'" />

recipes_source/mobile_interpreter.rst

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33

44
**Author**: `Chen Lai <https://github.com/cccclai>`_, `Martin Yuan <https://github.com/iseeyuan>`_
55

6+
.. warning::
7+
PyTorch Mobile is no longer actively supported. Please check out `ExecuTorch <https://pytorch.org/executorch-overview>`_, PyTorch’s all-new on-device inference library. You can also review our new documentation to learn more about how to build `iOS <https://pytorch.org/executorch/stable/demo-apps-ios.html>`_ and `Android <https://pytorch.org/executorch/stable/demo-apps-android.html>`_ apps with ExecuTorch.
8+
69
Introduction
710
------------
811

recipes_source/mobile_perf.rst

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
Pytorch Mobile Performance Recipes
22
==================================
33

4+
.. warning::
5+
PyTorch Mobile is no longer actively supported. Please check out `ExecuTorch <https://pytorch.org/executorch-overview>`_, PyTorch’s all-new on-device inference library. You can also learn more about `quantization <https://pytorch.org/executorch/stable/quantization-overview.html>`_, `Hardware acceleration (op fusion using hw) <https://pytorch.org/executorch/stable/examples-end-to-end-to-lower-model-to-delegate.html>`_, and `benchmarking <https://pytorch.org/executorch/stable/sdk-profiling.html>`_ on ExecuTorch’s documentation pages.
6+
47
Introduction
58
----------------
69
Performance (aka latency) is crucial to most, if not all,
@@ -245,7 +248,7 @@ For example, using ResNet-50 and running the following script:
245248

246249

247250

248-
you would get the following result:
251+
you would get the following result:
249252

250253
::
251254

recipes_source/ptmobile_recipes_summary.rst

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
Summary of PyTorch Mobile Recipes
22
=====================================
33

4+
.. warning::
5+
Note: PyTorch Mobile is no longer actively supported. Please check out `ExecuTorch <https://pytorch.org/executorch-overview>`_, PyTorch’s all-new on-device inference library. You can also review these `ExecuTorch examples <https://github.com/pytorch/executorch/tree/main/examples#readme>`_.
6+
47
This summary provides a top level overview of recipes for PyTorch Mobile to help developers choose which recipes to follow for their PyTorch-powered mobile app development.
58

69
Introduction

0 commit comments

Comments
 (0)