• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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