aboutsummaryrefslogtreecommitdiff
path: root/mlir/lib/Bindings/Python
AgeCommit message (Expand)AuthorFilesLines
2026-02-12[MLIR][Python] Impl XOpInterface(s) from Python, with X=Transform and X=Memor...Rolf Morel6-197/+628
2026-02-12[MLIR][Python] Remove partial LLVM APIs in python bindings (6/6) (#180986)RattataKing1-3/+11
2026-02-11[MLIR] [Bazel] Moved stubgen_runner.py out of llvm-project-overlay (#181029)Sergei Lebedev1-0/+54
2026-02-11[mlir][IR] `DenseElementsAttr`: Remove `i1` dense packing special case (#180397)Matthias Springer1-100/+6
2026-02-11[MLIR][Python] Make traits declarative in python-defined operations (#180748)Twice1-5/+6
2026-02-10[MLIR][Python] Remove partial LLVM APIs in python bindings (5/n) (#180644)RattataKing3-29/+98
2026-02-10[MLIR][Python] Refine trait support in MLIR Python (#180550)Twice1-4/+5
2026-02-09[MLIR][Python] Support dynamic traits in python-defined dialects (#179705)Twice1-0/+119
2026-02-06[MLIR][Python] Remove partial LLVM APIs in python bindings (4/n) (#180256)RattataKing6-110/+92
2026-02-04[MLIR][Python] Remove partial LLVM APIs in python bindings (3/n) (#178984)RattataKing3-24/+20
2026-02-04[MLIR][Python] Ignore the returned status of `loadDialectModule` in lookup fu...Twice1-6/+4
2026-02-02[mlir][Python] fix liveContextMap under free-threading after #178529 (#179163)Maksim Levental1-1/+1
2026-01-31[MLIR][Python] Support dialect conversion in python bindings (#177782)Twice3-2/+370
2026-01-29[MLIR][Python] Remove partial LLVM APIs in python bindings (2/n) (#178529)RattataKing1-57/+50
2026-01-29[mlir] Apply clang-tidy check llvm-use-vector-utils. NFC. (#178526)Jakub Kuderski1-4/+5
2026-01-28[MLIR][Python] Remove partial LLVM APIs in python bindings (#178290)RattataKing1-128/+103
2026-01-26[MLIR][Python] Fix overly specific type annotation on PyValue.owner (#178003)Rolf Morel1-1/+2
2026-01-24[mlir][python] Support Arbitrary Precision Integers in MLIR C API and Python ...Ryan Kim1-8/+82
2026-01-16[mlir][Python] remove stray nb::cast (#176299)Maksim Levental1-6/+0
2026-01-13[MLIR][Python] Improve Iterator performance. Don't `throw` in `dunderNext` me...MaPePeR2-13/+25
2026-01-12[mlir][Python] downcast Value to BlockArgument or OpResult (#175264)Maksim Levental2-32/+31
2026-01-11[MLIR][Python] Rename `GreedyRewriteDriverConfig` to `GreedyRewriteConfig` (#...Twice1-24/+22
2026-01-10[mlir][Python] fix dialect extensions which bind C types (#175405)Maksim Levental8-97/+162
2026-01-10[MLIR][Python] Register `OpAttributeMap` as `Mapping` for `match` compatibili...MaPePeR1-0/+13
2026-01-08[MLIR][Python] Add GreedyRewriteDriverConfig parameter to apply_patterns_and_...Maksim Levental1-31/+39
2026-01-08[MLIR][Python][NFC] Use enum class instead of enum (#174792)Twice4-56/+48
2026-01-07[mlir][py] ability to downcast AffineExpr after #172892 (#174808)Oleksandr "Alex" Zinenko1-4/+26
2026-01-07[MLIR][Python] Forward the name of MLIR attrs to Python side (#174756)Twice2-0/+3
2026-01-07[MLIR][Python] Forward the name of MLIR types to Python side (#174700)Twice8-0/+28
2026-01-06[MLIR][Python] Add a `.get` method to `IntegerType` (#174406)Twice1-0/+33
2026-01-05[mlir][Python] use maybeDowncast for PyType/PyAttribute returns after #174156...Maksim Levental6-33/+44
2026-01-05[mlir][Python] use canonical Python `isinstance` instead of `Type.isinstance`...Maksim Levental3-6/+20
2026-01-05[MLIR][Python] Use correct namespace for registering SMT dialect (#174468)Maksim Levental1-1/+1
2026-01-05[MLIR] Use correct namespace for registering MLIR dialects (#174463)Aiden Grossman1-1/+2
2026-01-05[mlir][Python] port in-tree dialect extensions to use MLIRPythonSupport (#174...Maksim Levental10-1017/+1395
2026-01-05[mlir][Python] move IRTypes and IRAttributes to MLIRPythonSupport (#174118)Maksim Levental3-2337/+1571
2026-01-05[mlir][Python] create MLIRPythonSupport (#171775)Maksim Levental15-3311/+1129
2026-01-02[LLVM][ADT] Migrate users of `make_scope_exit` to CTAD (#174030)Victor Chernyakin1-2/+2
2026-01-02[mlir][c] Enable creating and setting greedy rewrite confing. (#162429)Jacques Pienaar1-6/+126
2025-12-30[MLIR][Python][NFC] Refine the docstring of `PassManager.add(callable, ..)` (...Twice1-1/+13
2025-12-30[MLIR][Python] Refine the support of `RewritePatternSet.add` (#173874)Twice1-5/+27
2025-12-26[MLIR][Python] Add support of the walk pattern rewrite driver (#173562)Twice1-1/+12
2025-12-16[mlir][amdgpu] Add Python bindings for TDM types (#172309)Tim Gymnich1-0/+65
2025-12-14[MLIR][Transform][Python] transform.foreach wrapper and .owner OpViews (#172228)Rolf Morel1-4/+4
2025-12-14Revert "[MLIR][Transform][Python] transform.foreach wrapper and .owner OpView...Mehdi Amini1-4/+4
2025-12-14[MLIR][Transform][Python] transform.foreach wrapper and .owner OpViews (#171544)Rolf Morel1-4/+4
2025-12-14[MLIR][Python][Transform] Print diagnostics also upon success (#172188)Rolf Morel1-1/+10
2025-12-11[python] Expose replaceUsesOfWith C API (#171892)Hongzheng Chen1-0/+8
2025-12-10[MLIR] Apply clang-tidy fixes for llvm-include-order in TransformInterpreter....Mehdi Amini1-1/+1
2025-12-07[MLIR][ExecutionEngine] Enable PIC option (#170995)Tianqi Chen1-5/+5