1 //===- Passes.h - Mesh 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 #ifndef MLIR_DIALECT_MESH_TRANSFORMS_PASSES_H 10 #define MLIR_DIALECT_MESH_TRANSFORMS_PASSES_H 11 12 #include "mlir/Pass/Pass.h" 13 14 namespace mlir { 15 16 namespace func { 17 class FuncOp; 18 } 19 20 namespace mesh { 21 22 //===----------------------------------------------------------------------===// 23 // Passes 24 //===----------------------------------------------------------------------===// 25 26 #define GEN_PASS_DECL 27 #include "mlir/Dialect/Mesh/Transforms/Passes.h.inc" 28 29 //===----------------------------------------------------------------------===// 30 // Registration 31 //===----------------------------------------------------------------------===// 32 33 #define GEN_PASS_REGISTRATION 34 #include "mlir/Dialect/Mesh/Transforms/Passes.h.inc" 35 36 } // namespace mesh 37 } // namespace mlir 38 39 #endif // MLIR_DIALECT_MESH_TRANSFORMS_PASSES_H 40