Caffe2 - C++ API
A deep learning, cross platform ML framework
store_handler.cc
1 #include "store_handler.h"
2 
3 #include <memory>
4 
5 #include <c10/util/typeid.h>
6 
7 namespace caffe2 {
8 
9 constexpr std::chrono::milliseconds StoreHandler::kDefaultTimeout;
10 constexpr std::chrono::milliseconds StoreHandler::kNoTimeout;
11 
12 StoreHandler::~StoreHandler() {
13  // NOP; definition is here to make sure library contains
14  // symbols for this abstract class.
15 }
16 
17 CAFFE_KNOWN_TYPE(std::unique_ptr<StoreHandler>);
18 
19 } // namespace caffe2
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...
Definition: blob.h:13