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"
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

Y
Yang Yang 已提交
27 28
#include <boost/range/adaptor/reversed.hpp>

Q
qijun 已提交
29 30 31
namespace paddle {
namespace framework {

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

Q
qijun 已提交
35
Executor::Executor(const std::vector<platform::Place>& places) {
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 47 48 49
#else
      PADDLE_THROW("'GPUPlace' is not supported in CPU only device.");
#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 69 70 71
  for (auto& var : block.vars()) {
    scope->NewVar(var.name());
  }

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(), 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 81 82 83 84
          if (local_scope.FindVar(argu) == nullptr) {
            local_scope.NewVar(argu);
          }
        }
      }
Y
Yang Yang 已提交
85 86 87 88 89 90 91 92 93
      LOG(INFO) << block.ops(i).type();
      if (block.ops(i).type() == "sum") {
        LOG(INFO) << "Here";
        for (auto& var : block.ops(i).inputs()) {
          for (auto& argu : var.arguments()) {
            LOG(INFO) << var.parameter() << " " << argu;
          }
        }
      }
Y
Yang Yang 已提交
94
      auto op = paddle::framework::OpRegistry::CreateOp(block.ops(i));
Y
Yang Yang 已提交
95
      LOG(INFO) << op->DebugString();
Y
Yang Yang 已提交
96
      op->Run(local_scope, *device);
Y
Yang Yang 已提交
97
    }
Y
Yang Yang 已提交
98
  }
Y
Yang Yang 已提交
99 100 101

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

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

Y
Yang Yang 已提交
108
  auto& block = pdesc.blocks(block_id);
Y
Yang Yang 已提交
109 110 111 112
  auto& ops = block.ops();

  bool expect_feed = true;
  for (auto& op_desc : ops) {
Y
Yang Yang 已提交
113
    PADDLE_ENFORCE(op_desc.type() != kFeedOpType || expect_feed,
Y
Yang Yang 已提交
114
                   "All FeedOps are at the beginning of the ProgramDesc");
Y
Yang Yang 已提交
115
    expect_feed = (op_desc.type() == kFeedOpType);
Y
Yang Yang 已提交
116 117 118 119 120
  }

  bool expect_fetch = true;
  for (auto op_iter = ops.rbegin(); op_iter != ops.rend(); ++op_iter) {
    auto& op_desc = *op_iter;
Y
Yang Yang 已提交
121
    PADDLE_ENFORCE(op_desc.type() != kFetchOpType || expect_fetch,
Y
Yang Yang 已提交
122
                   "All FetchOps must at the end of the ProgramDesc");
Y
Yang Yang 已提交
123
    expect_fetch = (op_desc.type() == kFetchOpType);
Y
Yang Yang 已提交
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
  }

  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 已提交
140
    if (op_desc.type() == kFetchOpType || found_dependent_vars) {
Y
Yang Yang 已提交
141 142 143 144 145 146 147 148 149 150 151 152 153 154
      // 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);
        }
      }

Y
Yang Yang 已提交
155
      LOG(INFO) << "1 " << op_desc.type();
Y
Yang Yang 已提交
156 157
      should_run.push_back(true);
    } else {
Y
Yang Yang 已提交
158
      LOG(INFO) << "0 " << op_desc.type();
Y
Yang Yang 已提交
159
      should_run.push_back(false);
Q
qijun 已提交
160 161
    }
  }
Y
Yang Yang 已提交
162

Y
Yang Yang 已提交
163 164 165 166
  // TODO(tonyyang-svail):
  //    - check this after integration of Init
  // PADDLE_ENFORCE(dependent_vars.empty());

Y
Yang Yang 已提交
167 168 169 170 171
  // 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 已提交
172 173 174 175
}

}  // namespace framework
}  // namespace paddle