general_infer_op.cpp 4.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// 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.

#include <algorithm>
#include <iostream>
#include <memory>
#include <sstream>
19 20
#include "core/general-server/op/general_infer_op.h"
#include "core/general-server/op/general_reader_op.h"
21 22 23
#include "core/predictor/framework/infer.h"
#include "core/predictor/framework/memory.h"
#include "core/predictor/framework/resource.h"
24
#include "core/util/include/timer.h"
25 26 27 28 29

namespace baidu {
namespace paddle_serving {
namespace serving {

30
using baidu::paddle_serving::Timer;
31 32 33
using baidu::paddle_serving::predictor::MempoolWrapper;
using baidu::paddle_serving::predictor::general_model::Tensor;
using baidu::paddle_serving::predictor::general_model::Response;
34
using baidu::paddle_serving::predictor::general_model::Request;
35 36
using baidu::paddle_serving::predictor::general_model::FetchInst;
using baidu::paddle_serving::predictor::InferManager;
37
using baidu::paddle_serving::predictor::PaddleGeneralModelConfig;
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57

int GeneralInferOp::inference() {
  const GeneralReaderOutput *reader_out =
      get_depend_argument<GeneralReaderOutput>("general_reader_op");
  if (!reader_out) {
    LOG(ERROR) << "Failed mutable depended argument, op:"
               << "general_reader_op";
    return -1;
  }

  int reader_status = reader_out->reader_status;
  if (reader_status != 0) {
    LOG(ERROR) << "Read request wrong.";
    return -1;
  }

  const TensorVector *in = &reader_out->tensor_vector;
  TensorVector *out = butil::get_object<TensorVector>();
  int batch_size = (*in)[0].shape[0];
  // infer
58 59 60
  Timer timeline;
  double infer_time = 0.0;
  timeline.Start();
61 62 63 64
  if (InferManager::instance().infer(GENERAL_MODEL_NAME, in, out, batch_size)) {
    LOG(ERROR) << "Failed do infer in fluid model: " << GENERAL_MODEL_NAME;
    return -1;
  }
65 66
  timeline.Pause();
  infer_time = timeline.ElapsedUS();
67

68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
  const Request *req = dynamic_cast<const Request *>(get_request_message());

  VLOG(2) << "start to call load general model_conf op";
  baidu::paddle_serving::predictor::Resource &resource =
      baidu::paddle_serving::predictor::Resource::instance();
  
  VLOG(2) << "get resource pointer done.";
  std::shared_ptr<PaddleGeneralModelConfig> model_config =
      resource.get_general_model_config();

  std::vector<int> fetch_index;
  fetch_index.resize(req->fetch_var_names_size());
  for (int i = 0; i < req->fetch_var_names_size(); ++i) {
    fetch_index[i] =
        model_config->_fetch_alias_name_to_index[req->fetch_var_names(i)];
  }
  
  // response inst with only fetch_var_names
86 87
  Response *res = mutable_data<Response>();

88 89
  res->set_mean_infer_us(infer_time);

90 91
  for (int i = 0; i < batch_size; ++i) {
    FetchInst *fetch_inst = res->add_insts();
92
    for (auto & idx : fetch_index) {
93
      Tensor *tensor = fetch_inst->add_tensor_array();
94
      // currently only response float tensor or lod_tensor
95
      tensor->set_elem_type(1);
96 97
      if (model_config->_is_lod_fetch[idx]) {
        VLOG(2) << "out[" << idx << " is lod_tensor";
98 99
        tensor->add_shape(-1);
      } else {
100 101 102 103 104
        VLOG(2) << "out[" << idx << "] is tensor";
        for (int k = 1; k < out->at(idx).shape.size(); ++k) {
          VLOG(2) << "shape[" << k - 1 << "]: "
                  << out->at(idx).shape[k];
          tensor->add_shape(out->at(idx).shape[k]);
105 106 107 108 109
        }
      }
    }
  }

110 111 112
  int var_idx = 0;
  for (auto & idx : fetch_index) {
    float *data_ptr = static_cast<float *>(out->at(idx).data.data());
113
    int cap = 1;
114 115
    for (int j = 1; j < out->at(idx).shape.size(); ++j) {
      cap *= out->at(idx).shape[j];
116
    }
117
    if (model_config->_is_lod_fetch[idx]) {
118
      for (int j = 0; j < batch_size; ++j) {
119 120 121
        for (int k = out->at(idx).lod[0][j];
             k < out->at(idx).lod[0][j + 1]; k++) {
          res->mutable_insts(j)->mutable_tensor_array(var_idx)->add_data(
122 123 124 125 126 127
              reinterpret_cast<char *>(&(data_ptr[k])), sizeof(float));
        }
      }
    } else {
      for (int j = 0; j < batch_size; ++j) {
        for (int k = j * cap; k < (j + 1) * cap; ++k) {
128
          res->mutable_insts(j)->mutable_tensor_array(var_idx)->add_data(
129 130 131 132
              reinterpret_cast<char *>(&(data_ptr[k])), sizeof(float));
        }
      }
    }
G
guru4elephant 已提交
133
    var_idx++;
134 135 136 137 138 139 140 141
  }
  return 0;
}
DEFINE_OP(GeneralInferOp);

}  // namespace serving
}  // namespace paddle_serving
}  // namespace baidu