ms_yan
36a8886ca2
Revert "[feat] [assistant] [I3T96T] add new Dataset operator CMUARCTICDataset"
This reverts commit b077aa1cab .
Revert "[feat] [assistant] [I3T96X] add new Dataset operator LibriSpeechDataset"
This reverts commit 4e6f7dc97d .
delete pass_registry_test.cc
comment hiai_nlu_model_multi.pb related line
4 years ago
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
zjun
35aab6144d
Fix pynative memory leak
Signed-off-by: zjun <zhangjun0@huawei.com>
4 years ago
kswang
4a456ca954
clean code
4 years ago
lizhenyu
209dc5f584
fix codedex warnings
4 years ago
tanghuikang
21c4bf1f27
Print ascend warning and error message using ErrorManager
4 years ago
lizhenyu
5535e80414
[bugfix] custom bprop got unexpected input
4 years ago
qingshanxiaozi
4aaac53e21
adapt for multi-frontend cj
Signed-off-by: qingshanxiaozi <qingshanxiaozi@163.com>
4 years ago
lizhenyu
f3e5d67512
fix core dump when destroy device context in PyNative mode
4 years ago
TinaMengtingZhang
2fa05b66a1
change device_id to rank_id in dump path
4 years ago
limingqi107
5b63f8f2bc
fix the coredump of actor runtime singleton instance deconstruction
4 years ago
zhoufeng
0787efad03
move conv transpose pass from common to unify mindir, for pynative
Signed-off-by: zhoufeng <zhoufeng54@huawei.com>
4 years ago
tanghuikang
e81b674677
Code clean
4 years ago
lizhenyu
b3fbdf9d65
unify runtime for PyNative distributed mode
4 years ago
lizhenyu
ef03c0e826
support transform to DAG dynamicly
5 years ago
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
5 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