From 2f33f8990371e1e3db88923dd5c87ea3a02f483b Mon Sep 17 00:00:00 2001 From: bokyeong lee Date: Wed, 28 Aug 2024 13:37:54 +0900 Subject: [PATCH] [luci-quantize] use circle_shape function instead of shape_get This commit use circle_shape function instead of shape_get. ONE-DCO-1.0-Signed-off-by: kyeong8139 --- compiler/luci/service/src/Nodes/CircleQuantize.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/luci/service/src/Nodes/CircleQuantize.cpp b/compiler/luci/service/src/Nodes/CircleQuantize.cpp index dc1e26b9d31..30acd516f08 100644 --- a/compiler/luci/service/src/Nodes/CircleQuantize.cpp +++ b/compiler/luci/service/src/Nodes/CircleQuantize.cpp @@ -29,7 +29,7 @@ luci::CircleNode *CloneNodeLet::visit(const luci::CircleQuantize *) loco::TensorShape sinf::Algorithm::visit(const luci::CircleQuantize *node) { - const auto input_shape = luci::shape_get(node->input()).as(); + const auto input_shape = circle_shape(node); return input_shape; }