STT-tensorflow/tensorflow/compiler/tf2xla/mlir_bridge_pass_registration.cc
Eugene Zhulenev 891375f55f [TF:MLIR] Add generic MLIR pass registration mechanism.
PiperOrigin-RevId: 300198093
Change-Id: I462e5c4096519f382271e4cc6734b28fa7fd2034
2020-03-10 16:04:53 -07:00

34 lines
1.2 KiB
C++

/* Copyright 2019 The TensorFlow Authors. All Rights Reserved.
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
http://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.
==============================================================================*/
#include <memory>
#include "tensorflow/compiler/tf2xla/mlir_bridge_pass.h"
namespace tensorflow {
namespace {
constexpr int kMlirBridgePriority = 10;
}
static mlir_pass_registration::MlirOptimizationPassRegistration
register_mlir_bridge_pass(kMlirBridgePriority,
std::make_unique<MlirBridgePass>());
static mlir_pass_registration::MlirV1CompatOptimizationPassRegistration
register_v1_compat_mlir_bridge_pass(
kMlirBridgePriority, std::make_unique<MlirBridgeV1CompatPass>());
} // namespace tensorflow