style: line continuation spacing
authorEvan Shelhamer <shelhamer@imaginarynumber.net>
Tue, 18 Mar 2014 04:16:44 +0000 (21:16 -0700)
committerEvan Shelhamer <shelhamer@imaginarynumber.net>
Tue, 18 Mar 2014 04:32:48 +0000 (21:32 -0700)
src/caffe/layers/padding_layer.cu

index cd52b80..f19294b 100644 (file)
@@ -57,8 +57,8 @@ __global__ void PaddingBackward(const int count, const Dtype* in, Dtype* out,
     int c = index % channel;
     index /= channel;
     out[((index * channel + c) * height_in + h) * width_in + w] =
-      in[((index * channel + c) * height_out + h + pad) *
-         width_out + pad + w];
+        in[((index * channel + c) * height_out + h + pad) *
+           width_out + pad + w];
   }
 }