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
3 changes: 3 additions & 0 deletions e2e_testing/torchscript/xfail_sets.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,7 @@
"SqueezeDimModule_unitDim",
"ReturnTwoTensorF32I64_basic",
"ElementwisePowModule_basic",
"BmmModule_basic",
"Matmul_dot",
"Matmul_3d",
}
6 changes: 6 additions & 0 deletions python/torch_mlir_e2e_test/tosa_backends/linalg_on_tensors.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@ def compile(self, imported_module: Module):
"builtin.func(tosa-to-standard)",
"Lowering TOSA to Standard")

# Named ops must be legalized prior to general tosa-to-linalg
run_pipeline_with_repro_report(
imported_module,
"builtin.func(tosa-to-linalg-named)",
"Lowering TOSA to Linalg-on-Tensors for Named Ops")

run_pipeline_with_repro_report(
imported_module,
"builtin.func(tosa-to-linalg)",
Expand Down