1 //===- MPI.h - MPI dialect ----------------------------------------*- 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 #ifndef MLIR_DIALECT_MPI_IR_MPI_H_ 9 #define MLIR_DIALECT_MPI_IR_MPI_H_ 10 11 #include "mlir/Bytecode/BytecodeOpInterface.h" 12 #include "mlir/IR/Dialect.h" 13 #include "mlir/IR/OpDefinition.h" 14 #include "mlir/IR/OpImplementation.h" 15 16 //===----------------------------------------------------------------------===// 17 // MPIDialect 18 //===----------------------------------------------------------------------===// 19 20 #include "mlir/Dialect/MPI/IR/MPIDialect.h.inc" 21 22 #define GET_TYPEDEF_CLASSES 23 #include "mlir/Dialect/MPI/IR/MPITypesGen.h.inc" 24 25 #include "mlir/Dialect/MPI/IR/MPIEnums.h.inc" 26 27 #define GET_ATTRDEF_CLASSES 28 #include "mlir/Dialect/MPI/IR/MPIAttrDefs.h.inc" 29 30 #define GET_OP_CLASSES 31 #include "mlir/Dialect/MPI/IR/MPIOps.h.inc" 32 33 #endif // MLIR_DIALECT_MPI_IR_MPI_H_ 34