general_response_op.cpp 4.3 KB
Newer Older
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.

M
MRXLT 已提交
15
#include "core/general-server/op/general_response_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 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
#include "core/predictor/framework/infer.h"
#include "core/predictor/framework/memory.h"
#include "core/predictor/framework/resource.h"
#include "core/util/include/timer.h"

namespace baidu {
namespace paddle_serving {
namespace serving {

using baidu::paddle_serving::Timer;
using baidu::paddle_serving::predictor::MempoolWrapper;
using baidu::paddle_serving::predictor::general_model::Tensor;
using baidu::paddle_serving::predictor::general_model::Response;
using baidu::paddle_serving::predictor::general_model::Request;
using baidu::paddle_serving::predictor::general_model::FetchInst;
using baidu::paddle_serving::predictor::InferManager;
using baidu::paddle_serving::predictor::PaddleGeneralModelConfig;

39
int GeneralResponseOp::inference() {
M
MRXLT 已提交
40
  const GeneralBlob *input_blob = get_depend_argument<GeneralBlob>(pre_name());
G
guru4elephant 已提交
41

42
  if (!input_blob) {
M
MRXLT 已提交
43
    LOG(ERROR) << "Failed mutable depended argument, op: " << pre_name();
44 45 46
    return -1;
  }

47
  const TensorVector *in = &input_blob->tensor_vector;
48
  int batch_size = input_blob->GetBatchSize();
49

50
  VLOG(2) << "input batch size: " << batch_size;
51 52 53 54 55 56

  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();
M
MRXLT 已提交
57

58 59 60 61 62 63 64 65 66 67
  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)];
  }
M
MRXLT 已提交
68

69 70 71
  // response inst with only fetch_var_names
  Response *res = mutable_data<Response>();

72
  // res->set_mean_infer_us(infer_time);
73 74 75

  for (int i = 0; i < batch_size; ++i) {
    FetchInst *fetch_inst = res->add_insts();
M
MRXLT 已提交
76
    for (auto &idx : fetch_index) {
77 78 79 80 81 82 83 84
      Tensor *tensor = fetch_inst->add_tensor_array();
      // currently only response float tensor or lod_tensor
      tensor->set_elem_type(1);
      if (model_config->_is_lod_fetch[idx]) {
        VLOG(2) << "out[" << idx << " is lod_tensor";
        tensor->add_shape(-1);
      } else {
        VLOG(2) << "out[" << idx << "] is tensor";
85
        for (int k = 1; k < in->at(idx).shape.size(); ++k) {
M
MRXLT 已提交
86
          VLOG(2) << "shape[" << k - 1 << "]: " << in->at(idx).shape[k];
87
          tensor->add_shape(in->at(idx).shape[k]);
88 89 90 91 92 93
        }
      }
    }
  }

  int var_idx = 0;
M
MRXLT 已提交
94
  for (auto &idx : fetch_index) {
95
    float *data_ptr = static_cast<float *>(in->at(idx).data.data());
96
    int cap = 1;
97 98
    for (int j = 1; j < in->at(idx).shape.size(); ++j) {
      cap *= in->at(idx).shape[j];
99 100 101
    }
    if (model_config->_is_lod_fetch[idx]) {
      for (int j = 0; j < batch_size; ++j) {
M
MRXLT 已提交
102 103
        for (int k = in->at(idx).lod[0][j]; k < in->at(idx).lod[0][j + 1];
             k++) {
104 105
          res->mutable_insts(j)->mutable_tensor_array(var_idx)->add_data(
              reinterpret_cast<char *>(&(data_ptr[k])), sizeof(float));
106 107 108 109 110
        }
      }
    } else {
      for (int j = 0; j < batch_size; ++j) {
        for (int k = j * cap; k < (j + 1) * cap; ++k) {
111 112
          res->mutable_insts(j)->mutable_tensor_array(var_idx)->add_data(
              reinterpret_cast<char *>(&(data_ptr[k])), sizeof(float));
113 114 115 116 117 118 119
        }
      }
    }
    var_idx++;
  }
  return 0;
}
120 121

DEFINE_OP(GeneralResponseOp);
122 123 124 125

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