scope.cc 2.1 KB
Newer Older
Y
Yi Wang 已提交
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/scope.h"
Y
Yang Yang 已提交
16

Q
qijun 已提交
17 18
#include <memory>  // for unique_ptr
#include <mutex>   // for call_once
Y
Yi Wang 已提交
19
#include "paddle/string/printf.h"
Y
Yi Wang 已提交
20 21 22 23 24

namespace paddle {
namespace framework {

Scope::~Scope() {
Y
Yu Yang 已提交
25
  DropKids();
Y
Yi Wang 已提交
26
  for (auto& kv : vars_) delete kv.second;
Y
Yi Wang 已提交
27 28
}

Y
Yu Yang 已提交
29
Scope& Scope::NewScope() const {
Y
Yi Wang 已提交
30 31 32 33 34
  kids_.push_back(new Scope(this));
  return *kids_.back();
}

Variable* Scope::NewVar(const std::string& name) {
Y
Yi Wang 已提交
35
  auto iter = vars_.find(name);
Y
Yi Wang 已提交
36
  if (iter != vars_.end()) {
Y
Yi Wang 已提交
37
    return iter->second;
Y
Yi Wang 已提交
38 39
  }
  Variable* v = new Variable();
Y
Yi Wang 已提交
40 41
  vars_[name] = v;
  v->name_ = &(vars_.find(name)->first);
Y
Yi Wang 已提交
42 43 44 45
  return v;
}

Variable* Scope::NewVar() {
Y
Yi Wang 已提交
46
  return NewVar(string::Sprintf("%p.%d", this, vars_.size()));
Y
Yi Wang 已提交
47 48 49 50
}

Variable* Scope::FindVar(const std::string& name) const {
  auto it = vars_.find(name);
Y
Yi Wang 已提交
51
  if (it != vars_.end()) return it->second;
Y
Yi Wang 已提交
52 53 54
  return (parent_ == nullptr) ? nullptr : parent_->FindVar(name);
}

Y
Yu Yang 已提交
55
const Scope* Scope::FindScope(const Variable* var) const {
Y
Yi Wang 已提交
56 57 58 59 60
  for (auto& kv : vars_) {
    if (kv.second == var) {
      return this;
    }
  }
Y
Yi Wang 已提交
61 62
  return (parent_ == nullptr) ? nullptr : parent_->FindScope(var);
}
Y
Yu Yang 已提交
63 64 65 66
void Scope::DropKids() {
  for (Scope* s : kids_) delete s;
  kids_.clear();
}
Y
Yi Wang 已提交
67

Q
qijun 已提交
68 69
std::once_flag feed_variable_flag;

70
framework::Scope* GetGlobalScope() {
Q
qijun 已提交
71
  static std::unique_ptr<framework::Scope> g_scope{nullptr};
Q
qijun 已提交
72
  std::call_once(feed_variable_flag, [&]() {
Q
qijun 已提交
73
    g_scope.reset(new framework::Scope());
Q
qijun 已提交
74 75 76
    g_scope->NewVar("feed_value");
    g_scope->NewVar("fetch_value");
  });
Q
qijun 已提交
77 78 79
  return g_scope.get();
}

Y
Yi Wang 已提交
80 81
}  // namespace framework
}  // namespace paddle