(self, graph: BaseGraph,
dataloader: Iterable, executor: BaseGraphExecutor, **kwargs)
| 211 | |
| 212 | # Implementation of Gemm Split will move to IR.morph soon. |
| 213 | def optimize(self, graph: BaseGraph, |
| 214 | dataloader: Iterable, executor: BaseGraphExecutor, **kwargs) -> None: |
| 215 | morpher = GraphDecomposer(graph) |
| 216 | morpher.decompose_gemm() |
| 217 | |
| 218 | |
| 219 | class GRUSplitPass(QuantizationOptimizationPass): |
nothing calls this directly
no test coverage detected