Fix format error in ShapeInference (#5733)
author오형석/On-Device Lab(SR)/Staff Engineer/삼성전자 <hseok82.oh@samsung.com>
Mon, 22 Jul 2019 05:06:03 +0000 (14:06 +0900)
committerGitHub Enterprise <noreply-CODE@samsung.com>
Mon, 22 Jul 2019 05:06:03 +0000 (14:06 +0900)
Fix format error in runtime ShapeInference

Signed-off-by: Hyeongseok Oh <hseok82.oh@samsung.com>
runtimes/neurun/core/src/util/ShapeInference.cc

index f0138a7..5a7bfde 100644 (file)
@@ -127,7 +127,7 @@ Shapes inferConcatShape(const Shapes &in_shapes, const model::operation::ConcatN
   {
     assert(in_shape.rank() == first_in_shape.rank());
     for (int64_t dim_idx = 0; dim_idx < in_shape.rank(); ++dim_idx)
-        assert(dim_idx == concat_axis || in_shape.dim(dim_idx) == first_in_shape.dim(dim_idx));
+      assert(dim_idx == concat_axis || in_shape.dim(dim_idx) == first_in_shape.dim(dim_idx));
   }
 
   // Calculate output shape