
This PR adds "value casting", i.e., a mechanism to wrap `ir.Value` in a proxy class that overloads dunders such as `__add__`, `__sub__`, and `__mul__` for fun and great profit. This is thematically similar tobfb1ba7526
and9566ee2806
. The example in the test demonstrates the value of the feature (no pun intended): ```python @register_value_caster(F16Type.static_typeid) @register_value_caster(F32Type.static_typeid) @register_value_caster(F64Type.static_typeid) @register_value_caster(IntegerType.static_typeid) class ArithValue(Value): __add__ = partialmethod(_binary_op, op="add") __sub__ = partialmethod(_binary_op, op="sub") __mul__ = partialmethod(_binary_op, op="mul") a = arith.constant(value=FloatAttr.get(f16_t, 42.42)) b = a + a # CHECK: ArithValue(%0 = arith.addf %cst, %cst : f16) print(b) a = arith.constant(value=FloatAttr.get(f32_t, 42.42)) b = a - a # CHECK: ArithValue(%1 = arith.subf %cst_0, %cst_0 : f32) print(b) a = arith.constant(value=FloatAttr.get(f64_t, 42.42)) b = a * a # CHECK: ArithValue(%2 = arith.mulf %cst_1, %cst_1 : f64) print(b) ``` **EDIT**: this now goes through the bindings and thus supports automatic casting of `OpResult` (including as an element of `OpResultList`), `BlockArgument` (including as an element of `BlockArgumentList`), as well as `Value`.
124 lines
4.9 KiB
C++
124 lines
4.9 KiB
C++
//===- MainModule.cpp - Main pybind module --------------------------------===//
|
|
//
|
|
// 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 "PybindUtils.h"
|
|
|
|
#include "Globals.h"
|
|
#include "IRModule.h"
|
|
#include "Pass.h"
|
|
|
|
namespace py = pybind11;
|
|
using namespace mlir;
|
|
using namespace py::literals;
|
|
using namespace mlir::python;
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// Module initialization.
|
|
// -----------------------------------------------------------------------------
|
|
|
|
PYBIND11_MODULE(_mlir, m) {
|
|
m.doc() = "MLIR Python Native Extension";
|
|
|
|
py::class_<PyGlobals>(m, "_Globals", py::module_local())
|
|
.def_property("dialect_search_modules",
|
|
&PyGlobals::getDialectSearchPrefixes,
|
|
&PyGlobals::setDialectSearchPrefixes)
|
|
.def(
|
|
"append_dialect_search_prefix",
|
|
[](PyGlobals &self, std::string moduleName) {
|
|
self.getDialectSearchPrefixes().push_back(std::move(moduleName));
|
|
},
|
|
"module_name"_a)
|
|
.def(
|
|
"_check_dialect_module_loaded",
|
|
[](PyGlobals &self, const std::string &dialectNamespace) {
|
|
return self.loadDialectModule(dialectNamespace);
|
|
},
|
|
"dialect_namespace"_a)
|
|
.def("_register_dialect_impl", &PyGlobals::registerDialectImpl,
|
|
"dialect_namespace"_a, "dialect_class"_a,
|
|
"Testing hook for directly registering a dialect")
|
|
.def("_register_operation_impl", &PyGlobals::registerOperationImpl,
|
|
"operation_name"_a, "operation_class"_a, py::kw_only(),
|
|
"replace"_a = false,
|
|
"Testing hook for directly registering an operation");
|
|
|
|
// Aside from making the globals accessible to python, having python manage
|
|
// it is necessary to make sure it is destroyed (and releases its python
|
|
// resources) properly.
|
|
m.attr("globals") =
|
|
py::cast(new PyGlobals, py::return_value_policy::take_ownership);
|
|
|
|
// Registration decorators.
|
|
m.def(
|
|
"register_dialect",
|
|
[](py::object pyClass) {
|
|
std::string dialectNamespace =
|
|
pyClass.attr("DIALECT_NAMESPACE").cast<std::string>();
|
|
PyGlobals::get().registerDialectImpl(dialectNamespace, pyClass);
|
|
return pyClass;
|
|
},
|
|
"dialect_class"_a,
|
|
"Class decorator for registering a custom Dialect wrapper");
|
|
m.def(
|
|
"register_operation",
|
|
[](const py::object &dialectClass, bool replace) -> py::cpp_function {
|
|
return py::cpp_function(
|
|
[dialectClass, replace](py::object opClass) -> py::object {
|
|
std::string operationName =
|
|
opClass.attr("OPERATION_NAME").cast<std::string>();
|
|
PyGlobals::get().registerOperationImpl(operationName, opClass,
|
|
replace);
|
|
|
|
// Dict-stuff the new opClass by name onto the dialect class.
|
|
py::object opClassName = opClass.attr("__name__");
|
|
dialectClass.attr(opClassName) = opClass;
|
|
return opClass;
|
|
});
|
|
},
|
|
"dialect_class"_a, py::kw_only(), "replace"_a = false,
|
|
"Produce a class decorator for registering an Operation class as part of "
|
|
"a dialect");
|
|
m.def(
|
|
MLIR_PYTHON_CAPI_TYPE_CASTER_REGISTER_ATTR,
|
|
[](MlirTypeID mlirTypeID, bool replace) -> py::cpp_function {
|
|
return py::cpp_function([mlirTypeID,
|
|
replace](py::object typeCaster) -> py::object {
|
|
PyGlobals::get().registerTypeCaster(mlirTypeID, typeCaster, replace);
|
|
return typeCaster;
|
|
});
|
|
},
|
|
"typeid"_a, py::kw_only(), "replace"_a = false,
|
|
"Register a type caster for casting MLIR types to custom user types.");
|
|
m.def(
|
|
MLIR_PYTHON_CAPI_VALUE_CASTER_REGISTER_ATTR,
|
|
[](MlirTypeID mlirTypeID, bool replace) -> py::cpp_function {
|
|
return py::cpp_function(
|
|
[mlirTypeID, replace](py::object valueCaster) -> py::object {
|
|
PyGlobals::get().registerValueCaster(mlirTypeID, valueCaster,
|
|
replace);
|
|
return valueCaster;
|
|
});
|
|
},
|
|
"typeid"_a, py::kw_only(), "replace"_a = false,
|
|
"Register a value caster for casting MLIR values to custom user values.");
|
|
|
|
// Define and populate IR submodule.
|
|
auto irModule = m.def_submodule("ir", "MLIR IR Bindings");
|
|
populateIRCore(irModule);
|
|
populateIRAffine(irModule);
|
|
populateIRAttributes(irModule);
|
|
populateIRInterfaces(irModule);
|
|
populateIRTypes(irModule);
|
|
|
|
// Define and populate PassManager submodule.
|
|
auto passModule =
|
|
m.def_submodule("passmanager", "MLIR Pass Management Bindings");
|
|
populatePassManagerSubmodule(passModule);
|
|
}
|