mindspore/tests/ut/python/ir
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 initial version 2020-03-27 22:54:54 +08:00
test_dtype.py Fix bug of mindspore dtype equal 2020-07-16 09:06:55 +08:00
test_row_tensor.py [auto-monad] Support side-effects by auto-monad 2021-02-08 09:01:15 +08:00
test_sparse_tensor.py [auto-monad] Support side-effects by auto-monad 2021-02-08 09:01:15 +08:00
test_tensor.py reverse fix shape=0 2020-11-09 15:06:37 +08:00
test_tensor_py.py modify Tensor 2021-01-21 17:46:34 +08:00