engine.cc 5.2 KB
Newer Older
Y
Yan Chunwei 已提交
1 2
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.

N
nhzlx 已提交
3 4
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License.
Y
Yan Chunwei 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
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. */

#include "paddle/fluid/inference/tensorrt/engine.h"

#include <NvInfer.h>
#include <cuda.h>
#include <glog/logging.h>
A
Abhinav Arora 已提交
20
#include <string>
Y
Yan Chunwei 已提交
21
#include "paddle/fluid/inference/analysis/helper.h"
Y
Yan Chunwei 已提交
22 23 24 25 26 27 28
#include "paddle/fluid/inference/tensorrt/helper.h"
#include "paddle/fluid/platform/enforce.h"

namespace paddle {
namespace inference {
namespace tensorrt {

29 30
int TensorRTEngine::runtime_batch_ = 1;

31
void TensorRTEngine::Build(const DescType &paddle_model) {
Y
Yan Chunwei 已提交
32 33 34
  PADDLE_ENFORCE(false, "not implemented");
}

35 36
void TensorRTEngine::Execute(int batch_size, std::vector<void *> *buffers,
                             cudaStream_t stream) {
N
nhzlx 已提交
37
  batch_size_ = batch_size;
38 39
  infer_context_->enqueue(batch_size, buffers->data(), stream, nullptr);
  cudaStreamSynchronize(stream);
N
nhzlx 已提交
40 41 42
  SetRuntimeBatch(batch_size);
}

Y
Yan Chunwei 已提交
43
void TensorRTEngine::FreezeNetwork() {
44
  VLOG(3) << "TRT to freeze network";
Y
Yan Chunwei 已提交
45 46 47 48 49 50 51
  PADDLE_ENFORCE(infer_builder_ != nullptr,
                 "Call InitNetwork first to initialize network.");
  PADDLE_ENFORCE(infer_network_ != nullptr,
                 "Call InitNetwork first to initialize network.");
  // build engine.
  infer_builder_->setMaxBatchSize(max_batch_);
  infer_builder_->setMaxWorkspaceSize(max_workspace_);
N
nhzlx 已提交
52
  if (enable_int8_) {
N
nhzlx 已提交
53 54 55 56 57 58
    infer_builder_->setInt8Mode(true);
    PADDLE_ENFORCE(
        calibrator_ != nullptr,
        "The precision mode is 'INT8', the calibrator should not be nullptr");
    infer_builder_->setInt8Calibrator(calibrator_);
  }
Y
Yan Chunwei 已提交
59 60 61 62 63 64 65

  infer_engine_.reset(infer_builder_->buildCudaEngine(*infer_network_));
  PADDLE_ENFORCE(infer_engine_ != nullptr, "build cuda engine failed!");

  infer_context_.reset(infer_engine_->createExecutionContext());
}

66
nvinfer1::ITensor *TensorRTEngine::DeclareInput(const std::string &name,
Y
Yan Chunwei 已提交
67
                                                nvinfer1::DataType dtype,
68
                                                const nvinfer1::Dims &dims) {
Y
Yan Chunwei 已提交
69 70 71 72
  PADDLE_ENFORCE_EQ(0, buffer_sizes_.count(name), "duplicate input name %s",
                    name);

  PADDLE_ENFORCE(infer_network_ != nullptr, "should initnetwork first");
73
  auto *input = infer_network_->addInput(name.c_str(), dtype, dims);
Y
Yan Chunwei 已提交
74
  PADDLE_ENFORCE(input, "infer network add input %s failed", name);
Y
Yan Chunwei 已提交
75
  buffer_sizes_[name] = kDataTypeSize[static_cast<int>(dtype)] *
76
                        analysis::AccuDims(dims.d, dims.nbDims) * max_batch_;
77
  PADDLE_ENFORCE(input->isNetworkInput());
L
Luo Tao 已提交
78
  TensorRTEngine::SetITensor(name, input);
Y
Yan Chunwei 已提交
79 80 81
  return input;
}

82 83
void TensorRTEngine::DeclareOutput(const nvinfer1::ILayer *layer, int offset,
                                   const std::string &name) {
Y
Yan Chunwei 已提交
84 85 86
  PADDLE_ENFORCE_EQ(0, buffer_sizes_.count(name), "duplicate output name %s",
                    name);

87
  auto *output = layer->getOutput(offset);
88
  SetITensor(name, output);
Y
Yan Chunwei 已提交
89 90
  PADDLE_ENFORCE(output != nullptr);
  output->setName(name.c_str());
91
  PADDLE_ENFORCE(!output->isNetworkInput());
Y
Yan Chunwei 已提交
92
  infer_network_->markOutput(*output);
93
  PADDLE_ENFORCE(output->isNetworkOutput());
Y
Yan Chunwei 已提交
94 95 96 97 98
  // output buffers' size can only be decided latter, set zero here to mark this
  // and will reset latter.
  buffer_sizes_[name] = 0;
}

N
nhzlx 已提交
99 100 101 102
bool TensorRTEngine::HasDeclared(const std::string &name) {
  return buffer_sizes_.count(name) > 0;
}

103
void TensorRTEngine::DeclareOutput(const std::string &name) {
L
Luo Tao 已提交
104 105 106
  PADDLE_ENFORCE_EQ(0, buffer_sizes_.count(name), "duplicate output name %s",
                    name);

107
  auto *output = TensorRTEngine::GetITensor(name);
L
Luo Tao 已提交
108 109
  PADDLE_ENFORCE(output != nullptr);
  output->setName(name.c_str());
110
  PADDLE_ENFORCE(!output->isNetworkInput());
L
Luo Tao 已提交
111 112 113 114 115 116
  infer_network_->markOutput(*output);
  // output buffers' size can only be decided latter, set zero here to mark this
  // and will reset latter.
  buffer_sizes_[name] = 0;
}

117 118
void TensorRTEngine::SetITensor(const std::string &name,
                                nvinfer1::ITensor *tensor) {
L
Luo Tao 已提交
119
  PADDLE_ENFORCE(tensor != nullptr);
Y
Yan Chunwei 已提交
120
  PADDLE_ENFORCE_EQ(0, itensor_map_.count(name), "duplicate ITensor name %s",
L
Luo Tao 已提交
121 122 123 124
                    name);
  itensor_map_[name] = tensor;
}

125
nvinfer1::ITensor *TensorRTEngine::GetITensor(const std::string &name) {
Y
Yan Chunwei 已提交
126
  PADDLE_ENFORCE(itensor_map_.count(name), "no ITensor %s", name);
L
Luo Tao 已提交
127 128 129
  return itensor_map_[name];
}

130 131 132 133 134 135
void TensorRTEngine::SetRuntimeBatch(size_t batch_size) {
  runtime_batch_ = batch_size;
}

int TensorRTEngine::GetRuntimeBatch() { return runtime_batch_; }

N
nhzlx 已提交
136
nvinfer1::IPluginLayer *TensorRTEngine::AddPlugin(
137 138
    nvinfer1::ITensor *const *inputs, int num_inputs,
    plugin::PluginTensorRT *plugin) {
139
  owned_plugin_.emplace_back(plugin);
140
  return infer_network_.get()->addPluginExt(inputs, num_inputs, *plugin);
141 142
}

Y
Yan Chunwei 已提交
143 144 145
}  // namespace tensorrt
}  // namespace inference
}  // namespace paddle