From 154c6c459b9e17d523d0fda8e02f06df05293c01 Mon Sep 17 00:00:00 2001 From: partev Date: Thu, 29 May 2025 22:12:44 -0400 Subject: [PATCH] fix broken URL fix broken URL: https://docs.ray.io/en/master/ray-core/using-ray-with-gpus.html#fractional-gpus -> https://docs.ray.io/en/latest/ray-core/scheduling/accelerators.html#fractional-accelerators based on the archived copy of the original link here: https://web.archive.org/web/20220313114338/https://docs.ray.io/en/master/ray-core/using-ray-with-gpus.html#fractional-gpus it looks like the new link is referring to the same content --- beginner_source/hyperparameter_tuning_tutorial.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beginner_source/hyperparameter_tuning_tutorial.py b/beginner_source/hyperparameter_tuning_tutorial.py index aa84069f7be..dd3fe65699e 100644 --- a/beginner_source/hyperparameter_tuning_tutorial.py +++ b/beginner_source/hyperparameter_tuning_tutorial.py @@ -184,7 +184,7 @@ def forward(self, x): # inputs, labels = inputs.to(device), labels.to(device) # # The code now supports training on CPUs, on a single GPU, and on multiple GPUs. Notably, Ray -# also supports `fractional GPUs `_ +# also supports `fractional GPUs `_ # so we can share GPUs among trials, as long as the model still fits on the GPU memory. We'll come back # to that later. #