Commit Graph

7 Commits

Author SHA1 Message Date
sabrinasun 542d715217 seperate constant from pb 2021-12-14 13:19:14 -05:00
TinaMengtingZhang dd6884eb6f add root graph id to pb file 2021-06-09 11:18:13 -04:00
Islam Amin 722eb2ec5a ascend graph dump trigger at data dump 2021-02-25 12:04:59 -05:00
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
lichen_101010 5b7d90d5df change debug_name tofull_name 2020-09-01 15:43:21 -04:00
Shida He cb4c74c7c0 Keep parameters of the previous step in TensorLoader
Add name truncating to support mindinsight loading parameter

Refactoring and address review comments
2020-07-07 17:16:36 -04:00
Shida He 4c056855e0 Implementation for mindspore debugger 2020-06-22 17:15:30 -04:00