Caffe2 - C++ API
A deep learning, cross platform ML framework
structseq.h
1 #pragma once
2 
3 #include "torch/csrc/python_headers.h"
4 
5 namespace torch { namespace utils {
6 
7 #if PY_MAJOR_VERSION == 2
8 PyObject *structseq_slice(PyStructSequence *obj, Py_ssize_t low, Py_ssize_t high);
9 #endif
10 
11 PyObject *returned_structseq_repr(PyStructSequence *obj);
12 
13 }}
Definition: jit_type.h:17