[Mlir-commits] [mlir] [mlir][ArmSME] Add arm_sme.streaming_vl operation (PR #77321)

Cullen Rhodes llvmlistbot at llvm.org
Tue Jan 9 05:09:19 PST 2024


================
@@ -223,6 +223,21 @@ def ArmSME_CombiningKindAttr : EnumAttr<ArmSME_Dialect, CombiningKind,
   let defaultValue = "CombiningKind::Add";
 }
 
+def TypeSize : I32EnumAttr<"TypeSize", "Size of vector type", [
+  I32EnumAttrCase<"Bytes"      , 0, "bytes">,
+  I32EnumAttrCase<"HalfWords"  , 1, "half_words">,
+  I32EnumAttrCase<"Words"      , 2, "words">,
+  I32EnumAttrCase<"DoubleWords", 3, "double_words">,
----------------
c-rhodes wrote:

nit: I think `byte/half/word/double` would be sufficient and more concise

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


More information about the Mlir-commits mailing list