pass_manager_tester.cc 1.8 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
#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"; }
};

Y
Yan Chunwei 已提交
37
TEST(PassManager, DFG_pass_manager) {
Y
Yan Chunwei 已提交
38 39 40 41 42 43 44
  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 已提交
45 46
  Argument argument(FLAGS_inference_model_dir);

47
  ASSERT_TRUE(&argument);
Y
Yan Chunwei 已提交
48 49 50 51 52 53 54
  ASSERT_TRUE(manager.Initialize(&argument));
  manager.RunAll();
}

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