[Mlir-commits] [mlir] [MLIR][SCF] Add dedicated Python bindings for ForallOp (PR #149416)

Oleksandr Alex Zinenko llvmlistbot at llvm.org
Fri Jul 18 05:12:04 PDT 2025


================
@@ -71,6 +71,120 @@ def inner_iter_args(self):
         return self.body.arguments[1:]
 
 
+def dispatch_index_op_fold_results(
+    ofrs: Sequence[Union[int, Value]],
+) -> Tuple[List[Value], List[int]]:
----------------
ftynse wrote:

```suggestion
) -> tuple[list[Value], list[int]]:
```

modern python allows for this.

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


More information about the Mlir-commits mailing list