[Mlir-commits] [mlir] [MLIR][NVVM] Update TMA Load Op (PR #156347)
Durgadoss R
llvmlistbot at llvm.org
Mon Sep 15 06:55:21 PDT 2025
================
@@ -157,6 +150,17 @@ LogicalResult CpAsyncBulkTensorPrefetchOp::verify() {
getMode(), getLoc());
}
+LogicalResult CpAsyncBulkTensorGlobalToSharedClusterOp::verify() {
+ TMALoadMode mode = getMode();
+ if (getPredicate()) {
+ if (mode != TMALoadMode::TILE && mode != TMALoadMode::IM2COL)
+ return emitError(
+ "Inline-ptx lowering supported only for Tile/Im2col mode.");
----------------
durga4github wrote:
Updated in the latest revision.
Resolving this
https://github.com/llvm/llvm-project/pull/156347
More information about the Mlir-commits
mailing list