Skip to content

Commit

Permalink
[luci/service] use namespace
Browse files Browse the repository at this point in the history
This commit use namespace.

ONE-DCO-1.0-Signed-off-by: kyeong8139 <[email protected]>
  • Loading branch information
kyeong8139 committed Aug 29, 2024
1 parent 303c7ee commit 51bdff7
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions compiler/luci/service/src/Nodes/CircleQuantize.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,16 @@ luci::CircleNode *CloneNodeLet<CN::OPQR>::visit(const luci::CircleQuantize *)
return _graph->nodes()->create<luci::CircleQuantize>();
}

loco::TensorShape sinf::Algorithm::visit(const luci::CircleQuantize *node)
namespace sinf
{

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

} // namespace sinf

} // namespace luci

0 comments on commit 51bdff7

Please sign in to comment.