From a76fda653e468a2ecdfdd81204c3d07516685c67 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EB=82=A8=EA=B6=81=EC=84=9D/On-Device=20Lab=28SR=29/Enginee?= =?utf8?q?r/=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Wed, 6 Nov 2019 09:34:24 +0900 Subject: [PATCH] [exo] Add missing argument of static_assert (#8760) This commit will add missing argument of `static_assert` in `exo/src/GraphBlock.h` Signed-off-by: Seok NamKoong --- compiler/exo/src/GraphBlock.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/exo/src/GraphBlock.h b/compiler/exo/src/GraphBlock.h index 2bce015..b50930b 100644 --- a/compiler/exo/src/GraphBlock.h +++ b/compiler/exo/src/GraphBlock.h @@ -140,7 +140,7 @@ template TFLT *DomainConverter::convert(CanonicalT *origin, InputHandler &input_handler) { - static_assert(FeatureLayoutT == FeatureLayout::NHWC); + static_assert(FeatureLayoutT == FeatureLayout::NHWC, "Feature layout should be NHWC"); if (!loco::shape_known(origin)) { -- 2.7.4