Skip to content

Commit

Permalink
[luci-interpreter] Enable assertion of RmsNorm in loader (#14211)
Browse files Browse the repository at this point in the history
This commit enables assertion which is temporarily disabled.

ONE-DCO-1.0-Signed-off-by: Seockho Kim [email protected]
  • Loading branch information
seockho-kim authored Oct 14, 2024
1 parent e3ee014 commit 798b764
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/luci-interpreter/src/loader/nodes/RmsNorm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ std::unique_ptr<Kernel> build_kernel_CircleRmsNorm(const luci::CircleNode *circl
KernelBuilderHelper &helper)
{
const auto *node = loco::must_cast<const luci::CircleRmsNorm *>(circle_node);
// assert(node->arity() == 2);
assert(node->arity() == 2);

const Tensor *input = helper.getInputTensor(node->input());
const Tensor *gamma = helper.getInputTensor(node->gamma());
Expand Down

0 comments on commit 798b764

Please sign in to comment.