Rename `tosa-to-linalg-on-tensors` to `tosa-to-linalg`

The pass name changed upstream.
pull/376/head snapshot-20211025.44
Sean Silva 2021-10-25 20:43:54 +00:00
parent 47209539a8
commit a6943ef90c
2 changed files with 2 additions and 3 deletions

View File

@ -22,6 +22,5 @@ REFBACKEND_XFAIL_SET = COMMON_TORCH_MLIR_LOWERING_XFAILS
# Write the TOSA set as a "passing" set as it is very early in development # Write the TOSA set as a "passing" set as it is very early in development
# and very few tests work yet. # and very few tests work yet.
TOSA_PASS_SET = { TOSA_PASS_SET = {
# See: https://github.com/llvm/torch-mlir/issues/379 "ElementwiseUnaryModule_basic",
#"ElementwiseUnaryModule_basic",
} }

View File

@ -39,7 +39,7 @@ class LinalgOnTensorsTosaBackend(TosaBackend):
run_pipeline_with_repro_report( run_pipeline_with_repro_report(
imported_module, imported_module,
"builtin.func(tosa-to-linalg-on-tensors)", "builtin.func(tosa-to-linalg)",
"Lowering TOSA to Linalg-on-Tensors") "Lowering TOSA to Linalg-on-Tensors")
return self.refbackend.compile(imported_module) return self.refbackend.compile(imported_module)