#
db791b27 |
| 02-Jul-2024 |
Ramkumar Ramachandra <ramkumar.ramachandra@codasip.com> |
mlir/LogicalResult: move into llvm (#97309)
This patch is part of a project to move the Presburger library into
LLVM.
|
Revision tags: llvmorg-18.1.8, llvmorg-18.1.7, llvmorg-18.1.6, llvmorg-18.1.5, llvmorg-18.1.4, llvmorg-18.1.3, llvmorg-18.1.2, llvmorg-18.1.1 |
|
#
db76af28 |
| 04-Mar-2024 |
Jacques Pienaar <jpienaar@google.com> |
[mlir-query] Fix ambiguous overload
gcc7 fix didn't work (but unfortunately didn't get a notification and forgot to check), this should hopefully address the ambiguous overload. I can't repro locall
[mlir-query] Fix ambiguous overload
gcc7 fix didn't work (but unfortunately didn't get a notification and forgot to check), this should hopefully address the ambiguous overload. I can't repro locally/trying to create docker image for testing.
show more ...
|
#
3ca73e03 |
| 03-Mar-2024 |
Jacques Pienaar <jpienaar@google.com> |
[mlir-query] Attempt to fix gcc7 build
I haven't tested via gcc7, but this should address the error reported.
|
#
58b44c81 |
| 03-Mar-2024 |
Jacques Pienaar <jpienaar@google.com> |
Reapply "Reapply "[mlir-query] Add function extraction feature to mlir-query""
Fix ASAN by erasing the op extracted post printing.
This reverts commit 732a5cba8c739ed40a7280b5d74ca717910c2c4c.
|
#
732a5cba |
| 03-Mar-2024 |
Jacques Pienaar <jpienaar@google.com> |
Revert "Reapply "[mlir-query] Add function extraction feature to mlir-query""
Commit fails on sanitizers.
This reverts commit 22f34ea3b05537235956c99fe942aa95b88762c0.
|
#
22f34ea3 |
| 03-Mar-2024 |
Jacques Pienaar <jpienaar@google.com> |
Reapply "[mlir-query] Add function extraction feature to mlir-query"
Fix build deps.
This reverts commit de55c2f869925a3ed7f26e168424021c6bc46799.
|
#
de55c2f8 |
| 29-Feb-2024 |
Mehdi Amini <joker.eph@gmail.com> |
Revert "[mlir-query] Add function extraction feature to mlir-query"
This reverts commit c66f2d0c4a46ba66fb98a2cab4e63ad90888a261.
The bot is broken.
|
#
c66f2d0c |
| 29-Feb-2024 |
Devajith Valaparambil Sreeramaswamy <devajithvs@gmail.com> |
[mlir-query] Add function extraction feature to mlir-query
This enables specifying the extract modifier to extract all matches into a function. This currently does this very directly by converting a
[mlir-query] Add function extraction feature to mlir-query
This enables specifying the extract modifier to extract all matches into a function. This currently does this very directly by converting all operands to function arguments (ones due to results of other matched ops are dropped) and all results as return values.
Differential Revision: https://reviews.llvm.org/D158693
show more ...
|
Revision tags: llvmorg-18.1.0, llvmorg-18.1.0-rc4, llvmorg-18.1.0-rc3, llvmorg-18.1.0-rc2, llvmorg-18.1.0-rc1, llvmorg-19-init, llvmorg-17.0.6, llvmorg-17.0.5, llvmorg-17.0.4, llvmorg-17.0.3 |
|
#
02d9f4d1 |
| 13-Oct-2023 |
Devajith <devajithvs@gmail.com> |
[mlir][mlir-query] Introduce mlir-query tool with autocomplete support
This commit adds the initial version of the mlir-query tool, which leverages the pre-existing matchers defined in mlir/include/
[mlir][mlir-query] Introduce mlir-query tool with autocomplete support
This commit adds the initial version of the mlir-query tool, which leverages the pre-existing matchers defined in mlir/include/mlir/IR/Matchers.h
The tool provides the following set of basic queries:
hasOpAttrName(string) hasOpName(string) isConstantOp() isNegInfFloat() isNegZeroFloat() isNonZero() isOne() isOneFloat() isPosInfFloat() isPosZeroFloat() isZero() isZeroFloat()
Reviewed By: jpienaar
Differential Revision: https://reviews.llvm.org/D155127
show more ...
|