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

James Newling llvmlistbot at llvm.org
Mon Apr 28 08:41:09 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)
----------------
newling wrote:

I have reached a point where I need to land this to make progress with other development, I hope that's ok @nbpatel 

It should be easy to absorb the changes (just remove code related to bitwidth) 

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


More information about the Mlir-commits mailing list