executor.h 2.9 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:
xiebaiyuan's avatar
xiebaiyuan 已提交
35 36
  Executor(const Program<Device> &program,
           paddle_mobile::PaddleMobileConfigInternal config, int batch_size = 1,
37 38 39 40 41 42 43 44 45 46 47 48 49 50
           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);
51

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

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

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

  int batch_size_;
  bool use_optimize_;
  bool lod_mode_;
L
liuruilong 已提交
78
  PaddleMobileConfigInternal config_;
79 80
  Program<Device> program_;
  std::shared_ptr<ProgramDesc> program_desc_;
81
  std::vector<std::shared_ptr<OperatorBase<Device>>> ops_of_block0_;
82

L
liuruilong 已提交
83
  // for super resoltion
xiebaiyuan's avatar
xiebaiyuan 已提交
84
  DDim input_dim_last_;
L
liuruilong 已提交
85

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

95
}  // namespace framework
W
wangliu 已提交
96
}  // namespace paddle_mobile