mindspore-ci-bot
2c4fec57a0
!995 Clean some pylint-warnings
...
Merge pull request !995 from SJN/master
5 years ago
mindspore-ci-bot
a2a3b1c6c5
!1089 Add Optimizer method get_lr_parameter
...
Merge pull request !1089 from ghzl/add-get-lr-base-on-parameter
5 years ago
mindspore-ci-bot
9e116e15fb
!1139 Change Thread::Join to async call with time out
...
Merge pull request !1139 from JesseKLee/timing_hole
5 years ago
mindspore-ci-bot
1a052f7155
!1131 [Data]fix cmake build format
...
Merge pull request !1131 from xulei/filter_op
5 years ago
mindspore-ci-bot
1501e20ec2
!1140 Cleanup dataset UT: resolve skipped test units
...
Merge pull request !1140 from cathwong/ckw_dataset_ut_unskip1
5 years ago
Jesse Lee
f2be49d85e
Fix a racing condition
5 years ago
Cathy Wong
913074e656
Cleanup dataset UT: resolve skipped test units
5 years ago
mindspore-ci-bot
6b68671805
!1069 Use a resident process to write summary files and SummaryRecord as context manager
...
Merge pull request !1069 from 李鸿章/context_manager
5 years ago
李鸿章
32c1d558f4
SummaryRecord as context manager
5 years ago
mindspore-ci-bot
7e3ec651dc
!1094 Complete vm ops for L2Normalize and L2NormalizeGrad
...
Merge pull request !1094 from zhouneng/add_vm_support_l2normalize
5 years ago
mindspore-ci-bot
0695bb4c18
!1115 DepthwiseConv2d+Eltwise buffer fusion pass
...
Merge pull request !1115 from wangcong/master
5 years ago
mindspore-ci-bot
a61f8486c6
!1128 only call HasNodeAttr for CNodePtr type
...
Merge pull request !1128 from Margaret_wangrui/master
5 years ago
wangcong
c0772522d2
fix bug
5 years ago
wangcong
2f591cab79
fix bug
5 years ago
wangcong
453514dd51
fix compile error
5 years ago
wangcong
e477e7617b
update getrealop name
5 years ago
wangcong
6478015786
fix compile error
5 years ago
wangcong
7017ac3f7e
depthwisecon2d-eltwise pass
5 years ago
mindspore-ci-bot
21bcdcd8ad
!1121 Complete vm ops for ResizeBilinear and ResizeBilinearGrad
...
Merge pull request !1121 from lihongkang/master
5 years ago
Margaret_wangrui
137007be88
only call HasNodeAttr for CNodePtr type
5 years ago
mindspore-ci-bot
8f40f36c6c
!924 gpu queue support multi-inputs
...
Merge pull request !924 from chenweifeng/dataset
5 years ago
guohongzilong
e70b2f5430
add optimizer.get_lr_parameter() method
5 years ago
xulei2020
903b64daa2
fix cmake build format
5 years ago
mindspore-ci-bot
d9b8e09baf
!1123 To fix GeneratorDataset numpy copy problem
...
Merge pull request !1123 from pengyanjun/generator_dataset_np_copy_problem
5 years ago
mindspore-ci-bot
074a2f342c
!1116 optimize SoftmaxCrossEntropWithLogits and momentum
...
Merge pull request !1116 from JichenZhao/add_labelsmooth_andnesterov
5 years ago
mindspore-ci-bot
8b98f921cc
!1124 Add broadcast fusion pass
...
Merge pull request !1124 from YuJianfeng/master
5 years ago
shijianning
2cf2a67dfd
fix wrong arg call
5 years ago
mindspore-ci-bot
1a98c6b459
!999 [MD] mindrecord support reading file list
...
Merge pull request !999 from liyong126/mindrecord_file_list
5 years ago
mindspore-ci-bot
049d3796a6
!1091 gpu support Cast/RealDiv/Mul/Sub/Softmax kernels enforcement
...
Merge pull request !1091 from chenweifeng/cast
5 years ago
yujianfeng
31d8db9fc6
Add broadcast fusion pass
5 years ago
shijianning
5afcefdce4
try fix pylint warning
5 years ago
mindspore-ci-bot
905467be9d
!1095 Fix while broaden error
...
Merge pull request !1095 from amongo/FixWhileBroadenedError
5 years ago
mindspore-ci-bot
86d4797399
!1079 Convert AiCpu kernel when aicore not supported
...
Merge pull request !1079 from lianliguang/convert-to-AICPU-when-AiCore-not-supported-kernel
5 years ago
wangcong
89f55e63d5
reverse previous version
5 years ago
Yanjun Peng
4bf016e67f
fix generator dataset np copy problem
5 years ago
mindspore-ci-bot
25b2424f9b
!1042 clean pylint warning in test_framwork dir
...
Merge pull request !1042 from jinyaohui/clean_pylint
5 years ago
lihongkang
ca8a914736
接入算子resizebilinear and resizebilineargrad
5 years ago
mindspore-ci-bot
6f386c5782
!1082 Support 'break', 'continue' and 'pass' statements
...
Merge pull request !1082 from hewei/support_cont_break
5 years ago
mindspore-ci-bot
53c2a281fb
!1107 rectify auto mix precision
...
Merge pull request !1107 from gengdongjie/master
5 years ago
liyong
aa3f89e74f
mindrecord support read file list
5 years ago
mindspore-ci-bot
6a8cd83d21
!1114 fix some python code format
...
Merge pull request !1114 from casgj/gaojing
5 years ago
mindspore-ci-bot
793bfddb17
!1112 Fix weight decay bug for `SGD` optimizer
...
Merge pull request !1112 from seatea/fix-sgd-weight-decay-bug
5 years ago
zhaojichen
ff710dde5d
optimize SoftmaxCrossEntropWithLogits and momentum
5 years ago
He Wei
33fa90efc9
Support 'break', 'continue' and 'pass'
...
To handle 'break' and 'continue' statement, a loop context is pushed
to a stack before we parse the loop body, and pop it after body parsed.
When a 'break', 'continue' statement is encountered, we retrieve current
loop contex from the stack, and let the current block jump to the end
block or header block;
For 'break' statement, we added an extra 'end_block' follow the 'after_block',
because 'after_block' is called from a ContionalJump in 'header_block', it can
not be set as jump target from other place. to support 'break', we let loop
body jump to the 'end_block' at the 'break' point. and 'after_block'
maybe a good place to handle loop 'else' clause in the future.
Handle 'pass' is simple, just bypass it when doing parse.
5 years ago
mindspore-ci-bot
5de4323632
!1096 fix some Misspelling
...
Merge pull request !1096 from SanjayChan/03cell
5 years ago
WilliamLian
691b0648e3
convert unsupported kernel in aicore to aicpu
5 years ago
mindspore-ci-bot
0345995000
!1110 [AutoParallel]fix gatherv2 and dataset bug
...
Merge pull request !1110 from lichen/fix_gatherv2_and_dataset_bug
5 years ago
jinyaohui
26fd75895d
pylint waring clean
5 years ago
seatea
5a119d107f
Fix weight decay bug for `SGD` optimizer.
...
Weight decay has been considered and caculated in `SGD` operation, so
there's no need to apply weight decay in `SGD` optimizer.
5 years ago
wangcong
7658ece457
clang-format code
5 years ago