general_reader_op.cpp 8.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// 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.

M
MRXLT 已提交
15
#include "core/general-server/op/general_reader_op.h"
16 17 18 19
#include <algorithm>
#include <iostream>
#include <memory>
#include <sstream>
20
#include "core/general-server/op/general_infer_helper.h"
21 22
#include "core/predictor/framework/infer.h"
#include "core/predictor/framework/memory.h"
G
guru4elephant 已提交
23
#include "core/util/include/timer.h"
24 25 26 27 28

namespace baidu {
namespace paddle_serving {
namespace serving {

G
guru4elephant 已提交
29
using baidu::paddle_serving::Timer;
30 31 32 33 34
using baidu::paddle_serving::predictor::MempoolWrapper;
using baidu::paddle_serving::predictor::general_model::Tensor;
using baidu::paddle_serving::predictor::general_model::Request;
using baidu::paddle_serving::predictor::general_model::FeedInst;
using baidu::paddle_serving::predictor::PaddleGeneralModelConfig;
H
HexToString 已提交
35
enum ProtoDataType { P_INT64, P_FLOAT32, P_INT32, P_STRING };
36 37 38 39
int conf_check(const Request *req,
               const std::shared_ptr<PaddleGeneralModelConfig> &model_config) {
  int var_num = req->insts(0).tensor_array_size();
  if (var_num != model_config->_feed_type.size()) {
B
barriery 已提交
40 41 42
    LOG(ERROR) << "feed var number not match: model config["
               << model_config->_feed_type.size() << "] vs. actual[" << var_num
               << "]";
43 44
    return -1;
  }
45 46 47

  VLOG(2) << "fetch var num in reader op: " << req->fetch_var_names_size();

48
  for (int i = 0; i < var_num; ++i) {
H
HexToString 已提交
49
    const Tensor &tensor = req->insts(0).tensor_array(i);
50
    if (model_config->_feed_type[i] != tensor.elem_type()) {
51 52 53
      LOG(ERROR) << "feed type not match.";
      return -1;
    }
54
    if (model_config->_feed_shape[i].size() == tensor.shape_size()) {
55
      for (int j = 0; j < model_config->_feed_shape[i].size(); ++j) {
H
HexToString 已提交
56
        tensor.shape(j);
57
        if (model_config->_feed_shape[i][j] != tensor.shape(j)) {
58 59 60 61 62 63 64 65 66 67 68 69 70
          LOG(ERROR) << "feed shape not match.";
          return -1;
        }
      }
    } else {
      LOG(ERROR) << "feed shape not match.";
      return -1;
    }
  }
  return 0;
}

int GeneralReaderOp::inference() {
H
HexToString 已提交
71
  // read request from client
W
wangjiawei04 已提交
72
  const Request *req = dynamic_cast<const Request *>(get_request_message());
73 74 75 76 77
  if (!req) {
    LOG(ERROR) << "Failed get request message";
    return -1;
  }

W
wangjiawei04 已提交
78 79
  uint64_t log_id = req->log_id();
  int input_var_num = 0;
H
HexToString 已提交
80 81 82

  GeneralBlob *res = mutable_data<GeneralBlob>();
  if (!res) {
83 84
    LOG(ERROR) << "(logid=" << log_id << ") Failed get GeneralBlob";
    return -1;
H
HexToString 已提交
85 86
  }

87 88 89 90 91 92 93
  TensorVector *out = &(res->tensor_vector);
  if (!out) {
    LOG(ERROR) << "(logid=" << log_id << ") Failed get tensor_vector of res";
    return -1;
  }

  res->SetLogId(log_id);
H
HexToString 已提交
94 95
  Timer timeline;
  int64_t start = timeline.TimeStampUS();
W
wangjiawei04 已提交
96
  int var_num = req->insts(0).tensor_array_size();
H
HexToString 已提交
97

H
HexToString 已提交
98
  VLOG(2) << "(logid=" << log_id << ") var num: " << var_num
H
HexToString 已提交
99 100
          << ") start to call load general model_conf op";

W
wangjiawei04 已提交
101 102
  baidu::paddle_serving::predictor::Resource &resource =
      baidu::paddle_serving::predictor::Resource::instance();
H
HexToString 已提交
103 104

  VLOG(2) << "(logid=" << log_id << ") get resource pointer done.";
105
  // get the first InferOP's model_config as ReaderOp's model_config by default.
W
wangjiawei04 已提交
106
  std::shared_ptr<PaddleGeneralModelConfig> model_config =
H
HexToString 已提交
107
      resource.get_general_model_config().front();
H
HexToString 已提交
108 109 110 111 112 113 114 115 116 117 118 119

  // TODO(guru4elephant): how to do conditional check?
  /*
  int ret = conf_check(req, model_config);
  if (ret != 0) {
    LOG(ERROR) << "model conf of server:";
    resource.print_general_model_config(model_config);
    return 0;
  }
  */
  // package tensor
  // prepare basic information for input
H
HexToString 已提交
120 121 122
  // specify the memory needed for output tensor_vector
  // fill the data into output general_blob
  int data_len = 0;
H
HexToString 已提交
123 124 125
  int64_t elem_type = 0;
  int64_t elem_size = 0;
  int64_t databuf_size = 0;
W
wangjiawei04 已提交
126
  for (int i = 0; i < var_num; ++i) {
H
HexToString 已提交
127
    paddle::PaddleTensor paddleTensor;
H
HexToString 已提交
128 129
    const Tensor &tensor = req->insts(0).tensor_array(i);
    data_len = 0;
H
HexToString 已提交
130 131 132 133 134 135 136 137
    elem_type = 0;
    elem_size = 0;
    databuf_size = 0;
    elem_type = tensor.elem_type();
    VLOG(2) << "var[" << i << "] has elem type: " << elem_type;
    if (elem_type == P_INT64) {  // int64
      elem_size = sizeof(int64_t);
      paddleTensor.dtype = paddle::PaddleDType::INT64;
H
HexToString 已提交
138
      data_len = tensor.int64_data_size();
H
HexToString 已提交
139 140 141
    } else if (elem_type == P_FLOAT32) {
      elem_size = sizeof(float);
      paddleTensor.dtype = paddle::PaddleDType::FLOAT32;
H
HexToString 已提交
142
      data_len = tensor.float_data_size();
H
HexToString 已提交
143 144 145
    } else if (elem_type == P_INT32) {
      elem_size = sizeof(int32_t);
      paddleTensor.dtype = paddle::PaddleDType::INT32;
H
HexToString 已提交
146
      data_len = tensor.int_data_size();
H
HexToString 已提交
147
    } else if (elem_type == P_STRING) {
148
      // use paddle::PaddleDType::UINT8 as for String.
H
HexToString 已提交
149 150
      elem_size = sizeof(char);
      paddleTensor.dtype = paddle::PaddleDType::UINT8;
151 152
      // this is for vector<String>, cause the databuf_size !=
      // vector<String>.size()*sizeof(char);
H
HexToString 已提交
153 154
      // data_len should be +1 cause '\0'
      // now only support single string
H
HexToString 已提交
155
      for (int idx = 0; idx < tensor.data_size(); idx++) {
H
HexToString 已提交
156
        data_len += tensor.data()[idx].length() + 1;
H
HexToString 已提交
157
      }
H
HexToString 已提交
158 159
    }
    // implement lod tensor here
H
HexToString 已提交
160
    // only support 1-D lod
H
HexToString 已提交
161
    // TODO(HexToString): support 2-D lod
H
HexToString 已提交
162
    if (tensor.lod_size() > 0) {
H
HexToString 已提交
163
      VLOG(2) << "(logid=" << log_id << ") var[" << i << "] is lod_tensor";
H
HexToString 已提交
164
      paddleTensor.lod.resize(1);
H
HexToString 已提交
165
      for (int k = 0; k < tensor.lod_size(); ++k) {
H
HexToString 已提交
166
        paddleTensor.lod[0].push_back(tensor.lod(k));
W
wangjiawei04 已提交
167 168
      }
    }
H
HexToString 已提交
169

H
HexToString 已提交
170 171
    for (int k = 0; k < tensor.shape_size(); ++k) {
      int dim = tensor.shape(k);
172
      VLOG(2) << "(logid=" << log_id << ") shape for var[" << i << "]: " << dim;
H
HexToString 已提交
173
      paddleTensor.shape.push_back(dim);
H
HexToString 已提交
174
    }
H
HexToString 已提交
175 176
    paddleTensor.name = model_config->_feed_name[i];
    out->push_back(paddleTensor);
H
HexToString 已提交
177

H
HexToString 已提交
178 179
    VLOG(2) << "(logid=" << log_id << ") tensor size for var[" << i
            << "]: " << data_len;
H
HexToString 已提交
180 181
    databuf_size = data_len * elem_size;
    out->at(i).data.Resize(databuf_size);
H
HexToString 已提交
182 183 184 185
    if (out->at(i).lod.size() > 0) {
      VLOG(2) << "(logid=" << log_id << ") var[" << i
              << "] has lod_tensor and len=" << out->at(i).lod[0].back();
    }
H
HexToString 已提交
186
    if (elem_type == P_INT64) {
H
HexToString 已提交
187 188
      int64_t *dst_ptr = static_cast<int64_t *>(out->at(i).data.data());
      VLOG(2) << "(logid=" << log_id << ") first element data in var[" << i
H
HexToString 已提交
189
              << "] is " << tensor.int64_data(0);
H
HexToString 已提交
190
      if (!dst_ptr) {
H
HexToString 已提交
191
        LOG(ERROR) << "dst_ptr is nullptr";
192
        return -1;
H
HexToString 已提交
193
      }
H
HexToString 已提交
194
      memcpy(dst_ptr, tensor.int64_data().data(), databuf_size);
H
HexToString 已提交
195
      /*
H
HexToString 已提交
196
      int elem_num = tensor.int64_data_size();
W
wangjiawei04 已提交
197
      for (int k = 0; k < elem_num; ++k) {
H
HexToString 已提交
198
        dst_ptr[k] = tensor.int64_data(k);
W
wangjiawei04 已提交
199
      }
H
HexToString 已提交
200
      */
H
HexToString 已提交
201
    } else if (elem_type == P_FLOAT32) {
H
HexToString 已提交
202 203
      float *dst_ptr = static_cast<float *>(out->at(i).data.data());
      VLOG(2) << "(logid=" << log_id << ") first element data in var[" << i
H
HexToString 已提交
204
              << "] is " << tensor.float_data(0);
H
HexToString 已提交
205
      if (!dst_ptr) {
H
HexToString 已提交
206
        LOG(ERROR) << "dst_ptr is nullptr";
207
        return -1;
H
HexToString 已提交
208
      }
H
HexToString 已提交
209
      memcpy(dst_ptr, tensor.float_data().data(), databuf_size);
H
HexToString 已提交
210
      /*int elem_num = tensor.float_data_size();
W
wangjiawei04 已提交
211
      for (int k = 0; k < elem_num; ++k) {
H
HexToString 已提交
212
        dst_ptr[k] = tensor.float_data(k);
H
HexToString 已提交
213
      }*/
H
HexToString 已提交
214
    } else if (elem_type == P_INT32) {
H
HexToString 已提交
215 216
      int32_t *dst_ptr = static_cast<int32_t *>(out->at(i).data.data());
      VLOG(2) << "(logid=" << log_id << ") first element data in var[" << i
H
HexToString 已提交
217
              << "] is " << tensor.int_data(0);
H
HexToString 已提交
218
      if (!dst_ptr) {
H
HexToString 已提交
219
        LOG(ERROR) << "dst_ptr is nullptr";
220
        return -1;
H
HexToString 已提交
221
      }
H
HexToString 已提交
222 223 224
      memcpy(dst_ptr, tensor.int_data().data(), databuf_size);
    } else if (elem_type == P_STRING) {
      char *dst_ptr = static_cast<char *>(out->at(i).data.data());
H
HexToString 已提交
225
      VLOG(2) << "(logid=" << log_id << ") first element data in var[" << i
H
HexToString 已提交
226
              << "] is " << tensor.data(0);
H
HexToString 已提交
227 228
      if (!dst_ptr) {
        LOG(ERROR) << "dst_ptr is nullptr";
229
        return -1;
H
HexToString 已提交
230
      }
H
HexToString 已提交
231
      int elem_num = tensor.data_size();
H
HexToString 已提交
232
      int offset = 0;
W
wangjiawei04 已提交
233
      for (int k = 0; k < elem_num; ++k) {
H
HexToString 已提交
234 235 236 237
        memcpy(dst_ptr + offset,
               tensor.data(k).c_str(),
               strlen(tensor.data(k).c_str()) + 1);
        offset += strlen(tensor.data(k).c_str()) + 1;
W
wangjiawei04 已提交
238 239 240
      }
    }
  }
H
HexToString 已提交
241 242 243 244 245 246 247 248 249 250

  VLOG(2) << "(logid=" << log_id << ") output size: " << out->size();
  timeline.Pause();
  int64_t end = timeline.TimeStampUS();
  res->p_size = 0;
  res->_batch_size = 1;
  AddBlobInfo(res, start);
  AddBlobInfo(res, end);

  VLOG(2) << "(logid=" << log_id << ") read data from client success";
251 252 253 254 255
  return 0;
}
DEFINE_OP(GeneralReaderOp);
}  // namespace serving
}  // namespace paddle_serving
H
HexToString 已提交
256
}  // namespace baidu