MLIR 22.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//===----------------------------------------------------------------------===//
13#ifndef MLIR_DIALECT_MEMREF_TRANSFORMS_PASSES_H
14#define MLIR_DIALECT_MEMREF_TRANSFORMS_PASSES_H
16#include "mlir/Pass/Pass.h"
17
18namespace mlir {
19
20class AffineDialect;
21class ModuleOp;
22
23namespace func {
24namespace arith {
25class ArithDialect;
26} // namespace arith
27class FuncDialect;
28} // namespace func
29namespace scf {
30class SCFDialect;
31} // namespace scf
32namespace tensor {
33class TensorDialect;
34} // namespace tensor
35namespace vector {
36class VectorDialect;
37} // namespace vector
38
39namespace 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.