My Project
Passes.h
Go to the documentation of this file.
1 //===- Passes.h - Pass Entrypoints ------------------------------*- 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 // This header file defines prototypes that expose pass constructors.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #ifndef MLIR_DIALECT_GPU_PASSES_H_
14 #define MLIR_DIALECT_GPU_PASSES_H_
15 
16 #include <memory>
17 
18 namespace mlir {
19 
20 class ModuleOp;
21 template <typename T> class OpPassBase;
22 
23 std::unique_ptr<OpPassBase<ModuleOp>> createGpuKernelOutliningPass();
24 
25 } // namespace mlir
26 
27 #endif // MLIR_DIALECT_GPU_PASSES_H_
Definition: InferTypeOpInterface.cpp:20
std::unique_ptr< OpPassBase< ModuleOp > > createGpuKernelOutliningPass()
Definition: KernelOutlining.cpp:213