/* 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 #include #include #include #include "common/types.h" #include "io/paddle_inference_api.h" #include "io/paddle_mobile.h" namespace paddle_mobile { template class PaddleMobilePredictor : public PaddlePredictor { public: PaddleMobilePredictor() = delete; explicit PaddleMobilePredictor(const PaddleMobileConfig& config); bool Run(const std::vector& inputs, std::vector* output_data, int batch_size = -1) override; std::string GetExceptionMsg(); #ifdef PADDLE_MOBILE_FPGA void Predict_From_To(int start, int end) override; void FeedPaddleTensors(const std::vector& inputs) override; void FetchPaddleTensors(std::vector* outputs) override; void FetchPaddleTensors(PaddleTensor* outputs, int id) override; void GetPaddleTensor(const std::string& name, PaddleTensor* output) override; #endif ~PaddleMobilePredictor() override; private: std::unique_ptr> paddle_mobile_; bool Init(const PaddleMobileConfig& config); PaddleMobileConfig config_; }; } // namespace paddle_mobile