ColossalAI/colossalai/cluster/__init__.py
Frank Lee e3ad88fb48
[booster] implemented the cluster module (#3191)
* [booster] implemented the cluster module

* polish code
2023-03-22 14:11:54 +08:00

6 lines
227 B
Python

from .device_mesh_manager import DeviceMeshManager
from .dist_coordinator import DistCoordinator
from .process_group_manager import ProcessGroupManager
__all__ = ['DistCoordinator', 'ProcessGroupManager', 'DeviceMeshManager']