Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

skip quantized conv flaky case #16866

Merged
merged 21 commits into from
Dec 9, 2019
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
b9c4957
Fix quantized concat when inputs are mixed int8 and uint8
ZhennanQin Jul 24, 2019
207d72d
Merge branch 'master' of https://github.com/apache/incubator-mxnet
xinyu-intel Aug 8, 2019
5b8410e
Merge branch 'master' of https://github.com/apache/incubator-mxnet
xinyu-intel Aug 8, 2019
6d91299
Merge branch 'master' of https://github.com/apache/incubator-mxnet
xinyu-intel Aug 13, 2019
329f00c
Merge branch 'master' of https://github.com/apache/incubator-mxnet
xinyu-intel Aug 20, 2019
425f8a1
Merge branch 'master' of https://github.com/apache/incubator-mxnet
xinyu-intel Aug 26, 2019
6194767
Merge branch 'master' of https://github.com/apache/incubator-mxnet
xinyu-intel Sep 5, 2019
0dfd159
Merge branch 'master' of https://github.com/apache/incubator-mxnet
xinyu-intel Sep 19, 2019
160f654
Merge branch 'master' of https://github.com/apache/incubator-mxnet
xinyu-intel Sep 20, 2019
7b07927
Merge branch 'master' of https://github.com/apache/incubator-mxnet
xinyu-intel Sep 23, 2019
180f26e
Merge branch 'master' of https://github.com/apache/incubator-mxnet
xinyu-intel Oct 31, 2019
bdb7f39
Merge branch 'master' of https://github.com/apache/incubator-mxnet
xinyu-intel Nov 5, 2019
967c514
Merge branch 'master' of https://github.com/apache/incubator-mxnet
xinyu-intel Nov 12, 2019
075a63d
Merge branch 'master' of https://github.com/apache/incubator-mxnet
xinyu-intel Nov 19, 2019
655daf5
Merge branch 'master' of https://github.com/apache/incubator-mxnet
xinyu-intel Nov 20, 2019
dff1f5a
skip flaky test
xinyu-intel Nov 27, 2019
f96ba20
trigger ci
xinyu-intel Nov 27, 2019
bc368cb
Merge branch 'master' of https://github.com/apache/incubator-mxnet
xinyu-intel Nov 28, 2019
17714ec
Merge branch 'master' of https://github.com/apache/incubator-mxnet
xinyu-intel Dec 2, 2019
0627737
Merge branch 'master' into test_ci
xinyu-intel Dec 2, 2019
af94948
Merge remote-tracking branch 'origin/master' into test_ci
xinyu-intel Dec 9, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions tests/python/quantization/test_quantization.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,9 @@ def check_quantized_conv(data_shape, kernel, num_filter, pad, stride, no_bias, q
if is_test_for_native_cpu():
print('skipped testing quantized_conv for native cpu since it is not supported yet')
return
elif qdtype == 'int8' and is_test_for_mkldnn():
print('skipped testing quantized_conv for mkldnn cpu int8 since it is not supported yet')
elif is_test_for_mkldnn():
# (TODO)Xinyu: https://github.com/apache/incubator-mxnet/issues/16830
print('skipped testing quantized_conv for mkldnn cpu since it is a flaky case')
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@xinyu-intel Any chance we switch this back on?

return
elif qdtype == 'uint8' and is_test_for_gpu():
print('skipped testing quantized_conv for gpu uint8 since it is not supported yet')
Expand Down