| 1 | //===- Passes.h - Transform dialect pass entry points -----------*- 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_TRANSFORM_TRANSFORMS_PASSES_H |
| 10 | #define MLIR_DIALECT_TRANSFORM_TRANSFORMS_PASSES_H |
| 11 | |
| 12 | #include "mlir/Dialect/Transform/IR/TransformDialect.h" |
| 13 | #include "mlir/Pass/Pass.h" |
| 14 | |
| 15 | namespace mlir { |
| 16 | class Pass; |
| 17 | |
| 18 | namespace transform { |
| 19 | #define GEN_PASS_DECL |
| 20 | #include "mlir/Dialect/Transform/Transforms/Passes.h.inc" |
| 21 | |
| 22 | #define GEN_PASS_REGISTRATION |
| 23 | #include "mlir/Dialect/Transform/Transforms/Passes.h.inc" |
| 24 | } // namespace transform |
| 25 | } // namespace mlir |
| 26 | |
| 27 | #endif // MLIR_DIALECT_TRANSFORM_TRANSFORMS_PASSES_H |
| 28 | |