[exo] Update make_filter_* comment (#8322)
author박천교/On-Device Lab(SR)/Engineer/삼성전자 <ch.bahk@samsung.com>
Mon, 21 Oct 2019 03:12:43 +0000 (12:12 +0900)
committer박세희/On-Device Lab(SR)/Principal Engineer/삼성전자 <saehie.park@samsung.com>
Mon, 21 Oct 2019 03:12:43 +0000 (12:12 +0900)
This commit fixes typo and updates following helpers in GraphBlock.h:
- make_filter_encode
- make_filter_decode

Signed-off-by: Cheongyo Bahk <ch.bahk@samsung.com>
compiler/exo/src/GraphBlock.h

index a1d16fe..dbae976 100644 (file)
@@ -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 <FilterLayout T> 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 <FilterLayout T> loco::FilterDecode *make_filter_decode(loco::Node *input_for_decode);
 
 } // namespace exo