[Mlir-commits] [mlir] [mlir][linalg] Morphism across linalg named, category and generic ops. (PR #148424)
Renato Golin
llvmlistbot at llvm.org
Wed Jul 23 07:39:03 PDT 2025
================
@@ -0,0 +1,25 @@
+// Forward path `named -> category -> generic`
+// RUN: mlir-opt %s -linalg-morph-ops=named-to-category | FileCheck %s --check-prefix=NAMED_TO_CATEGORY
+// RUN: mlir-opt %s -linalg-morph-ops=named-to-generic | FileCheck %s --check-prefix=NAMED_TO_GENERIC
+// RUN: mlir-opt %s -linalg-morph-ops=named-to-category | \
+// RUN: mlir-opt %s -linalg-morph-ops=category-to-generic | FileCheck %s --check-prefix=CATEGORY_TO_GENERIC
----------------
rengolin wrote:
I would have this `prefix=NAMED_TO_GENERIC` to test the multi-step case, but create a new test for CATEGORY_TO_GENERIC.
https://github.com/llvm/llvm-project/pull/148424
More information about the Mlir-commits
mailing list