Commit Graph

16 Commits

Author SHA1 Message Date
yanghaoran e1d3e6edac take down testcases that are passing all the time 2022-05-28 09:53:29 +08:00
Zhang Qinghua d7762f1c8d Add bprop_return_sparse flag for sparse bprop primitive and remove context option: 'enable_sparse'. 2022-05-19 17:31:57 +08:00
yanghaoran a0ff742442 prune less effective Ascend testcases to level1 2021-08-27 19:59:59 +08:00
lby e551d1614d fix tbe op gather_v2 2021-08-23 10:20:56 +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
lby f09ca7f061 bug fix 2021-08-21 15:00:37 +08:00
lby e6cdf098db op tiling compute interface replace 2021-08-06 11:26:24 +08:00
yanghaoran 0364650eae Upgrade Ascend packages 28 Jul 21, with testcases removed 2021-07-31 18:55:55 +08:00
liubuyu a03452ff2c dynamic shape bug fix 2021-03-19 17:57:31 +08:00
shenwei41 c0f966ddef update graphengine 0311 2021-03-13 17:12:29 +08:00
mindspore-ci-bot 1d640e50c9 !12230 add dynamic st test
From: @hwjiaorui
Reviewed-by: 
Signed-off-by:
2021-02-23 11:01:18 +08:00
hwjiaorui 3981b6da0c add dynamic st test 2021-02-19 17:31:38 +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
jjfeing 502be04491 upgrade 0204 2021-02-06 10:51:43 +08:00
caifubi 4654197274 Add st for dynamic shape 2020-10-21 10:13:07 +08:00