//===----------------------------------------------------------------------===// // // 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 // Also available under a BSD-style license. See LICENSE. // //===----------------------------------------------------------------------===// #include "torch-mlir/Dialect/TorchConversion/Transforms/Passes.h" #include "mlir/Dialect/Linalg/Passes.h" #include "mlir/Dialect/MemRef/Transforms/Passes.h" #include "mlir/Dialect/StandardOps/Transforms/Passes.h" #include "mlir/Pass/PassManager.h" #include "mlir/Transforms/Passes.h" #include "torch-mlir/Conversion/TorchToLinalg/TorchToLinalg.h" #include "torch-mlir/Conversion/TorchToSCF/TorchToSCF.h" #include "torch-mlir/Conversion/TorchToStd/TorchToStd.h" #include "torch-mlir/Dialect/Torch/Transforms/Passes.h" using namespace mlir; using namespace mlir::torch; using namespace mlir::torch; //===----------------------------------------------------------------------===// // Pass registration //===----------------------------------------------------------------------===// namespace { #define GEN_PASS_REGISTRATION #include "torch-mlir/Dialect/TorchConversion/Transforms/Passes.h.inc" } // end namespace void mlir::torch::registerTorchConversionPasses() { ::registerPasses(); mlir::PassPipelineRegistration( "torchscript-module-to-linalg-on-tensors-backend-pipeline", "Pipeline lowering torch object graph representing a torch.jit.ScriptModule to linalg-on-tensors backend format.", TorchConversion::createTorchScriptModuleToLinalgOnTensorsBackendPipeline); mlir::PassPipelineRegistration( "torchscript-function-to-linalg-on-tensors-backend-pipeline", "Pipeline lowering a flat list of functions representing a torch.jit.ScriptFunction to linalg-on-tensors backend format.", TorchConversion::createTorchScriptFunctionToLinalgOnTensorsBackendPipeline); } static void createTorchBackendToLinalgOnTensorsBackendPipeline( OpPassManager &pm, const Torch::TorchLoweringPipelineOptions &options) { // Check some invariants to catch errors in a clear way. pm.addPass( TorchConversion::createVerifyInvariantsBeforeBackendLoweringPass()); // Lower to linalg + guards which is the input to codegen backends. // We do this first as it tends to involve pattern-matching against constants, // (e.g. dimensions which must be constant in a ranked programming model) // and those constants get somewhat obscured by TorchToStd. pm.addNestedPass(createConvertTorchToLinalgPass()); pm.addNestedPass(createConvertTorchToStdPass()); pm.addNestedPass(createConvertTorchToSCFPass()); pm.addNestedPass(createStdExpandOpsPass()); if (options.optimize) { // Clean up any non-canonical code introduced above.. pm.addNestedPass(createCanonicalizerPass()); // Resolve `dim` ops on tensors (which currently live in the `memref` // dialect for some reason -- we don't have memrefs at this level). pm.addNestedPass(memref::createResolveShapedTypeResultDimsPass()); // The resolution of `dim` ops tends to create identical ops. CSE them. pm.addNestedPass(createCSEPass()); } // Finish the type conversion from `torch` types to the types of the // linalg-on-tensors backend contract. pm.addPass(TorchConversion::createFuncBackendTypeConversionPass()); pm.addNestedPass( TorchConversion::createFinalizingBackendTypeConversionPass()); // Verify that we have lowered to the form that linalg on tensors backends // expect. This fails compilation (signalPassFailure) if the IR is not in the // correct form. pm.addPass(TorchConversion::createVerifyLinalgOnTensorsBackendContractPass()); } void TorchConversion::createTorchScriptModuleToLinalgOnTensorsBackendPipeline( OpPassManager &pm, const Torch::TorchLoweringPipelineOptions &options) { // Conversion to the linalg-on-tensors backend contract starts from the Torch // backend contract. Torch::createTorchScriptToTorchBackendPipeline(pm, options); createTorchBackendToLinalgOnTensorsBackendPipeline(pm, options); } void TorchConversion::createTorchScriptFunctionToLinalgOnTensorsBackendPipeline( OpPassManager &pm, const Torch::TorchLoweringPipelineOptions &options) { // Conversion to the linalg-on-tensors backend contract starts from the Torch // backend contract. Torch::createGlobalizedModuleToTorchBackendPipeline(pm, options); createTorchBackendToLinalgOnTensorsBackendPipeline(pm, options); }