Reference for ultralytics/utils/dist.py#
This page is sourced from https://github.com/ultralytics/ultralytics/blob/main/ultralytics/utils/dist.py. Have an improvement or example to add? Open a Pull Request — thank you! 🙏
Function ultralytics.utils.dist.find_free_network_port#
def find_free_network_port() -> intFind a free port on localhost.
It is useful in single-node training when we don't want to connect to a real main node but have to set the MASTER_PORT environment variable.
Returns
| Type | Description |
|---|---|
int | The available network port number. |
Candidates are drawn below the default OS ephemeral floor (32768 on Linux, 49152 on macOS and Windows) because the port is released here and rebound later by the DDP subprocess. An ephemeral port can be handed to any outbound connection in that window, which surfaces as an EADDRINUSE rendezvous failure at launch.
ultralytics/utils/dist.py
def find_free_network_port() -> int:
"""Find a free port on localhost.
It is useful in single-node training when we don't want to connect to a real main node but have to set the
`MASTER_PORT` environment variable.
Returns:
(int): The available network port number.
Notes:
Candidates are drawn below the default OS ephemeral floor (32768 on Linux, 49152 on macOS and Windows)
because the port is released here and rebound later by the DDP subprocess. An ephemeral port can be handed to
any outbound connection in that window, which surfaces as an EADDRINUSE rendezvous failure at launch.
"""
import random
import socket
# SystemRandom as init_seeds() seeds the global RNG earlier in this process, which would hand every concurrent
# DDP launch on a host the same candidate list
for port in random.SystemRandom().sample(range(10000, 32768), 10):
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
try:
s.bind(("127.0.0.1", port))
return port
except OSError:
continue # in use by an explicit listener, try the next candidate
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
s.bind(("127.0.0.1", 0)) # no non-ephemeral candidate available, fall back to an ephemeral port
return s.getsockname()[1]Function ultralytics.utils.dist.generate_ddp_file#
def generate_ddp_file(trainer: BaseTrainer) -> strGenerate a DDP (Distributed Data Parallel) file for multi-GPU training.
This function creates a temporary Python file that enables distributed training across multiple GPUs. The file contains the necessary configuration to initialize the trainer in a distributed environment.
Args
| Name | Type | Description | Default |
|---|---|---|---|
trainer | ultralytics.engine.trainer.BaseTrainer | The trainer containing training configuration and arguments. Must have args attribute and be a class instance. | required |
Returns
| Type | Description |
|---|---|
str | Path to the generated temporary DDP file. |
The generated file is saved in the USER_CONFIG_DIR/DDP directory and includes:
- Trainer class import
- Configuration overrides from the trainer arguments
- Training initialization code
ultralytics/utils/dist.py
def generate_ddp_file(trainer: BaseTrainer) -> str:
"""Generate a DDP (Distributed Data Parallel) file for multi-GPU training.
This function creates a temporary Python file that enables distributed training across multiple GPUs. The file
contains the necessary configuration to initialize the trainer in a distributed environment.
Args:
trainer (ultralytics.engine.trainer.BaseTrainer): The trainer containing training configuration and arguments.
Must have args attribute and be a class instance.
Returns:
(str): Path to the generated temporary DDP file.
Notes:
The generated file is saved in the USER_CONFIG_DIR/DDP directory and includes:
- Trainer class import
- Configuration overrides from the trainer arguments
- Training initialization code
"""
module, name = f"{trainer.__class__.__module__}.{trainer.__class__.__name__}".rsplit(".", 1)
# Serialize augmentations to JSON-safe dicts to avoid NameError in DDP subprocess
overrides = vars(trainer.args).copy()
if overrides.get("augmentations") is not None:
import albumentations as A
overrides["augmentations"] = [A.to_dict(t) for t in overrides["augmentations"]]
content = f"""
# Ultralytics Multi-GPU training temp file (should be automatically deleted after use)
from pathlib import Path, PosixPath # For model arguments stored as Path instead of str
overrides = {overrides}
if __name__ == "__main__":
from {module} import {name}
from ultralytics.utils import DEFAULT_CFG_DICT
# Deserialize augmentations from dicts back to Albumentations transform objects
if overrides.get("augmentations") is not None:
import albumentations as A
overrides["augmentations"] = [A.from_dict(t) for t in overrides["augmentations"]]
cfg = DEFAULT_CFG_DICT.copy()
cfg.update(save_dir='') # handle the extra key 'save_dir'
trainer = {name}(cfg=cfg, overrides=overrides)
results = trainer.train()
"""
(USER_CONFIG_DIR / "DDP").mkdir(exist_ok=True)
with tempfile.NamedTemporaryFile(
prefix="_temp_",
suffix=f"{id(trainer)}.py",
mode="w+",
encoding="utf-8",
dir=USER_CONFIG_DIR / "DDP",
delete=False,
) as file:
file.write(content)
return file.nameFunction ultralytics.utils.dist.generate_ddp_command#
def generate_ddp_command(trainer: BaseTrainer) -> tuple[list[str], str]Generate command for distributed training.
Args
| Name | Type | Description | Default |
|---|---|---|---|
trainer | ultralytics.engine.trainer.BaseTrainer | The trainer containing configuration for distributed training. | required |
Returns
| Type | Description |
|---|---|
cmd (list[str]) | The command to execute for distributed training. |
file (str) | Path to the temporary file created for DDP training. |
ultralytics/utils/dist.py
def generate_ddp_command(trainer: BaseTrainer) -> tuple[list[str], str]:
"""Generate command for distributed training.
Args:
trainer (ultralytics.engine.trainer.BaseTrainer): The trainer containing configuration for distributed training.
Returns:
cmd (list[str]): The command to execute for distributed training.
file (str): Path to the temporary file created for DDP training.
"""
import __main__ # noqa local import to avoid https://github.com/Lightning-AI/pytorch-lightning/issues/15218
if not trainer.resume:
shutil.rmtree(trainer.save_dir) # remove the save_dir
file = generate_ddp_file(trainer)
dist_cmd = "torch.distributed.run" if TORCH_1_9 else "torch.distributed.launch"
port = find_free_network_port()
cmd = [
sys.executable,
"-m",
dist_cmd,
"--nproc_per_node",
f"{trainer.world_size}",
"--master_port",
f"{port}",
file,
]
return cmd, fileFunction ultralytics.utils.dist.ddp_cleanup#
def ddp_cleanup(trainer: BaseTrainer, file: str) -> NoneDelete temporary file if created during distributed data parallel (DDP) training.
This function checks if the provided file contains the trainer's ID in its name, indicating it was created as a temporary file for DDP training, and deletes it if so.
Args
| Name | Type | Description | Default |
|---|---|---|---|
trainer | ultralytics.engine.trainer.BaseTrainer | The trainer used for distributed training. | required |
file | str | Path to the file that might need to be deleted. | required |
Examples
>>> trainer = YOLOTrainer()
>>> file = "/tmp/ddp_temp_123456789.py"
>>> ddp_cleanup(trainer, file)ultralytics/utils/dist.py
def ddp_cleanup(trainer: BaseTrainer, file: str) -> None:
"""Delete temporary file if created during distributed data parallel (DDP) training.
This function checks if the provided file contains the trainer's ID in its name, indicating it was created as a
temporary file for DDP training, and deletes it if so.
Args:
trainer (ultralytics.engine.trainer.BaseTrainer): The trainer used for distributed training.
file (str): Path to the file that might need to be deleted.
Examples:
>>> trainer = YOLOTrainer()
>>> file = "/tmp/ddp_temp_123456789.py"
>>> ddp_cleanup(trainer, file)
"""
if f"{id(trainer)}.py" in file: # if temp_file suffix in file
os.remove(file)