From cc5da854b34e6d4fba1dada58e4d948b5fffe35f Mon Sep 17 00:00:00 2001 From: Aritra Roy Gosthipaty Date: Tue, 30 Jun 2026 16:15:52 +0000 Subject: [PATCH] adding hf torch profile blog --- beginner_source/profiler.py | 1 + recipes_source/recipes/profiler_recipe.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/beginner_source/profiler.py b/beginner_source/profiler.py index 0b690097200..6a3894cbbd3 100644 --- a/beginner_source/profiler.py +++ b/beginner_source/profiler.py @@ -319,3 +319,4 @@ def forward(self, input, mask): # - `Profiler Usage Recipe `__ # - `Profiling RPC-Based Workloads `__ # - `Profiler API Docs `__ +# - `Hugging Face PyTorch Profiler Blog Post `__ diff --git a/recipes_source/recipes/profiler_recipe.py b/recipes_source/recipes/profiler_recipe.py index a8d1a4dc6b3..ef0471e75de 100644 --- a/recipes_source/recipes/profiler_recipe.py +++ b/recipes_source/recipes/profiler_recipe.py @@ -480,4 +480,4 @@ def trace_handler(p): # # - `PyTorch Benchmark `_ # - `Visualizing models, data, and training with TensorBoard `_ tutorial -# +# - `Hugging Face PyTorch Profiler Blog Post `__