### Description This PR builds on #99872. It implements a minimal version of function body vector unrolling to convert vector types into 1D and with a size supported by SPIR-V (2, 3 or 4 depending on the original dimension). The ops that are currently supported include those with elementwise traits (e.g. `arith.addi`), `vector.reduction` and `vector.transpose`. This PR also includes new LIT tests that only check for vector unrolling. ### Future Plans - Support more ops --------- Co-authored-by: Jakub Kuderski <kubakuderski@gmail.com>
81 lines
3.1 KiB
C++
81 lines
3.1 KiB
C++
//===- ConvertToSPIRVPass.cpp - MLIR SPIR-V Conversion --------------------===//
|
|
//
|
|
// 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/ConvertToSPIRV/ConvertToSPIRVPass.h"
|
|
#include "mlir/Conversion/ArithToSPIRV/ArithToSPIRV.h"
|
|
#include "mlir/Conversion/FuncToSPIRV/FuncToSPIRV.h"
|
|
#include "mlir/Conversion/IndexToSPIRV/IndexToSPIRV.h"
|
|
#include "mlir/Conversion/SCFToSPIRV/SCFToSPIRV.h"
|
|
#include "mlir/Conversion/UBToSPIRV/UBToSPIRV.h"
|
|
#include "mlir/Conversion/VectorToSPIRV/VectorToSPIRV.h"
|
|
#include "mlir/Dialect/Arith/Transforms/Passes.h"
|
|
#include "mlir/Dialect/SPIRV/IR/SPIRVAttributes.h"
|
|
#include "mlir/Dialect/SPIRV/IR/SPIRVDialect.h"
|
|
#include "mlir/Dialect/SPIRV/Transforms/SPIRVConversion.h"
|
|
#include "mlir/Dialect/Vector/IR/VectorOps.h"
|
|
#include "mlir/Dialect/Vector/Transforms/LoweringPatterns.h"
|
|
#include "mlir/Dialect/Vector/Transforms/VectorRewritePatterns.h"
|
|
#include "mlir/IR/PatternMatch.h"
|
|
#include "mlir/Pass/Pass.h"
|
|
#include "mlir/Rewrite/FrozenRewritePatternSet.h"
|
|
#include "mlir/Transforms/DialectConversion.h"
|
|
#include "mlir/Transforms/GreedyPatternRewriteDriver.h"
|
|
#include <memory>
|
|
|
|
#define DEBUG_TYPE "convert-to-spirv"
|
|
|
|
namespace mlir {
|
|
#define GEN_PASS_DEF_CONVERTTOSPIRVPASS
|
|
#include "mlir/Conversion/Passes.h.inc"
|
|
} // namespace mlir
|
|
|
|
using namespace mlir;
|
|
|
|
namespace {
|
|
|
|
/// A pass to perform the SPIR-V conversion.
|
|
struct ConvertToSPIRVPass final
|
|
: impl::ConvertToSPIRVPassBase<ConvertToSPIRVPass> {
|
|
using ConvertToSPIRVPassBase::ConvertToSPIRVPassBase;
|
|
|
|
void runOnOperation() override {
|
|
Operation *op = getOperation();
|
|
MLIRContext *context = &getContext();
|
|
|
|
// Unroll vectors in function signatures to native size.
|
|
if (runSignatureConversion && failed(spirv::unrollVectorsInSignatures(op)))
|
|
return signalPassFailure();
|
|
|
|
// Unroll vectors in function bodies to native size.
|
|
if (runVectorUnrolling && failed(spirv::unrollVectorsInFuncBodies(op)))
|
|
return signalPassFailure();
|
|
|
|
spirv::TargetEnvAttr targetAttr = spirv::lookupTargetEnvOrDefault(op);
|
|
std::unique_ptr<ConversionTarget> target =
|
|
SPIRVConversionTarget::get(targetAttr);
|
|
SPIRVTypeConverter typeConverter(targetAttr);
|
|
RewritePatternSet patterns(context);
|
|
ScfToSPIRVContext scfToSPIRVContext;
|
|
|
|
// Populate patterns for each dialect.
|
|
arith::populateCeilFloorDivExpandOpsPatterns(patterns);
|
|
arith::populateArithToSPIRVPatterns(typeConverter, patterns);
|
|
populateBuiltinFuncToSPIRVPatterns(typeConverter, patterns);
|
|
populateFuncToSPIRVPatterns(typeConverter, patterns);
|
|
index::populateIndexToSPIRVPatterns(typeConverter, patterns);
|
|
populateVectorToSPIRVPatterns(typeConverter, patterns);
|
|
populateSCFToSPIRVPatterns(typeConverter, scfToSPIRVContext, patterns);
|
|
ub::populateUBToSPIRVConversionPatterns(typeConverter, patterns);
|
|
|
|
if (failed(applyPartialConversion(op, *target, std::move(patterns))))
|
|
return signalPassFailure();
|
|
}
|
|
};
|
|
|
|
} // namespace
|