executor.cc 3.9 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>
Q
qijun 已提交
17
#include "paddle/framework/scope.h"
Q
qijun 已提交
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
#include "paddle/platform/device_context.h"

namespace paddle {
namespace framework {

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;
};

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

Q
qijun 已提交
44
ProgramDescView* ProgramDescView::Create(bool is_linear) {
Q
qijun 已提交
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
  if (is_linear) {
    return new LinearListView();
  } else {
    return new GraphView();
  }
}

void LinearListView::Initialize(const ProgramDesc*) {
  // get a LinearView of ProgramDesc
}

void GraphView::Initialize(const ProgramDesc*) {
  // get a GraphView of ProgramDesc
}

class ExecutorImpl : public Executor {
 public:
Q
qijun 已提交
62 63 64 65
  ExecutorImpl(Scope* scope, const platform::DeviceContext* ctx,
               const ProgramDesc* pdesc, bool is_linear)
      : scope_(scope),
        device_context_(ctx),
Q
qijun 已提交
66 67 68 69 70 71 72 73 74 75 76 77
        program_desc_(pdesc),
        view_(ProgramDescView::Create(is_linear)) {}

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

  void Run() override;

  void Initialize();

 private:
Q
qijun 已提交
78
  Scope* scope_;
Q
qijun 已提交
79 80 81 82 83
  const platform::DeviceContext* device_context_;
  const ProgramDesc* program_desc_;
  ProgramDescView* view_;
};

Q
qijun 已提交
84 85
template <typename T, typename... Args>
std::unique_ptr<T> make_unique(Args&&... args) {
Q
qijun 已提交
86
  return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
Q
qijun 已提交
87 88
}

Q
qijun 已提交
89
platform::CPUDeviceContext* GetCPUDeviceContext(platform::CPUPlace& place) {
Q
qijun 已提交
90
  static std::unique_ptr<platform::CPUDeviceContext> g_cpu_device_context =
Q
qijun 已提交
91
      make_unique<platform::CPUDeviceContext>(place);
Q
qijun 已提交
92 93
  return g_cpu_device_context.get();
}
Q
qijun 已提交
94 95

#ifndef PADDLE_ONLY_CPU
Q
qijun 已提交
96
platform::CUDADeviceContext* GetCUDADeviceContext(platform::GPUPlace& place) {
Q
qijun 已提交
97
  static std::unique_ptr<platform::CUDADeviceContext> g_cuda_device_context =
Q
qijun 已提交
98
      make_unique<platform::CUDADeviceContext>(place);
Q
qijun 已提交
99 100
  return g_cuda_device_context.get();
}
Q
qijun 已提交
101 102
#endif

Q
qijun 已提交
103 104 105 106 107 108
framework::Scope* GetScope() {
  static std::unique_ptr<framework::Scope> g_scope =
      make_unique<framework::Scope>();
  return g_scope.get();
}

Q
qijun 已提交
109 110
Executor* NewLocalExecutor(const platform::Place& place,
                           const ProgramDesc& pdesc, bool is_linear) {
Q
qijun 已提交
111 112
  platform::DeviceContext* device_context = nullptr;
  if (platform::is_cpu_place(place)) {
Q
qijun 已提交
113 114
    auto cpu_place = boost::get<platform::CPUPlace>(place);
    device_context = GetCPUDeviceContext(cpu_place);
Q
qijun 已提交
115
  } else if (platform::is_gpu_place(place)) {
Q
qijun 已提交
116
#ifndef PADDLE_ONLY_CPU
Q
qijun 已提交
117 118
    auto gpu_place = boost::get<platform::GPUPlace>(place);
    device_context = GetCUDADeviceContext(gpu_place);
Q
qijun 已提交
119 120 121
  }
#else
    PADDLE_THROW("'GPUPlace' is not supported in CPU only device.");
Q
qijun 已提交
122 123
  }
#endif
Q
qijun 已提交
124
  return new ExecutorImpl(GetScope(), device_context, &pdesc, is_linear);
Q
qijun 已提交
125 126 127 128
}

void ExecutorImpl::Run() {
  // operators running
Q
qijun 已提交
129
  scope_->NewVar();
Q
qijun 已提交
130 131 132 133 134 135 136 137 138 139
  device_context_->Wait();
}

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

}  // namespace framework
}  // namespace paddle