Caffe2 - C++ API
A deep learning, cross platform ML framework
relu_op_cudnn.cc
1 #include "caffe2/operators/relu_op.h"
2 
3 #include "caffe2/operators/activation_ops_cudnn.h"
4 
5 namespace caffe2 {
6 
7 REGISTER_CUDNN_OPERATOR(Relu, CuDNNActivationOp<CUDNN_ACTIVATION_RELU>);
8 REGISTER_CUDNN_OPERATOR(
9  ReluGradient,
10  CuDNNActivationGradientOp<CUDNN_ACTIVATION_RELU>);
11 
12 } // namespace caffe2
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...
Definition: blob.h:13
Definition: OpClasses.h:2