|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325 |
- /**
- * \file imperative/python/src/ops.cpp
- * MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
- *
- * Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- */
-
- #include "./ops.h"
-
- #include "megbrain/imperative.h"
- #include "megbrain/imperative/ops/backward_graph.h"
- #include "megbrain/imperative/ops/opr_attr.h"
- #include "megbrain/imperative/ops/utility.h"
- #include "megbrain/imperative/ops/autogen.h"
-
- #include <Python.h>
- #include <unordered_map>
-
- namespace py = pybind11;
- using namespace mgb::imperative;
-
- namespace {
- auto normalize_enum(const std::string& in) {
- std::string ret;
- for (auto&& c : in) {
- ret += toupper(c);
- }
- return ret;
- }
- } // anonymous namespace
-
- namespace {
- #define PyOp(name) Py##name
- #define PyOpType(name) PyOp(name)::py_type
-
- #define PyOpDefBegin(name) \
- struct PyOp(name) : PyOpDef { \
- using Ty = name; \
- Ty& inst() { return op->cast_final_safe<Ty>(); } \
- static PyTypeObject py_type;
-
- #define PyOpDefEnd(name) \
- }; \
- PyTypeObject PyOpType(name);
-
- #define RETURN_RICHCOMPARE(val1, val2, op) \
- do { \
- switch (op) { \
- case Py_EQ: if ((val1) == (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE; \
- case Py_NE: if ((val1) != (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE; \
- case Py_LT: if ((val1) < (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE; \
- case Py_GT: if ((val1) > (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE; \
- case Py_LE: if ((val1) <= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE; \
- case Py_GE: if ((val1) >= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE; \
- default: \
- Py_FatalError("Unreachable C code path reached"); \
- } \
- } while (0)
-
- template<typename T, typename SFINAE=void>
- struct pyobj_convert_generic {
- static T from(PyObject* obj) {
- // TODO: remove this guard which is used for pybind11 implicit conversion
- py::detail::loader_life_support guard{};
- return py::cast<T>(py::handle(obj));
- }
- template<typename U,
- typename = std::enable_if_t<std::is_same_v<T, std::decay_t<U>>>>
- static PyObject* to(U&& t) {
- return py::cast(std::forward<U>(t)).release().ptr();
- }
- };
-
- template<typename T>
- PyObject* py_new_generic(PyTypeObject* type, PyObject*, PyObject*) {
- PyObject* obj = type->tp_alloc(type, 0);
- T* self = reinterpret_cast<T*>(obj);
- if (self != NULL) {
- self->op = T::Ty::make();
- }
- return obj;
- }
-
- template<typename T>
- void py_dealloc_generic(PyObject* obj) {
- reinterpret_cast<T*>(obj)->op.reset();
- Py_TYPE(obj)->tp_free(obj);
- }
-
- template<typename T, typename U, U T::Ty::*attr>
- PyObject* py_get_generic_impl(PyObject* obj, void* /* closure */) {
- auto& op = reinterpret_cast<T*>(obj)->inst();
- return pyobj_convert_generic<U>::to(op.*attr);
- }
- #define py_get_generic(name, attr) \
- py_get_generic_impl<PyOp(name), decltype(std::declval<name>().attr), &name::attr>
-
- template<typename T, typename U, U T::Ty::*attr>
- int py_set_generic_impl(PyObject* obj, PyObject* value, void* /* closure */) {
- if (value == NULL) {
- PyErr_SetString(PyExc_TypeError, "Cannot delete the attribute");
- return -1;
- }
- auto& op = reinterpret_cast<T*>(obj)->inst();
- try {
- op.*attr = pyobj_convert_generic<U>::from(value);
- return 0;
- } catch(py::error_already_set& e) {
- e.restore();
- } catch(py::builtin_exception& e) {
- e.set_error();
- } catch(...) {
- PyErr_SetString(PyExc_RuntimeError, "Unknown Error");
- }
- return -1;
- }
- #define py_set_generic(name, attr) \
- py_set_generic_impl<PyOp(name), decltype(std::declval<name>().attr), &name::attr>
-
- struct PyOpDef {
- PyObject_HEAD
- std::shared_ptr<OpDef> op;
- static PyTypeObject py_type;
- static std::unordered_map<mgb::Typeinfo*, PyTypeObject*> ctype2pytype;
- static Py_hash_t tp_hash(PyObject *obj);
- static PyObject* tp_richcompare(PyObject *self, PyObject *other, int op);
- };
- PyTypeObject PyOpType(OpDef);
- std::unordered_map<mgb::Typeinfo*, PyTypeObject*> PyOp(OpDef)::ctype2pytype;
-
- Py_hash_t PyOp(OpDef)::tp_hash(PyObject *obj) {
- return static_cast<Py_hash_t>(
- reinterpret_cast<PyOp(OpDef)*>(obj)->op->hash());
- }
-
- PyObject* PyOp(OpDef)::tp_richcompare(PyObject *self, PyObject *other, int op) {
- bool same = reinterpret_cast<PyOp(OpDef)*>(self)->op->is_same(
- *reinterpret_cast<PyOp(OpDef)*>(other)->op);
- if (op == Py_EQ || op == Py_NE) {
- RETURN_RICHCOMPARE(same, true, op);
- }
- Py_RETURN_NOTIMPLEMENTED;
- }
-
- template<typename T>
- struct EnumWrapper {
- static_assert(std::is_enum_v<T>);
- PyObject_HEAD
- T value;
- static const char* name;
- static PyTypeObject type;
- static std::unordered_map<T, std::string> type2str;
- static std::unordered_map<std::string, T> str2type;
- EnumWrapper() = default;
- EnumWrapper(T v): value(v) {}
- EnumWrapper(std::string&& str): EnumWrapper(str2type.at(normalize_enum(str))) {}
- std::string to_string() const {
- return type2str.at(value);
- }
- static PyObject* py_repr(PyObject* self) {
- return pyobj_convert_generic<std::string>::to(
- std::string(name) + "." + reinterpret_cast<EnumWrapper*>(self)->to_string());
- }
- static PyObject* tp_richcompare(PyObject *self, PyObject *other, int op) {
- T lhs = reinterpret_cast<EnumWrapper*>(self)->value,
- rhs = reinterpret_cast<EnumWrapper*>(other)->value;
- if (op == Py_EQ || op == Py_NE) {
- RETURN_RICHCOMPARE(lhs, rhs, op);
- }
- Py_RETURN_NOTIMPLEMENTED;
- }
- };
-
- template<typename T>
- struct pyobj_convert_generic<T,
- std::enable_if_t<std::is_enum_v<std::decay_t<T>>>> {
- using Wrapper = EnumWrapper<T>;
- static T from(PyObject* obj) {
- if (PyObject_TypeCheck(obj, &Wrapper::type)) {
- return reinterpret_cast<Wrapper*>(obj)->value;
- }
- // try as string
- // TODO: type checkcd
- return Wrapper(pyobj_convert_generic<std::string>::from(obj)).value;
- }
- static PyObject* to(T t) {
- PyTypeObject* pytype = &Wrapper::type;
- PyObject* obj = pytype->tp_alloc(pytype, 0);
- reinterpret_cast<Wrapper*>(obj)->value = t;
- return obj;
- }
- };
-
- void _init_py_op_def(py::module m) {
- auto& py_type = PyOpType(OpDef);
- py_type = {PyVarObject_HEAD_INIT(NULL, 0)};
- py_type.tp_name = "megengine.core._imperative_rt.OpDef";
- py_type.tp_basicsize = sizeof(PyOp(OpDef));
- py_type.tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE;
- py_type.tp_doc = "OpDef";
- py_type.tp_base = &PyBaseObject_Type;
- py_type.tp_hash = PyOp(OpDef)::tp_hash;
- py_type.tp_richcompare = PyOp(OpDef)::tp_richcompare;
- mgb_assert(PyType_Ready(&py_type) >= 0);
- m.add_object("OpDef", reinterpret_cast<PyObject*>(&py_type));
- }
-
- /*********** begin of hand-write opdefs **************/
-
- PyOpDefBegin(BackwardGraph) // {{
- // };
- PyOpDefEnd(BackwardGraph)
-
- void _init_py_backward_graph(py::module m) {
- using py_op = PyOp(BackwardGraph);
- auto& py_type = PyOpType(BackwardGraph);
- py_type = {PyVarObject_HEAD_INIT(NULL, 0)};
- py_type.tp_name = "megengine.core._imperative_rt.ops.BackwardGraph";
- py_type.tp_basicsize = sizeof(PyOp(BackwardGraph));
- py_type.tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE;
- py_type.tp_doc = "BackwardGraph";
- py_type.tp_base = &PyOpType(OpDef);
- py_type.tp_dealloc = py_dealloc_generic<py_op>;
- py_type.tp_new = py_new_generic<py_op>;
- mgb_assert(PyType_Ready(&py_type) >= 0);
- // FIXME: rewrite interpret function in cpython instead wrap directly by pybind11::cppfunction
- auto interpret = py::cpp_function(
- [](OpDef& self, py::object pyf, py::object pyc,
- const mgb::SmallVector<py::object>& inputs) {
- auto f = [pyf](OpDef& op, const mgb::SmallVector<py::object>& inputs) {
- return py::cast<mgb::SmallVector<py::object>>(pyf(op.shared_from_this(), inputs));
- };
- auto c = [pyc](const TensorPtr& tensor) {
- return pyc(tensor->dev_tensor());
- };
- return self.cast_final_safe<BackwardGraph>().graph().interpret<py::object>(f, c, inputs);
- });
- mgb_assert(PyDict_SetItemString(
- py_type.tp_dict, "interpret", interpret.release().ptr()) >= 0);
- PyType_Modified(&py_type);
- m.add_object("BackwardGraph", reinterpret_cast<PyObject*>(&py_type));
- mgb_assert(PyOp(OpDef)::ctype2pytype.emplace(BackwardGraph::typeinfo(), &py_type).second);
- }
-
- struct PyOpBase : PyOpDef {
- static PyTypeObject py_type;
-
- static PyObject* tp_new(PyTypeObject* type, PyObject*, PyObject*) {
- auto* obj = type->tp_alloc(type, 0);
- if (obj) {
- auto* self = reinterpret_cast<PyOpBase*>(obj);
- new(&self->op) decltype(self->op);
- }
- return obj;
- }
- };
- PyTypeObject PyOpBase::py_type;
-
- void _init_py_op_base(py::module m) {
- using py_op = PyOpBase;
- auto& py_type = PyOpBase::py_type;
- py_type = {PyVarObject_HEAD_INIT(NULL, 0)};
- py_type.tp_name = "megengine.core._imperative_rt.ops.PyOpBase";
- py_type.tp_basicsize = sizeof(py_op);
- py_type.tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE;
- py_type.tp_doc = "PyOpBase";
- py_type.tp_base = &PyOpType(OpDef);
- py_type.tp_dealloc = py_dealloc_generic<py_op>;
- py_type.tp_new = py_op::tp_new;
- mgb_assert(PyType_Ready(&py_type) >= 0);
- m.add_object("PyOpBase", reinterpret_cast<PyObject*>(&py_type));
- }
-
- /*********** end of hand-write opdefs **************/
-
- // auto generated opdefs
- #include "opdef.cpy.inl"
-
- } // anonymous namespace
-
- namespace PYBIND11_NAMESPACE {
- namespace detail {
- bool type_caster<OpDef>::load(handle src, bool convert) {
- PyObject* obj = src.ptr();
- if (!PyObject_TypeCheck(obj, &PyOpType(OpDef))) {
- return false;
- }
- value = reinterpret_cast<PyOp(OpDef)*>(obj)->op;
- if (!value) {
- // opdef only defined in Python
- value = std::make_shared<GenericPyOp>(reinterpret_borrow<object>(src));
- }
- return true;
- }
- handle type_caster<OpDef>::cast(const OpDef& op, return_value_policy, handle) {
- if (auto* pyop = op.try_cast_final<GenericPyOp>()) {
- return object(pyop->obj).release();
- }
- PyTypeObject* pytype;
- auto& c2p = PyOp(OpDef)::ctype2pytype;
- auto&& iter = c2p.find(op.dyn_typeinfo());
- if (iter != c2p.end()) { // FIXME: should always meet this condition
- pytype = iter->second;
- } else { // which means unregistered op type, jsut make it as an opaque op type
- // currently, only OprAttr goes into this branch
- pytype = &PyOpType(OpDef);
- }
- PyObject* obj = pytype->tp_alloc(pytype, 0);
- mgb_assert(PyObject_TypeCheck(obj, &PyOpType(OpDef)));
- reinterpret_cast<PyOp(OpDef)*>(obj)->op = const_cast<OpDef&>(op).shared_from_this();
- return py::handle(obj);
- }
- } // detail
- } // PYBIND11_NAMESPACE
-
- void init_ops(py::module m) {
- _init_py_op_def(m);
- _init_py_backward_graph(m);
- _init_py_op_base(m);
- INIT_ALL_OP(m)
- }
|