kswang
abf295560c
add partial internal parameters
4 years ago
ZPaC
12f95b51f4
Add server code part2
4 years ago
liangzelang
269a30a820
delete unused code
4 years ago
He Wei
121a6a28d9
[auto-monad] Enforce order of exection for Loads user nodes in frontend
4 years ago
Margaret_wangrui
b39b3d7dd5
fix bot warnings
4 years ago
mindspore-ci-bot
b7554d574f
!15590 fix addr is null
From: @jjfeing
Reviewed-by: @zhoufeng54,@kisnwang
Signed-off-by: @kisnwang
4 years ago
Margaret_wangrui
1353b7451d
fix pclint warnings
4 years ago
jjfeing
77e9b0c913
fix addr is null
4 years ago
kswang
1dce6b9448
load input for graph executable
4 years ago
limingqi107
22972a89a7
support the output address of graph reapply
5 years ago
kswang
2a48b2ecb8
reconstruct session code
4 years ago
yangwei
fe5ef68c5b
Add abstract for maketuple
5 years ago
mindspore-ci-bot
2a2cbbfa4c
!14484 extract session load inputs
From: @kisnwang
Reviewed-by: @zhoufeng54,@jjfeing
Signed-off-by: @jjfeing
5 years ago
kswang
97a97e02db
extract load input
5 years ago
lizhenyu
c57a9edb9d
add graph compiler
5 years ago
kswang
54ef8520ab
format some executor func name
5 years ago
chenfei
cbb243a207
print graph output
5 years ago
Islam Amin
0fa5a443be
fix dataset_sink_mode=True issue with GPU
5 years ago
huanghui
a2ba47e18a
1. Add unique id for .dat and .dot file to avoid covering
2. Dump the end graph in gpu session and cu session
5 years ago
mindspore-ci-bot
7e8f58f79d
!13013 fix switch layer
From: @youui
Reviewed-by:
Signed-off-by:
5 years ago
Amir Lashkari
d83e7c41c8
Fixed log issue
Fixed cpplint
5 years ago
yangwei
ef6507a44d
fix switch_layer
5 years ago
caifubi
171b468bb3
PyNative AllReduce Bucket
5 years ago
mindspore-ci-bot
7296659f14
!12764 [Ascend][GPU] Add execution order dumping of final execution graphs
From: @islam_amin
Reviewed-by: @john_tzanakakis,@yelihua
Signed-off-by: @yelihua
5 years ago
Islam Amin
187222d461
Adding dump of order of execution for final exec graphs on ascend and gpu
5 years ago
yangwei
add322b1c3
fix switchlayer
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
3d098708b9
Ignore useless output when generate stub tensor in BuildOpsInGraph
5 years ago
tanghuikang
6f2cd92aba
Support RunOpsInGraph on CPU&GPU in pynative mode
5 years ago
weiyang
4029b411c9
for switch layer
5 years ago
chujinjin
9104ffaafa
fix inceptionv3 kernel build error in pynative
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
lvliang
f4c3f29ca5
fix-bug-of-multiple-tuple-output-by-connect-cnode-to-return
5 years ago
simson
759e43957e
fix memory leak
5 years ago
mindspore-ci-bot
a98ae4129a
!10236 Support if_by_if case by labelgoto with labelswitch
From: @liangzelang
Reviewed-by:
Signed-off-by:
5 years ago
liangzelang
2ab20c1b6e
fix if_by_if bug by replace labelgoto with labelswitch
5 years ago
lvliang
1490947ff0
adjust-the-location-of-cleaning-unuseless-memory-in-value-node
5 years ago
jjfeing
1984cf8e20
unify mindir
5 years ago
lizhenyu
e3f7ae61db
add ps cache manager
5 years ago
mindspore-ci-bot
afa931ae79
!9308 Clean useless tensor after run pynative bprop graph
From: @HulkTang
Reviewed-by:
Signed-off-by:
5 years ago
xiaoyisd
0cf09f4b8e
ifdef __APPLE -> #if defined(__APPLE__)
5 years ago
tanghuikang
82450afa9e
Optimize memory using in pynative mode
5 years ago
xiaoyisd
424999267a
mac build
5 years ago
mindspore-ci-bot
d38f8205dc
!8987 support getnext in pynative mode
From: @chujinjin
Reviewed-by:
Signed-off-by:
5 years ago
lvliang
8984cc9c03
pynative-support-dynamic-op-run-in-gpu
5 years ago
chujinjin
af031410bb
support getnext in pynative
5 years ago
caifubi
d44dd4f786
Move BuildOp into RunOp
5 years ago
HulkTang
c36b477568
Run ops one by one in pynative bp graph
5 years ago
mindspore-ci-bot
d1322b62b1
!8911 add control flow error of dynamic shape
From: @hwjiaorui
Reviewed-by: @jjfeing,@kisnwang
Signed-off-by: @kisnwang
5 years ago
hwjiaorui
aa3e94bbe8
multi graph and control flow
asyn dynamic shape
format
control flow error
format
5 years ago