mirror of
https://github.com/hpcaitech/ColossalAI.git
synced 2025-06-22 05:29:36 +00:00
* [misc] update pre-commit * [misc] run pre-commit * [misc] remove useless configuration files * [misc] ignore cuda for clang-format
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"]
|