[Mlir-commits] [mlir] [mlir][ArmSME] Support 2-way widening outer products (PR #78975)
Cullen Rhodes
llvmlistbot at llvm.org
Fri Jan 26 06:48:55 PST 2024
================
@@ -814,6 +814,649 @@ let arguments = (ins
}];
}
+class OuterProductWideBase<string mnemonic,
+ list<Type> allowedInputVectorTypes,
+ list<Type> allowedResultVectorTypes,
+ int numOuterProducts> :
+ ArmSME_Op<mnemonic, [
+ ArmSMETileOpInterface,
+ AttrSizedOperandSegments,
+ AllTypesMatch<["lhs", "rhs"]>,
----------------
c-rhodes wrote:
the last trait in the list verifies that.
https://github.com/llvm/llvm-project/pull/78975
More information about the Mlir-commits
mailing list