From 49a00215b6f8af472c43fac9a5f136cef4606e6b Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EB=B0=95=EC=B2=9C=EA=B5=90/On-Device=20Lab=28SR=29/Enginee?= =?utf8?q?r/=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Fri, 1 Nov 2019 17:24:27 +0900 Subject: [PATCH] [moco] Fix typo on TFMean shape inference (#8699) This commit fixes typo on TFMean shape inference Signed-off-by: Cheongyo Bahk --- compiler/moco/service/src/Service/TFShapeInferenceRule.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/moco/service/src/Service/TFShapeInferenceRule.cpp b/compiler/moco/service/src/Service/TFShapeInferenceRule.cpp index b99611c..27d7f9f 100644 --- a/compiler/moco/service/src/Service/TFShapeInferenceRule.cpp +++ b/compiler/moco/service/src/Service/TFShapeInferenceRule.cpp @@ -336,7 +336,7 @@ public: auto input_shape = node_shape(node->input()); auto reduction_indices = node->reduction_indices(); - // Get constant values if reduction_indeces is const + // Get constant values if reduction_indices is const std::vector reduction_values; if (auto tfconst = dynamic_cast(reduction_indices)) { -- 2.7.4