From abc9d515de3d18ba1750c6523d315921ad90fbb4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EC=98=A4=ED=98=95=EC=84=9D/On-Device=20Lab=28SR=29/Staff?= =?utf8?q?=20Engineer/=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Mon, 22 Jul 2019 14:06:03 +0900 Subject: [PATCH] Fix format error in ShapeInference (#5733) Fix format error in runtime ShapeInference Signed-off-by: Hyeongseok Oh --- runtimes/neurun/core/src/util/ShapeInference.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtimes/neurun/core/src/util/ShapeInference.cc b/runtimes/neurun/core/src/util/ShapeInference.cc index f0138a7..5a7bfde 100644 --- a/runtimes/neurun/core/src/util/ShapeInference.cc +++ b/runtimes/neurun/core/src/util/ShapeInference.cc @@ -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 -- 2.7.4