From: 박천교/On-Device Lab(SR)/Engineer/삼성전자 Date: Mon, 21 Oct 2019 03:12:43 +0000 (+0900) Subject: [exo] Update make_filter_* comment (#8322) X-Git-Tag: submit/tizen/20191205.083104~676 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f1738966b66d5c1189fc647b9ac32c5db93167d7;p=platform%2Fcore%2Fml%2Fnnfw.git [exo] Update make_filter_* comment (#8322) This commit fixes typo and updates following helpers in GraphBlock.h: - make_filter_encode - make_filter_decode Signed-off-by: Cheongyo Bahk --- diff --git a/compiler/exo/src/GraphBlock.h b/compiler/exo/src/GraphBlock.h index a1d16fe..dbae976 100644 --- a/compiler/exo/src/GraphBlock.h +++ b/compiler/exo/src/GraphBlock.h @@ -40,10 +40,10 @@ enum class FilterLayout HWIO, // a.k.a., HWCN, Tensorflow uses this layout for filter }; -/// @brief Create a loco::FilterDecode of default layout +/// @brief Create a loco::FilterEncode of given layout template loco::FilterEncode *make_filter_encode(loco::Node *input_for_encode); -/// @brief Create a loco::FilterDecode of default layout +/// @brief Create a loco::FilterDecode of given layout template loco::FilterDecode *make_filter_decode(loco::Node *input_for_decode); } // namespace exo