blob: e4e244e0a436d472d7d913acea9d7a2387b1d614 [file] [log] [blame]
/* Copyright 2021 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.
==============================================================================*/
// This file contains the patterns to convert std.index_cast on tensors to
// tensor ops and index_cast on scalars.
#include <utility>
#include "mlir-hlo/Transforms/PassDetail.h"
#include "mlir-hlo/Transforms/passes.h"
#include "mlir/Dialect/Arithmetic/IR/Arithmetic.h"
#include "mlir/Dialect/Func/IR/FuncOps.h"
#include "mlir/Dialect/Tensor/IR/Tensor.h"
#include "mlir/IR/PatternMatch.h"
#include "mlir/Transforms/GreedyPatternRewriteDriver.h"
namespace mlir {
namespace {
// index_cast is not defined on tensors, so lower it to a tensor.generate.
struct IndexCastConverter : public OpRewritePattern<arith::IndexCastOp> {
public:
using OpRewritePattern::OpRewritePattern;
LogicalResult matchAndRewrite(arith::IndexCastOp op,
PatternRewriter &rewriter) const final {
// Only rank 1 is supported for now.
auto result_ty = op.getType().dyn_cast<ShapedType>();
if (!result_ty || result_ty.getRank() != 1) return failure();
rewriter.replaceOpWithNewOp<tensor::GenerateOp>(
op, op.getType(),
result_ty.hasStaticShape() ? ValueRange{}
: ValueRange{rewriter.create<tensor::DimOp>(
op.getLoc(), op.getIn(), 0)},
[&](OpBuilder &b, Location loc, ValueRange args) {
Value dim = args.front();
Value extent = b.create<tensor::ExtractOp>(loc, op.getIn(), dim);
Value casted = b.create<arith::IndexCastOp>(
loc, result_ty.getElementType(), extent);
b.create<tensor::YieldOp>(loc, casted);
});
return success();
}
};
struct LowerIndexCastPass : public LowerIndexCastPassBase<LowerIndexCastPass> {
void getDependentDialects(DialectRegistry &registry) const override {
registry.insert<tensor::TensorDialect>();
}
void runOnOperation() override {
RewritePatternSet patterns(&getContext());
patterns.add<IndexCastConverter>(patterns.getContext());
if (failed(
applyPatternsAndFoldGreedily(getOperation(), std::move(patterns))))
return signalPassFailure();
}
};
} // namespace
std::unique_ptr<OperationPass<func::FuncOp>> CreateLowerIndexCastPass() {
return std::make_unique<LowerIndexCastPass>();
}
} // namespace mlir