mindspore-ci-bot
adf934c567
!12152 Rewrite sequence_mask as a composite op
From: @TFbunny
Reviewed-by: @robingrosman
Signed-off-by:
5 years ago
mindspore-ci-bot
43eb2afd98
!12199 getitem by int add restrict data rank in [0,8]
From: @yepei6
Reviewed-by:
Signed-off-by:
5 years ago
mindspore-ci-bot
f1ec0bc1b8
!12242 Setitem debug
From: @yepei6
Reviewed-by: @kisnwang,@kingxian
Signed-off-by: @kingxian
5 years ago
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)
```
5 years ago
yepei6
c22081abb3
setitem debug
5 years ago
yepei6
10cf3f1524
add the data rank district to [0,8])
5 years ago
TFBunny
ad3d737d29
Rewrite sequence_mask as a composite op
5 years ago
mindspore-ci-bot
b6183f718f
!12127 getitem support shape 0
From: @yepei6
Reviewed-by: @kisnwang,@kingxian
Signed-off-by: @kingxian
5 years ago
mindspore-ci-bot
74652eb942
!12044 modify pack to stack
From: @jinyaohui
Reviewed-by:
Signed-off-by:
5 years ago
jinyaohui
8022f9a6ed
modify pack to stack
5 years ago
mindspore-ci-bot
cc8092dc74
!12124 update supported platforms for gamma and poisson
From: @lihongkang1
Reviewed-by: @liangchenghui,@wuxuejian
Signed-off-by: @liangchenghui
5 years ago
yepei6
bf6f0e1932
add the support for empty list and tuple index contain shape '0'
5 years ago
lihongkang
3796747871
update op supported platforms
5 years ago
mindspore-ci-bot
a99b3cd8ca
!12068 getitem with empty list
From: @yepei6
Reviewed-by: @kisnwang,@kingxian
Signed-off-by: @kingxian
5 years ago
yepei6
10220b364a
add the logical switch for the index witch contain '0'
5 years ago
yepei6
9fc721d1d2
setitem debug
5 years ago
yepei6
19859b74f5
getitem pack debug
5 years ago
l00591931
9ec100d069
Change TensorAdd to Add, from r1.1 to master
5 years ago
mindspore-ci-bot
21670a5777
!11808 [examples] correct failed examples.
From: @david-he91
Reviewed-by: @ljl0711,@liangchenghui
Signed-off-by: @liangchenghui
5 years ago
hedongdong
cf69e39d31
[examples] correct failed examples
5 years ago
mindspore-ci-bot
39d0629e1a
!11770 [Docs] update formulas for math and array operators
From: @david-he91
Reviewed-by: @liangchenghui,@ljl0711
Signed-off-by: @liangchenghui
5 years ago
hedongdong
8107cb8283
[Docs] update formulas for math and array operators
5 years ago
Payne
1dc4b419af
add tnesor type check (int)
5 years ago
mindspore-ci-bot
c2d7eb0f21
!11389 fix_moments_and_clipbyvalue_issue
From: @jiangzg001
Reviewed-by: @liangchenghui,@c_34
Signed-off-by: @liangchenghui,@c_34
5 years ago
mindspore-ci-bot
fbcfbed66d
!11316 master getitem debug
From: @yepei6
Reviewed-by: @zh_qh,@kingxian
Signed-off-by: @kingxian
5 years ago
jiangzhenguang
c3ab66afd9
fix_moments_clipbyvalue
5 years ago
buxue
15593dc98f
improve isinstance function in graph mode
5 years ago
yepei6
fde373a3b7
debug and add new supported scene
5 years ago
mindspore-ci-bot
bbdb5500e5
!11281 fix bugs of op NPUClearFloatStatus, ApplyFtrl, SGD and so on
From: @lihongkang1
Reviewed-by: @liangchenghui,@wuxuejian
Signed-off-by: @liangchenghui
5 years ago
yanghaoran
58bae307d6
fix bugs
5 years ago
buxue
acec35d4d4
support non tensor inputs
5 years ago
Payne
ea74bb6407
fix the getitem bug
5 years ago
zjun
45c6f30065
Opitimize pynative grad graph already run
5 years ago
mindspore-ci-bot
256a1ef5c8
!11095 Modify dot opt to support pynative mode
From: @xutianming1985
Reviewed-by: @wuxuejian,@liangchenghui
Signed-off-by: @liangchenghui
5 years ago
lihongkang
5bd1a198ad
fix bugs
5 years ago
xutianming
1e7f18a097
Modify dot opt to support pynative mode
5 years ago
buxue
6d395c1d3f
keep consistent in Graph mode and PyNative mode for 'isinstance'
5 years ago
mindspore-ci-bot
57f4d6b4c9
!10853 getitem: bool index expand dims
From: @yepei6
Reviewed-by: @kisnwang,@kingxian
Signed-off-by: @kingxian
5 years ago
Payne
b12ca2165c
add bool expand dims and wait to test
5 years ago
xutianming
37f185b12b
add dot opt into composite.__init__.py
5 years ago
mindspore-ci-bot
9e27ca929a
!10354 Add batch dot op
From: @anrui-wang
Reviewed-by:
Signed-off-by:
5 years ago
w00535372
7a78203217
Add batch dot op
5 years ago
Payne
f56dd425c8
fancy index getitem: None
5 years ago
mindspore-ci-bot
7e8123aecf
!10733 BUG-Fixed: [CT][MS][Document] correct the description of the operator sequence_mask
From: @david-he91
Reviewed-by: @liangchenghui,@wuxuejian
Signed-off-by: @liangchenghui
5 years ago
hedongdong
f78df961fe
BUG-Fixed: [CT][MS][Document] correct the description of the operator sequence_mask
5 years ago
mindspore-ci-bot
5d97132f9e
!10132 Add C.dot opt
From: @xutianming1985
Reviewed-by:
Signed-off-by:
5 years ago
zhangyi
49045e168b
fix api error format showing on website.
5 years ago
xutianming
d9830ddf63
add c.dot opt
5 years ago
hedongdong
d9833bdf61
BUG-Fixed: [CT][MS][Document] fix bug in the example of LARSUpdate and sequence_mask
5 years ago
mindspore-ci-bot
660f2b8c33
!10545 getitem fix bug
From: @yepei6
Reviewed-by: @zhunaipan,@zh_qh
Signed-off-by: @zh_qh
5 years ago