1 //===- PassDetail.h - NVGPU 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 #ifndef DIALECT_NVGPU_TRANSFORMS_PASSDETAIL_H_
9 #define DIALECT_NVGPU_TRANSFORMS_PASSDETAIL_H_
10 
11 #include "mlir/IR/BuiltinOps.h"
12 #include "mlir/IR/Dialect.h"
13 #include "mlir/Pass/Pass.h"
14 
15 namespace mlir {
16 namespace arith {
17 class ArithmeticDialect;
18 } // namespace arith
19 
20 namespace memref {
21 class MemRefDialect;
22 } // namespace memref
23 
24 namespace vector {
25 class VectorDialect;
26 } // namespace vector
27 
28 #define GEN_PASS_CLASSES
29 #include "mlir/Dialect/NVGPU/Passes.h.inc"
30 
31 } // namespace mlir
32 
33 #endif // DIALECT_NVGPU_TRANSFORMS_PASSDETAIL_H_
34