blob: 04e8d47dcc7c68c1305744b5cb7cfda41618a1f2 [file] [log] [blame]
// Copyright 2020 The IREE Authors
//
// Licensed under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// Main entry function for iree-tf-opt and derived binaries.
//
// This is a bare-bones, minimal *-opt just for testing the handful of local
// passes here. If you need something, add it, but add only what you need as
// each addition will likely end up on the build critical path.
#include "iree/tools/init_xla_dialects.h"
#include "iree_tf_compiler/MHLO/Passes.h"
#include "iree_tf_compiler/TF/Passes.h"
#include "llvm/Support/InitLLVM.h"
#include "mlir/IR/Dialect.h"
#include "mlir/Support/MlirOptMain.h"
#include "tensorflow/compiler/mlir/tensorflow/dialect_registration.h"
int main(int argc, char **argv) {
llvm::InitLLVM y(argc, argv);
mlir::DialectRegistry registry;
mlir::registerXLADialects(registry);
mlir::RegisterAllTensorFlowDialects(registry);
mlir::iree_integrations::TF::registerAllDialects(registry);
mlir::iree_integrations::TF::registerAllPasses();
mlir::iree_integrations::MHLO::registerAllPasses();
if (failed(MlirOptMain(argc, argv, "IREE-TF modular optimizer driver\n",
registry,
/*preloadDialectsInContext=*/false))) {
return 1;
}
return 0;
}