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

Srinivasa Ravi llvmlistbot at llvm.org
Wed Mar 19 23:40:33 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");
----------------
Wolfram70 wrote:

Changed the error message in the latest revision, thanks!

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


More information about the Mlir-commits mailing list