Skip to content

Commit b4d5a63

Browse files
committed
linting
1 parent 54caa37 commit b4d5a63

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

backends/qualcomm/_passes/fuse_consecutive_transpose.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ def _fuse(self, graph_module: torch.fx.GraphModule) -> torch.fx.GraphModule:
8181
axis_order = torch.arange(len(input_shape)).tolist()
8282
for node in self.nodes:
8383
axis_order = [axis_order[i] for i in node.args[1]]
84-
85-
# Reserve [0,1,2,3] permute node to ensure the next node get the right axis order.
84+
85+
# Reserve [0,1,2,3] permute node to ensure the next node get the right axis order.
8686
with graph.inserting_after(input_node):
8787
permute_op = exir_ops.edge.aten.permute_copy.default
8888
permute_node = graph.create_node(

0 commit comments

Comments
 (0)