Skip to content

Commit

Permalink
[luci-quantize] use circle_shape function instead of shape_get
Browse files Browse the repository at this point in the history
This commit use circle_shape function instead of shape_get.
ONE-DCO-1.0-Signed-off-by: kyeong8139 <[email protected]>
  • Loading branch information
kyeong8139 committed Aug 28, 2024
1 parent 899c987 commit 2f33f89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/luci/service/src/Nodes/CircleQuantize.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ luci::CircleNode *CloneNodeLet<CN::OPQR>::visit(const luci::CircleQuantize *)

loco::TensorShape sinf::Algorithm::visit(const luci::CircleQuantize *node)
{
const auto input_shape = luci::shape_get(node->input()).as<loco::TensorShape>();
const auto input_shape = circle_shape(node);
return input_shape;
}

Expand Down

0 comments on commit 2f33f89

Please sign in to comment.