From f1738966b66d5c1189fc647b9ac32c5db93167d7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EB=B0=95=EC=B2=9C=EA=B5=90/On-Device=20Lab=28SR=29/Enginee?= =?utf8?q?r/=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Mon, 21 Oct 2019 12:12:43 +0900 Subject: [PATCH] [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 --- compiler/exo/src/GraphBlock.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.7.4