1 //===- PassDetail.h - GPU Pass class details --------------------*- 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 DIALECT_STANDARD_TRANSFORMS_PASSDETAIL_H_ 10 #define DIALECT_STANDARD_TRANSFORMS_PASSDETAIL_H_ 11 12 #include "mlir/Dialect/SCF/SCF.h" 13 #include "mlir/Pass/Pass.h" 14 15 namespace mlir { 16 17 class AtomicRMWOp; 18 19 #define GEN_PASS_CLASSES 20 #include "mlir/Dialect/StandardOps/Transforms/Passes.h.inc" 21 22 } // end namespace mlir 23 24 #endif // DIALECT_STANDARD_TRANSFORMS_PASSDETAIL_H_ 25