From cd681ecdd9383a0f84b854e6fefeb05966babce0 Mon Sep 17 00:00:00 2001 From: Zhou Mo Date: Mon, 28 Nov 2016 02:17:25 +0000 Subject: [PATCH] Add the missing period --- src/caffe/layers/crop_layer.cu | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/caffe/layers/crop_layer.cu b/src/caffe/layers/crop_layer.cu index 9ad4012..1ea1325 100644 --- a/src/caffe/layers/crop_layer.cu +++ b/src/caffe/layers/crop_layer.cu @@ -40,9 +40,9 @@ void CropLayer::crop_copy_gpu(const vector*>& 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); -- 2.7.4