1 //===- DirectiveAtomicInterfaces.h - directive atomic ops interfaces ------===// 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 implements the operation interface for atomic operations used 10 // in OpenACC and OpenMP. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #ifndef OPENACC_MP_COMMON_INTERFACES_ATOMICINTERFACES_H_ 15 #define OPENACC_MP_COMMON_INTERFACES_ATOMICINTERFACES_H_ 16 17 #include "mlir/IR/OpDefinition.h" 18 #include "mlir/Interfaces/ControlFlowInterfaces.h" 19 20 #include "mlir/Dialect/OpenACCMPCommon/Interfaces/AtomicInterfaces.h.inc" 21 22 #endif // OPENACC_MP_COMMON_INTERFACES_ATOMICINTERFACES_H_ 23