MLIR 22.0.0git
TosaToSCF.h
Go to the documentation of this file.
1//===-- TosaToSCF.h - TOSA to SCF dialect lowerings -------------*- C++ -*-===//
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 declares the passes for the TOSA to SCF Dialect conversion.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef MLIR_CONVERSION_TOSATOSCF_TOSATOSCF_H
14#define MLIR_CONVERSION_TOSATOSCF_TOSATOSCF_H
15
16#include "mlir/Pass/Pass.h"
17
18namespace mlir {
19
20#define GEN_PASS_DECL_TOSATOSCFPASS
21#include "mlir/Conversion/Passes.h.inc"
22
23namespace tosa {
24
25void populateTosaToSCFConversionPatterns(RewritePatternSet *patterns);
26
27/// Populates passes to convert from TOSA to SCF.
28void addTosaToSCFPasses(OpPassManager &pm);
29
30} // namespace tosa
31} // namespace mlir
32
33#endif // MLIR_CONVERSION_TOSATOSCF_TOSATOSCF_H
void addTosaToSCFPasses(OpPassManager &pm)
Populates passes to convert from TOSA to SCF.
void populateTosaToSCFConversionPatterns(RewritePatternSet *patterns)
Include the generated interface declarations.
const FrozenRewritePatternSet & patterns