From 863594bc85e014f785226590eb935b3779a3450b Mon Sep 17 00:00:00 2001 From: Yuanhao Ji Date: Mon, 23 Dec 2024 10:48:50 +0800 Subject: [PATCH 1/3] Fix dead link of compiler troubleshooting --- intermediate_source/inductor_debug_cpu.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/intermediate_source/inductor_debug_cpu.py b/intermediate_source/inductor_debug_cpu.py index f44d5bd76b1..5cb7290a4e0 100644 --- a/intermediate_source/inductor_debug_cpu.py +++ b/intermediate_source/inductor_debug_cpu.py @@ -19,7 +19,7 @@ # # Meanwhile, you may also find related tutorials about ``torch.compile`` # around `basic usage `_, -# comprehensive `troubleshooting `_ +# comprehensive `troubleshooting `_ # and GPU-specific knowledge like `GPU performance profiling `_. # # We will start debugging with a motivating example that triggers compilation issues and accuracy problems @@ -343,7 +343,7 @@ def forward2(self, arg0_1): return (neg,) ###################################################################### -# For more usage details about Minifier, please refer to `Troubleshooting `_. +# For more usage details about Minifier, please refer to `Troubleshooting `_. ###################################################################### From 7c2a1652370b2afe69791c0514e2769987a0db0e Mon Sep 17 00:00:00 2001 From: Yuanhao Ji Date: Mon, 23 Dec 2024 10:55:17 +0800 Subject: [PATCH 2/3] update --- intermediate_source/inductor_debug_cpu.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intermediate_source/inductor_debug_cpu.py b/intermediate_source/inductor_debug_cpu.py index 5cb7290a4e0..03e2638d8e9 100644 --- a/intermediate_source/inductor_debug_cpu.py +++ b/intermediate_source/inductor_debug_cpu.py @@ -19,7 +19,7 @@ # # Meanwhile, you may also find related tutorials about ``torch.compile`` # around `basic usage `_, -# comprehensive `troubleshooting `_ +# comprehensive `troubleshooting `_ # and GPU-specific knowledge like `GPU performance profiling `_. # # We will start debugging with a motivating example that triggers compilation issues and accuracy problems From ddb3dc215e0c5e5938fa57924b81f758bf0834cc Mon Sep 17 00:00:00 2001 From: Svetlana Karslioglu Date: Tue, 7 Jan 2025 10:27:47 -0800 Subject: [PATCH 3/3] Update intermediate_source/inductor_debug_cpu.py --- intermediate_source/inductor_debug_cpu.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intermediate_source/inductor_debug_cpu.py b/intermediate_source/inductor_debug_cpu.py index 03e2638d8e9..4b6d62c0b0d 100644 --- a/intermediate_source/inductor_debug_cpu.py +++ b/intermediate_source/inductor_debug_cpu.py @@ -20,7 +20,7 @@ # Meanwhile, you may also find related tutorials about ``torch.compile`` # around `basic usage `_, # comprehensive `troubleshooting `_ -# and GPU-specific knowledge like `GPU performance profiling `_. +# and GPU-specific knowledge like `GPU performance profiling `_. # # We will start debugging with a motivating example that triggers compilation issues and accuracy problems # by demonstrating the process of debugging to pinpoint the problems.