kse-01/tensorflow/third_party/mlir/mlir-auto-init.cpp
github-classroom[bot] 05b050893c
Initial commit
2023-10-09 11:37:31 +00:00

15 lines
295 B
C++

#include "mlir/InitAllDialects.h"
#include "mlir/InitAllPasses.h"
namespace mlir {
// This target is a convenient dependency for users to auto-initialize MLIR
// internals.
static bool auto_init = []() {
registerAllDialects();
registerAllPasses();
return true;
}();
} // namespace mlir