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 {

L
liuruilong 已提交
36

37
template <typename Device, typename T = float>
38 39
class PaddleMobile {
 public:
L
liuruilong 已提交
40 41 42 43 44 45 46 47

  PaddleMobile(PaddleMobileConfigInternal config): config_(config){
#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
  }

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

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

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

75 76
  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 已提交
77

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

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

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

89
  void SetThreadNum(int count);
90
  void Clear();
91
  double GetPredictTime();
92

93
#ifdef PADDLE_MOBILE_FPGA
H
hjchen2 已提交
94
  void InjectVariable(const framework::Tensor &t, std::string var_name);
95 96 97 98 99 100 101
  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 已提交
102
#ifdef PADDLE_MOBILE_CL
103
 public:  // NOLINT
Y
yangfei 已提交
104
  void SetCLPath(std::string cl_path);
105 106
  int readText(const char *kernelPath,
               char **pcode);  // 读取文本文件放入 pcode,返回字符串长度
Y
yangfei 已提交
107 108
#endif

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

}  // namespace paddle_mobile