paddle_mobile.h 3.4 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:
39 40
  PaddleMobile() {
#ifndef PADDLE_MOBILE_CL
41 42
    bool is_gpu = std::is_same<DeviceType<kGPU_CL>, Device>::value;
    PADDLE_MOBILE_ENFORCE(!is_gpu, "Please recompile with GPU_CL is on");
43 44
#endif
  }
45 46 47 48 49 50 51 52 53 54 55
  ~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);
56

57 58 59 60
  PMStatus Predict(
      const std::vector<std::pair<std::string, framework::Tensor>> &inputs);
  PMStatus Predict(
      const std::vector<std::pair<std::string, framework::LoDTensor>> &inputs);
61

62 63 64
  std::vector<T> Predict(const std::vector<T> &input,
                         const std::vector<int64_t> &dims);
  PMStatus Predict();
65

66 67
  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 已提交
68

69 70 71 72
  typedef std::shared_ptr<framework::LoDTensor> LoDTensorPtr;
  LoDTensorPtr Fetch(const std::string &var_name);

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

74 75
  bool LoadCombinedMemory(size_t model_len, const uint8_t *model_buf,
                          size_t combined_params_len,
R
Ray Liu 已提交
76
                          uint8_t *combined_params_buf, bool optimize = false, bool quantification = false, int batch_size = 1, bool loddable = false);
77

78
  void SetThreadNum(int count);
79
  void Clear();
80
  double GetPredictTime();
81

82
#ifdef PADDLE_MOBILE_FPGA
H
hjchen2 已提交
83
  void InjectVariable(const framework::Tensor &t, std::string var_name);
84 85 86 87 88 89 90
  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 已提交
91
#ifdef PADDLE_MOBILE_CL
92
 public:  // NOLINT
Y
yangfei 已提交
93
  void SetCLPath(std::string cl_path);
94 95
  int readText(const char *kernelPath,
               char **pcode);  // 读取文本文件放入 pcode,返回字符串长度
Y
yangfei 已提交
96 97
#endif

98
 private:
99 100
  std::shared_ptr<framework::Loader<Device, T>> loader_;
  std::shared_ptr<framework::Executor<Device, T>> executor_;
101 102 103
};

}  // namespace paddle_mobile