From: Shubham Gupta/System SW /SRI-Bangalore/Engineer/삼성전자 Date: Mon, 29 Oct 2018 02:08:48 +0000 (+0530) Subject: Allign comment to have same formatting (#3369) X-Git-Tag: 0.3~515 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ada42c22a8dfff390bc784f74452ef5ee62d74f1;p=platform%2Fcore%2Fml%2Fnnfw.git Allign comment to have same formatting (#3369) This patch will remove tab spaces and align the comment to have same formating style in same_padding function Signed-off-by: shubham --- diff --git a/runtimes/pure_arm_compute/src/compilation.cc b/runtimes/pure_arm_compute/src/compilation.cc index 3b927bc..429ff35 100644 --- a/runtimes/pure_arm_compute/src/compilation.cc +++ b/runtimes/pure_arm_compute/src/compilation.cc @@ -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);