Caffe2 - C++ API
A deep learning, cross platform ML framework
GLImage.cc
1 
2 #include "GLImage.h"
3 #include "arm_neon_support.h"
4 #include "caffe2/core/typeid.h"
5 
6 namespace caffe2 {
7 CAFFE_KNOWN_TYPE(GLImage<float>);
8 CAFFE_KNOWN_TYPE(GLImage<uint8_t>);
9 CAFFE_KNOWN_TYPE(GLImageVector<float>);
10 CAFFE_KNOWN_TYPE(GLImageVector<uint8_t>);
11 #ifdef __ARM_NEON__
12 CAFFE_KNOWN_TYPE(GLImage<float16_t>);
13 CAFFE_KNOWN_TYPE(GLImageVector<float16_t>);
14 #endif
15 } // namespace caffe2
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...