Commit Graph

24972 Commits

Author SHA1 Message Date
yeyunpeng2020 eb3431bb05 fix codex problem 2021-06-08 18:26:13 +08:00
huanghui bcb0208060 code-self-check of debug 2021-06-08 17:41:20 +08:00
i-robot f0d70466b4 !17883 Add cspdarknet53 network to modelzoo
Merge pull request !17883 from zhanghuiyao/cspdarknet53_clould
2021-06-08 17:32:48 +08:00
i-robot e7c5b125a2 !17865 [LITE] codex for master
Merge pull request !17865 from yefeng/114-codedex_to_master
2021-06-08 17:30:46 +08:00
i-robot c99940a702 !17964 code check
Merge pull request !17964 from zhaozhenlong/lite/issue/code_check0608
2021-06-08 17:18:33 +08:00
unknown 4270205f00 bgcf readme amend 2021-06-08 17:15:28 +08:00
esther 1a21b82bd0 add emotect model for gpu and ascend 2021-06-08 17:00:55 +08:00
i-robot 1318156356 !17928 mobilenetv2 test
Merge pull request !17928 from huchunmei/mobilenetv2
2021-06-08 16:52:45 +08:00
i-robot 431c037ff5 !17937 Clean GradOperation inappropriate implementation.
Merge pull request !17937 from 张清华/grad_opt0
2021-06-08 16:46:35 +08:00
ms_yan be65ebcb28 complete dataset log 2021-06-08 16:45:47 +08:00
lianliguang 46be6c0bca fix bug of reluv2 infer 2021-06-08 16:44:02 +08:00
gaoyong10 bf6528645c Unified runtime support mixed precision. 2021-06-08 16:38:46 +08:00
limingqi107 e9b0eab177 fix repeated release device resource of actor runtime 2021-06-08 16:37:29 +08:00
i-robot 850e3d4b2a !17950 [MS][LITE][CPU] code check
Merge pull request !17950 from liuzhongkai/codecheck2
2021-06-08 16:36:35 +08:00
i-robot bd03da98c5 !17651 fix up advanced east
Merge pull request !17651 from 累到崴脚/adv
2021-06-08 16:32:36 +08:00
linqingke c68ba5ac6a fix dropout and matrix_inverse op bug. 2021-06-08 16:05:40 +08:00
yefeng 82d4a811e3 master codex 2021-06-08 15:38:57 +08:00
i-robot 59e313a61e !17973 fix tensor.item and tensor.itemset api
Merge pull request !17973 from 杨林枫/code_docs_itemset
2021-06-08 15:20:35 +08:00
i-robot 2bb5ffe2a8 !17565 Remove EasyDict in mindspore framework
Merge pull request !17565 from chenhaozhe/remove-easydict
2021-06-08 15:18:41 +08:00
陈劢 87c9e71826 fix textrcnn eval net amp construct problem 2021-06-08 15:08:33 +08:00
mindspore-ci-bot 77e562db4f !17951 modify model_zoo squeezenet
From: @Somnus2020
Reviewed-by: @wuxuejian,@c_34
Signed-off-by: @c_34
2021-06-08 15:04:44 +08:00
mindspore-ci-bot 32afa49ed8 !17919 change somas log file mode to 400
From: @laiyongqiang
Reviewed-by: @yuchaojie,@zhoufeng54
Signed-off-by: @zhoufeng54
2021-06-08 15:00:55 +08:00
yanglf1121 8ef467f310 fix api for tensor.item and tensor.itemset 2021-06-08 14:59:28 +08:00
mindspore-ci-bot 8934e4a513 !17879 dynamic min max shape phase 2
From: @luoyang42
Reviewed-by: @liucunwei,@jonyguo
Signed-off-by: @liucunwei
2021-06-08 14:49:13 +08:00
mindspore-ci-bot 533837096a !17960 reset clean code
From: @cmy_melody
Reviewed-by: @zlq2020,@liucunwei
Signed-off-by: @liucunwei
2021-06-08 14:47:08 +08:00
mindspore-ci-bot cd3c5c9e47 !17871 clean part of warning code in dataset.
From: @anzhengqi
Reviewed-by: @liucunwei,@jonyguo
Signed-off-by: @liucunwei
2021-06-08 14:45:01 +08:00
mindspore-ci-bot f86d707126 !17957 maskrcnn repair
From: @huchunmei
Reviewed-by: @wuxuejian,@c_34
Signed-off-by: @wuxuejian,@c_34
2021-06-08 14:43:46 +08:00
lianliguang 872e4b97fa fix bug of softplus infer 2021-06-08 14:40:41 +08:00
huangmengxi 67ef225dc5 trim tests 2021-06-08 14:31:50 +08:00
huchunmei 054587f7a8 clould 2021-06-08 14:28:04 +08:00
mindspore-ci-bot 8cd5eb68b3 !17887 clean cxx warning
From: @lianliguang
Reviewed-by: @zh_qh
Signed-off-by: @zh_qh
2021-06-08 14:27:21 +08:00
mindspore-ci-bot 3828b819d4 !17936 fix bug of relu grad
From: @lianliguang
Reviewed-by: @ginfung,@zh_qh
Signed-off-by: @zh_qh
2021-06-08 14:25:01 +08:00
mindspore-ci-bot af31b0f4a0 !17900 numpy-native reduce histogram2d test case fractional precision
From: @jachua
Reviewed-by: @guoqi1024,@liangchenghui
Signed-off-by: @guoqi1024
2021-06-08 14:14:33 +08:00
Emir Haleva 0d53477912 train_lenet_jav to meet new API 2021-06-08 07:05:05 +03:00
dayschan 5d980d9702 Bugfix in graph_kernel_cluster when the op connects to UpdateState
In PR !16073, the tail inputs of UpdateState is ignored in TransformSegmentToAnfGraph,
but we spread the inputs of UpdateState in the pass SpreadUpdateState, so the error occurs.

