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