From fa7fda78661fa795e3f6d3bbe7040e5d5d02e732 Mon Sep 17 00:00:00 2001 From: Zhou Mo Date: Mon, 28 Nov 2016 01:20:58 +0000 Subject: [PATCH] Make lint happy (> 80 characters) --- src/caffe/layers/crop_layer.cu | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/caffe/layers/crop_layer.cu b/src/caffe/layers/crop_layer.cu index 6ea32d2..9ad4012 100644 --- a/src/caffe/layers/crop_layer.cu +++ b/src/caffe/layers/crop_layer.cu @@ -39,10 +39,10 @@ void CropLayer::crop_copy_gpu(const vector*>& 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); -- 2.7.4