mirror of https://github.com/hpcaitech/ColossalAI
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
418 B
18 lines
418 B
from . import distspec
|
|
from .compute_spec import ComputePattern, ComputeSpec
|
|
from .dist_spec_mgr import DistSpecManager
|
|
from .distspec import ReplicaSpec, ShardSpec
|
|
from .process_group import ProcessGroup
|
|
from .tensor_spec import ColoTensorSpec
|
|
|
|
__all__ = [
|
|
'ComputePattern',
|
|
'ComputeSpec',
|
|
'distspec',
|
|
'DistSpecManager',
|
|
'ProcessGroup',
|
|
'ColoTensorSpec',
|
|
'ShardSpec',
|
|
'ReplicaSpec',
|
|
]
|