blob: d7698cf026231598d77615be6128bb61d624b278 [file] [log] [blame]
/* 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 "mlir/IR/PatternMatch.h" // from @llvm-project
#include "mlir/Pass/Pass.h" // from @llvm-project
#include "mlir/Transforms/GreedyPatternRewriteDriver.h" // from @llvm-project
#include "tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.h"
#include "tensorflow/compiler/mlir/tensorflow/transforms/test_passes_detail.h"
namespace mlir {
namespace tf_test {
namespace {
// Lowers some of the TensorFlow operations that can be represented using other
// TensorFlow operations.
struct LowerTF : public TestTensorFlowLowerTFPassBase<LowerTF> {
void runOnOperation() override {
// Add lowering patterns to the list.
RewritePatternSet patterns(&getContext());
if (default_patterns_) {
mlir::TF::PopulateLoweringTFPatterns(&getContext(), &patterns);
}
if (pre_hlo_patterns_) {
mlir::TF::PopulateTFLoweringBeforeHLOPatterns(&getContext(), &patterns);
}
(void)applyPatternsAndFoldGreedily(getOperation(), std::move(patterns));
}
};
} // namespace
std::unique_ptr<OperationPass<func::FuncOp>> CreateTestTFLowerTFPass() {
return std::make_unique<LowerTF>();
}
} // namespace tf_test
} // namespace mlir