1 //===- TransformDialect.h - Transform dialect operations --------*- 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 MLIR_DIALECT_TRANSFORM_IR_TRANSFORMOPS_H
10 #define MLIR_DIALECT_TRANSFORM_IR_TRANSFORMOPS_H
11 
12 #include "mlir/Dialect/PDL/IR/PDLTypes.h"
13 #include "mlir/Dialect/Transform/IR/TransformInterfaces.h"
14 #include "mlir/IR/OpDefinition.h"
15 #include "mlir/IR/OpImplementation.h"
16 #include "mlir/IR/SymbolTable.h"
17 #include "mlir/Interfaces/ControlFlowInterfaces.h"
18 
19 #define GET_OP_CLASSES
20 #include "mlir/Dialect/Transform/IR/TransformOps.h.inc"
21 
22 #endif // MLIR_DIALECT_TRANSFORM_IR_TRANSFORMOPS_H
23