CoTyle / lakonlab /parallel /__init__.py
liuhuijie03
update
f0395ef
Raw
History Blame Contribute Delete
364 Bytes
from .distributed import MMDistributedDataParallel
from .ddp_wrapper import DistributedDataParallelWrapper
from .fsdp_wrapper import FSDPWrapper
from .fsdp2_wrapper import FSDP2Wrapper
from .utils import apply_module_wrapper
__all__ = [
'MMDistributedDataParallel', 'DistributedDataParallelWrapper', 'FSDPWrapper', 'FSDP2Wrapper',
'apply_module_wrapper']