yanghaoran
e1d3e6edac
take down testcases that are passing all the time
2022-05-28 09:53:29 +08:00
Margaret_wangrui
c3b61dca21
[ME] The built-in function( print ) needs to be executed using an operator in some cases.
...
Please enter the commit message for your changes. Lines starting
2022-04-09 14:15:35 +08:00
Margaret_wangrui
7b73c6408b
[ME][Auto_monad]The load node in print operator inputs should not be replaced.
2022-02-21 20:34:26 +08:00
i-robot
bbdacd41f4
!20585 add security isolate for save_graphs
...
Merge pull request !20585 from huanghui/add-security-isolate-for-DumpIR
2021-09-15 01:25:46 +00:00
huanghui
ba66c0d491
add security isolate for save_graphs
2021-09-14 10:24:12 +08:00
fangzehua
4ccc635a07
add print security
2021-09-13 17:45:36 +08:00
i-robot
a0ac0e2feb
!22505 Change ir save path
...
Merge pull request !22505 from huanghui/change-ir-save-path
2021-08-28 12:11:26 +00:00
huanghui
88601da733
change ir save path to: save_graphs_path/ when alone; save_graphs_path/rank_ when distribute
2021-08-28 14:11:23 +08:00
yanghaoran
a0ff742442
prune less effective Ascend testcases to level1
2021-08-27 19:59:59 +08:00
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
2021-08-23 01:46:38 +08:00
djc
4e6f7dc97d
[feat] [assistant] [I3T96X] add new Dataset operator LibriSpeechDataset
2021-08-22 13:39:37 +08:00
huanghui
1630dcb0c8
add subdirectory for log and ir_dump
2021-08-19 14:11:16 +08:00
huangbingjian
88059b76ee
handle replace in updatestate_eliminate
2021-08-13 15:54:48 +08:00
yanghaoran
64d34104e5
move useless testcases from level0 to level1
2021-08-11 23:11:34 +08:00
He Wei
121a6a28d9
[auto-monad] Enforce order of exection for Loads user nodes in frontend
2021-04-27 12:48:52 +08:00
He Wei
d22e521a7f
[Control-flow] Fix a bug in parameter Assign eliminating
2021-03-22 21:51:53 +08:00
mindspore-ci-bot
afcbf45019
!12506 Add testcase related to auto-monad
...
From: @huangbingjian
Reviewed-by:
Signed-off-by:
2021-02-23 14:51:47 +08:00
He Wei
3c44e731a2
[auto-monad] Revert "Change backend execution order sorting policy"
...
This reverts commit 141c39b71c .
2021-02-22 20:26:45 +08:00
huangbingjian
a158b2f2fa
add testcase related to auto-monad
2021-02-22 20:16:08 +08:00
He Wei
141c39b71c
[auto-monad] Change backend execution order sorting policy
...
Change backend execution order sorting policy from DFS to BFS
in KernelGraph::SetExecOrderByDefault().
2021-02-09 17:08:02 +08:00
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.
2021-02-08 16:49:29 +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