[Mlir-commits] [mlir] [mlir][LinalgBlockPackMatmul] Add support for scalable block factors (PR #211354)
Adam Siemieniuk
llvmlistbot at llvm.org
Thu Jul 23 01:15:13 PDT 2026
================
@@ -0,0 +1,91 @@
+// RUN: mlir-opt %s -linalg-block-pack-matmul="block-factors=[32],[16],[64] allow-padding=1" \
+// RUN: -canonicalize -split-input-file | FileCheck %s --check-prefix=SCALABLE
+
+// RUN: mlir-opt %s -linalg-block-pack-matmul="block-factors=[32],[16],[64] allow-padding=0" \
+// RUN: -canonicalize -split-input-file | FileCheck %s --check-prefix=SCALABLE-NOPAD
+
+// RUN: mlir-opt %s -linalg-block-pack-matmul="block-factors=32,16,[64] allow-padding=1" \
+// RUN: -canonicalize -split-input-file | FileCheck %s --check-prefix=MIXED
+
+// -----
----------------
adam-smnk wrote:
nit: not needed
https://github.com/llvm/llvm-project/pull/211354
More information about the Mlir-commits
mailing list