data_flow_graph_tester.cc 4.8 KB
Newer Older
1 2
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.

Y
Yan Chunwei 已提交
3 4 5
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
6

Y
Yan Chunwei 已提交
7
http://www.apache.org/licenses/LICENSE-2.0
8

Y
Yan Chunwei 已提交
9 10 11 12 13
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. */
14 15

#include "paddle/fluid/inference/analysis/data_flow_graph.h"
X
Xin Pan 已提交
16
#include "paddle/fluid/framework/op_proto_maker.h"
17
#include "paddle/fluid/framework/program_desc.h"
18 19 20 21 22 23 24
#include "paddle/fluid/inference/analysis/ut_helper.h"

namespace paddle {
namespace inference {
namespace analysis {

TEST(DataFlowGraph, BFS) {
Y
Yan Chunwei 已提交
25
  auto desc = LoadProgramDesc(FLAGS_inference_model_dir + "/__model__");
26 27 28
  auto dfg = ProgramDescToDFG(desc);
  dfg.Build();

29
  for (auto* in : dfg.inputs()) {
30 31 32
    LOG(INFO) << "inputs: " << in->name() << " "
              << static_cast<int>(in->type());
  }
33
  for (auto* out : dfg.outputs()) {
34 35 36 37
    LOG(INFO) << "outputs: " << out->name() << " "
              << static_cast<int>(out->type());
  }

Y
Yancey1989 已提交
38
  size_t count = 0;
39 40
  for (auto& node : GraphTraits<DataFlowGraph>(dfg).nodes()) {
    LOG(INFO) << "visiting " << node.name();
41 42 43 44 45 46
    ++count;
  }
  ASSERT_EQ(count, dfg.nodes.size());
}

TEST(DataFlowGraph, DFS) {
Y
Yan Chunwei 已提交
47
  auto desc = LoadProgramDesc(FLAGS_inference_model_dir + "/__model__");
48 49
  DataFlowGraph dfg;
  dfg.Build(desc);
Y
Yancey1989 已提交
50
  size_t count = 0;
51 52
  for (auto& node : GraphTraits<DataFlowGraph>(dfg).nodes_in_DFS()) {
    LOG(INFO) << "visiting " << node.name();
53 54 55 56 57
    ++count;
  }
  ASSERT_EQ(count, dfg.nodes.size());
}

Y
Yan Chunwei 已提交
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
// Topological sorting.
/*
 * Graph topology
 * inputs: 0, 1, 2
 * 0 -> 4
 * 0 -> 5
 * 1 -> 6
 * 2 -> 7
 * 4 -> 5
 * 4 -> 7
 * 4 -> 3
 * 7 -> 3
 */
TEST(DataFlowGraph, TS) {
  DataFlowGraph graph;

  for (int i = 0; i < 8; i++) {
75
    auto* node = graph.nodes.Create(Node::Type::kValue);
Y
Yan Chunwei 已提交
76 77 78 79
    node->SetName("node-" + std::to_string(i));
  }

  auto add_link = [&](int i, int j) {
80 81
    Node* source = graph.nodes.GetMutable(i);
    Node* target = graph.nodes.GetMutable(j);
Y
Yan Chunwei 已提交
82 83 84 85 86 87 88 89 90 91 92 93
    target->inlinks.push_back(source);
    source->outlinks.push_back(target);
  };

  add_link(0, 4);
  add_link(0, 5);
  add_link(1, 6);
  add_link(2, 7);
  add_link(4, 5);
  add_link(4, 7);
  add_link(4, 3);
  add_link(7, 3);
94
  graph.Build();
Y
Yan Chunwei 已提交
95

96
  auto its = GraphTraits<DataFlowGraph>(graph).nodes_in_TS();
Y
Yan Chunwei 已提交
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
  std::vector<int> sorted_ids;
  for (auto it = its.begin(); it != its.end(); ++it) {
    LOG(INFO) << it->name();
    sorted_ids.push_back(it->id());
  }

  // Assert a occurs prior to b in the sorted_ids.
  auto assert_positive_sequence_pair = [&](int a, int b) {
    auto a_offset = std::find(sorted_ids.begin(), sorted_ids.end(), a);
    auto b_offset = std::find(sorted_ids.begin(), sorted_ids.end(), b);
    ASSERT_LT(a_offset, b_offset);
  };

  assert_positive_sequence_pair(2, 7);
  assert_positive_sequence_pair(7, 3);
  assert_positive_sequence_pair(4, 3);
  assert_positive_sequence_pair(0, 4);
  assert_positive_sequence_pair(0, 5);
  assert_positive_sequence_pair(1, 6);
  assert_positive_sequence_pair(4, 5);
  assert_positive_sequence_pair(4, 7);
}

120 121 122 123 124 125 126 127 128 129 130 131 132 133
TEST(DataFlowGraph, Build_ProgramDesc) {
  auto desc = LoadProgramDesc(FLAGS_inference_model_dir + "/__model__");
  DataFlowGraph graph;
  graph.Build(desc);
  ASSERT_EQ(graph.nodes.size(), 38UL);
}

void SetOp(framework::ProgramDesc* prog, const std::string& type,
           const std::vector<std::string>& inputs,
           const std::vector<std::string>& outputs) {
  auto* op = prog->MutableBlock(0)->AppendOp();
  op->SetType(type);
  op->SetInput("Xs", inputs);
  op->SetOutput("Xs", outputs);
X
Xin Pan 已提交
134 135
  op->SetAttr(framework::OpProtoAndCheckerMaker::OpRoleAttrName(),
              static_cast<int>(framework::OpRole::kForward));
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
}

TEST(DataFlowGraph, Build_IR_Graph) {
  framework::ProgramDesc prog;
  for (auto& v : std::vector<std::string>({"a", "b", "c", "d", "e", "f"})) {
    auto* var = prog.MutableBlock(0)->Var(v);
    var->SetType(framework::proto::VarType::SELECTED_ROWS);
    if (v == "c") {
      var->SetPersistable(true);
    }
  }

  SetOp(&prog, "OP0", std::vector<std::string>({"a"}),
        std::vector<std::string>({"b"}));
  SetOp(&prog, "OP1", std::vector<std::string>({"a"}),
        std::vector<std::string>({"c"}));
  SetOp(&prog, "mul", std::vector<std::string>({"b", "c"}),
        std::vector<std::string>({"d"}));
  SetOp(&prog, "elementwise_add", std::vector<std::string>({"d", "e"}),
        std::vector<std::string>({"f"}));

  DataFlowGraph graph;

  framework::ir::Graph ir_graph(prog);

  graph.Build(ir_graph);

  ASSERT_EQ(graph.nodes.size(), ir_graph.Nodes().size());
}

166 167 168
}  // namespace analysis
}  // namespace inference
}  // namespace paddle