mindspore-ci-bot
e1a95b1152
!12714 rebuild getitem
From: @yepei6
Reviewed-by:
Signed-off-by:
5 years ago
yepei6
57373ed30a
merge getitem the by otehr types to by tuple(success)
5 years ago
mindspore-ci-bot
faaaa79314
!12715 Add TimeMonitor to DeepSpeech and Refresh Support list for ResizeBilinear and ResizeNearestNeighbor
From: @wanyiming
Reviewed-by:
Signed-off-by:
5 years ago
wanyiming
2edcfc2658
timemonitor
5 years ago
yepei6
0ed36cee82
update the comment of TensorScatterUpdate
5 years ago
yujianfeng
41189781f3
support scalar input for cell
5 years ago
wangshuide2020
8a7fa2e651
add raises description for Cast, Diag, Eye, Fill etc. operators.
5 years ago
zhupuxu
bc0775748e
move dynamic_shape_depend to backend
Signed-off-by: zhupuxu <zhupuxu@huawei.com>
5 years ago
hedongdong
e5d0d87a93
[Docs] update formulas for math and array operators
5 years ago
mindspore-ci-bot
8fabb26412
!12350 add float64 support to concat GPU
From: @TFbunny
Reviewed-by: @tom__chen,@robingrosman
Signed-off-by: @robingrosman
5 years ago
TFBunny
ebb7f2e771
add float64 support to concat GPU
5 years ago
TFBunny
799e51cff0
Add float64 support to slice ops
5 years ago
mindspore-ci-bot
d1d03a8eff
!12298 update the example of Unique and EditDistance and registration info of BiasAddGrad.
From: @wangshuide2020
Reviewed-by:
Signed-off-by:
5 years ago
mindspore-ci-bot
6b7766b530
!12338 [Docs] update formulas for math and array operators
From: @david-he91
Reviewed-by: @ljl0711,@liangchenghui
Signed-off-by: @liangchenghui
5 years ago
wangshuide2020
6b10de0220
update the example of Unique and EditDistance and registration info of BiasAddGrad
5 years ago
hedongdong
c67bb608b0
[Docs] update formulas for math and array operators
5 years ago
mindspore-ci-bot
2f5483ebb3
!12232 delete some attributes
From: @zhupuxu
Reviewed-by: @zhunaipan,@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
zhupuxu
e5ad77e3f7
delete attrs
Signed-off-by: zhupuxu <zhupuxu@huawei.com>
5 years ago
mindspore-ci-bot
4d9551e129
!12046 modify Gelu、FastGelu to GeLU and FastGeLU
From: @jinyaohui
Reviewed-by:
Signed-off-by:
5 years ago
gongxiaoqing
2f71ccdee1
回退 'Pull Request !12038 : Frontend operator attribute modification'
5 years ago
jinyaohui
30a27b2adb
modify Gelu、FastGelu to GeLU and FastGeLU
5 years ago
mindspore-ci-bot
aa7f82cf1b
!12038 Frontend operator attribute modification
From: @zhupuxu
Reviewed-by: @kingxian,@zhoufeng54
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
wangshuide2020
2e5b22adde
fix the example of Unique, SparseApplyProximalAdagrad, BoundingBoxEncode, SGD and Parameter.
5 years ago
mindspore-ci-bot
db3fe6a461
!11928 move dynamic_shape_depends to backend
From: @zhupuxu
Reviewed-by:
Signed-off-by:
5 years ago
l00591931
edbe3bfd3b
Add deprecated function
5 years ago
zhupuxu
667e227f0d
move dynamic shape to backend
Signed-off-by: zhupuxu <zhupuxu@huawei.com>
5 years ago
zhupuxu
dff5896b9a
delete some attributes
Signed-off-by: zhupuxu <zhupuxu@huawei.com>
5 years ago
wangshuide2020
30f99f2722
add raises description for BCELoss, ReLU, BatchNorm1d, etc. operators.
5 years ago
yuchaojie
7a7f8b5e13
unify SpaceToBatchND's attr
5 years ago
mindspore-ci-bot
9979f29135
!11932 Fix bugs for changing from GatherV2 to Gather
From: @liangzhibo
Reviewed-by: @ginfung,@zh_qh
Signed-off-by: @zh_qh
5 years ago
mindspore-ci-bot
b967ceddd7
!11891 add GatherD comments
From: @yanzhenxiang2020
Reviewed-by: @wuxuejian,@liangchenghui
Signed-off-by: @wuxuejian
5 years ago
l00591931
9bcd6fb378
Fix in changing from GatherV2 to Gather
5 years ago
yanzhenxiang2020
b0c7cae018
add GatherD comments
5 years ago
mindspore-ci-bot
9fa0499fa0
Change GatherV2 to Gather 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
304499dfaa
!11498 RangeOp fix docstring example
From: @peilin-wang
Reviewed-by: @tom__chen,@mikef
Signed-off-by: @mikef
5 years ago
hedongdong
8107cb8283
[Docs] update formulas for math and array operators
5 years ago
mindspore-ci-bot
f8f6421459
!10968 Add dynamic shape support for the operator Concat
From: @david-he91
Reviewed-by:
Signed-off-by:
5 years ago
hedongdong
8241dfa443
Add dynamic shape support for the operator Concat
5 years ago
Peilin Wang
416e2cf249
initial commit
5 years ago
yuchaojie
1932d87a26
update some op's attr name
5 years ago
yanghaoran
58bae307d6
fix bugs
5 years ago
lihongkang
1d7951fb11
fix bugs
5 years ago
liuxiao93
3d16a4d111
Update nn.Range for GPU backend.
5 years ago
lihongkang
5bd1a198ad
fix bugs
5 years ago
Peilin Wang
507cc4ab15
range past segfault addressed comments
changed default max_output_length to 1000000
change docstring
fix ci
change max_output_length to maxlen
5 years ago