1 //===-- Optimizer/Dialect/CUFDialect.h -- CUF 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 // 9 // Coding style: https://mlir.llvm.org/getting_started/DeveloperGuide/ 10 // 11 //===----------------------------------------------------------------------===// 12 13 #ifndef FORTRAN_OPTIMIZER_DIALECT_CUF_CUFDIALECT_H 14 #define FORTRAN_OPTIMIZER_DIALECT_CUF_CUFDIALECT_H 15 16 #include "mlir/Bytecode/BytecodeOpInterface.h" 17 #include "mlir/IR/Dialect.h" 18 #include "mlir/IR/SymbolTable.h" 19 #include "mlir/Interfaces/CallInterfaces.h" 20 #include "mlir/Interfaces/FunctionInterfaces.h" 21 #include "mlir/Interfaces/LoopLikeInterface.h" 22 #include "mlir/Interfaces/SideEffectInterfaces.h" 23 24 #include "flang/Optimizer/Dialect/CUF/CUFDialect.h.inc" 25 26 #endif // FORTRAN_OPTIMIZER_DIALECT_CUF_CUFDIALECT_H 27