[Mlir-commits] [mlir] [mlir][nvvm] Introduce `setmaxregister.sync.aligned` Op (PR #73780)

Guray Ozen llvmlistbot at llvm.org
Wed Nov 29 04:44:08 PST 2023


================
@@ -1007,6 +1007,12 @@ void NVVM::WgmmaMmaAsyncOp::getAsmValues(
   }
 }
 
+LogicalResult NVVM::SetMaxRegisterOp::verify() {
+  if (getCount() % 8)
+    return emitOpError("new register size must be multiple of 8");
+  return success();
----------------
grypp wrote:

good catch, I've added this one as well.

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


More information about the Mlir-commits mailing list