summaryrefslogtreecommitdiff
path: root/mlir/lib/CAPI/Dialect/Func.cpp
AgeCommit message (Collapse)Author
2025-02-06[mlir] feat: add `mlirFuncSetResultAttr` (#125972)Avik Pal
cc @ftynse @wsmoses
2023-07-12[MLIR] Add a number of methods to the C APIAdam Paszke
Those include: - mlirFuncSetArgAttr - mlirOperationSetOperands - mlirRegionTakeBody - mlirBlockInsertArgument Reviewed By: ftynse, jpienaar Differential Revision: https://reviews.llvm.org/D155091
2022-03-01[mlir] Rename the Standard dialect to the Func dialectRiver Riddle
The last remaining operations in the standard dialect all revolve around FuncOp/function related constructs. This patch simply handles the initial renaming (which by itself is already huge), but there are a large number of cleanups unlocked/necessary afterwards: * Removing a bunch of unnecessary dependencies on Func * Cleaning up the From/ToStandard conversion passes * Preparing for the move of FuncOp to the Func dialect See the discussion at https://discourse.llvm.org/t/standard-dialect-the-final-chapter/6061 Differential Revision: https://reviews.llvm.org/D120624