mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
Fixes #144302 Try to expose several APIs to public for privateuse1 scenario. Pull Request resolved: https://github.com/pytorch/pytorch/pull/144525 Approved by: https://github.com/cyyever, https://github.com/albanD
132 lines
5.1 KiB
C++
132 lines
5.1 KiB
C++
#pragma once
|
|
|
|
#include <torch/csrc/Export.h>
|
|
#include <torch/csrc/python_headers.h>
|
|
#include <memory>
|
|
#include <typeinfo>
|
|
|
|
#include <torch/csrc/Exceptions.h>
|
|
#include <torch/csrc/autograd/function.h>
|
|
#include <torch/csrc/utils/object_ptr.h>
|
|
|
|
namespace torch::autograd {
|
|
|
|
struct THPCppFunction {
|
|
PyObject_HEAD
|
|
std::shared_ptr<Node> cdata;
|
|
};
|
|
|
|
template <typename Ctor>
|
|
TORCH_PYTHON_API PyObject* CppFunction_pynew(
|
|
PyTypeObject* type,
|
|
PyObject* args,
|
|
PyObject* kwds) {
|
|
THPObjectPtr obj(type->tp_alloc(type, 0));
|
|
if (!obj)
|
|
return nullptr;
|
|
THPCppFunction* f = (THPCppFunction*)obj.get();
|
|
HANDLE_TH_ERRORS
|
|
new (&f->cdata) std::shared_ptr<Node>(Ctor()(args));
|
|
END_HANDLE_TH_ERRORS
|
|
if (!f->cdata) {
|
|
return nullptr;
|
|
}
|
|
return obj.release();
|
|
}
|
|
|
|
#define THP_FUNCTION_DEFAULT_METHODS \
|
|
{(char*)"_register_hook_dict", \
|
|
THPCppFunction_register_hook_dict, \
|
|
METH_O, \
|
|
nullptr}, \
|
|
{(char*)"register_hook", THPCppFunction_register_hook, METH_O, nullptr}, \
|
|
{(char*)"register_prehook", \
|
|
THPCppFunction_register_prehook, \
|
|
METH_O, \
|
|
nullptr}, \
|
|
{(char*)"name", THPCppFunction_name, METH_NOARGS, nullptr}, \
|
|
{(char*)"_sequence_nr", \
|
|
THPCppFunction_sequence_nr, \
|
|
METH_NOARGS, \
|
|
nullptr}, \
|
|
{ \
|
|
(char*)"_set_sequence_nr", THPCppFunction_set_sequence_nr, METH_O, nullptr \
|
|
}
|
|
|
|
#define THP_FUNCTION_DEFAULT_PROPERTIES \
|
|
{(char*)"next_functions", \
|
|
THPCppFunction_next_functions, \
|
|
nullptr, \
|
|
nullptr, \
|
|
nullptr}, \
|
|
{(char*)"requires_grad", \
|
|
THPCppFunction_requires_grad, \
|
|
nullptr, \
|
|
nullptr, \
|
|
nullptr}, \
|
|
{(char*)"metadata", THPCppFunction_metadata, nullptr, nullptr, nullptr}, \
|
|
{ \
|
|
(char*)"_input_metadata", THPCppFunction_input_metadata, nullptr, nullptr, \
|
|
nullptr \
|
|
}
|
|
|
|
TORCH_PYTHON_API PyObject* THPCppFunction_next_functions(
|
|
PyObject* self,
|
|
void* _unused);
|
|
TORCH_PYTHON_API PyObject* THPCppFunction_metadata(
|
|
PyObject* self,
|
|
void* _unused);
|
|
TORCH_PYTHON_API PyObject* THPCppFunction_requires_grad(
|
|
PyObject* self,
|
|
void* _unused);
|
|
TORCH_PYTHON_API PyObject* THPCppFunction_register_hook_dict(
|
|
PyObject* self,
|
|
PyObject* _var);
|
|
TORCH_PYTHON_API PyObject* THPCppFunction_register_hook(
|
|
PyObject* self,
|
|
PyObject* hook);
|
|
TORCH_PYTHON_API PyObject* THPCppFunction_register_prehook(
|
|
PyObject* self,
|
|
PyObject* hook);
|
|
|
|
TORCH_PYTHON_API PyObject* THPCppFunction_name(
|
|
PyObject* self,
|
|
PyObject* noargs);
|
|
TORCH_PYTHON_API PyObject* THPCppFunction_sequence_nr(
|
|
PyObject* self,
|
|
PyObject* noargs);
|
|
TORCH_PYTHON_API PyObject* THPCppFunction_input_metadata(
|
|
PyObject* self,
|
|
void* _unused);
|
|
|
|
TORCH_PYTHON_API PyTypeObject* _initFunctionPyTypeObject(
|
|
PyTypeObject& type,
|
|
const char* name,
|
|
PyGetSetDef* function_properties,
|
|
PyMethodDef* function_methods);
|
|
|
|
TORCH_PYTHON_API PyObject* registerFunctionHook(Node& fn, PyObject* hook);
|
|
|
|
TORCH_PYTHON_API PyObject* registerFunctionPreHook(Node& fn, PyObject* hook);
|
|
|
|
template <typename Ctor>
|
|
TORCH_PYTHON_API PyTypeObject* createForwardFunctionPyTypeObject(
|
|
PyTypeObject& type,
|
|
const char* name,
|
|
PyGetSetDef* function_properties = nullptr,
|
|
PyMethodDef* function_methods = nullptr) {
|
|
type.tp_new = &CppFunction_pynew<Ctor>;
|
|
return _initFunctionPyTypeObject(
|
|
type, name, function_properties, function_methods);
|
|
}
|
|
|
|
TORCH_PYTHON_API void registerCppFunction(
|
|
const std::type_info& type,
|
|
PyTypeObject* pytype);
|
|
TORCH_PYTHON_API PyObject* functionToPyObject(
|
|
const std::shared_ptr<Node>& cdata);
|
|
|
|
TORCH_PYTHON_API bool THPCppFunction_Check(PyObject* obj);
|
|
|
|
} // namespace torch::autograd
|