scope.cc 2.2 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"
Q
qijun 已提交
16 17
#include <memory>  // for unique_ptr
#include <mutex>   // for call_once
Y
Yi Wang 已提交
18
#include "paddle/string/printf.h"
Y
Yi Wang 已提交
19 20 21 22 23

namespace paddle {
namespace framework {

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

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

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

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

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

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

Q
qijun 已提交
67 68 69 70 71 72 73 74 75 76 77 78 79 80
std::once_flag feed_variable_flag;

template <typename T, typename... Args>
std::unique_ptr<T> make_unique(Args&&... args) {
  return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
}

framework::Scope* GetScope() {
  static std::unique_ptr<framework::Scope> g_scope =
      make_unique<framework::Scope>();
  std::call_once(feed_variable_flag, [&]() { g_scope->NewVar("feed_value"); });
  return g_scope.get();
}

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