2021-10-14 17:18:28 +02:00
|
|
|
//===- PythonTestDialect.h - PythonTest dialect definition ------*- C++ -*-===//
|
|
|
|
|
//
|
|
|
|
|
// Part of the LLVM Project, 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 MLIR_TEST_PYTHON_LIB_PYTHONTESTDIALECT_H
|
|
|
|
|
#define MLIR_TEST_PYTHON_LIB_PYTHONTESTDIALECT_H
|
|
|
|
|
|
2023-08-28 15:49:59 -07:00
|
|
|
#include "mlir/Bytecode/BytecodeOpInterface.h"
|
2021-10-14 17:18:28 +02:00
|
|
|
#include "mlir/IR/Dialect.h"
|
|
|
|
|
#include "mlir/IR/OpImplementation.h"
|
|
|
|
|
#include "mlir/Interfaces/InferTypeOpInterface.h"
|
|
|
|
|
|
|
|
|
|
#include "PythonTestDialect.h.inc"
|
|
|
|
|
|
2022-01-19 12:21:42 +01:00
|
|
|
#define GET_ATTRDEF_CLASSES
|
|
|
|
|
#include "PythonTestAttributes.h.inc"
|
|
|
|
|
|
|
|
|
|
#define GET_TYPEDEF_CLASSES
|
|
|
|
|
#include "PythonTestTypes.h.inc"
|
|
|
|
|
|
2024-07-05 10:43:51 -05:00
|
|
|
#define GET_OP_CLASSES
|
|
|
|
|
#include "PythonTestOps.h.inc"
|
|
|
|
|
|
2021-10-14 17:18:28 +02:00
|
|
|
#endif // MLIR_TEST_PYTHON_LIB_PYTHONTESTDIALECT_H
|