[Mlir-commits] [mlir] [mlir][vector] Add more patterns to Vector Linearize transformation (PR #136193)
Ivan Butygin
llvmlistbot at llvm.org
Thu Apr 17 13:47:26 PDT 2025
================
@@ -27,6 +28,10 @@
using namespace mlir;
static bool isLessThanTargetBitWidth(Operation *op, unsigned targetBitWidth) {
+ // For BW-0, all operations are legal
+ if (targetBitWidth == 0) {
----------------
Hardcode84 wrote:
nit: here and later: drop curly braces for single-line ifs
https://github.com/llvm/llvm-project/pull/136193
More information about the Mlir-commits
mailing list