Source code for gigl.env.distributed
"""Information about distributed environments."""
from dataclasses import dataclass
@dataclass(frozen=True)
[docs]
class DistributedContext:
    """
    GiGL Distributed Context
    """
    # TODO (mkolodner-sc): Investigate adding local rank and local world size
    # Main Worker's IP Address for RPC communication
    # Rank of machine
    # Total number of machines
