chenhaozhe
b6aceddeab
update bert scripts according to rules of modelzoo
5 years ago
mindspore-ci-bot
2e684e89e7
!1446 pylint clean
Merge pull request !1446 from liuxiao78/master
5 years ago
mindspore-ci-bot
5b9c145ff8
!1383 keep different attributes for cnode evaluation
Merge pull request !1383 from amongo/KeepPrimAttrInCNode
5 years ago
sunsuodong
ade90be427
addn
5 years ago
huangdongrun
1159f2b11e
add prim infer attr cache
modify infer to get abstract value and attr value map together
support get attr in specialize
clone primitive when specialize if attribute is not the same with
infered attribute
6 years ago
mindspore-ci-bot
10076ffe1a
!1216 add graph attention networks model and test file
Merge pull request !1216 from zhangdengcheng/master
5 years ago
liuwenhao4
f3f0cbaeee
Fixing some tiny faults about Pylint in my code(ops)
6 years ago
“liuxiao”
18f0af0529
pylint clean
5 years ago
mindspore-ci-bot
e5c7ecfd46
!1426 Fix the issues checked by pylint
Merge pull request !1426 from chengang/fix_pylint
5 years ago
mindspore-ci-bot
318e3012d7
!1422 Fix result error when calling AllReduce serially.
Merge pull request !1422 from ZPaC/fix-multi-allreduce-calling-error
5 years ago
cristoval
f6c20178d2
fix pylint check issues
5 years ago
ZPaC
d9bcdac3dc
Fix result error when calling AllReduce serially.
5 years ago
mindspore-ci-bot
929ef67bfc
!1411 pylint warning clean
Merge pull request !1411 from liubuyu/master
5 years ago
liubuyu
107794fac9
pylint warning clean
5 years ago
Yi Huaijie
8cfc05e4cf
clean pylint warnings of parallel test cases
5 years ago
mindspore-ci-bot
a510ecc8ff
!1339 add epsilon parameter for layernorm
Merge pull request !1339 from JichenZhao/layernorm_mean_var_shape
5 years ago
mindspore-ci-bot
45368a86e9
!1329 Put the parameter validation of the Summary operator into the python layer
Merge pull request !1329 from ougongchang/master
5 years ago
ougongchang
7d78b5d89e
Put the parameter validation of the Summary operator into the python layer
add some unittest for summary operator
support ScalarSummary to record number type
5 years ago
ms_yan
d5e896b51c
delete storageDataset Op API and its test case
5 years ago
zhaojichen
7c9fb3424f
add epsilon parameter for layernorm
5 years ago
mindspore-ci-bot
3f23aa1d79
!1348 fix pylint warnings of parallel test cases
Merge pull request !1348 from yihuaijie/master
5 years ago
mindspore-ci-bot
368007240c
!1320 add applyrmsprop cumprod and reduceprod for vm
Merge pull request !1320 from JichenZhao/applyrms_squaresumall_cumprod_reduceprod
5 years ago
mindspore-ci-bot
889696bcab
!1331 delete dropoutgenmask and dropoutdomask when dropout prob equals 0 to enhance performance and adjust ci script
Merge pull request !1331 from yoonlee666/master-deletedropout
5 years ago
Yi Huaijie
14fe72f383
fix pylint warnings
5 years ago
jinyaohui
fbdba6e4da
clean pylint
5 years ago
zhaojichen
a42ec8f69f
add applyrmsprop op for vm
6 years ago
yoonlee666
12d9c71c83
delete dropout when prob equals 0 and adjust bert ci script
5 years ago
gongchen
36edbe411e
test(custom_op): Delete conv2d custom op.
5 years ago
chujinjin
668c18c42c
fix cifar 1p test
5 years ago
mindspore-ci-bot
19c200e9cc
!1280 pylint clean
Merge pull request !1280 from liubuyu/master
5 years ago
zhangdengcheng
9fbc519ebb
Add graph attention networks model and test file
6 years ago
mindspore-ci-bot
aa1cee113d
!1279 test(custom_op): clean up custom op test case.
Merge pull request !1279 from gongchen/fix_custom_op_case
5 years ago
liubuyu
37be555a81
pylint clean
5 years ago
gongchen
44458865b6
test(custom_op): Clean up custom op test case.
5 years ago
mindspore-ci-bot
6ffb3c97cd
!1058 add host cpu kernel: GatherV2/Concat/Slice/SliceGrad
Merge pull request !1058 from sunsuodong/lstm_ops
5 years ago
wanghua
2703ac5ba4
fix bert percision problem
6 years ago
gongchen
366364ba38
Add custom op testcases.
6 years ago
jinyaohui
5a914994ba
clean pylint
6 years ago
sunsuodong
28241d0293
lstm ops
6 years ago
jinyaohui
bcfaff97f9
clean pylint
6 years ago
seatea
981b013f81
Fix CSE bug for some operations like `DropoutGenMask` which should not
be optimized as it will generate different values each time.
6 years ago
jinyaohui
2907cf4488
remove some context param
6 years ago
wilfChen
1991a89f40
LayerNormGrad fix & codex
6 years ago
mindspore-ci-bot
bb374ebc28
!1015 Support weights to be compiled according to shape
Merge pull request !1015 from candanzg/me_with_shape
6 years ago
李鸿章
32c1d558f4
SummaryRecord as context manager
6 years ago
candanzg
2cc85bdc93
Support weight compile according to shape
Signed-off-by: candanzg <zhangshucheng@huawei.com>
6 years ago
mindspore-ci-bot
049d3796a6
!1091 gpu support Cast/RealDiv/Mul/Sub/Softmax kernels enforcement
Merge pull request !1091 from chenweifeng/cast
6 years ago
mindspore-ci-bot
6f386c5782
!1082 Support 'break', 'continue' and 'pass' statements
Merge pull request !1082 from hewei/support_cont_break
6 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.
6 years ago
jinyaohui
391a060f21
remove two context param
6 years ago