1*14c92070SAlex Zinenko //===- PythonTestDialect.h - PythonTest dialect definition ------*- C++ -*-===// 2*14c92070SAlex Zinenko // 3*14c92070SAlex Zinenko // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4*14c92070SAlex Zinenko // See https://llvm.org/LICENSE.txt for license information. 5*14c92070SAlex Zinenko // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6*14c92070SAlex Zinenko // 7*14c92070SAlex Zinenko //===----------------------------------------------------------------------===// 8*14c92070SAlex Zinenko 9*14c92070SAlex Zinenko #ifndef MLIR_TEST_PYTHON_LIB_PYTHONTESTDIALECT_H 10*14c92070SAlex Zinenko #define MLIR_TEST_PYTHON_LIB_PYTHONTESTDIALECT_H 11*14c92070SAlex Zinenko 12*14c92070SAlex Zinenko #include "mlir/IR/Dialect.h" 13*14c92070SAlex Zinenko #include "mlir/IR/OpImplementation.h" 14*14c92070SAlex Zinenko #include "mlir/Interfaces/InferTypeOpInterface.h" 15*14c92070SAlex Zinenko 16*14c92070SAlex Zinenko #include "PythonTestDialect.h.inc" 17*14c92070SAlex Zinenko 18*14c92070SAlex Zinenko #define GET_OP_CLASSES 19*14c92070SAlex Zinenko #include "PythonTestOps.h.inc" 20*14c92070SAlex Zinenko 21*14c92070SAlex Zinenko #endif // MLIR_TEST_PYTHON_LIB_PYTHONTESTDIALECT_H 22