Files
pytorch/torch/csrc/jit/python/python_custom_class.h

20 lines
412 B
C++

#pragma once
#include <torch/csrc/utils/pybind.h>
#include <torch/custom_class.h>
namespace torch::jit {
void initPythonCustomClassBindings(PyObject* module);
struct ScriptClass {
ScriptClass(c10::StrongTypePtr class_type)
: class_type_(std::move(class_type)) {}
py::object __call__(const py::args& args, const py::kwargs& kwargs);
c10::StrongTypePtr class_type_;
};
} // namespace torch::jit