djc
b077aa1cab
[feat] [assistant] [I3T96T] add new Dataset operator CMUARCTICDataset
4 years ago
djc
4e6f7dc97d
[feat] [assistant] [I3T96X] add new Dataset operator LibriSpeechDataset
4 years ago
simson
5b34859541
modify the limit of axis of reduce ops
4 years ago
wilfChen
126bfff431
fix graph execution acquire gil.
4 years ago
limingqi107
8c690e3d18
unified runtime codedex fixed
4 years ago
gaoyong10
03021379d4
Fix ocean and sponge net.
4 years ago
kswang
09aa4d77fa
fix gpu ps hung up bug
4 years ago
l00591931
c7bc867ae4
Add CloneCNodeWithInfos for kernel graph
4 years ago
kswang
42155e7e5c
add updated parameter for graph
4 years ago
i-robot
b9d5f1ddab
!18304 code clean
Merge pull request !18304 from yuchaojie/code-clean2
4 years ago
yuchaojie
273f03db77
code clean
4 years ago
gaoyong10
3051ed82f9
Fix the no input actor control link in control flow.
4 years ago
i-robot
1cdaa12cfd
!18093 [Debugger] Add root graph id to sub graph's pb file
Merge pull request !18093 from TinaMengtingZhang/add_graph_id
4 years ago
TinaMengtingZhang
dd6884eb6f
add root graph id to pb file
4 years ago
limingqi107
7f634d12f0
actor runtime support GraphKrenel
4 years ago
kswang
9d5f754135
format codes
4 years ago
mindspore-ci-bot
802f8620dd
!16949 remove duplicate code
From: @kisnwang
Reviewed-by: @zhoufeng54,@yuchaojie
Signed-off-by: @yuchaojie
4 years ago
kswang
5e8cbedd9a
remove duplicate code
4 years ago
limingqi107
d405964aab
actor runtimie supports allreduce multi-stream
4 years ago
kswang
bc1f132d32
format some code
4 years ago
wilfChen
095c99d199
gpu inference
4 years ago
limingqi107
3029cb12ee
actor runtime support host and devcie
4 years ago
limingqi107
d8399e61e7
graph scheduler support multi graphs
4 years ago
liangzelang
269a30a820
delete unused code
4 years ago
mindspore-ci-bot
25ce6a104e
!15600 add the continue memory alloc of communication kernel for actor runtime
From: @limingqi107
Reviewed-by: @wilfchen,@cristoval
Signed-off-by: @cristoval
4 years ago
limingqi107
fba1dd8f2f
add the continue memory alloc of communication kernel for actor runtime
4 years ago
mindspore-ci-bot
dad61aab28
!15613 fix pclint warnings
From: @Margaret_wangrui
Reviewed-by: @zhoufeng54,@jjfeing
Signed-off-by: @jjfeing
4 years ago
Margaret_wangrui
1353b7451d
fix pclint warnings
4 years ago
lianliguang
5849706968
clean pclint warning
4 years ago
liangzelang
052a803c63
adapt to mem reuse
5 years ago
limingqi107
2f5b786daa
add dump info and fix process bug of actor runtime
5 years ago
mindspore-ci-bot
e2260a2f09
!14612 remove ControlDepend
From: @huangbingjian
Reviewed-by:
Signed-off-by:
5 years ago
huangbingjian
63a89925ff
remove ControlDepend and its use
5 years ago
liubuyu
40f34b0d90
3d graph reconstruct
5 years ago
kswang
97a97e02db
extract load input
5 years ago
kswang
dc543f3f1e
optimize execute order for commops
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
liangzelang
2ab20c1b6e
fix if_by_if bug by replace labelgoto with labelswitch
5 years ago
liubuyu
e3fa342d72
support 3d format
5 years ago
LianLiguang
687cd623f9
change feature map flag
5 years ago
chenfei
f154abdff8
change some redundant code
normalize codes of session
5 years ago
kswang
1ce4bebbf2
add subgraph dependency
5 years ago
kswang
d8e72af658
optimize find input need lock tensor
5 years ago
weiyang
74cf83a94b
fix control flow when subgraphs merging root graph
5 years ago
caifubi
d3b978147f
Ascend Dynamic Shape
5 years ago
wenchunjiang
f0db47aba8
remove ValueNode<KernelGraphPtr> after replace call to lagelgoto in
order to fix mutual reference in while
5 years ago
mindspore-ci-bot
bfe3b9d171
!5611 Find the set of points which forming loop
Merge pull request !5611 from Margaret_wangrui/get_loop
5 years ago
Margaret_wangrui
ee1b15f0cd
get the set of points which forming loop
5 years ago
wenchunjiang
4faa3304ef
1. replace weak_ptr to shared_ptr in child_graph_order_ an parent_graph_
2. erase kAttrChildGraph after finish using
5 years ago
wenchunjiang
bde9c0c6a9
1.fix bug of backend common pass covert_tuple_output_to_maketuple
2.attach original inputs to graph when replace call and switch to
labelgoto and labelswitch
5 years ago