In this submission, we call ShrinkUpdateState before clustering operators and
call SpreadUpdateState again after that, to avoid the problem.
The ParallelFusion also calls the TransformSegmentToAnfGraph interface, so we change it together.

Note: this submission is a temporary solution, we will rewrite the TransformSegmentToAnfGraph in
graphkernel module, without these special processes.

To speed up the pass SpreadUpdateState, we create new UpdateState node and use "mng.Replace",
instead of setting inputs and use "mng.KeepRoots".
2021-06-08 11:58:35 +08:00
mindspore-ci-bot 635c2b0adb !16923 Update doc string of Dataset
From: @luoyang42
Reviewed-by: 
Signed-off-by:
2021-06-08 11:39:02 +08:00
zhaozhenlong bb945348fd code check 2021-06-08 11:36:48 +08:00
chenhaozhe 8e3c9ccc8d remove easydict in mindspore framework 2021-06-08 11:33:23 +08:00
mindspore-ci-bot 0fe139c838 !17910 dpn add 310 infer
From: @zeyangao
Reviewed-by: @c_34,@oacjiewen
Signed-off-by: @c_34
2021-06-08 11:31:56 +08:00
huchunmei 4ed03321c2 clould 2021-06-08 11:26:37 +08:00
Zeyang GAO 4e8d981d7e alexnet add 310 infer on imagenet 2021-06-08 11:25:26 +08:00
chujinjin 1dd950218b modify log level for pynative 2021-06-08 11:16:05 +08:00
mindspore-ci-bot 3fb54b93f9 !17878 Rectification of operator ease of use part 1
From: @dinglinhe123
Reviewed-by: @liangchenghui,@wuxuejian
Signed-off-by: @liangchenghui
2021-06-08 11:11:19 +08:00
LaiYongqiang 0c78f9a9db change somas log file mode to 400 2021-06-08 11:01:06 +08:00
lianliguang 8a9b388ac3 clean CXX warning 2021-06-08 10:55:28 +08:00
dinglinhe 316662cacb Rectification of operator ease of use 2021-06-08 10:49:43 +08:00
simson 0b0e9580d7 conv2dbackpropinput & conv2dbackpropfilter c++ infer 2021-06-08 10:48:29 +08:00
cmy_melody cd14e4021c reset thor warning 2021-06-08 10:46:42 +08:00
cjh9368 45e796ac87 [MS][LITE] return nullptr when inner context 2021-06-08 10:39:34 +08:00
mindspore-ci-bot 7e5d68991a !17680 Avoid overflow of in realdiv
From: @wenfangpei
Reviewed-by: @gaoxiong1,@ckey_dou
Signed-off-by: @ckey_dou
2021-06-08 10:39:33 +08:00