[Mlir-commits] [mlir] [MLIR][ArmSVE] Add initial lowering of vector.contract to SVE `*MMLA` instructions (PR #135636)

Momchil Velikov llvmlistbot at llvm.org
Tue May 27 06:23:58 PDT 2025


================
@@ -56,6 +56,9 @@ class LowerContractionToSMMLAPattern
     // Avoid 0-D vectors and 1-D rhs:
     if (!lhsType.hasRank() || !rhsType.hasRank() || rhsType.getRank() < 2)
       return failure();
+    // Avoid scalable vectors.
----------------
momchil-velikov wrote:

Done.

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


More information about the Mlir-commits mailing list