executor.h 2.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* 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

17 18 19
#include <map>
#include <memory>
#include <string>
20
#include <utility>
21
#include <vector>
22
#include "common/types.h"
Refine  
陈后江 已提交
23
#include "common/util.h"
L
liuruilong 已提交
24
#include "framework/lod_tensor.h"
L
liuruilong 已提交
25
#include "framework/operator.h"
26
#include "framework/program/program.h"
L
liuruilong 已提交
27
#include "framework/tensor.h"
28 29

namespace paddle_mobile {
30
namespace framework {
31

32
template <typename Device, typename T = float>
33
class Executor {
W
wangliu 已提交
34
 public:
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
  Executor(const Program<Device> &program, int batch_size = 1,
           const bool use_optimize = true, const bool lod_mode = false);

  PMStatus Predict(const std::vector<std::pair<std::string, Tensor>> &inputs);
  PMStatus Predict(
      const std::vector<std::pair<std::string, LoDTensor>> &inputs);

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

  void SetInput(const Tensor &input, const std::string &var_name);
  void SetInput(const LoDTensor &input, const std::string &var_name);

  std::shared_ptr<LoDTensor> GetOutput(const std::string &var_name);
50

H
hjchen2 已提交
51
#ifdef PADDLE_MOBILE_FPGA
52 53 54
  void InjectVariable(const Tensor &t, std::string var_name);
  void FeedData(const Tensor &t);
  std::shared_ptr<Tensor> FetchResult(int id = -1);
H
hjchen2 已提交
55 56 57 58 59
  void Predict_From_To(int start = 0, int end = -1);
  void Predict_From(int start);
  void Predict_To(int end);
#endif

W
wangliu 已提交
60
 protected:
61
  Executor() = default;
62 63 64

  bool varInputMemory(const std::shared_ptr<VarDesc> &var_desc, Variable *var,
                      LoDTensor *tensor) const;
65
  void InitMemory();
L
liuruilong 已提交
66
  void InitCombineMemory();
67 68
  void LoadMemory(void **data, const std::shared_ptr<VarDesc> var_desc,
                  LoDTensor *tensor);
L
liuruilong 已提交
69
#ifdef PADDLE_MOBILE_CL
70
  void LoadMemory(const VarDesc var_desc, float *tensorInput, char **data);
L
liuruilong 已提交
71
#endif
72 73 74 75 76 77 78 79 80 81 82 83

  int batch_size_;
  bool use_optimize_;
  bool lod_mode_;
  Program<Device> program_;
  std::shared_ptr<ProgramDesc> program_desc_;

  typedef std::shared_ptr<OperatorBase<Device>> OperatorBasePtr;
  std::vector<std::vector<OperatorBasePtr>> ops_of_block_;
  // operators list
  std::vector<OperatorBasePtr> ops_list_;

D
dolphin8 已提交
84 85 86 87 88 89 90
#ifdef PADDLE_MOBILE_PROFILE
  struct ProfInfo {
    int tid = 0;
    uint64_t runBegin = 0UL;
    uint64_t runEnd = 0UL;
  };
#endif
91 92
};

93
}  // namespace framework
W
wangliu 已提交
94
}  // namespace paddle_mobile