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)
```
4 years ago
zhupuxu
e5ad77e3f7
delete attrs
Signed-off-by: zhupuxu <zhupuxu@huawei.com>
4 years ago
mindspore-ci-bot
3a4d575844
!12237 Fix api comments of ReduceMean.
From: @zhang_yi2020
Reviewed-by: @gemini524,@liangchenghui,@ljl0711
Signed-off-by: @liangchenghui
4 years ago
yepei6
c22081abb3
setitem debug
4 years ago
yepei6
10cf3f1524
add the data rank district to [0,8])
4 years ago
zhangyi
a85d333241
fix indent of docstring for ReduceMean.
4 years ago
wangshuide2020
2897cd3893
update the register info of L2Loss.
4 years ago
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:
4 years ago
mindspore-ci-bot
9b7a3c0ec2
!12173 fix the example of MultiFieldEmbeddingLookup operator.
From: @wangshuide2020
Reviewed-by: @liangchenghui,@wuxuejian
Signed-off-by: @liangchenghui
4 years ago
liu_xiao_93
fabc25538e
Add BCEWithLogitsLoss
4 years ago
mindspore-ci-bot
500bbf5da7
!12164 update graphengine
From: @shenwei41
Reviewed-by:
Signed-off-by:
4 years ago
jjfeing
502be04491
upgrade 0204
4 years ago
mindspore-ci-bot
4d9551e129
!12046 modify Gelu、FastGelu to GeLU and FastGeLU
From: @jinyaohui
Reviewed-by:
Signed-off-by:
4 years ago
TFBunny
ad3d737d29
Rewrite sequence_mask as a composite op
4 years ago
gongxiaoqing
2f71ccdee1
回退 'Pull Request !12038 : Frontend operator attribute modification'
4 years ago
jinyaohui
30a27b2adb
modify Gelu、FastGelu to GeLU and FastGeLU
4 years ago
mindspore-ci-bot
aebe263dce
!11895 unify mindir for different backend: the output num of optimizer ops, the backward of concat
From: @wangnan39
Reviewed-by:
Signed-off-by:
4 years ago
wangshuide2020
6030cc83bd
fix the example of MultiFieldEmbeddingLookup operator.
4 years ago
mindspore-ci-bot
1198ba63de
!12162 modify depend interface description
From: @huangbingjian
Reviewed-by: @ginfung,@zh_qh
Signed-off-by: @zh_qh
4 years ago
yanglf1121
01bfacddd6
add reduceany and reduceall to cpu
4 years ago
mindspore-ci-bot
c9aaa70b39
!12092 Change L2Norm, merge from r1.1 to master
From: @liangzhibo
Reviewed-by: @ginfung
Signed-off-by:
4 years ago
huangbingjian
e6059b834a
modify depend interface description
4 years ago
mindspore-ci-bot
150dad4e46
!12102 fix the validation of Softmax, Tanh, Elu operators.
From: @wangshuide2020
Reviewed-by: @liangchenghui
Signed-off-by: @liangchenghui
4 years ago
mindspore-ci-bot
aa7f82cf1b
!12038 Frontend operator attribute modification
From: @zhupuxu
Reviewed-by: @kingxian,@zhoufeng54
Signed-off-by: @kingxian
4 years ago
mindspore-ci-bot
ad5b033cc5
Change L2Norm, r1.1 to master
4 years ago
wangshuide2020
8da6d65222
fix the validation of Softmax, Tanh, Elu operators.
4 years ago
mindspore-ci-bot
b6183f718f
!12127 getitem support shape 0
From: @yepei6
Reviewed-by: @kisnwang,@kingxian
Signed-off-by: @kingxian
4 years ago
mindspore-ci-bot
74652eb942
!12044 modify pack to stack
From: @jinyaohui
Reviewed-by:
Signed-off-by:
4 years ago
mindspore-ci-bot
c6e8204915
!12084 fix Conv2DBackpropInputUnifyMindIR when it is a forward op in pynative
From: @yuchaojie
Reviewed-by: @kisnwang,@zhoufeng54
Signed-off-by: @zhoufeng54
4 years ago
jinyaohui
8022f9a6ed
modify pack to stack
4 years ago
wangnan39@huawei.com
cd9173fdfd
unify the output num of optimizer ops
4 years ago
mindspore-ci-bot
cc8092dc74
!12124 update supported platforms for gamma and poisson
From: @lihongkang1
Reviewed-by: @liangchenghui,@wuxuejian
Signed-off-by: @liangchenghui
4 years ago
yepei6
bf6f0e1932
add the support for empty list and tuple index contain shape '0'
4 years ago
mindspore-ci-bot
e09aaafdaf
!12010 Convert MakeRefKey to an internal interface
From: @liuyang_655
Reviewed-by: @kingxian,@zhunaipan
Signed-off-by: @kingxian
4 years ago
lihongkang
3796747871
update op supported platforms
4 years ago
yanglf1121
c5ea8223f5
Add new np interfaces and add graph support
5 years ago
mindspore-ci-bot
4ec646c20f
!12025 fix the example of Unique, SparseApplyProximalAdagrad, BoundingBoxEncode, SGD and Parameter.
From: @wangshuide2020
Reviewed-by: @liangchenghui,@wuxuejian
Signed-off-by: @liangchenghui
4 years ago
mindspore-ci-bot
a01b5026ac
!12079 Add bprop for GatherV2 and TensorAdd
From: @liangzhibo
Reviewed-by: @ginfung,@zh_qh
Signed-off-by: @zh_qh
4 years ago
yuchaojie
90a83db5f1
fix Conv2DBackpropInputUnifyMindIR when it is a forward op in pynative
4 years ago
mindspore-ci-bot
a99b3cd8ca
!12068 getitem with empty list
From: @yepei6
Reviewed-by: @kisnwang,@kingxian
Signed-off-by: @kingxian
4 years ago
mindspore-ci-bot
89e52592ad
!12063 setitem debug
From: @yepei6
Reviewed-by: @kisnwang,@kingxian
Signed-off-by: @kingxian
4 years ago
wangshuide2020
2e5b22adde
fix the example of Unique, SparseApplyProximalAdagrad, BoundingBoxEncode, SGD and Parameter.
4 years ago
l00591931
b9b9bd5654
Add bprop for TensorAdd and GatherV2
4 years ago
mindspore-ci-bot
db3fe6a461
!11928 move dynamic_shape_depends to backend
From: @zhupuxu
Reviewed-by:
Signed-off-by:
4 years ago
yepei6
10220b364a
add the logical switch for the index witch contain '0'
4 years ago
mindspore-ci-bot
e6221008a1
!12041 unify parameter output type
From: @zhangbuxue
Reviewed-by: @ginfung,@zh_qh
Signed-off-by: @zh_qh
4 years ago
mindspore-ci-bot
62d272f648
!12014 Fix GPU Print kernel
From: @TFbunny
Reviewed-by:
Signed-off-by:
4 years ago
yepei6
9fc721d1d2
setitem debug
4 years ago
buxue
81d26eaa34
unify parameter output type
4 years ago
l00591931
edbe3bfd3b
Add deprecated function
4 years ago