blob: 8862411f6dff9c8554abe1934335008d153af184 [file] [log] [blame]
/* Copyright 2022 OpenXLA 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 <utility>
#include "mlir/Dialect/Tosa/IR/TosaOps.h"
#include "mlir/IR/BuiltinAttributes.h"
#include "mlir/Transforms/GreedyPatternRewriteDriver.h"
#include "stablehlo/conversions/tosa/transforms/passes.h"
#include "stablehlo/dialect/StablehloOps.h"
#define GEN_PASS_DEF_TOSAPREPARESTABLEHLOPASS
#include "stablehlo/conversions/tosa/transforms/passes.h.inc"
#define PASS_NAME "tosa-prepare-stablehlo"
#define DEBUG_TYPE PASS_NAME
namespace mlir {
namespace tosa {
namespace {
class PrepareStablehlo
: public ::impl::TosaPrepareStablehloPassBase<PrepareStablehlo> {
public:
explicit PrepareStablehlo() = default;
void runOnOperation() override;
};
void PrepareStablehlo::runOnOperation() {
auto* ctx = &getContext();
RewritePatternSet patterns(ctx);
// Currently these equivalents are not available here.
// TODO: Enable post upstreaming decision.
// stablehlo::DotGeneralOp::getCanonicalizationPatterns(patterns, ctx);
// stablehlo::populateGeneralDotOpLoweringPatterns(&patterns, ctx);
(void)applyPatternsAndFoldGreedily(getOperation(), std::move(patterns));
}
} // namespace
std::unique_ptr<OperationPass<func::FuncOp>> createPrepareStablehloPass() {
return std::make_unique<PrepareStablehlo>();
}
} // namespace tosa
} // namespace mlir