MLIR 22.0.0git
Passes.h
Go to the documentation of this file.
1//===- Passes.h - Pass Entrypoints ------------------------------*- 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#ifndef MLIR_DIALECT_MLPROGRAM_TRANSFORMS_PASSES_H_
10#define MLIR_DIALECT_MLPROGRAM_TRANSFORMS_PASSES_H_
11
13#include "mlir/IR/BuiltinOps.h"
14#include "mlir/Pass/Pass.h"
15
16namespace mlir {
17namespace ml_program {
18
19#define GEN_PASS_DECL
20#include "mlir/Dialect/MLProgram/Transforms/Passes.h.inc"
21
22//===----------------------------------------------------------------------===//
23// Registration
24//===----------------------------------------------------------------------===//
25
26/// Generate the code for registering passes.
27#define GEN_PASS_REGISTRATION
28#include "mlir/Dialect/MLProgram/Transforms/Passes.h.inc"
29
30} // namespace ml_program
31} // namespace mlir
32
33#endif // MLIR_DIALECT_MLPROGRAM_TRANSFORMS_PASSES_H_
Include the generated interface declarations.