op_converter.h 2.6 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 34

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 已提交
35

L
Luo Tao 已提交
36
  void Run(const framework::OpDesc& op, TensorRTEngine* engine) {
L
Luo Tao 已提交
37
    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 45
  // convert fluid op to tensorrt layer
  void ConvertOp(const framework::OpDesc& op, TensorRTEngine* engine) {
L
Luo Tao 已提交
46
    OpConverter::Run(op, engine);
L
Luo Tao 已提交
47 48 49 50 51
  }

  // convert fluid block to tensorrt network
  void ConvertBlock(const framework::BlockDesc& block, TensorRTEngine* engine) {
    for (auto op : block.AllOps()) {
L
Luo Tao 已提交
52
      OpConverter::Run(*op, engine);
L
Luo Tao 已提交
53 54 55 56 57
    }
  }

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

L
Luo Tao 已提交
58 59
  virtual ~OpConverter() {}

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

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

L
Luo Tao 已提交
71 72 73 74 75 76
#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 已提交
77 78 79 80 81
  trt_##op_type__##_converter trt_##op_type__##_converter__;

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