[Mlir-commits] [mlir] [MLIR][NVVM] Add support for st.bulk Op (PR #131727)

Guray Ozen llvmlistbot at llvm.org
Wed Mar 19 05:04:44 PDT 2025


================
@@ -160,6 +160,12 @@ LogicalResult CvtFloatToTF32Op::verify() {
   return success();
 }
 
+LogicalResult BulkStoreOp::verify() {
+  if (getInitVal() != 0)
+    return emitOpError("only 0 is supported for initVal in st.bulk");
----------------
grypp wrote:

We could also attribute on the op. But it's convoluted to allow ssa and attribute on the op. 

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


More information about the Mlir-commits mailing list