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
4 years ago
mindspore-ci-bot
e6dcb0c31d
!12239 [MD] fix bugs of execute & update doc description in minddata
...
From: @luoyang42
Reviewed-by: @liucunwei
Signed-off-by: @liucunwei
4 years ago
mindspore-ci-bot
61ab50915f
!11959 Add BCEWithLogitsLoss op for Ascend.
...
From: @liu_xiao_93
Reviewed-by:
Signed-off-by:
4 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)
```
4 years ago
luoyang
cd86788cf3
fix bugs of execute & update doc description in minddata
4 years ago
liu_xiao_93
fabc25538e
Add BCEWithLogitsLoss
4 years ago
chendongsheng
40f2571f7e
added http client
4 years ago
mindspore-ci-bot
26d4b99019
!11056 Modifying profiling_Options parameter
...
From: @zyhstack
Reviewed-by: @lilongfei15,@xsmq
Signed-off-by: @xsmq
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
tom__chen
d3330a1087
fix incorrect in_channel size error messages
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
mindspore-ci-bot
24e528112f
!12134 improve grad of first input
...
From: @zhangbuxue
Reviewed-by:
Signed-off-by:
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
buxue
899d6114a4
improve grad of first input
4 years ago
zhangyihui
bbbffbb6a9
Modify the profiling_options parameter name
4 years ago
mindspore-ci-bot
ad5b033cc5
Change L2Norm, r1.1 to master
4 years ago
mindspore-ci-bot
544da6f845
!11727 [MD] Add vision ops and py_transform ops support to Serdes save
...
From: @tina_mengting_zhang
Reviewed-by:
Signed-off-by:
4 years ago
Cathy Wong
3e6e35d749
dataset: delete minddata/dataset/include/status.h
4 years ago
mindspore-ci-bot
74652eb942
!12044 modify pack to stack
...
From: @jinyaohui
Reviewed-by:
Signed-off-by:
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
8fc5962418
!12055 compile graph for merging parameter slice only once
...
From: @yangzhenzhang
Reviewed-by: @stsuteng
Signed-off-by: @stsuteng
4 years ago
TinaMengtingZhang
ddab5ad417
Add support for vision op and py_transform op to serdes
4 years ago
mindspore-ci-bot
e8f4cafd02
!11950 Overwrite default port/hostname from env variables for cache_admin
...
From: @lixiachen
Reviewed-by:
Signed-off-by:
4 years ago
jinyaohui
d9be0c102d
add some ops
4 years ago
yangzhenzhang
726ea32778
merge parameter slice compile graph only once
4 years ago
mindspore-ci-bot
cbfba95ad0
!11921 do not broaden when arg is not tensor
...
From: @zhangbuxue
Reviewed-by:
Signed-off-by:
4 years ago
buxue
6ccc4379b4
do not broaden scalar
4 years ago
mindspore-ci-bot
6378642c8a
!11905 add raises description for BCELoss, ReLU, BatchNorm1d, etc. operators
...
From: @wangshuide2020
Reviewed-by: @liangchenghui,@wuxuejian
Signed-off-by: @liangchenghui
4 years ago
mindspore-ci-bot
78d250c7d5
!11648 fix param check for unexpected_format
...
From: @jiang-shuqiang
Reviewed-by: @yelihua
Signed-off-by:
4 years ago
Lixia Chen
97cd142f8d
Overwrite default port/hostname from env variables
...
update copyright
add examples to CacheClient docstring
4 years ago
mindspore-ci-bot
840d819d08
!11975 improve isinstance
...
From: @zhangbuxue
Reviewed-by: @ginfung,@zh_qh
Signed-off-by: @zh_qh
4 years ago
mindspore-ci-bot
112b5829e7
!11854 Support list of IDs as a sampler
...
From: @hfarahat
Reviewed-by:
Signed-off-by:
4 years ago
hesham
1185218335
Support list of IDs as a sampler
4 years ago
hesham
715d70f397
Remove setting num_parallel_worker in UT, since it would fail for machines with less than 16 cores.
4 years ago
buxue
5ede9ffcca
improve isinstance
4 years ago
wangshuide2020
30f99f2722
add raises description for BCELoss, ReLU, BatchNorm1d, etc. operators.
4 years ago
mindspore-ci-bot
0dcd94d717
!11893 LookupOp: default value of unknown_token support NoneType
...
From: @luoyang42
Reviewed-by: @liucunwei,@pandoublefeng
Signed-off-by: @liucunwei
4 years ago
mindspore-ci-bot
a616196586
!11982 Change tuple_getitem to TupleGetItem merge from r1.1 to master
...
From: @liangzhibo
Reviewed-by: @ginfung,@zh_qh
Signed-off-by: @zh_qh
4 years ago
shenghong96
49144fde37
fix UT of test_topk_no_split
4 years ago
luoyang
fa4f67cbcd
LookupOp: default value of unknown_token support NoneType
4 years ago
mindspore-ci-bot
b189f177bb
Change tuple_getitem to TupleGetItem and some other ops, merge from r1.1 to master
4 years ago
xsmq
a8259bae9b
disable ut cpp case(test_topk_no_split)
4 years ago
jiangshuqiang
0bb80995bc
fix param check for unexpected_format
4 years ago
mindspore-ci-bot
e02058133e
!11526 unifiled lite & cloud api
...
From: @zhoufeng54
Reviewed-by:
Signed-off-by:
4 years ago
mindspore-ci-bot
e897eb4c41
!11915 Change TensorAdd to Add, merge from r1.1 to master
...
From: @liangzhibo
Reviewed-by: @ginfung,@zh_qh
Signed-off-by: @zh_qh
4 years ago
lixian
7d2fd6e76c
cxx api refactor: tensor/status/model
4 years ago