xref: /aosp_15_r20/external/pytorch/torch/csrc/autograd/python_autograd.h (revision da0073e96a02ea20f0ac840b70461e3646d07c45)
1 #ifndef THP_AUTOGRAD_H
2 #define THP_AUTOGRAD_H
3 
4 PyObject* THPAutograd_initExtension(PyObject* _unused, PyObject* unused);
5 void THPAutograd_initFunctions();
6 
7 namespace torch::autograd {
8 
9 PyMethodDef* python_functions();
10 
11 }
12 
13 #include <torch/csrc/autograd/python_engine.h>
14 #include <torch/csrc/autograd/python_function.h>
15 #include <torch/csrc/autograd/python_variable.h>
16 
17 #endif
18