27 lines
712 B
C
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
|