1 | //===-- MyExtension.h - Transform dialect tutorial --------------*- 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 | // This file defines Transform dialect extension operations used in the |
10 | // Chapter 4 of the Transform dialect tutorial. |
11 | // |
12 | //===----------------------------------------------------------------------===// |
13 | |
14 | #include "mlir/Bytecode/BytecodeOpInterface.h" |
15 | #include "mlir/Dialect/Transform/IR/TransformDialect.h" |
16 | #include "mlir/Dialect/Transform/IR/TransformOps.h" |
17 | #include "mlir/Dialect/Transform/Interfaces/TransformInterfaces.h" |
18 | |
19 | namespace mlir { |
20 | class CallOpInterface; |
21 | namespace func { |
22 | class CallOp; |
23 | } // namespace func |
24 | } // namespace mlir |
25 | |
26 | #define GET_OP_CLASSES |
27 | #include "MyExtension.h.inc" |
28 | |
29 | // Registers our Transform dialect extension. |
30 | void registerMyExtension(::mlir::DialectRegistry ®istry); |
31 | |