Caffe2 - C++ API
A deep learning, cross platform ML framework
conv_transpose_op_mobile.cc
1 #include "caffe2/operators/conv_transpose_op_mobile.h"
2 #include "caffe2/operators/conv_transpose_op_mobile_impl.h"
3 
4 namespace caffe2 {
5 
6 #ifndef CAFFE2_MOBILE
7 #error "mobile build state not defined"
8 #endif
9 
10 #if CAFFE2_MOBILE
11 // mobile-only implementation (tiled + vectorized + multithreaded)
12 REGISTER_CPU_OPERATOR_WITH_ENGINE(
13  ConvTranspose,
14  MOBILE,
15  ConvTransposeMobileOp<float, CPUContext>);
16 #endif
17 
18 } // namespace caffe2
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...