pass_manager_tester.cc 2.9 KB
Newer Older
Y
Yan Chunwei 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* 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. */

G
gongweibao 已提交
15 16
#include <gtest/gtest.h>

Y
Yan Chunwei 已提交
17 18 19
#include "paddle/fluid/inference/analysis/data_flow_graph_to_fluid_pass.h"
#include "paddle/fluid/inference/analysis/dfg_graphviz_draw_pass.h"
#include "paddle/fluid/inference/analysis/fluid_to_data_flow_graph_pass.h"
G
gongweibao 已提交
20
#include "paddle/fluid/inference/analysis/pass_manager.h"
Y
Yan Chunwei 已提交
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
#include "paddle/fluid/inference/analysis/ut_helper.h"

namespace paddle {
namespace inference {
namespace analysis {

class TestDfgPassManager final : public DfgPassManager {
 public:
  TestDfgPassManager() = default;
  virtual ~TestDfgPassManager() = default;
  // Short identifier.
  std::string repr() const override { return "test-pass-manager"; }
  // Long description.
  std::string description() const override { return "test doc"; }
};

class TestNodePassManager final : public NodePassManager {
 public:
  virtual ~TestNodePassManager() = default;

  std::string repr() const override { return "test-node-pass-manager"; }
  std::string description() const override { return "test doc"; }
};

class TestNodePass final : public NodePass {
 public:
  virtual ~TestNodePass() = default;

  bool Initialize(Argument* argument) override { return true; }

  void Run(Node* node) override {
    LOG(INFO) << "- Processing node " << node->repr();
  }

  std::string repr() const override { return "test-node"; }
  std::string description() const override { return "some doc"; }
};

Y
Yan Chunwei 已提交
59
TEST(PassManager, DFG_pass_manager) {
Y
Yan Chunwei 已提交
60 61 62 63 64 65 66
  TestDfgPassManager manager;
  DFG_GraphvizDrawPass::Config config("./", "dfg.dot");

  manager.Register("fluid-to-flow-graph", new FluidToDataFlowGraphPass);
  manager.Register("graphviz", new DFG_GraphvizDrawPass(config));
  manager.Register("dfg-to-fluid", new DataFlowGraphToFluidPass);

Y
Yan Chunwei 已提交
67 68
  Argument argument(FLAGS_inference_model_dir);

69
  ASSERT_TRUE(&argument);
Y
Yan Chunwei 已提交
70 71 72 73
  ASSERT_TRUE(manager.Initialize(&argument));
  manager.RunAll();
}

Y
Yan Chunwei 已提交
74 75
TEST(PassManager, Node_pass_manager) {
  Argument argument(FLAGS_inference_model_dir);
Y
Yan Chunwei 已提交
76 77 78 79 80 81 82 83 84 85 86 87 88 89
  // Pre-process: initialize the DFG with the ProgramDesc first.
  FluidToDataFlowGraphPass pass0;
  pass0.Initialize(&argument);
  pass0.Run(argument.main_dfg.get());

  TestNodePassManager manager;
  manager.Register("test-node-pass", new TestNodePass);
  ASSERT_TRUE(manager.Initialize(&argument));
  manager.RunAll();
}

}  // namespace analysis
}  // namespace inference
}  // namespace paddle