op_converter.h 2.7 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
/* 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"
L
Luo Tao 已提交
22
#include "paddle/fluid/inference/utils/singleton.h"
L
Luo Tao 已提交
23 24 25 26 27 28 29 30 31 32 33

namespace paddle {
namespace inference {
namespace tensorrt {

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

36 37
  void Run(const framework::proto::OpDesc& op, TensorRTEngine* engine) {
    std::string type = op.type();
L
Luo Tao 已提交
38 39 40 41
    auto* it = Registry<OpConverter>::Lookup(type);
    PADDLE_ENFORCE_NOT_NULL(it, "no OpConverter for optype [%s]", type);
    it->SetEngine(engine);
    (*it)(op);
L
Luo Tao 已提交
42 43
  }

L
Luo Tao 已提交
44
  // convert fluid op to tensorrt layer
45
  void ConvertOp(const framework::proto::OpDesc& op, TensorRTEngine* engine) {
L
Luo Tao 已提交
46
    OpConverter::Run(op, engine);
L
Luo Tao 已提交
47 48 49
  }

  // convert fluid block to tensorrt network
50 51
  void ConvertBlock(const framework::proto::BlockDesc& block,
                    TensorRTEngine* engine) {
K
Kexin Zhao 已提交
52
    for (int i = 0; i < block.ops_size(); i++) {
53 54
      const auto& op = block.ops(i);
      OpConverter::Run(op, engine);
L
Luo Tao 已提交
55 56 57 58 59
    }
  }

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

L
Luo Tao 已提交
60 61
  virtual ~OpConverter() {}

L
Luo Tao 已提交
62 63 64
  // TensorRT engine
  TensorRTEngine* engine_{nullptr};

L
Luo Tao 已提交
65 66 67 68 69
 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 已提交
70
  framework::Scope* scope_{nullptr};
L
Luo Tao 已提交
71 72
};

L
Luo Tao 已提交
73 74 75 76 77 78
#define REGISTER_TRT_OP_CONVERTER(op_type__, Converter__)       \
  struct trt_##op_type__##_converter {                          \
    trt_##op_type__##_converter() {                             \
      Registry<OpConverter>::Register<Converter__>(#op_type__); \
    }                                                           \
  };                                                            \
L
Luo Tao 已提交
79 80 81 82 83
  trt_##op_type__##_converter trt_##op_type__##_converter__;

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