summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorYangqing Jia <jiayq84@gmail.com>2013-10-15 13:45:41 -0700
committerYangqing Jia <jiayq84@gmail.com>2013-10-15 13:45:41 -0700
commitbc98a55348003cf64090028bc2f0cde57ae7e261 (patch)
treeab8dca381469708e1f3f7c31f2e71936be36383b /src
parent4f7e519ea0a1db36a54c68f5021f6c4acfc3a657 (diff)
downloadcaffe-bc98a55348003cf64090028bc2f0cde57ae7e261.tar.gz
caffe-bc98a55348003cf64090028bc2f0cde57ae7e261.tar.bz2
caffe-bc98a55348003cf64090028bc2f0cde57ae7e261.zip
indentation
Diffstat (limited to 'src')
-rw-r--r--src/caffe/layers/conv_layer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/caffe/layers/conv_layer.cpp b/src/caffe/layers/conv_layer.cpp
index 16c9362b..d264d62a 100644
--- a/src/caffe/layers/conv_layer.cpp
+++ b/src/caffe/layers/conv_layer.cpp
@@ -243,7 +243,7 @@ Dtype ConvolutionLayer<Dtype>::Backward_gpu(const vector<Blob<Dtype>*>& top,
}
// col2im back to the data
col2im_gpu(col_diff, CHANNELS_, HEIGHT_,
- WIDTH_, KSIZE_, STRIDE_, bottom_diff + (*bottom)[0]->offset(n));
+ WIDTH_, KSIZE_, STRIDE_, bottom_diff + (*bottom)[0]->offset(n));
}
}
return Dtype(0.);