helper.h 2.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// Copyright (c) 2018 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.

#pragma once

#include <algorithm>
D
dzhwinter 已提交
18
#include <iterator>
J
Fix mac  
JiabinYang 已提交
19
#include <numeric>
20 21 22 23
#include <sstream>
#include <string>
#include <vector>
#include "paddle/fluid/inference/api/paddle_inference_api.h"
D
dzhwinter 已提交
24
#include "paddle/fluid/inference/api/timer.h"
25 26 27 28

namespace paddle {
namespace inference {

D
dzhwinter 已提交
29 30
static void split(const std::string &str, char sep,
                  std::vector<std::string> *pieces) {
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
  pieces->clear();
  if (str.empty()) {
    return;
  }
  size_t pos = 0;
  size_t next = str.find(sep, pos);
  while (next != std::string::npos) {
    pieces->push_back(str.substr(pos, next - pos));
    pos = next + 1;
    next = str.find(sep, pos);
  }
  if (!str.substr(pos).empty()) {
    pieces->push_back(str.substr(pos));
  }
}
46 47
static void split_to_float(const std::string &str, char sep,
                           std::vector<float> *fs) {
48 49 50 51 52
  std::vector<std::string> pieces;
  split(str, sep, &pieces);
  std::transform(pieces.begin(), pieces.end(), std::back_inserter(*fs),
                 [](const std::string &v) { return std::stof(v); });
}
L
luotao1 已提交
53 54 55 56 57 58 59
static void split_to_int64(const std::string &str, char sep,
                           std::vector<int64_t> *is) {
  std::vector<std::string> pieces;
  split(str, sep, &pieces);
  std::transform(pieces.begin(), pieces.end(), std::back_inserter(*is),
                 [](const std::string &v) { return std::stoi(v); });
}
60 61 62 63 64 65 66 67 68 69
template <typename T>
std::string to_string(const std::vector<T> &vec) {
  std::stringstream ss;
  for (const auto &c : vec) {
    ss << c << " ";
  }
  return ss.str();
}
template <>
std::string to_string<std::vector<float>>(
70 71
    const std::vector<std::vector<float>> &vec);

72 73
template <>
std::string to_string<std::vector<std::vector<float>>>(
74
    const std::vector<std::vector<std::vector<float>>> &vec);
D
dzhwinter 已提交
75

L
luotao1 已提交
76 77 78
template <typename T>
static void TensorAssignData(PaddleTensor *tensor,
                             const std::vector<std::vector<T>> &data) {
79
  // Assign buffer
D
dzhwinter 已提交
80 81
  int dim = std::accumulate(tensor->shape.begin(), tensor->shape.end(), 1,
                            [](int a, int b) { return a * b; });
L
luotao1 已提交
82
  tensor->data.Resize(sizeof(T) * dim);
83 84
  int c = 0;
  for (const auto &f : data) {
L
luotao1 已提交
85 86
    for (T v : f) {
      static_cast<T *>(tensor->data.data())[c++] = v;
D
dzhwinter 已提交
87
    }
88 89 90 91 92
  }
}

}  // namespace inference
}  // namespace paddle