| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
[MLIR] Apply clang-tidy fixes for readability-identifier-naming in Parser.cpp (NFC) | 8 个月前 | |
Reapply "Reapply "[mlir-query] Add function extraction feature to mlir-query"" Fix ASAN by erasing the op extracted post printing. This reverts commit 732a5cba8c739ed40a7280b5d74ca717910c2c4c. | 2 年前 | |
[mlir] Fix use-after-move issues (#165660) This patch addresses two use-after-move issues: 1. Timing.cpp A variable was std::moved and then immediately passed to an assert() check. Since the moved-from state made the assertion condition trivially true, the check was effectively useless. The assert() is removed. 2. Query.cpp The matcher object was moved-from and then subsequently used as if it still retained valid state. The fix ensures no subsequent use for the moved-from variable. Testing: ninja check-mlir | 9 个月前 | |
[mlir] Prefer StringRef::substr to slice (NFC) (#113788) I'm planning to migrate StringRef to std::string_view eventually. Since std::string_view does not have slice, this patch migrates: slice(0, N) to substr(0, N) slice(N, StringRef::npos) to substr(N) | 1 年前 | |
[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 | 2 年前 |
| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
| 8 个月前 | ||
| 2 年前 | ||
| 9 个月前 | ||
| 1 年前 | ||
| 2 年前 |