Caffe2 - C++ API
A deep learning, cross platform ML framework
Types.h
1 #ifndef THP_TYPES_INC
2 #define THP_TYPES_INC
3 
4 #include <cstddef>
5 #include <TH/TH.h>
6 
7 #ifndef INT64_MAX
8 #include <cstdint>
9 #endif
10 
11 template <typename T> struct THPTypeInfo {};
12 
13 namespace torch {
14 
15 typedef THStorage THVoidStorage;
16 
17 typedef THTensor THVoidTensor;
18 
19 } // namespace torch
20 
21 #endif
Definition: jit_type.h:17