Commit Graph

144 Commits

Author SHA1 Message Date
sl_wang 54890b88fc add comments for thor api 2021-06-10 14:08:40 +08:00
chenhaozhe 9da8534396 change _Loss to Loss 2021-06-03 15:26:59 +08:00
sl_wang a140e9ee36 clean codecheck for thor 2021-05-28 22:55:45 +08:00
mwang 88d191e0fe fix timeout 720s for resnet50_thor st 2021-05-18 14:31:04 +08:00
xsmq a424c3124b adjust ascend st from level0 to level1 2021-05-14 13:07:24 +08:00
He Wei 171cd83188 [test] Fix GRAPH_MODE not restored after PYNATIVE_MODE is set 2021-04-29 09:28:24 +08:00
dinglinhe 54fb72e2b3 Update normalization description at nn/layer/normalization.py 2021-04-20 12:30:37 +08:00
wenfangpei 66d28af79e adapt for layernorm in ascend 2021-04-08 18:11:59 +08:00
mwang fdb7bbf422 fix thor 2021-03-22 20:52:35 +08:00
xsmq f98109aa5a adjust performance of smoke bert_thor 2021-03-20 09:35:42 +08:00
mwang ed1e4f7ae0 adjust performance of bert thor 2021-03-17 19:18:22 +08:00
wangmin0104 f1f0ad41ff update tests/st/networks/models/resnet50/test_resnet50_imagenet.py. 2021-02-23 17:17:45 +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
mwang 172e918359 fix resnet thor smoke threshold 2021-02-19 16:02:03 +08:00
mindspore-ci-bot 1239a4a848 !12314 [auto-monad] Change backend execution order sorting policy
From: @hwhewei
Reviewed-by: @ginfung,@zh_qh
Signed-off-by: @zh_qh
2021-02-09 19:59:20 +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
mwang fbcb3061d8 fix smoke of resnet thor 2021-02-09 15:12:36 +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
mwang 0b312c2385 thor generalization code submit 2021-02-03 09:54:14 +08:00
mindspore-ci-bot e897eb4c41 !11915 Change TensorAdd to Add, merge from r1.1 to master
From: @liangzhibo
Reviewed-by: @ginfung,@zh_qh
Signed-off-by: @zh_qh
2021-02-02 09:16:08 +08:00
l00591931 9ec100d069 Change TensorAdd to Add, from r1.1 to master 2021-02-01 17:53:52 +08:00
looop5 0161209e40 update submoudle akg, close graph kernel ascend ci testcases 2021-02-01 15:59:50 +08:00
mindspore-ci-bot 9fa0499fa0 Change GatherV2 to Gather r1.1 to master 2021-01-30 14:13:47 +08:00
yuchaojie b51b3a6764 update Pool's attr kernel_size, pad_mode 2021-01-18 12:10:20 +08:00
lilei 9a45c4419c modify batch_normal 2021-01-13 20:59:46 +08:00
mindspore-ci-bot a531628dd5 !10325 modify MetaTensor and Tensor
From: @Somnus2020
Reviewed-by: @kingxian
Signed-off-by: @kingxian
2021-01-05 17:50:34 +08:00
lilei b858097ae4 modify MetaTensor and Tensor 2021-01-04 20:58:34 +08:00
shibeiji b2d98d2751 add tbe fusion operators LambApplyOptimizerAssign and LambApplyWeightAssign for lamb optimizer 2020-12-31 08:26:11 +08:00
wangmin0104 a5c16ba5c4 update tests/st/networks/models/resnet50/src/dataset.py. 2020-12-27 20:46:03 +08:00
mwang 59f7605987 adjust cost threshold for bert ci_smoke 2020-12-27 14:08:09 +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
yanglf1121 918679daa3 add tensor.ndim and rename tensor.size() to tensor.size 2020-12-18 17:15:42 +08:00
looop5 56fa56b173 add graph kernel testcases 2020-12-12 14:56:21 +08:00
wanyiming dad47cf2dd mod_comments 2020-11-19 16:03:40 +08:00
bai-yangfan b4e020d081 dataset_attr_name 2020-11-13 11:28:33 +08:00
chenzomi 44bf4c3e37 [ME] format code 2020-10-26 10:17:45 +08:00
chenzomi d471d32e87 [ME] change `check_integer` to format `check_positive_int` and `check_integeter` 2020-10-10 12:08:10 +08:00
chenzomi d4e8e94981 [ME] delete check_bool and replace with Validate.check_bool 2020-10-09 16:46:07 +08:00
Jiaqi 4e3e6006b6 modify init 2020-09-21 21:49:28 +08:00
wangmin 8012dbde54 add split allreduce testcase for bert_thor 2020-09-18 21:37:18 +08:00
mindspore-ci-bot 31ad1654a1 !6267 delete redundant codes in model zoo
Merge pull request !6267 from zhaoting/clean_warnings
2020-09-18 15:39:30 +08:00
mindspore-ci-bot 5a76bd717d !6185 fix api comments
Merge pull request !6185 from gziyan/fix_api_comments
2020-09-17 20:48:27 +08:00
zhaoting d421f49e60 delete redundant codes 2020-09-17 17:44:36 +08:00
Ziyan 8ea177e614 fix_api_problems 2020-09-17 11:32:13 +08:00
wangmin d9e84e468b remove rm -rf in testcase of bert_thor 2020-09-16 19:58:48 +08:00
mindspore-ci-bot 3671244ff8 !6233 move batch_size from bert_cfg_cfg to cfg
Merge pull request !6233 from yoonlee666/master
2020-09-16 14:51:06 +08:00
wangmin d96ecd2740 add st for bert_thor 2020-09-16 10:04:29 +08:00
yoonlee666 528072f45f move batch_size from bert_cfg_cfg to cfg 2020-09-16 09:46:38 +08:00
anzhengqi 8e1a2ef5ae stop send data to device after end of sequence 2020-09-15 15:02:37 +08:00