MLIR  22.0.0git
OpenMPInterfaces.h
Go to the documentation of this file.
1 //===- OpenMPInterfaces.h - MLIR Interfaces for OpenMP ----------*- 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 // This file declares OpenMP Interface implementations for the OpenMP dialect.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #ifndef MLIR_DIALECT_OPENMP_OPENMPINTERFACES_H_
14 #define MLIR_DIALECT_OPENMP_OPENMPINTERFACES_H_
15 
18 #include "mlir/IR/Dialect.h"
19 #include "mlir/IR/OpDefinition.h"
20 #include "mlir/IR/PatternMatch.h"
21 #include "mlir/IR/SymbolTable.h"
24 
25 #define GET_OP_FWD_DEFINES
26 #include "mlir/Dialect/OpenMP/OpenMPOps.h.inc"
27 
28 #include "mlir/Dialect/OpenMP/OpenMPOpsInterfaces.h.inc"
29 
30 namespace mlir::omp {
31 // You can override defaults here or implement more complex implementations of
32 // functions. Or define a completely separate external model implementation,
33 // to override the existing implementation.
35  : public OffloadModuleInterface::ExternalModel<OffloadModuleDefaultModel,
36  mlir::ModuleOp> {};
37 
38 template <typename T>
40  : public DeclareTargetInterface::ExternalModel<DeclareTargetDefaultModel<T>,
41  T> {};
42 
43 } // namespace mlir::omp
44 
45 #endif // MLIR_DIALECT_OPENMP_OPENMPINTERFACES_H_