mindspore/tests/vm_impl
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
..
__init__.py pylint waring clean 2020-05-13 11:30:27 +08:00
array_ops_vm_impl.py [auto-monad] Support side-effects by auto-monad 2021-02-08 09:01:15 +08:00
math_ops_vm_impl.py Change TensorAdd to Add, from r1.1 to master 2021-02-01 17:53:52 +08:00
nn_ops_vm_impl.py update Pool's attr kernel_size, pad_mode 2021-01-18 12:10:20 +08:00
vm_interface.py support interface 'all' and 'any' of tensor 2020-08-04 18:24:56 +08:00
vm_me.py [ME] change some format code. 2020-10-21 12:14:54 +08:00