From 7f5c8a95e84f530f2c41890380703c837af9331a Mon Sep 17 00:00:00 2001 From: Tomasz Patejko Date: Tue, 18 Sep 2018 06:16:41 +0200 Subject: [PATCH] MKLDNN conv + elementwise_add fusion: arguments are replaced for many parameters in operator --- .../conv_elementwise_add_mkldnn_fuse_pass.cc | 38 ++++++++++++++----- 1 file changed, 28 insertions(+), 10 deletions(-) diff --git a/paddle/fluid/framework/ir/conv_elementwise_add_mkldnn_fuse_pass.cc b/paddle/fluid/framework/ir/conv_elementwise_add_mkldnn_fuse_pass.cc index c3454ea7a6..eae55e0e26 100644 --- a/paddle/fluid/framework/ir/conv_elementwise_add_mkldnn_fuse_pass.cc +++ b/paddle/fluid/framework/ir/conv_elementwise_add_mkldnn_fuse_pass.cc @@ -109,9 +109,23 @@ void LinkNodes(Node* from, Node* to) { to->inputs.push_back(from); } +template +void ReplaceAllOccurances(IT s, IT e, FindFunc f, ReplaceFunc r) { + if (s == e) + return; + + auto it = std::find_if(s, e, f); + + if (it != e) { + r(*it); + } + + it++; + ReplaceAllOccurances(it, e, f, r); +} + void CorrectGraphEdges(Graph* graph, Node* from, Node* to) { for (auto& node : GraphTraits::DFS(*graph)) { - std::vector to_remove; auto same = std::find_if(std::begin(node.inputs), std::end(node.inputs), [from](Node* n) { return n == from; }); @@ -121,15 +135,19 @@ void CorrectGraphEdges(Graph* graph, Node* from, Node* to) { auto inputs = node.Op()->Inputs(); - std::for_each(std::begin(inputs), std::end(inputs), - [from, to](const std::pair>& i) -> void { - auto params = i.second; - - std::remove_if(std::begin(params), std::end(params), - std::bind(std::equal_to(), from->Name(), std::placeholders::_1)); - - params.push_back(to->Name()); - }); + using input_type = VariableNameMap::value_type; + + ReplaceAllOccurances(std::begin(inputs), std::end(inputs), + [from](const input_type& i) -> bool { + auto params = i.second; + auto pi = std::find_if(std::begin(params), std::end(params), + std::bind(std::equal_to(), + from->Name(), std::placeholders::_1)); + return pi != std::end(params); + }, + [to, &node](const input_type& i) { + node.Op()->SetInput(i.first, {to->Name()}); + }); } } } -- GitLab