We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8b96c6 commit 7b5448fCopy full SHA for 7b5448f
backends/xnnpack/operators/quant_params.py
@@ -149,6 +149,8 @@ def _feeds_into_conv(node: torch.fx.Node) -> bool:
149
150
while users_list:
151
current_user = users_list.pop()
152
+ if "linear" in str(current_user.target):
153
+ return False
154
if "convolution" in str(current_user.target):
155
return True
156
users_list.extend(current_user.users)
0 commit comments