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

#pragma once

#include <thrust/device_vector.h>
18
#include "paddle/fluid/inference/tensorrt/plugin/trt_plugin.h"
N
nhzlx 已提交
19 20 21 22 23 24 25

namespace paddle {
namespace inference {
namespace tensorrt {

class SplitPlugin : public PluginTensorRT {
  int axis_;
26
  std::vector<int> output_length_;
N
nhzlx 已提交
27 28
  int nx_, ny_, nz_;
  thrust::device_vector<int> d_segment_offsets_;
29
  std::vector<int> segment_offsets_;
N
nhzlx 已提交
30 31 32

 protected:
  virtual size_t getSerializationSize() override {
33 34
    return serialized_size(axis_) + serialized_size(output_length_) +
           getBaseSerializationSize();
N
nhzlx 已提交
35 36 37 38 39
  }

  virtual void serialize(void *buffer) override {
    serializeBase(buffer);
    serialize_value(&buffer, axis_);
40
    serialize_value(&buffer, output_length_);
N
nhzlx 已提交
41 42 43
  }

 public:
44 45 46 47 48 49
  SplitPlugin(int axis, std::vector<int> const &output_lengths)
      : axis_(axis), output_length_(output_lengths) {
    assert(axis <= nvinfer1::Dims::MAX_DIMS);
  }

  SplitPlugin(void const *serialData, size_t serialLength) {
N
nhzlx 已提交
50 51
    deserializeBase(serialData, serialLength);
    deserialize_value(&serialData, &serialLength, &axis_);
52
    deserialize_value(&serialData, &serialLength, &output_length_);
N
nhzlx 已提交
53 54
  }

55 56
  SplitPlugin *clone() const override {
    return new SplitPlugin(axis_, output_length_);
N
nhzlx 已提交
57 58
  }

59 60
  virtual const char *getPluginType() const override { return "split"; }
  virtual int getNbOutputs() const override { return output_length_.size(); }
N
nhzlx 已提交
61
  virtual nvinfer1::Dims getOutputDimensions(int index,
62 63
                                             const nvinfer1::Dims *inputs,
                                             int nbInputDims) override;
N
nhzlx 已提交
64
  virtual int initialize() override;
65
  virtual int enqueue(int batchSize, const void *const *inputs, void **outputs,
N
nhzlx 已提交
66 67
                      void *workspace, cudaStream_t stream) override;

68
  void setAxis(int axis) { axis_ = axis; }
N
nhzlx 已提交
69

70
  void setOutputLengths(const std::vector<int> &output_lengths) {
N
nhzlx 已提交
71 72 73 74
    output_length_ = output_lengths;
  }
};

75 76 77
}  // tensorrt
}  // inference
}  // paddle