[Mlir-commits] [mlir] [mlir][vector] Add more patterns to Vector Linearize transformation (PR #136193)

Nishant Patel llvmlistbot at llvm.org
Mon Apr 28 10:49:06 PDT 2025


================
@@ -27,6 +27,10 @@
 using namespace mlir;
 
 static bool isLessThanTargetBitWidth(Operation *op, unsigned targetBitWidth) {
+  // For BW-0, all operations are legal
+  if (targetBitWidth == 0)
----------------
nbpatel wrote:

yes go ahead and merge it

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


More information about the Mlir-commits mailing list