[Mlir-commits] [mlir] [mlir][ArmSME] Support widening outer products (PR #78975)

Benjamin Maxwell llvmlistbot at llvm.org
Tue Jan 23 10:00:30 PST 2024


================
@@ -410,4 +410,8 @@ def ConvertToSvboolIntrOp :
     /*overloadedResults=*/[]>,
     Arguments<(ins SVEPredicate:$mask)>;
 
+def Zip1IntrOp :
+  ArmSVE_IntrBinaryOverloadedOp<"zip1">,
+  Arguments<(ins AnyScalableVector, AnyScalableVector)>;
----------------
MacDue wrote:

I know the other intrinsics don't bother, but this can't take `AnyScalableVector`, it can only take vectors that exactly match the size of a hardware SVE vector. 

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


More information about the Mlir-commits mailing list