diff --git a/compiler/circlechef/circle/src/Op/RmsNorm.cpp b/compiler/circlechef/circle/src/Op/RmsNorm.cpp index c35d0832fc6..9bcf71c2e96 100644 --- a/compiler/circlechef/circle/src/Op/RmsNorm.cpp +++ b/compiler/circlechef/circle/src/Op/RmsNorm.cpp @@ -26,8 +26,7 @@ void CircleOpRmsNorm::filler(const circle::Operator *op, CircleImport *import, { // index 1 maybe constant const std::vector &inputs = as_index_vector(op->inputs()); - // TODO: Enable assert after recipe updated. - // assert(inputs.size() == 2); + assert(inputs.size() == 2); import->set_tensor_filler(inputs[1]); // set gaussian filler }