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 #ifdef C10_MOBILE
7 // mobile-only implementation (tiled + vectorized + multithreaded)
8 REGISTER_CPU_OPERATOR_WITH_ENGINE(
10  MOBILE,
11  ConvTransposeMobileOp<float, CPUContext>);
12 #endif
13 
14 } // namespace caffe2
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...
Definition: blob.h:13