[Mlir-commits] [mlir] [mlir][vector] Add pattern to drop unit dim from elementwise(a, b)) (PR #74817)

Benjamin Maxwell llvmlistbot at llvm.org
Wed Dec 13 09:26:36 PST 2023


================
@@ -1446,6 +1446,89 @@ struct ChainedReduction final : OpRewritePattern<vector::ReductionOp> {
   }
 };
 
+/// Replace:
+///   elementwise(a, b)
+/// with:
+///   sc_a = shape_cast(a)
+///   sc_b = shape_cast(b)
+///   res = elementwise(sc_a, sc_b)
+///   return shape_cast(res)
+/// for which `a` and `b` are vectors of rank > 1 and have unit leading and/or
+/// trailing dimension.
----------------
MacDue wrote:

nit: (Feel free to ignore) It's not immediately clear the shape_casts are to drop unit dims (until reading the example, or the name of the struct below). 

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


More information about the Mlir-commits mailing list