1 | //===- TensorToSPIRVPass.cpp - Tensor to SPIR-V Passes ----------------===// |
2 | // |
3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
4 | // See https://llvm.org/LICENSE.txt for license information. |
5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
6 | // |
7 | //===----------------------------------------------------------------------===// |
8 | // |
9 | // This file implements a pass to convert Tensor dialect to SPIR-V dialect. |
10 | // |
11 | //===----------------------------------------------------------------------===// |
12 | |
13 | #include "mlir/Conversion/TensorToSPIRV/TensorToSPIRVPass.h" |
14 | |
15 | #include "mlir/Conversion/ArithToSPIRV/ArithToSPIRV.h" |
16 | #include "mlir/Conversion/FuncToSPIRV/FuncToSPIRV.h" |
17 | #include "mlir/Conversion/TensorToSPIRV/TensorToSPIRV.h" |
18 | #include "mlir/Dialect/SPIRV/IR/SPIRVDialect.h" |
19 | #include "mlir/Dialect/SPIRV/Transforms/SPIRVConversion.h" |
20 | |
21 | namespace mlir { |
22 | #define GEN_PASS_DEF_CONVERTTENSORTOSPIRVPASS |
23 | #include "mlir/Conversion/Passes.h.inc" |
24 | } // namespace mlir |
25 | |
26 | using namespace mlir; |
27 | |
28 | namespace { |
29 | /// A pass converting MLIR Tensor operations into the SPIR-V dialect. |
30 | class ConvertTensorToSPIRVPass |
31 | : public impl::ConvertTensorToSPIRVPassBase<ConvertTensorToSPIRVPass> { |
32 | using Base::Base; |
33 | |
34 | void runOnOperation() override { |
35 | MLIRContext *context = &getContext(); |
36 | Operation *op = getOperation(); |
37 | |
38 | auto targetAttr = spirv::lookupTargetEnvOrDefault(op); |
39 | std::unique_ptr<ConversionTarget> target = |
40 | SPIRVConversionTarget::get(targetAttr); |
41 | |
42 | SPIRVConversionOptions options; |
43 | options.emulateLT32BitScalarTypes = this->emulateLT32BitScalarTypes; |
44 | SPIRVTypeConverter typeConverter(targetAttr, options); |
45 | |
46 | RewritePatternSet patterns(context); |
47 | arith::populateArithToSPIRVPatterns(typeConverter, patterns); |
48 | populateFuncToSPIRVPatterns(typeConverter, patterns); |
49 | populateTensorToSPIRVPatterns(typeConverter, /*byteCountThreshold=*/64, |
50 | patterns); |
51 | populateBuiltinFuncToSPIRVPatterns(typeConverter, patterns); |
52 | |
53 | if (failed(applyPartialConversion(op, *target, std::move(patterns)))) |
54 | return signalPassFailure(); |
55 | } |
56 | }; |
57 | } // namespace |
58 | |