Commit Graph

24 Commits

Author SHA1 Message Date
caojiewen da60f433f1 removed the useless link of apply form 2021-03-24 00:55:46 +08:00
caojiewen cad462902a fixed the code spell errors. 2021-03-23 12:33:46 +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
l00591931 9ec100d069 Change TensorAdd to Add, from r1.1 to master 2021-02-01 17:53:52 +08:00
zhouneng 14765caa49 fix issue I2NU25 cnnctc word mistakes and issue I2W9WY centerface script not support dataset input 2021-01-29 14:51:41 +08:00
yuchaojie 212d7ebd0b replace DepthWiseConv with nn.Conv2D 2021-01-27 20:32:36 +08:00
mindspore-ci-bot 60feffad20 !11332 update Pooling's attr kernel_size, pad_mode
From: @yuchaojie
Reviewed-by: 
Signed-off-by:
2021-01-19 16:17:45 +08:00
yuchaojie b51b3a6764 update Pool's attr kernel_size, pad_mode 2021-01-18 12:10:20 +08:00
zhaoting 289f856955 fix README link 2021-01-15 11:22:42 +08:00
lvmingfu 27848587a3 modify code formats for master 2021-01-14 14:24:51 +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
yuzhenhua 6b858480c8 fix GPU device_id bug 2020-12-31 15:12:26 +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
yuzhenhua 807d990b83 add export for shufflenet, delete export for resnet50_quant, modify export file to support mindir 2020-12-15 18:05:42 +08:00
linqingke dbb1e51a8e fix readme error 2020-12-09 19:46:52 +08:00
mindspore-ci-bot fc9dc545da !9449 remove centerface useless parameters.
From: @linqingke
Reviewed-by: @oacjiewen,@c_34
Signed-off-by: @c_34
2020-12-08 20:58:40 +08:00
caozhou b1189cd118 compatible name 2020-12-01 22:08:59 +08:00
yuzhenhua ceaca1708c add export file for resnet50_quant and densenet121, fix centerface and transformer bug 2020-12-01 11:51:03 +08:00
linqingke f0b6e0563f remove centerface useless parameters. 2020-11-28 15:49:37 +08:00
yuzhenhua 6336825d7a modify export for centerface, fix yolov4 export bug 2020-11-20 14:45:03 +08:00
linqingke 122d52200e centerface interface change 2020-11-18 17:11:48 +08:00
linqingke 5e4bd67e32 remove useless config's parameters 2020-11-16 19:25:56 +08:00
linqingke 11ba97acde new add centerface network. 2020-11-09 11:31:12 +08:00