executor.cc 5.3 KB
Newer Older
Q
qijun 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.

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. */

#include "paddle/framework/executor.h"
Q
qijun 已提交
16
#include <memory>
Y
Yang Yang 已提交
17
#include <vector>
Q
qijun 已提交
18 19
#include "paddle/framework/op_registry.h"
#include "paddle/framework/operator.h"
Q
qijun 已提交
20
#include "paddle/framework/scope.h"
Q
qijun 已提交
21 22 23 24 25
#include "paddle/platform/device_context.h"

namespace paddle {
namespace framework {

Y
Yang Yang 已提交
26 27
// using std::unique_ptr<OperatorBase> op_ptr;

Q
qijun 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40 41
class LinearListView;
class GraphView;

// Immutable view of a ProgramDesc organized for efficient execution.
class ProgramDescView {
 public:
  virtual ~ProgramDescView() {}
  virtual void Initialize(const ProgramDesc*) = 0;
  static ProgramDescView* Create(bool is_linear);
};

class LinearListView : public ProgramDescView {
 public:
  void Initialize(const ProgramDesc*) override;
Q
qijun 已提交
42 43 44

 private:
  std::vector<std::unique_ptr<OperatorBase>> ops_;
Q
qijun 已提交
45 46 47 48 49 50 51
};

class GraphView : public ProgramDescView {
 public:
  void Initialize(const ProgramDesc*) override;
};

Q
qijun 已提交
52
ProgramDescView* ProgramDescView::Create(bool is_linear) {
Q
qijun 已提交
53 54 55 56 57 58 59
  if (is_linear) {
    return new LinearListView();
  } else {
    return new GraphView();
  }
}

Q
qijun 已提交
60
void LinearListView::Initialize(const ProgramDesc* pdesc) {
Q
qijun 已提交
61
  // get a LinearView of ProgramDesc
Q
qijun 已提交
62 63 64 65 66
  for (auto& block_desc : pdesc->blocks()) {
    for (auto& op_desc : block_desc.ops()) {
      ops_.emplace_back(OpRegistry::CreateOp(op_desc));
    }
  }
Q
qijun 已提交
67 68
}

Q
qijun 已提交
69
void GraphView::Initialize(const ProgramDesc* pdesc) {
Q
qijun 已提交
70 71 72
  // get a GraphView of ProgramDesc
}

Q
qijun 已提交
73 74
struct Device {
  platform::CPUDeviceContext* cpu_device_context;
Q
qijun 已提交
75 76 77 78
#ifndef PADDLE_ONLY_CPU
  platform::CUDADeviceContext* cuda_device_context;
#endif

Q
qijun 已提交
79 80 81 82 83 84 85 86
#ifndef PADDLE_ONLY_CPU
  Device(platform::CPUDeviceContext* cpu, platform::CUDADeviceContext* gpu)
      : cpu_device_context(cpu), cuda_device_context(gpu) {}
#else
  explicit Device(platform::CPUDeviceContext* cpu) : cpu_device_context(cpu) {}
#endif
};

Q
qijun 已提交
87 88
class ExecutorImpl : public Executor {
 public:
Q
qijun 已提交
89 90
  ExecutorImpl(Scope* scope, const Device* device, const ProgramDesc* pdesc,
               bool is_linear)
Q
qijun 已提交
91
      : scope_(scope),
Q
qijun 已提交
92
        device_(device),
Q
qijun 已提交
93 94 95 96 97 98 99 100 101 102 103 104
        program_desc_(pdesc),
        view_(ProgramDescView::Create(is_linear)) {}

  virtual ~ExecutorImpl() {
    if (view_) delete view_;
  }

  void Run() override;

  void Initialize();

