block_desc.cc 6.0 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
F
fengjiayi 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14

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

Y
Yi Wang 已提交
15
#include "paddle/fluid/framework/block_desc.h"
16
#include <queue>
Y
Yi Wang 已提交
17 18
#include "paddle/fluid/framework/operator.h"
#include "paddle/fluid/framework/program_desc.h"
F
fengjiayi 已提交
19 20 21 22

namespace paddle {
namespace framework {

Y
Yu Yang 已提交
23
VarDesc *BlockDesc::Var(const std::string &name) {
F
fengjiayi 已提交
24
  auto it = vars_.find(name);
D
Dong Zhihong 已提交
25
  if (it != vars_.end()) {
D
Dong Zhihong 已提交
26
    return it->second.get();
D
Dong Zhihong 已提交
27
  }
28
  need_update_ = true;
Y
Yu Yang 已提交
29
  auto *var = new VarDesc(name);
F
fengjiayi 已提交
30 31 32 33
  vars_[name].reset(var);
  return var;
}

Y
Yu Yang 已提交
34
VarDesc *BlockDesc::FindVar(const std::string &name) const {
F
fengjiayi 已提交
35
  auto it = vars_.find(name);
D
Dong Zhihong 已提交
36 37 38
  if (it == vars_.end()) {
    return nullptr;
  }
F
fengjiayi 已提交
39 40 41
  return it->second.get();
}

Y
Yu Yang 已提交
42
bool BlockDesc::HasVar(const std::string &name) const {
Q
qiaolongfei 已提交
43
  return vars_.find(name) != vars_.end();
Q
qiaolongfei 已提交
44 45
}

T
wip  
typhoonzero 已提交
46 47 48 49 50 51 52 53 54 55 56 57 58 59
VarDesc *BlockDesc::RenameVar(const std::string &old_name,
                              const std::string &new_name) {
  if (!this->HasVar(old_name)) {
    return nullptr;
  }
  need_update_ = true;
  auto *var = this->Var(old_name);
  VarDesc *new_var = new VarDesc(*(var->Proto()));
  new_var->SetName(new_name);
  vars_[new_name].reset(new_var);
  // rename inputs and outputs
  for (const auto &op : ops_) {
    auto *it = op.get();
    it->Rename(old_name, new_name);
T
typhoonzero 已提交
60
  }
T
wip  
typhoonzero 已提交
61 62
  vars_.erase(old_name);
  return new_var;
T
typhoonzero 已提交
63 64
}

Y
Yu Yang 已提交
65
VarDesc *BlockDesc::FindVarRecursive(const std::string &name) const {
66 67
  if (name == kEmptyVarName) return nullptr;

Y
Yu Yang 已提交
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
  std::queue<const BlockDesc *> frontier;
  std::unordered_set<const BlockDesc *> visited;

  frontier.push(this);

  while (!frontier.empty()) {  // BFS
    auto cur = frontier.front();
    frontier.pop();
    if (visited.count(cur) != 0) {
      continue;
    }
    auto var = cur->FindVar(name);
    if (var != nullptr) {
      return var;
    }

    auto fwd = cur->ForwardBlock();
    auto parent = cur->ParentBlock();

    if (fwd != nullptr) {
      frontier.push(fwd);
    }
    if (parent != nullptr) {
      frontier.push(parent);
    }

    visited.insert(cur);
95
  }
Y
Yu Yang 已提交
96 97

  return nullptr;
98 99
}

Y
Yang Yu 已提交
100
VarDesc &BlockDesc::FindRecursiveOrCreateVar(const std::string &name_bytes) {
Y
Yu Yang 已提交
101
  VarDesc *res = FindVarRecursive(name_bytes);
Y
Yang Yang(Tony) 已提交
102 103 104
  if (res == nullptr) {
    res = Var(name_bytes);
  }
Y
Yang Yu 已提交
105
  return *res;
Y
Yang Yang(Tony) 已提交
106 107
}

Y
Yu Yang 已提交
108
bool BlockDesc::HasVarRecursive(const std::string &name) const {
109 110 111
  return FindVarRecursive(name) != nullptr;
}

Y
Yu Yang 已提交
112 113
std::vector<VarDesc *> BlockDesc::AllVars() const {
  std::vector<VarDesc *> res;
F
fengjiayi 已提交
114 115 116 117 118 119
  for (const auto &p : vars_) {
    res.push_back(p.second.get());
  }
  return res;
}

Y
Yu Yang 已提交
120
OpDesc *BlockDesc::AppendOp() {
F
fengjiayi 已提交
121
  need_update_ = true;
122
  ops_.emplace_back(new OpDesc(this));
F
fengjiayi 已提交
123 124 125
  return ops_.back().get();
}

Y
Yu Yang 已提交
126
void BlockDesc::AppendAllocatedOp(std::unique_ptr<OpDesc> &&op_desc) {
127 128 129 130
  need_update_ = true;
  ops_.emplace_back(std::move(op_desc));
}

Y
Yu Yang 已提交
131
OpDesc *BlockDesc::PrependOp() {
F
fengjiayi 已提交
132
  need_update_ = true;
133
  ops_.emplace_front(new OpDesc(this));
F
fengjiayi 已提交
134 135 136
  return ops_.front().get();
}

Y
Yao Cheng 已提交
137 138 139 140 141
void BlockDesc::PrependAllocatedOp(std::unique_ptr<OpDesc> &&op_desc) {
  need_update_ = true;
  ops_.emplace_front(std::move(op_desc));
}

142 143 144 145 146 147 148 149
OpDesc *BlockDesc::InsertOp(size_t index) {
  need_update_ = true;
  auto it = ops_.begin() + index;
  std::unique_ptr<OpDesc> new_op(new OpDesc(this));
  it = ops_.insert(it, std::move(new_op));
  return (*it).get();
}

T
typhoonzero 已提交
150
void BlockDesc::RemoveOp(size_t s, size_t e) {
Y
Yancey 已提交
151
  if (ops_.begin() + s >= ops_.end() || ops_.begin() + e > ops_.end()) {
T
typhoonzero 已提交
152 153 154 155 156 157
    return;
  }
  need_update_ = true;
  ops_.erase(ops_.begin() + s, ops_.begin() + e);
}

158 159 160 161 162 163 164 165
void BlockDesc::RemoveOpInternal(const OpDesc *op_desc) {
  for (auto it = ops_.begin(); it != ops_.end(); ++it) {
    if (it->get() == op_desc) {
      ops_.erase(it);
    }
  }
}

Y
Yu Yang 已提交
166 167
std::vector<OpDesc *> BlockDesc::AllOps() const {
  std::vector<OpDesc *> res;
F
fengjiayi 已提交
168 169 170 171 172 173
  for (const auto &op : ops_) {
    res.push_back(op.get());
  }
  return res;
}

Y
Yu Yang 已提交
174
void BlockDesc::Flush() {
175 176 177 178
  for (auto &op_desc : ops_) {
    op_desc->Flush();
  }

F
fengjiayi 已提交
179
  if (need_update_) {
Q
Qiao Longfei 已提交
180
    this->desc_->mutable_ops()->Clear();
F
fengjiayi 已提交
181
    for (auto &op_desc : ops_) {
Q
Qiao Longfei 已提交
182
      this->desc_->mutable_ops()->Add()->CopyFrom(*op_desc->Proto());
F
fengjiayi 已提交
183
    }
Q
Qiao Longfei 已提交
184
    this->desc_->mutable_vars()->Clear();
F
Fix bug  
fengjiayi 已提交
185
    for (auto &var_desc : vars_) {
Q
Qiao Longfei 已提交
186
      this->desc_->mutable_vars()->Add()->CopyFrom(*var_desc.second->Proto());
F
Fix bug  
fengjiayi 已提交
187
    }
F
fengjiayi 已提交
188 189 190 191
    need_update_ = false;
  }
}

Y
Yu Yang 已提交
192
BlockDesc *BlockDesc::ParentBlock() const {
Y
Yu Yang 已提交
193
  return prog_->MutableBlock(static_cast<size_t>(desc_->parent_idx()));
F
fengjiayi 已提交
194 195
}

Y
Yu Yang 已提交
196
proto::BlockDesc *BlockDesc::Proto() {
197 198 199
  Flush();
  return desc_;
}
200

Y
Yu Yang 已提交
201
BlockDesc::BlockDesc(ProgramDesc *prog, proto::BlockDesc *desc)
202
    : prog_(prog), desc_(desc), need_update_(false) {
203
  for (const proto::VarDesc &var_desc : desc_->vars()) {
Y
Yu Yang 已提交
204
    vars_[var_desc.name()].reset(new VarDesc(var_desc));
205
  }
206
  for (const proto::OpDesc &op_desc : desc_->ops()) {
F
fengjiayi 已提交
207
    ops_.emplace_back(new OpDesc(op_desc, this));
208 209 210
  }
}

Y
Yu Yang 已提交
211 212
BlockDesc::BlockDesc(const BlockDesc &other, proto::BlockDesc *desc,
                     ProgramDesc *prog)
Y
Yu Yang 已提交
213 214 215
    : prog_(prog), desc_(desc) {
  need_update_ = true;
  for (auto &op : other.ops_) {
F
fengjiayi 已提交
216
    ops_.emplace_back(new OpDesc(*op, this));
Y
Yu Yang 已提交
217 218
  }
  for (auto &it : other.vars_) {
Y
Yu Yang 已提交
219
    auto *var = new VarDesc(*it.second);
Y
Yu Yang 已提交
220 221 222
    vars_[it.first].reset(var);
  }
}
223

Y
Yu Yang 已提交
224 225 226 227 228 229 230 231 232 233 234
void BlockDesc::SetForwardBlockID(int32_t forward_block_id) {
  PADDLE_ENFORCE(!desc_->has_forward_block_idx(),
                 "Parent block ID has been set to %d. Cannot set to %d",
                 desc_->forward_block_idx(), forward_block_id);
  desc_->set_forward_block_idx(forward_block_id);
}

BlockDesc *BlockDesc::ForwardBlock() const {
  return prog_->MutableBlock(static_cast<size_t>(desc_->forward_block_idx()));
}

F
fengjiayi 已提交
235 236
}  // namespace framework
}  // namespace paddle