Home
last modified time | relevance | path

Searched refs:THPFunctionType (Results 1 – 2 of 2) sorted by relevance

/external/pytorch/torch/csrc/autograd/
Dpython_function.h154 extern PyTypeObject THPFunctionType;
159 return PyObject_IsInstance(obj, (PyObject*)&THPFunctionType); in THPFunction_Check()
Dpython_function.cpp1793 PyTypeObject THPFunctionType = { variable
1836 if (PyType_Ready(&THPFunctionType) < 0) in THPFunction_initModule()
1838 Py_INCREF(&THPFunctionType); in THPFunction_initModule()
1839 PyModule_AddObject(module, "_FunctionBase", (PyObject*)&THPFunctionType); in THPFunction_initModule()