summaryrefslogtreecommitdiff
path: root/src/caffe/layers/cudnn_relu_layer.cu
AgeCommit message (Collapse)AuthorFilesLines
2016-05-16Add cuDNN v5 support, drop cuDNN v3 supportFelix Abecassis1-2/+21
cuDNN v4 is still supported.
2015-12-01dismantle layer headersEvan Shelhamer1-1/+1
No more monolithic includes: split layers into their own headers for modular inclusion and build.
2015-10-21Clean redundant/unnecessary headersKang Kim1-2/+0
2015-03-24replace cuDNN alphas and betas with coefficient valuesEvan Shelhamer1-12/+4
Give cuDNN {0, 1} constants for controlling accumulation through the alpha and beta coefficients.
2015-03-24switch to cuDNN R2Simon Layton1-5/+19
2014-10-10fix instantiationYangqing Jia1-1/+1
2014-09-19fix types of (Layer)SetUp, Reshape, Forward, and Backward callsJonathan L Long1-5/+5
Using the type vector<Blob<Dtype*>* for outputs allows modification of the vector itself, while it is only okay to modify the blobs pointed to by the elements of the vector. Switching the types to const vector<Blob<Dtype>*>& makes them more correct.
2014-09-07CUDNN_CHECKEvan Shelhamer1-8/+4
2014-09-07strategize cuDNN activations: ReLU, Sigmoid, TanHEvan Shelhamer1-0/+55