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