From: 박종현/동작제어Lab(SR)/Staff Engineer/삼성전자 Date: Mon, 1 Oct 2018 07:40:51 +0000 (+0900) Subject: [enco] Introduce IR Utils (#1693) X-Git-Tag: nncc_backup~1664 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4b9b6b267b154db2ec3f3d2e42dce942eafa2d97;p=platform%2Fcore%2Fml%2Fnnfw.git [enco] Introduce IR Utils (#1693) This commit introduces IRUtils.h and IRUtils.cpp which will hold coco IR-related utilities used in enco. Signed-off-by: Jonghyun Park --- diff --git a/contrib/enco/core/src/IRUtils.cpp b/contrib/enco/core/src/IRUtils.cpp new file mode 100644 index 0000000..71fd592 --- /dev/null +++ b/contrib/enco/core/src/IRUtils.cpp @@ -0,0 +1,36 @@ +/* + * 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 "IRUtils.h" + +#include + +namespace enco +{ + +void subst(coco::Object *from, coco::Object *into) +{ + assert(from != into); + + while (!from->uses()->empty()) + { + auto use = *(from->uses()->begin()); + + use->value(into); + } +} + +} // namespace enco diff --git a/contrib/enco/core/src/IRUtils.h b/contrib/enco/core/src/IRUtils.h new file mode 100644 index 0000000..984a8c1 --- /dev/null +++ b/contrib/enco/core/src/IRUtils.h @@ -0,0 +1,34 @@ +/* + * 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 __ENCO_IR_UTILS_H__ +#define __ENCO_IR_UTILS_H__ + +#include + +namespace enco +{ + +/** + * @brief Replace all the "USE" of 'from' with 'into' + * + * NOTE subst(from, into) WILL NOT update 'DEF' + */ +void subst(coco::Object *from, coco::Object *into); + +} // namespace enco + +#endif // __ENCO_IR_UTILS_H__ diff --git a/contrib/enco/core/src/Transforms/FeatureUnification.cpp b/contrib/enco/core/src/Transforms/FeatureUnification.cpp index 56db326..95e79b5 100644 --- a/contrib/enco/core/src/Transforms/FeatureUnification.cpp +++ b/contrib/enco/core/src/Transforms/FeatureUnification.cpp @@ -15,6 +15,7 @@ */ #include "FeatureUnification.h" +#include "IRUtils.h" #include @@ -28,18 +29,6 @@ using nncc::foundation::make_unique; namespace { -void subst(coco::Object *from, coco::Object *into) -{ - assert(from != into); - - while (!from->uses()->empty()) - { - auto use = *(from->uses()->begin()); - - use->value(into); - } -} - bool is_static_layout(const coco::FeatureLayout::ID *id) { if (id == coco::FeatureLayouts::BHWC::uid())