Skip to content

Commit

Permalink
[tflchef] Add filler for Less op (#12581)
Browse files Browse the repository at this point in the history
This pr adds filler for Less op.

ONE-DCO-1.0-Signed-off-by: Artem Balyshev <[email protected]>
  • Loading branch information
BalyshevArtem authored Jan 31, 2024
1 parent 8c60346 commit 8981fc0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion compiler/tflchef/tflite/src/Op/Less.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,20 @@
#include "Less.h"

#include "Convert.h"
#include "FillerHelper.h"

namespace tflchef
{

void TFliteOpLess::filler(const tflite::Operator *op, TFliteImport *import,
tflchef::ModelRecipe *model_recipe) const
{
// Nothing to do with filler
const auto &inputs = *op->inputs();

for (int input : inputs)
{
fill_tensor_to_import(input, import);
}
}

tflchef::Operation *TFliteOpLess::build(RecipeChefContext *ctx) const
Expand Down

0 comments on commit 8981fc0

Please sign in to comment.