ColossalAI/colossalai/auto_parallel/solver/strategy/__init__.py

11 lines
566 B
Python
Raw Normal View History

from .strategy_generator import StrategyGenerator_V2
from .matmul_strategy_generator import DotProductStrategyGenerator, MatVecStrategyGenerator, LinearProjectionStrategyGenerator, BatchedMatMulStrategyGenerator
from .conv_strategy_generator import ConvStrategyGenerator
2022-09-29 04:49:28 +00:00
from .batch_norm_generator import BatchNormStrategyGenerator
__all__ = [
'StrategyGenerator_V2', 'DotProductStrategyGenerator', 'MatVecStrategyGenerator',
2022-09-29 04:49:28 +00:00
'LinearProjectionStrategyGenerator', 'BatchedMatMulStrategyGenerator', 'ConvStrategyGenerator',
'BatchNormStrategyGenerator'
]