[Mlir-commits] [mlir] [mlir][ArmNeon] Updates LowerContractionToSMMLAPattern with vecmat unroll patterns (PR #86005)
Diego Caballero
llvmlistbot at llvm.org
Thu Mar 21 15:27:31 PDT 2024
================
@@ -120,11 +117,14 @@ class LowerContractionToSMMLAPattern
loc, op.getResultType(), rewriter.getZeroAttr(op.getResultType()));
SmallVector<int64_t> unrolledSize = *op.getShapeForUnroll();
- SmallVector<int64_t> smmlaShape{2, 2, 8};
+ SmallVector<int64_t> smmlaShape{isVecmat ? 1 : 2, 2, 8};
SmallVector<int64_t> loopOrder{0, 1, 2};
+ if (unrolledSize.size() == 2) {
+ smmlaShape = {2, 8};
+ loopOrder = {0, 1};
+ }
----------------
dcaballe wrote:
I think there are some restrictions about using list initializers: [here](https://llvm.org/docs/CodingStandards.html#do-not-use-braced-initializer-lists-to-call-a-constructor)
SmallVector has some methods like `append` that could be used instead
https://github.com/llvm/llvm-project/pull/86005
More information about the Mlir-commits
mailing list