|
- /**
- * \file imperative/python/src/grad.h
- * MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
- *
- * Copyright (c) 2014-2021 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.
- */
-
- #pragma once
-
- #include "./tensor.h"
-
- #include "megbrain/imperative/ops/utility.h"
- #include "megbrain/imperative/transformations/grad.h"
- #include "megbrain/utils/small_vector.h"
-
- #include <memory>
- #include <optional>
-
- namespace mgb::imperative::python {
-
- struct GradKeyWrapper : NonCopyableObj {
- using wrap_t = pyext17::wrap<GradKeyWrapper>;
- static constexpr auto tp_name = pybind11::detail::_("GradKey");
-
- std::shared_ptr<GradKey> m_key;
- std::shared_ptr<GradTransformation> m_transformation;
-
- GradKeyWrapper();
-
- PyObject* get_name();
- void set_name(pybind11::handle name);
- void attach(PyObject* const* args, size_t nargs);
- static void backward(GradKeyWrapper* self, pybind11::list, pybind11::list);
- static pybind11::function get_backward_closure(
- GradKeyWrapper* self, pybind11::list);
- PyObject* is_attached_to(PyObject* const* args, size_t nargs);
- void enter();
- void exit();
- void suppress();
- void resume();
- static GradKeyWrapper* get(std::shared_ptr<GradKey> key);
- ~GradKeyWrapper();
- };
-
- } // namespace mgb::imperative::python
-
- namespace pybind11::detail {
-
- template <>
- struct type_caster<mgb::imperative::python::GradKeyWrapper>
- : mgb::imperative::python::GradKeyWrapper::wrap_t::caster {};
-
- } // namespace pybind11::detail
|