Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion exir/tests/test_memory_format_ops_pass_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class MemoryFormatOpsPassTestUtils:
def memory_format_test_runner(
test_class: unittest.TestCase, test_set: MemoryFormatTestSet
):
before = export(test_set.module, test_set.sample_input)
before = export(test_set.module, test_set.sample_input).run_decompositions({})

if test_set.use_xnnpack:
epm = to_edge_transform_and_lower(
Expand Down
2 changes: 1 addition & 1 deletion exir/tests/test_passes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1735,7 +1735,7 @@ def _do_checks(
ep = export(
m,
(input,),
)
).run_decompositions({})
_do_checks(
ep.graph_module.code,
aten_op_str,
Expand Down
Loading