scope.cc 7.9 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
Y
Yi Wang 已提交
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/scope.h"
Y
Yang Yang 已提交
16

17
#include "glog/logging.h"
Y
Yi Wang 已提交
18
#include "paddle/fluid/framework/threadpool.h"
19
#include "paddle/fluid/platform/flags.h"
D
dzhwinter 已提交
20
DECLARE_bool(benchmark);
21

22
PADDLE_DEFINE_EXPORTED_bool(
23 24
    eager_delete_scope,
    true,
Y
Yu Yang 已提交
25 26 27
    "Delete local scope eagerly. It will reduce GPU memory usage but "
    "slow down the destruction of variables.(around 1% performance harm)");

28 29 30 31
#define SCOPE_KIDS_READER_LOCK phi::AutoRDLock auto_lock(&kids_lock_);
#define SCOPE_KIDS_WRITER_LOCK phi::AutoWRLock auto_lock(&kids_lock_);
#define SCOPE_VARS_READER_LOCK phi::AutoRDLock auto_lock(&vars_lock_);
#define SCOPE_VARS_WRITER_LOCK phi::AutoWRLock auto_lock(&vars_lock_);
32

Y
Yi Wang 已提交
33 34 35
namespace paddle {
namespace framework {

36
Scope::~Scope() { DropKids(); }
Y
Yi Wang 已提交
37

Y
Yu Yang 已提交
38
Scope& Scope::NewScope() const {
M
minqiyang 已提交
39 40 41 42 43 44
  Scope* child = new Scope(this);
  {
    SCOPE_KIDS_WRITER_LOCK
    kids_.push_back(child);
  }
  return *child;
Y
Yi Wang 已提交
45 46
}

47 48 49
std::unique_ptr<Scope> Scope::NewTmpScope() const {
  return std::unique_ptr<Scope>(new Scope(this));
}
Q
Qiao Longfei 已提交
50

D
dongzhihong 已提交
51
Variable* Scope::Var(const std::string& name) {
52 53 54 55 56 57 58 59
  // NOTE(xiongkun03): add {} here to unlock. With {}, scope
  // will do callback after unlock.
  Variable* ret = nullptr;
  {
    SCOPE_VARS_WRITER_LOCK
    ret = VarInternal(name);
  }
  return ret;
Y
Yi Wang 已提交
60 61
}

Y
Yu Yang 已提交
62
Variable* Scope::Var(std::string* name) {
63 64 65 66 67 68 69 70 71 72 73 74
  Variable* ret = nullptr;
  std::string new_name;
  {
    SCOPE_VARS_WRITER_LOCK
    new_name = std::to_string(reinterpret_cast<uintptr_t>(this)) + "." +
               std::to_string(vars_.size());
    if (name != nullptr) {
      *name = new_name;
    }
    ret = VarInternal(new_name);
  }
  return ret;
Y
Yi Wang 已提交
75 76 77
}

Variable* Scope::FindVar(const std::string& name) const {
M
minqiyang 已提交
78
  SCOPE_VARS_READER_LOCK
T
tensor-tang 已提交
79 80 81
  return FindVarInternal(name);
}

82 83 84 85 86 87 88
Variable* Scope::GetVar(const std::string& name) const {
  auto* var = FindVar(name);
  PADDLE_ENFORCE_NOT_NULL(
      var, platform::errors::NotFound("Cannot find %s in scope.", name));
  return var;
}

S
sneaxiy 已提交
89
Variable* Scope::FindLocalVar(const std::string& name) const {
M
minqiyang 已提交
90
  SCOPE_VARS_READER_LOCK
S
sneaxiy 已提交
91 92 93
  return FindVarLocally(name);
}

Y
Yu Yang 已提交
94
const Scope* Scope::FindScope(const Variable* var) const {
M
minqiyang 已提交
95
  SCOPE_VARS_READER_LOCK
T
tensor-tang 已提交
96
  return FindScopeInternal(var);
Y
Yi Wang 已提交
97
}
T
tensor-tang 已提交
98

99 100 101 102 103
const Scope* Scope::FindScope(const std::string& name) const {
  SCOPE_VARS_READER_LOCK
  return FindScopeInternal(name);
}

104 105 106 107 108 109 110 111
const Scope* Scope::root() const {
  const Scope* root_scope = this;
  while (root_scope->parent()) {
    root_scope = root_scope->parent();
  }
  return root_scope;
}

Y
Yu Yang 已提交
112
void Scope::DropKids() {
113 114
  {
    SCOPE_KIDS_WRITER_LOCK
115 116 117 118
    for (Scope* s : kids_) {
      delete s;
      s = nullptr;
    }
119 120
    kids_.clear();
  }
Y
Yu Yang 已提交
121
}
Y
Yi Wang 已提交
122

M
minqiyang 已提交
123
bool Scope::HasKid(const Scope* scope) const {
M
minqiyang 已提交
124
  SCOPE_KIDS_READER_LOCK
M
minqiyang 已提交
125 126 127 128
  auto it = std::find(this->kids_.begin(), this->kids_.end(), scope);
  return it != this->kids_.end();
}

Y
Yang Yu 已提交
129 130
std::vector<std::string> Scope::LocalVarNames() const {
  std::vector<std::string> known_vars;
M
minqiyang 已提交
131 132 133 134 135 136
  {
    SCOPE_VARS_READER_LOCK
    known_vars.reserve(this->vars_.size());
    for (auto& p : vars_) {
      known_vars.emplace_back(p.first);
    }
137 138 139 140
  }
  return known_vars;
}

141 142 143 144 145 146 147 148 149 150 151 152
std::vector<Variable*> Scope::LocalVars() {
  std::vector<Variable*> known_vars;
  {
    SCOPE_VARS_READER_LOCK
    known_vars.reserve(this->vars_.size());
    for (auto& p : vars_) {
      known_vars.emplace_back(p.second.get());
    }
  }
  return known_vars;
}

153
void Scope::DeleteScope(Scope* scope) const {
154 155 156
  {
    SCOPE_KIDS_WRITER_LOCK
    auto it = std::find(this->kids_.begin(), this->kids_.end(), scope);
157 158
    PADDLE_ENFORCE_NE(it,
                      this->kids_.end(),
159 160 161 162 163 164 165
                      platform::errors::NotFound(
                          "%p is not found in %p as kid scope", scope, this));
    this->kids_.erase(it);
    // When making memory benchmark on Fluid, we have to delete scope sync.
    if (FLAGS_benchmark || FLAGS_eager_delete_scope) {
      delete scope;
    } else {
166
      phi::Async([scope] { delete scope; });
167 168
    }
  }
Y
Yu Yang 已提交
169 170
}

Y
Yancey1989 已提交
171
void Scope::EraseVars(const std::vector<std::string>& var_names) {
172 173 174 175 176 177 178 179 180 181 182
  {
    std::set<std::string> var_set(var_names.begin(), var_names.end());
    SCOPE_VARS_WRITER_LOCK
    for (auto it = vars_.begin(); it != vars_.end();) {
      if (var_set.find(it->first) != var_set.end()) {
        it = vars_.erase(it);
      } else {
        ++it;
      }
    }
  }
183 184
}

Y
Yu Yang 已提交
185 186
void Scope::Rename(const std::string& origin_name,
                   const std::string& new_name) const {
187 188 189 190
  {
    SCOPE_VARS_WRITER_LOCK
    RenameInternal(origin_name, new_name);
  }
T
tensor-tang 已提交
191 192 193 194
}

std::string Scope::Rename(const std::string& origin_name) const {
  auto new_name = string::Sprintf("%p.%d", this, vars_.size());
195 196 197 198
  {
    SCOPE_VARS_WRITER_LOCK
    RenameInternal(origin_name, new_name);
  }
T
tensor-tang 已提交
199 200 201 202 203 204 205
  return new_name;
}

Variable* Scope::VarInternal(const std::string& name) {
  auto* v = FindVarLocally(name);
  if (v != nullptr) return v;
  v = new Variable();
S
sneaxiy 已提交
206
  vars_.emplace(name, std::unique_ptr<Variable>(v));
M
minqiyang 已提交
207
  VLOG(3) << "Create variable " << name;
T
tensor-tang 已提交
208 209 210 211 212 213 214 215 216 217 218 219
  return v;
}

const Scope* Scope::FindScopeInternal(const Variable* var) const {
  for (auto& kv : vars_) {
    if (kv.second.get() == var) {
      return this;
    }
  }
  return (parent_ == nullptr) ? nullptr : parent_->FindScope(var);
}

220 221 222 223 224 225 226
const Scope* Scope::FindScopeInternal(const std::string& name) const {
  if (vars_.find(name) != vars_.end()) {
    return this;
  }
  return (parent_ == nullptr) ? nullptr : parent_->FindScope(name);
}

T
tensor-tang 已提交
227 228
void Scope::RenameInternal(const std::string& origin_name,
                           const std::string& new_name) const {
Y
Yu Yang 已提交
229
  auto origin_it = vars_.find(origin_name);
230
  PADDLE_ENFORCE_NE(
231 232
      origin_it,
      vars_.end(),
233 234 235
      platform::errors::NotFound(
          "Original variable with name %s is not found in the scope.",
          origin_name));
Y
Yu Yang 已提交
236
  auto new_it = vars_.find(new_name);
237
  PADDLE_ENFORCE_EQ(
238 239
      new_it,
      vars_.end(),
240 241
      platform::errors::AlreadyExists(
          "The variable with name %s already exists in the scope.", new_name));
242
  vars_[new_name].reset(origin_it->second.release());
Y
Yu Yang 已提交
243 244 245
  vars_.erase(origin_it);
}

T
tensor-tang 已提交
246 247 248 249 250 251
Variable* Scope::FindVarInternal(const std::string& name) const {
  auto var = FindVarLocally(name);
  if (var != nullptr) {
    return var;
  }
  return (parent_ == nullptr) ? nullptr : parent_->FindVar(name);
Y
Yu Yang 已提交
252
}
253

254 255
Variable* Scope::FindVarLocally(const std::string& name) const {
  auto it = vars_.find(name);
256 257 258
  if (it != vars_.end()) {
    return it->second.get();
  }
259 260
  return nullptr;
}
Y
Yu Yang 已提交
261

262 263 264 265 266 267 268 269 270 271 272
void Scope::EraseVarsExcept(const std::unordered_set<Variable*>& vars) {
  SCOPE_VARS_WRITER_LOCK
  for (auto iter = vars_.begin(); iter != vars_.end();) {
    if (vars.count(iter->second.get()) != 0) {
      ++iter;
    } else {
      vars_.erase(iter++);
    }
  }
}

273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
std::string GenScopeTreeDebugInfo(Scope* root) {
  std::stringstream os;

  if (!root) return "";

  // level traversal
  std::queue<Scope*> queue;
  queue.push(root);

  std::vector<Scope*> scopes;

  while (!queue.empty()) {
    auto* end = queue.back();
    Scope* q = nullptr;
    while (q != end) {
      q = queue.front();
      queue.pop();
      os << q << " ";
      scopes.push_back(q);

      for (auto* c : q->kids()) {
        queue.push(c);
      }
    }
    // end of a level
    os << "\n------------------------------------------\n";
  }

  os << "\nDetails:\n\n";

  for (Scope* q : scopes) {
    os << "====\n";
    os << q << ":\n";
    for (auto& var : q->LocalVarNames()) {
      os << "  - " << var << "\n";
    }
  }

  return os.str();
}

Y
Yi Wang 已提交
314 315
}  // namespace framework
}  // namespace paddle