[Mlir-commits] [llvm] [mlir] [mlir][AMDGPU] Implement AMDGPU DPP operation in MLIR. (PR #89233)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Wed May 15 02:29:55 PDT 2024
================
@@ -326,6 +326,68 @@ LogicalResult MFMAOp::verify() {
return success();
}
+//===----------------------------------------------------------------------===//
+// DPPOp
+//===----------------------------------------------------------------------===//
+LogicalResult DPPOp::verify() {
+ Type srcType = getSrc().getType();
+ if (srcType.getIntOrFloatBitWidth() > 32) {
+ return emitOpError("integer and floating point types larger than 32 bits "
+ "are not supported");
----------------
stefankoncarevic wrote:
I was not aware of that. Can you point me to the change?
https://github.com/llvm/llvm-project/pull/89233
More information about the Mlir-commits
mailing list