Introduce the initial support for operation interfaces in C API and Python bindings. Interfaces are a key component of MLIR's extensibility and should be available in bindings to make use of full potential of MLIR. This initial implementation exposes InferTypeOpInterface all the way to the Python bindings since it can be later used to simplify the operation construction methods by inferring their return types instead of requiring the user to do so. The general infrastructure for binding interfaces is defined and InferTypeOpInterface can be used as an example for binding other interfaces. Reviewed By: gysit Differential Revision: https://reviews.llvm.org/D111656
26 lines
751 B
C++
26 lines
751 B
C++
//===- PythonTestDialect.cpp - PythonTest dialect definition --------------===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "PythonTestDialect.h"
|
|
#include "mlir/IR/DialectImplementation.h"
|
|
#include "mlir/IR/OpImplementation.h"
|
|
|
|
#include "PythonTestDialect.cpp.inc"
|
|
|
|
#define GET_OP_CLASSES
|
|
#include "PythonTestOps.cpp.inc"
|
|
|
|
namespace python_test {
|
|
void PythonTestDialect::initialize() {
|
|
addOperations<
|
|
#define GET_OP_LIST
|
|
#include "PythonTestOps.cpp.inc"
|
|
>();
|
|
}
|
|
} // namespace python_test
|