From: 박세희/동작제어Lab(SR)/Principal Engineer/삼성전자 Date: Thu, 22 Nov 2018 05:12:23 +0000 (+0900) Subject: [tflchef] Add Reshape for reverse (#2371) X-Git-Tag: nncc_backup~1275 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d5edd40a48e6ee7c2934b7f6cf8e883f569ad43b;p=platform%2Fcore%2Fml%2Fnnfw.git [tflchef] Add Reshape for reverse (#2371) This will add Reshape Op for tflchef-reverse Signed-off-by: SaeHie Park --- diff --git a/contrib/tflchef/tests/CMakeLists.txt b/contrib/tflchef/tests/CMakeLists.txt index 81fb38d..dc5151d 100644 --- a/contrib/tflchef/tests/CMakeLists.txt +++ b/contrib/tflchef/tests/CMakeLists.txt @@ -40,7 +40,7 @@ list(APPEND GEN_TFLITEFILES "averagepool2d/test.recipe") #list(APPEND GEN_TFLITEFILES "maxpool2d/test.recipe") #list(APPEND GEN_TFLITEFILES "relu/test.recipe") #list(APPEND GEN_TFLITEFILES "relu6/test.recipe") -#list(APPEND GEN_TFLITEFILES "reshape/test.recipe") +list(APPEND GEN_TFLITEFILES "reshape/test.recipe") # TODO if all operates are added we can just use one line of "*/test.recipe" foreach(TFLITEFILE IN ITEMS ${GEN_TFLITEFILES}) diff --git a/contrib/tflchef/tflite/src/Op/Reshape.cpp b/contrib/tflchef/tflite/src/Op/Reshape.cpp new file mode 100644 index 0000000..5bb403e --- /dev/null +++ b/contrib/tflchef/tflite/src/Op/Reshape.cpp @@ -0,0 +1,52 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#include "Reshape.h" + +#include "Convert.h" + +namespace tflchef +{ + +void TFliteOpReshape::filler(const tflite::Operator *op, TFliteImport *import, + tflchef::ModelRecipe *model_recipe) const +{ + // Nothing to do with filler +} + +tflchef::Operation *TFliteOpReshape::build(const tflite::Operator *op, TFliteImport *import, + tflchef::ModelRecipe *model_recipe) const +{ + auto op_params = op->builtin_options_as_ReshapeOptions(); + assert(op_params != nullptr); + + auto operation = model_recipe->add_operation(); + + operation->set_type("Reshape"); + + auto op_options = operation->mutable_reshape_options(); + + std::vector new_shape = as_index_vector(op_params->new_shape()); + + for (auto shape : new_shape) + { + op_options->add_new_shape(shape); + } + + return operation; +} + +} // namespace tflchef diff --git a/contrib/tflchef/tflite/src/Op/Reshape.h b/contrib/tflchef/tflite/src/Op/Reshape.h new file mode 100644 index 0000000..be9fdac --- /dev/null +++ b/contrib/tflchef/tflite/src/Op/Reshape.h @@ -0,0 +1,39 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef __TFLITE_OP_RESHAPE_H__ +#define __TFLITE_OP_RESHAPE_H__ + +#include "TFliteOpChef.h" + +namespace tflchef +{ + +/** + * @brief tflchef operator builder for Reshape + */ +class TFliteOpReshape : public TFliteOpChef +{ +public: + void filler(const tflite::Operator *op, TFliteImport *import, + tflchef::ModelRecipe *model_recipe) const override; + tflchef::Operation *build(const tflite::Operator *op, TFliteImport *import, + tflchef::ModelRecipe *model_recipe) const override; +}; + +} // namespace tflchef + +#endif // __TFLITE_OP_RESHAPE_H__ diff --git a/contrib/tflchef/tflite/src/TFliteOpChefs.h b/contrib/tflchef/tflite/src/TFliteOpChefs.h index 73e1ed6..654303a 100644 --- a/contrib/tflchef/tflite/src/TFliteOpChefs.h +++ b/contrib/tflchef/tflite/src/TFliteOpChefs.h @@ -25,6 +25,6 @@ //#include "Op/MaxPool2D.h" //#include "Op/ReLU.h" //#include "Op/ReLU6.h" -//#include "Op/Reshape.h" +#include "Op/Reshape.h" #endif // __TFLITE_OP_CHEFS_H__ diff --git a/contrib/tflchef/tflite/src/TFliteOpRegistry.h b/contrib/tflchef/tflite/src/TFliteOpRegistry.h index f976221..e1dd21e 100644 --- a/contrib/tflchef/tflite/src/TFliteOpRegistry.h +++ b/contrib/tflchef/tflite/src/TFliteOpRegistry.h @@ -62,7 +62,7 @@ private: //_tfliteop_map[tflite::BuiltinOperator_MAX_POOL_2D] = make_unique(); //_tfliteop_map[tflite::BuiltinOperator_RELU] = make_unique(); //_tfliteop_map[tflite::BuiltinOperator_RELU6] = make_unique(); - //_tfliteop_map[tflite::BuiltinOperator_RESHAPE] = make_unique(); + _tfliteop_map[tflite::BuiltinOperator_RESHAPE] = make_unique(); } private: