[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
================
@@ -22,6 +22,10 @@ using namespace mlir::tensor;
namespace {
struct PadOpTiling : public TilingInterface::ExternalModel<PadOpTiling, PadOp> {
+ using Base = TilingInterface::ExternalModel<PadOpTiling, PadOp>;
+ // 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.` Basically, we want to comment to convey _why_ rather than _what_.
https://github.com/llvm/llvm-project/pull/204007
More information about the Mlir-commits
mailing list