scope.md 1.6 KB
Newer Older
Y
Yu Yang 已提交
1
# What is a scope.
Q
qiaolongfei 已提交
2

Y
Yu Yang 已提交
3
## Overview
Q
qiaolongfei 已提交
4

Y
Yu Yang 已提交
5
预期使用场景。
Q
qiaolongfei 已提交
6

Y
Yu Yang 已提交
7 8 9
引出Scope的两个属性。
    1. Scope是Variable的Container
    2. Scope可以共享
Y
Yu Yang 已提交
10

Y
Yu Yang 已提交
11
## Scope 是一个Variable的Container
Y
Yu Yang 已提交
12

Y
Yu Yang 已提交
13
解释下为啥Scope是Variable的container。解释下面几个小点的原因。
Y
Yu Yang 已提交
14

Y
Yu Yang 已提交
15 16 17 18 19
    * 他只包含variable
    * 每一个variable也只属于一个Scope
    * 每一个Scope析构的时候,会同时析构variable
    * 只能通过Scope创建Vairable。
    * 只能通过Scope获取Variable。
Q
qiaolongfei 已提交
20

Y
Yu Yang 已提交
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
## Parent scope and local scope

Just like [scope](https://en.wikipedia.org/wiki/Scope_(computer_science)) in programming languages, `Scope` in the neural network also can be local.  There are two attributes about local scope.

*  We can create local variables in a local scope, and when that local scope are destroyed, all local variables should also be destroyed.
*  Variables in a parent scope can be retrieved from that parent scope's local scope, i.e., when user get a variable from a scope, it will search this variable in current scope firstly. If there is no such variable in local scope, `scope` will keep searching from its parent, until the variable is found or there is no parent.

```cpp
class Scope {
public:
  Scope(const std::shared_ptr<Scope>& scope): parent_(scope) {}

  Variable* Get(const std::string& name) const {
    Variable* var = GetVarLocally(name);
    if (var != nullptr) {
      return var;
    } else if (parent_ != nullptr) {
      return parent_->Get(name);
    } else {
      return nullptr;
    }
  }

private:
  std::shared_ptr<Scope> parent_ {nullptr};
};
```
Y
Yu Yang 已提交
48

Y
Yu Yang 已提交
49
# 接口实现
Y
Yu Yang 已提交
50

51
# 各个接口是啥意思,为啥这么设计