mindspore-ci-bot
7583b258df
!13032 Add modules of Sponge
...
From: @zhangxinfeng3
Reviewed-by: @ljl0711,@wang_zi_dong
Signed-off-by: @wang_zi_dong
4 years ago
fuzhiye
453f149b7e
clean codex
4 years ago
mindspore-ci-bot
063607de90
!13015 update testcases of dump
...
From: @rainyhorse
Reviewed-by: @xsmq,@zhoufeng54
Signed-off-by: @zhoufeng54
4 years ago
mindspore-ci-bot
7e8f58f79d
!13013 fix switch layer
...
From: @youui
Reviewed-by:
Signed-off-by:
4 years ago
liubuyu
518818fbef
reshape type for 3d nodes
4 years ago
mindspore-ci-bot
abfb2f3c06
!12607 fix npu mem leak
...
From: @zhaozhenlong
Reviewed-by: @zhanghaibo5
Signed-off-by:
4 years ago
Eric
ed373f61ac
Adding inheritance to user defined sampler
...
what if we just do nothing
trying wrapper approach
Fix yolo
4 years ago
mindspore-ci-bot
07e79dad28
!13068 [MS][MI] Debugger prints log for not supporting CPU
...
From: @alashkari
Reviewed-by: @john_tzanakakis,@tom__chen
Signed-off-by: @john_tzanakakis
4 years ago
Amir Lashkari
d83e7c41c8
Fixed log issue
...
Fixed cpplint
4 years ago
mindspore-ci-bot
62a6f783b3
!12809 Added pull-based prototype
...
From: @mahdirahmanihanzaki
Reviewed-by:
Signed-off-by:
4 years ago
xiefangqi
425fdc8beb
fix batch log level
4 years ago
mindspore-ci-bot
32bd2b176f
!12279 remove contents of release.md from whl package metadata
...
From: @nicholas_yhr
Reviewed-by: @zhoufeng54
Signed-off-by: @zhoufeng54
4 years ago
mindspore-ci-bot
b379d2ace9
!13047 Fix bug of invalid DEVICE_ID env
...
From: @jojobugfree
Reviewed-by: @chujinjin,@kisnwang
Signed-off-by: @kisnwang
4 years ago
mindspore-ci-bot
0513c0390f
!12981 fix tensorlist too many malloc, transform two level pointer to one level
...
From: @zhaodezan
Reviewed-by: @hangangqiang
Signed-off-by:
4 years ago
mindspore-ci-bot
7628eceb0d
!13055 [MD] fix remained errors in examples of docs
...
From: @tiancixiao
Reviewed-by: @liucunwei,@heleiwang
Signed-off-by: @liucunwei
4 years ago
mindspore-ci-bot
7ba4f7a1dc
!13036 [lite]fix train bug
...
From: @xu_anyue
Reviewed-by: @hangangqiang,@jpc_chenjianping
Signed-off-by: @hangangqiang
4 years ago
mindspore-ci-bot
ec9f1bdec5
!12721 mindspore lite java support linux x86
...
From: @yeyunpeng2020
Reviewed-by:
Signed-off-by:
4 years ago
linqingke
ca6c175809
fix resnet pretrain model bug.
4 years ago
mindspore-ci-bot
41b78ddc7e
!13035 fix mix cache
...
From: @fangzehua
Reviewed-by: @kisnwang,@liangchenghui
Signed-off-by: @liangchenghui
4 years ago
mindspore-ci-bot
04e23927ef
!12688 using cpp infer firstly
...
From: @lianliguang
Reviewed-by:
Signed-off-by:
4 years ago
mindspore-ci-bot
2303abd58c
!12693 Setting of dynamic_batch_size supported
...
From: @zhupuxu
Reviewed-by:
Signed-off-by:
4 years ago
mindspore-ci-bot
013ce43ed9
!13057 fix the format error of BatchMatMul operator.
...
From: @wangshuide2020
Reviewed-by: @liangchenghui,@wuxuejian
Signed-off-by: @liangchenghui
4 years ago
mindspore-ci-bot
a85990cbf2
!13037 remove static worker
...
From: @anancds
Reviewed-by: @limingqi107,@cristoval
Signed-off-by: @cristoval
4 years ago
mindspore-ci-bot
c0a4680ce0
!13039 add ckpt direcoty note
...
From: @caozhou_huawei
Reviewed-by: @kingxian,@zh_qh
Signed-off-by: @kingxian
4 years ago
mindspore-ci-bot
8de7fbccd7
!13001 Auto_tune add sync fusion env.
...
From: @linqingke
Reviewed-by: @jjfeing,@xu-yfei
Signed-off-by: @xu-yfei
4 years ago
zhouneng
07484756e1
solve the problem of decreased accuracy caused by changes in the optimizer mechanism
4 years ago
Xiao Tianci
cd3206c26c
fix error examples in docs of dataset
4 years ago
liubuyu
d97e78c333
bug fix for te log level
4 years ago
zuochuanyong
664c45e23b
bugfix: sq node is not enough for data transfer
4 years ago
wangshuide2020
a85d796407
fix the format error of BatchMatMul operator.
4 years ago
dayschan
49f78d5424
Bugfix about execution-order after GraphKernelSplitter
...
1. Removed the deprecated pass "EliminateGetitemForControlDepend"
2. Spread the MakeTuple in UpdateState's input at PreProcess, so that all inputs are directly connected
to UpdateState, I dont need to consider the condition "Getitem-MakeTuple-UpdateState'.
after this pass, the UpdateState(U, make_tuple(op1, op2, ...)) was changed to UpdateState(U, op1, op2, ...)
3. Shrink the UpdateState's inputs at PostProcess. The reverse operation of the above pass.
recovered the UpdateState's format for the process after GraphKernel.
4. Add a pass ExtendOutputForUpdateState, it's the main job of this commit.
Consider this situation:
A Cast op has multiple users in a composite kernel, while it's also in the output list and connects to
an external UpdateState. In the pass "ShapeOpsSplitter", it will be duplicated. after that, only one replica will be connected
to the external UpdateState, others will be connected to its original users respectively.
After the pass "GraphKernelSplitter", only one part will be connected to this UpdateState, the execution order of other nodes cannot be ensured.
This pass extended the node that connects to UpdateState, if a node has an external UpdateState user, all outputs that depend on this node
will be connected to this UpdateState. It may add many redundant edges, the next pass will handle it.
5. Add a pass MergeOutputForUpdateState after GraphKernelSplitter.
if an UpdateState has multiple inputs from the same node, only one edge will be kept.
4 years ago
jjfeing
c5292174f4
log info support dtype/format
4 years ago
tanghuikang
dac64f30ee
Support ms_function + heterogenous
4 years ago
simson
a9752ea5e1
add valuenode info to graph_info
4 years ago
caifubi
837ee12c02
Fix bug of invalid DEVICE_ID env for context
4 years ago
mindspore-ci-bot
0c3152fe6b
!13024 Fix bprop dynamic top cell
...
From: @zjun3021
Reviewed-by: @kisnwang,@chujinjin
Signed-off-by: @chujinjin
4 years ago
luopengting
027edbb679
fix rdr log when env_config_path is empty
4 years ago
mindspore-ci-bot
e00d8cd1d6
!13020 Not save InitDatasetQueue and GetNext op in PyNative Mode
...
From: @HulkTang
Reviewed-by: @zhoufeng54,@chujinjin
Signed-off-by: @chujinjin
4 years ago
tronzhang
7252ffb66b
pipeline optimization for parallel fusion
4 years ago
mindspore-ci-bot
fe3b26a637
!12982 dice bug
...
From: @lijiaqi0612
Reviewed-by:
Signed-off-by:
4 years ago
yujianfeng
8dbb372228
Raise error when calling recompute api in pynative mode
4 years ago
mindspore-ci-bot
16a9aa37af
!12734 [ms][lite][cpu] transpose optimize
...
From: @lzkcode
Reviewed-by:
Signed-off-by:
4 years ago
mindspore-ci-bot
b50381ebf9
!12967 [ms][lite][cpu] biasadd bug fix
...
From: @lzkcode
Reviewed-by: @zhang_xue_tong,@zhanghaibo5
Signed-off-by: @zhang_xue_tong
4 years ago
mindspore-ci-bot
2b2964e6dd
!12925 [MS][Maskrcnn][310infer]Maskrcnn 310 infer failed in halfway
...
From: @lanzhineng
Reviewed-by:
Signed-off-by:
4 years ago
caozhou
cab7b623f5
add ckpt directory note
4 years ago
mindspore-ci-bot
2551332cb9
!12979 fix ssd postprocess problem
...
From: @zhangxiaoxiao16
Reviewed-by:
Signed-off-by:
4 years ago
jiaqi
cdb7330818
diceloss bug
4 years ago
chendongsheng
d29f2b2634
remove static worker
4 years ago
zhupuxu
5ca25451ee
dynamic_batch
...
Signed-off-by: zhupuxu <zhupuxu@huawei.com>
4 years ago
xuanyue
890857da01
fix train bug
4 years ago