Skip to content

Commit

Permalink
Merge pull request #5038 from CDLuminate/fix-spelling
Browse files Browse the repository at this point in the history
Make lint happy (> 80 characters)
  • Loading branch information
jeffdonahue committed Nov 28, 2016
2 parents e6b079d + cd681ec commit 24d2f67
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/caffe/layers/crop_layer.cu
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ void CropLayer<Dtype>::crop_copy_gpu(const vector<Blob<Dtype>*>& bottom,
src_data, dest_data, is_forward);
}
} 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
// 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
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 24d2f67

Please sign in to comment.