huanghui
74ca50e652
fix code warning && remove save_graphs use in st/ut
2021-12-24 14:45:37 +08:00
jiahongQian
b03c8d18d3
add more ut tests
2021-12-08 14:17:02 +08:00
q00596439
de36fdc169
add allreduce fusion size and unify the interface
2021-12-05 21:35:11 +08:00
Zhang Qinghua
a137fa1d0b
Optimize the Executors routines.
...
- Fix the key generating.
- Distinguish the executors.
2021-08-28 17:36:12 +08: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
Ziyan
bbf8ec82b9
expose allgather fusion interface to users
2020-12-27 17:44:45 +08:00
mindspore-ci-bot
fc79997de5
!5502 Mod SoftmaxCrossEntropyWithlogits
...
Merge pull request !5502 from wanyiming/mod_SoftmaxCrossEntropyWithlogits
2020-09-03 20:24:43 +08:00
wanyiming
0ec70068ae
mod_SoftmaxCrossEntropyWithLogits
2020-09-03 17:33:20 +08:00
yao_yf
07117e4dd4
mv ParallelMode to context
2020-08-28 19:13:55 +08:00
Yi Huaijie
394be43492
raise RuntimeError when set different mode after Initializer created
2020-08-24 14:08:09 +08:00
Yi Huaijie
89a4ebf8a1
parallel mode must be set before create an initializer
2020-08-20 19:20:46 +08:00
Yi Huaijie
14fe72f383
fix pylint warnings
2020-05-22 14:54:36 +08:00
jinyaohui
5a914994ba
clean pylint
2020-05-18 16:42:35 +08:00
jinyaohui
bcfaff97f9
clean pylint
2020-05-18 10:31:46 +08:00
lirongzhen
4ff418084c
enable/disable allreduce_fusion
2020-04-24 10:34:59 +08:00
c00425699
ab917a734d
fix bug for allreduce fusion and add resnet unit test
2020-04-02 18:55:04 +08:00
zhunaipan
930a1fb0a8
initial version
...
Signed-off-by: leonwanghui <leon.wanghui@huawei.com>
2020-03-27 22:54:54 +08:00