//===----------------------------------------------------------------------===// // // 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 "npcomp/Conversion/ATenToTCF/Passes.h" #include "../PassDetail.h" #include "mlir/Transforms/GreedyPatternRewriteDriver.h" #include "npcomp/Conversion/ATenToTCF/Patterns.h" #include "npcomp/Dialect/TCF/IR/TCFDialect.h" using namespace mlir; using namespace mlir::NPCOMP; namespace { class ConvertATenToTCF : public ConvertATenToTCFBase { public: void getDependentDialects(DialectRegistry ®istry) const override { registry.insert(); } void runOnOperation() override { FuncOp funcOp = getOperation(); MLIRContext *context = &getContext(); OwningRewritePatternList patterns; populateCoreATenToTCFPatterns(context, patterns); (void)applyPatternsAndFoldGreedily(funcOp, std::move(patterns)); } }; } // namespace std::unique_ptr> mlir::NPCOMP::createConvertATenToTCFPass() { return std::make_unique(); }