[Mlir-commits] [mlir] [mlir][amdgpu] Add amdgpu.make_dma_descriptor (PR #169407)

Jakub Kuderski llvmlistbot at llvm.org
Tue Nov 25 07:40:33 PST 2025


================
@@ -746,6 +744,9 @@ LogicalResult TransposeLoadOp::verify() {
 //===----------------------------------------------------------------------===//
 
 LogicalResult MakeDmaDescriptorOp::verify() {
+  if (getGlobalStaticStrides()->size() == 0) {
----------------
kuhar wrote:

```suggestion
  if (getGlobalStaticStrides()->empty()) {
```
?

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


More information about the Mlir-commits mailing list