ClusterEnvironment — PyTorch Lightning 2.5.1.post0 documentation (original) (raw)
class lightning.pytorch.plugins.environments.ClusterEnvironment[source]¶
Bases: ABC
Specification of a cluster environment.
abstract static detect()[source]¶
Detects the environment settings corresponding to this cluster and returns True
if they match.
Return type:
abstract global_rank()[source]¶
The rank (index) of the currently running process across all nodes and devices.
Return type:
abstract local_rank()[source]¶
The rank (index) of the currently running process inside of the current node.
Return type:
The rank (index) of the node on which the current process runs.
Return type:
Clean up any state set after execution finishes.
Return type:
validate_settings(num_devices, num_nodes)[source]¶
Validates settings configured in the script against the environment, and raises an exception if there is an inconsistency.
Return type:
abstract world_size()[source]¶
The number of processes across all devices and nodes.
Return type:
abstract property creates_processes_externally_: bool_¶
Whether the environment creates the subprocesses or not.
abstract property main_address_: str_¶
The main address through which all processes connect and communicate.
abstract property main_port_: int_¶
An open and configured port in the main node through which all processes communicate.