[Mlir-commits] [mlir] [mlir][amdgpu] Lower amdgpu.make_dma_base (PR #169817)
Krzysztof Drewniak
llvmlistbot at llvm.org
Mon Dec 1 09:15:00 PST 2025
================
@@ -1222,14 +1231,12 @@ def AMDGPU_MakeDmaBaseOp :
AMDGPU_Op<"make_dma_base", [Pure, AttrSizedOperandSegments]>,
Arguments<(ins
Arg<AnyMemRef, "buffer to read from">:$src,
- Variadic<Index>:$srcIndices,
+ Variadic<Index>:$src_indices,
Arg<AnyMemRef, "buffer to write to">:$dst,
- Variadic<Index>:$dstIndices)>,
+ Variadic<Index>:$dst_indices)>,
Results<(outs AMDGPU_TDMBaseType: $base)> {
----------------
krzysz00 wrote:
Yeah, having it always be `global` and `lds` is the right way to go, and I kinda thought that was what we were doing already
https://github.com/llvm/llvm-project/pull/169817
More information about the Mlir-commits
mailing list