TFBunny
6fad165e43
add float64 support to gather gpu
4 years ago
TFBunny
ebb7f2e771
add float64 support to concat GPU
4 years ago
mindspore-ci-bot
d249ededf6
!12347 add float64 support to slice ops in GPU
...
From: @TFbunny
Reviewed-by: @robingrosman,@tom__chen
Signed-off-by: @tom__chen
4 years ago
mindspore-ci-bot
ed5f9cb1f2
!11802 Optimize GPU kernels for fasterrcnn
...
From: @robingrosman
Reviewed-by:
Signed-off-by:
4 years ago
Mahdi
4b106f184c
Fixed an issue with SequentialSampler
4 years ago
TFBunny
799e51cff0
Add float64 support to slice ops
4 years ago
mindspore-ci-bot
c8332c16f7
!11957 getRotationMatrix2D and getPerspectiveTransform
...
From: @shenwei41
Reviewed-by:
Signed-off-by:
4 years ago
mindspore-ci-bot
260c77f4ad
!12336 [MD] fix sampler log & transform log
...
From: @luoyang42
Reviewed-by:
Signed-off-by:
4 years ago
yanglf1121
f7dc5e2649
fix gpu_op type error
4 years ago
hedongdong
0660140708
add new inner operator centralizaiton
4 years ago
luoyang
416ad23e9d
fix resize & randomcoloradjust
...
fix sampler
4 years ago
shenwei41
737e828f3d
getRotationMatrix2D and getPerspectiveTransform
4 years ago
Zhenglong Li
e2d3495925
Dvpp refactor and 6 Dvpp operators
4 years ago
mindspore-ci-bot
5f72693b4b
!12275 【MD】【TASK】Fixed tenor compile error for MD
...
From: @xulei2020
Reviewed-by:
Signed-off-by:
4 years ago
mindspore-ci-bot
923dd47b0f
!12331 Adding validators back to check method
...
From: @ezphlow
Reviewed-by: @robingrosman,@nsyca,@robingrosman
Signed-off-by: @robingrosman
4 years ago
Eric
5d91fa6d77
changed discription
...
Added validator checks
Added builtin sampler check
Added proper input check for samplers
4 years ago
hesham
58193bc469
User explicit deepcopy
4 years ago
RobinGrosman
5d5225f2ee
optimize fasterrcnn on gpu. fix randomchoicewithmask, topk kernels
4 years ago
mindspore-ci-bot
adf934c567
!12152 Rewrite sequence_mask as a composite op
...
From: @TFbunny
Reviewed-by: @robingrosman
Signed-off-by:
4 years ago
mindspore-ci-bot
1239a4a848
!12314 [auto-monad] Change backend execution order sorting policy
...
From: @hwhewei
Reviewed-by: @ginfung,@zh_qh
Signed-off-by: @zh_qh
4 years ago
mindspore-ci-bot
94d8cc1f2a
!12296 Add ME daily monitor files
...
From: @huangbingjian
Reviewed-by:
Signed-off-by:
4 years ago
He Wei
141c39b71c
[auto-monad] Change backend execution order sorting policy
...
Change backend execution order sorting policy from DFS to BFS
in KernelGraph::SetExecOrderByDefault().
4 years ago
huangbingjian
7e3afac1c0
add me daily monitor files
4 years ago
mwang
fbcb3061d8
fix smoke of resnet thor
4 years ago
liangzelang
81afa9f103
check result in test_cont_graph cases
4 years ago
Eric
9953757ff4
Fixed tenor compile error for MD
4 years ago
mindspore-ci-bot
ca37351927
!12268 Fix the core dump of MsRunGraph related to auto-monad
...
From: @huangbingjian
Reviewed-by: @zh_qh,@hwhewei
Signed-off-by: @zh_qh
4 years ago
mindspore-ci-bot
96cea98864
!11731 Add dynamic shape support to ReLU6 GPU
...
From: @TFbunny
Reviewed-by:
Signed-off-by:
4 years ago
mindspore-ci-bot
6ed6d57076
!11560 Add dynamic shape support and testcases to GPU Dropout
...
From: @TFbunny
Reviewed-by:
Signed-off-by:
4 years ago
huangbingjian
1086132dc3
fix the core dump of MsRunGraph related to auto-monad; modify testcases
...
related to auto-monad, do not judge or assert the generated IR file on CI test cases.
4 years ago
mindspore-ci-bot
506ab6f477
!12166 [cpu] Add reduceall and reduceany to cpu
...
From: @yanglf1121
Reviewed-by:
Signed-off-by:
4 years ago
yujianfeng
70cc548e32
Fix calling recompute api after compiling
4 years ago
mindspore-ci-bot
d80f77e988
!12191 dataset:add st that including training consume more than data produce or reverse
...
From: @ms_yan
Reviewed-by: @liucunwei,@liucunwei
Signed-off-by: @liucunwei,@liucunwei
4 years ago
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
rainyhorse
1186d34622
dump tool update
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
yuchaojie
4050fc5b10
modify transformer st
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
liu_xiao_93
fabc25538e
Add BCEWithLogitsLoss
4 years ago
chendongsheng
40f2571f7e
added http client
4 years ago
gongxiaoqing
7f538b51e7
回退 'Pull Request !11074 : replace tdt with acltdt interface'
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
c2582dcab9
!11074 replace tdt with acltdt interface
...
From: @ms_yan
Reviewed-by: @lilongfei15
Signed-off-by:
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
mindspore-ci-bot
4b8d983bf7
!12193 fix Conv2d incorrect in_channel size error message
...
From: @tom__chen
Reviewed-by: @robingrosman
Signed-off-by: @robingrosman
4 years ago
tom__chen
d3330a1087
fix incorrect in_channel size error messages
4 years ago
mindspore-ci-bot
5a2f472790
!12153 Add type support to StridedSlice GPU
...
From: @TFbunny
Reviewed-by: @tom__chen,@robingrosman
Signed-off-by: @robingrosman
4 years ago
ms_yan
23201ae0c3
add data transfer st
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
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
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
TFBunny
b45a9f56c8
add all types support to StridedSlice GPU
4 years ago
mindspore-ci-bot
9af166990c
!12074 gpu RangeOp precision fix
...
From: @peilin-wang
Reviewed-by:
Signed-off-by:
4 years ago
Peilin Wang
44bb9cb216
added validation
...
fix ci
fix ci
fixed test cases and ci
fixed test cases and ci
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
yanglf1121
c5ea8223f5
Add new np interfaces and add graph support
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
mindspore-ci-bot
62d272f648
!12014 Fix GPU Print kernel
...
From: @TFbunny
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
mindspore-ci-bot
1f3b059195
!12004 thor generalization code submit
...
From: @sl_wang
Reviewed-by: @guoqi1024
Signed-off-by:
4 years ago
buxue
6ccc4379b4
do not broaden scalar
4 years ago
ms_yan
293f81128d
init add acltdt handle create and destory
...
add hostpush part modify
optimize previous code
provide aclhandle access method
modify CMakeList format
add device_id parameter into TransferNode
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
mwang
0b312c2385
thor generalization code submit
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
TFBunny
5a8c899789
Rework GPU print, supporting pynative mode and graph mode
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
Nat Sutyanyong
5a7dc0accc
Migrate repeat_pass.cc to IR optimizer and remove ExecTree optimizer
4 years ago
mindspore-ci-bot
df265b6d6b
!11912 update submoudle akg, close graph kernel ascend ci testcases
...
From: @looop5
Reviewed-by:
Signed-off-by:
4 years ago
mindspore-ci-bot
320ea51308
!11853 Add call for decoupled image and text ops
...
From: @alexyuyue
Reviewed-by:
Signed-off-by:
4 years ago
l00591931
9ec100d069
Change TensorAdd to Add, from r1.1 to master
4 years ago
mindspore-ci-bot
066ebe516e
!11794 remove useless code of dot
...
From: @yuan_shen_zhou
Reviewed-by: @liangchenghui
Signed-off-by: @liangchenghui
4 years ago
looop5
0161209e40
update submoudle akg, close graph kernel ascend ci testcases
4 years ago
mindspore-ci-bot
a9dfb07cf1
!11660 get cube size by data type
...
From: @liubuyu
Reviewed-by:
Signed-off-by:
4 years ago
mindspore-ci-bot
e0678ecf35
!11700 Add Asin, ACos, AsinGrad, ACosGrad for CPU
...
From: @wangrao124
Reviewed-by: @wuxuejian
Signed-off-by:
4 years ago
zhouyuanshen
d1e6878011
remove dot
4 years ago
mindspore-ci-bot
ce89cc5e8b
!11761 Change GatherV2 to Gather (merge from r1.1 to master)
...
From: @liangzhibo
Reviewed-by:
Signed-off-by:
4 years ago
mindspore-ci-bot
93e2d22622
!11862 update matmul implementation for GPU to get high performance
...
From: @corleoneliu
Reviewed-by: @ckey_dou,@anyrenwei
Signed-off-by: @ckey_dou
4 years ago
mindspore-ci-bot
42c5004956
!11824 test parallel MultiFieldEmbeddinglookup
...
From: @chen_tanjie
Reviewed-by: @kisnwang,@stsuteng
Signed-off-by: @stsuteng
4 years ago
mindspore-ci-bot
794af6d094
!11834 [MD] Fix error msg description of dataset
...
From: @xiefangqi
Reviewed-by: @liucunwei,@heleiwang
Signed-off-by: @liucunwei
4 years ago
mindspore-ci-bot
f980561fe1
!11598 [MD] add common validation functions for transform
...
From: @luoyang42
Reviewed-by:
Signed-off-by:
4 years ago
mindspore-ci-bot
9fa0499fa0
Change GatherV2 to Gather r1.1 to master
4 years ago
Corleone
82de371987
update matmul implementation for GPU
4 years ago
wangrao
f726faee4f
Add Asin, ACos, AsinGrad, ACosGrad for CPU
4 years ago
mindspore-ci-bot
84afbb510f
!11813 modify dice and diceloss
...
From: @lijiaqi0612
Reviewed-by: @kingxian,@zh_qh
Signed-off-by: @kingxian
4 years ago
xiefangqi
3d72282f26
fix error msg issue
4 years ago
Daniel
2833614a0b
st multi-hot
...
Signed-off-by: Daniel <chentanjie@huawei.com>
4 years ago
alex-yuyue
6fd58dc580
Add call for decoupled image and text ops
...
Signed-off-by: alex-yuyue <yue.yu1@huawei.com>
4 years ago
mindspore-ci-bot
5f0f9da6c6
!11784 Change samplers binding in Python to SamplerObj
...
From: @mahdirahmanihanzaki
Reviewed-by:
Signed-off-by:
4 years ago
mindspore-ci-bot
d6e32cd71c
!11735 PS embedding cache support sparse
...
From: @zyli2020
Reviewed-by:
Signed-off-by:
4 years ago
Mahdi
8f34faeb7a
Changed bindings to SamplerObj
4 years ago
mindspore-ci-bot
96f007ebb4
!11785 gpu RangeOp better error handling in kernel
...
From: @peilin-wang
Reviewed-by: @robingrosman,@tom__chen
Signed-off-by: @tom__chen
4 years ago
lizhenyu
f17534af08
ps cache support sparse
4 years ago
liubuyu
4a3cbda322
get cube size by dtype
4 years ago
YangLuo
1893ae8662
[MD] add common validation functions for transform
4 years ago
Jiaqi
804ef79c18
modify dice and diceloss
4 years ago
mindspore-ci-bot
76e9cc46fe
!11688 Add GPU ReciprocalGrad Kernel
...
From: @TFbunny
Reviewed-by: @tom__chen,@tom__chen,@robingrosman
Signed-off-by: @robingrosman
4 years ago
mindspore-ci-bot
a2f1a5b4b1
!11278 develop confusion matrix
...
From: @lijiaqi0612
Reviewed-by:
Signed-off-by:
4 years ago
mindspore-ci-bot
e2907c1280
!11764 add testcases of probability
...
From: @rainyhorse
Reviewed-by: @zichun_ye,@sunnybeike
Signed-off-by: @sunnybeike
4 years ago
mindspore-ci-bot
a485831462
!11763 add testcases of hcom
...
From: @rainyhorse
Reviewed-by: @chenfei52,@ginfung,@zh_qh
Signed-off-by: @zh_qh
4 years ago
Jiaqi
c821a2f3a2
confusion matrix
4 years ago
Peilin Wang
3bef4e9b75
range better error initial commit
4 years ago
mindspore-ci-bot
20c1727b2c
!11631 Add SubsetSampler
...
From: @hfarahat
Reviewed-by:
Signed-off-by:
4 years ago
wilfChen
2e7d7b1c5e
gpu testcase fix
4 years ago
mindspore-ci-bot
8e4a6842ff
!11681 gnn support edge weight sampling
...
From: @heleiwang
Reviewed-by: @liucunwei
Signed-off-by: @liucunwei
4 years ago
rainyhorse
7ccc970934
新增深度概率用例
4 years ago
rainyhorse
02d0c03994
新增通信算子稀疏用例
4 years ago
mindspore-ci-bot
e3796b3639
!11636 add bce cpu ops
...
From: @zhangzhewei01
Reviewed-by:
Signed-off-by:
4 years ago
mindspore-ci-bot
7af2d44cd2
!11615 Add EluGrad for CPU
...
From: @he-botao
Reviewed-by:
Signed-off-by:
4 years ago
heleiwang
2dc9ba761c
gnn support weight sampling neighbors.
4 years ago
mindspore-ci-bot
ca675c0521
!11665 [GraphKernel] Add parallel fusion support to master.
...
From: @tronzhang
Reviewed-by: @gaoxiong1,@ckey_dou
Signed-off-by: @ckey_dou
4 years ago
TFBunny
88b5458f78
add new GPU kernel ReciprocalGrad
4 years ago
TFBunny
2fc5ebd077
add dynamic shape support and testcases to GPU Dropout
4 years ago
TFBunny
0e05e3e8ec
add dynamic shape support and testcases to ReLU6
4 years ago
hesham
7120c66998
Add SubsetSampler
4 years ago