general_infer_op.cpp 3.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
// 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 "examples/demo-serving/op/general_infer_op.h"
#include <algorithm>
#include <iostream>
#include <memory>
#include <sstream>
#include "core/predictor/framework/infer.h"
#include "core/predictor/framework/memory.h"
#include "core/predictor/framework/resource.h"
#include "examples/demo-serving/op/general_reader_op.h"

namespace baidu {
namespace paddle_serving {
namespace serving {

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::FetchInst;
using baidu::paddle_serving::predictor::InferManager;

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
  if (InferManager::instance().infer(GENERAL_MODEL_NAME, in, out, batch_size)) {
    LOG(ERROR) << "Failed do infer in fluid model: " << GENERAL_MODEL_NAME;
    return -1;
  }

  Response *res = mutable_data<Response>();

  for (int i = 0; i < batch_size; ++i) {
    FetchInst *fetch_inst = res->add_insts();
    for (int j = 0; j < out->size(); ++j) {
      Tensor *tensor = fetch_inst->add_tensor_array();
      tensor->set_elem_type(1);
      if (out->at(j).lod.size() == 1) {
        tensor->add_shape(-1);
      } else {
        for (int k = 1; k < out->at(j).shape.size(); ++k) {
          tensor->add_shape(out->at(j).shape[k]);
        }
      }
    }
  }

  for (int i = 0; i < out->size(); ++i) {
    float *data_ptr = static_cast<float *>(out->at(i).data.data());
    int cap = 1;
    for (int j = 1; j < out->at(i).shape.size(); ++j) {
      cap *= out->at(i).shape[j];
    }
    if (out->at(i).lod.size() == 1) {
      for (int j = 0; j < batch_size; ++j) {
        for (int k = out->at(i).lod[0][j]; k < out->at(i).lod[0][j + 1]; k++) {
          res->mutable_insts(j)->mutable_tensor_array(i)->add_data(
              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) {
          res->mutable_insts(j)->mutable_tensor_array(i)->add_data(
              reinterpret_cast<char *>(&(data_ptr[k])), sizeof(float));
        }
      }
    }
  }
  /*
      for (size_t i = 0; i < in->size(); ++i) {
        (*in)[i].shape.clear();
      }
      in->clear();
      butil::return_object<TensorVector>(in);

      for (size_t i = 0; i < out->size(); ++i) {
        (*out)[i].shape.clear();
      }
      out->clear();
      butil::return_object<TensorVector>(out);
    }
  */
  return 0;
}
DEFINE_OP(GeneralInferOp);

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