1 //===- TilingInterface.h - Interface for tiling 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 // This file contains the definitions of the TilingInterface defined in
10 // `TilingInterface.td`.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #ifndef MLIR_INTERFACES_TILINGINTERFACE_H_
15 #define MLIR_INTERFACES_TILINGINTERFACE_H_
16 
17 #include "mlir/IR/Builders.h"
18 #include "mlir/IR/BuiltinTypes.h"
19 #include "mlir/IR/Operation.h"
20 #include "mlir/Interfaces/ViewLikeInterface.h"
21 #include "mlir/Support/LLVM.h"
22 
23 /// Include the ODS generated interface header files.
24 #include "mlir/Interfaces/TilingInterface.h.inc"
25 
26 #endif // MLIR_INTERFACES_TILINGINTERFACE_H_
27