1//===- MemRefTransformOps.h - MemRef transformation ops ---------*- 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_MEMREF_TRANSFORMOPS_MEMREFTRANSFORMOPS_H
10#define MLIR_DIALECT_MEMREF_TRANSFORMOPS_MEMREFTRANSFORMOPS_H
11
12#include "mlir/Bytecode/BytecodeOpInterface.h"
13#include "mlir/Dialect/Transform/Interfaces/TransformInterfaces.h"
14#include "mlir/IR/OpImplementation.h"
15
16namespace mlir {
17namespace memref {
18class AllocOp;
19} // namespace memref
20namespace transform {
21class OperationType;
22} // namespace transform
23} // namespace mlir
24
25#define GET_OP_CLASSES
26#include "mlir/Dialect/MemRef/TransformOps/MemRefTransformOps.h.inc"
27
28namespace mlir {
29class DialectRegistry;
30
31namespace memref {
32void registerTransformDialectExtension(DialectRegistry &registry);
33} // namespace memref
34} // namespace mlir
35
36#endif // MLIR_DIALECT_MEMREF_TRANSFORMOPS_MEMREFTRANSFORMOPS_H
37

source code of mlir/include/mlir/Dialect/MemRef/TransformOps/MemRefTransformOps.h