forked from OSchip/llvm-project
01641197ee
Summary: Currently, the TableGen rewrite generates redundant native calls in MLIR DRR files. This is a problem as some native calls may involve significant computations (e.g. when performing constant propagation where every values in a large tensor is touched). The pattern was as follow: ```c++ if (native-call(args)) tblgen_attrs.emplace_back(rewriter, attribute, native-call(args)) ``` The replacement pattern compute `native-call(args)` once and then use it both in the `if` condition and the `emplace_back` call. Differential Revision: https://reviews.llvm.org/D82101 |
||
---|---|---|
.. | ||
cmake/modules | ||
docs | ||
examples | ||
include | ||
integration_test | ||
lib | ||
test | ||
tools | ||
unittests | ||
utils | ||
.clang-format | ||
.clang-tidy | ||
CMakeLists.txt | ||
LICENSE.TXT | ||
README.md |
README.md
Multi-Level Intermediate Representation
See https://mlir.llvm.org/ for more information.