gaoyong10
7f275ed46a
Add build control flow actor.
4 years ago
yangjie159
a6622a70ba
enable refactor thread pool
4 years ago
kswang
bc1f132d32
format some code
4 years ago
mindspore-ci-bot
19908168bf
!16631 actor runtime code review modify
From: @limingqi107
Reviewed-by: @cristoval,@wilfchen
Signed-off-by: @wilfchen
4 years ago
mindspore-ci-bot
659fb1dbbb
!16515 Delete the invalid cache
From: @zhangzhaoju
Reviewed-by: @kisnwang,@hwhewei,@zh_qh
Signed-off-by: @zh_qh
4 years ago
mindspore-ci-bot
620ba53725
!16628 Unify runtime for PyNative distributed mode
From: @zyli2020
Reviewed-by: @limingqi107,@cristoval
Signed-off-by: @cristoval
4 years ago
zhangzhaoju
78d3c3318b
Delete the invalid cache
4 years ago
mindspore-ci-bot
75a1fe3579
!16608 code clean
From: @zhoufeng54
Reviewed-by: @kisnwang,@xu-yfei
Signed-off-by: @xu-yfei
4 years ago
lizhenyu
b3fbdf9d65
unify runtime for PyNative distributed mode
4 years ago
mindspore-ci-bot
789b63b501
!16153 pynative refactoring to optimizing performance
From: @chujinjin
Reviewed-by:
Signed-off-by:
4 years ago
limingqi107
c02e2a4801
actor runtime code review modify
4 years ago
limingqi107
b8799ce10f
fix bug of copy actor
4 years ago
lvliang
85ad1afdad
support_constant_as_last_node
5 years ago
zhoufeng
a449e684d9
code clean
Signed-off-by: zhoufeng <zhoufeng54@huawei.com>
4 years ago
lizhenyu
ef03c0e826
support transform to DAG dynamicly
5 years ago
limingqi107
c9f980c789
add output actor
5 years ago
limingqi107
d8399e61e7
graph scheduler support multi graphs
5 years ago
He Wei
98bab1eb87
Fix segment input/output caculation
5 years ago
limingqi107
fba1dd8f2f
add the continue memory alloc of communication kernel for actor runtime
5 years ago
gaoyong10
cb549e49dd
GraphCompiler and backend combine together.
5 years ago
dayschan
771e3f61f3
Clean GraphKernel's codes from frontend
1. set class GraphKernel as deprecated, and treat it as Cell
2. set class InplaceAssign as deprecated, suggested using Assign instead.
3. set op_selector as deprecated, removed the _selected_ops and _selected_grad_ops, replaced with real operations
4. removed the two passes of GraphKernel from frontend
5. removed the GraphKernel's codes from other modules
5 years ago
limingqi107
2f5b786daa
add dump info and fix process bug of actor runtime
5 years ago
huangbingjian
63a89925ff
remove ControlDepend and its use
5 years ago
limingqi107
730869f495
connect the process of actor runtime
5 years ago
l00591931
bbdb050fc7
Change switch to Switch
5 years ago
chuck
89eed7aa27
add compile option H to visible hidden interface
5 years ago
l00591931
cf7c5840e3
Change return
5 years ago
huangbingjian
1086132dc3
fix the core dump of MsRunGraph related to auto-monad; modify testcases
related to auto-monad, do not judge or assert the generated IR file on CI test cases.
5 years ago
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)
```
5 years ago
tanghuikang
6f2cd92aba
Support RunOpsInGraph on CPU&GPU in pynative mode
5 years ago
kswang
b9cfbed631
codex fix for executor
5 years ago
kswang
b6ee7f3fb2
only split dynamic shape node for ascend
5 years ago
mindspore-ci-bot
b7b7c591ee
!10620 fix memory leak by clear cache when a new step starts
From: @simson_wu
Reviewed-by: @chujinjin
Signed-off-by: @chujinjin
5 years ago
simson
759e43957e
fix memory leak
5 years ago
kswang
8a035778b6
add parallel split
5 years ago
kswang
841661b8aa
optimize multi graph controldepend input
5 years ago
kswang
367a31fa04
split sort visit switch partial first
5 years ago
mindspore-ci-bot
6ae9353168
!9831 Bugfix about the lifetime of TraceGuard
From: @dayschan
Reviewed-by: @irmo,@gaoxiong1,@ckey_dou
Signed-off-by: @ckey_dou
5 years ago
dayschan
fa80054f6d
Bugfix about the lifetime of TraceGuard
5 years ago
mindspore-ci-bot
f6a8d3a02a
!9638 improve code style according to the report from reviewbot
From: @bairongz
Reviewed-by: @ginfung,@zh_qh
Signed-off-by: @zh_qh
5 years ago
xiaoyisd
424999267a
mac build
5 years ago
Bairong
ede73d2a9a
improve code style according to the report from reviewbot
5 years ago
mindspore-ci-bot
ea191ed5da
!8463 Run ops one by one in pynative bp graph
From: @HulkTang
Reviewed-by:
Signed-off-by:
5 years ago
HulkTang
c36b477568
Run ops one by one in pynative bp graph
5 years ago
huanghui
bda74495f3
Add trace mangager around front opt
5 years ago
kswang
a3760b5b2d
fix remove front cast error
5 years ago
kswang
89ad244882
fix cpu codex and optimize controldepend
5 years ago
kswang
1ce4bebbf2
add subgraph dependency
5 years ago
kswang
f9ab9106de
fix ge compile error
5 years ago
kswang
b88e722e12
add graph partition
5 years ago