Files
pytorch/caffe2/operators/fully_connected_op_gpu.cc
2015-06-25 16:26:01 -07:00

11 lines
328 B
C++

#include "caffe2/core/context_gpu.h"
#include "caffe2/operators/fully_connected_op.h"
namespace caffe2 {
namespace {
REGISTER_CUDA_OPERATOR(FC, FullyConnectedOp<float, CUDAContext>);
REGISTER_CUDA_OPERATOR(FCGradient,
FullyConnectedGradientOp<float, CUDAContext>);
} // namespace
} // namespace caffe2