From 5b559b590cea268be2a3a289d211857175290c7a Mon Sep 17 00:00:00 2001 From: Saksham Dhull Date: Mon, 27 Oct 2025 01:24:43 +0530 Subject: [PATCH 1/2] Remove tutorial loop from data_parallel_tutorial The tutorial link directed to a page that redirected back after 3 seconds, rendering it unnecessary. --- beginner_source/blitz/data_parallel_tutorial.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/beginner_source/blitz/data_parallel_tutorial.py b/beginner_source/blitz/data_parallel_tutorial.py index eebca8ea52b..a18382399d1 100644 --- a/beginner_source/blitz/data_parallel_tutorial.py +++ b/beginner_source/blitz/data_parallel_tutorial.py @@ -250,6 +250,4 @@ def forward(self, input): # models on several GPUs. After each model finishes their job, DataParallel # collects and merges the results before returning it to you. # -# For more information, please check out -# https://pytorch.org/tutorials/beginner/former\_torchies/parallelism\_tutorial.html. -# + From 4736c99f2e111f3443cda4f3813cf14d5866555b Mon Sep 17 00:00:00 2001 From: Saksham Dhull Date: Mon, 27 Oct 2025 21:12:48 +0530 Subject: [PATCH 2/2] Remove empty line in data_parallel_tutorial.py --- beginner_source/blitz/data_parallel_tutorial.py | 1 - 1 file changed, 1 deletion(-) diff --git a/beginner_source/blitz/data_parallel_tutorial.py b/beginner_source/blitz/data_parallel_tutorial.py index a18382399d1..1788b6de0cb 100644 --- a/beginner_source/blitz/data_parallel_tutorial.py +++ b/beginner_source/blitz/data_parallel_tutorial.py @@ -250,4 +250,3 @@ def forward(self, input): # models on several GPUs. After each model finishes their job, DataParallel # collects and merges the results before returning it to you. # -