[Mlir-commits] [mlir] [MLIR][ArmSVE] Add initial lowering of vector.contract to SVE `*MMLA` instructions (PR #135636)
Andrzej WarzyĆski
llvmlistbot at llvm.org
Tue May 20 10:22:21 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.
----------------
banach-space wrote:
Why? Could you add a note that there's a separate SVE path implement in the SVE dialect?
https://github.com/llvm/llvm-project/pull/135636
More information about the Mlir-commits
mailing list