You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: recipes_source/regional_aot.py
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -5,9 +5,9 @@
5
5
6
6
**Author:** `Sayak Paul <https://github.com/sayakpaul>`, `Charles Bensimon <https://github.com/cbensimon>`, `Angela Yi <https://github.com/angelayi>`
7
7
8
-
In our [regional compilation recipe](https://docs.pytorch.org/tutorials/recipes/regional_compilation.html), we showed
8
+
In the [regional compilation recipe](https://docs.pytorch.org/tutorials/recipes/regional_compilation.html), we showed
9
9
how to reduce cold start compilation times while retaining (almost) full compilation benefits. This was demonstrated for
10
-
just-in-time (JiT) compilation.
10
+
just-in-time (JIT) compilation.
11
11
12
12
This recipe shows how to apply similar principles when compiling a model ahead-of-time (AoT). If you
13
13
are not familiar with AOTInductor and ``torch.export``, we recommend you to check out [this tutorial](https://docs.pytorch.org/tutorials/recipes/torch_export_aoti_python.html).
@@ -38,7 +38,7 @@
38
38
# Steps
39
39
# -----
40
40
#
41
-
# In this recipe, we will follow pretty much the same steps as the regional compilation recipe mentioned above:
41
+
# In this recipe, we will follow the same steps as the regional compilation recipe mentioned above:
42
42
#
43
43
# 1. Import all necessary libraries.
44
44
# 2. Define and initialize a neural network with repeated regions.
0 commit comments