Skip to content

Commit

Permalink
Add the missing period
Browse files Browse the repository at this point in the history
  • Loading branch information
cdluminate committed Nov 28, 2016
1 parent fa7fda7 commit cd681ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/caffe/layers/crop_layer.cu
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ void CropLayer<Dtype>::crop_copy_gpu(const vector<Blob<Dtype>*>& bottom,
}
} else {
// We are at the last two dimensions, which are stored continuously in
// memory With (N,C,H,W)
// (0,1,2,3) cur_dim -> H
// cur_dim+1 -> W
// memory. With (N,C,H,W)
// (0,1,2,3) cur_dim -> H
// cur_dim+1 -> W
const int lines = top[0]->shape(cur_dim);
const int height = top[0]->shape(cur_dim);
const int width = top[0]->shape(cur_dim+1);
Expand Down

0 comments on commit cd681ec

Please sign in to comment.