[Mlir-commits] [mlir] [MLIR][NVVM] Add support for st.bulk Op (PR #131727)
Guray Ozen
llvmlistbot at llvm.org
Tue Mar 18 08:18:28 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:
Aren't there more cases to verify according to pyx spec?
https://github.com/llvm/llvm-project/pull/131727
More information about the Mlir-commits
mailing list