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

Erick Ochoa Lopez llvmlistbot at llvm.org
Tue Nov 25 07:35:08 PST 2025


================
@@ -50,11 +50,51 @@ struct AMDGPUInlinerInterface final : DialectInlinerInterface {
 };
 } // namespace
 
+static ParseResult
+parseDynamicIndex(OpAsmParser &parser,
+                  std::optional<OpAsmParser::UnresolvedOperand> &dynamicSize,
+                  IntegerAttr &staticSize) {
+
+  int64_t staticVal;
+  OptionalParseResult parseResult = parser.parseOptionalInteger(staticVal);
+  if (parseResult.has_value()) {
----------------
amd-eochoalo wrote:

https://github.com/llvm/llvm-project/pull/169407/commits/0f913f59149287c527747e825dce3f7f99cd5b97

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


More information about the Mlir-commits mailing list