forked from makslevental/mmlir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMinimalDialect.h
38 lines (29 loc) · 1.05 KB
/
MinimalDialect.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//===- MinimalDialect.h - Minimal dialect -----------------------*- C++ -*-===//
//
// This file is licensed under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#ifndef MINIMAL_MINIMALDIALECT_H
#define MINIMAL_MINIMALDIALECT_H
#include "mlir/Bytecode/BytecodeOpInterface.h"
#include "mlir/IR/BuiltinTypes.h"
#include "mlir/IR/Dialect.h"
#include "mlir/IR/OpDefinition.h"
#include "mlir/Interfaces/InferTypeOpInterface.h"
#include "mlir/Interfaces/SideEffectInterfaces.h"
#include "mlir/Pass/Pass.h"
#include <memory>
#include "MinimalDialect.h.inc"
#define GET_OP_CLASSES
#include "MinimalOps.h.inc"
namespace mlir::minimal {
#define GEN_PASS_DECL
#include "MinimalPasses.h.inc"
#define GEN_PASS_REGISTRATION
#include "MinimalPasses.h.inc"
} // namespace mlir::minimal
#define GET_TYPEDEF_CLASSES
#include "MinimalTypes.h.inc"
#endif // MINIMAL_MINIMALDIALECT_H