hello-mlir/include/Dialect.h
jackfiled 902915a57b
feat: toy tutorial chapter 4.
Signed-off-by: jackfiled <xcrenchangjun@outlook.com>
2025-06-03 16:03:17 +08:00

27 lines
712 B
C

//
// Created by ricardo on 29/05/25.
//
#ifndef DIALECT_H
#define DIALECT_H
#include "mlir/Bytecode/BytecodeOpInterface.h"
#include "mlir/IR/Dialect.h"
#include "mlir/IR/SymbolTable.h"
#include "mlir/Interfaces/CallInterfaces.h"
#include "mlir/Interfaces/CastInterfaces.h"
#include "mlir/Interfaces/FunctionInterfaces.h"
#include "mlir/Interfaces/SideEffectInterfaces.h"
#include "hello/ShapeInferenceInterface.h"
/// Include the auto-generated header file containing the declaration of the toy
/// dialect.
#include "hello/Dialect.h.inc"
/// Include the auto-generated header file containing the declarations of the
/// toy operations.
#define GET_OP_CLASSES
#include "hello/Ops.h.inc"
#endif //DIALECT_H