 private:
Q
qijun 已提交
105
  Scope* scope_;
Q
qijun 已提交
106
  const Device* device_;
Q
qijun 已提交
107 108 109 110
  const ProgramDesc* program_desc_;
  ProgramDescView* view_;
};

Q
qijun 已提交
111 112
template <typename T, typename... Args>
std::unique_ptr<T> make_unique(Args&&... args) {
Q
qijun 已提交
113
  return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
Q
qijun 已提交
114 115
}

Q
qijun 已提交
116 117
platform::CPUDeviceContext* GetCPUDeviceContext(
    const platform::CPUPlace& place) {
Q
qijun 已提交
118
  static std::unique_ptr<platform::CPUDeviceContext> g_cpu_device_context =
Q
qijun 已提交
119
      make_unique<platform::CPUDeviceContext>(place);
Q
qijun 已提交
120 121
  return g_cpu_device_context.get();
}
Q
qijun 已提交
122 123

#ifndef PADDLE_ONLY_CPU
Q
qijun 已提交
124 125
platform::CUDADeviceContext* GetCUDADeviceContext(
    const platform::GPUPlace& place) {
Q
qijun 已提交
126
  static std::unique_ptr<platform::CUDADeviceContext> g_cuda_device_context =
Q
qijun 已提交
127
      make_unique<platform::CUDADeviceContext>(place);
Q
qijun 已提交
128 129
  return g_cuda_device_context.get();
}
Q
qijun 已提交
130 131
#endif

Q
qijun 已提交
132 133 134
Device* GetDevice(const platform::Place& place) {
  platform::CPUPlace cpu_place;
#ifndef PADDLE_ONLY_CPU
Q
qijun 已提交
135 136 137 138 139 140 141 142 143 144
  if (platform::is_gpu_place(place)) {
    platform::GPUPlace gpu_place = boost::get<platform::GPUPlace>(place);
    static std::unique_ptr<Device> g_device = make_unique<Device>(
        GetCPUDeviceContext(cpu_place), GetCUDADeviceContext(gpu_place));
    return g_device.get();
  } else {
    static std::unique_ptr<Device> g_device =
        make_unique<Device>(GetCPUDeviceContext(cpu_place), nullptr);
    return g_device.get();
  }
Q
qijun 已提交
145 146 147 148 149 150 151
#else
  static std::unique_ptr<Device> g_device =
      make_unique<Device>(GetCPUDeviceContext(cpu_place));
  return g_device.get();
#endif
}

Q
qijun 已提交
152 153 154 155 156 157
framework::Scope* GetScope() {
  static std::unique_ptr<framework::Scope> g_scope =
      make_unique<framework::Scope>();
  return g_scope.get();
}

Q
qijun 已提交
158 159
Executor* NewLocalExecutor(const platform::Place& place,
                           const ProgramDesc& pdesc, bool is_linear) {
Q
qijun 已提交
160
  return new ExecutorImpl(GetScope(), GetDevice(place), &pdesc, is_linear);
Q
qijun 已提交
161 162 163
}

void ExecutorImpl::Run() {
Y
Yang Yang 已提交
164 165 166 167 168
  // TODO(tonyyang-svail): only runs the first block
  auto& block = program_desc_->blocks(0);

  for (auto& var : block.vars()) {
    scope_->NewVar(var.name());
Q
qijun 已提交
169
  }
Y
Yang Yang 已提交
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184

  // std::vector<op_ptr> ops;
  for (auto& op_desc : block.ops()) {
    auto op = framework::OpRegistry::CreateOp(op_desc);
    op->InferShape(device_->cpu_device_context);
    op->Compute();
  }

  // TODO(tonyyang-svail): need to test gpu device
  //   device_->cpu_device_context->Wait();
  // #ifndef PADDLE_ONLY_CPU
  //   if (device_->cuda_device_context) {
  //     device_->cuda_device_context->Wait();
  //   }
  // #endif
Q
qijun 已提交
185 186 187 188 189 190 191 192 193
}

void ExecutorImpl::Initialize() {
  // Initialize the ProgramDescView
  view_->Initialize(program_desc_);
}

}  // namespace framework
}  // namespace paddle