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_TENSOR_TRANSFORMS_PASSDETAIL_H_ 10 #define DIALECT_TENSOR_TRANSFORMS_PASSDETAIL_H_ 11 12 #include "mlir/Dialect/Func/IR/FuncOps.h" 13 #include "mlir/Pass/Pass.h" 14 15 namespace mlir { 16 17 namespace bufferization { 18 class BufferizationDialect; 19 } // namespace bufferization 20 21 namespace memref { 22 class MemRefDialect; 23 } // namespace memref 24 25 namespace scf { 26 class SCFDialect; 27 } // namespace scf 28 29 #define GEN_PASS_CLASSES 30 #include "mlir/Dialect/Tensor/Transforms/Passes.h.inc" 31 32 } // namespace mlir 33 34 #endif // DIALECT_TENSOR_TRANSFORMS_PASSDETAIL_H_ 35