executor.cc 4.2 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"
Y
Yang Yang 已提交
16

Y
Yang Yang 已提交
17
#include <algorithm>
Y
Yang Yang 已提交
18
#include <iostream>
Q
qijun 已提交
19
#include <memory>
Y
Yang Yang 已提交
20
#include <set>
Y
Yang Yang 已提交
21
#include <vector>
Y
Yang Yang 已提交
22

Q
QI JUN 已提交
23
#include "paddle/framework/feed_fetch_type.h"
Y
Yu Yang 已提交
24
#include "paddle/framework/lod_rank_table.h"
Y
Yang Yang 已提交
25
#include "paddle/framework/lod_tensor.h"
Q
qijun 已提交
26
#include "paddle/framework/op_registry.h"
Q
qijun 已提交
27
#include "paddle/framework/scope.h"
Q
qijun 已提交
28 29 30 31

namespace paddle {
namespace framework {

Y
Yang Yang 已提交
32 33 34
const std::string kFeedOpType = "feed";
const std::string kFetchOpType = "fetch";

Y
Yu Yang 已提交
35
Executor::Executor(const std::vector<platform::Place>& places) : own_(true) {
Y
Yang Yang 已提交
36
  PADDLE_ENFORCE_GT(places.size(), 0);
Q
qijun 已提交
37
  device_contexts_.resize(places.size());
Q
qijun 已提交
38
  for (size_t i = 0; i < places.size(); i++) {
Q
qijun 已提交
39
    if (platform::is_cpu_place(places[i])) {
Q
qijun 已提交
40 41 42
      device_contexts_[i] = new platform::CPUDeviceContext(
          boost::get<platform::CPUPlace>(places[i]));
    } else if (platform::is_gpu_place(places[i])) {
Q
qijun 已提交
43
#ifdef PADDLE_WITH_CUDA
Q
qijun 已提交
44 45
      device_contexts_[i] = new platform::CUDADeviceContext(
          boost::get<platform::GPUPlace>(places[i]));
Q
qijun 已提交
46
#else
Q
qijun 已提交
47 48 49
      PADDLE_THROW(
          "'GPUPlace' is not supported, Please re-compile with WITH_GPU "
          "option");
Q
qijun 已提交
50 51
#endif
    }
Q
qijun 已提交
52 53 54
  }
}

Q
qijun 已提交
55
Executor::~Executor() {
Y
Yu Yang 已提交
56 57 58 59
  if (own_) {
    for (auto& device_context : device_contexts_) {
      delete device_context;
    }
Q
qijun 已提交
60 61 62
  }
}

Q
QI JUN 已提交
63 64 65 66 67 68 69 70 71
static void CreateTensor(Variable* var, VarDesc::VarType var_type) {
  if (var_type == VarDesc::LOD_TENSOR) {
    var->GetMutable<LoDTensor>();
  } else if (var_type == VarDesc::SELECTED_ROWS) {
    var->GetMutable<SelectedRows>();
  } else if (var_type == VarDesc::FEED_MINIBATCH) {
    var->GetMutable<FeedFetchList>();
  } else if (var_type == VarDesc::FETCH_LIST) {
    var->GetMutable<FeedFetchList>();
Y
Yu Yang 已提交
72 73
  } else if (var_type == VarDesc::STEP_SCOPES) {
    var->GetMutable<std::vector<framework::Scope>>();
Y
Yu Yang 已提交
74 75
  } else if (var_type == VarDesc::LOD_RANK_TABLE) {
    var->GetMutable<LoDRankTable>();
Q
QI JUN 已提交
76 77
  } else {
    PADDLE_THROW(
Y
Yu Yang 已提交
78
        "Variable type %d is not in "
Y
Yu Yang 已提交
79
        "[LoDTensor, SelectedRows, FEED_MINIBATCH, FETCH_LIST, LOD_RANK_TABLE]",
Y
Yu Yang 已提交
80
        var_type);
Q
QI JUN 已提交
81 82 83
  }
}

Y
Yu Yang 已提交
84 85
void Executor::Run(const ProgramDescBind& pdesc, Scope* scope, int block_id,
                   bool create_local_scope) {
Y
Yang Yang 已提交
86
  // TODO(tonyyang-svail):
Y
Yang Yang 已提交
87
  //    - only runs on the first device (i.e. no interdevice communication)
Y
Yang Yang 已提交
88
  //    - will change to use multiple blocks for RNN op and Cond Op
89
  PADDLE_ENFORCE_LT(static_cast<size_t>(block_id), pdesc.Size());
90
  auto& block = pdesc.Block(block_id);
Y
Yang Yang 已提交
91
  auto& device = device_contexts_[0];
Y
Yang Yang 已提交
92

Y
Yu Yang 已提交
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
  Scope* local_scope = scope;
  if (create_local_scope) {
    local_scope = &scope->NewScope();
    for (auto& var : block.AllVars()) {
      if (var->Persistable()) {
        auto* ptr = scope->Var(var->Name());
        CreateTensor(ptr, var->GetType());
        VLOG(3) << "Create Variable " << var->Name()
                << " global, which pointer is " << ptr;
      } else {
        auto* ptr = local_scope->Var(var->Name());
        CreateTensor(ptr, var->GetType());
        VLOG(3) << "Create Variable " << var->Name()
                << " locally, which pointer is " << ptr;
      }
    }
  } else {
    for (auto& var : block.AllVars()) {
      auto* ptr = local_scope->Var(var->Name());
112
      CreateTensor(ptr, var->GetType());
Y
Yu Yang 已提交
113 114
      VLOG(3) << "Create variable " << var->Name() << ", which pointer is "
              << ptr;
Y
Yang Yang 已提交
115
    }
Y
Yang Yang 已提交
116
  }
Y
Yang Yang 已提交
117

118 119
  for (auto& op_desc : block.AllOps()) {
    auto op = paddle::framework::OpRegistry::CreateOp(*op_desc);
Y
Yu Yang 已提交
120 121 122 123
    op->Run(*local_scope, *device);
  }
  if (create_local_scope) {
    scope->DeleteScope(local_scope);
Q
qijun 已提交
124
  }
Q
qijun 已提交
125 126
}

Y
Yu Yang 已提交
127 128 129
Executor::Executor(const platform::DeviceContext& device)
    : device_contexts_({&device}), own_(false) {}

Q
qijun 已提交
130 131
}  // namespace framework
}  // namespace paddle