[Mlir-commits] [mlir] [mlir][linalg/scf/transform] scalable tiling and fusion for pack/unpack ops (PR #204007)

Andrzej WarzyƄski llvmlistbot at llvm.org
Thu Jun 25 05:00:56 PDT 2026


================
@@ -96,6 +96,15 @@ template <typename LinalgOpTy>
 struct LinalgOpTilingInterface
     : public TilingInterface::ExternalModel<LinalgOpTilingInterface<LinalgOpTy>,
                                             LinalgOpTy> {
+  using Base =
+      TilingInterface::ExternalModel<LinalgOpTilingInterface<LinalgOpTy>,
+                                     LinalgOpTy>;
+  // Inherit the defaulted hint-bearing overloads; this op ignores the hint.
----------------
banach-space wrote:

[nit] `this op ignores the hint.` -> `this op does not require the hint (no inner tiles).`

https://github.com/llvm/llvm-project/pull/204007


More information about the Mlir-commits mailing list