mirror of https://github.com/hpcaitech/ColossalAI
7 lines
331 B
Python
7 lines
331 B
Python
from .base_shard_strategy import BaseShardStrategy
|
|
from .bucket_tensor_shard_strategy import BucketTensorShardStrategy
|
|
from .tensor_shard_strategy import TensorShardStrategy
|
|
from .stateful_tensor_mgr import StatefulTensorMgr
|
|
|
|
__all__ = ['BaseShardStrategy', 'TensorShardStrategy', 'BucketTensorShardStrategy', 'StatefulTensorMgr']
|