mindspore/model_zoo/research
He Wei 7d9a783993 [auto-monad] Support side-effects by auto-monad
The basic idea is: exploits data dependency to control the execution order
of side-effect operations, and keep the semantics of ANF unchanged.

The ControlDepend primitive is removed and there are two primitives added:

1. UpdateState:
```
  a = Assign(para, value)
```
became:
```
  a = Assign(para, value, u)
  u = UpdateState(u, a)
```

2. Load:
```
  x = Add(para, value)
```
became:
```
  p = Load(para, u)
  x = Add(p, value)
  u = UpdateState(u, p)
```
2021-02-08 09:01:15 +08:00
..
audio !11859 Added Wavenet model Scripts in CPU mode. 2021-02-02 10:21:36 +08:00
cv [auto-monad] Support side-effects by auto-monad 2021-02-08 09:01:15 +08:00
hpc Change GatherV2 to Gather r1.1 to master 2021-01-30 14:13:47 +08:00
nlp !11993 fix bug and update readme 2021-02-03 09:33:18 +08:00
recommend Change GatherV2 to Gather r1.1 to master 2021-01-30 14:13:47 +08:00
rl/ldp_linucb add ldp_linucb into model zoo 2020-12-25 11:47:33 +08:00
.gitkeep add directory in model_zoo 2020-07-14 11:44:19 +08:00