From 1f72b0ca66f6a3f015dae45c607e633eba03ffac Mon Sep 17 00:00:00 2001 From: allegroai <> Date: Tue, 9 Jan 2024 15:37:02 +0200 Subject: [PATCH] Change pytorch distributed polling time to 250ms --- clearml/utilities/lowlevel/distributed.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clearml/utilities/lowlevel/distributed.py b/clearml/utilities/lowlevel/distributed.py index 83f48ae8..36b58862 100644 --- a/clearml/utilities/lowlevel/distributed.py +++ b/clearml/utilities/lowlevel/distributed.py @@ -83,7 +83,7 @@ def get_torch_distributed_anchor_task_id(timeout=None): getLogger().warning("Failed detecting rank zero clearml Task ID, creating a new Task") return None # wait - sleep(0.1) + sleep(0.25) # create the file with open(torch_dist_path, "rt") as f: