commit
2bb15f437c
@ -0,0 +1,65 @@
|
|||||||
|
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License. */
|
||||||
|
|
||||||
|
#include "paddle/fluid/framework/ir/graph_to_program_pass.h"
|
||||||
|
|
||||||
|
#include <map>
|
||||||
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
#include "paddle/fluid/framework/ir/graph.h"
|
||||||
|
#include "paddle/fluid/framework/ir/graph_helper.h"
|
||||||
|
|
||||||
|
#include "paddle/fluid/framework/program_desc.h"
|
||||||
|
|
||||||
|
namespace paddle {
|
||||||
|
namespace framework {
|
||||||
|
namespace ir {
|
||||||
|
|
||||||
|
std::unique_ptr<Graph> GraphToProgramPass::ApplyImpl(
|
||||||
|
std::unique_ptr<Graph> graph) const {
|
||||||
|
ProgramDesc& program = Get<ProgramDesc>("program");
|
||||||
|
|
||||||
|
std::unique_ptr<proto::ProgramDesc> program_pb(
|
||||||
|
new proto::ProgramDesc(*program.Proto()));
|
||||||
|
|
||||||
|
auto block = program_pb->mutable_blocks(kRootBlockIndex);
|
||||||
|
block->clear_vars();
|
||||||
|
std::unordered_set<std::string> visited_vars;
|
||||||
|
for (ir::Node* n : graph->Nodes()) {
|
||||||
|
if (n->NodeType() == ir::Node::Type::kVariable) {
|
||||||
|
if (n->Var() && visited_vars.count(n->Var()->Name()) == 0) {
|
||||||
|
visited_vars.insert(n->Var()->Name());
|
||||||
|
block->add_vars()->MergeFrom(*n->Var()->Proto());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
block->clear_ops();
|
||||||
|
std::vector<ir::Node*> nodes = TopologySortOperations(*graph);
|
||||||
|
for (ir::Node* n : nodes) {
|
||||||
|
if (!n->Op()) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
block->add_ops()->MergeFrom(*n->Op()->Proto());
|
||||||
|
}
|
||||||
|
|
||||||
|
program.CopyFrom(*program_pb);
|
||||||
|
return graph;
|
||||||
|
}
|
||||||
|
} // namespace ir
|
||||||
|
} // namespace framework
|
||||||
|
} // namespace paddle
|
||||||
|
|
||||||
|
REGISTER_PASS(graph_to_program_pass, paddle::framework::ir::GraphToProgramPass);
|
@ -0,0 +1,30 @@
|
|||||||
|
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License. */
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "paddle/fluid/framework/ir/pass.h"
|
||||||
|
|
||||||
|
namespace paddle {
|
||||||
|
namespace framework {
|
||||||
|
namespace ir {
|
||||||
|
|
||||||
|
class GraphToProgramPass : public Pass {
|
||||||
|
protected:
|
||||||
|
std::unique_ptr<Graph> ApplyImpl(std::unique_ptr<Graph> graph) const override;
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace ir
|
||||||
|
} // namespace framework
|
||||||
|
} // namespace paddle
|
@ -0,0 +1,110 @@
|
|||||||
|
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License. */
|
||||||
|
|
||||||
|
#include "paddle/fluid/framework/ir/graph_to_program_pass.h"
|
||||||
|
|
||||||
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
#include "gtest/gtest.h"
|
||||||
|
#include "paddle/fluid/framework/program_desc.h"
|
||||||
|
|
||||||
|
namespace paddle {
|
||||||
|
namespace framework {
|
||||||
|
namespace ir {
|
||||||
|
|
||||||
|
void BuildNoCircleGraph(Graph* g) {
|
||||||
|
OpDesc op1;
|
||||||
|
op1.SetType("op1");
|
||||||
|
OpDesc op2;
|
||||||
|
op2.SetType("op2");
|
||||||
|
OpDesc op3;
|
||||||
|
op3.SetType("op3");
|
||||||
|
OpDesc op4;
|
||||||
|
op4.SetType("op4");
|
||||||
|
OpDesc op5;
|
||||||
|
op5.SetType("op5");
|
||||||
|
VarDesc var1("var1");
|
||||||
|
VarDesc var2("var2");
|
||||||
|
VarDesc var3("var3");
|
||||||
|
VarDesc var4("var4");
|
||||||
|
|
||||||
|
ir::Node* o1 = g->CreateOpNode(&op1);
|
||||||
|
ir::Node* o2 = g->CreateOpNode(&op2);
|
||||||
|
ir::Node* o3 = g->CreateOpNode(&op3);
|
||||||
|
ir::Node* o4 = g->CreateOpNode(&op4);
|
||||||
|
ir::Node* o5 = g->CreateOpNode(&op5);
|
||||||
|
ir::Node* v1 = g->CreateVarNode(&var1);
|
||||||
|
ir::Node* v2 = g->CreateVarNode(&var2);
|
||||||
|
ir::Node* v3 = g->CreateVarNode(&var3);
|
||||||
|
ir::Node* v4 = g->CreateVarNode(&var4);
|
||||||
|
|
||||||
|
// o1->v1->o2
|
||||||
|
o1->outputs.push_back(v1);
|
||||||
|
o2->inputs.push_back(v1);
|
||||||
|
v1->inputs.push_back(o1);
|
||||||
|
v1->outputs.push_back(o2);
|
||||||
|
// o2->v2->o3
|
||||||
|
// o2->v2->o4
|
||||||
|
o2->outputs.push_back(v2);
|
||||||
|
o3->inputs.push_back(v2);
|
||||||
|
o4->inputs.push_back(v2);
|
||||||
|
v2->outputs.push_back(o3);
|
||||||
|
v2->outputs.push_back(o4);
|
||||||
|
v2->inputs.push_back(o2);
|
||||||
|
// o2->v3->o5
|
||||||
|
o2->outputs.push_back(v3);
|
||||||
|
o5->inputs.push_back(v3);
|
||||||
|
v3->inputs.push_back(o2);
|
||||||
|
v3->outputs.push_back(o5);
|
||||||
|
// o3-v4->o5
|
||||||
|
o3->outputs.push_back(v4);
|
||||||
|
o5->inputs.push_back(v4);
|
||||||
|
v4->inputs.push_back(o3);
|
||||||
|
v4->outputs.push_back(o5);
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(GraphToProgramPass, Basic) {
|
||||||
|
ProgramDesc prog;
|
||||||
|
std::unique_ptr<Graph> g(new Graph(prog));
|
||||||
|
BuildNoCircleGraph(g.get());
|
||||||
|
|
||||||
|
auto pass = paddle::framework::ir::PassRegistry::Instance().Get(
|
||||||
|
"graph_to_program_pass");
|
||||||
|
|
||||||
|
ProgramDesc compiled_prog;
|
||||||
|
pass->SetNotOwned<paddle::framework::ProgramDesc>("program", &compiled_prog);
|
||||||
|
pass->Apply(std::move(g));
|
||||||
|
std::vector<OpDesc*> ops = compiled_prog.Block(0).AllOps();
|
||||||
|
EXPECT_EQ(ops[0]->Type(), "op1");
|
||||||
|
EXPECT_EQ(ops[1]->Type(), "op2");
|
||||||
|
if (ops[2]->Type() == "op3") {
|
||||||
|
EXPECT_EQ(ops[3]->Type(), "op4");
|
||||||
|
} else if (ops[2]->Type() == "op4") {
|
||||||
|
EXPECT_EQ(ops[3]->Type(), "op3");
|
||||||
|
}
|
||||||
|
EXPECT_EQ(ops[4]->Type(), "op5");
|
||||||
|
|
||||||
|
std::unordered_set<std::string> vars;
|
||||||
|
for (VarDesc* v : compiled_prog.Block(0).AllVars()) {
|
||||||
|
vars.insert(v->Name());
|
||||||
|
}
|
||||||
|
EXPECT_TRUE(vars.find("var1") != vars.end());
|
||||||
|
EXPECT_TRUE(vars.find("var2") != vars.end());
|
||||||
|
EXPECT_TRUE(vars.find("var3") != vars.end());
|
||||||
|
}
|
||||||
|
} // namespace ir
|
||||||
|
} // namespace framework
|
||||||
|
} // namespace paddle
|
||||||
|
|
||||||
|
USE_PASS(graph_to_program_pass);
|
Loading…
Reference in new issue