1 #include "caffe2/core/context_gpu.h" 2 #include "caffe2/operators/locally_connected_op.h" 3 #include "caffe2/operators/locally_connected_op_impl.h" 7 REGISTER_CUDA_OPERATOR(LC, LocallyConnectedOp<float, CUDAContext>);
8 REGISTER_CUDA_OPERATOR(
10 LocallyConnectedGradientOp<float, CUDAContext>);
12 REGISTER_CUDA_OPERATOR(LC1D, LocallyConnectedOp<float, CUDAContext>);
13 REGISTER_CUDA_OPERATOR(
15 LocallyConnectedGradientOp<float, CUDAContext>);
17 REGISTER_CUDA_OPERATOR(LC2D, LocallyConnectedOp<float, CUDAContext>);
18 REGISTER_CUDA_OPERATOR(
20 LocallyConnectedGradientOp<float, CUDAContext>);
22 REGISTER_CUDA_OPERATOR(LC3D, LocallyConnectedOp<float, CUDAContext>);
23 REGISTER_CUDA_OPERATOR(
25 LocallyConnectedGradientOp<float, CUDAContext>);
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...