Allign comment to have same formatting (#3369)
authorShubham Gupta/System SW /SRI-Bangalore/Engineer/삼성전자 <shub98.gupta@samsung.com>
Mon, 29 Oct 2018 02:08:48 +0000 (07:38 +0530)
committer오형석/동작제어Lab(SR)/Staff Engineer/삼성전자 <hseok82.oh@samsung.com>
Mon, 29 Oct 2018 02:08:48 +0000 (11:08 +0900)
This patch will remove tab spaces and align the comment to have same formating style in same_padding function

Signed-off-by: shubham <shub98.gupta@samsung.com>
runtimes/pure_arm_compute/src/compilation.cc

index 3b927bc..429ff35 100644 (file)
@@ -183,8 +183,8 @@ Padding same_padding(const nnfw::util::feature::Shape &ifm_shape,
   //
   // SAME padding. Padding on both ends are the "same":
   //
-  //   padding_to_beginning = total_padding / 2
-  //  padding_to_end = (total_padding + 1)/2.
+  // padding_to_beginning = total_padding / 2
+  // padding_to_end = (total_padding + 1)/2.
   //
   const int32_t vertical_needed_input = (ofm_shape.H - 1) * stride.vertical + kh;
   const int32_t vertical_total_padding = std::max(0, vertical_needed_input - ifm_shape.H);