My Project
Passes.h
Go to the documentation of this file.
1 //===- Passes.h - Fixed point math passes -----------------------*- 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 file defines all of the passes owned by the FxpMathOps dialect.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #ifndef MLIR_DIALECT_FXPMATHOPS_PASSES_H
14 #define MLIR_DIALECT_FXPMATHOPS_PASSES_H
15 
16 namespace mlir {
17 class FuncOp;
18 template <typename T> class OpPassBase;
19 
20 namespace fxpmath {
21 
26 OpPassBase<FuncOp> *createLowerUniformRealMathPass();
27 
30 OpPassBase<FuncOp> *createLowerUniformCastsPass();
31 
32 } // namespace fxpmath
33 } // namespace mlir
34 
35 #endif // MLIR_DIALECT_FXPMATHOPS_PASSES_H
Definition: InferTypeOpInterface.cpp:20
OpPassBase< FuncOp > * createLowerUniformRealMathPass()
Definition: LowerUniformRealMath.cpp:367
OpPassBase< FuncOp > * createLowerUniformCastsPass()
Definition: LowerUniformRealMath.cpp:387