My Project
LoopLikeInterface.h
Go to the documentation of this file.
1 //===- LoopLikeInterface.h - Loop-like operations interface ---------------===//
2 //
3 // Part of the MLIR 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 implements the operation interface for loop like operations.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #ifndef MLIR_TRANSFORMS_LOOPLIKEINTERFACE_H_
14 #define MLIR_TRANSFORMS_LOOPLIKEINTERFACE_H_
15 
16 #include "mlir/IR/OpDefinition.h"
18 #include "llvm/ADT/ArrayRef.h"
19 
20 namespace mlir {
21 
22 #include "mlir/Transforms/LoopLikeInterface.h.inc"
23 
24 } // namespace mlir
25 
26 #endif // MLIR_TRANSFORMS_LOOPLIKEINTERFACE_H_
Definition: InferTypeOpInterface.cpp:20