Caffe2 - C++ API
A deep learning, cross platform ML framework
operator.cc
1 #include "operator.h"
2 
3 namespace caffe2 {
4 
5 CAFFE_DEFINE_REGISTRY(GLOperatorRegistry, OperatorBase, const OperatorDef &,
6  Workspace *);
7 CAFFE_REGISTER_DEVICE_TYPE(DeviceType::OPENGL, GLOperatorRegistry);
8 
9 } // namespace caffe2
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...