1 //===- Complex.h - Complex dialect --------------------------------*- C++-*-==//
2 //
3 // Part of the LLVM 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_COMPLEX_IR_COMPLEX_H_
10 #define MLIR_DIALECT_COMPLEX_IR_COMPLEX_H_
11 
12 #include "mlir/IR/BuiltinTypes.h"
13 #include "mlir/IR/OpImplementation.h"
14 #include "mlir/Interfaces/InferTypeOpInterface.h"
15 #include "mlir/Interfaces/SideEffectInterfaces.h"
16 
17 //===----------------------------------------------------------------------===//
18 // Complex Dialect
19 //===----------------------------------------------------------------------===//
20 
21 #include "mlir/Dialect/Complex/IR/ComplexOpsDialect.h.inc"
22 
23 //===----------------------------------------------------------------------===//
24 // Complex Dialect Operations
25 //===----------------------------------------------------------------------===//
26 
27 #define GET_OP_CLASSES
28 #include "mlir/Dialect/Complex/IR/ComplexOps.h.inc"
29 
30 #endif // MLIR_DIALECT_COMPLEX_IR_COMPLEX_H_
31