/* 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. */ /* * This file contains the definition of a simple Inference API for Paddle. * * ATTENTION: It requires some C++11 features, for lower version C++ or C, we * might release another API. */ #pragma once #include #include #include #include #include #include #include "paddle_analysis_config.h" // NOLINT #include "paddle_api.h" // NOLINT /// /// \file paddle_inference_api.h /// /// \brief Paddle Inference API /// /// \author paddle-infer@baidu.com /// \date 2020-09-01 /// \since 2.0.0-beta /// namespace paddle_infer { using PrecisionType = paddle::AnalysisConfig::Precision; using Config = paddle::AnalysisConfig; using DistConfig = paddle::DistConfig; /// /// \class Predictor /// /// \brief Predictor is the interface for model prediction. /// /// The predictor has the following typical uses: /// /// Get predictor /// \code{cpp} /// auto predictor = CreatePredictor(config); /// \endcode /// /// Get input or output names /// \code{cpp} /// auto input_names = predictor->GetInputNames(); /// auto output_names = predictor->GetOutputNames(); /// \endcode /// /// Get input or output handle /// \code{cpp} /// auto input_t = predictor->GetInputHandle(input_names[0]); /// auto output_t = predictor->GetOutputHandle(output_names[0]); /// \endcode /// /// Run predictor /// \code{cpp} /// predictor->Run(); /// \endcode /// class PD_INFER_DECL Predictor { public: Predictor() = delete; ~Predictor() {} // Use for clone explicit Predictor(std::unique_ptr&& pred) : predictor_(std::move(pred)) {} /// /// \brief Construct a new Predictor object /// /// \param[in] Config config /// explicit Predictor(const Config& config); /// /// \brief Get the input names /// /// \return input names /// std::vector GetInputNames(); /// /// \brief Get the Input Tensor object /// /// \param[in] name input name /// \return input tensor /// std::unique_ptr GetInputHandle(const std::string& name); /// /// \brief Run the prediction engine /// /// \return Whether the function executed successfully /// bool Run(); /// /// \brief Get the output names /// /// \return output names /// std::vector GetOutputNames(); /// /// \brief Get the Output Tensor object /// /// \param[in] name otuput name /// \return output tensor /// std::unique_ptr GetOutputHandle(const std::string& name); /// /// \brief Clone to get the new predictor. thread safe. /// /// \return get a new predictor /// std::unique_ptr Clone(); /// \brief Clear the intermediate tensors of the predictor void ClearIntermediateTensor(); /// /// \brief Release all tmp tensor to compress the size of the memory pool. /// The memory pool is considered to be composed of a list of chunks, if /// the chunk is not occupied, it can be released. /// /// \return Number of bytes released. It may be smaller than the actual /// released memory, because part of the memory is not managed by the /// MemoryPool. /// uint64_t TryShrinkMemory(); private: std::unique_ptr predictor_; friend class paddle_infer::experimental::InternalUtils; }; /// /// \brief A factory to help create predictors. /// /// Usage: /// /// \code{.cpp} /// Config config; /// ... // change the configs. /// auto predictor = CreatePredictor(config); /// \endcode /// PD_INFER_DECL std::shared_ptr CreatePredictor( const Config& config); // NOLINT PD_INFER_DECL int GetNumBytesOfDataType(DataType dtype); PD_INFER_DECL std::string GetVersion(); PD_INFER_DECL std::tuple GetTrtCompileVersion(); PD_INFER_DECL std::tuple GetTrtRuntimeVersion(); PD_INFER_DECL std::string UpdateDllFlag(const char* name, const char* value); namespace services { /// /// \class PredictorPool /// /// \brief PredictorPool is a simple encapsulation of Predictor, suitable for /// use in multi-threaded situations. According to the thread id, the /// corresponding Predictor is taken out from PredictorPool to complete the /// prediction. /// class PD_INFER_DECL PredictorPool { public: PredictorPool() = delete; PredictorPool(const PredictorPool&) = delete; PredictorPool& operator=(const PredictorPool&) = delete; /// \brief Construct the predictor pool with \param size predictor instances. explicit PredictorPool(const Config& config, size_t size = 1); /// \brief Get \param id-th predictor. Predictor* Retrive(size_t idx); private: std::shared_ptr main_pred_; std::vector> preds_; }; } // namespace services } // namespace paddle_infer