Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cuDNN R2 #2038

Merged
merged 4 commits into from
Mar 24, 2015
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
note cuDNN v2 convolutional TODOs
  • Loading branch information
shelhamer committed Mar 24, 2015
commit 3cc9b73a011b7ba8964d1bccc97b944814cbeb38
5 changes: 4 additions & 1 deletion src/caffe/layers/cudnn_conv_layer.cu
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ void CuDNNConvolutionLayer<Dtype>::Forward_gpu(
for (int g = 0; g < this->group_; g++) {
cudnnConvolutionFwdAlgo_t algo;

// get the desired convolution algorithm
// pick the convolution algorithm
// TODO(shelhamer) this should be done during reshape
// TODO(shelhamer) the choice of automatic or manual algorithm picking
// should be exposed in proto
CUDNN_CHECK(cudnnGetConvolutionForwardAlgorithm(handle_[g],
bottom_descs_[i],
filter_desc_,
Expand Down