Skip to content

Commit 7cf55cd

Browse files
committed
debug ci
1 parent 59df9ef commit 7cf55cd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

backends/qualcomm/utils/utils.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -337,8 +337,8 @@ def get_decomp_table() -> Dict[torch._ops.OperatorBase, Callable]:
337337
torch.ops.pt2e_quant.quantize_affine.default,
338338
torch.ops.pt2e_quant.dequantize_affine.default,
339339
torch.ops.aten._safe_softmax.default,
340-
torch.ops.aten.stack.default, # TODO: Might need to remove this later due to Mimi. QNN does not support int io for stack op.
341-
torch.ops.aten.unbind.int,
340+
# torch.ops.aten.stack.default, # TODO: Might need to remove this later due to Mimi. QNN does not support int io for stack op.
341+
# torch.ops.aten.unbind.int,
342342
]
343343

344344
remove_decompositions(source_decompositions, skip_decompositions)
@@ -358,7 +358,7 @@ def get_capture_program_passes():
358358
# The second value in each tuple in `default_passes_and_setting` indicates whether the corresponding pass is activated by default.
359359
# If a pass is activated, it will be executed by default.
360360
default_passes_and_setting = [
361-
(AnnotateDecomposed, False),
361+
(AnnotateDecomposed, True),
362362
(AnnotateQuantAttrs, True),
363363
(ConstantI64toI32, True),
364364
(ConvertBmmToMatmul, True),

0 commit comments

Comments
 (0)