mirror of https://github.com/hpcaitech/ColossalAI
11 lines
566 B
Python
11 lines
566 B
Python
from .strategy_generator import StrategyGenerator_V2
|
|
from .matmul_strategy_generator import DotProductStrategyGenerator, MatVecStrategyGenerator, LinearProjectionStrategyGenerator, BatchedMatMulStrategyGenerator
|
|
from .conv_strategy_generator import ConvStrategyGenerator
|
|
from .batch_norm_generator import BatchNormStrategyGenerator
|
|
|
|
__all__ = [
|
|
'StrategyGenerator_V2', 'DotProductStrategyGenerator', 'MatVecStrategyGenerator',
|
|
'LinearProjectionStrategyGenerator', 'BatchedMatMulStrategyGenerator', 'ConvStrategyGenerator',
|
|
'BatchNormStrategyGenerator'
|
|
]
|