Skip to content

Commit 83b19ef

Browse files
committed
Minor fix
1 parent b33e9e1 commit 83b19ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backends/qualcomm/_passes/convert_conv1d_to_conv2d.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def call(self, graph_module: torch.fx.GraphModule):
105105
padding = [0] + node.args[4] if num_args > 4 else [0, 0]
106106
if node.target == torch.ops.aten.conv1d.default:
107107
dilation = [1] + node.args[5] if num_args > 5 else [1, 1]
108-
groups = node.args[6] if num_args > 5 else 1
108+
groups = node.args[6] if num_args > 6 else 1
109109
conv_args = (
110110
qdq_node_after_unsqueeze,
111111
node.args[1],

0 commit comments

Comments
 (0)