xref: /llvm-project/mlir/test/python/lib/PythonTestDialect.h (revision 9315645834ea81cf9550364a4950f289e9706a26)
114c92070SAlex Zinenko //===- PythonTestDialect.h - PythonTest dialect definition ------*- C++ -*-===//
214c92070SAlex Zinenko //
314c92070SAlex Zinenko // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
414c92070SAlex Zinenko // See https://llvm.org/LICENSE.txt for license information.
514c92070SAlex Zinenko // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
614c92070SAlex Zinenko //
714c92070SAlex Zinenko //===----------------------------------------------------------------------===//
814c92070SAlex Zinenko 
914c92070SAlex Zinenko #ifndef MLIR_TEST_PYTHON_LIB_PYTHONTESTDIALECT_H
1014c92070SAlex Zinenko #define MLIR_TEST_PYTHON_LIB_PYTHONTESTDIALECT_H
1114c92070SAlex Zinenko 
12863c3462SMehdi Amini #include "mlir/Bytecode/BytecodeOpInterface.h"
1314c92070SAlex Zinenko #include "mlir/IR/Dialect.h"
1414c92070SAlex Zinenko #include "mlir/IR/OpImplementation.h"
1514c92070SAlex Zinenko #include "mlir/Interfaces/InferTypeOpInterface.h"
1614c92070SAlex Zinenko 
1714c92070SAlex Zinenko #include "PythonTestDialect.h.inc"
1814c92070SAlex Zinenko 
1989a92fb3SAlex Zinenko #define GET_ATTRDEF_CLASSES
2089a92fb3SAlex Zinenko #include "PythonTestAttributes.h.inc"
2189a92fb3SAlex Zinenko 
2289a92fb3SAlex Zinenko #define GET_TYPEDEF_CLASSES
2389a92fb3SAlex Zinenko #include "PythonTestTypes.h.inc"
2489a92fb3SAlex Zinenko 
25*93156458SMaksim Levental #define GET_OP_CLASSES
26*93156458SMaksim Levental #include "PythonTestOps.h.inc"
27*93156458SMaksim Levental 
2814c92070SAlex Zinenko #endif // MLIR_TEST_PYTHON_LIB_PYTHONTESTDIALECT_H
29