Commit Graph

13 Commits

Author SHA1 Message Date
lvyufeng 7de53ec3fe unify GRU and LSTM operaters and change LSTMCell to right version 2021-12-08 16:51:51 +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
yanghaoran 64d34104e5 move useless testcases from level0 to level1 2021-08-11 23:11:34 +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
cj 207e515fce LSTM API optimization 2020-09-16 22:50:49 +08:00
panyifeng 1a54785fe2 remove name arg from gradoperation 2020-08-26 11:16:57 +08:00
kingfo 09b437285b support mix precision in pynative 2020-07-22 17:12:36 +08:00
baihuawei 9c74e39b12 update cpu lstm 2020-06-09 17:53:56 +08:00
mindspore-ci-bot ddfa1edefe !1618 fix lstm
Merge pull request !1618 from baihuawei/cpulstm
2020-06-03 11:27:11 +08:00
baihuawei ea78e16e74 fix lstm 2020-06-02 20:09:50 +08:00
liuwenhao4 7b911886ec Fixing some tiny faults about Pylint in my code(ops) 2020-05-30 16:55:37 +08:00
baihuawei 9bcdf4cbdc add lstm 2020-05-28 09:09:56 +08:00