[Mlir-commits] [mlir] [MLIR][AMDGPU] Add a wrapper for global LDS load intrinsics in AMDGPU (PR #133498)
Alan Li
llvmlistbot at llvm.org
Wed Apr 2 08:24:26 PDT 2025
================
@@ -459,6 +461,29 @@ LogicalResult DPPOp::verify() {
return success();
}
+LogicalResult GlobalLoadLDSOp::verify() {
+ MemRefType srcType = cast<MemRefType>(getSrc().getType());
+ MemRefType dstType = cast<MemRefType>(getDst().getType());
+
+ if (!memref::isStaticShapeAndContiguousRowMajor(srcType) ||
----------------
lialan wrote:
you are right here.
https://github.com/llvm/llvm-project/pull/133498
More information about the Mlir-commits
mailing list