ColossalAI/colossalai/zero/shard_utils/__init__.py

7 lines
350 B
Python
Raw Normal View History

2022-03-14 06:48:32 +00:00
from .base_shard_strategy import BaseShardStrategy
from .bucket_tensor_shard_strategy import BucketTensorShardStrategy
from .tensor_shard_strategy import TensorShardStrategy
from .zero_tensor_shard_strategy import ZeroTensorShardStrategy
__all__ = ['BaseShardStrategy', 'TensorShardStrategy', 'BucketTensorShardStrategy', 'ZeroTensorShardStrategy']