Commit Graph

18 Commits

Author SHA1 Message Date
Cathy Wong f4fd0300c6 [MD] Transform Unification - Phase 3: Update Smoke tests and remaining UTs 2022-05-31 16:14:32 -04:00
wanyiming b30217b161 fix_st 2022-03-15 16:48:02 +08:00
chenhaozhe 12fab451e8 fix test cases about models 2021-09-23 09:19:37 +08:00
chenhaozhe bea083c3ed update loss value in bert precision test case 2021-07-10 14:55:57 +08:00
xsmq a424c3124b adjust ascend st from level0 to level1 2021-05-14 13:07:24 +08:00
wenfangpei 66d28af79e adapt for layernorm in ascend 2021-04-08 18:11:59 +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
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
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
looop5 0161209e40 update submoudle akg, close graph kernel ascend ci testcases 2021-02-01 15:59:50 +08:00
shibeiji b2d98d2751 add tbe fusion operators LambApplyOptimizerAssign and LambApplyWeightAssign for lamb optimizer 2020-12-31 08:26:11 +08:00
Xiao Tianci 31fed1a2f6 change code to import APIs from mindspore.dataset rather than mindspore.dataset.engine 2020-12-24 17:30:02 +08:00
looop5 56fa56b173 add graph kernel testcases 2020-12-12 14:56:21 +08:00
yoonlee666 528072f45f move batch_size from bert_cfg_cfg to cfg 2020-09-16 09:46:38 +08:00
nhussain 92e99ff224 change map calls 2020-09-10 10:25:05 -04:00
lilei 71adabd944 modify_bug 2020-09-09 18:20:32 +08:00
yoonlee666 dfd85caa1b delete enable_fused_layernorm 2020-09-03 11:40:38 +08:00
yoonlee666 eb46d5cc19 split ci cases 2020-08-20 19:48:19 +08:00