MLIR  19.0.0git
TransformOps.h
Go to the documentation of this file.
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 
18 #include "mlir/IR/OpDefinition.h"
20 #include "mlir/IR/PatternMatch.h"
21 #include "mlir/IR/SymbolTable.h"
27 
28 namespace mlir {
29 namespace transform {
30 
31 enum class FailurePropagationMode : uint32_t;
32 class FailurePropagationModeAttr;
33 
34 /// A builder function that populates the body of a SequenceOp.
36  ::mlir::OpBuilder &, ::mlir::Location, ::mlir::BlockArgument)>;
38  ::llvm::function_ref<void(::mlir::OpBuilder &, ::mlir::Location,
39  ::mlir::BlockArgument, ::mlir::ValueRange)>;
40 
41 } // namespace transform
42 } // namespace mlir
43 
44 #define GET_OP_CLASSES
45 #include "mlir/Dialect/Transform/IR/TransformOps.h.inc"
46 
47 #endif // MLIR_DIALECT_TRANSFORM_IR_TRANSFORMOPS_H
Include the generated interface declarations.