tensorrt_subgraph_pass.cc 12.7 KB
Newer Older
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.

15
#include <algorithm>
16
#include <map>
N
nhzlx 已提交
17
#include <set>
18

19 20 21
#include "paddle/fluid/framework/ir/graph_pattern_detector.h"
#include "paddle/fluid/inference/analysis/helper.h"
#include "paddle/fluid/inference/analysis/ir_passes/subgraph_detector.h"
22
#include "paddle/fluid/inference/analysis/ir_passes/tensorrt_subgraph_pass.h"
N
nhzlx 已提交
23 24
#include "paddle/fluid/inference/tensorrt/convert/op_converter.h"
#include "paddle/fluid/inference/tensorrt/engine.h"
25
#include "paddle/fluid/inference/tensorrt/op_teller.h"
Y
Yan Chunwei 已提交
26
#include "paddle/fluid/string/pretty_log.h"
27 28 29 30 31 32 33

namespace paddle {
namespace inference {
namespace analysis {

using framework::ir::Node;

34 35 36
void analysis::TensorRtSubgraphPass::ApplyImpl(
    framework::ir::Graph *graph) const {
  framework::ir::FusePassBase::Init("tensorrt_subgraph_pass", graph);
37

38 39 40 41
  auto teller = [](const framework::ir::Node *node) {
    if (!node->IsOp() || !node->Op()) return false;
    return tensorrt::OpTeller::Global().Tell(node->Op()->Type(), *node->Op());
  };
42

43
  SubGraphFuser fuser(graph, teller,
44 45
                      Get<int>("min_subgraph_size") /*min subgraph size*/,
                      "tensorrt_engine");
46 47
  fuser();

48 49 50 51 52 53
  std::vector<std::string> graph_param_names =
      ExtractParameters(graph->Nodes());
  // those parameter already exist in trt, and should not have another copy in
  // fluid.
  std::vector<std::string> repetitive_params;

54 55
  for (auto *node : graph->Nodes()) {
    if (node->IsOp() && !Agent(node).subgraph()->empty()) {
56
      CreateTensorRTOp(node, graph, graph_param_names, &repetitive_params);
57 58 59

      std::unordered_set<const Node *> nodes2remove(
          Agent(node).subgraph()->begin(), Agent(node).subgraph()->end());
60
      framework::ir::GraphSafeRemoveNodes(graph, nodes2remove);
61 62 63 64 65 66 67 68 69
    }
  }

  std::unordered_set<const Node *> nodes2remove;
  for (auto *node : graph->Nodes()) {
    if (node->IsOp() && Agent(node).deleted()) {
      nodes2remove.insert(node);
    }
  }
70
  framework::ir::GraphSafeRemoveNodes(graph, nodes2remove);
71 72
  graph->Set(framework::ir::kRepetitiveParamAttr,
             new std::vector<std::string>(repetitive_params));
73 74
}

N
nhzlx 已提交
75
std::string GenerateEngineKey(const std::set<std::string> &engine_inputs,
N
nhzlx 已提交
76 77
                              const std::set<std::string> &engine_outputs,
                              const std::string &predictor_id) {
N
nhzlx 已提交
78 79 80 81 82 83 84
  std::string engine_hash_key = "";
  for (auto name : engine_inputs) {
    engine_hash_key += name;
  }
  for (auto name : engine_outputs) {
    engine_hash_key += name;
  }
N
nhzlx 已提交
85
  engine_hash_key += predictor_id;
N
nhzlx 已提交
86 87 88 89
  auto engine_key = std::to_string(std::hash<std::string>()(engine_hash_key));
  return engine_key;
}

90 91 92 93
void TensorRtSubgraphPass::CreateTensorRTOp(
    framework::ir::Node *node, Graph *graph,
    const std::vector<std::string> &graph_params,
    std::vector<std::string> *repetitive_params) const {
94 95 96 97
  auto *op_desc = node->Op();
  auto &subgraph = *Agent(node).subgraph();
  PADDLE_ENFORCE(!subgraph.empty());

N
nhzlx 已提交
98 99 100 101 102 103 104 105
  framework::ProgramDesc *program_desc =
      Get<framework::ProgramDesc *>("program");
  // Add new block for TensorRTEngineOP
  const framework::BlockDesc &main_block =
      program_desc->Block(framework::kRootBlockIndex);
  // const framework::BlockDesc& main_block = program_desc->Block(0);
  framework::BlockDesc *new_block = program_desc->AppendBlock(main_block);

106
  // A fake block desc.
107 108 109 110
  framework::proto::BlockDesc block_proto;
  framework::BlockDesc block_desc(nullptr, &block_proto);
  block_desc.Proto()->set_parent_idx(-1);
  block_desc.Proto()->set_idx(0);
Y
Yan Chunwei 已提交
111 112 113
  string::PrettyLogDetail("---  detect a sub-graph with %d nodes",
                          subgraph.size());

114
  for (auto *node : subgraph) {
N
nhzlx 已提交
115
    auto *new_block_op = new_block->AppendOp();
116
    auto *op = block_desc.AppendOp();
N
nhzlx 已提交
117
    *new_block_op->Proto() = *node->Op()->Proto();
118 119 120
    *op->Proto() = *node->Op()->Proto();
  }

N
nhzlx 已提交
121
  // Then, we will use the input_names_with_id and output_names_with_id to
122
  // generate the engine key.
N
nhzlx 已提交
123 124
  // So, We use set instead of unordered_set here to ensure that the engine key
  // is unique.
N
nhzlx 已提交
125 126
  std::set<std::string> input_names;
  std::set<std::string> input_names_with_id;
127
  std::vector<std::string> params;
128 129 130
  // if we delete fluid copy of params shared by more than 1 ops, there will be
  // problem, so we filter them out.
  std::vector<std::string> params_not_shared;
131

132
  // The node->inputs contains input tensors and parameters.
133 134 135
  for (auto *x : node->inputs) {
    input_names.insert(x->Name());
    input_names_with_id.insert(x->Name() + std::to_string(x->id()));
136 137 138
    if (std::count(graph_params.begin(), graph_params.end(), x->Name()) > 0) {
      params.push_back(x->Name());
    }
139 140 141 142
    if (std::count(graph_params.begin(), graph_params.end(), x->Name()) > 0 &&
        x->outputs.size() <= 1) {
      params_not_shared.push_back(x->Name());
    }
143
  }
144

N
nhzlx 已提交
145 146
  std::set<std::string> output_names;
  std::set<std::string> output_names_with_id;
147 148 149 150 151 152
  for (auto *x : node->outputs) {
    output_names.insert(x->Name());
    output_names_with_id.insert(x->Name() + std::to_string(x->id()));
  }

  std::unordered_map<std::string, std::string> output_name_map;
153 154 155 156 157 158 159
  std::unordered_map<std::string, framework::ir::Node *> graph_var_map;

  for (framework::ir::Node *node : graph->Nodes()) {
    if (node->IsVar() && node->Var()) {
      graph_var_map[node->Name()] = node;
    }
  }
Z
Zhaolong Xing 已提交
160 161 162
  auto precision_mode = Get<AnalysisConfig::Precision>("precision_mode");
  bool enable_fp16 = false;
  if (precision_mode == AnalysisConfig::Precision::kHalf) enable_fp16 = true;
163 164
  auto enable_int8 = Get<bool>("enable_int8");
  auto use_calib_mode = Get<bool>("use_calib_mode");
N
nhzlx 已提交
165
  auto &subgraph_nodes = *Agent(node).subgraph();
166 167 168 169 170 171 172 173 174 175 176 177 178

  // The following procedure is used to rename all the intermediate
  // variables and the output variables of the subgraph.
  // Why we do this?
  // During the transition from fluid OP to tensorrt OP, we map
  // the input and output Tensor(fluid data structure) of fluid OP
  // to the corresponding ITensor (trt data structure) through the
  // Tensor name. When we set up ITensor for an variable, we must
  // ensure that it has not been set before.
  // If there is variable in the fluid graph, which is not only the
  // input of a OP, but also the output of a Op, there will be problems.
  // So we have to rename the variable in the subgraph to make sure
  // it is either an OP's input or an OP's output.
N
nhzlx 已提交
179
  RenameAndGetOutputs(subgraph_nodes, &block_desc, input_names_with_id,
180
                      &output_names_with_id, &output_names, &output_name_map,
181
                      graph_var_map, !enable_int8);
182 183 184 185 186 187 188 189 190

  // When tensorrt engine runs at the end of the operation,
  // output_mapping help us copy the data from the renamed ITensor
  // to Tensor.
  std::vector<std::string> output_mapping;
  for (auto name : output_names) {
    PADDLE_ENFORCE(output_name_map.count(name) != 0);
    output_mapping.push_back(output_name_map[name]);
  }
191
  PADDLE_ENFORCE(!output_mapping.empty());
192 193
  PADDLE_ENFORCE(!block_desc.Proto()->vars().empty(),
                 "the block has no var-desc");
N
nhzlx 已提交
194

195 196
  // Set attrs
  op_desc->SetType("tensorrt_engine");
N
nhzlx 已提交
197 198 199 200 201 202
  op_desc->SetInput(
      "Xs", std::vector<std::string>(input_names.begin(), input_names.end()));

  op_desc->SetOutput(
      "Ys", std::vector<std::string>(output_names.begin(), output_names.end()));

N
nhzlx 已提交
203
  op_desc->SetBlockAttr("sub_block", new_block);
204 205 206 207 208 209
  op_desc->SetAttr("subgraph", block_desc.Proto()->SerializeAsString());
  op_desc->SetAttr("max_batch_size", Get<int>("max_batch_size"));
  op_desc->SetAttr("workspace_size", Get<int>("workspace_size"));
  op_desc->SetAttr("gpu_id", Get<int>("gpu_device_id"));
  op_desc->SetAttr("output_name_mapping", output_mapping);
  op_desc->SetAttr("parameters", params);
N
nhzlx 已提交
210

211 212 213 214 215 216 217 218 219
  // we record all inputs' shapes in attr to check if they are consistent
  // with the real inputs' shapes retrieved from scope when trt runs.
  for (auto *x : node->inputs) {
    if (x->IsVar() && x->Var()) {
      framework::VarDesc *var = x->Var();
      SetAttr(op_desc->Proto(), var->Name() + "_shape", var->GetShape());
    }
  }

220
  auto use_static_engine = Get<bool>("use_static_engine");
221 222 223
  // TODO(NHZlX)
  // There are models with the same structure but the different parameters,
  // when runing in the 'use_serialize' mode, there is a bug.
N
nhzlx 已提交
224
  auto engine_key = GenerateEngineKey(input_names_with_id, output_names_with_id,
N
nhzlx 已提交
225
                                      std::to_string(0));
226
  auto predictor_id = Get<int>("predictor_id");
N
nhzlx 已提交
227

N
nhzlx 已提交
228
  // Get "" when there is no cached calibration table data.
229 230
  bool load_from_memory = Get<bool>("model_from_memory");
  std::string calibration_data = "";
231
  if (enable_int8 && use_calib_mode) {
232 233 234
    calibration_data = GetTrtCalibTableData(
        Get<std::string>("model_opt_cache_dir"), engine_key, enable_int8);
  }
235 236 237 238 239 240
  op_desc->SetAttr("calibration_data", calibration_data);
  op_desc->SetAttr("enable_int8", enable_int8);
  op_desc->SetAttr("enable_fp16", enable_fp16);
  op_desc->SetAttr("use_calib_mode", use_calib_mode);
  op_desc->SetAttr("engine_key", engine_key);
  op_desc->SetAttr("predictor_id", predictor_id);
N
nhzlx 已提交
241

242
  std::string trt_engine_serialized_data = "";
243 244
  op_desc->SetAttr("engine_serialized_data", trt_engine_serialized_data);
  op_desc->Flush();
N
nhzlx 已提交
245 246 247 248

  std::unique_ptr<tensorrt::TRTInt8Calibrator> calibrator;
  if (enable_int8 && calibration_data.size() != 0) {
    calibrator.reset(new tensorrt::TRTInt8Calibrator(calibration_data));
249
    LOG(INFO) << "RUN Paddle TRT int8 calibration mode...";
N
nhzlx 已提交
250 251 252
  }
  // When in int8 mode and calibration_mode, the program just produce the
  // calibration table data.
253 254
  bool calibration_mode =
      (enable_int8 && calibration_data.size() == 0 && use_calib_mode);
N
nhzlx 已提交
255 256 257 258
  if (calibration_mode) {
    // calibraion mode means generate int8 calibration table data process.
    return;
  }
N
nhzlx 已提交
259

260
  std::copy(params_not_shared.begin(), params_not_shared.end(),
N
nhzlx 已提交
261 262
            std::back_inserter(*repetitive_params));

263 264 265 266
  tensorrt::TensorRTEngine *trt_engine =
      inference::Singleton<inference::tensorrt::TRTEngineManager>::Global()
          .Create(engine_key + std::to_string(predictor_id),
                  Get<int>("max_batch_size"), Get<int>("workspace_size"),
Z
Zhaolong Xing 已提交
267
                  precision_mode, calibrator.get(), Get<int>("gpu_device_id"));
268 269

  bool need_serialize = (use_static_engine && !load_from_memory);
N
nhzlx 已提交
270 271 272 273 274
  if (need_serialize) {
    trt_engine_serialized_data = GetTrtEngineSerializedData(
        Get<std::string>("model_opt_cache_dir"), engine_key);
    // we can load the engine info serialized before from the disk.
    if (!trt_engine_serialized_data.empty()) {
275
      trt_engine->Deserialize(trt_engine_serialized_data);
N
nhzlx 已提交
276
      LOG(INFO) << "Load TRT Optimized Info from "
N
nhzlx 已提交
277 278
                << GetTrtEngineSerializedPath(
                       Get<std::string>("model_opt_cache_dir"), engine_key);
N
nhzlx 已提交
279
      return;
280 281 282
    }
  }

N
nhzlx 已提交
283 284 285 286 287
  // the following code will NOT run in following situation:
  // 1. calibraion mode (generate trt int8 calibraiton table data)
  // 2. already load serialized trt engine info.
  LOG(INFO) << "Prepare TRT engine (Optimize model structure, Select OP "
               "kernel etc). This process may cost a lot of time.";
288

N
nhzlx 已提交
289 290 291 292 293 294 295
  auto *scope = param_scope();
  framework::BlockDesc block_desc_temp(nullptr, block_desc.Proto());
  std::unordered_set<std::string> param_set(params.begin(), params.end());
  inference::Singleton<inference::tensorrt::OpConverter>::Global()
      .ConvertBlockToTRTEngine(
          &block_desc_temp, *scope,
          std::vector<std::string>(input_names.begin(), input_names.end()),
296
          param_set, output_mapping, trt_engine);
N
nhzlx 已提交
297 298

  if (need_serialize) {
299 300 301 302
    nvinfer1::IHostMemory *serialized_engine_data = trt_engine->Serialize();
    trt_engine_serialized_data =
        std::string((const char *)serialized_engine_data->data(),
                    serialized_engine_data->size());
N
nhzlx 已提交
303 304 305 306
    SaveTrtEngineSerializedDataToFile(
        GetTrtEngineSerializedPath(Get<std::string>("model_opt_cache_dir"),
                                   engine_key),
        trt_engine_serialized_data);
N
nhzlx 已提交
307 308 309
  }
}

310 311 312 313 314 315 316
}  // namespace analysis
}  // namespace inference
}  // namespace paddle

REGISTER_PASS(tensorrt_subgraph_pass,
              paddle::inference::analysis::TensorRtSubgraphPass)
    .RequirePassAttr("max_batch_size")
317 318
    .RequirePassAttr("workspace_size")
    .RequirePassAttr("min_subgraph_size");