blob: 8a40067c11937d32de3df24110bfd2cdca531565 [file] [log] [blame]
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Main entry function for iree-tf-opt and derived binaries.
//
// Based on iree-opt with the addition of TF dialects and passes
#include "integrations/tensorflow/compiler/Passes.h"
#include "iree/tools/init_dialects.h"
#include "iree/tools/init_passes.h"
#include "iree/tools/init_targets.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::iree_compiler::registerAllDialects(registry);
mlir::iree_compiler::registerAllPasses();
mlir::iree_compiler::registerHALTargetBackends();
mlir::RegisterAllTensorFlowDialects(registry);
mlir::iree_compiler::TF::registerAllDialects(registry);
mlir::iree_compiler::TF::registerAllPasses();
if (failed(MlirOptMain(argc, argv, "IREE-TF modular optimizer driver\n",
registry,
/*preloadDialectsInContext=*/false))) {
return 1;
}
return 0;
}