// Copyright (c) 2019 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 #include #include // move #include #include "core/sdk-cpp/builtin_format.pb.h" #include "core/sdk-cpp/general_model_service.pb.h" #include "core/sdk-cpp/include/common.h" #include "core/sdk-cpp/include/predictor_sdk.h" using baidu::paddle_serving::sdk_cpp::Predictor; using baidu::paddle_serving::sdk_cpp::PredictorApi; DECLARE_bool(profile_client); DECLARE_bool(profile_server); // given some input data, pack into pb, and send request namespace baidu { namespace paddle_serving { namespace general_model { class ModelRes { public: ModelRes() {} ModelRes(const ModelRes& res) { _engine_name = res._engine_name; _int64_value_map.insert(res._int64_value_map.begin(), res._int64_value_map.end()); _float_value_map.insert(res._float_value_map.begin(), res._float_value_map.end()); _shape_map.insert(res._shape_map.begin(), res._shape_map.end()); _lod_map.insert(res._lod_map.begin(), res._lod_map.end()); } ModelRes(ModelRes&& res) { _engine_name = std::move(res._engine_name); _int64_value_map.insert( std::make_move_iterator(std::begin(res._int64_value_map)), std::make_move_iterator(std::end(res._int64_value_map))); _float_value_map.insert( std::make_move_iterator(std::begin(res._float_value_map)), std::make_move_iterator(std::end(res._float_value_map))); _shape_map.insert(std::make_move_iterator(std::begin(res._shape_map)), std::make_move_iterator(std::end(res._shape_map))); _lod_map.insert(std::make_move_iterator(std::begin(res._lod_map)), std::make_move_iterator(std::end(res._lod_map))); } ~ModelRes() {} const std::vector& get_int64_by_name(const std::string& name) { return _int64_value_map[name]; } const std::vector& get_float_by_name(const std::string& name) { return _float_value_map[name]; } const std::vector& get_shape(const std::string& name) { return _shape_map[name]; } const std::vector& get_lod(const std::string& name) { return _lod_map[name]; } void set_engine_name(const std::string& engine_name) { _engine_name = engine_name; } const std::string& engine_name() { return _engine_name; } ModelRes& operator=(ModelRes&& res) { if (this != &res) { _engine_name = std::move(res._engine_name); _int64_value_map.insert( std::make_move_iterator(std::begin(res._int64_value_map)), std::make_move_iterator(std::end(res._int64_value_map))); _float_value_map.insert( std::make_move_iterator(std::begin(res._float_value_map)), std::make_move_iterator(std::end(res._float_value_map))); _shape_map.insert(std::make_move_iterator(std::begin(res._shape_map)), std::make_move_iterator(std::end(res._shape_map))); _lod_map.insert(std::make_move_iterator(std::begin(res._lod_map)), std::make_move_iterator(std::end(res._lod_map))); } return *this; } public: std::string _engine_name; std::map> _int64_value_map; std::map> _float_value_map; std::map> _shape_map; std::map> _lod_map; }; class PredictorRes { public: PredictorRes() {} ~PredictorRes() {} public: void clear() { _models.clear(); _engine_names.clear(); } const std::vector& get_int64_by_name(const int model_idx, const std::string& name) { return _models[model_idx].get_int64_by_name(name); } const std::vector& get_float_by_name(const int model_idx, const std::string& name) { return _models[model_idx].get_float_by_name(name); } const std::vector& get_shape(const int model_idx, const std::string& name) { return _models[model_idx].get_shape(name); } const std::vector& get_lod(const int model_idx, const std::string& name) { return _models[model_idx].get_lod(name); } void add_model_res(ModelRes&& res) { _engine_names.push_back(res.engine_name()); _models.emplace_back(std::move(res)); } void set_variant_tag(const std::string& variant_tag) { _variant_tag = variant_tag; } const std::string& variant_tag() { return _variant_tag; } const std::vector& get_engine_names() { return _engine_names; } private: std::vector _models; std::string _variant_tag; std::vector _engine_names; }; class PredictorClient { public: PredictorClient() {} ~PredictorClient() {} void init_gflags(std::vector argv); int init(const std::string& client_conf); void set_predictor_conf(const std::string& conf_path, const std::string& conf_file); int create_predictor_by_desc(const std::string& sdk_desc); int create_predictor(); int destroy_predictor(); int batch_predict( const std::vector>>& float_feed_batch, const std::vector& float_feed_name, const std::vector>& float_shape, const std::vector>>& int_feed_batch, const std::vector& int_feed_name, const std::vector>& int_shape, const std::vector& fetch_name, PredictorRes& predict_res_batch, // NOLINT const int& pid); private: PredictorApi _api; Predictor* _predictor; std::string _predictor_conf; std::string _predictor_path; std::string _conf_file; std::map _feed_name_to_idx; std::map _fetch_name_to_idx; std::map _fetch_name_to_var_name; std::map _fetch_name_to_type; std::vector> _shape; std::vector _type; std::vector _last_request_ts; }; } // namespace general_model } // namespace paddle_serving } // namespace baidu /* vim: set expandtab ts=4 sw=4 sts=4 tw=100: */