executor.cc 4.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"
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

Y
Yang Yang 已提交
23
#include "paddle/framework/lod_tensor.h"
Q
qijun 已提交
24
#include "paddle/framework/op_registry.h"
Q
qijun 已提交
25
#include "paddle/framework/scope.h"
Q
qijun 已提交
26 27 28 29

namespace paddle {
namespace framework {

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

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

Q
qijun 已提交
53 54
Executor::~Executor() {
  for (auto& device_context : device_contexts_) {
Y
Yang Yang 已提交
55
    delete device_context;
Q
qijun 已提交
56 57 58
  }
}

Y
Yang Yang 已提交
59
void Executor::Run(const ProgramDesc& pdesc, Scope* scope, int block_id) {
Y
Yang Yang 已提交
60
  // TODO(tonyyang-svail):
Y
Yang Yang 已提交
61
  //    - only runs on the first device (i.e. no interdevice communication)
Y
Yang Yang 已提交
62
  //    - will change to use multiple blocks for RNN op and Cond Op
Y
Yang Yang 已提交
63 64
  PADDLE_ENFORCE_GT(pdesc.blocks_size(), block_id);
  auto& block = pdesc.blocks(block_id);
Y
Yang Yang 已提交
65
  auto& device = device_contexts_[0];
Y
Yang Yang 已提交
66

Y
Yang Yang 已提交
67
  // Instantiate all the vars in the global scope
Y
Yang Yang 已提交
68
  for (auto& var : block.vars()) {
D
dongzhihong 已提交
69
    scope->Var(var.name());
Y
Yang Yang 已提交
70 71
  }

Y
Yang Yang 已提交
72 73
  Scope& local_scope = scope->NewScope();

Y
Yang Yang 已提交
74
  std::vector<bool> should_run = Prune(pdesc, block_id);
Y
Yang Yang 已提交
75
  PADDLE_ENFORCE_EQ(should_run.size(), static_cast<size_t>(block.ops_size()));
Y
Yang Yang 已提交
76
  for (size_t i = 0; i < should_run.size(); ++i) {
Y
Yang Yang 已提交
77
    if (should_run[i]) {
Y
Yang Yang 已提交
78 79
      for (auto& var : block.ops(i).outputs()) {
        for (auto& argu : var.arguments()) {
Y
Yang Yang 已提交
80
          if (local_scope.FindVar(argu) == nullptr) {
D
dongzhihong 已提交
81
            local_scope.Var(argu);
Y
Yang Yang 已提交
82 83 84
          }
        }
      }
Y
Yang Yang 已提交
85
      auto op = paddle::framework::OpRegistry::CreateOp(block.ops(i));
Y
Yang Yang 已提交
86
      op->Run(local_scope, *device);
Y
Yang Yang 已提交
87
    }
Y
Yang Yang 已提交
88
  }
Y
Yang Yang 已提交
89 90 91

  // TODO(tonyyang-svail):
  //  - Destroy local_scope
Y
Yang Yang 已提交
92 93
}

Y
Yang Yang 已提交
94
std::vector<bool> Prune(const ProgramDesc& pdesc, int block_id) {
Y
Yang Yang 已提交
95
  // TODO(tonyyang-svail):
Y
Yang Yang 已提交
96
  //    - will change to use multiple blocks for RNN op and Cond Op
Y
Yang Yang 已提交
97

Y
Yang Yang 已提交
98
  auto& block = pdesc.blocks(block_id);
Y
Yang Yang 已提交
99 100 101 102
  auto& ops = block.ops();

  bool expect_feed = true;
  for (auto& op_desc : ops) {
Y
Yang Yang 已提交
103
    PADDLE_ENFORCE(op_desc.type() != kFeedOpType || expect_feed,
Y
Yang Yang 已提交
104
                   "All FeedOps are at the beginning of the ProgramDesc");
Y
Yang Yang 已提交
105
    expect_feed = (op_desc.type() == kFeedOpType);
Y
Yang Yang 已提交
106 107 108 109 110
  }

  bool expect_fetch = true;
  for (auto op_iter = ops.rbegin(); op_iter != ops.rend(); ++op_iter) {
    auto& op_desc = *op_iter;
Y
Yang Yang 已提交
111
    PADDLE_ENFORCE(op_desc.type() != kFetchOpType || expect_fetch,
Y
Yang Yang 已提交
112
                   "All FetchOps must at the end of the ProgramDesc");
Y
Yang Yang 已提交
113
    expect_fetch = (op_desc.type() == kFetchOpType);
Y
Yang Yang 已提交
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
  }

  std::set<std::string> dependent_vars;
  std::vector<bool> should_run;
  for (auto op_iter = ops.rbegin(); op_iter != ops.rend(); ++op_iter) {
    auto& op_desc = *op_iter;

    bool found_dependent_vars = false;
    for (auto& var : op_desc.outputs()) {
      for (auto& argu : var.arguments()) {
        if (dependent_vars.count(argu) != 0) {
          found_dependent_vars = true;
        }
      }
    }

Y
Yang Yang 已提交
130
    if (op_desc.type() == kFetchOpType || found_dependent_vars) {
Y
Yang Yang 已提交
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
      // erase its output to the dependency graph
      for (auto& var : op_desc.outputs()) {
        for (auto& argu : var.arguments()) {
          dependent_vars.erase(argu);
        }
      }

      // insert its input to the dependency graph
      for (auto& var : op_desc.inputs()) {
        for (auto& argu : var.arguments()) {
          dependent_vars.insert(argu);
        }
      }

      should_run.push_back(true);
    } else {
      should_run.push_back(false);
Q
qijun 已提交
148 149
    }
  }
Y
Yang Yang 已提交
150

Y
Yang Yang 已提交
151 152 153 154
  // TODO(tonyyang-svail):
  //    - check this after integration of Init
  // PADDLE_ENFORCE(dependent_vars.empty());

Y
Yang Yang 已提交
155 156 157 158 159
  // since we are traversing the ProgramDesc in reverse order
  // we reverse the should_run vector
  std::reverse(should_run.begin(), should_run.end());

  return should_run;
Q
qijun 已提交
160 161 162 163
}

}  // namespace framework
}  // namespace paddle