Caffe2 - C++ API
A deep learning, cross platform ML framework
autograd.h
1 #ifndef THP_AUTOGRAD_H
2 #define THP_AUTOGRAD_H
3 
4 PyObject * THPAutograd_initExtension(PyObject *_unused);
5 void THPAutograd_initFunctions();
6 
7 namespace torch { namespace autograd {
8 
9 PyMethodDef* python_functions();
10 
11 }}
12 
13 #include <torch/csrc/autograd/python_function.h>
14 #include <torch/csrc/autograd/python_variable.h>
15 #include <torch/csrc/autograd/python_engine.h>
16 
17 #endif
Definition: jit_type.h:17