__init__.py 510 Bytes
Newer Older
1
2
3
4
5
# Copyright (c) Facebook, Inc. and its affiliates. All rights reserved.
#
# This source code is licensed under the BSD license found in the
# LICENSE file in the root directory of this source tree.

6
from .data_parallel import ShardedDataParallel
Myle Ott's avatar
Myle Ott committed
7
from .misc import FlattenParamsWrapper
8
from .moe import MOELayer, Top2Gate
9
from .pipe import LazyModule, Pipe, PipeRPCWrapper
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
10

Myle Ott's avatar
Myle Ott committed
11
12
13
14
15
16
17
18
__all__ = [
    "FlattenParamsWrapper",
    "LazyModule",
    "Pipe",
    "PipeRPCWrapper",
    "ShardedDataParallel",
    "Top2Gate",
]