paddle_mobile.h 3.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/* 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 <memory>
#include <string>
19
#include <utility>
20
#include <vector>
21 22 23
#ifdef _OPENMP
#include <omp.h>
#endif  // _OPENMP
24 25

#include "common/types.h"
26
#include "framework/executor.h"
H
hjchen2 已提交
27
#include "framework/load_ops.h"
28
#include "framework/loader.h"
29
#include "framework/tensor.h"
Y
yangfei 已提交
30 31 32
#ifdef PADDLE_MOBILE_CL
#include "framework/cl/cl_engine.h"
#endif
33 34 35

namespace paddle_mobile {

36
template <typename Device, typename T = float>
37 38
class PaddleMobile {
 public:
xiebaiyuan's avatar
xiebaiyuan 已提交
39
  PaddleMobile(PaddleMobileConfigInternal config) : config_(config) {
L
liuruilong 已提交
40 41 42 43 44 45
#ifndef PADDLE_MOBILE_CL
    bool is_gpu = std::is_same<DeviceType<kGPU_CL>, Device>::value;
    PADDLE_MOBILE_ENFORCE(!is_gpu, "Please recompile with GPU_CL is on");
#endif
  }

46 47
  PaddleMobile() {
#ifndef PADDLE_MOBILE_CL
48 49
    bool is_gpu = std::is_same<DeviceType<kGPU_CL>, Device>::value;
    PADDLE_MOBILE_ENFORCE(!is_gpu, "Please recompile with GPU_CL is on");
50 51
#endif
  }
52 53 54 55 56 57 58 59 60 61 62
  ~PaddleMobile() {}

  PMStatus Load(const std::string &dirname, const bool optimize = false,
                const bool quantification = false, const int batch_size = 1,
                const bool lod = false);
  PMStatus Load(const std::string &model_path, const std::string &para_path,
                const bool optimize = false, const bool quantification = false,
                const int batch_size = 1, const bool lod = false);

  PMStatus Predict(const framework::Tensor &input);
  PMStatus Predict(const framework::LoDTensor &input);
63

64 65 66 67
  PMStatus Predict(
      const std::vector<std::pair<std::string, framework::Tensor>> &inputs);
  PMStatus Predict(
      const std::vector<std::pair<std::string, framework::LoDTensor>> &inputs);
68

69 70 71
  std::vector<T> Predict(const std::vector<T> &input,
                         const std::vector<int64_t> &dims);
  PMStatus Predict();
72

73 74
  void Feed(const framework::LoDTensor &input, const std::string &var_name);
  void Feed(const framework::Tensor &input, const std::string &var_name);
xiebaiyuan's avatar
xiebaiyuan 已提交
75

76 77 78 79
  typedef std::shared_ptr<framework::LoDTensor> LoDTensorPtr;
  LoDTensorPtr Fetch(const std::string &var_name);

  LoDTensorPtr Fetch() { return Fetch("fetch"); }
80

81 82
  bool LoadCombinedMemory(size_t model_len, const uint8_t *model_buf,
                          size_t combined_params_len,
L
liuruilong 已提交
83 84 85
                          uint8_t *combined_params_buf, bool optimize = false,
                          bool quantification = false, int batch_size = 1,
                          bool loddable = false);
86

87
  void SetThreadNum(int count);
88
  void Clear();
89
  double GetPredictTime();
90

91
#ifdef PADDLE_MOBILE_FPGA
H
hjchen2 已提交
92
  void InjectVariable(const framework::Tensor &t, std::string var_name);
93 94 95 96 97 98 99
  void FeedData(const framework::Tensor &t);
  std::shared_ptr<framework::Tensor> FetchResult(int id = -1);
  void Predict_From_To(int start = 0, int end = -1);
  void Predict_From(int start);
  void Predict_To(int end);
#endif

Y
yangfei 已提交
100
#ifdef PADDLE_MOBILE_CL
101
 public:  // NOLINT
Y
yangfei 已提交
102
  void SetCLPath(std::string cl_path);
103 104
  int readText(const char *kernelPath,
               char **pcode);  // 读取文本文件放入 pcode,返回字符串长度
Y
yangfei 已提交
105 106
#endif

107
 private:
108 109
  std::shared_ptr<framework::Loader<Device, T>> loader_;
  std::shared_ptr<framework::Executor<Device, T>> executor_;
L
liuruilong 已提交
110
  PaddleMobileConfigInternal config_;
111 112 113
};

}  // namespace paddle_mobile