Skip to content

Commit 6e5938e

Browse files
kirklandsignmergennachin
authored andcommitted
Disable IC3 IC4 Q8 XNNPACK (#871)
Summary: Pull Request resolved: #871 We need a fix from quantizer; disable it for MVP but we can enable it for main branch later. The issue is quantization scale difference due to calibration and XNNPACK won't execute the program; it only occurs when running it with both "--delegate" and "--quantize". With portable kernel it executes. Reviewed By: guangy10 Differential Revision: D50236323 fbshipit-source-id: b37cf0bb0294f9c7e65f945dc9c871e0b889b607
1 parent 285505e commit 6e5938e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/xnnpack/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ class XNNPACKOptions(object):
1818
"add": XNNPACKOptions(True, True),
1919
"add_mul": XNNPACKOptions(True, True),
2020
"dl3": XNNPACKOptions(True, True),
21-
"ic3": XNNPACKOptions(True, True),
22-
"ic4": XNNPACKOptions(True, True),
21+
"ic3": XNNPACKOptions(False, True),
22+
"ic4": XNNPACKOptions(False, True),
2323
"mv2": XNNPACKOptions(True, True),
2424
"mv3": XNNPACKOptions(True, True),
2525
"resnet18": XNNPACKOptions(True, True),

0 commit comments

Comments
 (0)