[Mlir-commits] [mlir] [MLIR][NVVM] Update dot.accumulate NVVM Ops (PR #140518)

Durgadoss R llvmlistbot at llvm.org
Thu May 22 01:43:18 PDT 2025


================
@@ -3445,35 +3445,35 @@ def NVVM_Tcgen05StOp : NVVM_Op<"tcgen05.st"> {
 }
 
 //===----------------------------------------------------------------------===//
-// NVVM dot.accumulate.4way Op
+// NVVM dot.accumulate Ops
 //===----------------------------------------------------------------------===//
 
-def DotAccumulate4WayS8 : I32EnumAttrCase<"S8", 1, "s8">;
-def DotAccumulate4WayU8 : I32EnumAttrCase<"U8", 0, "u8">;
+def DotAccumulateSigned : I32EnumAttrCase<"S", 1, "s">;
+def DotAccumulateUnsigned : I32EnumAttrCase<"U", 0, "u">;
----------------
durga4github wrote:

we can use the full string versions I think: `signed` or `unsigned`

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


More information about the Mlir-commits mailing list