summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorZhou Mo <cdluminate@gmail.com>2016-11-28 02:17:25 +0000
committerZhou Mo <cdluminate@gmail.com>2016-11-28 02:17:25 +0000
commitcd681ecdd9383a0f84b854e6fefeb05966babce0 (patch)
tree924e9a111c3ce7176f79d9e68a7d14657bb2b0c5 /src
parentfa7fda78661fa795e3f6d3bbe7040e5d5d02e732 (diff)
downloadcaffeonacl-cd681ecdd9383a0f84b854e6fefeb05966babce0.tar.gz
caffeonacl-cd681ecdd9383a0f84b854e6fefeb05966babce0.tar.bz2
caffeonacl-cd681ecdd9383a0f84b854e6fefeb05966babce0.zip
Add the missing period
Diffstat (limited to 'src')
-rw-r--r--src/caffe/layers/crop_layer.cu6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/caffe/layers/crop_layer.cu b/src/caffe/layers/crop_layer.cu
index 9ad40126..1ea13253 100644
--- a/src/caffe/layers/crop_layer.cu
+++ b/src/caffe/layers/crop_layer.cu
@@ -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);