Commit Graph

163 Commits

Author SHA1 Message Date
sl_wang 4c302c0c5b bert script for thor generalization 2021-08-27 18:06:35 +08:00
sl_wang 222b6684e0 second order optimizer thor generalization 2021-08-25 15:38:01 +08:00
i-robot fd06532b59 !22243 add Ascend and CPU ST for enabling RDR
Merge pull request !22243 from yuximiao/yuximiao_rdr
2021-08-24 03:50:05 +00:00
liangyongxiong ee9d25bff9 add Ascend and CPU ST for enabling RDR 2021-08-22 11:23:19 +08:00
linqingke dd30c66985 Fix resnet st probabilistic failure in daily version. 2021-08-20 11:55:04 +08:00
huangbingjian 53b31abf12 remove useless depend 2021-08-05 20:21:24 +08:00
i-robot e23d51ee8d !20099 test failed
Merge pull request !20099 from mindspore_ding/run_0712
2021-07-27 07:27:49 +00:00
i-robot 3c0e0ac186 !20654 Fix test_resnet50_and_resnet50_thor bug.
Merge pull request !20654 from linqingke/bug_fix
2021-07-27 02:32:52 +00:00
dingpeifei aad315ebc5 test failed 2021-07-22 20:17:21 +08:00
chenhaozhe 6c488610a9 enable bert st 2021-07-22 09:59:12 +08:00
linqingke 47dcb074a8 Fix test_resnet50_and_resnet50_thor bug. 2021-07-21 16:05:03 +08:00
i-robot 4902090b65 !19260 optimize resnet50+imagenet2012 by prefetch_size and num_parallel_workers.
Merge pull request !19260 from anzhengqi/optimize_resnet_imagenet_network
2021-07-12 06:27:11 +00:00
chenhaozhe bea083c3ed update loss value in bert precision test case 2021-07-10 14:55:57 +08:00
anzhengqi cc1a0fa59c optimize resnet50 with imagenet2012 by prefetch_size and num_parallel_workers 2021-07-09 10:41:47 +08:00
i-robot b93907fdca !19246 Change Loss to LossBase
Merge pull request !19246 from chenhaozhe/change-loss-base
2021-07-05 01:24:23 +00:00
chenhaozhe 086a871975 Change Loss to LossBase 2021-07-02 16:41:02 +08:00
chenhaozhe 46cd33b8ce delete map_model which is not used anymore 2021-07-02 09:34:06 +08:00
zhouneng e37b8b6e23 modify CI performance indicators for test case 'test_deeplabv3_1p' 2021-06-28 11:36:10 +08:00
dingpeifei 0af87e888e upgrade_ascend_0617 2021-06-19 16:46:31 +08:00
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