My Project
FxpMathOps.h
Go to the documentation of this file.
1 //===- FxpMathOps.h - Fixed point ops ---------------------------*- 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_FXPMATHOPS_FXPMATHOPS_H_
10 #define MLIR_DIALECT_FXPMATHOPS_FXPMATHOPS_H_
11 
12 #include "mlir/IR/Dialect.h"
13 #include "mlir/IR/OpDefinition.h"
14 #include "mlir/IR/StandardTypes.h"
15 
16 namespace mlir {
17 namespace fxpmath {
18 
20 class FxpMathOpsDialect : public Dialect {
21 public:
23 };
24 
25 #define GET_OP_CLASSES
26 #include "mlir/Dialect/FxpMathOps/FxpMathOps.h.inc"
27 
28 } // namespace fxpmath
29 } // namespace mlir
30 
31 #endif // MLIR_DIALECT_FXPMATHOPS_FXPMATHOPS_H_
Definition: InferTypeOpInterface.cpp:20
FxpMathOpsDialect(MLIRContext *context)
Definition: FxpMathOps.cpp:23
Definition: Dialect.h:39
Definition: MLIRContext.h:34
Defines the 'FxpMathOps' dialect.
Definition: FxpMathOps.h:20