subgraph_splitter_tester.cc 2.7 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 16 17 18 19 20 21

#include "paddle/fluid/inference/analysis/subgraph_splitter.h"
#include "paddle/fluid/inference/analysis/ut_helper.h"

namespace paddle {
namespace inference {
namespace analysis {

Y
Yan Chunwei 已提交
22 23 24 25 26 27 28 29 30 31 32 33
SubGraphSplitter::NodeInsideSubgraphTeller teller = [](const Node* node) {
  if (node->type() != Node::Type::kFunction) return false;
  const auto* func = static_cast<const Function*>(node);
  if (func->func_type() == "elementwise_add" || func->func_type() == "relu" ||
      func->func_type() == "conv2d" || func->func_type() == "mul" ||
      func->func_type() == "sigmoid" || func->func_type() == "softmax") {
    LOG(INFO) << "sub-graph marked " << node->repr();
    return true;
  }
  return false;
};

Y
Yan Chunwei 已提交
34 35
TEST(SubGraphSplitter, Split) {
  auto desc = LoadProgramDesc(FLAGS_inference_model_dir + "/__model__");
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
  auto dfg = ProgramDescToDFG(desc);
  LOG(INFO) << "spliter\n" << dfg.DotString();

  ASSERT_GT(dfg.nodes.size(), 5UL);

  auto subgraphs = SubGraphSplitter(&dfg, teller)();

  // Check the number of the marked nodes.
  int marked_nodes = 0;
  for (auto& node : dfg.nodes.nodes()) {
    if (node->IsFunction() &&
        node->attr(SubGraphSplitter::kMarkerAttrName).Bool()) {
      ++marked_nodes;
    }
  }
  EXPECT_EQ(marked_nodes, 6);

  // For human debug.
  for (auto& subgraph : subgraphs) {
    LOG(INFO) << "subgraph size " << subgraph.size();
    for (auto* node : subgraph) {
      LOG(INFO) << "node " << node->repr();
    }
  }

  ASSERT_EQ(subgraphs.size(), 1UL);
  // The last sub-graph has 5 Functions.
  ASSERT_EQ(subgraphs.back().size(), 6UL);
}

Y
Yan Chunwei 已提交
66 67
TEST(SubGraphSplitter, Fuse) {
  auto desc = LoadProgramDesc(FLAGS_inference_model_dir + "/__model__");
Y
Yan Chunwei 已提交
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
  auto dfg = ProgramDescToDFG(desc);

  size_t count0 = dfg.nodes.size();

  SubGraphFuse fuse(&dfg, teller);
  fuse();

  int count1 = 0;
  for (auto& node : dfg.nodes.nodes()) {
    if (node->deleted()) {
      LOG(INFO) << "deleted " << node->repr();
    }
    count1 += node->deleted();
  }

  // At least one nodes should be deleted.
  ASSERT_EQ(dfg.nodes.size(), count0 + 1);  // added a new FunctionBlock
85
  ASSERT_EQ(6, count1);
Y
Yan Chunwei 已提交
86 87
}

88 89 90
}  // namespace analysis
}  // namespace inference
}  // namespace paddle