mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-21 21:49:24 +08:00
This is a modified version of https://github.com/pytorch/pytorch/pull/130341 that preserve support for older pybind version. Pull Request resolved: https://github.com/pytorch/pytorch/pull/136370 Approved by: https://github.com/Skylion007, https://github.com/malfet
65 lines
1.8 KiB
C++
65 lines
1.8 KiB
C++
#pragma once
|
|
#include <pybind11/pybind11.h>
|
|
#include <pybind11/stl.h>
|
|
#include <torch/csrc/jit/api/module.h>
|
|
#include <torch/csrc/utils/pybind.h>
|
|
#include <tuple>
|
|
|
|
namespace py = pybind11;
|
|
|
|
namespace torch::jit {
|
|
|
|
inline std::optional<Module> as_module(py::handle obj) {
|
|
#if IS_PYBIND_2_13_PLUS
|
|
PYBIND11_CONSTINIT static py::gil_safe_call_once_and_store<py::object>
|
|
storage;
|
|
auto& ScriptModule =
|
|
storage
|
|
.call_once_and_store_result([]() -> py::object {
|
|
return py::module_::import("torch.jit").attr("ScriptModule");
|
|
})
|
|
.get_stored();
|
|
#else
|
|
static py::handle ScriptModule =
|
|
py::module::import("torch.jit").attr("ScriptModule");
|
|
#endif
|
|
if (py::isinstance(obj, ScriptModule)) {
|
|
return py::cast<Module>(obj.attr("_c"));
|
|
}
|
|
return std::nullopt;
|
|
}
|
|
|
|
inline std::optional<Object> as_object(py::handle obj) {
|
|
#if IS_PYBIND_2_13_PLUS
|
|
PYBIND11_CONSTINIT static py::gil_safe_call_once_and_store<
|
|
std::tuple<py::object, py::object>>
|
|
storage;
|
|
auto& [ScriptObject, RecursiveScriptClass] =
|
|
storage
|
|
.call_once_and_store_result(
|
|
[]() -> std::tuple<py::object, py::object> {
|
|
return {
|
|
py::module_::import("torch").attr("ScriptObject"),
|
|
py::module_::import("torch.jit")
|
|
.attr("RecursiveScriptClass")};
|
|
})
|
|
.get_stored();
|
|
#else
|
|
static py::handle ScriptObject =
|
|
py::module::import("torch").attr("ScriptObject");
|
|
|
|
static py::handle RecursiveScriptClass =
|
|
py::module::import("torch.jit").attr("RecursiveScriptClass");
|
|
#endif
|
|
|
|
if (py::isinstance(obj, ScriptObject)) {
|
|
return py::cast<Object>(obj);
|
|
}
|
|
if (py::isinstance(obj, RecursiveScriptClass)) {
|
|
return py::cast<Object>(obj.attr("_c"));
|
|
}
|
|
return std::nullopt;
|
|
}
|
|
|
|
} // namespace torch::jit
|