Commit Graph

18410 Commits

Author SHA1 Message Date
mindspore-ci-bot d58bd65da7 !12252 fix links in release.md to be accessbile by community users
From: @nicholas_yhr
Reviewed-by: @gemini524,@zhoufeng54,@chujinjin
Signed-off-by: @zhoufeng54
2021-02-08 10:32:20 +08:00
mindspore-ci-bot 2380a41e0d !12180 updates release notes for MakeRefKey interface
From: @liuyang_655
Reviewed-by: 
Signed-off-by:
2021-02-08 10:27:11 +08:00
mindspore-ci-bot a063d7633d !12241 [auto-monad] Support side-effects by auto-monad
From: @hwhewei
Reviewed-by: @zhunaipan,@zh_qh
Signed-off-by: @zh_qh
2021-02-08 10:25:57 +08:00
mindspore-ci-bot e6dcb0c31d !12239 [MD] fix bugs of execute & update doc description in minddata
From: @luoyang42
Reviewed-by: @liucunwei
Signed-off-by: @liucunwei
2021-02-08 10:15:08 +08:00
mindspore-ci-bot b83478201f !12221 GPU AbsGrad calculat error while input is 0.0
From: @caojian05
Reviewed-by: @kisnwang,@wuxuejian
Signed-off-by: @wuxuejian
2021-02-08 10:14:21 +08:00
yanghaoran 78f9a845cc fix links in release.md 2021-02-08 09:33:45 +08:00
mindspore-ci-bot 61ab50915f !11959 Add BCEWithLogitsLoss op for Ascend.
From: @liu_xiao_93
Reviewed-by: 
Signed-off-by:
2021-02-08 09:05:31 +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
mindspore-ci-bot f0a9cb7c20 !12121 Add CTPN network
From: @qujianwei
Reviewed-by: 
Signed-off-by:
2021-02-07 22:56:54 +08:00
luoyang cd86788cf3 fix bugs of execute & update doc description in minddata 2021-02-07 22:52:52 +08:00
mindspore-ci-bot 3a4d575844 !12237 Fix api comments of ReduceMean.
From: @zhang_yi2020
Reviewed-by: @gemini524,@liangchenghui,@ljl0711
Signed-off-by: @liangchenghui
2021-02-07 20:43:03 +08:00
mindspore-ci-bot dc47263082 !12215 sync akg master 94cb709
From: @xixixian
Reviewed-by: @anyrenwei,@gaoxiong1
Signed-off-by: @gaoxiong1
2021-02-07 20:39:47 +08:00
mindspore-ci-bot 0e83566f1f !11611 update the register info of L2Loss.
From: @wangshuide2020
Reviewed-by: 
Signed-off-by:
2021-02-07 19:55:46 +08:00
mindspore-ci-bot 228a64de0f !11390 convert part of prim attr from str to int
From: @wangnan39
Reviewed-by: @kingxian
Signed-off-by:
2021-02-07 19:15:11 +08:00
mindspore-ci-bot 7f1a9508f8 !12045 [MS][RDR] change saving filename in RDR module
From: @louie5
Reviewed-by: 
Signed-off-by:
2021-02-07 19:03:11 +08:00
mindspore-ci-bot fcd0eb0c5d !12208 fix typos in README for maskrcnn and fastercnn
From: @gengdongjie
Reviewed-by: @liangchenghui,@oacjiewen
Signed-off-by: @oacjiewen
2021-02-07 17:44:10 +08:00
mindspore-ci-bot 56973dfb91 !11429 retinanet PR
From: @yufan1012
Reviewed-by: 
Signed-off-by:
2021-02-07 17:40:20 +08:00
zhangyi a85d333241 fix indent of docstring for ReduceMean. 2021-02-07 17:30:13 +08:00
mindspore-ci-bot 452b393edb !12186 Added Fp16 relu, sigmoid and log grad compute units
From: @louisncu
Reviewed-by: @zhang_xue_tong
Signed-off-by:
2021-02-07 17:19:28 +08:00
mindspore-ci-bot 0133a00049 !12218 【MD】【BUG】fix grpc build error for MD
From: @xulei2020
Reviewed-by: @pandoublefeng,@heleiwang
Signed-off-by: @pandoublefeng
2021-02-07 17:09:29 +08:00
wangnan39@huawei.com 2f79905f60 convert attr from str to enum 2021-02-07 17:03:17 +08:00
mindspore-ci-bot c2b5490375 !12216 modify transformer st
From: @yuchaojie
Reviewed-by: @xsmq,@linqingke
Signed-off-by: @linqingke
2021-02-07 17:01:36 +08:00
mindspore-ci-bot 028dcf85ae !12217 [MS][LITE][GPU]arithmetic broadcast support n>1
From: @chenzupeng
Reviewed-by: @ddwsky,@zhanghaibo5
Signed-off-by: @ddwsky,@zhanghaibo5
2021-02-07 16:52:56 +08:00
mindspore-ci-bot 951b3e0981 !11704 【GraphKernel】Refactor GraphKernelExpander (1st submission)
From: @dayschan
Reviewed-by: @gaoxiong1,@ckey_dou
Signed-off-by: @ckey_dou
2021-02-07 16:48:10 +08:00
mindspore-ci-bot a3057441d6 !12165 add input data type check for ps cache mode
From: @zyli2020
Reviewed-by: @cristoval
Signed-off-by:
2021-02-07 16:43:24 +08:00
CaoJian 811de4f5d4 GPU AbsGrad calculat error while input is 0.0 2021-02-07 16:34:57 +08:00
mindspore-ci-bot d14ac1c964 !12210 add softmax and reducer coder
From: @zhujingxuan
Reviewed-by: 
Signed-off-by:
2021-02-07 16:34:27 +08:00
mindspore-ci-bot 027152b6ac !12005 [MS][LITE] add tf parsers
From: @cjh9368
Reviewed-by: 
Signed-off-by:
2021-02-07 15:49:22 +08:00
mindspore-ci-bot b4fef2a454 !11979 [MSLITE] Add implementation for IntReduceSum and fix bug of tanh.
From: @wang_shaocong
Reviewed-by: 
Signed-off-by:
2021-02-07 15:49:20 +08:00
louei5 72e567d06b change saving filename in RDR module 2021-02-07 15:31:27 +08:00
wangshuide2020 2897cd3893 update the register info of L2Loss. 2021-02-07 15:17:26 +08:00
xulei2020 9bbe8411e0 fix grpc build error for MD 2021-02-07 15:17:22 +08:00
liujiahan 8761d2c874 add relu, sigmoid and log grad computing units.
modified file format

