trt_plugin.h 4.1 KB
Newer Older
N
nhzlx 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// 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

17
#include <NvInfer.h>
N
nhzlx 已提交
18 19 20 21
#include <cstring>
#include <unordered_map>
#include <vector>

22
#include "paddle/fluid/inference/tensorrt/plugin/serialize.h"
23 24 25 26
#include "paddle/fluid/platform/enforce.h"
#include "paddle/fluid/platform/profiler.h"

DECLARE_bool(profile);
N
nhzlx 已提交
27 28 29 30

namespace paddle {
namespace inference {
namespace tensorrt {
31
namespace plugin {
N
nhzlx 已提交
32 33 34 35

class PluginTensorRT : public nvinfer1::IPluginExt {
 public:
  PluginTensorRT() {}
36 37
  // It was used for TensorRT deserialization.
  // It should not be called by users.
N
nhzlx 已提交
38
  PluginTensorRT(const void* serialized_data, size_t length) {}
39 40
  virtual ~PluginTensorRT() {}

N
nhzlx 已提交
41 42 43 44 45 46 47
  nvinfer1::Dims const& getInputDims(int index) const {
    return input_dims_.at(index);
  }
  size_t getMaxBatchSize() const { return max_batch_size_; }
  nvinfer1::DataType getDataType() const { return data_type_; }
  nvinfer1::PluginFormat getDataFormat() const { return data_format_; }
  virtual const char* getPluginVersion() const { return "1"; }
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62

  void AddInput(nvinfer1::ITensor* input) { inputs_.push_back(input); }
  std::vector<nvinfer1::ITensor*>& GetInputs() { return inputs_; }

  virtual nvinfer1::IPluginExt* clone() const = 0;
  virtual const char* getPluginType() const = 0;

  // Following functions are inherit from nvinfer1::IPluginExt
  // Get the number of outputs from the layer
  int getNbOutputs() const { return 1; }
  // Get the dimension of an output tensor
  virtual nvinfer1::Dims getOutputDimensions(int index,
                                             const nvinfer1::Dims* input_dims,
                                             int num_inputs) = 0;
  // Find the workspace size required by the layer
N
nhzlx 已提交
63
  size_t getWorkspaceSize(int) const override { return 0; }
64 65 66 67 68

  // Initialize the layer for execution.
  // This is called when the engine is created.
  int initialize() override { return 0; }
  // Shutdown the layer. This is called when the engine is destroyed
N
nhzlx 已提交
69
  void terminate() override {}
70 71 72 73 74 75 76 77 78 79 80
  // Execute the layer
  virtual int enqueue(int batch_size, const void* const* inputs, void** outputs,
                      void* workspace, cudaStream_t stream) = 0;

  // Find the size of the serialization buffer required
  virtual size_t getSerializationSize() = 0;
  // Serialize the layer config to buffer.
  // TensorRT will call this func to serialize the configuration of TensorRT
  // engine. It should not be called by users.
  virtual void serialize(void* buffer) = 0;

N
nhzlx 已提交
81
  // Check format support. The default is FLOAT32 and NCHW.
N
nhzlx 已提交
82 83
  bool supportsFormat(nvinfer1::DataType type,
                      nvinfer1::PluginFormat format) const override;
84 85 86
  // Configure the layer
  void configureWithFormat(const nvinfer1::Dims* input_dims, int num_inputs,
                           const nvinfer1::Dims* output_dims, int num_outputs,
N
nhzlx 已提交
87 88
                           nvinfer1::DataType type,
                           nvinfer1::PluginFormat format,
89
                           int max_batch_size) override;
N
nhzlx 已提交
90 91

 protected:
N
nhzlx 已提交
92
  // Deserialize input_dims, max_batch_size, data_type, data_format
93 94
  void deserializeBase(void const*& serial_data,  // NOLINT
                       size_t& serial_length);    // NOLINT
N
nhzlx 已提交
95
  size_t getBaseSerializationSize();
N
nhzlx 已提交
96
  // Serialize input_dims, max_batch_size, data_type, data_format
97
  void serializeBase(void*& buffer);  // NOLINT
N
nhzlx 已提交
98 99 100 101 102

  std::vector<nvinfer1::Dims> input_dims_;
  size_t max_batch_size_;
  nvinfer1::DataType data_type_;
  nvinfer1::PluginFormat data_format_;
103 104

  std::vector<nvinfer1::ITensor*> inputs_;
N
nhzlx 已提交
105 106
};

107
}  // namespace plugin
N
nhzlx 已提交
108 109 110
}  // namespace tensorrt
}  // namespace inference
}  // namespace paddle