My Project
LinalgOps.h
Go to the documentation of this file.
1 //===- LinalgOps.h - Linalg Operations --------------------------*- C++ -*-===//
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 #ifndef MLIR_DIALECT_LINALG_LINALGOPS_H_
10 #define MLIR_DIALECT_LINALG_LINALGOPS_H_
11 
15 #include "mlir/IR/AffineMap.h"
17 #include "mlir/IR/Builders.h"
18 #include "mlir/IR/Function.h"
19 #include "mlir/IR/Module.h"
20 #include "mlir/IR/OpDefinition.h"
21 #include "mlir/IR/StandardTypes.h"
22 #include "mlir/IR/TypeUtilities.h"
23 #include "mlir/IR/Types.h"
24 #include "mlir/Support/LLVM.h"
25 
26 namespace mlir {
27 namespace linalg {
28 
52 std::string generateLibraryCallName(Operation *op);
53 
70 SmallVector<AffineMap, 4> loopToOperandRangesMaps(Operation *op);
71 
72 #include "mlir/Dialect/Linalg/IR/LinalgStructuredOpsInterfaces.h.inc"
73 
74 #define GET_OP_CLASSES
75 #include "mlir/Dialect/Linalg/IR/LinalgOps.h.inc"
76 
77 #define GET_OP_CLASSES
78 #include "mlir/Dialect/Linalg/IR/LinalgStructuredOps.h.inc"
79 
80 } // namespace linalg
81 } // namespace mlir
82 
83 #endif // MLIR_DIALECT_LINALG_LINALGOPS_H_
Definition: InferTypeOpInterface.cpp:20
SmallVector< AffineMap, 4 > loopToOperandRangesMaps(Operation *op)
Definition: LinalgOps.cpp:900
std::string generateLibraryCallName(Operation *op)
Definition: LinalgOps.cpp:1011