Caffe2 - C++ API
A deep learning, cross platform ML framework
storage.h
1 #ifndef CAFFE2_CORE_STORAGE_H_
2 #define CAFFE2_CORE_STORAGE_H_
3 
4 #include <cstddef>
5 #include <cstdint>
6 #include <fstream>
7 #include <sstream>
8 #include <type_traits>
9 #include <typeinfo>
10 #include <vector>
11 
12 #include "caffe2/core/allocator.h"
13 #include "caffe2/core/common.h"
14 #include "caffe2/core/context.h"
15 #include "caffe2/core/flags.h"
16 #include "caffe2/core/logging.h"
17 #include <c10/util/typeid.h>
18 
19 #include <c10/core/Allocator.h>
20 #include <c10/core/Device.h>
21 #include <c10/core/DeviceType.h>
22 #include <c10/util/intrusive_ptr.h>
23 #include <c10/core/Storage.h>
24 #include <c10/core/StorageImpl.h>
25 
26 namespace caffe2 {
27 
28 using StorageImpl = at::StorageImpl;
29 using Storage = at::Storage;
30 
31 } // namespace caffe2
32 
33 #endif // CAFFE2_CORE_STORAGE_H_
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...
Definition: blob.h:13