diff --git a/recipes_source/regional_aot.py b/recipes_source/regional_aot.py index cba082519e..cee8465d9b 100644 --- a/recipes_source/regional_aot.py +++ b/recipes_source/regional_aot.py @@ -3,7 +3,7 @@ Reducing AoT cold start compilation time with regional compilation ============================================================================ -**Author:** `Sayak Paul `_, `Charles Bensimon `_, `Angela Yi `_ +**Author:** `Sayak Paul `_, `Charles Bensimon `_, `Angela Yi `_ In the `regional compilation recipe `__, we showed how to reduce cold start compilation times while retaining (almost) full compilation benefits. This was demonstrated for @@ -236,4 +236,6 @@ def aot_compile_load_model(regional=False) -> torch.nn.Module: # # This recipe shows how to control the cold start time when compiling your # model ahead-of-time. This becomes effective when your model has repeated -# blocks, which is typically seen in large generative models. +# blocks, which is typically seen in large generative models. We used this +# recipe on various models to speed up real-time performance. Learn more +# `here `__.