This revision adds support for generating utilities for passes such as options/statistics/etc. that can be inferred from the tablegen definition. This removes additional boilerplate from the pass, and also makes it easier to remove the reliance on the pass registry to provide certain things(e.g. the pass argument). Differential Revision: https://reviews.llvm.org/D76659
53 lines
1.8 KiB
C++
53 lines
1.8 KiB
C++
//===- LinalgToSPIRVPass.cpp - Linalg to SPIR-V conversion pass -----------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "mlir/Conversion/LinalgToSPIRV/LinalgToSPIRVPass.h"
|
|
#include "mlir/Conversion/LinalgToSPIRV/LinalgToSPIRV.h"
|
|
#include "mlir/Dialect/SPIRV/SPIRVDialect.h"
|
|
#include "mlir/Dialect/SPIRV/SPIRVLowering.h"
|
|
#include "mlir/Pass/Pass.h"
|
|
|
|
using namespace mlir;
|
|
|
|
namespace {
|
|
/// A pass converting MLIR Linalg ops into SPIR-V ops.
|
|
class LinalgToSPIRVPass : public ModulePass<LinalgToSPIRVPass> {
|
|
/// Include the generated pass utilities.
|
|
#define GEN_PASS_ConvertLinalgToSPIRV
|
|
#include "mlir/Conversion/Passes.h.inc"
|
|
|
|
void runOnModule() override;
|
|
};
|
|
} // namespace
|
|
|
|
void LinalgToSPIRVPass::runOnModule() {
|
|
MLIRContext *context = &getContext();
|
|
ModuleOp module = getModule();
|
|
|
|
auto targetAttr = spirv::lookupTargetEnvOrDefault(module);
|
|
std::unique_ptr<ConversionTarget> target =
|
|
spirv::SPIRVConversionTarget::get(targetAttr);
|
|
|
|
SPIRVTypeConverter typeConverter(targetAttr);
|
|
OwningRewritePatternList patterns;
|
|
populateLinalgToSPIRVPatterns(context, typeConverter, patterns);
|
|
populateBuiltinFuncToSPIRVPatterns(context, typeConverter, patterns);
|
|
|
|
// Allow builtin ops.
|
|
target->addLegalOp<ModuleOp, ModuleTerminatorOp>();
|
|
target->addDynamicallyLegalOp<FuncOp>(
|
|
[&](FuncOp op) { return typeConverter.isSignatureLegal(op.getType()); });
|
|
|
|
if (failed(applyFullConversion(module, *target, patterns)))
|
|
return signalPassFailure();
|
|
}
|
|
|
|
std::unique_ptr<OpPassBase<ModuleOp>> mlir::createLinalgToSPIRVPass() {
|
|
return std::make_unique<LinalgToSPIRVPass>();
|
|
}
|