From 93864d90c337af70848dad95dbd8407889dce8e8 Mon Sep 17 00:00:00 2001 From: SeungHui Lee Date: Tue, 31 Oct 2023 06:47:07 -0400 Subject: [PATCH] Apply comment --- compiler/tflchef/core/src/ModelChef.cpp | 23 +++++++++++------------ compiler/tflchef/core/src/OpUtils.cpp | 1 - 2 files changed, 11 insertions(+), 13 deletions(-) diff --git a/compiler/tflchef/core/src/ModelChef.cpp b/compiler/tflchef/core/src/ModelChef.cpp index 0e8cdbe40ae..63c8d4527d5 100644 --- a/compiler/tflchef/core/src/ModelChef.cpp +++ b/compiler/tflchef/core/src/ModelChef.cpp @@ -141,7 +141,7 @@ gather_builtincode_map(const ::tflchef::ModelRecipe &model_recipe) for (const auto &operation : model_recipe.operation()) { - if ((operation.has_extype() && operation.extype() == "Custom") || operation.type() == "Custom") + if (operation.type() == "Custom" || (operation.has_extype() && operation.extype() == "Custom")) continue; auto op_chef = op_chef_registry().lookup(operation.type()).create(&operation); @@ -157,8 +157,8 @@ gather_builtincode_map(const ::tflchef::ModelRecipe &model_recipe) const auto &graph = model_recipe.graph(g); for (const auto &operation : graph.operation()) { - if ((operation.has_extype() && operation.extype() == "Custom") || - operation.type() == "Custom") + if (operation.type() == "Custom" || + (operation.has_extype() && operation.extype() == "Custom")) continue; auto op_chef = op_chef_registry().lookup(operation.type()).create(&operation); @@ -178,9 +178,9 @@ std::set gather_customcode_set(const ::tflchef::ModelRecipe &model_ std::set customcode_set; for (const auto &operation : model_recipe.operation()) { - if ((operation.has_extype() && operation.extype() == "Custom") || operation.type() == "Custom") + if (operation.type() == "Custom" || (operation.has_extype() && operation.extype() == "Custom")) { - assert(operation.has_custom_code()); + assert(not operation.custom_code().empty()); customcode_set.insert(operation.custom_code()); } } @@ -191,10 +191,10 @@ std::set gather_customcode_set(const ::tflchef::ModelRecipe &model_ const auto &graph = model_recipe.graph(g); for (const auto &operation : graph.operation()) { - if ((operation.has_extype() && operation.extype() == "Custom") || - operation.type() == "Custom") + if (operation.type() == "Custom" || + (operation.has_extype() && operation.extype() == "Custom")) { - assert(operation.has_custom_code()); + assert(not operation.custom_code().empty()); customcode_set.insert(operation.custom_code()); } } @@ -626,7 +626,7 @@ template std::map cook_graph(const T &graph, assert(operation.has_type()); std::string op_type = operation.type(); - if (operation.has_custom_code()) + if (not operation.custom_code().empty()) op_type = operation.custom_code(); auto op_chef = op_chef_registry().lookup(op_type).create(&operation); @@ -660,9 +660,8 @@ template std::map cook_graph(const T &graph, // custom operator else { - assert(operation.has_custom_code()); - auto op_it = - std::find(custom_code_vec.begin(), custom_code_vec.end(), operation.custom_code()); + assert(not operation.custom_code().empty()); + auto op_it = std::find(custom_code_vec.begin(), custom_code_vec.end(), op_type); assert(op_it != custom_code_vec.end()); opcode_index = builtin_code_map.size(); opcode_index += std::distance(custom_code_vec.begin(), op_it); diff --git a/compiler/tflchef/core/src/OpUtils.cpp b/compiler/tflchef/core/src/OpUtils.cpp index be65bc8f91b..6db7527bc7a 100644 --- a/compiler/tflchef/core/src/OpUtils.cpp +++ b/compiler/tflchef/core/src/OpUtils.cpp @@ -22,7 +22,6 @@ void check_custom_op_value(const tflchef::Operation operation, std::string op_ty { if ((operation.has_extype() && operation.extype() == "Custom") || operation.type() == "Custom") { - assert(operation.has_custom_code()); assert(operation.custom_code() == op_type); } }