modified file format

change the header file in activation_fp16_grad.h

change the year of Copyright info and added LiteKernelCreator.
2021-02-07 15:15:51 +08:00
zhujingxuan 68ebf04d05 add softmax and reducer coder 2021-02-07 14:49:20 +08:00
xiexingxian 4f60cc12af akg master 94cb709 2021-02-07 14:46:50 +08:00
chenzupeng d109577222 arithmetic broadcast support n>1 2021-02-07 14:45:55 +08:00
yuchaojie 4050fc5b10 modify transformer st 2021-02-07 14:43:16 +08:00
gengdongjie 4282a43732 fix typos in maskrcnn and fastercnn 2021-02-07 14:38:02 +08:00
mindspore-ci-bot ab0010acfc !12178 [MSLITE]add example/test dir for micro
From: @wangchengyuan
Reviewed-by: 
Signed-off-by:
2021-02-07 14:18:13 +08:00
mindspore-ci-bot 20c61ad83e !12117 [MSLITE] MAX_SHAPE_SIZE COMM_SHAPE_SIZE
From: @ling_qiao_min
Reviewed-by: 
Signed-off-by:
2021-02-07 14:03:59 +08:00
mindspore-ci-bot 05f52c538c !12204 fix mciro copyright && namespace
From: @zoloft
Reviewed-by: @wangchengyuan,@zhang_xue_tong
Signed-off-by: @wangchengyuan
2021-02-07 14:01:43 +08:00
lizhenyu 6649153c49 add input data type check for ps cache mode 2021-02-07 12:35:04 +08:00
qujianwei ae27c383fa init for ctpn
add for connect table

fix some bug

fix pylint

fix for create dataset

fix dataset bug

fix for create dataset problem

add for svt icdar2015 convert script

fix for ctpn problem

fix for vgg16
2021-02-07 11:27:38 +08:00
mindspore-ci-bot fd18382853 !11759 [Numpy-Native] Add new numpy-native interfaces and graph support of some ops to mindspore.numpy
From: @yanglf1121
Reviewed-by: @liangchenghui
Signed-off-by:
2021-02-07 11:12:41 +08:00
ling 873ce2a31b [MSLITE] MAX_SHAPE_SIZE COMM_SHAPE_SIZE 2021-02-07 10:54:04 +08:00
mindspore-ci-bot 79df1a6e92 !12061 added http client
From: @anancds
Reviewed-by: 
Signed-off-by:
2021-02-07 10:48:39 +08:00
dayschan e0e6c39eae Refactor GraphKernelExpander (1st submission)
Decoupled from the front-end interfaces.
1. Removed the call to "Renormalize".
   Completed the infer-format in model_builder.
   Only used the device shape and device format to
   infer an abstract shape without considering padding.
2. Removed the call to python's Primitive interfaces.
   The "Renormalize" relies on the PrimitivePy, so they can be
   removed together. After that, the functions "ConstAttrToInput",
   "DeleteAttrInInput" and related can be removed.
3. Reuse the AkgKernelJsonGenerator in GraphKernelExpander.
   1) set the attribute "extract_opinfo_from_anf" to true, so that
   the generator can handle the basic operator with anf info.
   2) added a function "extract_expand_info" in expander.py
   to convert the json into a more friendly format. The attrs
   was converted to a dict instead of a list.
4. Scalars only support DefaultFormat.
   Removed the argument "format" from graph_builder.value
5. Moved the expander op list from graph_kernel_helper.cc to graph_kernel_expander.cc
2021-02-07 10:48:23 +08:00
mindspore-ci-bot 219774d904 !12172 [MS][Lite]Image segmentation update 1.0.1 to 1.1.0 aar
From: @sishuikang
Reviewed-by: @zhanghaibo5,@zhang_xue_tong
Signed-off-by: @zhanghaibo5
2021-02-07 10:45:39 +08:00
z00512249 1feca36a45 fix mciro copyright && namespace 2021-02-07 10:31:18 +08:00
wang_shaocong cd07228ce9 [MSLITE] Add implementation for intReduceSum and fix bug of tanh 2021-02-07 10:26:03 +08:00