2019-11-27 02:55:44 +08:00
|
|
|
//====- lower_frontend_to_krnl.cpp - Frontend dialects to Krnl lowering ---===//
|
|
|
|
//
|
2019-12-21 14:12:21 +08:00
|
|
|
// Copyright 2019 The IBM Research Authors.
|
2019-11-27 02:55:44 +08:00
|
|
|
//
|
|
|
|
// =============================================================================
|
|
|
|
//
|
|
|
|
// This file implements the lowering of frontend operations to a combination of
|
|
|
|
// Krnl IR and standard operations.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/ADT/ArrayRef.h"
|
|
|
|
#include "llvm/ADT/Sequence.h"
|
|
|
|
#include "mlir/Dialect/AffineOps/AffineOps.h"
|
|
|
|
#include "mlir/Dialect/StandardOps/Ops.h"
|
|
|
|
#include "mlir/Pass/Pass.h"
|
|
|
|
#include "mlir/Transforms/DialectConversion.h"
|
|
|
|
|
2019-11-28 11:56:34 +08:00
|
|
|
#include "src/compiler/dialect/krnl/krnl_helper.hpp"
|
2019-11-27 02:55:44 +08:00
|
|
|
#include "src/compiler/dialect/krnl/krnl_ops.hpp"
|
|
|
|
#include "src/compiler/dialect/onnx/onnx_ops.hpp"
|
|
|
|
|
|
|
|
#include "src/compiler/pass/passes.hpp"
|
|
|
|
|
|
|
|
using namespace mlir;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// FrontendToAffine RewritePatterns
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
/// Check is all dimensions are known at compile time.
|
|
|
|
static bool hasAllConstantDimensions(MemRefType type) {
|
|
|
|
auto memRefShape = type.getShape();
|
|
|
|
for (int i = 0; i < memRefShape.size(); ++i)
|
|
|
|
if (memRefShape[i] < 0)
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Convert the given TensorType into the corresponding MemRefType.
|
|
|
|
static MemRefType convertTensorToMemRef(TensorType type) {
|
|
|
|
assert(type.hasRank() && "expected only ranked shapes");
|
|
|
|
return MemRefType::get(type.getShape(), type.getElementType());
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Insert an allocation and deallocation for the given MemRefType.
|
2019-11-28 12:52:05 +08:00
|
|
|
static Value* insertAllocAndDealloc(
|
|
|
|
MemRefType type, Location loc, PatternRewriter& rewriter,
|
|
|
|
bool insertDealloc, Value *oldMemRef = nullptr) {
|
2019-11-27 02:55:44 +08:00
|
|
|
// Put together alloc operands for any dynamic dimensions of the memref.
|
|
|
|
AllocOp alloc;
|
|
|
|
if (oldMemRef) {
|
2019-11-28 11:56:34 +08:00
|
|
|
SmallVector<Value*, 4> allocOperands;
|
2019-11-27 02:55:44 +08:00
|
|
|
auto memRefShape = type.getShape();
|
|
|
|
for (int i = 0; i < memRefShape.size(); ++i)
|
|
|
|
if (memRefShape[i] < 0)
|
|
|
|
allocOperands.push_back(rewriter.create<DimOp>(loc, oldMemRef, i));
|
|
|
|
alloc = rewriter.create<AllocOp>(loc, type, allocOperands);
|
|
|
|
} else {
|
|
|
|
alloc = rewriter.create<AllocOp>(loc, type);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure to allocate at the beginning of the block if
|
|
|
|
// all dimensions are known.
|
|
|
|
auto* parentBlock = alloc.getOperation()->getBlock();
|
|
|
|
if (hasAllConstantDimensions(type))
|
|
|
|
alloc.getOperation()->moveBefore(&parentBlock->front());
|
|
|
|
|
2019-11-28 12:52:05 +08:00
|
|
|
if (insertDealloc) {
|
|
|
|
auto dealloc = rewriter.create<DeallocOp>(loc, alloc);
|
|
|
|
dealloc.getOperation()->moveBefore(&parentBlock->back());
|
|
|
|
}
|
|
|
|
|
2019-11-27 02:55:44 +08:00
|
|
|
return alloc;
|
|
|
|
}
|
|
|
|
|
2019-11-28 12:52:05 +08:00
|
|
|
// Determine if current function returns the result value of the
|
|
|
|
// current op being lowered. If it does then dealloc should not be
|
|
|
|
// inserted.
|
|
|
|
static bool checkInsertDealloc(Operation *currentOp) {
|
|
|
|
auto parentBlock = currentOp->getBlock();
|
|
|
|
|
|
|
|
bool insertDealloc = true;
|
|
|
|
parentBlock->walk([&insertDealloc, currentOp](ReturnOp op) {
|
|
|
|
assert(currentOp->getNumResults() < 2 &&
|
|
|
|
"No more than one result supported (for now).");
|
|
|
|
// If there is at least one result to investigate.
|
|
|
|
if (currentOp->getNumResults() > 0) {
|
|
|
|
auto result = currentOp->getResult(0);
|
|
|
|
for(auto operand : op.getOperands())
|
|
|
|
if (operand == result)
|
|
|
|
insertDealloc = false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return insertDealloc;
|
|
|
|
}
|
|
|
|
|
2019-11-27 02:55:44 +08:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
2019-11-29 03:52:29 +08:00
|
|
|
// Binary ops lowering to Krnl dialect.
|
2019-11-27 02:55:44 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2019-11-29 03:52:29 +08:00
|
|
|
template <typename BinaryOp, typename LoweredBinaryOp>
|
|
|
|
struct ONNXBinaryOpLowering : public ConversionPattern {
|
|
|
|
ONNXBinaryOpLowering(MLIRContext* ctx)
|
|
|
|
: ConversionPattern(BinaryOp::getOperationName(), 1, ctx) {}
|
2019-11-27 02:55:44 +08:00
|
|
|
|
|
|
|
PatternMatchResult matchAndRewrite(Operation* op, ArrayRef<Value*> operands,
|
|
|
|
ConversionPatternRewriter& rewriter) const final {
|
|
|
|
// TODO: Check that the types are valid.
|
|
|
|
// Add is an operation that must have all operands and the result of
|
|
|
|
// the same type. This should have been verified by the verifier.
|
|
|
|
auto tensorType = (*op->result_type_begin()).cast<TensorType>();
|
|
|
|
auto loc = op->getLoc();
|
|
|
|
|
|
|
|
// Insert an allocation and deallocation for the result of this operation.
|
|
|
|
auto memRefType = convertTensorToMemRef(tensorType);
|
|
|
|
|
|
|
|
// If the output has a dynamic dimension, pass the operands required for
|
|
|
|
// each dynamic dimension to the AllocOp. The first operand of the Add
|
|
|
|
// operation is used. The operands of the Add need to match in terms of
|
|
|
|
// dimensions with the result at this pre-optimization phase.
|
|
|
|
// TODO: verify that dimensions match.
|
|
|
|
// TODO: can the dimension of the result differ after optimizations?
|
2019-11-28 12:52:05 +08:00
|
|
|
Value *alloc;
|
|
|
|
bool insertDealloc = checkInsertDealloc(op);
|
|
|
|
|
2019-11-27 02:55:44 +08:00
|
|
|
if (hasAllConstantDimensions(memRefType))
|
2019-11-28 12:52:05 +08:00
|
|
|
alloc = insertAllocAndDealloc(
|
|
|
|
memRefType, loc, rewriter, insertDealloc);
|
2019-11-27 02:55:44 +08:00
|
|
|
else
|
2019-11-28 12:52:05 +08:00
|
|
|
alloc = insertAllocAndDealloc(
|
|
|
|
memRefType, loc, rewriter, insertDealloc, operands[0]);
|
2019-11-27 02:55:44 +08:00
|
|
|
|
|
|
|
// Number of loops
|
|
|
|
auto memRefShape = memRefType.getShape();
|
|
|
|
int64_t rank = memRefShape.size();
|
|
|
|
|
|
|
|
// Define loops.
|
|
|
|
auto loopsOp = rewriter.create<KrnlDefineLoopsOp>(loc, rank);
|
|
|
|
std::vector<Value*> originalLoops;
|
|
|
|
originalLoops.reserve(rank);
|
|
|
|
for (auto result : loopsOp.getResults()) {
|
|
|
|
originalLoops.push_back(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Define loop optimization.
|
|
|
|
auto optimizedLoopsOp = rewriter.create<KrnlOptimizeLoopsOp>(loc, rank);
|
|
|
|
std::vector<Value*> optimizedLoops;
|
|
|
|
optimizedLoops.reserve(rank);
|
|
|
|
for (auto result : optimizedLoopsOp.getResults()) {
|
|
|
|
optimizedLoops.push_back(result);
|
|
|
|
}
|
|
|
|
Block& optimizationBlock = optimizedLoopsOp.region().front();
|
|
|
|
|
2019-11-28 11:56:34 +08:00
|
|
|
KrnlIterateOperandPack pack(rewriter, originalLoops, optimizedLoops);
|
2019-11-27 02:55:44 +08:00
|
|
|
// Iterate over the loop nest.
|
|
|
|
// TODO (Tian): move this logic inside KrnlIterateOp. Pass MemRefShape
|
|
|
|
// to KrnlIterateOp instead.
|
|
|
|
for (int i = 0; i < rank; ++i) {
|
|
|
|
if (memRefShape[i] < 0) {
|
2019-11-28 11:56:34 +08:00
|
|
|
pack.pushConstantBound(0);
|
|
|
|
pack.pushOperandBound(
|
2019-11-27 02:55:44 +08:00
|
|
|
rewriter.create<DimOp>(loc, operands[0], i).getResult());
|
|
|
|
} else {
|
2019-11-28 11:56:34 +08:00
|
|
|
pack.pushConstantBound(0);
|
|
|
|
pack.pushConstantBound(memRefShape[i]);
|
2019-11-27 02:55:44 +08:00
|
|
|
}
|
|
|
|
}
|
2019-11-28 11:56:34 +08:00
|
|
|
|
|
|
|
auto iterateOp = rewriter.create<KrnlIterateOp>(loc, pack);
|
2019-11-27 02:55:44 +08:00
|
|
|
Block& iterationBlock = iterateOp.bodyRegion().front();
|
|
|
|
|
|
|
|
// Now perform the insertions into the body of the
|
|
|
|
// just generated instructions:
|
|
|
|
|
|
|
|
// 1. Insert any optimizations in the KrnlOptimizeLoopsOp body.
|
|
|
|
rewriter.setInsertionPointToEnd(&optimizationBlock);
|
|
|
|
// Return from KrnlOptimizeLoopsOp body.
|
|
|
|
// When no optimizations are present we just return the loops
|
|
|
|
// unchaged.
|
|
|
|
rewriter.create<KrnlReturnLoopsOp>(loc, originalLoops);
|
|
|
|
rewriter.setInsertionPoint(optimizedLoopsOp);
|
|
|
|
|
|
|
|
// 2. Insert instructions inside the KernelIterateOp body.
|
|
|
|
rewriter.setInsertionPointToStart(&iterationBlock);
|
|
|
|
|
|
|
|
// Handle AddOp:
|
|
|
|
SmallVector<Value*, 4> loopIVs;
|
|
|
|
for (auto arg : iterationBlock.getArguments())
|
|
|
|
loopIVs.push_back(arg);
|
2019-11-28 11:56:34 +08:00
|
|
|
auto loadedFirstVal = rewriter.create<LoadOp>(loc, operands[0], loopIVs);
|
|
|
|
auto loadedSecondVal = rewriter.create<LoadOp>(loc, operands[1], loopIVs);
|
2019-11-27 02:55:44 +08:00
|
|
|
|
|
|
|
// TODO: Choose type of the Add for now use the Float Add.
|
2019-11-29 03:52:29 +08:00
|
|
|
auto loweredOpResult =
|
|
|
|
rewriter.create<LoweredBinaryOp>(loc, loadedFirstVal, loadedSecondVal);
|
2019-11-27 02:55:44 +08:00
|
|
|
|
|
|
|
// Store result in the resulting array.
|
2019-11-29 03:52:29 +08:00
|
|
|
rewriter.create<StoreOp>(loc, loweredOpResult, alloc, loopIVs);
|
2019-11-27 02:55:44 +08:00
|
|
|
|
|
|
|
rewriter.replaceOp(op, alloc);
|
|
|
|
|
|
|
|
return matchSuccess();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-11-29 03:52:29 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// AddOp lowering to Krnl dialect.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
using ONNXAddOpLowering = ONNXBinaryOpLowering<mlir::ONNXAddOp, AddFOp>;
|
|
|
|
|
2019-11-27 02:55:44 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Conversion from Tensor type to the Standard dialect MemRef type.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
struct TensorTypeConverter : public TypeConverter {
|
|
|
|
using TypeConverter::TypeConverter;
|
|
|
|
|
|
|
|
LogicalResult convertType(Type t, SmallVectorImpl<Type>& results) override {
|
|
|
|
if (auto tensor_type = t.dyn_cast<TensorType>()) {
|
|
|
|
results.push_back(convertTensorToMemRef(tensor_type));
|
|
|
|
return success();
|
|
|
|
}
|
|
|
|
|
|
|
|
results.push_back(t);
|
|
|
|
return success();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Return true if the inputs and outputs of the given function type are
|
|
|
|
/// legal. [Taken from MLIR and adapted to only check the legality of the
|
|
|
|
/// inputs. Once unranked results can be handled gracefully this
|
|
|
|
/// override needs to be removed in favour of the original MLIR one.]
|
|
|
|
bool isSignatureLegal(FunctionType funcType) {
|
2019-11-28 11:56:34 +08:00
|
|
|
return llvm::all_of(
|
|
|
|
funcType.getInputs(), [this](Type type) { return isLegal(type); });
|
2019-11-27 02:55:44 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // end anonymous namespace.
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Frontend to Krnl Dialect lowering pass
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
/// This is a partial lowering to Krnl loops of the ONNX operations.
|
|
|
|
namespace {
|
|
|
|
struct FrontendToKrnlLoweringPass
|
|
|
|
: public ModulePass<FrontendToKrnlLoweringPass> {
|
|
|
|
void runOnModule() final;
|
|
|
|
};
|
|
|
|
} // end anonymous namespace.
|
|
|
|
|
|
|
|
void FrontendToKrnlLoweringPass::runOnModule() {
|
|
|
|
auto module = getModule();
|
|
|
|
|
|
|
|
// The first thing to define is the conversion target. This will define the
|
|
|
|
// final target for this lowering.
|
|
|
|
ConversionTarget target(getContext());
|
|
|
|
|
|
|
|
// We define the specific operations, or dialects, that are legal targets for
|
|
|
|
// this lowering.
|
|
|
|
target
|
|
|
|
.addLegalDialect<KrnlOpsDialect, AffineOpsDialect, StandardOpsDialect>();
|
|
|
|
|
|
|
|
// TODO: enable this once more ops are supported.
|
|
|
|
// We also define the ONNX dialect as Illegal so that the conversion will fail
|
|
|
|
// if any of these operations are *not* converted.
|
|
|
|
// target.addIllegalDialect<mlir::ONNXOpsDialect>();
|
|
|
|
|
|
|
|
// TODO: add any other ops which are considered legal.
|
|
|
|
// Some operations can be marked as being still legal.
|
|
|
|
// Example: target.addLegalOp<mlir::OpName>();
|
|
|
|
|
|
|
|
// Now that the conversion target has been defined, we just need to provide
|
|
|
|
// the set of patterns that will lower the frontend operations.
|
|
|
|
OwningRewritePatternList patterns;
|
|
|
|
|
|
|
|
// Convert TensorType to MemRef
|
|
|
|
TensorTypeConverter tensor_to_memref_converter;
|
|
|
|
target.addDynamicallyLegalOp<FuncOp>([&](FuncOp op) {
|
|
|
|
// FuncOp is legal only if types have been converted to Std types.
|
|
|
|
return tensor_to_memref_converter.isSignatureLegal(op.getType());
|
|
|
|
});
|
|
|
|
|
|
|
|
// Type conversion for function signatures.
|
|
|
|
// Call MLIR FuncOp signature conversion when result type is
|
|
|
|
// a ranked tensor.
|
|
|
|
populateFuncOpTypeConversionPattern(
|
|
|
|
patterns, &getContext(), tensor_to_memref_converter);
|
|
|
|
|
|
|
|
// Frontent operation lowering.
|
|
|
|
patterns.insert<ONNXAddOpLowering>(&getContext());
|
|
|
|
|
|
|
|
// With the target and rewrite patterns defined, we can now attempt the
|
|
|
|
// conversion. The conversion will signal failure if any of our `illegal`
|
|
|
|
// operations were not converted successfully.
|
2019-11-28 11:56:34 +08:00
|
|
|
if (failed(applyPartialConversion(module, target, patterns)))
|
2019-11-27 02:55:44 +08:00
|
|
|
signalPassFailure();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::unique_ptr<Pass> mlir::createLowerToKrnlPass() {
|
|
|
|
return std::make_unique<FrontendToKrnlLoweringPass>();
|
|
|
|
}
|
2019-11-27 08:29:18 +08:00
|
|
|
|
|
|
|
static PassRegistration<FrontendToKrnlLoweringPass> pass(
|
|
|
|
"lower-frontend", "Lower frontend ops to Krnl dialect.");
|