From cfff3bfa22e2bfd9658849ecc799991355dbb748 Mon Sep 17 00:00:00 2001 From: Dongju Chae Date: Wed, 24 Mar 2021 12:56:51 +0900 Subject: [PATCH] [Profile/Fix] Increase the max length of layer name This patch increases the max lengh of layer name. Signed-off-by: Dongju Chae --- include/common/typedef.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/common/typedef.h b/include/common/typedef.h index 0e62586..a83e912 100644 --- a/include/common/typedef.h +++ b/include/common/typedef.h @@ -323,8 +323,8 @@ typedef struct { * Note that negative values mean non-supported profiling info. */ -#define NPU_PROFILE_SIZE (128) -#define NPU_OPNAME_MAX (32) +#define NPU_PROFILE_SIZE (256) +#define NPU_OPNAME_MAX (128) typedef struct { union { -- 2.7.4