Caffe2 - C++ API
A deep learning, cross platform ML framework
Layout.h
1 #pragma once
2 
3 #include <torch/csrc/python_headers.h>
4 
5 #include <ATen/Layout.h>
6 
7 #include <string>
8 
9 const int LAYOUT_NAME_LEN = 64;
10 
11 struct THPLayout {
12  PyObject_HEAD
13  at::Layout layout;
14  char name[LAYOUT_NAME_LEN + 1];
15 };
16 
17 extern PyTypeObject THPLayoutType;
18 
19 inline bool THPLayout_Check(PyObject *obj) {
20  return Py_TYPE(obj) == &THPLayoutType;
21 }
22 
23 PyObject * THPLayout_New(at::Layout layout, const std::string& name);
24 
25 void THPLayout_init(PyObject *module);