op_converter.h 2.8 KB
Newer Older
L
Luo Tao 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
/* 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. */

#pragma once

#include <string>
#include <unordered_map>
#include "paddle/fluid/framework/block_desc.h"
#include "paddle/fluid/framework/scope.h"
#include "paddle/fluid/inference/tensorrt/engine.h"

namespace paddle {
namespace inference {
namespace tensorrt {

/*
 * Convert Op from Fluid to TensorRT Engine.
 */
class OpConverter {
 public:
  OpConverter() {}
  virtual void operator()(const framework::OpDesc& op) {}
L
Luo Tao 已提交
34 35

  void Execute(const framework::OpDesc& op, TensorRTEngine* engine) {
L
Luo Tao 已提交
36 37 38 39
    std::string type = op.Type();
    auto it = converters_.find(type);
    PADDLE_ENFORCE(it != converters_.end(), "no OpConverter for optype [%s]",
                   type);
L
Luo Tao 已提交
40
    it->second->SetEngine(engine);
L
Luo Tao 已提交
41 42 43 44 45 46 47 48 49 50 51 52 53
    (*it->second)(op);
  }

  static OpConverter& Global() {
    static auto* x = new OpConverter;
    return *x;
  }

  template <typename T>
  void Register(const std::string& key) {
    converters_[key] = new T;
  }

L
Luo Tao 已提交
54 55 56 57 58 59 60 61 62 63 64 65 66 67
  // convert fluid op to tensorrt layer
  void ConvertOp(const framework::OpDesc& op, TensorRTEngine* engine) {
    OpConverter::Global().Execute(op, engine);
  }

  // convert fluid block to tensorrt network
  void ConvertBlock(const framework::BlockDesc& block, TensorRTEngine* engine) {
    for (auto op : block.AllOps()) {
      OpConverter::Global().Execute(*op, engine);
    }
  }

  void SetEngine(TensorRTEngine* engine) { engine_ = engine; }

L
Luo Tao 已提交
68 69
  virtual ~OpConverter() {}

L
Luo Tao 已提交
70 71 72
  // TensorRT engine
  TensorRTEngine* engine_{nullptr};

L
Luo Tao 已提交
73 74 75 76 77
 private:
  // registered op converter map, whose key is the fluid op type, and value is
  // the pointer position of corresponding OpConverter class.
  std::unordered_map<std::string, OpConverter*> converters_;
  // fluid inference scope
L
Luo Tao 已提交
78
  framework::Scope* scope_{nullptr};
L
Luo Tao 已提交
79 80 81 82 83 84 85 86 87 88 89 90 91
};

#define REGISTER_TRT_OP_CONVERTER(op_type__, Converter__)      \
  struct trt_##op_type__##_converter {                         \
    trt_##op_type__##_converter() {                            \
      OpConverter::Global().Register<Converter__>(#op_type__); \
    }                                                          \
  };                                                           \
  trt_##op_type__##_converter trt_##op_type__##_converter__;

}  // namespace tensorrt
}  // namespace inference
}  // namespace paddle