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