From db53c7a3980a866f2b15210cc5862449cfd94e6e Mon Sep 17 00:00:00 2001 From: Sayak Paul Date: Fri, 12 Sep 2025 15:32:41 +0530 Subject: [PATCH 1/2] Update regional_aot.py --- recipes_source/regional_aot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes_source/regional_aot.py b/recipes_source/regional_aot.py index cba082519e..3bb4dbe6a1 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 From b16f954b088b80e883941d6177183ad21a55c524 Mon Sep 17 00:00:00 2001 From: Sayak Paul Date: Fri, 12 Sep 2025 15:40:03 +0530 Subject: [PATCH 2/2] Update regional_aot.py --- recipes_source/regional_aot.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/recipes_source/regional_aot.py b/recipes_source/regional_aot.py index 3bb4dbe6a1..cee8465d9b 100644 --- a/recipes_source/regional_aot.py +++ b/recipes_source/regional_aot.py @@ -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 `__.