pybind_general_model.cpp 6.1 KB
Newer Older
M
MRXLT 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// Copyright (c) 2020 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.

G
guru4elephant 已提交
15 16
#include <Python.h>
#include <pybind11/pybind11.h>
M
MRXLT 已提交
17
#include <pybind11/stl.h>
G
guru4elephant 已提交
18
#include <unordered_map>
G
guru4elephant 已提交
19
#include "core/general-client/include/general_model.h"
G
guru4elephant 已提交
20 21 22 23 24 25 26 27 28 29

namespace py = pybind11;

namespace baidu {
namespace paddle_serving {
namespace general_model {

PYBIND11_MODULE(serving_client, m) {
  m.doc() = R"pddoc(this is a practice
       )pddoc";
30 31 32 33

  py::class_<PredictorRes>(m, "PredictorRes", py::buffer_protocol())
      .def(py::init())
      .def("get_int64_by_name",
B
barrierye 已提交
34
           [](PredictorRes &self, int model_idx, std::string &name) {
B
barrierye 已提交
35 36 37 38 39 40 41 42
             // https://github.com/pybind/pybind11/issues/1042
             std::vector<int64_t> *ptr = new std::vector<int64_t>(
                 std::move(self.get_int64_by_name_with_rv(model_idx, name)));
             auto capsule = py::capsule(ptr, [](void *p) {
               delete reinterpret_cast<std::vector<int64_t> *>(p);
             });
             return py::array(ptr->size(), ptr->data(), capsule);
           })
43
      .def("get_float_by_name",
B
barrierye 已提交
44
           [](PredictorRes &self, int model_idx, std::string &name) {
B
barrierye 已提交
45 46 47 48 49 50 51 52 53 54
             std::vector<float> *ptr = new std::vector<float>(
                 std::move(self.get_float_by_name_with_rv(model_idx, name)));
             auto capsule = py::capsule(ptr, [](void *p) {
               delete reinterpret_cast<std::vector<float> *>(p);
             });
             return py::array(ptr->size(), ptr->data(), capsule);
             // return self.get_float_by_name(model_idx, name);
           })
      //,
      // py::return_value_policy::reference)
55
      .def("get_shape",
B
barrierye 已提交
56 57
           [](PredictorRes &self, int model_idx, std::string &name) {
             return self.get_shape(model_idx, name);
58 59 60
           },
           py::return_value_policy::reference)
      .def("get_lod",
B
barrierye 已提交
61 62
           [](PredictorRes &self, int model_idx, std::string &name) {
             return self.get_lod(model_idx, name);
63 64
           },
           py::return_value_policy::reference)
B
barrierye 已提交
65 66 67
      .def("variant_tag", [](PredictorRes &self) { return self.variant_tag(); })
      .def("get_engine_names",
           [](PredictorRes &self) { return self.get_engine_names(); });
68

G
guru4elephant 已提交
69 70
  py::class_<PredictorClient>(m, "PredictorClient", py::buffer_protocol())
      .def(py::init())
71 72 73 74
      .def("init_gflags",
           [](PredictorClient &self, std::vector<std::string> argv) {
             self.init_gflags(argv);
           })
G
guru4elephant 已提交
75
      .def("init",
M
MRXLT 已提交
76
           [](PredictorClient &self, const std::string &conf) {
77
             return self.init(conf);
G
guru4elephant 已提交
78 79
           })
      .def("set_predictor_conf",
M
MRXLT 已提交
80 81 82
           [](PredictorClient &self,
              const std::string &conf_path,
              const std::string &conf_file) {
G
guru4elephant 已提交
83 84
             self.set_predictor_conf(conf_path, conf_file);
           })
G
guru4elephant 已提交
85
      .def("create_predictor_by_desc",
M
MRXLT 已提交
86 87 88
           [](PredictorClient &self, const std::string &sdk_desc) {
             self.create_predictor_by_desc(sdk_desc);
           })
G
guru4elephant 已提交
89
      .def("create_predictor",
M
MRXLT 已提交
90
           [](PredictorClient &self) { self.create_predictor(); })
91 92
      .def("destroy_predictor",
           [](PredictorClient &self) { self.destroy_predictor(); })
M
MRXLT 已提交
93
      .def("batch_predict",
M
MRXLT 已提交
94 95 96 97
           [](PredictorClient &self,
              const std::vector<std::vector<std::vector<float>>>
                  &float_feed_batch,
              const std::vector<std::string> &float_feed_name,
D
dongdaxiang 已提交
98
              const std::vector<std::vector<int>> &float_shape,
M
MRXLT 已提交
99 100 101
              const std::vector<std::vector<std::vector<int64_t>>>
                  &int_feed_batch,
              const std::vector<std::string> &int_feed_name,
D
dongdaxiang 已提交
102
              const std::vector<std::vector<int>> &int_shape,
M
MRXLT 已提交
103
              const std::vector<std::string> &fetch_name,
M
MRXLT 已提交
104
              PredictorRes &predict_res_batch,
M
MRXLT 已提交
105
              const int &pid) {
M
MRXLT 已提交
106 107
             return self.batch_predict(float_feed_batch,
                                       float_feed_name,
D
dongdaxiang 已提交
108
                                       float_shape,
M
MRXLT 已提交
109 110
                                       int_feed_batch,
                                       int_feed_name,
D
dongdaxiang 已提交
111
                                       int_shape,
M
MRXLT 已提交
112
                                       fetch_name,
M
MRXLT 已提交
113
                                       predict_res_batch,
M
MRXLT 已提交
114
                                       pid);
M
MRXLT 已提交
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
           })
      .def("numpy_predict",
           [](PredictorClient &self,
              const std::vector<std::vector<py::array_t<float>>>
                  &float_feed_batch,
              const std::vector<std::string> &float_feed_name,
              const std::vector<std::vector<int>> &float_shape,
              const std::vector<std::vector<py::array_t<int64_t>>>
                  &int_feed_batch,
              const std::vector<std::string> &int_feed_name,
              const std::vector<std::vector<int>> &int_shape,
              const std::vector<std::string> &fetch_name,
              PredictorRes &predict_res_batch,
              const int &pid) {
             return self.numpy_predict(float_feed_batch,
                                       float_feed_name,
                                       float_shape,
                                       int_feed_batch,
                                       int_feed_name,
                                       int_shape,
                                       fetch_name,
                                       predict_res_batch,
                                       pid);
138 139
           },
           py::call_guard<py::gil_scoped_release>());
G
guru4elephant 已提交
140 141 142 143 144
}

}  // namespace general_model
}  // namespace paddle_serving
}  // namespace baidu