// Copyright (c) 2022 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 #include #include #include #include #include "NvInfer.h" #include "NvOnnxParser.h" #include "fastdeploy/backends/backend.h" #include "fastdeploy/backends/tensorrt/utils.h" class Int8EntropyCalibrator2 : public nvinfer1::IInt8EntropyCalibrator2 { public: explicit Int8EntropyCalibrator2(const std::string& calibration_cache) : calibration_cache_(calibration_cache) {} int getBatchSize() const noexcept override { return 0; } bool getBatch(void* bindings[], const char* names[], int nbBindings) noexcept override { return false; } const void* readCalibrationCache(size_t& length) noexcept override { length = calibration_cache_.size(); return length ? calibration_cache_.data() : nullptr; } void writeCalibrationCache(const void* cache, size_t length) noexcept override { std::cout << "NOT IMPLEMENT." << std::endl; } private: const std::string calibration_cache_; }; namespace fastdeploy { struct TrtValueInfo { std::string name; std::vector shape; nvinfer1::DataType dtype; }; struct TrtBackendOption { int gpu_id = 0; bool enable_fp16 = false; bool enable_int8 = false; size_t max_batch_size = 32; size_t max_workspace_size = 1 << 30; std::map> max_shape; std::map> min_shape; std::map> opt_shape; std::string serialize_file = ""; bool enable_pinned_memory = false; void* external_stream_ = nullptr; // inside parameter, maybe remove next version bool remove_multiclass_nms_ = false; std::map custom_op_info_; }; std::vector toVec(const nvinfer1::Dims& dim); size_t TrtDataTypeSize(const nvinfer1::DataType& dtype); FDDataType GetFDDataType(const nvinfer1::DataType& dtype); class TrtBackend : public BaseBackend { public: TrtBackend() : engine_(nullptr), context_(nullptr) {} void BuildOption(const TrtBackendOption& option); bool InitFromPaddle(const std::string& model_file, const std::string& params_file, const TrtBackendOption& option = TrtBackendOption(), bool verbose = false); bool InitFromOnnx(const std::string& model_file, const TrtBackendOption& option = TrtBackendOption(), bool from_memory_buffer = false); bool Infer(std::vector& inputs, std::vector* outputs); int NumInputs() const { return inputs_desc_.size(); } int NumOutputs() const { return outputs_desc_.size(); } TensorInfo GetInputInfo(int index); TensorInfo GetOutputInfo(int index); std::vector GetInputInfos() override; std::vector GetOutputInfos() override; ~TrtBackend() { if (parser_) { parser_.reset(); } } private: TrtBackendOption option_; std::shared_ptr engine_; std::shared_ptr context_; FDUniquePtr parser_; FDUniquePtr builder_; FDUniquePtr network_; cudaStream_t stream_{}; std::vector bindings_; std::vector inputs_desc_; std::vector outputs_desc_; std::map inputs_device_buffer_; std::map outputs_device_buffer_; std::string calibration_str_; // Sometimes while the number of outputs > 1 // the output order of tensorrt may not be same // with the original onnx model // So this parameter will record to origin outputs // order, to help recover the rigt order std::map outputs_order_; // temporary store onnx model content // once it used to build trt egnine done // it will be released std::string onnx_model_buffer_; // Stores shape information of the loaded model // For dynmaic shape will record its range information // Also will update the range information while inferencing std::map shape_range_info_; void GetInputOutputInfo(); bool CreateTrtEngineFromOnnx(const std::string& onnx_model_buffer); bool BuildTrtEngine(); bool LoadTrtCache(const std::string& trt_engine_file); int ShapeRangeInfoUpdated(const std::vector& inputs); void SetInputs(const std::vector& inputs); void AllocateOutputsBuffer(std::vector* outputs); }; } // namespace fastdeploy