未验证 提交 57ee8714 编写于 作者: T tensor-tang 提交者: GitHub

add conv2d transpose fuse (#1909)

上级 de43e479
......@@ -28,6 +28,9 @@ void ConvElementwiseFusePass::Apply(const std::unique_ptr<SSAGraph>& graph) {
fusion::ConvElementwiseFuser depthwise_fuser("depthwise_conv2d");
depthwise_fuser(graph.get());
fusion::ConvElementwiseFuser conv2d_transpose_fuser("conv2d_transpose");
conv2d_transpose_fuser(graph.get());
}
} // namespace mir
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册