analyzer.cc 4.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// 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/inference/analysis/analyzer.h"
G
gongweibao 已提交
16
#include <string>
L
luotao1 已提交
17
#include <vector>
18 19 20
#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"
21
#include "paddle/fluid/inference/analysis/fluid_to_ir_pass.h"
Y
Yan Chunwei 已提交
22
#include "paddle/fluid/inference/analysis/model_store_pass.h"
23 24 25 26
#include "paddle/fluid/inference/analysis/pass_manager.h"
#include "paddle/fluid/inference/analysis/tensorrt_subgraph_node_mark_pass.h"
#include "paddle/fluid/inference/analysis/tensorrt_subgraph_pass.h"

27
DEFINE_bool(IA_enable_tensorrt_subgraph_engine, false,
28 29
            "Enable subgraph to TensorRT engine for acceleration");

30 31 32
DEFINE_bool(IA_enable_ir, false, "Turn on IR support");

DEFINE_string(IA_graphviz_log_root, "./",
33 34
              "Graphviz debuger for data flow graphs.");

35
DEFINE_string(IA_output_storage_path, "", "optimized model output path");
Y
Yan Chunwei 已提交
36

37
namespace paddle {
38 39 40
namespace inference {
namespace analysis {

41 42 43 44
class DfgPassManagerImpl final : public DfgPassManager {
 public:
  DfgPassManagerImpl() {
    // TODO(Superjomn) set the key with pass reprs.
L
luotao1 已提交
45
    VLOG(3)
46 47 48 49 50 51 52 53 54 55 56
        << "-----------------------------------------------------------------";
    if (FLAGS_IA_enable_ir) {
      AddPass("fluid-to-ir-pass", new FluidToIrPass);
    } else {
      AddPass("fluid-to-data-flow-graph", new FluidToDataFlowGraphPass);
    }
    TryAddTensorRtPass();
    AddPass("data-flow-graph-to-fluid", new DataFlowGraphToFluidPass);
    if (!FLAGS_IA_output_storage_path.empty()) {
      AddPass("model-store-pass", new ModelStorePass);
    }
L
luotao1 已提交
57
    VLOG(3)
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
        << "-----------------------------------------------------------------";
  }

  std::string repr() const override { return "dfg-pass-manager"; }
  std::string description() const override { return "DFG pass manager."; }

 private:
  void AddPass(const std::string& name, Pass* pass) {
    VLOG(3) << "Adding pass " << name;
    Register(name, pass);
    AddGraphvizDebugerPass(pass);
  }

  void TryAddTensorRtPass() {
    if (FLAGS_IA_enable_tensorrt_subgraph_engine) {
73 74
      auto trt_teller = [&](const Node* node) {
        std::unordered_set<std::string> teller_set(
75
            {"elementwise_add", "mul", "conv2d", "pool2d", "relu", "softmax",
N
nhzlx 已提交
76
             "depthwise_conv2d", "batch_norm", "concat"});
77
        if (!node->IsFunction()) return false;
78 79

        const auto* func = static_cast<const Function*>(node);
W
Wu Yi 已提交
80
        if (teller_set.count(func->func_type())) {
81
          return true;
W
Wu Yi 已提交
82
        } else {
83 84
          return false;
        }
85
      };
86

87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
      AddPass("tensorrt-subgraph-marker",
              new TensorRTSubgraphNodeMarkPass(trt_teller));
      AddPass("tensorrt-subgraph", new TensorRTSubGraphPass(trt_teller));
    }
  }

  // Add the graphviz debuger pass if the parent pass has one.
  void AddGraphvizDebugerPass(Pass* pass) {
    auto* debuger_pass = pass->CreateGraphvizDebugerPass();
    if (debuger_pass) {
      Register(debuger_pass->repr(), debuger_pass);
    }
  }
};

Analyzer::Analyzer() { Register("manager1", new DfgPassManagerImpl); }

void Analyzer::Run(Argument* argument) {
105
  // Ugly support fluid-to-ir-pass
106 107 108 109 110 111 112
  argument->Set(kFluidToIrPassesAttr,
                new std::vector<std::string>({
                    // Manual update the passes here.
                    "graph_viz_pass",                              //
                    "infer_clean_graph_pass", "graph_viz_pass",    //
                    "attention_lstm_fuse_pass", "graph_viz_pass",  //
                    "fc_lstm_fuse_pass", "graph_viz_pass",         //
113
                    "mul_lstm_fuse_pass", "graph_viz_pass",        //
114 115 116 117
                    "seq_concat_fc_fuse_pass", "graph_viz_pass",   //
                    "fc_fuse_pass", "graph_viz_pass"               //
                }));

118 119 120 121 122 123 124 125 126
  for (auto& x : data_) {
    PADDLE_ENFORCE(x->Initialize(argument));
    x->RunAll();
    PADDLE_ENFORCE(x->Finalize());
  }
}

}  // namespace analysis
}  // namespace inference
G
gongweibao 已提交
127
}  // namespace paddle