MLIR  21.0.0git
Passes.h
Go to the documentation of this file.
1 //===- Passes.h - MemRef Patterns and Passes --------------------*- 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 header declares patterns and passes on MemRef operations.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #ifndef MLIR_DIALECT_MEMREF_TRANSFORMS_PASSES_H
14 #define MLIR_DIALECT_MEMREF_TRANSFORMS_PASSES_H
15 
16 #include "mlir/Pass/Pass.h"
17 
18 namespace mlir {
19 
20 class AffineDialect;
21 class ModuleOp;
22 
23 namespace func {
24 namespace arith {
25 class ArithDialect;
26 } // namespace arith
27 class FuncDialect;
28 } // namespace func
29 namespace scf {
30 class SCFDialect;
31 } // namespace scf
32 namespace tensor {
33 class TensorDialect;
34 } // namespace tensor
35 namespace vector {
36 class VectorDialect;
37 } // namespace vector
38 
39 namespace memref {
40 
41 //===----------------------------------------------------------------------===//
42 // Passes
43 //===----------------------------------------------------------------------===//
44 
45 #define GEN_PASS_DECL
46 #include "mlir/Dialect/MemRef/Transforms/Passes.h.inc"
47 
48 //===----------------------------------------------------------------------===//
49 // Registration
50 //===----------------------------------------------------------------------===//
51 
52 #define GEN_PASS_REGISTRATION
53 #include "mlir/Dialect/MemRef/Transforms/Passes.h.inc"
54 
55 } // namespace memref
56 } // namespace mlir
57 
58 #endif // MLIR_DIALECT_MEMREF_TRANSFORMS_PASSES_H
Include the generated interface declarations.